@pandacss/generator 0.0.0-dev-20230503230609 → 0.0.0-dev-20230504212927

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
@@ -1921,11 +1921,12 @@ var import_outdent28 = __toESM(require("outdent"));
1921
1921
  function generateStyleProps(ctx) {
1922
1922
  const props = new Set(import_is_valid_prop.allCssProperties.concat(ctx.utility.keys()));
1923
1923
  return import_outdent28.default`
1924
+ import { ConditionalValue } from './conditions'
1924
1925
  import { PropertyValue } from './prop-type'
1925
1926
  import { Token } from './tokens'
1926
1927
 
1927
1928
  export type CssVarProperties = {
1928
- [key in \`--\${string}\`]?: Token | (string & {}) | (number & {})
1929
+ [key in \`--\${string}\`]?: ConditionalValue<Token | (string & {}) | (number & {})>
1929
1930
  }
1930
1931
 
1931
1932
  export type SystemProperties = {
package/dist/index.mjs CHANGED
@@ -1890,11 +1890,12 @@ import outdent28 from "outdent";
1890
1890
  function generateStyleProps(ctx) {
1891
1891
  const props = new Set(allCssProperties.concat(ctx.utility.keys()));
1892
1892
  return outdent28`
1893
+ import { ConditionalValue } from './conditions'
1893
1894
  import { PropertyValue } from './prop-type'
1894
1895
  import { Token } from './tokens'
1895
1896
 
1896
1897
  export type CssVarProperties = {
1897
- [key in \`--\${string}\`]?: Token | (string & {}) | (number & {})
1898
+ [key in \`--\${string}\`]?: ConditionalValue<Token | (string & {}) | (number & {})>
1898
1899
  }
1899
1900
 
1900
1901
  export type SystemProperties = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/generator",
3
- "version": "0.0.0-dev-20230503230609",
3
+ "version": "0.0.0-dev-20230504212927",
4
4
  "description": "The css generator for css panda",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -20,16 +20,16 @@
20
20
  "pluralize": "8.0.0",
21
21
  "postcss": "8.4.23",
22
22
  "ts-pattern": "4.2.2",
23
- "@pandacss/core": "0.0.0-dev-20230503230609",
24
- "@pandacss/logger": "0.0.0-dev-20230503230609",
25
- "@pandacss/is-valid-prop": "0.0.0-dev-20230503230609",
26
- "@pandacss/shared": "0.0.0-dev-20230503230609",
27
- "@pandacss/types": "0.0.0-dev-20230503230609",
28
- "@pandacss/token-dictionary": "0.0.0-dev-20230503230609"
23
+ "@pandacss/core": "0.0.0-dev-20230504212927",
24
+ "@pandacss/logger": "0.0.0-dev-20230504212927",
25
+ "@pandacss/is-valid-prop": "0.0.0-dev-20230504212927",
26
+ "@pandacss/shared": "0.0.0-dev-20230504212927",
27
+ "@pandacss/types": "0.0.0-dev-20230504212927",
28
+ "@pandacss/token-dictionary": "0.0.0-dev-20230504212927"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/pluralize": "0.0.29",
32
- "@pandacss/fixture": "0.0.0-dev-20230503230609"
32
+ "@pandacss/fixture": "0.0.0-dev-20230504212927"
33
33
  },
34
34
  "scripts": {
35
35
  "prebuild": "tsx scripts/prebuild.ts",