@thecb/components 9.3.1-beta.7 → 9.3.1-beta.8
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 +4 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/radio-section/RadioSection.js +8 -2
- package/src/components/molecules/radio-section/RadioSection.stories.js +5 -3
package/dist/index.cjs.js
CHANGED
|
@@ -48691,9 +48691,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48691
48691
|
ariaDescribedBy = _ref.ariaDescribedBy,
|
|
48692
48692
|
_ref$isSectionRequire = _ref.isSectionRequired,
|
|
48693
48693
|
isSectionRequired = _ref$isSectionRequire === void 0 ? false : _ref$isSectionRequire;
|
|
48694
|
-
console.log("sections", sections);
|
|
48695
48694
|
var areSectionsGrouped = typeof (sections === null || sections === void 0 ? void 0 : (_sections$ = sections[0]) === null || _sections$ === void 0 ? void 0 : _sections$[0]) !== "undefined";
|
|
48696
|
-
console.log("areSectionsGrouped", areSectionsGrouped);
|
|
48697
48695
|
|
|
48698
48696
|
var handleKeyDown = function handleKeyDown(id, e) {
|
|
48699
48697
|
if ((e === null || e === void 0 ? void 0 : e.keyCode) === 13 || (e === null || e === void 0 ? void 0 : e.keyCode) === 32) {
|
|
@@ -48943,7 +48941,10 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48943
48941
|
exit: "closed",
|
|
48944
48942
|
variants: wrapper,
|
|
48945
48943
|
extraStyles: "transform-origin: 100% 0;"
|
|
48946
|
-
}, section.content))))
|
|
48944
|
+
}, section.content))), sectionGroup.indexOf(section) === sectionGroup.length - 1 && /*#__PURE__*/React__default.createElement(SolidDivider$1, {
|
|
48945
|
+
borderSize: "2px",
|
|
48946
|
+
borderColor: themeValues.borderColor
|
|
48947
|
+
}));
|
|
48947
48948
|
});
|
|
48948
48949
|
})));
|
|
48949
48950
|
};
|