@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.esm.js
CHANGED
|
@@ -48683,9 +48683,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48683
48683
|
ariaDescribedBy = _ref.ariaDescribedBy,
|
|
48684
48684
|
_ref$isSectionRequire = _ref.isSectionRequired,
|
|
48685
48685
|
isSectionRequired = _ref$isSectionRequire === void 0 ? false : _ref$isSectionRequire;
|
|
48686
|
-
console.log("sections", sections);
|
|
48687
48686
|
var areSectionsGrouped = typeof (sections === null || sections === void 0 ? void 0 : (_sections$ = sections[0]) === null || _sections$ === void 0 ? void 0 : _sections$[0]) !== "undefined";
|
|
48688
|
-
console.log("areSectionsGrouped", areSectionsGrouped);
|
|
48689
48687
|
|
|
48690
48688
|
var handleKeyDown = function handleKeyDown(id, e) {
|
|
48691
48689
|
if ((e === null || e === void 0 ? void 0 : e.keyCode) === 13 || (e === null || e === void 0 ? void 0 : e.keyCode) === 32) {
|
|
@@ -48935,7 +48933,10 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48935
48933
|
exit: "closed",
|
|
48936
48934
|
variants: wrapper,
|
|
48937
48935
|
extraStyles: "transform-origin: 100% 0;"
|
|
48938
|
-
}, section.content))))
|
|
48936
|
+
}, section.content))), sectionGroup.indexOf(section) === sectionGroup.length - 1 && /*#__PURE__*/React.createElement(SolidDivider$1, {
|
|
48937
|
+
borderSize: "2px",
|
|
48938
|
+
borderColor: themeValues.borderColor
|
|
48939
|
+
}));
|
|
48939
48940
|
});
|
|
48940
48941
|
})));
|
|
48941
48942
|
};
|