@pandacss/generator 0.0.0-dev-20230619151255 → 0.0.0-dev-20230620124536
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 +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -2596,7 +2596,8 @@ var getBaseEngine = (conf) => {
|
|
|
2596
2596
|
prefix: prefix.className,
|
|
2597
2597
|
tokens,
|
|
2598
2598
|
config: config.utilities,
|
|
2599
|
-
separator: config.separator
|
|
2599
|
+
separator: config.separator,
|
|
2600
|
+
shorthands: config.shorthands
|
|
2600
2601
|
});
|
|
2601
2602
|
const conditions = new import_core4.Conditions({
|
|
2602
2603
|
conditions: config.conditions,
|
|
@@ -2757,6 +2758,7 @@ var defaults = (conf) => ({
|
|
|
2757
2758
|
cssVarRoot: ":where(:root, :host)",
|
|
2758
2759
|
jsxFactory: "styled",
|
|
2759
2760
|
outExtension: "mjs",
|
|
2761
|
+
shorthands: true,
|
|
2760
2762
|
...conf.config
|
|
2761
2763
|
}
|
|
2762
2764
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -2571,7 +2571,8 @@ var getBaseEngine = (conf) => {
|
|
|
2571
2571
|
prefix: prefix.className,
|
|
2572
2572
|
tokens,
|
|
2573
2573
|
config: config.utilities,
|
|
2574
|
-
separator: config.separator
|
|
2574
|
+
separator: config.separator,
|
|
2575
|
+
shorthands: config.shorthands
|
|
2575
2576
|
});
|
|
2576
2577
|
const conditions = new Conditions({
|
|
2577
2578
|
conditions: config.conditions,
|
|
@@ -2732,6 +2733,7 @@ var defaults = (conf) => ({
|
|
|
2732
2733
|
cssVarRoot: ":where(:root, :host)",
|
|
2733
2734
|
jsxFactory: "styled",
|
|
2734
2735
|
outExtension: "mjs",
|
|
2736
|
+
shorthands: true,
|
|
2735
2737
|
...conf.config
|
|
2736
2738
|
}
|
|
2737
2739
|
});
|
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-20230620124536",
|
|
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-
|
|
24
|
-
"@pandacss/is-valid-prop": "0.0.0-dev-
|
|
25
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
26
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
27
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
28
|
-
"@pandacss/types": "0.0.0-dev-
|
|
23
|
+
"@pandacss/core": "0.0.0-dev-20230620124536",
|
|
24
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20230620124536",
|
|
25
|
+
"@pandacss/logger": "0.0.0-dev-20230620124536",
|
|
26
|
+
"@pandacss/shared": "0.0.0-dev-20230620124536",
|
|
27
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20230620124536",
|
|
28
|
+
"@pandacss/types": "0.0.0-dev-20230620124536"
|
|
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-
|
|
33
|
+
"@pandacss/fixture": "0.0.0-dev-20230620124536"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"prebuild": "tsx scripts/prebuild.ts",
|