@pandacss/generator 0.0.0-dev-20230613162747 → 0.0.0-dev-20230614102232
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 +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -2457,10 +2457,10 @@ var generateFlattenedCss = (ctx) => (options) => {
|
|
|
2457
2457
|
const sheet = ctx.createSheet({
|
|
2458
2458
|
content: resolve ? [
|
|
2459
2459
|
generateGlobalCss(ctx),
|
|
2460
|
-
generateStaticCss(ctx),
|
|
2461
|
-
generateResetCss(),
|
|
2462
|
-
generateTokenCss(ctx),
|
|
2463
|
-
generateKeyframeCss(ctx)
|
|
2460
|
+
staticCss && generateStaticCss(ctx),
|
|
2461
|
+
preflight && generateResetCss(),
|
|
2462
|
+
!ctx.tokens.isEmpty && generateTokenCss(ctx),
|
|
2463
|
+
keyframes && generateKeyframeCss(ctx)
|
|
2464
2464
|
].filter(Boolean).join("\n\n") : unresolved
|
|
2465
2465
|
});
|
|
2466
2466
|
sheet.append(...files);
|
package/dist/index.mjs
CHANGED
|
@@ -2426,10 +2426,10 @@ var generateFlattenedCss = (ctx) => (options) => {
|
|
|
2426
2426
|
const sheet = ctx.createSheet({
|
|
2427
2427
|
content: resolve ? [
|
|
2428
2428
|
generateGlobalCss(ctx),
|
|
2429
|
-
generateStaticCss(ctx),
|
|
2430
|
-
generateResetCss(),
|
|
2431
|
-
generateTokenCss(ctx),
|
|
2432
|
-
generateKeyframeCss(ctx)
|
|
2429
|
+
staticCss && generateStaticCss(ctx),
|
|
2430
|
+
preflight && generateResetCss(),
|
|
2431
|
+
!ctx.tokens.isEmpty && generateTokenCss(ctx),
|
|
2432
|
+
keyframes && generateKeyframeCss(ctx)
|
|
2433
2433
|
].filter(Boolean).join("\n\n") : unresolved
|
|
2434
2434
|
});
|
|
2435
2435
|
sheet.append(...files);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/generator",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20230614102232",
|
|
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-
|
|
24
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
25
|
-
"@pandacss/is-valid-prop": "0.0.0-dev-
|
|
26
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
27
|
-
"@pandacss/types": "0.0.0-dev-
|
|
28
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
23
|
+
"@pandacss/core": "0.0.0-dev-20230614102232",
|
|
24
|
+
"@pandacss/logger": "0.0.0-dev-20230614102232",
|
|
25
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20230614102232",
|
|
26
|
+
"@pandacss/shared": "0.0.0-dev-20230614102232",
|
|
27
|
+
"@pandacss/types": "0.0.0-dev-20230614102232",
|
|
28
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20230614102232"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/pluralize": "0.0.29",
|
|
32
|
-
"@pandacss/fixture": "0.0.0-dev-
|
|
32
|
+
"@pandacss/fixture": "0.0.0-dev-20230614102232"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"prebuild": "tsx scripts/prebuild.ts",
|