@wangs-ui/create-react-app 1.0.58 → 1.0.60

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/dist/bin.js CHANGED
@@ -246,7 +246,7 @@ async function promptUser(initialOptions) {
246
246
  skills: skills || allSkills.map((s) => s.id),
247
247
  git: git !== void 0 ? git : true
248
248
  };
249
- intro(`\x1b[36m🚀 Wangs UI React App Scaffolder\x1b[0m (v1.0.58)`);
249
+ intro(`\x1b[36m🚀 Wangs UI React App Scaffolder\x1b[0m (v1.0.60)`);
250
250
  if (!projectName) {
251
251
  const nameResponse = await text({
252
252
  message: "What is your project name?",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wangs-ui/create-react-app",
3
- "version": "1.0.58",
3
+ "version": "1.0.60",
4
4
  "description": "Scaffold a modern React app with Wangs UI, Vite 8, Oxlint, Oxfmt, and AI Agent MCP integration",
5
5
  "keywords": [
6
6
  "antigravity",
@@ -53,7 +53,7 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "@clack/prompts": "^1.7.0",
56
- "@wangs-ui/skills": "1.0.58"
56
+ "@wangs-ui/skills": "1.0.60"
57
57
  },
58
58
  "devDependencies": {},
59
59
  "scripts": {
@@ -2,3 +2,4 @@
2
2
  @import '@wangs-ui/react-icons/style.css';
3
3
 
4
4
  @source "../node_modules/@wangs-ui/react-presets";
5
+ @source "../node_modules/@wangs-ui/foundation";
@@ -133,14 +133,19 @@ export default function Landing(): React.ReactElement {
133
133
 
134
134
  <Text
135
135
  as="h1"
136
- className="text-on-surface font-sans text-5xl font-extrabold tracking-tight md:text-7xl"
136
+ variant="displayLarge"
137
+ weight="bold"
138
+ color="onSurface"
139
+ className="font-sans"
137
140
  >
138
141
  Tactile. Grounded. <span className="text-primary-600">Accessible.</span>
139
142
  </Text>
140
143
 
141
144
  <Text
142
145
  as="p"
143
- className="text-on-surface-variant mx-auto max-w-2xl text-lg font-medium md:text-xl"
146
+ variant="titleLarge"
147
+ color="onSurfaceVariant"
148
+ className="mx-auto max-w-2xl"
144
149
  >
145
150
  A premium React UI library designed for developers who value speed, accessibility, and
146
151
  a unique earthy aesthetic. Build distinct digital experiences.
@@ -164,8 +169,12 @@ export default function Landing(): React.ReactElement {
164
169
  </div>
165
170
 
166
171
  <div className="border-outline-variant bg-surface-container-low shadow-level-1 mx-auto mt-12 flex max-w-md items-center justify-center rounded-xl border p-4 font-mono text-sm">
167
- <span className="text-on-surface-variant mr-4 select-none">$</span>
168
- <span className="text-on-surface">pnpm create @wangs-ui/react-app my-app</span>
172
+ <Text variant="bodyMedium" color="onSurfaceVariant" className="mr-4 select-none">
173
+ $
174
+ </Text>
175
+ <Text variant="bodyMedium" color="onSurface">
176
+ pnpm create @wangs-ui/react-app my-app
177
+ </Text>
169
178
  <CopyButton className="ml-auto" text="pnpm create @wangs-ui/react-app my-app" />
170
179
  </div>
171
180
  </div>