@pandacss/preset-panda 0.41.0 → 0.43.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
@@ -125,6 +125,9 @@ declare const preset: {
125
125
  '3xl': {
126
126
  value: string;
127
127
  };
128
+ '4xl': {
129
+ value: string;
130
+ };
128
131
  full: {
129
132
  value: string;
130
133
  };
package/dist/index.d.ts CHANGED
@@ -125,6 +125,9 @@ declare const preset: {
125
125
  '3xl': {
126
126
  value: string;
127
127
  };
128
+ '4xl': {
129
+ value: string;
130
+ };
128
131
  full: {
129
132
  value: string;
130
133
  };
package/dist/index.js CHANGED
@@ -658,6 +658,7 @@ var tokens = defineTokens({
658
658
  xl: { value: "0.75rem" },
659
659
  "2xl": { value: "1rem" },
660
660
  "3xl": { value: "1.5rem" },
661
+ "4xl": { value: "2rem" },
661
662
  full: { value: "9999px" }
662
663
  },
663
664
  fontWeights,
package/dist/index.mjs CHANGED
@@ -631,6 +631,7 @@ var tokens = defineTokens({
631
631
  xl: { value: "0.75rem" },
632
632
  "2xl": { value: "1rem" },
633
633
  "3xl": { value: "1.5rem" },
634
+ "4xl": { value: "2rem" },
634
635
  full: { value: "9999px" }
635
636
  },
636
637
  fontWeights,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/preset-panda",
3
- "version": "0.41.0",
3
+ "version": "0.43.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": "0.41.0"
35
+ "@pandacss/types": "0.43.0"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "tsup src/index.ts --format=esm,cjs --dts",