create-tauri-ui 0.2.0 → 0.2.1

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 (36) hide show
  1. package/README.md +5 -3
  2. package/dist/index.mjs +3 -3
  3. package/package.json +54 -54
  4. package/templates/.shared/src-tauri/Cargo.lock +3701 -3701
  5. package/templates/.shared/src-tauri/Cargo.toml +36 -36
  6. package/templates/.shared/src-tauri/tauri.conf.json +79 -79
  7. package/templates/next/components.json +15 -15
  8. package/templates/next/next.config.js +14 -14
  9. package/templates/next/package.json +83 -83
  10. package/templates/next/src/app/layout.tsx +47 -47
  11. package/templates/next/src/components/menu.tsx +259 -259
  12. package/templates/next/src/lib/utils.ts +6 -6
  13. package/templates/next/src/styles/globals.css +85 -85
  14. package/templates/next/src-tauri/Cargo.lock +3701 -3701
  15. package/templates/next/src-tauri/Cargo.toml +36 -36
  16. package/templates/next/src-tauri/tauri.conf.json +79 -79
  17. package/templates/next/tailwind.config.js +77 -77
  18. package/templates/next/tsconfig.json +34 -34
  19. package/templates/sveltekit/package.json +84 -84
  20. package/templates/sveltekit/src-tauri/Cargo.lock +3701 -3701
  21. package/templates/sveltekit/src-tauri/Cargo.toml +36 -36
  22. package/templates/sveltekit/src-tauri/tauri.conf.json +79 -79
  23. package/templates/vite/components.json +15 -15
  24. package/templates/vite/package.json +76 -76
  25. package/templates/vite/pnpm-lock.yaml +5110 -5110
  26. package/templates/vite/src-tauri/Cargo.lock +3701 -3701
  27. package/templates/vite/src-tauri/Cargo.toml +36 -36
  28. package/templates/vite/src-tauri/tauri.conf.json +79 -79
  29. package/templates/viteuno/components.json +15 -15
  30. package/templates/viteuno/package.json +73 -73
  31. package/templates/viteuno/pnpm-lock.yaml +5298 -5298
  32. package/templates/viteuno/preset.shadcn.ts +160 -160
  33. package/templates/viteuno/src-tauri/Cargo.lock +3701 -3701
  34. package/templates/viteuno/src-tauri/Cargo.toml +36 -36
  35. package/templates/viteuno/src-tauri/tauri.conf.json +79 -79
  36. package/templates/viteuno/uno.config.ts +111 -111
@@ -1,86 +1,86 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- @font-face {
6
- font-family: "Inter";
7
- src: url("../assets/Inter.var.woff2") format("woff2");
8
- }
9
-
10
- @layer base {
11
- :root {
12
- --background: 0 0% 100%;
13
- --foreground: 222.2 47.4% 11.2%;
14
-
15
- --muted: 210 40% 96.1%;
16
- --muted-foreground: 215.4 16.3% 46.9%;
17
-
18
- --popover: 0 0% 100%;
19
- --popover-foreground: 222.2 47.4% 11.2%;
20
-
21
- --border: 214.3 31.8% 91.4%;
22
- --input: 214.3 31.8% 91.4%;
23
-
24
- --card: 0 0% 100%;
25
- --card-foreground: 222.2 47.4% 11.2%;
26
-
27
- --primary: 222.2 47.4% 11.2%;
28
- --primary-foreground: 210 40% 98%;
29
-
30
- --secondary: 210 40% 96.1%;
31
- --secondary-foreground: 222.2 47.4% 11.2%;
32
-
33
- --accent: 210 40% 96.1%;
34
- --accent-foreground: 222.2 47.4% 11.2%;
35
-
36
- --destructive: 0 100% 50%;
37
- --destructive-foreground: 210 40% 98%;
38
-
39
- --ring: 215 20.2% 65.1%;
40
-
41
- --radius: 0.5rem;
42
- }
43
-
44
- .dark {
45
- --background: 224 71% 4%;
46
- --foreground: 213 31% 91%;
47
-
48
- --muted: 223 47% 11%;
49
- --muted-foreground: 215.4 16.3% 56.9%;
50
-
51
- --accent: 216 34% 17%;
52
- --accent-foreground: 210 40% 98%;
53
-
54
- --popover: 224 71% 4%;
55
- --popover-foreground: 215 20.2% 65.1%;
56
-
57
- --border: 216 34% 17%;
58
- --input: 216 34% 17%;
59
-
60
- --card: 224 71% 4%;
61
- --card-foreground: 213 31% 91%;
62
-
63
- --primary: 210 40% 98%;
64
- --primary-foreground: 222.2 47.4% 1.2%;
65
-
66
- --secondary: 222.2 47.4% 11.2%;
67
- --secondary-foreground: 210 40% 98%;
68
-
69
- --destructive: 0 63% 31%;
70
- --destructive-foreground: 210 40% 98%;
71
-
72
- --ring: 216 34% 17%;
73
-
74
- --radius: 0.5rem;
75
- }
76
- }
77
-
78
- @layer base {
79
- * {
80
- @apply border-border;
81
- }
82
- body {
83
- @apply bg-background text-foreground;
84
- font-feature-settings: "rlig" 1, "calt" 1;
85
- }
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ @font-face {
6
+ font-family: "Inter";
7
+ src: url("../assets/Inter.var.woff2") format("woff2");
8
+ }
9
+
10
+ @layer base {
11
+ :root {
12
+ --background: 0 0% 100%;
13
+ --foreground: 222.2 47.4% 11.2%;
14
+
15
+ --muted: 210 40% 96.1%;
16
+ --muted-foreground: 215.4 16.3% 46.9%;
17
+
18
+ --popover: 0 0% 100%;
19
+ --popover-foreground: 222.2 47.4% 11.2%;
20
+
21
+ --border: 214.3 31.8% 91.4%;
22
+ --input: 214.3 31.8% 91.4%;
23
+
24
+ --card: 0 0% 100%;
25
+ --card-foreground: 222.2 47.4% 11.2%;
26
+
27
+ --primary: 222.2 47.4% 11.2%;
28
+ --primary-foreground: 210 40% 98%;
29
+
30
+ --secondary: 210 40% 96.1%;
31
+ --secondary-foreground: 222.2 47.4% 11.2%;
32
+
33
+ --accent: 210 40% 96.1%;
34
+ --accent-foreground: 222.2 47.4% 11.2%;
35
+
36
+ --destructive: 0 100% 50%;
37
+ --destructive-foreground: 210 40% 98%;
38
+
39
+ --ring: 215 20.2% 65.1%;
40
+
41
+ --radius: 0.5rem;
42
+ }
43
+
44
+ .dark {
45
+ --background: 224 71% 4%;
46
+ --foreground: 213 31% 91%;
47
+
48
+ --muted: 223 47% 11%;
49
+ --muted-foreground: 215.4 16.3% 56.9%;
50
+
51
+ --accent: 216 34% 17%;
52
+ --accent-foreground: 210 40% 98%;
53
+
54
+ --popover: 224 71% 4%;
55
+ --popover-foreground: 215 20.2% 65.1%;
56
+
57
+ --border: 216 34% 17%;
58
+ --input: 216 34% 17%;
59
+
60
+ --card: 224 71% 4%;
61
+ --card-foreground: 213 31% 91%;
62
+
63
+ --primary: 210 40% 98%;
64
+ --primary-foreground: 222.2 47.4% 1.2%;
65
+
66
+ --secondary: 222.2 47.4% 11.2%;
67
+ --secondary-foreground: 210 40% 98%;
68
+
69
+ --destructive: 0 63% 31%;
70
+ --destructive-foreground: 210 40% 98%;
71
+
72
+ --ring: 216 34% 17%;
73
+
74
+ --radius: 0.5rem;
75
+ }
76
+ }
77
+
78
+ @layer base {
79
+ * {
80
+ @apply border-border;
81
+ }
82
+ body {
83
+ @apply bg-background text-foreground;
84
+ font-feature-settings: "rlig" 1, "calt" 1;
85
+ }
86
86
  }