@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.
@@ -26,6 +26,8 @@ chart, a small table, and a dark-mode switch.
26
26
 
27
27
  ## Run it
28
28
 
29
+ Use Node.js 22.12 or later, as required by Astro 7.
30
+
29
31
  ```sh
30
32
  npm install
31
33
  npm run dev # http://localhost:4321
@@ -10,11 +10,11 @@
10
10
  "preview": "astro preview"
11
11
  },
12
12
  "dependencies": {
13
- "@awc-ui/core": "1.0.0-beta.11",
14
- "@awc-ui/tokens": "1.0.0-beta.11",
15
- "astro": "^5.6.1"
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": ">=20.19.0"
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.11/src/tokens.css"
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.11/dist/md3/md3.esm.js"></script>
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">
@@ -7,8 +7,8 @@
7
7
  "start": "npx --yes serve ."
8
8
  },
9
9
  "dependencies": {
10
- "@awc-ui/core": "1.0.0-beta.11",
11
- "@awc-ui/tokens": "1.0.0-beta.11"
10
+ "@awc-ui/core": "1.0.0-beta.12",
11
+ "@awc-ui/tokens": "1.0.0-beta.12"
12
12
  },
13
13
  "engines": {
14
14
  "node": ">=20.19.0"
@@ -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 `@awc-ui/react`,
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.11",
13
- "@awc-ui/react": "1.0.0-beta.11",
14
- "@awc-ui/tokens": "1.0.0-beta.11",
15
- "next": "^14.2.18",
16
- "react": "^18.3.1",
17
- "react-dom": "^18.3.1"
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": "^18.3.0",
22
- "@types/react-dom": "^18.3.0",
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": "preserve",
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.11",
14
- "@awc-ui/tokens": "1.0.0-beta.11"
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.11",
14
- "@awc-ui/tokens": "1.0.0-beta.11"
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.11",
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.11"
178
+ "@awc-ui/tokens": "1.0.0-beta.12"
179
179
  },
180
180
  "license": "MIT",
181
181
  "author": "AWC UI",