Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions .changeset/add-end-position-to-ast-json.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/atlaskit-preset-complete-tokens.md

This file was deleted.

38 changes: 0 additions & 38 deletions .changeset/color-palette-handling.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/support-data-attrs-defaultprops.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/astro-plugin-studio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @pandacss/astro-plugin-studio

## 1.5.0

### Patch Changes

- Updated dependencies [91c65ff]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/astro-plugin-studio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/astro-plugin-studio",
"version": "1.4.3",
"version": "1.5.0",
"description": "Vite plugin for Pandacss Studio",
"author": "Segun Adebayo <[email protected]>",
"license": "MIT",
Expand Down
15 changes: 15 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @pandacss/dev

## 1.5.0

### Patch Changes

- Updated dependencies [91c65ff]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/dev",
"version": "1.4.3",
"version": "1.5.0",
"description": "The user facing package for panda css",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
44 changes: 44 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,49 @@
# @pandacss/config

## 1.5.0

### Minor Changes

- 91c65ff: Add support for controlling the color palette generation via `theme.colorPalette` property.

```ts
// Disable color palette generation completely
export default defineConfig({
theme: {
colorPalette: {
enabled: false,
},
},
})

// Include only specific colors
export default defineConfig({
theme: {
colorPalette: {
include: ['gray', 'blue', 'red'],
},
},
})

// Exclude specific colors
export default defineConfig({
theme: {
colorPalette: {
exclude: ['yellow', 'orange'],
},
},
})
```

### Patch Changes

- Updated dependencies [91c65ff]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/config",
"version": "1.4.3",
"version": "1.5.0",
"description": "Find and load panda config",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
44 changes: 44 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,49 @@
# @pandacss/core

## 1.5.0

### Minor Changes

- 91c65ff: Add support for controlling the color palette generation via `theme.colorPalette` property.

```ts
// Disable color palette generation completely
export default defineConfig({
theme: {
colorPalette: {
enabled: false,
},
},
})

// Include only specific colors
export default defineConfig({
theme: {
colorPalette: {
include: ['gray', 'blue', 'red'],
},
},
})

// Exclude specific colors
export default defineConfig({
theme: {
colorPalette: {
exclude: ['yellow', 'orange'],
},
},
})
```

### Patch Changes

- Updated dependencies [91c65ff]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/core",
"version": "1.4.3",
"version": "1.5.0",
"description": "core functions for extract-it",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
21 changes: 21 additions & 0 deletions packages/extractor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @pandacss/extractor

## 1.5.0

### Patch Changes

- 1b85b61: Add `endLineNumber` and `endColumn` fields to AST JSON output from `panda debug` command.

The `*.ast.json` files generated by `panda debug` now include complete position information for detected CSS usage
locations. Previously, only start position (`line` and `column`) was exported. Now the output includes:

- `line`: Start line number
- `column`: Start column number
- `endLineNumber`: End line number (new)
- `endColumn`: End column number (new)

This provides complete span coverage for each detected node, making it easier to precisely locate CSS usage in source
files.

Fixes #3407

- @pandacss/[email protected]

## 1.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/extractor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/extractor",
"version": "1.4.3",
"version": "1.5.0",
"description": "The css extractor for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
56 changes: 56 additions & 0 deletions packages/generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,61 @@
# @pandacss/generator

## 1.5.0

### Minor Changes

- 91c65ff: Add support for controlling the color palette generation via `theme.colorPalette` property.

```ts
// Disable color palette generation completely
export default defineConfig({
theme: {
colorPalette: {
enabled: false,
},
},
})

// Include only specific colors
export default defineConfig({
theme: {
colorPalette: {
include: ['gray', 'blue', 'red'],
},
},
})

// Exclude specific colors
export default defineConfig({
theme: {
colorPalette: {
exclude: ['yellow', 'orange'],
},
},
})
```

### Patch Changes

- 52e2399: Fix TypeScript error when using `data-*` attributes in `defaultProps` for `createStyleContext` and JSX
factory functions.

```tsx
const TabsList = withContext(TabsPrimitive.List, 'list', {
defaultProps: {
'data-slot': 'tabs-list', // now works without type errors
},
})
```

- Updated dependencies [91c65ff]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/generator",
"version": "1.4.3",
"version": "1.5.0",
"description": "The css generator for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
2 changes: 2 additions & 0 deletions packages/is-valid-prop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @pandacss/is-valid-prop

## 1.5.0

## 1.4.3

## 1.4.2
Expand Down
2 changes: 1 addition & 1 deletion packages/is-valid-prop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/is-valid-prop",
"version": "1.4.3",
"version": "1.5.0",
"description": "Common error messages for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @pandacss/logger

## 1.5.0

### Patch Changes

- Updated dependencies [91c65ff]
- @pandacss/[email protected]

## 1.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/logger",
"version": "1.4.3",
"version": "1.5.0",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
Loading