@thecb/components 4.2.7-beta.5 → 4.2.7-beta.6

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.cjs.js CHANGED
@@ -34771,7 +34771,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
34771
34771
  initial: initiallyOpen ? "open" : "closed",
34772
34772
  exit: "closed",
34773
34773
  variants: wrapper,
34774
- extraStyles: "transform-origin: 100% 0;"
34774
+ extraStyles: "transform-origin: 100% 0; overflow-y: hidden;"
34775
34775
  }, children))));
34776
34776
  };
34777
34777
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "4.2.7-beta.5",
3
+ "version": "4.2.7-beta.6",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -113,7 +113,7 @@ const CollapsibleSection = ({
113
113
  initial={initiallyOpen ? "open" : "closed"}
114
114
  exit="closed"
115
115
  variants={wrapper}
116
- extraStyles={`transform-origin: 100% 0;`}
116
+ extraStyles={`transform-origin: 100% 0; overflow-y: hidden;`}
117
117
  >
118
118
  {children}
119
119
  </Motion>