@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.esm.js CHANGED
@@ -48758,14 +48758,17 @@ var RadioSection = function RadioSection(_ref) {
48758
48758
  var prependedItem = "";
48759
48759
 
48760
48760
  if (sectionGroups.indexOf(sectionGroup) !== 0) {
48761
- prependedItem = /*#__PURE__*/React.createElement(SolidDivider$1, null);
48761
+ prependedItem = /*#__PURE__*/React.createElement(SolidDivider$1, {
48762
+ borderSize: "2px",
48763
+ color: themeValues.borderColor
48764
+ });
48762
48765
  }
48763
48766
 
48764
48767
  return /*#__PURE__*/React.createElement(React.Fragment, null, prependedItem, sectionGroup.filter(function (unfilteredSection) {
48765
48768
  return !unfilteredSection.hidden;
48766
48769
  }).map(function (section) {
48767
48770
  return /*#__PURE__*/React.createElement(Motion, {
48768
- tabIndex: section.hideRadioButton || section.disabled ? "-1" : "0",
48771
+ tabIndex: section.hidden || section.hideRadioButton || section.disabled ? "-1" : "0",
48769
48772
  onKeyDown: function onKeyDown(e) {
48770
48773
  return !section.disabled && handleKeyDown(section.id, e);
48771
48774
  },