@pandacss/generator 0.0.0-dev-20230701113453 → 0.0.0-dev-20230702075205

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
@@ -3124,9 +3124,9 @@ var generateFlattenedCss = (ctx) => (options) => {
3124
3124
  const { theme: { keyframes } = {}, preflight, minify, staticCss } = ctx.config;
3125
3125
  const unresolved = [
3126
3126
  "@layer reset, base, tokens, recipes, utilities;",
3127
+ preflight && "@import './reset.css';",
3127
3128
  "@import './global.css';",
3128
3129
  staticCss && "@import './static.css';",
3129
- preflight && "@import './reset.css';",
3130
3130
  !ctx.tokens.isEmpty && "@import './tokens/index.css';",
3131
3131
  keyframes && "@import './tokens/keyframes.css';"
3132
3132
  ].filter(Boolean).join("\n\n");
package/dist/index.mjs CHANGED
@@ -3093,9 +3093,9 @@ var generateFlattenedCss = (ctx) => (options) => {
3093
3093
  const { theme: { keyframes } = {}, preflight, minify, staticCss } = ctx.config;
3094
3094
  const unresolved = [
3095
3095
  "@layer reset, base, tokens, recipes, utilities;",
3096
+ preflight && "@import './reset.css';",
3096
3097
  "@import './global.css';",
3097
3098
  staticCss && "@import './static.css';",
3098
- preflight && "@import './reset.css';",
3099
3099
  !ctx.tokens.isEmpty && "@import './tokens/index.css';",
3100
3100
  keyframes && "@import './tokens/keyframes.css';"
3101
3101
  ].filter(Boolean).join("\n\n");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/generator",
3
- "version": "0.0.0-dev-20230701113453",
3
+ "version": "0.0.0-dev-20230702075205",
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.24",
22
22
  "ts-pattern": "4.3.0",
23
- "@pandacss/core": "0.0.0-dev-20230701113453",
24
- "@pandacss/is-valid-prop": "0.0.0-dev-20230701113453",
25
- "@pandacss/logger": "0.0.0-dev-20230701113453",
26
- "@pandacss/shared": "0.0.0-dev-20230701113453",
27
- "@pandacss/token-dictionary": "0.0.0-dev-20230701113453",
28
- "@pandacss/types": "0.0.0-dev-20230701113453"
23
+ "@pandacss/core": "0.0.0-dev-20230702075205",
24
+ "@pandacss/is-valid-prop": "0.0.0-dev-20230702075205",
25
+ "@pandacss/logger": "0.0.0-dev-20230702075205",
26
+ "@pandacss/shared": "0.0.0-dev-20230702075205",
27
+ "@pandacss/token-dictionary": "0.0.0-dev-20230702075205",
28
+ "@pandacss/types": "0.0.0-dev-20230702075205"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/pluralize": "0.0.29",
32
32
  "hookable": "5.5.3",
33
- "@pandacss/fixture": "0.0.0-dev-20230701113453"
33
+ "@pandacss/fixture": "0.0.0-dev-20230702075205"
34
34
  },
35
35
  "scripts": {
36
36
  "prebuild": "tsx scripts/prebuild.ts",