@thecb/components 8.4.0-beta.15 → 8.4.0-beta.17
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 +7 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -7
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/ArrowRightIcon.js +2 -2
- package/src/components/atoms/icons/PlusCircleIcon.js +2 -2
- package/src/components/molecules/link-card/LinkCard.js +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -17678,15 +17678,15 @@ var ArrowRightCircleIconSmall = function ArrowRightCircleIconSmall(_ref) {
|
|
|
17678
17678
|
var ArrowRightIcon = function ArrowRightIcon(_ref) {
|
|
17679
17679
|
var _ref$color = _ref.color,
|
|
17680
17680
|
color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color,
|
|
17681
|
-
_ref$
|
|
17682
|
-
|
|
17681
|
+
_ref$labeledBy = _ref.labeledBy,
|
|
17682
|
+
labeledBy = _ref$labeledBy === void 0 ? "" : _ref$labeledBy;
|
|
17683
17683
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17684
17684
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17685
17685
|
width: "20",
|
|
17686
17686
|
height: "20",
|
|
17687
17687
|
viewBox: "0 0 20 20",
|
|
17688
17688
|
fill: "none",
|
|
17689
|
-
"aria-
|
|
17689
|
+
"aria-labeledBy": labeledBy
|
|
17690
17690
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17691
17691
|
fillRule: "evenodd",
|
|
17692
17692
|
clipRule: "evenodd",
|
|
@@ -18109,15 +18109,15 @@ var ChargebackReversalIconMedium = function ChargebackReversalIconMedium(_ref) {
|
|
|
18109
18109
|
var PlusCircleIcon = function PlusCircleIcon(_ref) {
|
|
18110
18110
|
var _ref$color = _ref.color,
|
|
18111
18111
|
color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color,
|
|
18112
|
-
_ref$
|
|
18113
|
-
|
|
18112
|
+
_ref$labeledBy = _ref.labeledBy,
|
|
18113
|
+
labeledBy = _ref$labeledBy === void 0 ? "" : _ref$labeledBy;
|
|
18114
18114
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
18115
18115
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18116
18116
|
width: "20",
|
|
18117
18117
|
height: "20",
|
|
18118
18118
|
viewBox: "0 0 20 20",
|
|
18119
18119
|
fill: "none",
|
|
18120
|
-
"aria-
|
|
18120
|
+
"aria-labelledby": labeledBy
|
|
18121
18121
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
18122
18122
|
fillRule: "evenodd",
|
|
18123
18123
|
clipRule: "evenodd",
|
|
@@ -42924,7 +42924,7 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
42924
42924
|
childGap: "6px",
|
|
42925
42925
|
justify: "space-between",
|
|
42926
42926
|
extraStyles: "width: 100%; align-items: flex-end;"
|
|
42927
|
-
}, showLeft && leftContent, showRight && rightContent))));
|
|
42927
|
+
}, showLeft && leftContent ? leftContent : /*#__PURE__*/React__default.createElement(React__default.Fragment, null), showRight && rightContent))));
|
|
42928
42928
|
};
|
|
42929
42929
|
|
|
42930
42930
|
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$I, "default");
|