@thecb/components 9.3.1-beta.2 → 9.3.1-beta.3

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
@@ -48766,14 +48766,17 @@ var RadioSection = function RadioSection(_ref) {
48766
48766
  var prependedItem = "";
48767
48767
 
48768
48768
  if (sectionGroups.indexOf(sectionGroup) !== 0) {
48769
- prependedItem = /*#__PURE__*/React__default.createElement(SolidDivider$1, null);
48769
+ prependedItem = /*#__PURE__*/React__default.createElement(SolidDivider$1, {
48770
+ borderSize: "2px",
48771
+ color: themeValues.borderColor
48772
+ });
48770
48773
  }
48771
48774
 
48772
48775
  return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, prependedItem, sectionGroup.filter(function (unfilteredSection) {
48773
48776
  return !unfilteredSection.hidden;
48774
48777
  }).map(function (section) {
48775
48778
  return /*#__PURE__*/React__default.createElement(Motion, {
48776
- tabIndex: section.hideRadioButton || section.disabled ? "-1" : "0",
48779
+ tabIndex: section.hidden || section.hideRadioButton || section.disabled ? "-1" : "0",
48777
48780
  onKeyDown: function onKeyDown(e) {
48778
48781
  return !section.disabled && handleKeyDown(section.id, e);
48779
48782
  },