Skip to content

Commit 25368f8

Browse files
Version Packages (beta)
1 parent d786855 commit 25368f8

31 files changed

Lines changed: 157 additions & 15 deletions

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"config-bundle-temp-file",
4242
"css-property-value-map",
4343
"default-panda-build-command",
44+
"design-system-manifest",
4445
"direct-mcp-package",
4546
"eslint-plugin-core",
4647
"fix-classname-vendor-prefix",

packages/cli/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @pandacss/cli
22

3+
## 2.0.0-beta.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [82e7811]
8+
- @pandacss/compiler@2.0.0-beta.6
9+
- @pandacss/compiler-shared@2.0.0-beta.6
10+
- @pandacss/config@2.0.0-beta.6
11+
312
## 2.0.0-beta.5
413

514
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pandacss/cli",
3-
"version": "2.0.0-beta.5",
3+
"version": "2.0.0-beta.6",
44
"description": "CLI for Panda CSS, powered by the Rust compiler",
55
"type": "module",
66
"main": "./dist/index.js",

packages/compiler-shared/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @pandacss/compiler-shared
22

3+
## 2.0.0-beta.6
4+
5+
### Patch Changes
6+
7+
- 82e7811: Add the `compiler.designSystem` namespace — `create`, `validate`, `load`, and `resolveChain` for a design
8+
system's `panda.lib.json` manifest. The manifest records a library's preset, build info, import paths, and parent
9+
design system so a consumer adopts it with one `designSystem` field.
10+
11+
- `create` / `validate` — produce and schema-check a manifest.
12+
- `load` — the consumer side: validate, then hydrate the library's pre-extracted styles, tree-shaken to the consumer's
13+
imports.
14+
- `resolveChain` — the composition case: order a chain of parent design systems root-first, deduping shared ancestors
15+
and reporting cycles.
16+
317
## 2.0.0-beta.5
418

519
## 2.0.0-beta.4

packages/compiler-shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pandacss/compiler-shared",
3-
"version": "2.0.0-beta.5",
3+
"version": "2.0.0-beta.6",
44
"description": "Shared TypeScript contract for the Panda compiler bindings (native + wasm)",
55
"type": "module",
66
"main": "./dist/index.js",

packages/compiler-wasm/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# @pandacss/compiler-wasm
22

3+
## 2.0.0-beta.6
4+
5+
### Patch Changes
6+
7+
- 82e7811: Add the `compiler.designSystem` namespace — `create`, `validate`, `load`, and `resolveChain` for a design
8+
system's `panda.lib.json` manifest. The manifest records a library's preset, build info, import paths, and parent
9+
design system so a consumer adopts it with one `designSystem` field.
10+
11+
- `create` / `validate` — produce and schema-check a manifest.
12+
- `load` — the consumer side: validate, then hydrate the library's pre-extracted styles, tree-shaken to the consumer's
13+
imports.
14+
- `resolveChain` — the composition case: order a chain of parent design systems root-first, deduping shared ancestors
15+
and reporting cycles.
16+
17+
- Updated dependencies [82e7811]
18+
- @pandacss/compiler-shared@2.0.0-beta.6
19+
320
## 2.0.0-beta.5
421

522
### Patch Changes

packages/compiler-wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pandacss/compiler-wasm",
3-
"version": "2.0.0-beta.5",
3+
"version": "2.0.0-beta.6",
44
"description": "WebAssembly binding for the Panda compiler engine (browser/playground target)",
55
"type": "module",
66
"main": "./dist/index.js",

packages/compiler/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @pandacss/compiler
22

3+
## 2.0.0-beta.6
4+
5+
### Patch Changes
6+
7+
- 82e7811: Add the `compiler.designSystem` namespace — `create`, `validate`, `load`, and `resolveChain` for a design
8+
system's `panda.lib.json` manifest. The manifest records a library's preset, build info, import paths, and parent
9+
design system so a consumer adopts it with one `designSystem` field.
10+
11+
- `create` / `validate` — produce and schema-check a manifest.
12+
- `load` — the consumer side: validate, then hydrate the library's pre-extracted styles, tree-shaken to the consumer's
13+
imports.
14+
- `resolveChain` — the composition case: order a chain of parent design systems root-first, deduping shared ancestors
15+
and reporting cycles.
16+
17+
- Updated dependencies [82e7811]
18+
- @pandacss/compiler-shared@2.0.0-beta.6
19+
- @pandacss/config@2.0.0-beta.6
20+
321
## 2.0.0-beta.5
422

523
### Patch Changes

packages/compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pandacss/compiler",
3-
"version": "2.0.0-beta.5",
3+
"version": "2.0.0-beta.6",
44
"description": "Native Rust binding for the Panda compiler engine",
55
"type": "module",
66
"main": "./dist/index.js",

packages/config/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @pandacss/config
22

3+
## 2.0.0-beta.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [82e7811]
8+
- @pandacss/compiler-shared@2.0.0-beta.6
9+
- @pandacss/types@2.0.0-beta.6
10+
311
## 2.0.0-beta.5
412

513
### Patch Changes

0 commit comments

Comments
 (0)