├── .dockerignore ├── .editorconfig ├── .env ├── .gitignore ├── .npmrc ├── .nvmrc ├── .vercelignore ├── .vscode └── extensions.json ├── Dockerfile ├── LICENSE ├── README.md ├── components.json ├── docker-compose.yml ├── docs └── img │ ├── screenshot-1.png │ └── screenshot-2.png ├── eslint.config.js ├── index.html ├── jsconfig.json ├── netlify.toml ├── nginx.conf ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.cjs ├── public ├── bilibili.svg ├── ble.svg ├── clear_context.svg ├── github.svg ├── manifest.json ├── menu.svg ├── network-error.svg ├── serial.svg ├── sw.js ├── vite.svg ├── vite144.svg ├── vite168.svg ├── vite192.svg ├── vite48.svg ├── vite72.svg └── vite96.svg ├── src ├── App.vue ├── assets │ └── usb-device.json ├── auto-imports.d.ts ├── components.d.ts ├── components │ ├── ActivityBar │ │ └── ActivityBar.vue │ ├── ControlPanel │ │ └── ControlPanel.vue │ ├── Dialog │ │ ├── Ascii.vue │ │ ├── DownLoadDriver.vue │ │ ├── Provider.vue │ │ ├── SerialRate.vue │ │ ├── Setting.vue │ │ ├── composable.js │ │ └── index.js │ ├── QuickInputPanel │ │ └── QuickInputPanel.vue │ ├── RecordPanel │ │ └── RecordPanel.vue │ ├── SearchTool │ │ └── SearchTool.vue │ ├── SendPanel │ │ ├── SendPanel.vue │ │ └── components │ │ │ ├── AutoSendButton.vue │ │ │ └── HexShower.vue │ ├── SettingPanel │ │ ├── DeviceSetting.vue │ │ └── components │ │ │ └── DeviceSetting │ │ │ ├── Bar.vue │ │ │ ├── BleSetting.vue │ │ │ ├── Menu.vue │ │ │ ├── SerialSetting.vue │ │ │ └── components │ │ │ └── SwitchDeviceTypeBtn.vue │ ├── StatusBar │ │ └── StatusBar.vue │ ├── TerminalPanel │ │ ├── TerminalPanel.vue │ │ ├── WelcomeToTerminal.vue │ │ └── theme │ │ │ ├── vscode │ │ │ ├── Dark+.json │ │ │ ├── DarkModern.json │ │ │ ├── GitHub-Dark-Default.json │ │ │ └── GitHub-Light-Default.json │ │ │ └── xterm │ │ │ └── vscode │ │ │ ├── Dark+.json │ │ │ ├── DarkModern.json │ │ │ ├── GitHub-Dark-Default.json │ │ │ └── GitHub-Light-Default.json │ ├── TopBar │ │ └── TopBar.vue │ ├── UserNumberFooter │ │ └── useOnline.js │ └── ui │ │ ├── alert-dialog │ │ ├── AlertDialog.vue │ │ ├── AlertDialogAction.vue │ │ ├── AlertDialogCancel.vue │ │ ├── AlertDialogContent.vue │ │ ├── AlertDialogDescription.vue │ │ ├── AlertDialogFooter.vue │ │ ├── AlertDialogHeader.vue │ │ ├── AlertDialogTitle.vue │ │ ├── AlertDialogTrigger.vue │ │ └── index.js │ │ ├── alert │ │ ├── Alert.vue │ │ ├── AlertDescription.vue │ │ ├── AlertTitle.vue │ │ └── index.js │ │ ├── badge │ │ ├── Badge.vue │ │ └── index.js │ │ ├── breadcrumb │ │ ├── Breadcrumb.vue │ │ ├── BreadcrumbEllipsis.vue │ │ ├── BreadcrumbItem.vue │ │ ├── BreadcrumbLink.vue │ │ ├── BreadcrumbList.vue │ │ ├── BreadcrumbPage.vue │ │ ├── BreadcrumbSeparator.vue │ │ └── index.js │ │ ├── button │ │ ├── Button.vue │ │ └── index.js │ │ ├── card │ │ ├── Card.vue │ │ ├── CardAction.vue │ │ ├── CardContent.vue │ │ ├── CardDescription.vue │ │ ├── CardFooter.vue │ │ ├── CardHeader.vue │ │ ├── CardTitle.vue │ │ └── index.js │ │ ├── checkbox │ │ ├── Checkbox.vue │ │ └── index.js │ │ ├── command │ │ ├── Command.vue │ │ ├── CommandDialog.vue │ │ ├── CommandEmpty.vue │ │ ├── CommandGroup.vue │ │ ├── CommandInput.vue │ │ ├── CommandItem.vue │ │ ├── CommandList.vue │ │ ├── CommandSeparator.vue │ │ ├── CommandShortcut.vue │ │ └── index.js │ │ ├── dialog │ │ ├── Dialog.vue │ │ ├── DialogClose.vue │ │ ├── DialogContent.vue │ │ ├── DialogDescription.vue │ │ ├── DialogFooter.vue │ │ ├── DialogHeader.vue │ │ ├── DialogOverlay.vue │ │ ├── DialogScrollContent.vue │ │ ├── DialogTitle.vue │ │ ├── DialogTrigger.vue │ │ └── index.js │ │ ├── dropdown-menu │ │ ├── DropdownMenu.vue │ │ ├── DropdownMenuCheckboxItem.vue │ │ ├── DropdownMenuContent.vue │ │ ├── DropdownMenuGroup.vue │ │ ├── DropdownMenuItem.vue │ │ ├── DropdownMenuLabel.vue │ │ ├── DropdownMenuRadioGroup.vue │ │ ├── DropdownMenuRadioItem.vue │ │ ├── DropdownMenuSeparator.vue │ │ ├── DropdownMenuShortcut.vue │ │ ├── DropdownMenuSub.vue │ │ ├── DropdownMenuSubContent.vue │ │ ├── DropdownMenuSubTrigger.vue │ │ ├── DropdownMenuTrigger.vue │ │ └── index.js │ │ ├── form │ │ ├── FormControl.vue │ │ ├── FormDescription.vue │ │ ├── FormItem.vue │ │ ├── FormLabel.vue │ │ ├── FormMessage.vue │ │ ├── index.js │ │ ├── injectionKeys.js │ │ └── useFormField.js │ │ ├── hover-card │ │ ├── HoverCard.vue │ │ ├── HoverCardContent.vue │ │ ├── HoverCardTrigger.vue │ │ └── index.js │ │ ├── input │ │ ├── Input.vue │ │ └── index.js │ │ ├── label │ │ ├── Label.vue │ │ └── index.js │ │ ├── navigation-menu │ │ ├── NavigationMenu.vue │ │ ├── NavigationMenuContent.vue │ │ ├── NavigationMenuIndicator.vue │ │ ├── NavigationMenuItem.vue │ │ ├── NavigationMenuLink.vue │ │ ├── NavigationMenuList.vue │ │ ├── NavigationMenuTrigger.vue │ │ ├── NavigationMenuViewport.vue │ │ └── index.js │ │ ├── number-field │ │ ├── NumberField.vue │ │ ├── NumberFieldContent.vue │ │ ├── NumberFieldDecrement.vue │ │ ├── NumberFieldIncrement.vue │ │ ├── NumberFieldInput.vue │ │ └── index.js │ │ ├── popover │ │ ├── Popover.vue │ │ ├── PopoverAnchor.vue │ │ ├── PopoverContent.vue │ │ ├── PopoverTrigger.vue │ │ └── index.js │ │ ├── resizable │ │ ├── ResizableHandle.vue │ │ ├── ResizablePanel.vue │ │ ├── ResizablePanelGroup.vue │ │ └── index.js │ │ ├── scroll-area │ │ ├── ScrollArea.vue │ │ ├── ScrollBar.vue │ │ └── index.js │ │ ├── select │ │ ├── Select.vue │ │ ├── SelectContent.vue │ │ ├── SelectGroup.vue │ │ ├── SelectItem.vue │ │ ├── SelectItemText.vue │ │ ├── SelectLabel.vue │ │ ├── SelectScrollDownButton.vue │ │ ├── SelectScrollUpButton.vue │ │ ├── SelectSeparator.vue │ │ ├── SelectTrigger.vue │ │ ├── SelectValue.vue │ │ └── index.js │ │ ├── separator │ │ ├── Separator.vue │ │ └── index.js │ │ ├── sheet │ │ ├── Sheet.vue │ │ ├── SheetClose.vue │ │ ├── SheetContent.vue │ │ ├── SheetDescription.vue │ │ ├── SheetFooter.vue │ │ ├── SheetHeader.vue │ │ ├── SheetOverlay.vue │ │ ├── SheetTitle.vue │ │ ├── SheetTrigger.vue │ │ └── index.js │ │ ├── slider │ │ ├── Slider.vue │ │ └── index.js │ │ ├── sonner │ │ ├── Sonner.vue │ │ └── index.js │ │ ├── switch │ │ ├── Switch.vue │ │ └── index.js │ │ ├── table │ │ ├── Table.vue │ │ ├── TableBody.vue │ │ ├── TableCaption.vue │ │ ├── TableCell.vue │ │ ├── TableEmpty.vue │ │ ├── TableFooter.vue │ │ ├── TableHead.vue │ │ ├── TableHeader.vue │ │ ├── TableRow.vue │ │ ├── index.js │ │ └── utils.js │ │ ├── tabs │ │ ├── Tabs.vue │ │ ├── TabsContent.vue │ │ ├── TabsList.vue │ │ ├── TabsTrigger.vue │ │ └── index.js │ │ ├── tags-input │ │ ├── TagsInput.vue │ │ ├── TagsInputInput.vue │ │ ├── TagsInputItem.vue │ │ ├── TagsInputItemDelete.vue │ │ ├── TagsInputItemText.vue │ │ └── index.js │ │ ├── textarea │ │ ├── Textarea.vue │ │ └── index.js │ │ ├── toggle-group │ │ ├── ToggleGroup.vue │ │ ├── ToggleGroupItem.vue │ │ └── index.js │ │ ├── toggle │ │ ├── Toggle.vue │ │ └── index.js │ │ └── tooltip │ │ ├── Tooltip.vue │ │ ├── TooltipContent.vue │ │ ├── TooltipProvider.vue │ │ ├── TooltipTrigger.vue │ │ └── index.js ├── composables │ ├── useBle │ │ └── index.js │ ├── useCheckDigit │ │ └── useCheckDigit.js │ ├── useDataCode │ │ └── useDataCode.js │ ├── useLayout │ │ └── index.js │ ├── useNprogress │ │ └── index.js │ ├── useRecordCache │ │ └── index.js │ └── useSerial │ │ └── index.js ├── lib │ └── utils.js ├── main.js ├── pages │ ├── index.vue │ ├── not-found.vue │ └── record.vue ├── router.js ├── store │ ├── useBleStore.js │ ├── useRecordStore.js │ ├── useSendStore.js │ ├── useSerialStore.js │ └── useSettingStore.js ├── style.css └── utils │ ├── network.js │ ├── os.js │ └── uuid.js ├── test ├── resourceCleanup.test.js ├── seo.test.js ├── useCheckDigit.test.js └── useSendStore.test.js ├── vercel.json ├── vite.config.js └── vitest.config.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | VITE_APP_DEV_PORT=5173 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/.vercelignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/components.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/img/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/docs/img/screenshot-1.png -------------------------------------------------------------------------------- /docs/img/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/docs/img/screenshot-2.png -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/index.html -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/jsconfig.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/netlify.toml -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/bilibili.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/bilibili.svg -------------------------------------------------------------------------------- /public/ble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/ble.svg -------------------------------------------------------------------------------- /public/clear_context.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/clear_context.svg -------------------------------------------------------------------------------- /public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/github.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/menu.svg -------------------------------------------------------------------------------- /public/network-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/network-error.svg -------------------------------------------------------------------------------- /public/serial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/serial.svg -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/vite.svg -------------------------------------------------------------------------------- /public/vite144.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/vite144.svg -------------------------------------------------------------------------------- /public/vite168.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/vite168.svg -------------------------------------------------------------------------------- /public/vite192.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/vite192.svg -------------------------------------------------------------------------------- /public/vite48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/vite48.svg -------------------------------------------------------------------------------- /public/vite72.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/vite72.svg -------------------------------------------------------------------------------- /public/vite96.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/public/vite96.svg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/usb-device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/assets/usb-device.json -------------------------------------------------------------------------------- /src/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/auto-imports.d.ts -------------------------------------------------------------------------------- /src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components.d.ts -------------------------------------------------------------------------------- /src/components/ActivityBar/ActivityBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ActivityBar/ActivityBar.vue -------------------------------------------------------------------------------- /src/components/ControlPanel/ControlPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ControlPanel/ControlPanel.vue -------------------------------------------------------------------------------- /src/components/Dialog/Ascii.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/Dialog/Ascii.vue -------------------------------------------------------------------------------- /src/components/Dialog/DownLoadDriver.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/Dialog/DownLoadDriver.vue -------------------------------------------------------------------------------- /src/components/Dialog/Provider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/Dialog/Provider.vue -------------------------------------------------------------------------------- /src/components/Dialog/SerialRate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/Dialog/SerialRate.vue -------------------------------------------------------------------------------- /src/components/Dialog/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/Dialog/Setting.vue -------------------------------------------------------------------------------- /src/components/Dialog/composable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/Dialog/composable.js -------------------------------------------------------------------------------- /src/components/Dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/Dialog/index.js -------------------------------------------------------------------------------- /src/components/QuickInputPanel/QuickInputPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/QuickInputPanel/QuickInputPanel.vue -------------------------------------------------------------------------------- /src/components/RecordPanel/RecordPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/RecordPanel/RecordPanel.vue -------------------------------------------------------------------------------- /src/components/SearchTool/SearchTool.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/SearchTool/SearchTool.vue -------------------------------------------------------------------------------- /src/components/SendPanel/SendPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/SendPanel/SendPanel.vue -------------------------------------------------------------------------------- /src/components/SendPanel/components/AutoSendButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/SendPanel/components/AutoSendButton.vue -------------------------------------------------------------------------------- /src/components/SendPanel/components/HexShower.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/SendPanel/components/HexShower.vue -------------------------------------------------------------------------------- /src/components/SettingPanel/DeviceSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/SettingPanel/DeviceSetting.vue -------------------------------------------------------------------------------- /src/components/SettingPanel/components/DeviceSetting/Bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/SettingPanel/components/DeviceSetting/Bar.vue -------------------------------------------------------------------------------- /src/components/SettingPanel/components/DeviceSetting/BleSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/SettingPanel/components/DeviceSetting/BleSetting.vue -------------------------------------------------------------------------------- /src/components/SettingPanel/components/DeviceSetting/Menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/SettingPanel/components/DeviceSetting/Menu.vue -------------------------------------------------------------------------------- /src/components/SettingPanel/components/DeviceSetting/SerialSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/SettingPanel/components/DeviceSetting/SerialSetting.vue -------------------------------------------------------------------------------- /src/components/SettingPanel/components/DeviceSetting/components/SwitchDeviceTypeBtn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/SettingPanel/components/DeviceSetting/components/SwitchDeviceTypeBtn.vue -------------------------------------------------------------------------------- /src/components/StatusBar/StatusBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/StatusBar/StatusBar.vue -------------------------------------------------------------------------------- /src/components/TerminalPanel/TerminalPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/TerminalPanel/TerminalPanel.vue -------------------------------------------------------------------------------- /src/components/TerminalPanel/WelcomeToTerminal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/TerminalPanel/WelcomeToTerminal.vue -------------------------------------------------------------------------------- /src/components/TerminalPanel/theme/vscode/Dark+.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/TerminalPanel/theme/vscode/Dark+.json -------------------------------------------------------------------------------- /src/components/TerminalPanel/theme/vscode/DarkModern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/TerminalPanel/theme/vscode/DarkModern.json -------------------------------------------------------------------------------- /src/components/TerminalPanel/theme/vscode/GitHub-Dark-Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/TerminalPanel/theme/vscode/GitHub-Dark-Default.json -------------------------------------------------------------------------------- /src/components/TerminalPanel/theme/vscode/GitHub-Light-Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/TerminalPanel/theme/vscode/GitHub-Light-Default.json -------------------------------------------------------------------------------- /src/components/TerminalPanel/theme/xterm/vscode/Dark+.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/TerminalPanel/theme/xterm/vscode/Dark+.json -------------------------------------------------------------------------------- /src/components/TerminalPanel/theme/xterm/vscode/DarkModern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/TerminalPanel/theme/xterm/vscode/DarkModern.json -------------------------------------------------------------------------------- /src/components/TerminalPanel/theme/xterm/vscode/GitHub-Dark-Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/TerminalPanel/theme/xterm/vscode/GitHub-Dark-Default.json -------------------------------------------------------------------------------- /src/components/TerminalPanel/theme/xterm/vscode/GitHub-Light-Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/TerminalPanel/theme/xterm/vscode/GitHub-Light-Default.json -------------------------------------------------------------------------------- /src/components/TopBar/TopBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/TopBar/TopBar.vue -------------------------------------------------------------------------------- /src/components/UserNumberFooter/useOnline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/UserNumberFooter/useOnline.js -------------------------------------------------------------------------------- /src/components/ui/alert-dialog/AlertDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert-dialog/AlertDialog.vue -------------------------------------------------------------------------------- /src/components/ui/alert-dialog/AlertDialogAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert-dialog/AlertDialogAction.vue -------------------------------------------------------------------------------- /src/components/ui/alert-dialog/AlertDialogCancel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert-dialog/AlertDialogCancel.vue -------------------------------------------------------------------------------- /src/components/ui/alert-dialog/AlertDialogContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert-dialog/AlertDialogContent.vue -------------------------------------------------------------------------------- /src/components/ui/alert-dialog/AlertDialogDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert-dialog/AlertDialogDescription.vue -------------------------------------------------------------------------------- /src/components/ui/alert-dialog/AlertDialogFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert-dialog/AlertDialogFooter.vue -------------------------------------------------------------------------------- /src/components/ui/alert-dialog/AlertDialogHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert-dialog/AlertDialogHeader.vue -------------------------------------------------------------------------------- /src/components/ui/alert-dialog/AlertDialogTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert-dialog/AlertDialogTitle.vue -------------------------------------------------------------------------------- /src/components/ui/alert-dialog/AlertDialogTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert-dialog/AlertDialogTrigger.vue -------------------------------------------------------------------------------- /src/components/ui/alert-dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert-dialog/index.js -------------------------------------------------------------------------------- /src/components/ui/alert/Alert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert/Alert.vue -------------------------------------------------------------------------------- /src/components/ui/alert/AlertDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert/AlertDescription.vue -------------------------------------------------------------------------------- /src/components/ui/alert/AlertTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert/AlertTitle.vue -------------------------------------------------------------------------------- /src/components/ui/alert/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/alert/index.js -------------------------------------------------------------------------------- /src/components/ui/badge/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/badge/Badge.vue -------------------------------------------------------------------------------- /src/components/ui/badge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/badge/index.js -------------------------------------------------------------------------------- /src/components/ui/breadcrumb/Breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/breadcrumb/Breadcrumb.vue -------------------------------------------------------------------------------- /src/components/ui/breadcrumb/BreadcrumbEllipsis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/breadcrumb/BreadcrumbEllipsis.vue -------------------------------------------------------------------------------- /src/components/ui/breadcrumb/BreadcrumbItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/breadcrumb/BreadcrumbItem.vue -------------------------------------------------------------------------------- /src/components/ui/breadcrumb/BreadcrumbLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/breadcrumb/BreadcrumbLink.vue -------------------------------------------------------------------------------- /src/components/ui/breadcrumb/BreadcrumbList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/breadcrumb/BreadcrumbList.vue -------------------------------------------------------------------------------- /src/components/ui/breadcrumb/BreadcrumbPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/breadcrumb/BreadcrumbPage.vue -------------------------------------------------------------------------------- /src/components/ui/breadcrumb/BreadcrumbSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/breadcrumb/BreadcrumbSeparator.vue -------------------------------------------------------------------------------- /src/components/ui/breadcrumb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/breadcrumb/index.js -------------------------------------------------------------------------------- /src/components/ui/button/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/button/Button.vue -------------------------------------------------------------------------------- /src/components/ui/button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/button/index.js -------------------------------------------------------------------------------- /src/components/ui/card/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/card/Card.vue -------------------------------------------------------------------------------- /src/components/ui/card/CardAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/card/CardAction.vue -------------------------------------------------------------------------------- /src/components/ui/card/CardContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/card/CardContent.vue -------------------------------------------------------------------------------- /src/components/ui/card/CardDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/card/CardDescription.vue -------------------------------------------------------------------------------- /src/components/ui/card/CardFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/card/CardFooter.vue -------------------------------------------------------------------------------- /src/components/ui/card/CardHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/card/CardHeader.vue -------------------------------------------------------------------------------- /src/components/ui/card/CardTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/card/CardTitle.vue -------------------------------------------------------------------------------- /src/components/ui/card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/card/index.js -------------------------------------------------------------------------------- /src/components/ui/checkbox/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/checkbox/Checkbox.vue -------------------------------------------------------------------------------- /src/components/ui/checkbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/checkbox/index.js -------------------------------------------------------------------------------- /src/components/ui/command/Command.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/command/Command.vue -------------------------------------------------------------------------------- /src/components/ui/command/CommandDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/command/CommandDialog.vue -------------------------------------------------------------------------------- /src/components/ui/command/CommandEmpty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/command/CommandEmpty.vue -------------------------------------------------------------------------------- /src/components/ui/command/CommandGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/command/CommandGroup.vue -------------------------------------------------------------------------------- /src/components/ui/command/CommandInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/command/CommandInput.vue -------------------------------------------------------------------------------- /src/components/ui/command/CommandItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/command/CommandItem.vue -------------------------------------------------------------------------------- /src/components/ui/command/CommandList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/command/CommandList.vue -------------------------------------------------------------------------------- /src/components/ui/command/CommandSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/command/CommandSeparator.vue -------------------------------------------------------------------------------- /src/components/ui/command/CommandShortcut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/command/CommandShortcut.vue -------------------------------------------------------------------------------- /src/components/ui/command/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/command/index.js -------------------------------------------------------------------------------- /src/components/ui/dialog/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dialog/Dialog.vue -------------------------------------------------------------------------------- /src/components/ui/dialog/DialogClose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dialog/DialogClose.vue -------------------------------------------------------------------------------- /src/components/ui/dialog/DialogContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dialog/DialogContent.vue -------------------------------------------------------------------------------- /src/components/ui/dialog/DialogDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dialog/DialogDescription.vue -------------------------------------------------------------------------------- /src/components/ui/dialog/DialogFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dialog/DialogFooter.vue -------------------------------------------------------------------------------- /src/components/ui/dialog/DialogHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dialog/DialogHeader.vue -------------------------------------------------------------------------------- /src/components/ui/dialog/DialogOverlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dialog/DialogOverlay.vue -------------------------------------------------------------------------------- /src/components/ui/dialog/DialogScrollContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dialog/DialogScrollContent.vue -------------------------------------------------------------------------------- /src/components/ui/dialog/DialogTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dialog/DialogTitle.vue -------------------------------------------------------------------------------- /src/components/ui/dialog/DialogTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dialog/DialogTrigger.vue -------------------------------------------------------------------------------- /src/components/ui/dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dialog/index.js -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenu.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuContent.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuGroup.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuItem.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuLabel.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuRadioItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuRadioItem.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuSeparator.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuShortcut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuShortcut.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuSub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuSub.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuSubContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuSubContent.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/DropdownMenuTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/DropdownMenuTrigger.vue -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/dropdown-menu/index.js -------------------------------------------------------------------------------- /src/components/ui/form/FormControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/form/FormControl.vue -------------------------------------------------------------------------------- /src/components/ui/form/FormDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/form/FormDescription.vue -------------------------------------------------------------------------------- /src/components/ui/form/FormItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/form/FormItem.vue -------------------------------------------------------------------------------- /src/components/ui/form/FormLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/form/FormLabel.vue -------------------------------------------------------------------------------- /src/components/ui/form/FormMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/form/FormMessage.vue -------------------------------------------------------------------------------- /src/components/ui/form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/form/index.js -------------------------------------------------------------------------------- /src/components/ui/form/injectionKeys.js: -------------------------------------------------------------------------------- 1 | export const FORM_ITEM_INJECTION_KEY = Symbol(); 2 | -------------------------------------------------------------------------------- /src/components/ui/form/useFormField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/form/useFormField.js -------------------------------------------------------------------------------- /src/components/ui/hover-card/HoverCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/hover-card/HoverCard.vue -------------------------------------------------------------------------------- /src/components/ui/hover-card/HoverCardContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/hover-card/HoverCardContent.vue -------------------------------------------------------------------------------- /src/components/ui/hover-card/HoverCardTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/hover-card/HoverCardTrigger.vue -------------------------------------------------------------------------------- /src/components/ui/hover-card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/hover-card/index.js -------------------------------------------------------------------------------- /src/components/ui/input/Input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/input/Input.vue -------------------------------------------------------------------------------- /src/components/ui/input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/input/index.js -------------------------------------------------------------------------------- /src/components/ui/label/Label.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/label/Label.vue -------------------------------------------------------------------------------- /src/components/ui/label/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/label/index.js -------------------------------------------------------------------------------- /src/components/ui/navigation-menu/NavigationMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/navigation-menu/NavigationMenu.vue -------------------------------------------------------------------------------- /src/components/ui/navigation-menu/NavigationMenuContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/navigation-menu/NavigationMenuContent.vue -------------------------------------------------------------------------------- /src/components/ui/navigation-menu/NavigationMenuIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/navigation-menu/NavigationMenuIndicator.vue -------------------------------------------------------------------------------- /src/components/ui/navigation-menu/NavigationMenuItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/navigation-menu/NavigationMenuItem.vue -------------------------------------------------------------------------------- /src/components/ui/navigation-menu/NavigationMenuLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/navigation-menu/NavigationMenuLink.vue -------------------------------------------------------------------------------- /src/components/ui/navigation-menu/NavigationMenuList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/navigation-menu/NavigationMenuList.vue -------------------------------------------------------------------------------- /src/components/ui/navigation-menu/NavigationMenuTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/navigation-menu/NavigationMenuTrigger.vue -------------------------------------------------------------------------------- /src/components/ui/navigation-menu/NavigationMenuViewport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/navigation-menu/NavigationMenuViewport.vue -------------------------------------------------------------------------------- /src/components/ui/navigation-menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/navigation-menu/index.js -------------------------------------------------------------------------------- /src/components/ui/number-field/NumberField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/number-field/NumberField.vue -------------------------------------------------------------------------------- /src/components/ui/number-field/NumberFieldContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/number-field/NumberFieldContent.vue -------------------------------------------------------------------------------- /src/components/ui/number-field/NumberFieldDecrement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/number-field/NumberFieldDecrement.vue -------------------------------------------------------------------------------- /src/components/ui/number-field/NumberFieldIncrement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/number-field/NumberFieldIncrement.vue -------------------------------------------------------------------------------- /src/components/ui/number-field/NumberFieldInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/number-field/NumberFieldInput.vue -------------------------------------------------------------------------------- /src/components/ui/number-field/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/number-field/index.js -------------------------------------------------------------------------------- /src/components/ui/popover/Popover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/popover/Popover.vue -------------------------------------------------------------------------------- /src/components/ui/popover/PopoverAnchor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/popover/PopoverAnchor.vue -------------------------------------------------------------------------------- /src/components/ui/popover/PopoverContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/popover/PopoverContent.vue -------------------------------------------------------------------------------- /src/components/ui/popover/PopoverTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/popover/PopoverTrigger.vue -------------------------------------------------------------------------------- /src/components/ui/popover/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/popover/index.js -------------------------------------------------------------------------------- /src/components/ui/resizable/ResizableHandle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/resizable/ResizableHandle.vue -------------------------------------------------------------------------------- /src/components/ui/resizable/ResizablePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/resizable/ResizablePanel.vue -------------------------------------------------------------------------------- /src/components/ui/resizable/ResizablePanelGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/resizable/ResizablePanelGroup.vue -------------------------------------------------------------------------------- /src/components/ui/resizable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/resizable/index.js -------------------------------------------------------------------------------- /src/components/ui/scroll-area/ScrollArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/scroll-area/ScrollArea.vue -------------------------------------------------------------------------------- /src/components/ui/scroll-area/ScrollBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/scroll-area/ScrollBar.vue -------------------------------------------------------------------------------- /src/components/ui/scroll-area/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/scroll-area/index.js -------------------------------------------------------------------------------- /src/components/ui/select/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/Select.vue -------------------------------------------------------------------------------- /src/components/ui/select/SelectContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/SelectContent.vue -------------------------------------------------------------------------------- /src/components/ui/select/SelectGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/SelectGroup.vue -------------------------------------------------------------------------------- /src/components/ui/select/SelectItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/SelectItem.vue -------------------------------------------------------------------------------- /src/components/ui/select/SelectItemText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/SelectItemText.vue -------------------------------------------------------------------------------- /src/components/ui/select/SelectLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/SelectLabel.vue -------------------------------------------------------------------------------- /src/components/ui/select/SelectScrollDownButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/SelectScrollDownButton.vue -------------------------------------------------------------------------------- /src/components/ui/select/SelectScrollUpButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/SelectScrollUpButton.vue -------------------------------------------------------------------------------- /src/components/ui/select/SelectSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/SelectSeparator.vue -------------------------------------------------------------------------------- /src/components/ui/select/SelectTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/SelectTrigger.vue -------------------------------------------------------------------------------- /src/components/ui/select/SelectValue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/SelectValue.vue -------------------------------------------------------------------------------- /src/components/ui/select/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/select/index.js -------------------------------------------------------------------------------- /src/components/ui/separator/Separator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/separator/Separator.vue -------------------------------------------------------------------------------- /src/components/ui/separator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/separator/index.js -------------------------------------------------------------------------------- /src/components/ui/sheet/Sheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/sheet/Sheet.vue -------------------------------------------------------------------------------- /src/components/ui/sheet/SheetClose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/sheet/SheetClose.vue -------------------------------------------------------------------------------- /src/components/ui/sheet/SheetContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/sheet/SheetContent.vue -------------------------------------------------------------------------------- /src/components/ui/sheet/SheetDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/sheet/SheetDescription.vue -------------------------------------------------------------------------------- /src/components/ui/sheet/SheetFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/sheet/SheetFooter.vue -------------------------------------------------------------------------------- /src/components/ui/sheet/SheetHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/sheet/SheetHeader.vue -------------------------------------------------------------------------------- /src/components/ui/sheet/SheetOverlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/sheet/SheetOverlay.vue -------------------------------------------------------------------------------- /src/components/ui/sheet/SheetTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/sheet/SheetTitle.vue -------------------------------------------------------------------------------- /src/components/ui/sheet/SheetTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/sheet/SheetTrigger.vue -------------------------------------------------------------------------------- /src/components/ui/sheet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/sheet/index.js -------------------------------------------------------------------------------- /src/components/ui/slider/Slider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/slider/Slider.vue -------------------------------------------------------------------------------- /src/components/ui/slider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/slider/index.js -------------------------------------------------------------------------------- /src/components/ui/sonner/Sonner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/sonner/Sonner.vue -------------------------------------------------------------------------------- /src/components/ui/sonner/index.js: -------------------------------------------------------------------------------- 1 | export { default as Toaster } from "./Sonner.vue"; 2 | -------------------------------------------------------------------------------- /src/components/ui/switch/Switch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/switch/Switch.vue -------------------------------------------------------------------------------- /src/components/ui/switch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/switch/index.js -------------------------------------------------------------------------------- /src/components/ui/table/Table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/table/Table.vue -------------------------------------------------------------------------------- /src/components/ui/table/TableBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/table/TableBody.vue -------------------------------------------------------------------------------- /src/components/ui/table/TableCaption.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/table/TableCaption.vue -------------------------------------------------------------------------------- /src/components/ui/table/TableCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/table/TableCell.vue -------------------------------------------------------------------------------- /src/components/ui/table/TableEmpty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/table/TableEmpty.vue -------------------------------------------------------------------------------- /src/components/ui/table/TableFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/table/TableFooter.vue -------------------------------------------------------------------------------- /src/components/ui/table/TableHead.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/table/TableHead.vue -------------------------------------------------------------------------------- /src/components/ui/table/TableHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/table/TableHeader.vue -------------------------------------------------------------------------------- /src/components/ui/table/TableRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/table/TableRow.vue -------------------------------------------------------------------------------- /src/components/ui/table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/table/index.js -------------------------------------------------------------------------------- /src/components/ui/table/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/table/utils.js -------------------------------------------------------------------------------- /src/components/ui/tabs/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tabs/Tabs.vue -------------------------------------------------------------------------------- /src/components/ui/tabs/TabsContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tabs/TabsContent.vue -------------------------------------------------------------------------------- /src/components/ui/tabs/TabsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tabs/TabsList.vue -------------------------------------------------------------------------------- /src/components/ui/tabs/TabsTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tabs/TabsTrigger.vue -------------------------------------------------------------------------------- /src/components/ui/tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tabs/index.js -------------------------------------------------------------------------------- /src/components/ui/tags-input/TagsInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tags-input/TagsInput.vue -------------------------------------------------------------------------------- /src/components/ui/tags-input/TagsInputInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tags-input/TagsInputInput.vue -------------------------------------------------------------------------------- /src/components/ui/tags-input/TagsInputItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tags-input/TagsInputItem.vue -------------------------------------------------------------------------------- /src/components/ui/tags-input/TagsInputItemDelete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tags-input/TagsInputItemDelete.vue -------------------------------------------------------------------------------- /src/components/ui/tags-input/TagsInputItemText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tags-input/TagsInputItemText.vue -------------------------------------------------------------------------------- /src/components/ui/tags-input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tags-input/index.js -------------------------------------------------------------------------------- /src/components/ui/textarea/Textarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/textarea/Textarea.vue -------------------------------------------------------------------------------- /src/components/ui/textarea/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/textarea/index.js -------------------------------------------------------------------------------- /src/components/ui/toggle-group/ToggleGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/toggle-group/ToggleGroup.vue -------------------------------------------------------------------------------- /src/components/ui/toggle-group/ToggleGroupItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/toggle-group/ToggleGroupItem.vue -------------------------------------------------------------------------------- /src/components/ui/toggle-group/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/toggle-group/index.js -------------------------------------------------------------------------------- /src/components/ui/toggle/Toggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/toggle/Toggle.vue -------------------------------------------------------------------------------- /src/components/ui/toggle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/toggle/index.js -------------------------------------------------------------------------------- /src/components/ui/tooltip/Tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tooltip/Tooltip.vue -------------------------------------------------------------------------------- /src/components/ui/tooltip/TooltipContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tooltip/TooltipContent.vue -------------------------------------------------------------------------------- /src/components/ui/tooltip/TooltipProvider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tooltip/TooltipProvider.vue -------------------------------------------------------------------------------- /src/components/ui/tooltip/TooltipTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tooltip/TooltipTrigger.vue -------------------------------------------------------------------------------- /src/components/ui/tooltip/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/components/ui/tooltip/index.js -------------------------------------------------------------------------------- /src/composables/useBle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/composables/useBle/index.js -------------------------------------------------------------------------------- /src/composables/useCheckDigit/useCheckDigit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/composables/useCheckDigit/useCheckDigit.js -------------------------------------------------------------------------------- /src/composables/useDataCode/useDataCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/composables/useDataCode/useDataCode.js -------------------------------------------------------------------------------- /src/composables/useLayout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/composables/useLayout/index.js -------------------------------------------------------------------------------- /src/composables/useNprogress/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/composables/useNprogress/index.js -------------------------------------------------------------------------------- /src/composables/useRecordCache/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/composables/useRecordCache/index.js -------------------------------------------------------------------------------- /src/composables/useSerial/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/composables/useSerial/index.js -------------------------------------------------------------------------------- /src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/lib/utils.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/pages/index.vue -------------------------------------------------------------------------------- /src/pages/not-found.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/pages/not-found.vue -------------------------------------------------------------------------------- /src/pages/record.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/pages/record.vue -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/router.js -------------------------------------------------------------------------------- /src/store/useBleStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/store/useBleStore.js -------------------------------------------------------------------------------- /src/store/useRecordStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/store/useRecordStore.js -------------------------------------------------------------------------------- /src/store/useSendStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/store/useSendStore.js -------------------------------------------------------------------------------- /src/store/useSerialStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/store/useSerialStore.js -------------------------------------------------------------------------------- /src/store/useSettingStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/store/useSettingStore.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/style.css -------------------------------------------------------------------------------- /src/utils/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/utils/network.js -------------------------------------------------------------------------------- /src/utils/os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/utils/os.js -------------------------------------------------------------------------------- /src/utils/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/src/utils/uuid.js -------------------------------------------------------------------------------- /test/resourceCleanup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/test/resourceCleanup.test.js -------------------------------------------------------------------------------- /test/seo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/test/seo.test.js -------------------------------------------------------------------------------- /test/useCheckDigit.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/test/useCheckDigit.test.js -------------------------------------------------------------------------------- /test/useSendStore.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/test/useSendStore.test.js -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/vite.config.js -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaudDance/SerialAssistant/HEAD/vitest.config.js --------------------------------------------------------------------------------