create-tauri-ui 0.2.1 → 0.3.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 +19 -10
- package/dist/index.mjs +26 -26
- package/package.json +55 -54
- package/templates/.shared/app-icon.png +0 -0
- package/templates/.shared/src-tauri/Cargo.lock +3832 -3701
- package/templates/.shared/src-tauri/Cargo.toml +4 -1
- package/templates/.shared/src-tauri/src/main.rs +3 -0
- package/templates/.shared/src-tauri/tauri.conf.json +1 -9
- package/templates/next/components.json +1 -1
- package/templates/next/package.json +87 -83
- package/templates/next/pnpm-lock.yaml +608 -566
- package/templates/next/src/app/examples/cards/components/date-picker.tsx +3 -1
- package/templates/next/src/app/examples/cards/components/github-card.tsx +2 -0
- package/templates/next/src/app/examples/cards/components/notifications.tsx +2 -0
- package/templates/next/src/app/examples/cards/components/payment-method.tsx +3 -1
- package/templates/next/src/app/examples/cards/components/team-members.tsx +3 -5
- package/templates/next/src/app/examples/forms/page.tsx +1 -1
- package/templates/next/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
- package/templates/next/src/components/about-dialog.tsx +111 -0
- package/templates/next/src/components/icons.tsx +156 -154
- package/templates/next/src/components/menu-mode-toggle.tsx +47 -46
- package/templates/next/src/components/menu.tsx +178 -214
- package/templates/next/src/components/page-header.tsx +2 -0
- package/templates/next/src/components/ui/accordion.tsx +60 -60
- package/templates/next/src/components/ui/alert-dialog.tsx +145 -145
- package/templates/next/src/components/ui/alert.tsx +59 -59
- package/templates/next/src/components/ui/aspect-ratio.tsx +7 -7
- package/templates/next/src/components/ui/avatar.tsx +50 -50
- package/templates/next/src/components/ui/badge.tsx +36 -36
- package/templates/next/src/components/ui/button.tsx +56 -56
- package/templates/next/src/components/ui/calendar.tsx +64 -64
- package/templates/next/src/components/ui/card.tsx +79 -79
- package/templates/next/src/components/ui/checkbox.tsx +30 -30
- package/templates/next/src/components/ui/collapsible.tsx +11 -11
- package/templates/next/src/components/ui/command.tsx +155 -155
- package/templates/next/src/components/ui/context-menu.tsx +200 -200
- package/templates/next/src/components/ui/dialog.tsx +123 -123
- package/templates/next/src/components/ui/dropdown-menu.tsx +200 -200
- package/templates/next/src/components/ui/form.tsx +176 -176
- package/templates/next/src/components/ui/hover-card.tsx +29 -29
- package/templates/next/src/components/ui/input.tsx +25 -25
- package/templates/next/src/components/ui/label.tsx +26 -26
- package/templates/next/src/components/ui/menubar.tsx +236 -236
- package/templates/next/src/components/ui/navigation-menu.tsx +128 -128
- package/templates/next/src/components/ui/popover.tsx +31 -31
- package/templates/next/src/components/ui/progress.tsx +28 -28
- package/templates/next/src/components/ui/radio-group.tsx +44 -44
- package/templates/next/src/components/ui/scroll-area.tsx +48 -48
- package/templates/next/src/components/ui/select.tsx +121 -121
- package/templates/next/src/components/ui/separator.tsx +31 -31
- package/templates/next/src/components/ui/sheet.tsx +144 -144
- package/templates/next/src/components/ui/skeleton.tsx +15 -15
- package/templates/next/src/components/ui/slider.tsx +28 -28
- package/templates/next/src/components/ui/switch.tsx +29 -29
- package/templates/next/src/components/ui/table.tsx +114 -114
- package/templates/next/src/components/ui/tabs.tsx +55 -55
- package/templates/next/src/components/ui/textarea.tsx +24 -24
- package/templates/next/src/components/ui/toast.tsx +127 -127
- package/templates/next/src/components/ui/toaster.tsx +35 -35
- package/templates/next/src/components/ui/toggle.tsx +45 -45
- package/templates/next/src/components/ui/tooltip.tsx +30 -30
- package/templates/next/src/components/ui/use-toast.ts +192 -192
- package/templates/next/src/styles/globals.css +5 -3
- package/templates/next/src-tauri/Cargo.lock +270 -139
- package/templates/next/src-tauri/Cargo.toml +39 -36
- package/templates/next/src-tauri/src/main.rs +22 -19
- package/templates/next/src-tauri/tauri.conf.json +1 -9
- package/templates/sveltekit/.github/workflows/release.yml +108 -108
- package/templates/sveltekit/package.json +84 -84
- package/templates/sveltekit/pnpm-lock.yaml +1069 -691
- package/templates/sveltekit/src/app.html +1 -1
- package/templates/sveltekit/src-tauri/Cargo.lock +3701 -3701
- package/templates/sveltekit/src-tauri/Cargo.toml +36 -36
- package/templates/sveltekit/src-tauri/tauri.conf.json +71 -79
- package/templates/sveltekit/static/favicon.ico +0 -0
- package/templates/sveltekit/vite.config.js +10 -6
- package/templates/vite/index.html +1 -1
- package/templates/vite/package.json +83 -76
- package/templates/vite/pnpm-lock.yaml +5178 -5110
- package/templates/vite/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
- package/templates/vite/src/components/about-dialog.tsx +101 -0
- package/templates/vite/src/components/icons.tsx +2 -2
- package/templates/vite/src/components/menu-mode-toggle.tsx +4 -3
- package/templates/vite/src/components/menu.tsx +177 -197
- package/templates/vite/src/components/ui/accordion.tsx +1 -3
- package/templates/vite/src/components/ui/alert-dialog.tsx +3 -10
- package/templates/vite/src/components/ui/alert.tsx +3 -5
- package/templates/vite/src/components/ui/aspect-ratio.tsx +0 -2
- package/templates/vite/src/components/ui/avatar.tsx +0 -2
- package/templates/vite/src/components/ui/badge.tsx +5 -5
- package/templates/vite/src/components/ui/button.tsx +15 -10
- package/templates/vite/src/components/ui/calendar.tsx +0 -2
- package/templates/vite/src/components/ui/card.tsx +1 -3
- package/templates/vite/src/components/ui/checkbox.tsx +2 -4
- package/templates/vite/src/components/ui/collapsible.tsx +0 -2
- package/templates/vite/src/components/ui/command.tsx +2 -4
- package/templates/vite/src/components/ui/context-menu.tsx +6 -8
- package/templates/vite/src/components/ui/dialog.tsx +4 -11
- package/templates/vite/src/components/ui/dropdown-menu.tsx +6 -8
- package/templates/vite/src/components/ui/form.tsx +176 -0
- package/templates/vite/src/components/ui/hover-card.tsx +1 -3
- package/templates/vite/src/components/ui/input.tsx +1 -3
- package/templates/vite/src/components/ui/label.tsx +1 -3
- package/templates/vite/src/components/ui/menubar.tsx +7 -9
- package/templates/vite/src/components/ui/navigation-menu.tsx +2 -4
- package/templates/vite/src/components/ui/popover.tsx +1 -3
- package/templates/vite/src/components/ui/progress.tsx +0 -2
- package/templates/vite/src/components/ui/radio-group.tsx +2 -4
- package/templates/vite/src/components/ui/scroll-area.tsx +0 -2
- package/templates/vite/src/components/ui/select.tsx +4 -5
- package/templates/vite/src/components/ui/separator.tsx +0 -2
- package/templates/vite/src/components/ui/sheet.tsx +22 -110
- package/templates/vite/src/components/ui/skeleton.tsx +0 -2
- package/templates/vite/src/components/ui/slider.tsx +0 -2
- package/templates/vite/src/components/ui/switch.tsx +1 -3
- package/templates/vite/src/components/ui/table.tsx +1 -1
- package/templates/vite/src/components/ui/tabs.tsx +1 -3
- package/templates/vite/src/components/ui/textarea.tsx +1 -3
- package/templates/vite/src/components/ui/toast.tsx +6 -8
- package/templates/vite/src/components/ui/toaster.tsx +0 -2
- package/templates/vite/src/components/ui/toggle.tsx +3 -5
- package/templates/vite/src/components/ui/tooltip.tsx +1 -3
- package/templates/vite/src/components/ui/use-toast.ts +5 -4
- package/templates/vite/src/styles/globals.css +5 -3
- package/templates/vite/src-tauri/Cargo.lock +3832 -3701
- package/templates/vite/src-tauri/Cargo.toml +39 -36
- package/templates/vite/src-tauri/src/main.rs +8 -2
- package/templates/vite/src-tauri/tauri.conf.json +1 -9
- package/templates/vite/vite.config.ts +2 -2
- package/templates/next/src/assets/Inter.var.woff2 +0 -0
- package/templates/vite/src/assets/Inter.var.woff2 +0 -0
- package/templates/viteuno/.github/workflows/release.yml +0 -108
- package/templates/viteuno/.vscode/extensions.json +0 -3
- package/templates/viteuno/README.md +0 -1
- package/templates/viteuno/app-icon.png +0 -0
- package/templates/viteuno/components.json +0 -16
- package/templates/viteuno/index.html +0 -16
- package/templates/viteuno/package.json +0 -73
- package/templates/viteuno/pnpm-lock.yaml +0 -5298
- package/templates/viteuno/preset.shadcn.ts +0 -160
- package/templates/viteuno/prettier.config.cjs +0 -34
- package/templates/viteuno/public/avatars/01.png +0 -0
- package/templates/viteuno/public/avatars/02.png +0 -0
- package/templates/viteuno/public/avatars/03.png +0 -0
- package/templates/viteuno/public/avatars/04.png +0 -0
- package/templates/viteuno/public/avatars/05.png +0 -0
- package/templates/viteuno/src/App.tsx +0 -39
- package/templates/viteuno/src/assets/Inter.var.woff2 +0 -0
- package/templates/viteuno/src/components/icons.tsx +0 -154
- package/templates/viteuno/src/components/menu-mode-toggle.tsx +0 -46
- package/templates/viteuno/src/components/menu.tsx +0 -232
- package/templates/viteuno/src/components/tailwind-indicator.tsx +0 -18
- package/templates/viteuno/src/components/theme-provider.tsx +0 -9
- package/templates/viteuno/src/components/ui/accordion.tsx +0 -60
- package/templates/viteuno/src/components/ui/alert-dialog.tsx +0 -150
- package/templates/viteuno/src/components/ui/alert.tsx +0 -61
- package/templates/viteuno/src/components/ui/aspect-ratio.tsx +0 -7
- package/templates/viteuno/src/components/ui/avatar.tsx +0 -50
- package/templates/viteuno/src/components/ui/badge.tsx +0 -36
- package/templates/viteuno/src/components/ui/button.tsx +0 -51
- package/templates/viteuno/src/components/ui/calendar.tsx +0 -64
- package/templates/viteuno/src/components/ui/card.tsx +0 -81
- package/templates/viteuno/src/components/ui/checkbox.tsx +0 -30
- package/templates/viteuno/src/components/ui/collapsible.tsx +0 -11
- package/templates/viteuno/src/components/ui/command.tsx +0 -155
- package/templates/viteuno/src/components/ui/context-menu.tsx +0 -200
- package/templates/viteuno/src/components/ui/dialog.tsx +0 -128
- package/templates/viteuno/src/components/ui/dropdown-menu.tsx +0 -200
- package/templates/viteuno/src/components/ui/hover-card.tsx +0 -29
- package/templates/viteuno/src/components/ui/index.ts +0 -0
- package/templates/viteuno/src/components/ui/input.tsx +0 -27
- package/templates/viteuno/src/components/ui/label.tsx +0 -26
- package/templates/viteuno/src/components/ui/menubar.tsx +0 -236
- package/templates/viteuno/src/components/ui/navigation-menu.tsx +0 -130
- package/templates/viteuno/src/components/ui/popover.tsx +0 -31
- package/templates/viteuno/src/components/ui/progress.tsx +0 -28
- package/templates/viteuno/src/components/ui/radio-group.tsx +0 -44
- package/templates/viteuno/src/components/ui/scroll-area.tsx +0 -48
- package/templates/viteuno/src/components/ui/select.tsx +0 -120
- package/templates/viteuno/src/components/ui/separator.tsx +0 -31
- package/templates/viteuno/src/components/ui/sheet.tsx +0 -230
- package/templates/viteuno/src/components/ui/skeleton.tsx +0 -17
- package/templates/viteuno/src/components/ui/slider.tsx +0 -28
- package/templates/viteuno/src/components/ui/switch.tsx +0 -29
- package/templates/viteuno/src/components/ui/table.tsx +0 -114
- package/templates/viteuno/src/components/ui/tabs.tsx +0 -55
- package/templates/viteuno/src/components/ui/textarea.tsx +0 -26
- package/templates/viteuno/src/components/ui/toast.tsx +0 -129
- package/templates/viteuno/src/components/ui/toaster.tsx +0 -35
- package/templates/viteuno/src/components/ui/toggle.tsx +0 -45
- package/templates/viteuno/src/components/ui/tooltip.tsx +0 -30
- package/templates/viteuno/src/components/ui/use-toast.ts +0 -191
- package/templates/viteuno/src/dashboard/components/date-range-picker.tsx +0 -66
- package/templates/viteuno/src/dashboard/components/main-nav.tsx +0 -38
- package/templates/viteuno/src/dashboard/components/overview.tsx +0 -78
- package/templates/viteuno/src/dashboard/components/recent-sales.tsx +0 -67
- package/templates/viteuno/src/dashboard/components/search.tsx +0 -13
- package/templates/viteuno/src/dashboard/components/team-switcher.tsx +0 -205
- package/templates/viteuno/src/dashboard/components/user-nav.tsx +0 -67
- package/templates/viteuno/src/dashboard/page.tsx +0 -140
- package/templates/viteuno/src/lib/utils.ts +0 -19
- package/templates/viteuno/src/main.tsx +0 -14
- package/templates/viteuno/src/styles/globals.css +0 -4
- package/templates/viteuno/src/vite-env.d.ts +0 -1
- package/templates/viteuno/src-tauri/Cargo.lock +0 -3701
- package/templates/viteuno/src-tauri/Cargo.toml +0 -36
- package/templates/viteuno/src-tauri/build.rs +0 -3
- package/templates/viteuno/src-tauri/icons/128x128.png +0 -0
- package/templates/viteuno/src-tauri/icons/128x128@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/32x32.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square107x107Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square142x142Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square150x150Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square284x284Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square30x30Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square310x310Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square44x44Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square71x71Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square89x89Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/StoreLogo.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/icon.icns +0 -0
- package/templates/viteuno/src-tauri/icons/icon.ico +0 -0
- package/templates/viteuno/src-tauri/icons/icon.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
- package/templates/viteuno/src-tauri/src/main.rs +0 -16
- package/templates/viteuno/src-tauri/tauri.conf.json +0 -79
- package/templates/viteuno/tsconfig.json +0 -26
- package/templates/viteuno/tsconfig.node.json +0 -9
- package/templates/viteuno/uno.config.ts +0 -111
- package/templates/viteuno/vite.config.ts +0 -33
- /package/templates/next/src/app/examples/forms/{profile-form.tsx → components/profile-form.tsx} +0 -0
|
@@ -1,36 +1,39 @@
|
|
|
1
|
-
[package]
|
|
2
|
-
name = "tauri-ui"
|
|
3
|
-
version = "0.1.0"
|
|
4
|
-
description = "A Tauri App"
|
|
5
|
-
authors = ["you"]
|
|
6
|
-
license = "MIT"
|
|
7
|
-
repository = ""
|
|
8
|
-
edition = "2021"
|
|
9
|
-
|
|
10
|
-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
11
|
-
|
|
12
|
-
[build-dependencies]
|
|
13
|
-
tauri-build = { version = "2.0.0-alpha.6", features = [] }
|
|
14
|
-
|
|
15
|
-
[dependencies]
|
|
16
|
-
tauri = { version = "2.0.0-alpha.10", features = [] }
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
#
|
|
26
|
-
#
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
#
|
|
30
|
-
[
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
1
|
+
[package]
|
|
2
|
+
name = "tauri-ui"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "A Tauri App"
|
|
5
|
+
authors = ["you"]
|
|
6
|
+
license = "MIT"
|
|
7
|
+
repository = ""
|
|
8
|
+
edition = "2021"
|
|
9
|
+
|
|
10
|
+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
11
|
+
|
|
12
|
+
[build-dependencies]
|
|
13
|
+
tauri-build = { version = "2.0.0-alpha.6", features = [] }
|
|
14
|
+
|
|
15
|
+
[dependencies]
|
|
16
|
+
tauri = { version = "2.0.0-alpha.10", features = [] }
|
|
17
|
+
serde = { version = "1.0", features = ["derive"] }
|
|
18
|
+
serde_json = "1.0"
|
|
19
|
+
tauri-plugin-app = "2.0.0-alpha"
|
|
20
|
+
tauri-plugin-os = "2.0.0-alpha"
|
|
21
|
+
tauri-plugin-shell = "2.0.0-alpha"
|
|
22
|
+
tauri-plugin-window = "2.0.0-alpha"
|
|
23
|
+
|
|
24
|
+
[features]
|
|
25
|
+
# by default Tauri runs in production mode
|
|
26
|
+
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
|
|
27
|
+
default = ["custom-protocol"]
|
|
28
|
+
# this feature is used used for production builds where `devPath` points to the filesystem
|
|
29
|
+
# DO NOT remove this
|
|
30
|
+
custom-protocol = ["tauri/custom-protocol"]
|
|
31
|
+
|
|
32
|
+
# Optimized for bundle size. If you want faster builds comment out/delete this section.
|
|
33
|
+
[profile.release]
|
|
34
|
+
lto = true # Enable Link Time Optimization
|
|
35
|
+
opt-level = "z" # Optimize for size.
|
|
36
|
+
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
|
37
|
+
panic = "abort" # Abort on panic
|
|
38
|
+
strip = true # Automatically strip symbols from the binary.
|
|
39
|
+
debug = false
|
|
@@ -1,19 +1,22 @@
|
|
|
1
|
-
// Prevents additional console window on Windows in release
|
|
2
|
-
#![cfg_attr(
|
|
3
|
-
all(not(debug_assertions), target_os = "windows"),
|
|
4
|
-
windows_subsystem = "windows"
|
|
5
|
-
)]
|
|
6
|
-
|
|
7
|
-
// Learn more about Tauri commands at https://tauri.app/v1/guides/features/command
|
|
8
|
-
#[tauri::command]
|
|
9
|
-
fn greet(name: &str) -> String {
|
|
10
|
-
format!("Hello, {}! You've been greeted from Rust!", name)
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
fn main() {
|
|
14
|
-
tauri::Builder::default()
|
|
15
|
-
.invoke_handler(tauri::generate_handler![greet])
|
|
16
|
-
.plugin(
|
|
17
|
-
.
|
|
18
|
-
.
|
|
19
|
-
|
|
1
|
+
// Prevents additional console window on Windows in release
|
|
2
|
+
#![cfg_attr(
|
|
3
|
+
all(not(debug_assertions), target_os = "windows"),
|
|
4
|
+
windows_subsystem = "windows"
|
|
5
|
+
)]
|
|
6
|
+
|
|
7
|
+
// Learn more about Tauri commands at https://tauri.app/v1/guides/features/command
|
|
8
|
+
#[tauri::command]
|
|
9
|
+
fn greet(name: &str) -> String {
|
|
10
|
+
format!("Hello, {}! You've been greeted from Rust!", name)
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
fn main() {
|
|
14
|
+
tauri::Builder::default()
|
|
15
|
+
.invoke_handler(tauri::generate_handler![greet])
|
|
16
|
+
.plugin(tauri_plugin_app::init())
|
|
17
|
+
.plugin(tauri_plugin_os::init())
|
|
18
|
+
.plugin(tauri_plugin_shell::init())
|
|
19
|
+
.plugin(tauri_plugin_window::init())
|
|
20
|
+
.run(tauri::generate_context!())
|
|
21
|
+
.expect("error while running tauri application");
|
|
22
|
+
}
|
|
@@ -51,15 +51,7 @@
|
|
|
51
51
|
"scheme": "https",
|
|
52
52
|
"domain": "tauri.localhost",
|
|
53
53
|
"windows": ["main"],
|
|
54
|
-
"plugins": [
|
|
55
|
-
"clipboard",
|
|
56
|
-
"path",
|
|
57
|
-
"dialog",
|
|
58
|
-
"fs",
|
|
59
|
-
"shell",
|
|
60
|
-
"window",
|
|
61
|
-
"windows"
|
|
62
|
-
]
|
|
54
|
+
"plugins": ["app", "shell", "os", "event", "window"]
|
|
63
55
|
}
|
|
64
56
|
]
|
|
65
57
|
},
|
|
@@ -1,108 +1,108 @@
|
|
|
1
|
-
name:
|
|
2
|
-
on:
|
|
3
|
-
workflow_dispatch:
|
|
4
|
-
push:
|
|
5
|
-
tags:
|
|
6
|
-
-
|
|
7
|
-
jobs:
|
|
8
|
-
create-release:
|
|
9
|
-
permissions:
|
|
10
|
-
contents: write
|
|
11
|
-
runs-on: ubuntu-20.04
|
|
12
|
-
outputs:
|
|
13
|
-
release_id: ${{ steps.create-release.outputs.result }}
|
|
14
|
-
|
|
15
|
-
steps:
|
|
16
|
-
- uses: actions/checkout@v3
|
|
17
|
-
- name: setup node
|
|
18
|
-
uses: actions/setup-node@v3
|
|
19
|
-
with:
|
|
20
|
-
node-version: 16
|
|
21
|
-
- name: get version
|
|
22
|
-
run: echo "PACKAGE_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
|
|
23
|
-
- name: create release
|
|
24
|
-
id: create-release
|
|
25
|
-
uses: actions/github-script@v6
|
|
26
|
-
with:
|
|
27
|
-
script: |
|
|
28
|
-
const { data } = await github.rest.repos.createRelease({
|
|
29
|
-
owner: context.repo.owner,
|
|
30
|
-
repo: context.repo.repo,
|
|
31
|
-
tag_name: `v${process.env.PACKAGE_VERSION}`,
|
|
32
|
-
name: `v${process.env.PACKAGE_VERSION}`,
|
|
33
|
-
body: '*This release was generated automatically using GitHub Actions.*',
|
|
34
|
-
draft: true,
|
|
35
|
-
prerelease: false
|
|
36
|
-
})
|
|
37
|
-
return data.id
|
|
38
|
-
|
|
39
|
-
build-tauri:
|
|
40
|
-
needs: create-release
|
|
41
|
-
permissions:
|
|
42
|
-
contents: write
|
|
43
|
-
strategy:
|
|
44
|
-
fail-fast: false
|
|
45
|
-
matrix:
|
|
46
|
-
platform: [macos-latest, ubuntu-latest, windows-latest]
|
|
47
|
-
|
|
48
|
-
runs-on: ${{ matrix.platform }}
|
|
49
|
-
steps:
|
|
50
|
-
- name: Checkout repository
|
|
51
|
-
uses: actions/checkout@v3
|
|
52
|
-
|
|
53
|
-
- name: Install Rust
|
|
54
|
-
uses: dtolnay/rust-toolchain@stable
|
|
55
|
-
with:
|
|
56
|
-
toolchain: stable
|
|
57
|
-
|
|
58
|
-
- name: Rust cache
|
|
59
|
-
uses: Swatinem/rust-cache@v2
|
|
60
|
-
with:
|
|
61
|
-
workspaces: v2 -> v2/target
|
|
62
|
-
|
|
63
|
-
- name: Install Node.js
|
|
64
|
-
uses: actions/setup-node@v3
|
|
65
|
-
with:
|
|
66
|
-
node-version:
|
|
67
|
-
cache-dependency-path: v2/package-lock.json
|
|
68
|
-
|
|
69
|
-
- name: Install apt dependencies (ubuntu only)
|
|
70
|
-
if: matrix.platform == 'ubuntu-latest'
|
|
71
|
-
run: |
|
|
72
|
-
sudo apt-get update
|
|
73
|
-
sudo apt install -y --no-install-recommends libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf
|
|
74
|
-
|
|
75
|
-
- name: Install pnpm
|
|
76
|
-
run: npm install -g pnpm
|
|
77
|
-
|
|
78
|
-
- name: Install frontend dependencies
|
|
79
|
-
run: pnpm install
|
|
80
|
-
|
|
81
|
-
- name: Build the app
|
|
82
|
-
uses: tauri-apps/tauri-action@v0
|
|
83
|
-
env:
|
|
84
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
85
|
-
with:
|
|
86
|
-
releaseId: ${{ needs.create-release.outputs.release_id }}
|
|
87
|
-
|
|
88
|
-
publish-release:
|
|
89
|
-
permissions:
|
|
90
|
-
contents: write
|
|
91
|
-
runs-on: ubuntu-20.04
|
|
92
|
-
needs: [create-release, build-tauri]
|
|
93
|
-
|
|
94
|
-
steps:
|
|
95
|
-
- name: publish release
|
|
96
|
-
id: publish-release
|
|
97
|
-
uses: actions/github-script@v6
|
|
98
|
-
env:
|
|
99
|
-
release_id: ${{ needs.create-release.outputs.release_id }}
|
|
100
|
-
with:
|
|
101
|
-
script: |
|
|
102
|
-
github.rest.repos.updateRelease({
|
|
103
|
-
owner: context.repo.owner,
|
|
104
|
-
repo: context.repo.repo,
|
|
105
|
-
release_id: process.env.release_id,
|
|
106
|
-
draft: false,
|
|
107
|
-
prerelease: false
|
|
108
|
-
})
|
|
1
|
+
name: 'release'
|
|
2
|
+
on:
|
|
3
|
+
workflow_dispatch:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- '*'
|
|
7
|
+
jobs:
|
|
8
|
+
create-release:
|
|
9
|
+
permissions:
|
|
10
|
+
contents: write
|
|
11
|
+
runs-on: ubuntu-20.04
|
|
12
|
+
outputs:
|
|
13
|
+
release_id: ${{ steps.create-release.outputs.result }}
|
|
14
|
+
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v3
|
|
17
|
+
- name: setup node
|
|
18
|
+
uses: actions/setup-node@v3
|
|
19
|
+
with:
|
|
20
|
+
node-version: 16
|
|
21
|
+
- name: get version
|
|
22
|
+
run: echo "PACKAGE_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
|
|
23
|
+
- name: create release
|
|
24
|
+
id: create-release
|
|
25
|
+
uses: actions/github-script@v6
|
|
26
|
+
with:
|
|
27
|
+
script: |
|
|
28
|
+
const { data } = await github.rest.repos.createRelease({
|
|
29
|
+
owner: context.repo.owner,
|
|
30
|
+
repo: context.repo.repo,
|
|
31
|
+
tag_name: `v${process.env.PACKAGE_VERSION}`,
|
|
32
|
+
name: `v${process.env.PACKAGE_VERSION}`,
|
|
33
|
+
body: '*This release was generated automatically using GitHub Actions.*',
|
|
34
|
+
draft: true,
|
|
35
|
+
prerelease: false
|
|
36
|
+
})
|
|
37
|
+
return data.id
|
|
38
|
+
|
|
39
|
+
build-tauri:
|
|
40
|
+
needs: create-release
|
|
41
|
+
permissions:
|
|
42
|
+
contents: write
|
|
43
|
+
strategy:
|
|
44
|
+
fail-fast: false
|
|
45
|
+
matrix:
|
|
46
|
+
platform: [macos-latest, ubuntu-latest, windows-latest]
|
|
47
|
+
|
|
48
|
+
runs-on: ${{ matrix.platform }}
|
|
49
|
+
steps:
|
|
50
|
+
- name: Checkout repository
|
|
51
|
+
uses: actions/checkout@v3
|
|
52
|
+
|
|
53
|
+
- name: Install Rust
|
|
54
|
+
uses: dtolnay/rust-toolchain@stable
|
|
55
|
+
with:
|
|
56
|
+
toolchain: stable
|
|
57
|
+
|
|
58
|
+
- name: Rust cache
|
|
59
|
+
uses: Swatinem/rust-cache@v2
|
|
60
|
+
with:
|
|
61
|
+
workspaces: v2 -> v2/target
|
|
62
|
+
|
|
63
|
+
- name: Install Node.js
|
|
64
|
+
uses: actions/setup-node@v3
|
|
65
|
+
with:
|
|
66
|
+
node-version: 'lts/*'
|
|
67
|
+
cache-dependency-path: v2/package-lock.json
|
|
68
|
+
|
|
69
|
+
- name: Install apt dependencies (ubuntu only)
|
|
70
|
+
if: matrix.platform == 'ubuntu-latest'
|
|
71
|
+
run: |
|
|
72
|
+
sudo apt-get update
|
|
73
|
+
sudo apt install -y --no-install-recommends libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf
|
|
74
|
+
|
|
75
|
+
- name: Install pnpm
|
|
76
|
+
run: npm install -g pnpm
|
|
77
|
+
|
|
78
|
+
- name: Install frontend dependencies
|
|
79
|
+
run: pnpm install
|
|
80
|
+
|
|
81
|
+
- name: Build the app
|
|
82
|
+
uses: tauri-apps/tauri-action@v0
|
|
83
|
+
env:
|
|
84
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
85
|
+
with:
|
|
86
|
+
releaseId: ${{ needs.create-release.outputs.release_id }}
|
|
87
|
+
|
|
88
|
+
publish-release:
|
|
89
|
+
permissions:
|
|
90
|
+
contents: write
|
|
91
|
+
runs-on: ubuntu-20.04
|
|
92
|
+
needs: [create-release, build-tauri]
|
|
93
|
+
|
|
94
|
+
steps:
|
|
95
|
+
- name: publish release
|
|
96
|
+
id: publish-release
|
|
97
|
+
uses: actions/github-script@v6
|
|
98
|
+
env:
|
|
99
|
+
release_id: ${{ needs.create-release.outputs.release_id }}
|
|
100
|
+
with:
|
|
101
|
+
script: |
|
|
102
|
+
github.rest.repos.updateRelease({
|
|
103
|
+
owner: context.repo.owner,
|
|
104
|
+
repo: context.repo.repo,
|
|
105
|
+
release_id: process.env.release_id,
|
|
106
|
+
draft: false,
|
|
107
|
+
prerelease: false
|
|
108
|
+
})
|
|
@@ -1,84 +1,84 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tauri-ui-svelte",
|
|
3
|
-
"version": "0.1.0",
|
|
4
|
-
"private": true,
|
|
5
|
-
"author": {
|
|
6
|
-
"name": "huntabyte",
|
|
7
|
-
"url": "https://twitter.com/huntabyte"
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "https://github.com/huntabyte/shadcn-svelte.git",
|
|
12
|
-
"directory": "apps/www"
|
|
13
|
-
},
|
|
14
|
-
"type": "module",
|
|
15
|
-
"scripts": {
|
|
16
|
-
"dev": "vite dev",
|
|
17
|
-
"build": "vite build",
|
|
18
|
-
"preview": "vite preview",
|
|
19
|
-
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
|
|
20
|
-
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
|
|
21
|
-
"lint": "prettier --plugin-search-dir . --check .",
|
|
22
|
-
"format": "prettier --plugin-search-dir . --write . --ignore-path .gitignore",
|
|
23
|
-
"taze": "taze major -I",
|
|
24
|
-
"taze:minor": "taze minor -w"
|
|
25
|
-
},
|
|
26
|
-
"dependencies": {
|
|
27
|
-
"@tanstack/svelte-table": "^8.9.4",
|
|
28
|
-
"@tauri-apps/api": "2.0.0-alpha.5",
|
|
29
|
-
"@tauri-apps/plugin-window": "2.0.0-alpha.0",
|
|
30
|
-
"class-variance-authority": "^0.
|
|
31
|
-
"clsx": "^
|
|
32
|
-
"d3-scale": "^4.0.2",
|
|
33
|
-
"escape-html": "^1.0.3",
|
|
34
|
-
"esm-env": "^1.0.0",
|
|
35
|
-
"hast-util-to-html": "^8.0.4",
|
|
36
|
-
"lucide-svelte": "^0.
|
|
37
|
-
"mdast-util-to-string": "^4.0.0",
|
|
38
|
-
"radix-svelte": "^0.
|
|
39
|
-
"rehype-pretty-code": "^0.10.0",
|
|
40
|
-
"rehype-slug": "^5.1.0",
|
|
41
|
-
"rehype-stringify": "^9.0.3",
|
|
42
|
-
"remark-code-import": "^1.2.0",
|
|
43
|
-
"remark-gfm": "^3.0.1",
|
|
44
|
-
"shiki": "^0.14.3",
|
|
45
|
-
"svelte-legos": "^0.2.1",
|
|
46
|
-
"svelte-wrap-balancer": "^0.0.
|
|
47
|
-
"tailwind-merge": "^1.
|
|
48
|
-
"unified": "^10.1.2",
|
|
49
|
-
"unist-builder": "^4.0.0",
|
|
50
|
-
"unist-util-visit": "^5.0.0"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@sveltejs/adapter-auto": "^2.1.0",
|
|
54
|
-
"@sveltejs/adapter-static": "2.0.
|
|
55
|
-
"@sveltejs/kit": "^1.22.
|
|
56
|
-
"@tauri-apps/cli": "2.0.0-alpha.10",
|
|
57
|
-
"@types/d3-scale": "^4.0.3",
|
|
58
|
-
"@types/escape-html": "^1.0.2",
|
|
59
|
-
"@types/node": "^20.4.
|
|
60
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
61
|
-
"@typescript-eslint/parser": "^
|
|
62
|
-
"autoprefixer": "^10.4.14",
|
|
63
|
-
"eslint": "^8.
|
|
64
|
-
"eslint-config-prettier": "^8.
|
|
65
|
-
"eslint-plugin-svelte": "^2.32.
|
|
66
|
-
"mdsvex": "0.11.0",
|
|
67
|
-
"postcss": "^8.4.
|
|
68
|
-
"postcss-load-config": "^4.0.1",
|
|
69
|
-
"prettier": "^3.0.0",
|
|
70
|
-
"prettier-plugin-svelte": "^
|
|
71
|
-
"prettier-plugin-tailwindcss": "^0.
|
|
72
|
-
"svelte": "^4.
|
|
73
|
-
"svelte-check": "^3.4.
|
|
74
|
-
"svelte-preprocess": "^5.0.4",
|
|
75
|
-
"tailwind-scrollbar": "^3.0.4",
|
|
76
|
-
"tailwindcss": "^3.3.
|
|
77
|
-
"tailwindcss-animate": "^1.0.6",
|
|
78
|
-
"tslib": "^2.6.
|
|
79
|
-
"tsx": "^3.12.7",
|
|
80
|
-
"typescript": "^5.1.6",
|
|
81
|
-
"vite": "^4.4.
|
|
82
|
-
"vitest": "^0.33.0"
|
|
83
|
-
}
|
|
84
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tauri-ui-svelte",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "huntabyte",
|
|
7
|
+
"url": "https://twitter.com/huntabyte"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/huntabyte/shadcn-svelte.git",
|
|
12
|
+
"directory": "apps/www"
|
|
13
|
+
},
|
|
14
|
+
"type": "module",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "vite dev",
|
|
17
|
+
"build": "vite build",
|
|
18
|
+
"preview": "vite preview",
|
|
19
|
+
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
|
|
20
|
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
|
|
21
|
+
"lint": "prettier --plugin-search-dir . --check .",
|
|
22
|
+
"format": "prettier --plugin-search-dir . --write . --ignore-path .gitignore",
|
|
23
|
+
"taze": "taze major -I",
|
|
24
|
+
"taze:minor": "taze minor -w"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@tanstack/svelte-table": "^8.9.4",
|
|
28
|
+
"@tauri-apps/api": "2.0.0-alpha.5",
|
|
29
|
+
"@tauri-apps/plugin-window": "2.0.0-alpha.0",
|
|
30
|
+
"class-variance-authority": "^0.7.0",
|
|
31
|
+
"clsx": "^2.0.0",
|
|
32
|
+
"d3-scale": "^4.0.2",
|
|
33
|
+
"escape-html": "^1.0.3",
|
|
34
|
+
"esm-env": "^1.0.0",
|
|
35
|
+
"hast-util-to-html": "^8.0.4",
|
|
36
|
+
"lucide-svelte": "^0.263.0",
|
|
37
|
+
"mdast-util-to-string": "^4.0.0",
|
|
38
|
+
"radix-svelte": "^0.9.0",
|
|
39
|
+
"rehype-pretty-code": "^0.10.0",
|
|
40
|
+
"rehype-slug": "^5.1.0",
|
|
41
|
+
"rehype-stringify": "^9.0.3",
|
|
42
|
+
"remark-code-import": "^1.2.0",
|
|
43
|
+
"remark-gfm": "^3.0.1",
|
|
44
|
+
"shiki": "^0.14.3",
|
|
45
|
+
"svelte-legos": "^0.2.1",
|
|
46
|
+
"svelte-wrap-balancer": "^0.0.4",
|
|
47
|
+
"tailwind-merge": "^1.14.0",
|
|
48
|
+
"unified": "^10.1.2",
|
|
49
|
+
"unist-builder": "^4.0.0",
|
|
50
|
+
"unist-util-visit": "^5.0.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@sveltejs/adapter-auto": "^2.1.0",
|
|
54
|
+
"@sveltejs/adapter-static": "2.0.3",
|
|
55
|
+
"@sveltejs/kit": "^1.22.4",
|
|
56
|
+
"@tauri-apps/cli": "2.0.0-alpha.10",
|
|
57
|
+
"@types/d3-scale": "^4.0.3",
|
|
58
|
+
"@types/escape-html": "^1.0.2",
|
|
59
|
+
"@types/node": "^20.4.5",
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^6.2.1",
|
|
61
|
+
"@typescript-eslint/parser": "^6.2.1",
|
|
62
|
+
"autoprefixer": "^10.4.14",
|
|
63
|
+
"eslint": "^8.46.0",
|
|
64
|
+
"eslint-config-prettier": "^8.9.0",
|
|
65
|
+
"eslint-plugin-svelte": "^2.32.4",
|
|
66
|
+
"mdsvex": "0.11.0",
|
|
67
|
+
"postcss": "^8.4.27",
|
|
68
|
+
"postcss-load-config": "^4.0.1",
|
|
69
|
+
"prettier": "^3.0.0",
|
|
70
|
+
"prettier-plugin-svelte": "^3.0.3",
|
|
71
|
+
"prettier-plugin-tailwindcss": "^0.4.1",
|
|
72
|
+
"svelte": "^4.1.2",
|
|
73
|
+
"svelte-check": "^3.4.6",
|
|
74
|
+
"svelte-preprocess": "^5.0.4",
|
|
75
|
+
"tailwind-scrollbar": "^3.0.4",
|
|
76
|
+
"tailwindcss": "^3.3.3",
|
|
77
|
+
"tailwindcss-animate": "^1.0.6",
|
|
78
|
+
"tslib": "^2.6.1",
|
|
79
|
+
"tsx": "^3.12.7",
|
|
80
|
+
"typescript": "^5.1.6",
|
|
81
|
+
"vite": "^4.4.7",
|
|
82
|
+
"vitest": "^0.33.0"
|
|
83
|
+
}
|
|
84
|
+
}
|