@pandacss/preset-panda 1.0.1 → 1.2.0

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.d.mts CHANGED
@@ -1005,6 +1005,9 @@ declare const preset: {
1005
1005
  4: {
1006
1006
  value: string;
1007
1007
  };
1008
+ 4.5: {
1009
+ value: string;
1010
+ };
1008
1011
  5: {
1009
1012
  value: string;
1010
1013
  };
@@ -1160,6 +1163,9 @@ declare const preset: {
1160
1163
  4: {
1161
1164
  value: string;
1162
1165
  };
1166
+ 4.5: {
1167
+ value: string;
1168
+ };
1163
1169
  5: {
1164
1170
  value: string;
1165
1171
  };
package/dist/index.d.ts CHANGED
@@ -1005,6 +1005,9 @@ declare const preset: {
1005
1005
  4: {
1006
1006
  value: string;
1007
1007
  };
1008
+ 4.5: {
1009
+ value: string;
1010
+ };
1008
1011
  5: {
1009
1012
  value: string;
1010
1013
  };
@@ -1160,6 +1163,9 @@ declare const preset: {
1160
1163
  4: {
1161
1164
  value: string;
1162
1165
  };
1166
+ 4.5: {
1167
+ value: string;
1168
+ };
1163
1169
  5: {
1164
1170
  value: string;
1165
1171
  };
package/dist/index.js CHANGED
@@ -420,6 +420,7 @@ var spacing = {
420
420
  3: { value: "0.75rem" },
421
421
  3.5: { value: "0.875rem" },
422
422
  4: { value: "1rem" },
423
+ 4.5: { value: "1.125rem" },
423
424
  5: { value: "1.25rem" },
424
425
  6: { value: "1.5rem" },
425
426
  7: { value: "1.75rem" },
package/dist/index.mjs CHANGED
@@ -393,6 +393,7 @@ var spacing = {
393
393
  3: { value: "0.75rem" },
394
394
  3.5: { value: "0.875rem" },
395
395
  4: { value: "1rem" },
396
+ 4.5: { value: "1.125rem" },
396
397
  5: { value: "1.25rem" },
397
398
  6: { value: "1.5rem" },
398
399
  7: { value: "1.75rem" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/preset-panda",
3
- "version": "1.0.1",
3
+ "version": "1.2.0",
4
4
  "description": "The preset for PandaCSS that contains the default theme",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -32,7 +32,7 @@
32
32
  "dist"
33
33
  ],
34
34
  "dependencies": {
35
- "@pandacss/types": "1.0.1"
35
+ "@pandacss/types": "1.2.0"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "tsup src/index.ts --format=esm,cjs --dts",