create-auto-app 1.24.0 → 1.25.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/package.json +2 -2
- package/templates/typical/auto.config.ts +252 -950
- package/templates/typical/client/.storybook/main.ts +7 -1
- package/templates/typical/client/.storybook/manager-head.html +133 -0
- package/templates/typical/client/.storybook/manager.ts +165 -0
- package/templates/typical/client/.storybook/preview-head.html +31 -0
- package/templates/typical/client/.storybook/preview.tsx +74 -2
- package/templates/typical/client/package.json +1 -0
- package/templates/typical/client/public/blank.svg +1 -0
- package/templates/typical/client/src/components/ui/DesignSystem-Overview.stories.tsx +42 -33
- package/templates/typical/client/src/index.css +60 -62
|
@@ -44,73 +44,71 @@
|
|
|
44
44
|
|
|
45
45
|
:root {
|
|
46
46
|
--radius: 0.625rem;
|
|
47
|
-
--background: oklch(
|
|
48
|
-
--foreground: oklch(0.
|
|
47
|
+
--background: oklch(1 0 0);
|
|
48
|
+
--foreground: oklch(0.145 0 0);
|
|
49
49
|
--card: oklch(1 0 0);
|
|
50
|
-
--card-foreground: oklch(0.
|
|
50
|
+
--card-foreground: oklch(0.145 0 0);
|
|
51
51
|
--popover: oklch(1 0 0);
|
|
52
|
-
--popover-foreground: oklch(0.
|
|
53
|
-
--primary: oklch(0.
|
|
54
|
-
--primary-foreground: oklch(0.
|
|
55
|
-
--secondary: oklch(0.
|
|
56
|
-
--secondary-foreground: oklch(0.
|
|
57
|
-
--muted: oklch(0.
|
|
58
|
-
--muted-foreground: oklch(0.
|
|
59
|
-
--accent: oklch(0.
|
|
60
|
-
--accent-foreground: oklch(0.
|
|
61
|
-
--destructive: oklch(0.
|
|
62
|
-
--
|
|
63
|
-
--
|
|
64
|
-
--
|
|
65
|
-
--
|
|
66
|
-
--chart-
|
|
67
|
-
--chart-
|
|
68
|
-
--chart-
|
|
69
|
-
--chart-
|
|
70
|
-
--
|
|
71
|
-
--sidebar: oklch(0.
|
|
72
|
-
--sidebar-
|
|
73
|
-
--sidebar-primary: oklch(0.
|
|
74
|
-
--sidebar-
|
|
75
|
-
--sidebar-accent: oklch(0.
|
|
76
|
-
--sidebar-
|
|
77
|
-
--sidebar-
|
|
78
|
-
--sidebar-ring: oklch(0.65 0.17 162);
|
|
52
|
+
--popover-foreground: oklch(0.145 0 0);
|
|
53
|
+
--primary: oklch(0.205 0 0);
|
|
54
|
+
--primary-foreground: oklch(0.985 0 0);
|
|
55
|
+
--secondary: oklch(0.97 0 0);
|
|
56
|
+
--secondary-foreground: oklch(0.205 0 0);
|
|
57
|
+
--muted: oklch(0.97 0 0);
|
|
58
|
+
--muted-foreground: oklch(0.556 0 0);
|
|
59
|
+
--accent: oklch(0.97 0 0);
|
|
60
|
+
--accent-foreground: oklch(0.205 0 0);
|
|
61
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
62
|
+
--border: oklch(0.922 0 0);
|
|
63
|
+
--input: oklch(0.922 0 0);
|
|
64
|
+
--ring: oklch(0.708 0 0);
|
|
65
|
+
--chart-1: oklch(0.646 0.222 41.116);
|
|
66
|
+
--chart-2: oklch(0.6 0.118 184.704);
|
|
67
|
+
--chart-3: oklch(0.398 0.07 227.392);
|
|
68
|
+
--chart-4: oklch(0.828 0.189 84.429);
|
|
69
|
+
--chart-5: oklch(0.769 0.188 70.08);
|
|
70
|
+
--sidebar: oklch(0.985 0 0);
|
|
71
|
+
--sidebar-foreground: oklch(0.145 0 0);
|
|
72
|
+
--sidebar-primary: oklch(0.205 0 0);
|
|
73
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
74
|
+
--sidebar-accent: oklch(0.97 0 0);
|
|
75
|
+
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
76
|
+
--sidebar-border: oklch(0.922 0 0);
|
|
77
|
+
--sidebar-ring: oklch(0.708 0 0);
|
|
79
78
|
}
|
|
80
79
|
|
|
81
80
|
.dark {
|
|
82
|
-
--background: oklch(0.
|
|
83
|
-
--foreground: oklch(0.
|
|
84
|
-
--card: oklch(0.
|
|
85
|
-
--card-foreground: oklch(0.
|
|
86
|
-
--popover: oklch(0.
|
|
87
|
-
--popover-foreground: oklch(0.
|
|
88
|
-
--primary: oklch(0.
|
|
89
|
-
--primary-foreground: oklch(0.
|
|
90
|
-
--secondary: oklch(0.
|
|
91
|
-
--secondary-foreground: oklch(0.
|
|
92
|
-
--muted: oklch(0.
|
|
93
|
-
--muted-foreground: oklch(0.
|
|
94
|
-
--accent: oklch(0.
|
|
95
|
-
--accent-foreground: oklch(0.
|
|
96
|
-
--destructive: oklch(0.
|
|
97
|
-
--
|
|
98
|
-
--
|
|
99
|
-
--
|
|
100
|
-
--
|
|
101
|
-
--chart-
|
|
102
|
-
--chart-
|
|
103
|
-
--chart-
|
|
104
|
-
--chart-
|
|
105
|
-
--
|
|
106
|
-
--sidebar: oklch(0.
|
|
107
|
-
--sidebar-
|
|
108
|
-
--sidebar-primary: oklch(0.
|
|
109
|
-
--sidebar-
|
|
110
|
-
--sidebar-accent: oklch(0.
|
|
111
|
-
--sidebar-
|
|
112
|
-
--sidebar-
|
|
113
|
-
--sidebar-ring: oklch(0.65 0.17 162);
|
|
81
|
+
--background: oklch(0.145 0 0);
|
|
82
|
+
--foreground: oklch(0.985 0 0);
|
|
83
|
+
--card: oklch(0.205 0 0);
|
|
84
|
+
--card-foreground: oklch(0.985 0 0);
|
|
85
|
+
--popover: oklch(0.205 0 0);
|
|
86
|
+
--popover-foreground: oklch(0.985 0 0);
|
|
87
|
+
--primary: oklch(0.922 0 0);
|
|
88
|
+
--primary-foreground: oklch(0.205 0 0);
|
|
89
|
+
--secondary: oklch(0.269 0 0);
|
|
90
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
91
|
+
--muted: oklch(0.269 0 0);
|
|
92
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
93
|
+
--accent: oklch(0.269 0 0);
|
|
94
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
95
|
+
--destructive: oklch(0.704 0.191 22.216);
|
|
96
|
+
--border: oklch(1 0 0 / 10%);
|
|
97
|
+
--input: oklch(1 0 0 / 15%);
|
|
98
|
+
--ring: oklch(0.556 0 0);
|
|
99
|
+
--chart-1: oklch(0.488 0.243 264.376);
|
|
100
|
+
--chart-2: oklch(0.696 0.17 162.48);
|
|
101
|
+
--chart-3: oklch(0.769 0.188 70.08);
|
|
102
|
+
--chart-4: oklch(0.627 0.265 303.9);
|
|
103
|
+
--chart-5: oklch(0.645 0.246 16.439);
|
|
104
|
+
--sidebar: oklch(0.205 0 0);
|
|
105
|
+
--sidebar-foreground: oklch(0.985 0 0);
|
|
106
|
+
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
107
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
108
|
+
--sidebar-accent: oklch(0.269 0 0);
|
|
109
|
+
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
110
|
+
--sidebar-border: oklch(1 0 0 / 10%);
|
|
111
|
+
--sidebar-ring: oklch(0.556 0 0);
|
|
114
112
|
}
|
|
115
113
|
|
|
116
114
|
@layer base {
|