@thecb/components 9.3.4-beta.3 → 9.3.4-beta.4
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 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -6
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/radio-section/InnerRadioSection.theme.js +2 -2
- package/src/components/molecules/radio-section/RadioSection.js +1 -2
- package/src/components/molecules/radio-section/RadioSection.stories.js +0 -1
- package/src/components/molecules/radio-section/RadioSection.theme.js +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -48764,7 +48764,7 @@ var RadioGroup = function RadioGroup(_ref) {
|
|
|
48764
48764
|
var headingBackgroundColor$1 = "".concat(WHITE);
|
|
48765
48765
|
var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
48766
48766
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
48767
|
-
var borderColor$6 = "".concat(
|
|
48767
|
+
var borderColor$6 = "".concat(MANATEE_GREY);
|
|
48768
48768
|
var focusStyles = "outline: none;";
|
|
48769
48769
|
var fallbackValues$Q = {
|
|
48770
48770
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
@@ -48777,7 +48777,7 @@ var fallbackValues$Q = {
|
|
|
48777
48777
|
var headingBackgroundColor$2 = "".concat(WHITE);
|
|
48778
48778
|
var headingDisabledColor$1 = "".concat(ATHENS_GREY);
|
|
48779
48779
|
var bodyBackgroundColor$2 = "#eeeeee";
|
|
48780
|
-
var borderColor$7 = "".concat(
|
|
48780
|
+
var borderColor$7 = "".concat(GREY_CHATEAU);
|
|
48781
48781
|
var focusStyles$1 = "outline: none;";
|
|
48782
48782
|
var fallbackValues$R = {
|
|
48783
48783
|
headingBackgroundColor: headingBackgroundColor$2,
|
|
@@ -48945,7 +48945,7 @@ var InnerRadioSection = function InnerRadioSection(_ref) {
|
|
|
48945
48945
|
};
|
|
48946
48946
|
var InnerRadioSection$1 = themeComponent(InnerRadioSection, "InnerRadioSection", fallbackValues$R);
|
|
48947
48947
|
|
|
48948
|
-
var _excluded$z = ["themeValues", "isMobile", "supportsTouch", "sections", "openSection", "toggleOpenSection", "staggeredAnimation", "initiallyOpen", "openHeight", "containerStyles", "ariaDescribedBy", "isSectionRequired", "groupedSections"
|
|
48948
|
+
var _excluded$z = ["themeValues", "isMobile", "supportsTouch", "sections", "openSection", "toggleOpenSection", "staggeredAnimation", "initiallyOpen", "openHeight", "containerStyles", "ariaDescribedBy", "isSectionRequired", "groupedSections"];
|
|
48949
48949
|
/**
|
|
48950
48950
|
- The RadioSection component takes either a flat array (via the 'sections'
|
|
48951
48951
|
prop) of section objects or a multidimensional array (via the 'groupedSections' prop) of section objects. Note that if using a multidimensional array, the nesting cannot exceed 2 levels deep.
|
|
@@ -48992,8 +48992,6 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48992
48992
|
_ref$isSectionRequire = _ref.isSectionRequired,
|
|
48993
48993
|
isSectionRequired = _ref$isSectionRequire === void 0 ? false : _ref$isSectionRequire,
|
|
48994
48994
|
groupedSections = _ref.groupedSections,
|
|
48995
|
-
_ref$bottomBorderSize = _ref.bottomBorderSize,
|
|
48996
|
-
bottomBorderSize = _ref$bottomBorderSize === void 0 ? "2px" : _ref$bottomBorderSize,
|
|
48997
48995
|
rest = _objectWithoutProperties(_ref, _excluded$z);
|
|
48998
48996
|
var _useState = React.useState(null),
|
|
48999
48997
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -49071,7 +49069,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49071
49069
|
openSection: openSection,
|
|
49072
49070
|
toggleOpenSection: toggleOpenSection
|
|
49073
49071
|
}), sectionGroup.indexOf(section) === sectionGroup.length - 1 && groupedSections.indexOf(sectionGroup) !== groupedSections.length - 1 && /*#__PURE__*/React__default.createElement(SolidDivider$1, {
|
|
49074
|
-
borderSize:
|
|
49072
|
+
borderSize: "2px",
|
|
49075
49073
|
color: themeValues.borderColor
|
|
49076
49074
|
}));
|
|
49077
49075
|
});
|