create-tauri-ui 0.2.0 → 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.
Files changed (268) hide show
  1. package/README.md +22 -11
  2. package/dist/index.mjs +26 -26
  3. package/package.json +3 -2
  4. package/templates/.shared/app-icon.png +0 -0
  5. package/templates/.shared/src-tauri/Cargo.lock +270 -139
  6. package/templates/.shared/src-tauri/Cargo.toml +39 -36
  7. package/templates/.shared/src-tauri/src/main.rs +3 -0
  8. package/templates/.shared/src-tauri/tauri.conf.json +71 -79
  9. package/templates/next/components.json +15 -15
  10. package/templates/next/next.config.js +14 -14
  11. package/templates/next/package.json +18 -14
  12. package/templates/next/pnpm-lock.yaml +608 -566
  13. package/templates/next/src/app/examples/cards/components/date-picker.tsx +3 -1
  14. package/templates/next/src/app/examples/cards/components/github-card.tsx +2 -0
  15. package/templates/next/src/app/examples/cards/components/notifications.tsx +2 -0
  16. package/templates/next/src/app/examples/cards/components/payment-method.tsx +3 -1
  17. package/templates/next/src/app/examples/cards/components/team-members.tsx +3 -5
  18. package/templates/next/src/app/examples/forms/page.tsx +1 -1
  19. package/templates/next/src/app/layout.tsx +47 -47
  20. package/templates/next/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
  21. package/templates/next/src/components/about-dialog.tsx +111 -0
  22. package/templates/next/src/components/icons.tsx +156 -154
  23. package/templates/next/src/components/menu-mode-toggle.tsx +47 -46
  24. package/templates/next/src/components/menu.tsx +223 -259
  25. package/templates/next/src/components/page-header.tsx +2 -0
  26. package/templates/next/src/components/ui/accordion.tsx +60 -60
  27. package/templates/next/src/components/ui/alert-dialog.tsx +145 -145
  28. package/templates/next/src/components/ui/alert.tsx +59 -59
  29. package/templates/next/src/components/ui/aspect-ratio.tsx +7 -7
  30. package/templates/next/src/components/ui/avatar.tsx +50 -50
  31. package/templates/next/src/components/ui/badge.tsx +36 -36
  32. package/templates/next/src/components/ui/button.tsx +56 -56
  33. package/templates/next/src/components/ui/calendar.tsx +64 -64
  34. package/templates/next/src/components/ui/card.tsx +79 -79
  35. package/templates/next/src/components/ui/checkbox.tsx +30 -30
  36. package/templates/next/src/components/ui/collapsible.tsx +11 -11
  37. package/templates/next/src/components/ui/command.tsx +155 -155
  38. package/templates/next/src/components/ui/context-menu.tsx +200 -200
  39. package/templates/next/src/components/ui/dialog.tsx +123 -123
  40. package/templates/next/src/components/ui/dropdown-menu.tsx +200 -200
  41. package/templates/next/src/components/ui/form.tsx +176 -176
  42. package/templates/next/src/components/ui/hover-card.tsx +29 -29
  43. package/templates/next/src/components/ui/input.tsx +25 -25
  44. package/templates/next/src/components/ui/label.tsx +26 -26
  45. package/templates/next/src/components/ui/menubar.tsx +236 -236
  46. package/templates/next/src/components/ui/navigation-menu.tsx +128 -128
  47. package/templates/next/src/components/ui/popover.tsx +31 -31
  48. package/templates/next/src/components/ui/progress.tsx +28 -28
  49. package/templates/next/src/components/ui/radio-group.tsx +44 -44
  50. package/templates/next/src/components/ui/scroll-area.tsx +48 -48
  51. package/templates/next/src/components/ui/select.tsx +121 -121
  52. package/templates/next/src/components/ui/separator.tsx +31 -31
  53. package/templates/next/src/components/ui/sheet.tsx +144 -144
  54. package/templates/next/src/components/ui/skeleton.tsx +15 -15
  55. package/templates/next/src/components/ui/slider.tsx +28 -28
  56. package/templates/next/src/components/ui/switch.tsx +29 -29
  57. package/templates/next/src/components/ui/table.tsx +114 -114
  58. package/templates/next/src/components/ui/tabs.tsx +55 -55
  59. package/templates/next/src/components/ui/textarea.tsx +24 -24
  60. package/templates/next/src/components/ui/toast.tsx +127 -127
  61. package/templates/next/src/components/ui/toaster.tsx +35 -35
  62. package/templates/next/src/components/ui/toggle.tsx +45 -45
  63. package/templates/next/src/components/ui/tooltip.tsx +30 -30
  64. package/templates/next/src/components/ui/use-toast.ts +192 -192
  65. package/templates/next/src/lib/utils.ts +6 -6
  66. package/templates/next/src/styles/globals.css +88 -86
  67. package/templates/next/src-tauri/Cargo.lock +3832 -3701
  68. package/templates/next/src-tauri/Cargo.toml +4 -1
  69. package/templates/next/src-tauri/src/main.rs +22 -19
  70. package/templates/next/src-tauri/tauri.conf.json +71 -79
  71. package/templates/next/tailwind.config.js +77 -77
  72. package/templates/next/tsconfig.json +34 -34
  73. package/templates/sveltekit/.github/workflows/release.yml +108 -108
  74. package/templates/sveltekit/package.json +22 -22
  75. package/templates/sveltekit/pnpm-lock.yaml +1069 -691
  76. package/templates/sveltekit/src/app.html +1 -1
  77. package/templates/sveltekit/src-tauri/Cargo.lock +136 -136
  78. package/templates/sveltekit/src-tauri/tauri.conf.json +2 -10
  79. package/templates/sveltekit/static/favicon.ico +0 -0
  80. package/templates/sveltekit/vite.config.js +10 -6
  81. package/templates/vite/components.json +15 -15
  82. package/templates/vite/index.html +1 -1
  83. package/templates/vite/package.json +20 -13
  84. package/templates/vite/pnpm-lock.yaml +598 -530
  85. package/templates/vite/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
  86. package/templates/vite/src/components/about-dialog.tsx +101 -0
  87. package/templates/vite/src/components/icons.tsx +2 -2
  88. package/templates/vite/src/components/menu-mode-toggle.tsx +4 -3
  89. package/templates/vite/src/components/menu.tsx +177 -197
  90. package/templates/vite/src/components/ui/accordion.tsx +1 -3
  91. package/templates/vite/src/components/ui/alert-dialog.tsx +3 -10
  92. package/templates/vite/src/components/ui/alert.tsx +3 -5
  93. package/templates/vite/src/components/ui/aspect-ratio.tsx +0 -2
  94. package/templates/vite/src/components/ui/avatar.tsx +0 -2
  95. package/templates/vite/src/components/ui/badge.tsx +5 -5
  96. package/templates/vite/src/components/ui/button.tsx +15 -10
  97. package/templates/vite/src/components/ui/calendar.tsx +0 -2
  98. package/templates/vite/src/components/ui/card.tsx +1 -3
  99. package/templates/vite/src/components/ui/checkbox.tsx +2 -4
  100. package/templates/vite/src/components/ui/collapsible.tsx +0 -2
  101. package/templates/vite/src/components/ui/command.tsx +2 -4
  102. package/templates/vite/src/components/ui/context-menu.tsx +6 -8
  103. package/templates/vite/src/components/ui/dialog.tsx +4 -11
  104. package/templates/vite/src/components/ui/dropdown-menu.tsx +6 -8
  105. package/templates/vite/src/components/ui/form.tsx +176 -0
  106. package/templates/vite/src/components/ui/hover-card.tsx +1 -3
  107. package/templates/vite/src/components/ui/input.tsx +1 -3
  108. package/templates/vite/src/components/ui/label.tsx +1 -3
  109. package/templates/vite/src/components/ui/menubar.tsx +7 -9
  110. package/templates/vite/src/components/ui/navigation-menu.tsx +2 -4
  111. package/templates/vite/src/components/ui/popover.tsx +1 -3
  112. package/templates/vite/src/components/ui/progress.tsx +0 -2
  113. package/templates/vite/src/components/ui/radio-group.tsx +2 -4
  114. package/templates/vite/src/components/ui/scroll-area.tsx +0 -2
  115. package/templates/vite/src/components/ui/select.tsx +4 -5
  116. package/templates/vite/src/components/ui/separator.tsx +0 -2
  117. package/templates/vite/src/components/ui/sheet.tsx +22 -110
  118. package/templates/vite/src/components/ui/skeleton.tsx +0 -2
  119. package/templates/vite/src/components/ui/slider.tsx +0 -2
  120. package/templates/vite/src/components/ui/switch.tsx +1 -3
  121. package/templates/vite/src/components/ui/table.tsx +1 -1
  122. package/templates/vite/src/components/ui/tabs.tsx +1 -3
  123. package/templates/vite/src/components/ui/textarea.tsx +1 -3
  124. package/templates/vite/src/components/ui/toast.tsx +6 -8
  125. package/templates/vite/src/components/ui/toaster.tsx +0 -2
  126. package/templates/vite/src/components/ui/toggle.tsx +3 -5
  127. package/templates/vite/src/components/ui/tooltip.tsx +1 -3
  128. package/templates/vite/src/components/ui/use-toast.ts +5 -4
  129. package/templates/vite/src/styles/globals.css +5 -3
  130. package/templates/vite/src-tauri/Cargo.lock +270 -139
  131. package/templates/vite/src-tauri/Cargo.toml +4 -1
  132. package/templates/vite/src-tauri/src/main.rs +8 -2
  133. package/templates/vite/src-tauri/tauri.conf.json +71 -79
  134. package/templates/vite/vite.config.ts +2 -2
  135. package/templates/next/src/assets/Inter.var.woff2 +0 -0
  136. package/templates/vite/src/assets/Inter.var.woff2 +0 -0
  137. package/templates/viteuno/.github/workflows/release.yml +0 -108
  138. package/templates/viteuno/.vscode/extensions.json +0 -3
  139. package/templates/viteuno/README.md +0 -1
  140. package/templates/viteuno/app-icon.png +0 -0
  141. package/templates/viteuno/components.json +0 -16
  142. package/templates/viteuno/index.html +0 -16
  143. package/templates/viteuno/package.json +0 -73
  144. package/templates/viteuno/pnpm-lock.yaml +0 -5298
  145. package/templates/viteuno/preset.shadcn.ts +0 -160
  146. package/templates/viteuno/prettier.config.cjs +0 -34
  147. package/templates/viteuno/public/avatars/01.png +0 -0
  148. package/templates/viteuno/public/avatars/02.png +0 -0
  149. package/templates/viteuno/public/avatars/03.png +0 -0
  150. package/templates/viteuno/public/avatars/04.png +0 -0
  151. package/templates/viteuno/public/avatars/05.png +0 -0
  152. package/templates/viteuno/src/App.tsx +0 -39
  153. package/templates/viteuno/src/assets/Inter.var.woff2 +0 -0
  154. package/templates/viteuno/src/components/icons.tsx +0 -154
  155. package/templates/viteuno/src/components/menu-mode-toggle.tsx +0 -46
  156. package/templates/viteuno/src/components/menu.tsx +0 -232
  157. package/templates/viteuno/src/components/tailwind-indicator.tsx +0 -18
  158. package/templates/viteuno/src/components/theme-provider.tsx +0 -9
  159. package/templates/viteuno/src/components/ui/accordion.tsx +0 -60
  160. package/templates/viteuno/src/components/ui/alert-dialog.tsx +0 -150
  161. package/templates/viteuno/src/components/ui/alert.tsx +0 -61
  162. package/templates/viteuno/src/components/ui/aspect-ratio.tsx +0 -7
  163. package/templates/viteuno/src/components/ui/avatar.tsx +0 -50
  164. package/templates/viteuno/src/components/ui/badge.tsx +0 -36
  165. package/templates/viteuno/src/components/ui/button.tsx +0 -51
  166. package/templates/viteuno/src/components/ui/calendar.tsx +0 -64
  167. package/templates/viteuno/src/components/ui/card.tsx +0 -81
  168. package/templates/viteuno/src/components/ui/checkbox.tsx +0 -30
  169. package/templates/viteuno/src/components/ui/collapsible.tsx +0 -11
  170. package/templates/viteuno/src/components/ui/command.tsx +0 -155
  171. package/templates/viteuno/src/components/ui/context-menu.tsx +0 -200
  172. package/templates/viteuno/src/components/ui/dialog.tsx +0 -128
  173. package/templates/viteuno/src/components/ui/dropdown-menu.tsx +0 -200
  174. package/templates/viteuno/src/components/ui/hover-card.tsx +0 -29
  175. package/templates/viteuno/src/components/ui/index.ts +0 -0
  176. package/templates/viteuno/src/components/ui/input.tsx +0 -27
  177. package/templates/viteuno/src/components/ui/label.tsx +0 -26
  178. package/templates/viteuno/src/components/ui/menubar.tsx +0 -236
  179. package/templates/viteuno/src/components/ui/navigation-menu.tsx +0 -130
  180. package/templates/viteuno/src/components/ui/popover.tsx +0 -31
  181. package/templates/viteuno/src/components/ui/progress.tsx +0 -28
  182. package/templates/viteuno/src/components/ui/radio-group.tsx +0 -44
  183. package/templates/viteuno/src/components/ui/scroll-area.tsx +0 -48
  184. package/templates/viteuno/src/components/ui/select.tsx +0 -120
  185. package/templates/viteuno/src/components/ui/separator.tsx +0 -31
  186. package/templates/viteuno/src/components/ui/sheet.tsx +0 -230
  187. package/templates/viteuno/src/components/ui/skeleton.tsx +0 -17
  188. package/templates/viteuno/src/components/ui/slider.tsx +0 -28
  189. package/templates/viteuno/src/components/ui/switch.tsx +0 -29
  190. package/templates/viteuno/src/components/ui/table.tsx +0 -114
  191. package/templates/viteuno/src/components/ui/tabs.tsx +0 -55
  192. package/templates/viteuno/src/components/ui/textarea.tsx +0 -26
  193. package/templates/viteuno/src/components/ui/toast.tsx +0 -129
  194. package/templates/viteuno/src/components/ui/toaster.tsx +0 -35
  195. package/templates/viteuno/src/components/ui/toggle.tsx +0 -45
  196. package/templates/viteuno/src/components/ui/tooltip.tsx +0 -30
  197. package/templates/viteuno/src/components/ui/use-toast.ts +0 -191
  198. package/templates/viteuno/src/dashboard/components/date-range-picker.tsx +0 -66
  199. package/templates/viteuno/src/dashboard/components/main-nav.tsx +0 -38
  200. package/templates/viteuno/src/dashboard/components/overview.tsx +0 -78
  201. package/templates/viteuno/src/dashboard/components/recent-sales.tsx +0 -67
  202. package/templates/viteuno/src/dashboard/components/search.tsx +0 -13
  203. package/templates/viteuno/src/dashboard/components/team-switcher.tsx +0 -205
  204. package/templates/viteuno/src/dashboard/components/user-nav.tsx +0 -67
  205. package/templates/viteuno/src/dashboard/page.tsx +0 -140
  206. package/templates/viteuno/src/lib/utils.ts +0 -19
  207. package/templates/viteuno/src/main.tsx +0 -14
  208. package/templates/viteuno/src/styles/globals.css +0 -4
  209. package/templates/viteuno/src/vite-env.d.ts +0 -1
  210. package/templates/viteuno/src-tauri/Cargo.lock +0 -3701
  211. package/templates/viteuno/src-tauri/Cargo.toml +0 -36
  212. package/templates/viteuno/src-tauri/build.rs +0 -3
  213. package/templates/viteuno/src-tauri/icons/128x128.png +0 -0
  214. package/templates/viteuno/src-tauri/icons/128x128@2x.png +0 -0
  215. package/templates/viteuno/src-tauri/icons/32x32.png +0 -0
  216. package/templates/viteuno/src-tauri/icons/Square107x107Logo.png +0 -0
  217. package/templates/viteuno/src-tauri/icons/Square142x142Logo.png +0 -0
  218. package/templates/viteuno/src-tauri/icons/Square150x150Logo.png +0 -0
  219. package/templates/viteuno/src-tauri/icons/Square284x284Logo.png +0 -0
  220. package/templates/viteuno/src-tauri/icons/Square30x30Logo.png +0 -0
  221. package/templates/viteuno/src-tauri/icons/Square310x310Logo.png +0 -0
  222. package/templates/viteuno/src-tauri/icons/Square44x44Logo.png +0 -0
  223. package/templates/viteuno/src-tauri/icons/Square71x71Logo.png +0 -0
  224. package/templates/viteuno/src-tauri/icons/Square89x89Logo.png +0 -0
  225. package/templates/viteuno/src-tauri/icons/StoreLogo.png +0 -0
  226. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
  227. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
  228. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
  229. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
  230. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
  231. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
  232. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
  233. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
  234. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
  235. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
  236. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
  237. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  238. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
  239. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
  240. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  241. package/templates/viteuno/src-tauri/icons/icon.icns +0 -0
  242. package/templates/viteuno/src-tauri/icons/icon.ico +0 -0
  243. package/templates/viteuno/src-tauri/icons/icon.png +0 -0
  244. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
  245. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
  246. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
  247. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
  248. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
  249. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
  250. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
  251. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
  252. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
  253. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
  254. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
  255. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
  256. package/templates/viteuno/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
  257. package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
  258. package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
  259. package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
  260. package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
  261. package/templates/viteuno/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
  262. package/templates/viteuno/src-tauri/src/main.rs +0 -16
  263. package/templates/viteuno/src-tauri/tauri.conf.json +0 -79
  264. package/templates/viteuno/tsconfig.json +0 -26
  265. package/templates/viteuno/tsconfig.node.json +0 -9
  266. package/templates/viteuno/uno.config.ts +0 -111
  267. package/templates/viteuno/vite.config.ts +0 -33
  268. /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
- tauri-plugin-window = "2.0.0-alpha"
18
- serde = { version = "1.0", features = ["derive"] }
19
- serde_json = "1.0"
20
-
21
- [features]
22
- # by default Tauri runs in production mode
23
- # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
24
- default = ["custom-protocol"]
25
- # this feature is used used for production builds where `devPath` points to the filesystem
26
- # DO NOT remove this
27
- custom-protocol = ["tauri/custom-protocol"]
28
-
29
- # Optimized for bundle size. If you want faster builds comment out/delete this section.
30
- [profile.release]
31
- lto = true # Enable Link Time Optimization
32
- opt-level = "z" # Optimize for size.
33
- codegen-units = 1 # Reduce number of codegen units to increase optimizations.
34
- panic = "abort" # Abort on panic
35
- strip = true # Automatically strip symbols from the binary.
36
- debug = false
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
@@ -13,6 +13,9 @@ fn greet(name: &str) -> String {
13
13
  fn main() {
14
14
  tauri::Builder::default()
15
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())
16
19
  .plugin(tauri_plugin_window::init())
17
20
  .run(tauri::generate_context!())
18
21
  .expect("error while running tauri application");
@@ -1,79 +1,71 @@
1
- {
2
- "build": {
3
- "beforeDevCommand": "pnpm dev",
4
- "beforeBuildCommand": "pnpm build",
5
- "devPath": "http://localhost:1420",
6
- "distDir": "../dist",
7
- "withGlobalTauri": false
8
- },
9
- "package": {
10
- "productName": "tauri-ui"
11
- },
12
- "tauri": {
13
- "bundle": {
14
- "active": true,
15
- "category": "DeveloperTool",
16
- "copyright": "",
17
- "deb": {
18
- "depends": []
19
- },
20
- "externalBin": [],
21
- "icon": [
22
- "icons/32x32.png",
23
- "icons/128x128.png",
24
- "icons/128x128@2x.png",
25
- "icons/icon.icns",
26
- "icons/icon.ico"
27
- ],
28
- "identifier": "com.yourname.dev",
29
- "longDescription": "",
30
- "macOS": {
31
- "entitlements": null,
32
- "exceptionDomain": "",
33
- "frameworks": [],
34
- "providerShortName": null,
35
- "signingIdentity": null
36
- },
37
- "resources": [],
38
- "shortDescription": "",
39
- "targets": "all",
40
- "windows": {
41
- "certificateThumbprint": null,
42
- "digestAlgorithm": "sha256",
43
- "timestampUrl": "",
44
- "nsis": { "installerIcon": "./icons/icon.ico" }
45
- }
46
- },
47
- "security": {
48
- "csp": null,
49
- "dangerousRemoteDomainIpcAccess": [
50
- {
51
- "scheme": "https",
52
- "domain": "tauri.localhost",
53
- "windows": ["main"],
54
- "plugins": [
55
- "clipboard",
56
- "path",
57
- "dialog",
58
- "fs",
59
- "shell",
60
- "window",
61
- "windows"
62
- ]
63
- }
64
- ]
65
- },
66
- "windows": [
67
- {
68
- "fullscreen": false,
69
- "title": "Tauri UI",
70
- "center": true,
71
- "resizable": true,
72
- "decorations": false,
73
- "transparent": true,
74
- "height": 920,
75
- "width": 1300
76
- }
77
- ]
78
- }
79
- }
1
+ {
2
+ "build": {
3
+ "beforeDevCommand": "pnpm dev",
4
+ "beforeBuildCommand": "pnpm build",
5
+ "devPath": "http://localhost:1420",
6
+ "distDir": "../dist",
7
+ "withGlobalTauri": false
8
+ },
9
+ "package": {
10
+ "productName": "tauri-ui"
11
+ },
12
+ "tauri": {
13
+ "bundle": {
14
+ "active": true,
15
+ "category": "DeveloperTool",
16
+ "copyright": "",
17
+ "deb": {
18
+ "depends": []
19
+ },
20
+ "externalBin": [],
21
+ "icon": [
22
+ "icons/32x32.png",
23
+ "icons/128x128.png",
24
+ "icons/128x128@2x.png",
25
+ "icons/icon.icns",
26
+ "icons/icon.ico"
27
+ ],
28
+ "identifier": "com.yourname.dev",
29
+ "longDescription": "",
30
+ "macOS": {
31
+ "entitlements": null,
32
+ "exceptionDomain": "",
33
+ "frameworks": [],
34
+ "providerShortName": null,
35
+ "signingIdentity": null
36
+ },
37
+ "resources": [],
38
+ "shortDescription": "",
39
+ "targets": "all",
40
+ "windows": {
41
+ "certificateThumbprint": null,
42
+ "digestAlgorithm": "sha256",
43
+ "timestampUrl": "",
44
+ "nsis": { "installerIcon": "./icons/icon.ico" }
45
+ }
46
+ },
47
+ "security": {
48
+ "csp": null,
49
+ "dangerousRemoteDomainIpcAccess": [
50
+ {
51
+ "scheme": "https",
52
+ "domain": "tauri.localhost",
53
+ "windows": ["main"],
54
+ "plugins": ["app", "shell", "os", "event", "window"]
55
+ }
56
+ ]
57
+ },
58
+ "windows": [
59
+ {
60
+ "fullscreen": false,
61
+ "title": "Tauri UI",
62
+ "center": true,
63
+ "resizable": true,
64
+ "decorations": false,
65
+ "transparent": true,
66
+ "height": 920,
67
+ "width": 1300
68
+ }
69
+ ]
70
+ }
71
+ }
@@ -1,16 +1,16 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema.json",
3
- "style": "default",
4
- "rsc": false,
5
- "tsx": true,
6
- "tailwind": {
7
- "config": "tailwind.config.js",
8
- "css": "src/styles/globals.css",
9
- "baseColor": "slate",
10
- "cssVariables": true
11
- },
12
- "aliases": {
13
- "components": "@/components",
14
- "utils": "@/lib/utils"
15
- }
1
+ {
2
+ "$schema": "https://ui.shadcn.com/schema.json",
3
+ "style": "default",
4
+ "rsc": true,
5
+ "tsx": true,
6
+ "tailwind": {
7
+ "config": "tailwind.config.js",
8
+ "css": "src/styles/globals.css",
9
+ "baseColor": "slate",
10
+ "cssVariables": true
11
+ },
12
+ "aliases": {
13
+ "components": "@/components",
14
+ "utils": "@/lib/utils"
15
+ }
16
16
  }
@@ -1,14 +1,14 @@
1
- /** @type {import('next').NextConfig} */
2
-
3
- const nextConfig = {
4
- reactStrictMode: true,
5
- swcMinify: true,
6
- images: {
7
- unoptimized: true,
8
- domains: ["avatars.githubusercontent.com", "images.unsplash.com"],
9
- },
10
- output: "export",
11
- distDir: "dist",
12
- }
13
-
14
- module.exports = nextConfig
1
+ /** @type {import('next').NextConfig} */
2
+
3
+ const nextConfig = {
4
+ reactStrictMode: true,
5
+ swcMinify: true,
6
+ images: {
7
+ unoptimized: true,
8
+ domains: ["avatars.githubusercontent.com", "images.unsplash.com"],
9
+ },
10
+ output: "export",
11
+ distDir: "dist",
12
+ }
13
+
14
+ module.exports = nextConfig
@@ -2,7 +2,7 @@
2
2
  "name": "tauri-ui",
3
3
  "private": true,
4
4
  "license": "MIT",
5
- "version": "0.2.0",
5
+ "version": "0.1.0",
6
6
  "scripts": {
7
7
  "dev": "next dev -p 1420",
8
8
  "build": "next build",
@@ -46,37 +46,41 @@
46
46
  "@tailwindcss/line-clamp": "^0.4.4",
47
47
  "@tanstack/react-table": "^8.9.3",
48
48
  "@tauri-apps/api": "2.0.0-alpha.5",
49
+ "@tauri-apps/plugin-app": "2.0.0-alpha.0",
50
+ "@tauri-apps/plugin-os": "2.0.0-alpha.0",
51
+ "@tauri-apps/plugin-shell": "2.0.0-alpha.0",
49
52
  "@tauri-apps/plugin-window": "2.0.0-alpha.0",
50
- "class-variance-authority": "^0.6.1",
51
- "clsx": "^1.2.1",
53
+ "class-variance-authority": "^0.7.0",
54
+ "clsx": "^2.0.0",
52
55
  "cmdk": "^0.2.0",
53
56
  "date-fns": "^2.30.0",
54
- "lucide-react": "^0.259.0",
57
+ "lucide-react": "^0.263.1",
55
58
  "nanoid": "^4.0.2",
56
- "next": "^13.4.9",
59
+ "next": "^13.4.12",
57
60
  "next-themes": "^0.2.1",
58
61
  "react": "^18.2.0",
59
62
  "react-day-picker": "^8.8.0",
60
63
  "react-dom": "^18.2.0",
61
- "react-hook-form": "7.44.3",
64
+ "react-hook-form": "7.45.2",
62
65
  "react-wrap-balancer": "^1.0.0",
63
66
  "recharts": "^2.7.2",
64
- "tailwind-merge": "^1.13.2",
67
+ "tailwind-merge": "^1.14.0",
65
68
  "tailwind-scrollbar": "^3.0.4",
66
69
  "tailwindcss-animate": "^1.0.6",
70
+ "tauri-controls": "^0.0.7",
67
71
  "zod": "^3.21.4"
68
72
  },
69
73
  "devDependencies": {
70
- "@ianvs/prettier-plugin-sort-imports": "^4.0.2",
74
+ "@ianvs/prettier-plugin-sort-imports": "^4.1.0",
71
75
  "@tauri-apps/cli": "2.0.0-alpha.10",
72
- "@types/node": "^20.4.1",
73
- "@types/react": "^18.2.14",
74
- "@types/react-dom": "^18.2.6",
76
+ "@types/node": "^20.4.5",
77
+ "@types/react": "^18.2.18",
78
+ "@types/react-dom": "^18.2.7",
75
79
  "autoprefixer": "^10.4.14",
76
- "postcss": "^8.4.25",
80
+ "postcss": "^8.4.27",
77
81
  "prettier": "^3.0.0",
78
- "prettier-plugin-tailwindcss": "^0.3.0",
79
- "tailwindcss": "^3.3.2",
82
+ "prettier-plugin-tailwindcss": "^0.4.1",
83
+ "tailwindcss": "^3.3.3",
80
84
  "taze": "^0.11.2",
81
85
  "typescript": "^5.1.6"
82
86
  }