@pandacss/generator 0.0.0-dev-20230609134615 → 0.0.0-dev-20230611160609

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
@@ -2577,7 +2577,7 @@ var getBaseEngine = (conf) => (0, import_lil_fp.pipe)(
2577
2577
  }),
2578
2578
  import_lil_fp.Obj.bind("recipes", ({ conditions, utility, config: { hash, theme } }) => {
2579
2579
  const context = { root: import_postcss3.default.root(), conditions, utility, hash, helpers };
2580
- const recipes = new import_core4.Recipes(theme?.recipes, context);
2580
+ const recipes = new import_core4.Recipes(theme?.recipes ?? {}, context);
2581
2581
  recipes.save();
2582
2582
  return recipes;
2583
2583
  }),
package/dist/index.mjs CHANGED
@@ -2546,7 +2546,7 @@ var getBaseEngine = (conf) => pipe2(
2546
2546
  }),
2547
2547
  Obj.bind("recipes", ({ conditions, utility, config: { hash, theme } }) => {
2548
2548
  const context = { root: postcss3.root(), conditions, utility, hash, helpers };
2549
- const recipes = new Recipes(theme?.recipes, context);
2549
+ const recipes = new Recipes(theme?.recipes ?? {}, context);
2550
2550
  recipes.save();
2551
2551
  return recipes;
2552
2552
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/generator",
3
- "version": "0.0.0-dev-20230609134615",
3
+ "version": "0.0.0-dev-20230611160609",
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.24",
22
22
  "ts-pattern": "4.3.0",
23
- "@pandacss/core": "0.0.0-dev-20230609134615",
24
- "@pandacss/logger": "0.0.0-dev-20230609134615",
25
- "@pandacss/is-valid-prop": "0.0.0-dev-20230609134615",
26
- "@pandacss/shared": "0.0.0-dev-20230609134615",
27
- "@pandacss/types": "0.0.0-dev-20230609134615",
28
- "@pandacss/token-dictionary": "0.0.0-dev-20230609134615"
23
+ "@pandacss/core": "0.0.0-dev-20230611160609",
24
+ "@pandacss/logger": "0.0.0-dev-20230611160609",
25
+ "@pandacss/is-valid-prop": "0.0.0-dev-20230611160609",
26
+ "@pandacss/shared": "0.0.0-dev-20230611160609",
27
+ "@pandacss/types": "0.0.0-dev-20230611160609",
28
+ "@pandacss/token-dictionary": "0.0.0-dev-20230611160609"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/pluralize": "0.0.29",
32
- "@pandacss/fixture": "0.0.0-dev-20230609134615"
32
+ "@pandacss/fixture": "0.0.0-dev-20230611160609"
33
33
  },
34
34
  "scripts": {
35
35
  "prebuild": "tsx scripts/prebuild.ts",