Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .changeset/large-lizards-help.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@amandaguthrie/panda-preset-shared-utils": patch
---

<br/>

* Update `@pandacss/dev` peer dependency from 0.x to >=0.0.0
13 changes: 13 additions & 0 deletions .changeset/tame-humans-leave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
"@amandaguthrie/panda-preset-framework-simplecss": patch
"@amandaguthrie/panda-preset-font-modernfs": patch
"@amandaguthrie/panda-preset-shared-utils": patch
"@amandaguthrie/panda-plugin-type-extend": patch
"@amandaguthrie/panda-preset-breakpoints": patch
"@amandaguthrie/panda-preset-color-radix": patch
"@amandaguthrie/panda-plugin-add-export": patch
---

<br/>

* Update `@pandacss/dev` and `@pandacss/types` dev dependencies to ^1.0.0
8 changes: 4 additions & 4 deletions .github/composite-actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ runs:
steps:
- uses: pnpm/action-setup@v3
with:
version: 9
version: 10

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'

- name: Setup Git User
shell: bash
run: |
git config --global user.email "51721024+amandaguthrie@users.noreply.github.com"
git config --global user.name "Amanda Guthrie"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"

- name: Install dependencies
shell: bash
Expand Down
23 changes: 16 additions & 7 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"$schema": "https://biomejs.dev/schemas/2.1.4/schema.json",
"files": {
"ignore": ["build", "dist", "node_modules", "**/*.md", "pnpm-lock.yaml", "styled-system", "snapshots", "panda-preset-static-toolkit", "panda-preset-framework-material-v3"]
},
"organizeImports": {
"enabled": true
"includes": [
"**",
"!**/build",
"!**/dist",
"!**/node_modules",
"!**/*.md",
"!**/pnpm-lock.yaml",
"!**/styled-system",
"!**/snapshots",
"!**/panda-preset-static-toolkit",
"!**/panda-preset-framework-material-v3"
]
},
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"formatter": {
"lineWidth": 120
},
Expand All @@ -32,10 +41,10 @@
"enabled": true,
"rules": {
"recommended": true,

"correctness": {
"noUnusedVariables": {
"level": "error"
"level": "error",
"options": {}
}
},
"suspicious": {
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@
"release:dev:publish": "changeset publish --no-git-tag --tag dev"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.8.1",
"glob": "^11.0.0",
"@biomejs/biome": "2.1.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@types/node": "^24.2.0",
"glob": "^11.0.3",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@9.12.1",
"packageManager": "pnpm@10.14.0",
"pnpm": {
"overrides": {
"@pandacss/dev": "^0.47.0",
"@pandacss/types": "^0.47.0",
"typescript": "^5.6.3"
"@pandacss/dev": "^1.0.1",
"@pandacss/types": "^1.0.1",
"typescript": "^5.9.2"
}
}
}
4 changes: 3 additions & 1 deletion packages/_template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
},
"./package.json": "./package.json"
},
"files": ["dist"],
"files": [
"dist"
],
"side-effects": false,
"scripts": {
"build": "tsup --entry src/index.ts --entry src/index.ts --format=esm,cjs --dts",
Expand Down
8 changes: 5 additions & 3 deletions packages/panda-plugin-add-export/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
},
"./package.json": "./package.json"
},
"files": ["dist"],
"files": [
"dist"
],
"side-effects": false,
"scripts": {
"build": "tsup --entry src/index.ts --entry src/index.ts --format=esm,cjs --dts",
Expand All @@ -39,8 +41,8 @@
"devDependencies": {
"@amandaguthrie/panda-preset-dev-utils": "workspace:*",
"@amandaguthrie/panda-preset-shared-utils": "workspace:*",
"@pandacss/dev": "<1.0.0",
"@pandacss/types": "<1.0.0"
"@pandacss/dev": "^1.0.0",
"@pandacss/types": "^1.0.0"
},
"peerDependencies": {
"@pandacss/dev": ">=0.32.0"
Expand Down
1 change: 1 addition & 0 deletions packages/panda-plugin-add-export/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { addExports } from './addExports';

export * from './addExports';
export default addExports;
8 changes: 5 additions & 3 deletions packages/panda-plugin-type-extend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
},
"./package.json": "./package.json"
},
"files": ["dist"],
"files": [
"dist"
],
"side-effects": false,
"scripts": {
"build": "tsup --entry src/index.ts --entry src/index.ts --format=esm,cjs --dts",
Expand All @@ -39,8 +41,8 @@
},
"devDependencies": {
"@amandaguthrie/panda-preset-dev-utils": "workspace:*",
"@pandacss/dev": "<1.0.0",
"@pandacss/types": "<1.0.0"
"@pandacss/dev": "^1.0.0",
"@pandacss/types": "^1.0.0"
},
"peerDependencies": {
"@pandacss/dev": ">=0.32.0"
Expand Down
16 changes: 12 additions & 4 deletions packages/panda-preset-breakpoints/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@
"url": "https://github.com/amandaguthrie/panda-css-presets.git",
"directory": "packages/panda-preset-breakpoints"
},
"keywords": ["pandacss", "panda-css", "panda-preset", "pandacss-preset", "panda-css-preset", "radix", "radix-colors"],
"keywords": [
"pandacss",
"panda-css",
"panda-preset",
"pandacss-preset",
"panda-css-preset"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -30,7 +36,9 @@
},
"./package.json": "./package.json"
},
"files": ["dist"],
"files": [
"dist"
],
"side-effects": false,
"scripts": {
"build": "tsup --entry src/index.ts --entry src/index.ts --format=esm,cjs --dts",
Expand All @@ -43,8 +51,8 @@
},
"devDependencies": {
"@amandaguthrie/panda-preset-dev-utils": "workspace:*",
"@pandacss/dev": "<1.0.0",
"@pandacss/types": "<1.0.0"
"@pandacss/dev": "^1.0.0",
"@pandacss/types": "^1.0.0"
},
"peerDependencies": {
"@pandacss/dev": ">=0.15.4"
Expand Down
18 changes: 14 additions & 4 deletions packages/panda-preset-color-radix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@
"url": "https://github.com/amandaguthrie/panda-css-presets.git",
"directory": "packages/panda-preset-color-radix"
},
"keywords": ["pandacss", "panda-css", "panda-preset", "pandacss-preset", "panda-css-preset", "radix", "radix-colors"],
"keywords": [
"pandacss",
"panda-css",
"panda-preset",
"pandacss-preset",
"panda-css-preset",
"radix",
"radix-colors"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -30,7 +38,9 @@
},
"./package.json": "./package.json"
},
"files": ["dist"],
"files": [
"dist"
],
"side-effects": false,
"scripts": {
"build": "tsup --entry src/index.ts --entry src/index.ts --format=esm,cjs --dts",
Expand All @@ -44,8 +54,8 @@
},
"devDependencies": {
"@amandaguthrie/panda-preset-dev-utils": "workspace:*",
"@pandacss/dev": "<1.0.0",
"@pandacss/types": "<1.0.0",
"@pandacss/dev": "^1.0.0",
"@pandacss/types": "^1.0.0",
"@puffin-ui/types": "^0.0.1"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/panda-preset-color-radix/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { pandaPresetColorRadix } from './preset';

export * from './preset';
export type * from './types';
export type { Condition } from '@pandacss/types';
export type {
ColorKeyRadix,
ColorMode,
ColorModeMapPartialKeys,
ScaleOneTwelve,
} from '@puffin-ui/types';
export type { Condition } from '@pandacss/types';
export * from './preset';
export type * from './types';

export default pandaPresetColorRadix;
6 changes: 3 additions & 3 deletions packages/panda-preset-color-radix/src/preset.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { entries, fromEntries, parsePrefix } from '@amandaguthrie/panda-preset-shared-utils';
import { type Preset, definePreset } from '@pandacss/dev';
import { definePreset, type Preset } from '@pandacss/dev';
import type { Condition, RecursiveToken } from '@pandacss/types';
import {
type ColorKeyRadix,
type ColorMode,
type ColorModeMapPartialKeys,
type ScaleOneTwelve,
radixAllColorsArray,
type ScaleOneTwelve,
} from '@puffin-ui/types';
import { transformColorScale } from '@puffin-ui/utilities-color';
import type {
Expand Down Expand Up @@ -46,7 +46,7 @@ export function pandaPresetColorRadix(options?: ColorRadixPresetOptions) {
? colors.filter((color) => radixAllColorsArray.includes(color))
: '*'
: '*';
let semanticTokens: RecursiveToken<string, any> | undefined = undefined;
let semanticTokens: RecursiveToken<string, any> | undefined;
if (Object.keys(semanticColorMap).length > 0) {
// If this semantic color wasn't included in the colors array, add it.
for (const mapDetail of Object.values(semanticColorMap)) {
Expand Down
4 changes: 3 additions & 1 deletion packages/panda-preset-dev-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
},
"./package.json": "./package.json"
},
"files": ["dist"],
"files": [
"dist"
],
"side-effects": false,
"scripts": {
"build": "tsup --entry src/index.ts --entry src/index.ts --format=esm,cjs --dts",
Expand Down
16 changes: 12 additions & 4 deletions packages/panda-preset-font-modernfs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@
"url": "https://github.com/amandaguthrie/panda-css-presets.git",
"directory": "packages/panda-preset-font-modernfs"
},
"keywords": ["pandacss", "panda-css", "panda-preset", "pandacss-preset", "panda-css-preset", "radix", "radix-colors"],
"keywords": [
"pandacss",
"panda-css",
"panda-preset",
"pandacss-preset",
"panda-css-preset"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -30,7 +36,9 @@
},
"./package.json": "./package.json"
},
"files": ["dist"],
"files": [
"dist"
],
"side-effects": false,
"scripts": {
"build": "tsup --entry src/index.ts --entry src/index.ts --format=esm,cjs --dts",
Expand All @@ -43,8 +51,8 @@
},
"devDependencies": {
"@amandaguthrie/panda-preset-dev-utils": "workspace:*",
"@pandacss/dev": "<1.0.0",
"@pandacss/types": "<1.0.0"
"@pandacss/dev": "^1.0.0",
"@pandacss/types": "^1.0.0"
},
"peerDependencies": {
"@pandacss/dev": ">=0.15.4"
Expand Down
6 changes: 4 additions & 2 deletions packages/panda-preset-framework-simplecss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
},
"./package.json": "./package.json"
},
"files": ["dist"],
"files": [
"dist"
],
"side-effects": false,
"scripts": {
"build": "tsup --entry src/index.ts --entry src/index.ts --format=esm,cjs --dts",
Expand All @@ -44,7 +46,7 @@
"@amandaguthrie/panda-preset-shared-utils": "workspace:*"
},
"devDependencies": {
"@pandacss/dev": "<1.0.0"
"@pandacss/dev": "^1.0.0"
},
"peerDependencies": {
"@pandacss/dev": ">=0.20.1",
Expand Down
1 change: 1 addition & 0 deletions packages/panda-preset-framework-simplecss/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { pandaPresetFrameworkSimpleCss } from './preset';

export * from './types';

export default pandaPresetFrameworkSimpleCss;
3 changes: 1 addition & 2 deletions packages/panda-preset-framework-simplecss/src/tokens.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { defineTokens } from '@pandacss/dev';
import { defineSemanticTokens } from '@pandacss/dev';
import { defineSemanticTokens, defineTokens } from '@pandacss/dev';
import type { SimpleCssColorConfig, SimpleCssFontConfig } from './types';

export const coreColorTokens = (prefix: string, colorConfig: SimpleCssColorConfig) => {
Expand Down
Loading