@pandacss/generator 0.0.0-dev-20230829130227 → 0.0.0-dev-20230830203814

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.
package/dist/index.js CHANGED
@@ -629,7 +629,7 @@ function generateCssFn(ctx) {
629
629
  ${ctx.file.importType("SystemStyleObject", "../types/index")}
630
630
 
631
631
  interface CssFunction {
632
- (...styles: SystemStyleObject[]): string
632
+ (...styles: Array<SystemStyleObject | undefined | null | false>): string
633
633
  raw: (styles: SystemStyleObject) => SystemStyleObject
634
634
  }
635
635
 
package/dist/index.mjs CHANGED
@@ -598,7 +598,7 @@ function generateCssFn(ctx) {
598
598
  ${ctx.file.importType("SystemStyleObject", "../types/index")}
599
599
 
600
600
  interface CssFunction {
601
- (...styles: SystemStyleObject[]): string
601
+ (...styles: Array<SystemStyleObject | undefined | null | false>): string
602
602
  raw: (styles: SystemStyleObject) => SystemStyleObject
603
603
  }
604
604
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/generator",
3
- "version": "0.0.0-dev-20230829130227",
3
+ "version": "0.0.0-dev-20230830203814",
4
4
  "description": "The css generator for css panda",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -20,17 +20,17 @@
20
20
  "pluralize": "8.0.0",
21
21
  "postcss": "8.4.27",
22
22
  "ts-pattern": "5.0.4",
23
- "@pandacss/core": "0.0.0-dev-20230829130227",
24
- "@pandacss/is-valid-prop": "0.0.0-dev-20230829130227",
25
- "@pandacss/logger": "0.0.0-dev-20230829130227",
26
- "@pandacss/shared": "0.0.0-dev-20230829130227",
27
- "@pandacss/token-dictionary": "0.0.0-dev-20230829130227",
28
- "@pandacss/types": "0.0.0-dev-20230829130227"
23
+ "@pandacss/core": "0.0.0-dev-20230830203814",
24
+ "@pandacss/is-valid-prop": "0.0.0-dev-20230830203814",
25
+ "@pandacss/logger": "0.0.0-dev-20230830203814",
26
+ "@pandacss/shared": "0.0.0-dev-20230830203814",
27
+ "@pandacss/token-dictionary": "0.0.0-dev-20230830203814",
28
+ "@pandacss/types": "0.0.0-dev-20230830203814"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/pluralize": "0.0.30",
32
32
  "hookable": "5.5.3",
33
- "@pandacss/fixture": "0.0.0-dev-20230829130227"
33
+ "@pandacss/fixture": "0.0.0-dev-20230830203814"
34
34
  },
35
35
  "scripts": {
36
36
  "prebuild": "tsx scripts/prebuild.ts",