@awc-ui/core 1.0.0-beta.11 → 1.0.0-beta.12
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/bin/templates/astro/README.md +2 -0
- package/bin/templates/astro/package.json +4 -4
- package/bin/templates/html/index.html +2 -2
- package/bin/templates/html/package.json +2 -2
- package/bin/templates/next/README.md +5 -2
- package/bin/templates/next/package.json +8 -8
- package/bin/templates/next/tsconfig.json +2 -2
- package/bin/templates/nuxt/package.json +2 -2
- package/bin/templates/sveltekit/package.json +2 -2
- package/package.json +2 -2
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"preview": "astro preview"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@awc-ui/core": "1.0.0-beta.
|
|
14
|
-
"@awc-ui/tokens": "1.0.0-beta.
|
|
15
|
-
"astro": "^
|
|
13
|
+
"@awc-ui/core": "1.0.0-beta.12",
|
|
14
|
+
"@awc-ui/tokens": "1.0.0-beta.12",
|
|
15
|
+
"astro": "^7.3.1"
|
|
16
16
|
},
|
|
17
17
|
"engines": {
|
|
18
|
-
"node": ">=
|
|
18
|
+
"node": ">=22.12.0"
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
reference via var(). Served from jsDelivr (real file path in the package). -->
|
|
10
10
|
<link
|
|
11
11
|
rel="stylesheet"
|
|
12
|
-
href="https://cdn.jsdelivr.net/npm/@awc-ui/tokens@1.0.0-beta.
|
|
12
|
+
href="https://cdn.jsdelivr.net/npm/@awc-ui/tokens@1.0.0-beta.12/src/tokens.css"
|
|
13
13
|
/>
|
|
14
14
|
|
|
15
15
|
<!-- The browser entry registers md-* elements and loads sibling chunks
|
|
16
16
|
directly from the package, preserving their relative asset URLs. -->
|
|
17
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/@awc-ui/core@1.0.0-beta.
|
|
17
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/@awc-ui/core@1.0.0-beta.12/dist/md3/md3.esm.js"></script>
|
|
18
18
|
</head>
|
|
19
19
|
<body style="margin:0;background:var(--md-sys-color-background);color:var(--md-sys-color-on-background)">
|
|
20
20
|
<md-app-bar headline="Acme Analytics" subtitle="Overview">
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
> The StackBlitz link works once this directory lands on the `main` branch of
|
|
6
6
|
> [awc-ui/core](https://github.com/awc-ui/core).
|
|
7
7
|
|
|
8
|
-
A minimal Next.js App Router project using the published
|
|
9
|
-
`@awc-ui/core` and `@awc-ui/tokens` packages. It renders a compact
|
|
8
|
+
A minimal Next.js 16 App Router project with React 19 using the published
|
|
9
|
+
`@awc-ui/react`, `@awc-ui/core` and `@awc-ui/tokens` packages. It renders a compact
|
|
10
10
|
mini-dashboard — app bar, two stat cards, a line chart, a small table, and a
|
|
11
11
|
dark-mode switch.
|
|
12
12
|
|
|
@@ -29,6 +29,9 @@ dark-mode switch.
|
|
|
29
29
|
|
|
30
30
|
## Run it
|
|
31
31
|
|
|
32
|
+
Use Node.js 20.19 or newer. The starter uses Next.js 16's default Turbopack
|
|
33
|
+
bundler for development and production builds.
|
|
34
|
+
|
|
32
35
|
```sh
|
|
33
36
|
npm install
|
|
34
37
|
npm run dev # http://localhost:3000
|
|
@@ -9,17 +9,17 @@
|
|
|
9
9
|
"start": "next start"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@awc-ui/core": "1.0.0-beta.
|
|
13
|
-
"@awc-ui/react": "1.0.0-beta.
|
|
14
|
-
"@awc-ui/tokens": "1.0.0-beta.
|
|
15
|
-
"next": "^
|
|
16
|
-
"react": "^
|
|
17
|
-
"react-dom": "^
|
|
12
|
+
"@awc-ui/core": "1.0.0-beta.12",
|
|
13
|
+
"@awc-ui/react": "1.0.0-beta.12",
|
|
14
|
+
"@awc-ui/tokens": "1.0.0-beta.12",
|
|
15
|
+
"next": "^16.3.4",
|
|
16
|
+
"react": "^19.2.8",
|
|
17
|
+
"react-dom": "^19.2.8"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/node": "^20.14.0",
|
|
21
|
-
"@types/react": "^
|
|
22
|
-
"@types/react-dom": "^
|
|
21
|
+
"@types/react": "^19.2.18",
|
|
22
|
+
"@types/react-dom": "^19.2.7",
|
|
23
23
|
"typescript": "^5.4.0"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"moduleResolution": "bundler",
|
|
12
12
|
"resolveJsonModule": true,
|
|
13
13
|
"isolatedModules": true,
|
|
14
|
-
"jsx": "
|
|
14
|
+
"jsx": "react-jsx",
|
|
15
15
|
"incremental": true,
|
|
16
16
|
"plugins": [{ "name": "next" }]
|
|
17
17
|
},
|
|
18
|
-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
18
|
+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", ".next/dev/types/**/*.ts"],
|
|
19
19
|
"exclude": ["node_modules"]
|
|
20
20
|
}
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"preview": "nuxi preview"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@awc-ui/core": "1.0.0-beta.
|
|
14
|
-
"@awc-ui/tokens": "1.0.0-beta.
|
|
13
|
+
"@awc-ui/core": "1.0.0-beta.12",
|
|
14
|
+
"@awc-ui/tokens": "1.0.0-beta.12"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"nuxt": "^3.14.1592",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"preview": "vite preview"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@awc-ui/core": "1.0.0-beta.
|
|
14
|
-
"@awc-ui/tokens": "1.0.0-beta.
|
|
13
|
+
"@awc-ui/core": "1.0.0-beta.12",
|
|
14
|
+
"@awc-ui/tokens": "1.0.0-beta.12"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@sveltejs/adapter-static": "^3.0.8",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awc-ui/core",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.12",
|
|
4
4
|
"description": "Accessible Material Design 3 Web Components for React, Angular, Vue, and Svelte, with SSR, theming, RTL, forms, and custom elements",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"material-design",
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
"puppeteer": "^24.0.0",
|
|
176
176
|
"size-limit": "^11.1.6",
|
|
177
177
|
"typescript": "^5.4.0",
|
|
178
|
-
"@awc-ui/tokens": "1.0.0-beta.
|
|
178
|
+
"@awc-ui/tokens": "1.0.0-beta.12"
|
|
179
179
|
},
|
|
180
180
|
"license": "MIT",
|
|
181
181
|
"author": "AWC UI",
|