Skip to content

Commit e884348

Browse files
Version Packages (beta)
1 parent d075c2b commit e884348

31 files changed

Lines changed: 175 additions & 15 deletions

.changeset/pre.json

Lines changed: 2 additions & 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",
@@ -52,6 +53,7 @@
5253
"fix-runtime-important-classname",
5354
"global-nesting-composition-parity",
5455
"init-scaffold-default-presets",
56+
"jsx-extract-requires-framework",
5557
"lint-inspection-result",
5658
"merge-adjacent-selectors",
5759
"native-token-css",

packages/cli/CHANGELOG.md

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

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

515
### 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: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
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+
- d075c2b: Only extract JSX style props when `jsxFramework` is configured.
18+
19+
This prevents CSS from being generated for JSX components in projects that have not enabled JSX extraction.
20+
Function-call extraction is unchanged.
21+
22+
- Updated dependencies [82e7811]
23+
- @pandacss/compiler-shared@2.0.0-beta.6
24+
325
## 2.0.0-beta.5
426

527
### 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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
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+
- d075c2b: Only extract JSX style props when `jsxFramework` is configured.
18+
19+
This prevents CSS from being generated for JSX components in projects that have not enabled JSX extraction.
20+
Function-call extraction is unchanged.
21+
22+
- Updated dependencies [82e7811]
23+
- @pandacss/compiler-shared@2.0.0-beta.6
24+
- @pandacss/config@2.0.0-beta.6
25+
326
## 2.0.0-beta.5
427

528
### 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)