create-tauri-ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +41 -0
- package/dist/index.mjs +53 -0
- package/index.js +3 -0
- package/package.json +62 -0
- package/templates/next/.env +1 -0
- package/templates/next/.github/workflows/release.yml +108 -0
- package/templates/next/.vscode/extensions.json +3 -0
- package/templates/next/LICENSE +21 -0
- package/templates/next/README.md +82 -0
- package/templates/next/app-icon.png +0 -0
- package/templates/next/next-env.d.ts +5 -0
- package/templates/next/next.config.js +17 -0
- package/templates/next/package.json +82 -0
- package/templates/next/pnpm-lock.yaml +4318 -0
- package/templates/next/postcss.config.js +6 -0
- package/templates/next/prettier.config.js +35 -0
- package/templates/next/public/avatars/01.png +0 -0
- package/templates/next/public/avatars/02.png +0 -0
- package/templates/next/public/avatars/03.png +0 -0
- package/templates/next/public/avatars/04.png +0 -0
- package/templates/next/public/avatars/05.png +0 -0
- package/templates/next/src/app/examples/authentication/components/user-auth-form.tsx +71 -0
- package/templates/next/src/app/examples/authentication/page.tsx +80 -0
- package/templates/next/src/app/examples/cards/components/cookie-settings.tsx +60 -0
- package/templates/next/src/app/examples/cards/components/create-account.tsx +60 -0
- package/templates/next/src/app/examples/cards/components/date-picker.tsx +18 -0
- package/templates/next/src/app/examples/cards/components/github-card.tsx +81 -0
- package/templates/next/src/app/examples/cards/components/notifications.tsx +51 -0
- package/templates/next/src/app/examples/cards/components/payment-method.tsx +117 -0
- package/templates/next/src/app/examples/cards/components/report-an-issue.tsx +82 -0
- package/templates/next/src/app/examples/cards/components/share-document.tsx +116 -0
- package/templates/next/src/app/examples/cards/components/team-members.tsx +147 -0
- package/templates/next/src/app/examples/cards/page.tsx +75 -0
- package/templates/next/src/app/examples/cards/styles.css +63 -0
- package/templates/next/src/app/examples/dashboard/components/date-range-picker.tsx +66 -0
- package/templates/next/src/app/examples/dashboard/components/main-nav.tsx +38 -0
- package/templates/next/src/app/examples/dashboard/components/overview.tsx +78 -0
- package/templates/next/src/app/examples/dashboard/components/recent-sales.tsx +67 -0
- package/templates/next/src/app/examples/dashboard/components/search.tsx +13 -0
- package/templates/next/src/app/examples/dashboard/components/team-switcher.tsx +205 -0
- package/templates/next/src/app/examples/dashboard/components/user-nav.tsx +67 -0
- package/templates/next/src/app/examples/dashboard/page.tsx +147 -0
- package/templates/next/src/app/examples/forms/account/account-form.tsx +219 -0
- package/templates/next/src/app/examples/forms/account/page.tsx +18 -0
- package/templates/next/src/app/examples/forms/appearance/appearance-form.tsx +164 -0
- package/templates/next/src/app/examples/forms/appearance/page.tsx +18 -0
- package/templates/next/src/app/examples/forms/components/sidebar-nav.tsx +43 -0
- package/templates/next/src/app/examples/forms/display/display-form.tsx +132 -0
- package/templates/next/src/app/examples/forms/display/page.tsx +17 -0
- package/templates/next/src/app/examples/forms/layout.tsx +57 -0
- package/templates/next/src/app/examples/forms/notifications/notifications-form.tsx +221 -0
- package/templates/next/src/app/examples/forms/notifications/page.tsx +18 -0
- package/templates/next/src/app/examples/forms/page.tsx +17 -0
- package/templates/next/src/app/examples/forms/profile-form.tsx +190 -0
- package/templates/next/src/app/examples/layout.tsx +7 -0
- package/templates/next/src/app/examples/music/components/album-artwork.tsx +84 -0
- package/templates/next/src/app/examples/music/components/menu.tsx +178 -0
- package/templates/next/src/app/examples/music/components/podcast-empty-placeholder.tsx +53 -0
- package/templates/next/src/app/examples/music/components/sidebar.tsx +100 -0
- package/templates/next/src/app/examples/music/data/albums.ts +71 -0
- package/templates/next/src/app/examples/music/data/playlists.ts +16 -0
- package/templates/next/src/app/examples/music/page.tsx +134 -0
- package/templates/next/src/app/examples/music/styles.css +65 -0
- package/templates/next/src/app/examples/playground/components/code-viewer.tsx +89 -0
- package/templates/next/src/app/examples/playground/components/icons.tsx +153 -0
- package/templates/next/src/app/examples/playground/components/maxlength-selector.tsx +55 -0
- package/templates/next/src/app/examples/playground/components/model-selector.tsx +163 -0
- package/templates/next/src/app/examples/playground/components/preset-actions.tsx +124 -0
- package/templates/next/src/app/examples/playground/components/preset-save.tsx +44 -0
- package/templates/next/src/app/examples/playground/components/preset-selector.tsx +82 -0
- package/templates/next/src/app/examples/playground/components/preset-share.tsx +46 -0
- package/templates/next/src/app/examples/playground/components/temperature-selector.tsx +57 -0
- package/templates/next/src/app/examples/playground/components/top-p-selector.tsx +54 -0
- package/templates/next/src/app/examples/playground/data/models.ts +62 -0
- package/templates/next/src/app/examples/playground/data/presets.ts +47 -0
- package/templates/next/src/app/examples/playground/page.tsx +160 -0
- package/templates/next/src/app/examples/playground/styles.css +65 -0
- package/templates/next/src/app/examples/tasks/components/columns.tsx +120 -0
- package/templates/next/src/app/examples/tasks/components/data-table-column-header.tsx +66 -0
- package/templates/next/src/app/examples/tasks/components/data-table-faceted-filter.tsx +147 -0
- package/templates/next/src/app/examples/tasks/components/data-table-pagination.tsx +97 -0
- package/templates/next/src/app/examples/tasks/components/data-table-row-actions.tsx +82 -0
- package/templates/next/src/app/examples/tasks/components/data-table-toolbar.tsx +63 -0
- package/templates/next/src/app/examples/tasks/components/data-table-view-options.tsx +59 -0
- package/templates/next/src/app/examples/tasks/components/data-table.tsx +126 -0
- package/templates/next/src/app/examples/tasks/components/user-nav.tsx +67 -0
- package/templates/next/src/app/examples/tasks/data/data.tsx +71 -0
- package/templates/next/src/app/examples/tasks/data/schema.ts +13 -0
- package/templates/next/src/app/examples/tasks/data/seed.ts +20 -0
- package/templates/next/src/app/examples/tasks/data/tasks.json +702 -0
- package/templates/next/src/app/examples/tasks/page.tsx +47 -0
- package/templates/next/src/app/layout.tsx +43 -0
- package/templates/next/src/app/page.tsx +5 -0
- package/templates/next/src/assets/Inter.var.woff2 +0 -0
- package/templates/next/src/assets/logo.png +0 -0
- package/templates/next/src/components/examples/.eslintrc.json +6 -0
- package/templates/next/src/components/examples/accordion/demo.tsx +32 -0
- package/templates/next/src/components/examples/alert/demo.tsx +15 -0
- package/templates/next/src/components/examples/alert/destructive.tsx +15 -0
- package/templates/next/src/components/examples/alert-dialog/demo.tsx +35 -0
- package/templates/next/src/components/examples/aspect-ratio/demo.tsx +16 -0
- package/templates/next/src/components/examples/avatar/demo.tsx +10 -0
- package/templates/next/src/components/examples/badge/demo.tsx +5 -0
- package/templates/next/src/components/examples/badge/destructive.tsx +5 -0
- package/templates/next/src/components/examples/badge/outline.tsx +5 -0
- package/templates/next/src/components/examples/badge/secondary.tsx +5 -0
- package/templates/next/src/components/examples/button/as-child.tsx +10 -0
- package/templates/next/src/components/examples/button/demo.tsx +5 -0
- package/templates/next/src/components/examples/button/destructive.tsx +5 -0
- package/templates/next/src/components/examples/button/ghost.tsx +5 -0
- package/templates/next/src/components/examples/button/link.tsx +5 -0
- package/templates/next/src/components/examples/button/loading.tsx +12 -0
- package/templates/next/src/components/examples/button/outline.tsx +5 -0
- package/templates/next/src/components/examples/button/secondary.tsx +5 -0
- package/templates/next/src/components/examples/button/with-icon.tsx +11 -0
- package/templates/next/src/components/examples/calendar/date-picker.tsx +43 -0
- package/templates/next/src/components/examples/calendar/date-range-picker.tsx +65 -0
- package/templates/next/src/components/examples/calendar/demo.tsx +18 -0
- package/templates/next/src/components/examples/calendar/react-hook-form.tsx +101 -0
- package/templates/next/src/components/examples/calendar/with-presets.tsx +62 -0
- package/templates/next/src/components/examples/card/demo.tsx +79 -0
- package/templates/next/src/components/examples/card/with-form.tsx +59 -0
- package/templates/next/src/components/examples/checkbox/demo.tsx +17 -0
- package/templates/next/src/components/examples/checkbox/disabled.tsx +15 -0
- package/templates/next/src/components/examples/checkbox/react-hook-form-multiple.tsx +127 -0
- package/templates/next/src/components/examples/checkbox/react-hook-form-single.tsx +72 -0
- package/templates/next/src/components/examples/checkbox/with-text.tsx +22 -0
- package/templates/next/src/components/examples/collapsible/demo.tsx +46 -0
- package/templates/next/src/components/examples/combobox/demo.tsx +90 -0
- package/templates/next/src/components/examples/combobox/dropdown-menu.tsx +110 -0
- package/templates/next/src/components/examples/combobox/popover.tsx +124 -0
- package/templates/next/src/components/examples/combobox/react-hook-form.tsx +135 -0
- package/templates/next/src/components/examples/command/combobox.tsx +90 -0
- package/templates/next/src/components/examples/command/demo.tsx +62 -0
- package/templates/next/src/components/examples/command/dialog.tsx +86 -0
- package/templates/next/src/components/examples/command/dropdown-menu.tsx +110 -0
- package/templates/next/src/components/examples/command/popover.tsx +124 -0
- package/templates/next/src/components/examples/context-menu/demo.tsx +67 -0
- package/templates/next/src/components/examples/data-table/columns.tsx +110 -0
- package/templates/next/src/components/examples/data-table/data-table.tsx +185 -0
- package/templates/next/src/components/examples/data-table/demo.tsx +41 -0
- package/templates/next/src/components/examples/date-picker/demo.tsx +43 -0
- package/templates/next/src/components/examples/date-picker/react-hook-form.tsx +101 -0
- package/templates/next/src/components/examples/date-picker/with-presets.tsx +62 -0
- package/templates/next/src/components/examples/date-picker/with-range.tsx +65 -0
- package/templates/next/src/components/examples/dialog/demo.tsx +47 -0
- package/templates/next/src/components/examples/dropdown-menu/checkboxes.tsx +53 -0
- package/templates/next/src/components/examples/dropdown-menu/demo.tsx +122 -0
- package/templates/next/src/components/examples/dropdown-menu/radio-group.tsx +37 -0
- package/templates/next/src/components/examples/hover-card/demo.tsx +39 -0
- package/templates/next/src/components/examples/index.tsx +213 -0
- package/templates/next/src/components/examples/input/demo.tsx +5 -0
- package/templates/next/src/components/examples/input/disabled.tsx +5 -0
- package/templates/next/src/components/examples/input/file.tsx +11 -0
- package/templates/next/src/components/examples/input/react-hook-form.tsx +65 -0
- package/templates/next/src/components/examples/input/with-button.tsx +11 -0
- package/templates/next/src/components/examples/input/with-label.tsx +11 -0
- package/templates/next/src/components/examples/input/with-text.tsx +12 -0
- package/templates/next/src/components/examples/label/demo.tsx +13 -0
- package/templates/next/src/components/examples/menubar/demo.tsx +107 -0
- package/templates/next/src/components/examples/navigation-menu/demo.tsx +144 -0
- package/templates/next/src/components/examples/popover/demo.tsx +67 -0
- package/templates/next/src/components/examples/progress/demo.tsx +16 -0
- package/templates/next/src/components/examples/radio-group/demo.tsx +21 -0
- package/templates/next/src/components/examples/radio-group/react-hook-form.tsx +88 -0
- package/templates/next/src/components/examples/scroll-area/demo.tsx +26 -0
- package/templates/next/src/components/examples/select/demo.tsx +31 -0
- package/templates/next/src/components/examples/select/react-hook-form.tsx +83 -0
- package/templates/next/src/components/examples/separator/demo.tsx +22 -0
- package/templates/next/src/components/examples/sheet/demo.tsx +47 -0
- package/templates/next/src/components/examples/sheet/position.tsx +75 -0
- package/templates/next/src/components/examples/sheet/size.tsx +75 -0
- package/templates/next/src/components/examples/skeleton/demo.tsx +13 -0
- package/templates/next/src/components/examples/slider/demo.tsx +16 -0
- package/templates/next/src/components/examples/switch/demo.tsx +11 -0
- package/templates/next/src/components/examples/switch/react-hook-form.tsx +101 -0
- package/templates/next/src/components/examples/table/demo.tsx +80 -0
- package/templates/next/src/components/examples/tabs/demo.tsx +69 -0
- package/templates/next/src/components/examples/textarea/demo.tsx +5 -0
- package/templates/next/src/components/examples/textarea/disabled.tsx +5 -0
- package/templates/next/src/components/examples/textarea/react-hook-form.tsx +77 -0
- package/templates/next/src/components/examples/textarea/with-button.tsx +11 -0
- package/templates/next/src/components/examples/textarea/with-label.tsx +11 -0
- package/templates/next/src/components/examples/textarea/with-text.tsx +14 -0
- package/templates/next/src/components/examples/toast/demo.tsx +26 -0
- package/templates/next/src/components/examples/toast/destructive.tsx +25 -0
- package/templates/next/src/components/examples/toast/simple.tsx +21 -0
- package/templates/next/src/components/examples/toast/with-action.tsx +24 -0
- package/templates/next/src/components/examples/toast/with-title.tsx +22 -0
- package/templates/next/src/components/examples/toggle/demo.tsx +11 -0
- package/templates/next/src/components/examples/toggle/disabled.tsx +11 -0
- package/templates/next/src/components/examples/toggle/lg.tsx +11 -0
- package/templates/next/src/components/examples/toggle/outline.tsx +11 -0
- package/templates/next/src/components/examples/toggle/sm.tsx +11 -0
- package/templates/next/src/components/examples/toggle/with-text.tsx +12 -0
- package/templates/next/src/components/examples/tooltip/demo.tsx +27 -0
- package/templates/next/src/components/examples/typography/blockquote.tsx +8 -0
- package/templates/next/src/components/examples/typography/demo.tsx +119 -0
- package/templates/next/src/components/examples/typography/h1.tsx +7 -0
- package/templates/next/src/components/examples/typography/h2.tsx +7 -0
- package/templates/next/src/components/examples/typography/h3.tsx +7 -0
- package/templates/next/src/components/examples/typography/h4.tsx +7 -0
- package/templates/next/src/components/examples/typography/inline-code.tsx +7 -0
- package/templates/next/src/components/examples/typography/large.tsx +5 -0
- package/templates/next/src/components/examples/typography/lead.tsx +8 -0
- package/templates/next/src/components/examples/typography/list.tsx +9 -0
- package/templates/next/src/components/examples/typography/muted.tsx +5 -0
- package/templates/next/src/components/examples/typography/p.tsx +8 -0
- package/templates/next/src/components/examples/typography/small.tsx +5 -0
- package/templates/next/src/components/examples/typography/table.tsx +44 -0
- package/templates/next/src/components/examples-nav.tsx +70 -0
- package/templates/next/src/components/greeting.tsx +21 -0
- package/templates/next/src/components/icons.tsx +154 -0
- package/templates/next/src/components/menu-mode-toggle.tsx +46 -0
- package/templates/next/src/components/menu.tsx +268 -0
- package/templates/next/src/components/mode-toggle.tsx +43 -0
- package/templates/next/src/components/page-header.tsx +50 -0
- package/templates/next/src/components/react-hook-form/form.tsx +176 -0
- package/templates/next/src/components/style-switcher.tsx +19 -0
- package/templates/next/src/components/tailwind-indicator.tsx +18 -0
- package/templates/next/src/components/theme-provider.tsx +9 -0
- package/templates/next/src/components/ui/accordion.tsx +60 -0
- package/templates/next/src/components/ui/alert-dialog.tsx +150 -0
- package/templates/next/src/components/ui/alert.tsx +61 -0
- package/templates/next/src/components/ui/aspect-ratio.tsx +7 -0
- package/templates/next/src/components/ui/avatar.tsx +50 -0
- package/templates/next/src/components/ui/badge.tsx +36 -0
- package/templates/next/src/components/ui/button.tsx +51 -0
- package/templates/next/src/components/ui/calendar.tsx +64 -0
- package/templates/next/src/components/ui/card.tsx +81 -0
- package/templates/next/src/components/ui/checkbox.tsx +30 -0
- package/templates/next/src/components/ui/collapsible.tsx +11 -0
- package/templates/next/src/components/ui/command.tsx +155 -0
- package/templates/next/src/components/ui/context-menu.tsx +200 -0
- package/templates/next/src/components/ui/dialog.tsx +128 -0
- package/templates/next/src/components/ui/dropdown-menu.tsx +200 -0
- package/templates/next/src/components/ui/hover-card.tsx +29 -0
- package/templates/next/src/components/ui/input.tsx +27 -0
- package/templates/next/src/components/ui/label.tsx +26 -0
- package/templates/next/src/components/ui/menubar.tsx +236 -0
- package/templates/next/src/components/ui/navigation-menu.tsx +130 -0
- package/templates/next/src/components/ui/popover.tsx +31 -0
- package/templates/next/src/components/ui/progress.tsx +28 -0
- package/templates/next/src/components/ui/radio-group.tsx +44 -0
- package/templates/next/src/components/ui/scroll-area.tsx +48 -0
- package/templates/next/src/components/ui/select.tsx +120 -0
- package/templates/next/src/components/ui/separator.tsx +31 -0
- package/templates/next/src/components/ui/sheet.tsx +230 -0
- package/templates/next/src/components/ui/skeleton.tsx +17 -0
- package/templates/next/src/components/ui/slider.tsx +28 -0
- package/templates/next/src/components/ui/switch.tsx +29 -0
- package/templates/next/src/components/ui/table.tsx +114 -0
- package/templates/next/src/components/ui/tabs.tsx +55 -0
- package/templates/next/src/components/ui/textarea.tsx +26 -0
- package/templates/next/src/components/ui/toast.tsx +129 -0
- package/templates/next/src/components/ui/toaster.tsx +35 -0
- package/templates/next/src/components/ui/toggle.tsx +45 -0
- package/templates/next/src/components/ui/tooltip.tsx +30 -0
- package/templates/next/src/components/ui/use-toast.ts +191 -0
- package/templates/next/src/data/albums.ts +71 -0
- package/templates/next/src/data/playlists.ts +16 -0
- package/templates/next/src/hooks/use-lock-body.ts +12 -0
- package/templates/next/src/hooks/use-mounted.ts +11 -0
- package/templates/next/src/hooks/use-mutation-observer.ts +20 -0
- package/templates/next/src/lib/fonts.ts +11 -0
- package/templates/next/src/lib/utils.ts +19 -0
- package/templates/next/src/styles/globals.css +124 -0
- package/templates/next/src-tauri/Cargo.lock +3636 -0
- package/templates/next/src-tauri/Cargo.toml +36 -0
- package/templates/next/src-tauri/build.rs +3 -0
- package/templates/next/src-tauri/icons/128x128.png +0 -0
- package/templates/next/src-tauri/icons/128x128@2x.png +0 -0
- package/templates/next/src-tauri/icons/32x32.png +0 -0
- package/templates/next/src-tauri/icons/Square107x107Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square142x142Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square150x150Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square284x284Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square30x30Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square310x310Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square44x44Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square71x71Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square89x89Logo.png +0 -0
- package/templates/next/src-tauri/icons/StoreLogo.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/icon.icns +0 -0
- package/templates/next/src-tauri/icons/icon.ico +0 -0
- package/templates/next/src-tauri/icons/icon.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
- package/templates/next/src-tauri/src/main.rs +19 -0
- package/templates/next/src-tauri/tauri.conf.json +63 -0
- package/templates/next/tailwind.config.js +80 -0
- package/templates/next/tsconfig.json +35 -0
- package/templates/vite/.github/workflows/release.yml +108 -0
- package/templates/vite/.vscode/extensions.json +3 -0
- package/templates/vite/README.md +7 -0
- package/templates/vite/app-icon.png +0 -0
- package/templates/vite/index.html +16 -0
- package/templates/vite/package.json +75 -0
- package/templates/vite/pnpm-lock.yaml +4569 -0
- package/templates/vite/postcss.config.js +6 -0
- package/templates/vite/prettier.config.cjs +35 -0
- package/templates/vite/src/App.tsx +39 -0
- package/templates/vite/src/aa +34 -0
- package/templates/vite/src/assets/Inter.var.woff2 +0 -0
- package/templates/vite/src/components/icons.tsx +154 -0
- package/templates/vite/src/components/menu-mode-toggle.tsx +46 -0
- package/templates/vite/src/components/menu.tsx +232 -0
- package/templates/vite/src/components/tailwind-indicator.tsx +18 -0
- package/templates/vite/src/components/theme-provider.tsx +9 -0
- package/templates/vite/src/components/ui/accordion.tsx +60 -0
- package/templates/vite/src/components/ui/alert-dialog.tsx +150 -0
- package/templates/vite/src/components/ui/alert.tsx +61 -0
- package/templates/vite/src/components/ui/aspect-ratio.tsx +7 -0
- package/templates/vite/src/components/ui/avatar.tsx +50 -0
- package/templates/vite/src/components/ui/badge.tsx +36 -0
- package/templates/vite/src/components/ui/button.tsx +51 -0
- package/templates/vite/src/components/ui/calendar.tsx +64 -0
- package/templates/vite/src/components/ui/card.tsx +81 -0
- package/templates/vite/src/components/ui/checkbox.tsx +30 -0
- package/templates/vite/src/components/ui/collapsible.tsx +11 -0
- package/templates/vite/src/components/ui/command.tsx +155 -0
- package/templates/vite/src/components/ui/context-menu.tsx +200 -0
- package/templates/vite/src/components/ui/dialog.tsx +128 -0
- package/templates/vite/src/components/ui/dropdown-menu.tsx +200 -0
- package/templates/vite/src/components/ui/hover-card.tsx +29 -0
- package/templates/vite/src/components/ui/input.tsx +27 -0
- package/templates/vite/src/components/ui/label.tsx +26 -0
- package/templates/vite/src/components/ui/menubar.tsx +236 -0
- package/templates/vite/src/components/ui/navigation-menu.tsx +130 -0
- package/templates/vite/src/components/ui/popover.tsx +31 -0
- package/templates/vite/src/components/ui/progress.tsx +28 -0
- package/templates/vite/src/components/ui/radio-group.tsx +44 -0
- package/templates/vite/src/components/ui/scroll-area.tsx +48 -0
- package/templates/vite/src/components/ui/select.tsx +120 -0
- package/templates/vite/src/components/ui/separator.tsx +31 -0
- package/templates/vite/src/components/ui/sheet.tsx +230 -0
- package/templates/vite/src/components/ui/skeleton.tsx +17 -0
- package/templates/vite/src/components/ui/slider.tsx +28 -0
- package/templates/vite/src/components/ui/switch.tsx +29 -0
- package/templates/vite/src/components/ui/table.tsx +114 -0
- package/templates/vite/src/components/ui/tabs.tsx +55 -0
- package/templates/vite/src/components/ui/textarea.tsx +26 -0
- package/templates/vite/src/components/ui/toast.tsx +129 -0
- package/templates/vite/src/components/ui/toaster.tsx +35 -0
- package/templates/vite/src/components/ui/toggle.tsx +45 -0
- package/templates/vite/src/components/ui/tooltip.tsx +30 -0
- package/templates/vite/src/components/ui/use-toast.ts +191 -0
- package/templates/vite/src/dashboard/components/date-range-picker.tsx +66 -0
- package/templates/vite/src/dashboard/components/main-nav.tsx +38 -0
- package/templates/vite/src/dashboard/components/overview.tsx +78 -0
- package/templates/vite/src/dashboard/components/recent-sales.tsx +67 -0
- package/templates/vite/src/dashboard/components/search.tsx +13 -0
- package/templates/vite/src/dashboard/components/team-switcher.tsx +205 -0
- package/templates/vite/src/dashboard/components/user-nav.tsx +67 -0
- package/templates/vite/src/dashboard/page.tsx +140 -0
- package/templates/vite/src/lib/utils.ts +19 -0
- package/templates/vite/src/main.tsx +10 -0
- package/templates/vite/src/styles/globals.css +124 -0
- package/templates/vite/src/vite-env.d.ts +1 -0
- package/templates/vite/src-tauri/Cargo.lock +3636 -0
- package/templates/vite/src-tauri/Cargo.toml +33 -0
- package/templates/vite/src-tauri/build.rs +3 -0
- package/templates/vite/src-tauri/icons/128x128.png +0 -0
- package/templates/vite/src-tauri/icons/128x128@2x.png +0 -0
- package/templates/vite/src-tauri/icons/32x32.png +0 -0
- package/templates/vite/src-tauri/icons/Square107x107Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square142x142Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square150x150Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square284x284Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square30x30Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square310x310Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square44x44Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square71x71Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square89x89Logo.png +0 -0
- package/templates/vite/src-tauri/icons/StoreLogo.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/vite/src-tauri/icons/icon.icns +0 -0
- package/templates/vite/src-tauri/icons/icon.ico +0 -0
- package/templates/vite/src-tauri/icons/icon.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
- package/templates/vite/src-tauri/src/main.rs +16 -0
- package/templates/vite/src-tauri/tauri.conf.json +63 -0
- package/templates/vite/tailwind.config.js +78 -0
- package/templates/vite/tsconfig.json +26 -0
- package/templates/vite/tsconfig.node.json +9 -0
- package/templates/vite/vite.config.ts +33 -0
|
@@ -0,0 +1,702 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "TASK-8782",
|
|
4
|
+
"title": "You can't compress the program without quantifying the open-source SSD pixel!",
|
|
5
|
+
"status": "in progress",
|
|
6
|
+
"label": "documentation",
|
|
7
|
+
"priority": "medium"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"id": "TASK-7878",
|
|
11
|
+
"title": "Try to calculate the EXE feed, maybe it will index the multi-byte pixel!",
|
|
12
|
+
"status": "backlog",
|
|
13
|
+
"label": "documentation",
|
|
14
|
+
"priority": "medium"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "TASK-7839",
|
|
18
|
+
"title": "We need to bypass the neural TCP card!",
|
|
19
|
+
"status": "todo",
|
|
20
|
+
"label": "bug",
|
|
21
|
+
"priority": "high"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "TASK-5562",
|
|
25
|
+
"title": "The SAS interface is down, bypass the open-source pixel so we can back up the PNG bandwidth!",
|
|
26
|
+
"status": "backlog",
|
|
27
|
+
"label": "feature",
|
|
28
|
+
"priority": "medium"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "TASK-8686",
|
|
32
|
+
"title": "I'll parse the wireless SSL protocol, that should driver the API panel!",
|
|
33
|
+
"status": "canceled",
|
|
34
|
+
"label": "feature",
|
|
35
|
+
"priority": "medium"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "TASK-1280",
|
|
39
|
+
"title": "Use the digital TLS panel, then you can transmit the haptic system!",
|
|
40
|
+
"status": "done",
|
|
41
|
+
"label": "bug",
|
|
42
|
+
"priority": "high"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "TASK-7262",
|
|
46
|
+
"title": "The UTF8 application is down, parse the neural bandwidth so we can back up the PNG firewall!",
|
|
47
|
+
"status": "done",
|
|
48
|
+
"label": "feature",
|
|
49
|
+
"priority": "high"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "TASK-1138",
|
|
53
|
+
"title": "Generating the driver won't do anything, we need to quantify the 1080p SMTP bandwidth!",
|
|
54
|
+
"status": "in progress",
|
|
55
|
+
"label": "feature",
|
|
56
|
+
"priority": "medium"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "TASK-7184",
|
|
60
|
+
"title": "We need to program the back-end THX pixel!",
|
|
61
|
+
"status": "todo",
|
|
62
|
+
"label": "feature",
|
|
63
|
+
"priority": "low"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "TASK-5160",
|
|
67
|
+
"title": "Calculating the bus won't do anything, we need to navigate the back-end JSON protocol!",
|
|
68
|
+
"status": "in progress",
|
|
69
|
+
"label": "documentation",
|
|
70
|
+
"priority": "high"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "TASK-5618",
|
|
74
|
+
"title": "Generating the driver won't do anything, we need to index the online SSL application!",
|
|
75
|
+
"status": "done",
|
|
76
|
+
"label": "documentation",
|
|
77
|
+
"priority": "medium"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"id": "TASK-6699",
|
|
81
|
+
"title": "I'll transmit the wireless JBOD capacitor, that should hard drive the SSD feed!",
|
|
82
|
+
"status": "backlog",
|
|
83
|
+
"label": "documentation",
|
|
84
|
+
"priority": "medium"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": "TASK-2858",
|
|
88
|
+
"title": "We need to override the online UDP bus!",
|
|
89
|
+
"status": "backlog",
|
|
90
|
+
"label": "bug",
|
|
91
|
+
"priority": "medium"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "TASK-9864",
|
|
95
|
+
"title": "I'll reboot the 1080p FTP panel, that should matrix the HEX hard drive!",
|
|
96
|
+
"status": "done",
|
|
97
|
+
"label": "bug",
|
|
98
|
+
"priority": "high"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": "TASK-8404",
|
|
102
|
+
"title": "We need to generate the virtual HEX alarm!",
|
|
103
|
+
"status": "in progress",
|
|
104
|
+
"label": "bug",
|
|
105
|
+
"priority": "low"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": "TASK-5365",
|
|
109
|
+
"title": "Backing up the pixel won't do anything, we need to transmit the primary IB array!",
|
|
110
|
+
"status": "in progress",
|
|
111
|
+
"label": "documentation",
|
|
112
|
+
"priority": "low"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"id": "TASK-1780",
|
|
116
|
+
"title": "The CSS feed is down, index the bluetooth transmitter so we can compress the CLI protocol!",
|
|
117
|
+
"status": "todo",
|
|
118
|
+
"label": "documentation",
|
|
119
|
+
"priority": "high"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "TASK-6938",
|
|
123
|
+
"title": "Use the redundant SCSI application, then you can hack the optical alarm!",
|
|
124
|
+
"status": "todo",
|
|
125
|
+
"label": "documentation",
|
|
126
|
+
"priority": "high"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "TASK-9885",
|
|
130
|
+
"title": "We need to compress the auxiliary VGA driver!",
|
|
131
|
+
"status": "backlog",
|
|
132
|
+
"label": "bug",
|
|
133
|
+
"priority": "high"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "TASK-3216",
|
|
137
|
+
"title": "Transmitting the transmitter won't do anything, we need to compress the virtual HDD sensor!",
|
|
138
|
+
"status": "backlog",
|
|
139
|
+
"label": "documentation",
|
|
140
|
+
"priority": "medium"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "TASK-9285",
|
|
144
|
+
"title": "The IP monitor is down, copy the haptic alarm so we can generate the HTTP transmitter!",
|
|
145
|
+
"status": "todo",
|
|
146
|
+
"label": "bug",
|
|
147
|
+
"priority": "high"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"id": "TASK-1024",
|
|
151
|
+
"title": "Overriding the microchip won't do anything, we need to transmit the digital OCR transmitter!",
|
|
152
|
+
"status": "in progress",
|
|
153
|
+
"label": "documentation",
|
|
154
|
+
"priority": "low"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"id": "TASK-7068",
|
|
158
|
+
"title": "You can't generate the capacitor without indexing the wireless HEX pixel!",
|
|
159
|
+
"status": "canceled",
|
|
160
|
+
"label": "bug",
|
|
161
|
+
"priority": "low"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"id": "TASK-6502",
|
|
165
|
+
"title": "Navigating the microchip won't do anything, we need to bypass the back-end SQL bus!",
|
|
166
|
+
"status": "todo",
|
|
167
|
+
"label": "bug",
|
|
168
|
+
"priority": "high"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": "TASK-5326",
|
|
172
|
+
"title": "We need to hack the redundant UTF8 transmitter!",
|
|
173
|
+
"status": "todo",
|
|
174
|
+
"label": "bug",
|
|
175
|
+
"priority": "low"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"id": "TASK-6274",
|
|
179
|
+
"title": "Use the virtual PCI circuit, then you can parse the bluetooth alarm!",
|
|
180
|
+
"status": "canceled",
|
|
181
|
+
"label": "documentation",
|
|
182
|
+
"priority": "low"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"id": "TASK-1571",
|
|
186
|
+
"title": "I'll input the neural DRAM circuit, that should protocol the SMTP interface!",
|
|
187
|
+
"status": "in progress",
|
|
188
|
+
"label": "feature",
|
|
189
|
+
"priority": "medium"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"id": "TASK-9518",
|
|
193
|
+
"title": "Compressing the interface won't do anything, we need to compress the online SDD matrix!",
|
|
194
|
+
"status": "canceled",
|
|
195
|
+
"label": "documentation",
|
|
196
|
+
"priority": "medium"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"id": "TASK-5581",
|
|
200
|
+
"title": "I'll synthesize the digital COM pixel, that should transmitter the UTF8 protocol!",
|
|
201
|
+
"status": "backlog",
|
|
202
|
+
"label": "documentation",
|
|
203
|
+
"priority": "high"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"id": "TASK-2197",
|
|
207
|
+
"title": "Parsing the feed won't do anything, we need to copy the bluetooth DRAM bus!",
|
|
208
|
+
"status": "todo",
|
|
209
|
+
"label": "documentation",
|
|
210
|
+
"priority": "low"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"id": "TASK-8484",
|
|
214
|
+
"title": "We need to parse the solid state UDP firewall!",
|
|
215
|
+
"status": "in progress",
|
|
216
|
+
"label": "bug",
|
|
217
|
+
"priority": "low"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"id": "TASK-9892",
|
|
221
|
+
"title": "If we back up the application, we can get to the UDP application through the multi-byte THX capacitor!",
|
|
222
|
+
"status": "done",
|
|
223
|
+
"label": "documentation",
|
|
224
|
+
"priority": "high"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"id": "TASK-9616",
|
|
228
|
+
"title": "We need to synthesize the cross-platform ASCII pixel!",
|
|
229
|
+
"status": "in progress",
|
|
230
|
+
"label": "feature",
|
|
231
|
+
"priority": "medium"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"id": "TASK-9744",
|
|
235
|
+
"title": "Use the back-end IP card, then you can input the solid state hard drive!",
|
|
236
|
+
"status": "done",
|
|
237
|
+
"label": "documentation",
|
|
238
|
+
"priority": "low"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "TASK-1376",
|
|
242
|
+
"title": "Generating the alarm won't do anything, we need to generate the mobile IP capacitor!",
|
|
243
|
+
"status": "backlog",
|
|
244
|
+
"label": "documentation",
|
|
245
|
+
"priority": "low"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"id": "TASK-7382",
|
|
249
|
+
"title": "If we back up the firewall, we can get to the RAM alarm through the primary UTF8 pixel!",
|
|
250
|
+
"status": "todo",
|
|
251
|
+
"label": "feature",
|
|
252
|
+
"priority": "low"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": "TASK-2290",
|
|
256
|
+
"title": "I'll compress the virtual JSON panel, that should application the UTF8 bus!",
|
|
257
|
+
"status": "canceled",
|
|
258
|
+
"label": "documentation",
|
|
259
|
+
"priority": "high"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"id": "TASK-1533",
|
|
263
|
+
"title": "You can't input the firewall without overriding the wireless TCP firewall!",
|
|
264
|
+
"status": "done",
|
|
265
|
+
"label": "bug",
|
|
266
|
+
"priority": "high"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"id": "TASK-4920",
|
|
270
|
+
"title": "Bypassing the hard drive won't do anything, we need to input the bluetooth JSON program!",
|
|
271
|
+
"status": "in progress",
|
|
272
|
+
"label": "bug",
|
|
273
|
+
"priority": "high"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"id": "TASK-5168",
|
|
277
|
+
"title": "If we synthesize the bus, we can get to the IP panel through the virtual TLS array!",
|
|
278
|
+
"status": "in progress",
|
|
279
|
+
"label": "feature",
|
|
280
|
+
"priority": "low"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"id": "TASK-7103",
|
|
284
|
+
"title": "We need to parse the multi-byte EXE bandwidth!",
|
|
285
|
+
"status": "canceled",
|
|
286
|
+
"label": "feature",
|
|
287
|
+
"priority": "low"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"id": "TASK-4314",
|
|
291
|
+
"title": "If we compress the program, we can get to the XML alarm through the multi-byte COM matrix!",
|
|
292
|
+
"status": "in progress",
|
|
293
|
+
"label": "bug",
|
|
294
|
+
"priority": "high"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"id": "TASK-3415",
|
|
298
|
+
"title": "Use the cross-platform XML application, then you can quantify the solid state feed!",
|
|
299
|
+
"status": "todo",
|
|
300
|
+
"label": "feature",
|
|
301
|
+
"priority": "high"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"id": "TASK-8339",
|
|
305
|
+
"title": "Try to calculate the DNS interface, maybe it will input the bluetooth capacitor!",
|
|
306
|
+
"status": "in progress",
|
|
307
|
+
"label": "feature",
|
|
308
|
+
"priority": "low"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": "TASK-6995",
|
|
312
|
+
"title": "Try to hack the XSS bandwidth, maybe it will override the bluetooth matrix!",
|
|
313
|
+
"status": "todo",
|
|
314
|
+
"label": "feature",
|
|
315
|
+
"priority": "high"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"id": "TASK-8053",
|
|
319
|
+
"title": "If we connect the program, we can get to the UTF8 matrix through the digital UDP protocol!",
|
|
320
|
+
"status": "todo",
|
|
321
|
+
"label": "feature",
|
|
322
|
+
"priority": "medium"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"id": "TASK-4336",
|
|
326
|
+
"title": "If we synthesize the microchip, we can get to the SAS sensor through the optical UDP program!",
|
|
327
|
+
"status": "todo",
|
|
328
|
+
"label": "documentation",
|
|
329
|
+
"priority": "low"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"id": "TASK-8790",
|
|
333
|
+
"title": "I'll back up the optical COM alarm, that should alarm the RSS capacitor!",
|
|
334
|
+
"status": "done",
|
|
335
|
+
"label": "bug",
|
|
336
|
+
"priority": "medium"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"id": "TASK-8980",
|
|
340
|
+
"title": "Try to navigate the SQL transmitter, maybe it will back up the virtual firewall!",
|
|
341
|
+
"status": "canceled",
|
|
342
|
+
"label": "bug",
|
|
343
|
+
"priority": "low"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"id": "TASK-7342",
|
|
347
|
+
"title": "Use the neural CLI card, then you can parse the online port!",
|
|
348
|
+
"status": "backlog",
|
|
349
|
+
"label": "documentation",
|
|
350
|
+
"priority": "low"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"id": "TASK-5608",
|
|
354
|
+
"title": "I'll hack the haptic SSL program, that should bus the UDP transmitter!",
|
|
355
|
+
"status": "canceled",
|
|
356
|
+
"label": "documentation",
|
|
357
|
+
"priority": "low"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"id": "TASK-1606",
|
|
361
|
+
"title": "I'll generate the bluetooth PNG firewall, that should pixel the SSL driver!",
|
|
362
|
+
"status": "done",
|
|
363
|
+
"label": "feature",
|
|
364
|
+
"priority": "medium"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"id": "TASK-7872",
|
|
368
|
+
"title": "Transmitting the circuit won't do anything, we need to reboot the 1080p RSS monitor!",
|
|
369
|
+
"status": "canceled",
|
|
370
|
+
"label": "feature",
|
|
371
|
+
"priority": "medium"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"id": "TASK-4167",
|
|
375
|
+
"title": "Use the cross-platform SMS circuit, then you can synthesize the optical feed!",
|
|
376
|
+
"status": "canceled",
|
|
377
|
+
"label": "bug",
|
|
378
|
+
"priority": "medium"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"id": "TASK-9581",
|
|
382
|
+
"title": "You can't index the port without hacking the cross-platform XSS monitor!",
|
|
383
|
+
"status": "backlog",
|
|
384
|
+
"label": "documentation",
|
|
385
|
+
"priority": "low"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"id": "TASK-8806",
|
|
389
|
+
"title": "We need to bypass the back-end SSL panel!",
|
|
390
|
+
"status": "done",
|
|
391
|
+
"label": "bug",
|
|
392
|
+
"priority": "medium"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"id": "TASK-6542",
|
|
396
|
+
"title": "Try to quantify the RSS firewall, maybe it will quantify the open-source system!",
|
|
397
|
+
"status": "done",
|
|
398
|
+
"label": "feature",
|
|
399
|
+
"priority": "low"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"id": "TASK-6806",
|
|
403
|
+
"title": "The VGA protocol is down, reboot the back-end matrix so we can parse the CSS panel!",
|
|
404
|
+
"status": "canceled",
|
|
405
|
+
"label": "documentation",
|
|
406
|
+
"priority": "low"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"id": "TASK-9549",
|
|
410
|
+
"title": "You can't bypass the bus without connecting the neural JBOD bus!",
|
|
411
|
+
"status": "todo",
|
|
412
|
+
"label": "feature",
|
|
413
|
+
"priority": "high"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"id": "TASK-1075",
|
|
417
|
+
"title": "Backing up the driver won't do anything, we need to parse the redundant RAM pixel!",
|
|
418
|
+
"status": "done",
|
|
419
|
+
"label": "feature",
|
|
420
|
+
"priority": "medium"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"id": "TASK-1427",
|
|
424
|
+
"title": "Use the auxiliary PCI circuit, then you can calculate the cross-platform interface!",
|
|
425
|
+
"status": "done",
|
|
426
|
+
"label": "documentation",
|
|
427
|
+
"priority": "high"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"id": "TASK-1907",
|
|
431
|
+
"title": "Hacking the circuit won't do anything, we need to back up the online DRAM system!",
|
|
432
|
+
"status": "todo",
|
|
433
|
+
"label": "documentation",
|
|
434
|
+
"priority": "high"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"id": "TASK-4309",
|
|
438
|
+
"title": "If we generate the system, we can get to the TCP sensor through the optical GB pixel!",
|
|
439
|
+
"status": "backlog",
|
|
440
|
+
"label": "bug",
|
|
441
|
+
"priority": "medium"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"id": "TASK-3973",
|
|
445
|
+
"title": "I'll parse the back-end ADP array, that should bandwidth the RSS bandwidth!",
|
|
446
|
+
"status": "todo",
|
|
447
|
+
"label": "feature",
|
|
448
|
+
"priority": "medium"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"id": "TASK-7962",
|
|
452
|
+
"title": "Use the wireless RAM program, then you can hack the cross-platform feed!",
|
|
453
|
+
"status": "canceled",
|
|
454
|
+
"label": "bug",
|
|
455
|
+
"priority": "low"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"id": "TASK-3360",
|
|
459
|
+
"title": "You can't quantify the program without synthesizing the neural OCR interface!",
|
|
460
|
+
"status": "done",
|
|
461
|
+
"label": "feature",
|
|
462
|
+
"priority": "medium"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"id": "TASK-9887",
|
|
466
|
+
"title": "Use the auxiliary ASCII sensor, then you can connect the solid state port!",
|
|
467
|
+
"status": "backlog",
|
|
468
|
+
"label": "bug",
|
|
469
|
+
"priority": "medium"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"id": "TASK-3649",
|
|
473
|
+
"title": "I'll input the virtual USB system, that should circuit the DNS monitor!",
|
|
474
|
+
"status": "in progress",
|
|
475
|
+
"label": "feature",
|
|
476
|
+
"priority": "medium"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"id": "TASK-3586",
|
|
480
|
+
"title": "If we quantify the circuit, we can get to the CLI feed through the mobile SMS hard drive!",
|
|
481
|
+
"status": "in progress",
|
|
482
|
+
"label": "bug",
|
|
483
|
+
"priority": "low"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"id": "TASK-5150",
|
|
487
|
+
"title": "I'll hack the wireless XSS port, that should transmitter the IP interface!",
|
|
488
|
+
"status": "canceled",
|
|
489
|
+
"label": "feature",
|
|
490
|
+
"priority": "medium"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"id": "TASK-3652",
|
|
494
|
+
"title": "The SQL interface is down, override the optical bus so we can program the ASCII interface!",
|
|
495
|
+
"status": "backlog",
|
|
496
|
+
"label": "feature",
|
|
497
|
+
"priority": "low"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"id": "TASK-6884",
|
|
501
|
+
"title": "Use the digital PCI circuit, then you can synthesize the multi-byte microchip!",
|
|
502
|
+
"status": "canceled",
|
|
503
|
+
"label": "feature",
|
|
504
|
+
"priority": "high"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"id": "TASK-1591",
|
|
508
|
+
"title": "We need to connect the mobile XSS driver!",
|
|
509
|
+
"status": "in progress",
|
|
510
|
+
"label": "feature",
|
|
511
|
+
"priority": "high"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"id": "TASK-3802",
|
|
515
|
+
"title": "Try to override the ASCII protocol, maybe it will parse the virtual matrix!",
|
|
516
|
+
"status": "in progress",
|
|
517
|
+
"label": "feature",
|
|
518
|
+
"priority": "low"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"id": "TASK-7253",
|
|
522
|
+
"title": "Programming the capacitor won't do anything, we need to bypass the neural IB hard drive!",
|
|
523
|
+
"status": "backlog",
|
|
524
|
+
"label": "bug",
|
|
525
|
+
"priority": "high"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"id": "TASK-9739",
|
|
529
|
+
"title": "We need to hack the multi-byte HDD bus!",
|
|
530
|
+
"status": "done",
|
|
531
|
+
"label": "documentation",
|
|
532
|
+
"priority": "medium"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"id": "TASK-4424",
|
|
536
|
+
"title": "Try to hack the HEX alarm, maybe it will connect the optical pixel!",
|
|
537
|
+
"status": "in progress",
|
|
538
|
+
"label": "documentation",
|
|
539
|
+
"priority": "medium"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"id": "TASK-3922",
|
|
543
|
+
"title": "You can't back up the capacitor without generating the wireless PCI program!",
|
|
544
|
+
"status": "backlog",
|
|
545
|
+
"label": "bug",
|
|
546
|
+
"priority": "low"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"id": "TASK-4921",
|
|
550
|
+
"title": "I'll index the open-source IP feed, that should system the GB application!",
|
|
551
|
+
"status": "canceled",
|
|
552
|
+
"label": "bug",
|
|
553
|
+
"priority": "low"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"id": "TASK-5814",
|
|
557
|
+
"title": "We need to calculate the 1080p AGP feed!",
|
|
558
|
+
"status": "backlog",
|
|
559
|
+
"label": "bug",
|
|
560
|
+
"priority": "high"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"id": "TASK-2645",
|
|
564
|
+
"title": "Synthesizing the system won't do anything, we need to navigate the multi-byte HDD firewall!",
|
|
565
|
+
"status": "todo",
|
|
566
|
+
"label": "documentation",
|
|
567
|
+
"priority": "medium"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"id": "TASK-4535",
|
|
571
|
+
"title": "Try to copy the JSON circuit, maybe it will connect the wireless feed!",
|
|
572
|
+
"status": "in progress",
|
|
573
|
+
"label": "feature",
|
|
574
|
+
"priority": "low"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"id": "TASK-4463",
|
|
578
|
+
"title": "We need to copy the solid state AGP monitor!",
|
|
579
|
+
"status": "done",
|
|
580
|
+
"label": "documentation",
|
|
581
|
+
"priority": "low"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"id": "TASK-9745",
|
|
585
|
+
"title": "If we connect the protocol, we can get to the GB system through the bluetooth PCI microchip!",
|
|
586
|
+
"status": "canceled",
|
|
587
|
+
"label": "feature",
|
|
588
|
+
"priority": "high"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"id": "TASK-2080",
|
|
592
|
+
"title": "If we input the bus, we can get to the RAM matrix through the auxiliary RAM card!",
|
|
593
|
+
"status": "todo",
|
|
594
|
+
"label": "bug",
|
|
595
|
+
"priority": "medium"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"id": "TASK-3838",
|
|
599
|
+
"title": "I'll bypass the online TCP application, that should panel the AGP system!",
|
|
600
|
+
"status": "backlog",
|
|
601
|
+
"label": "bug",
|
|
602
|
+
"priority": "high"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"id": "TASK-1340",
|
|
606
|
+
"title": "We need to navigate the virtual PNG circuit!",
|
|
607
|
+
"status": "todo",
|
|
608
|
+
"label": "bug",
|
|
609
|
+
"priority": "medium"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"id": "TASK-6665",
|
|
613
|
+
"title": "If we parse the monitor, we can get to the SSD hard drive through the cross-platform AGP alarm!",
|
|
614
|
+
"status": "canceled",
|
|
615
|
+
"label": "feature",
|
|
616
|
+
"priority": "low"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"id": "TASK-7585",
|
|
620
|
+
"title": "If we calculate the hard drive, we can get to the SSL program through the multi-byte CSS microchip!",
|
|
621
|
+
"status": "backlog",
|
|
622
|
+
"label": "feature",
|
|
623
|
+
"priority": "low"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"id": "TASK-6319",
|
|
627
|
+
"title": "We need to copy the multi-byte SCSI program!",
|
|
628
|
+
"status": "backlog",
|
|
629
|
+
"label": "bug",
|
|
630
|
+
"priority": "high"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"id": "TASK-4369",
|
|
634
|
+
"title": "Try to input the SCSI bus, maybe it will generate the 1080p pixel!",
|
|
635
|
+
"status": "backlog",
|
|
636
|
+
"label": "bug",
|
|
637
|
+
"priority": "high"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"id": "TASK-9035",
|
|
641
|
+
"title": "We need to override the solid state PNG array!",
|
|
642
|
+
"status": "canceled",
|
|
643
|
+
"label": "documentation",
|
|
644
|
+
"priority": "low"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"id": "TASK-3970",
|
|
648
|
+
"title": "You can't index the transmitter without quantifying the haptic ASCII card!",
|
|
649
|
+
"status": "todo",
|
|
650
|
+
"label": "documentation",
|
|
651
|
+
"priority": "medium"
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"id": "TASK-4473",
|
|
655
|
+
"title": "You can't bypass the protocol without overriding the neural RSS program!",
|
|
656
|
+
"status": "todo",
|
|
657
|
+
"label": "documentation",
|
|
658
|
+
"priority": "low"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"id": "TASK-4136",
|
|
662
|
+
"title": "You can't hack the hard drive without hacking the primary JSON program!",
|
|
663
|
+
"status": "canceled",
|
|
664
|
+
"label": "bug",
|
|
665
|
+
"priority": "medium"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"id": "TASK-3939",
|
|
669
|
+
"title": "Use the back-end SQL firewall, then you can connect the neural hard drive!",
|
|
670
|
+
"status": "done",
|
|
671
|
+
"label": "feature",
|
|
672
|
+
"priority": "low"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"id": "TASK-2007",
|
|
676
|
+
"title": "I'll input the back-end USB protocol, that should bandwidth the PCI system!",
|
|
677
|
+
"status": "backlog",
|
|
678
|
+
"label": "bug",
|
|
679
|
+
"priority": "high"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"id": "TASK-7516",
|
|
683
|
+
"title": "Use the primary SQL program, then you can generate the auxiliary transmitter!",
|
|
684
|
+
"status": "done",
|
|
685
|
+
"label": "documentation",
|
|
686
|
+
"priority": "medium"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"id": "TASK-6906",
|
|
690
|
+
"title": "Try to back up the DRAM system, maybe it will reboot the online transmitter!",
|
|
691
|
+
"status": "done",
|
|
692
|
+
"label": "feature",
|
|
693
|
+
"priority": "high"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"id": "TASK-5207",
|
|
697
|
+
"title": "The SMS interface is down, copy the bluetooth bus so we can quantify the VGA card!",
|
|
698
|
+
"status": "in progress",
|
|
699
|
+
"label": "bug",
|
|
700
|
+
"priority": "low"
|
|
701
|
+
}
|
|
702
|
+
]
|