@pandacss/preset-panda 1.3.0 → 1.4.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
@@ -1011,6 +1011,9 @@ declare const preset: {
1011
1011
  5: {
1012
1012
  value: string;
1013
1013
  };
1014
+ 5.5: {
1015
+ value: string;
1016
+ };
1014
1017
  6: {
1015
1018
  value: string;
1016
1019
  };
@@ -1169,6 +1172,9 @@ declare const preset: {
1169
1172
  5: {
1170
1173
  value: string;
1171
1174
  };
1175
+ 5.5: {
1176
+ value: string;
1177
+ };
1172
1178
  6: {
1173
1179
  value: string;
1174
1180
  };
package/dist/index.d.ts CHANGED
@@ -1011,6 +1011,9 @@ declare const preset: {
1011
1011
  5: {
1012
1012
  value: string;
1013
1013
  };
1014
+ 5.5: {
1015
+ value: string;
1016
+ };
1014
1017
  6: {
1015
1018
  value: string;
1016
1019
  };
@@ -1169,6 +1172,9 @@ declare const preset: {
1169
1172
  5: {
1170
1173
  value: string;
1171
1174
  };
1175
+ 5.5: {
1176
+ value: string;
1177
+ };
1172
1178
  6: {
1173
1179
  value: string;
1174
1180
  };
package/dist/index.js CHANGED
@@ -422,6 +422,7 @@ var spacing = {
422
422
  4: { value: "1rem" },
423
423
  4.5: { value: "1.125rem" },
424
424
  5: { value: "1.25rem" },
425
+ 5.5: { value: "1.375rem" },
425
426
  6: { value: "1.5rem" },
426
427
  7: { value: "1.75rem" },
427
428
  8: { value: "2rem" },
package/dist/index.mjs CHANGED
@@ -395,6 +395,7 @@ var spacing = {
395
395
  4: { value: "1rem" },
396
396
  4.5: { value: "1.125rem" },
397
397
  5: { value: "1.25rem" },
398
+ 5.5: { value: "1.375rem" },
398
399
  6: { value: "1.5rem" },
399
400
  7: { value: "1.75rem" },
400
401
  8: { value: "2rem" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/preset-panda",
3
- "version": "1.3.0",
3
+ "version": "1.4.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.3.0"
35
+ "@pandacss/types": "1.4.0"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "tsup src/index.ts --format=esm,cjs --dts",