@thecb/components 5.6.1 → 5.6.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 +9 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +9 -7
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/index.js +1 -1
- package/src/components/atoms/layouts/Sidebar.js +1 -1
- package/src/components/atoms/layouts/Sidebar.styled.js +2 -2
- package/src/components/atoms/{card → welcome-card}/Card.js +4 -1
- package/src/components/atoms/{card → welcome-card}/Card.theme.js +0 -0
- package/src/components/atoms/{card → welcome-card}/index.js +0 -0
- package/src/components/molecules/payment-form-ach/PaymentFormACH.js +2 -2
- package/src/components/molecules/workflow-tile/WorkflowTile.js +1 -0
package/dist/index.esm.js
CHANGED
|
@@ -6567,10 +6567,10 @@ function (_ref2) {
|
|
|
6567
6567
|
var minHeight = _ref6.minHeight;
|
|
6568
6568
|
return minHeight ? "margin-top: 0; margin-bottom: 0;" : "";
|
|
6569
6569
|
}, function (_ref7) {
|
|
6570
|
-
var sidebarOnRight = _ref7
|
|
6570
|
+
var $sidebarOnRight = _ref7.$sidebarOnRight,
|
|
6571
6571
|
contentMinWidth = _ref7.contentMinWidth,
|
|
6572
6572
|
childGap = _ref7.childGap;
|
|
6573
|
-
return sidebarOnRight ? "> :first-child {\n flex-basis: 0;\n flex-grow: 999;\n min-width: calc(".concat(contentMinWidth, " - ").concat(childGap, ");\n }\n ") : "> :last-child {\n flex-basis: 0;\n flex-grow: 999;\n min-width: calc(".concat(contentMinWidth, " - ").concat(childGap, ");\n }");
|
|
6573
|
+
return $sidebarOnRight ? "> :first-child {\n flex-basis: 0;\n flex-grow: 999;\n min-width: calc(".concat(contentMinWidth, " - ").concat(childGap, ");\n }\n ") : "> :last-child {\n flex-basis: 0;\n flex-grow: 999;\n min-width: calc(".concat(contentMinWidth, " - ").concat(childGap, ");\n }");
|
|
6574
6574
|
}, function (_ref8) {
|
|
6575
6575
|
var fullHeight = _ref8.fullHeight;
|
|
6576
6576
|
return fullHeight ? "min-height: 100%;" : "";
|
|
@@ -6610,7 +6610,7 @@ var Sidebar = function Sidebar(_ref) {
|
|
|
6610
6610
|
}, rest), /*#__PURE__*/React.createElement(SidebarInnerWrapper, {
|
|
6611
6611
|
childGap: childGap,
|
|
6612
6612
|
width: width,
|
|
6613
|
-
sidebarOnRight: sidebarOnRight,
|
|
6613
|
+
$sidebarOnRight: sidebarOnRight,
|
|
6614
6614
|
contentMinWidth: contentMinWidth,
|
|
6615
6615
|
fullHeight: fullHeight,
|
|
6616
6616
|
minHeight: minHeight
|
|
@@ -18872,7 +18872,8 @@ var Card = function Card(_ref2) {
|
|
|
18872
18872
|
}, heading), /*#__PURE__*/React.createElement(Text$1, {
|
|
18873
18873
|
variant: "pS"
|
|
18874
18874
|
}, text)))), /*#__PURE__*/React.createElement(Box, {
|
|
18875
|
-
padding: "0.5rem 1rem 1rem"
|
|
18875
|
+
padding: "0.5rem 1rem 1rem",
|
|
18876
|
+
extraStyles: "display: flex; justify-content: center;"
|
|
18876
18877
|
}, /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
18877
18878
|
variant: "smallPrimary",
|
|
18878
18879
|
text: buttonText,
|
|
@@ -40147,7 +40148,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
40147
40148
|
role: "form",
|
|
40148
40149
|
"aria-label": "ACH Payment"
|
|
40149
40150
|
}, /*#__PURE__*/React.createElement(FormInputColumn, null, /*#__PURE__*/React.createElement(FormInput$1, {
|
|
40150
|
-
labelTextWhenNoError: "Name on
|
|
40151
|
+
labelTextWhenNoError: "Name on checking account",
|
|
40151
40152
|
errorMessages: nameErrors,
|
|
40152
40153
|
field: fields.name,
|
|
40153
40154
|
fieldActions: actions.fields.name,
|
|
@@ -40239,7 +40240,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
40239
40240
|
hidden: hideDefaultPayment
|
|
40240
40241
|
}), showWalletCheckbox && /*#__PURE__*/React.createElement(Checkbox$1, {
|
|
40241
40242
|
name: "bank checkbox",
|
|
40242
|
-
title: "Save
|
|
40243
|
+
title: "Save checking account to wallet",
|
|
40243
40244
|
checked: walletCheckboxMarked,
|
|
40244
40245
|
onChange: saveToWallet
|
|
40245
40246
|
})));
|
|
@@ -41419,7 +41420,8 @@ var WorkflowTile = function WorkflowTile(_ref) {
|
|
|
41419
41420
|
text: workflowActionName,
|
|
41420
41421
|
minWidth: "100%",
|
|
41421
41422
|
url: "/service/".concat(slug),
|
|
41422
|
-
extraStyles: "width: 100%;"
|
|
41423
|
+
extraStyles: "width: 100%;",
|
|
41424
|
+
linkExtraStyles: "justify-content: center;"
|
|
41423
41425
|
}))));
|
|
41424
41426
|
};
|
|
41425
41427
|
|