@chakra-ui/panda-preset 3.32.0 → 3.33.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.
@@ -75,8 +75,6 @@ const codeBlockSlotRecipe = def.defineSlotRecipe({
75
75
  content: {
76
76
  position: "relative",
77
77
  colorScheme: "dark",
78
- overflowX: "auto",
79
- overflowY: "hidden",
80
78
  borderBottomRadius: "var(--code-block-radius)",
81
79
  maxHeight: "var(--code-block-max-height)",
82
80
  "& ::selection": {
@@ -108,7 +106,9 @@ const codeBlockSlotRecipe = def.defineSlotRecipe({
108
106
  fontFamily: "mono",
109
107
  lineHeight: "tall",
110
108
  whiteSpace: "pre",
111
- counterReset: "line 0"
109
+ counterReset: "line 0",
110
+ overflowX: "auto",
111
+ overflowY: "hidden"
112
112
  },
113
113
  codeText: {
114
114
  px: "var(--code-block-padding)",
@@ -73,8 +73,6 @@ const codeBlockSlotRecipe = defineSlotRecipe({
73
73
  content: {
74
74
  position: "relative",
75
75
  colorScheme: "dark",
76
- overflowX: "auto",
77
- overflowY: "hidden",
78
76
  borderBottomRadius: "var(--code-block-radius)",
79
77
  maxHeight: "var(--code-block-max-height)",
80
78
  "& ::selection": {
@@ -106,7 +104,9 @@ const codeBlockSlotRecipe = defineSlotRecipe({
106
104
  fontFamily: "mono",
107
105
  lineHeight: "tall",
108
106
  whiteSpace: "pre",
109
- counterReset: "line 0"
107
+ counterReset: "line 0",
108
+ overflowX: "auto",
109
+ overflowY: "hidden"
110
110
  },
111
111
  codeText: {
112
112
  px: "var(--code-block-padding)",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chakra-ui/panda-preset",
3
- "version": "3.32.0",
3
+ "version": "3.33.0",
4
4
  "description": "Panda preset for Chakra UI",
5
5
  "type": "module",
6
6
  "main": "dist/cjs/index.cjs",
@@ -49,7 +49,7 @@
49
49
  },
50
50
  "devDependencies": {
51
51
  "globby": "14.1.0",
52
- "@chakra-ui/cli": "3.32.0"
52
+ "@chakra-ui/cli": "3.33.0"
53
53
  },
54
54
  "scripts": {
55
55
  "theme:eject": "chakra eject --outdir=src",