@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.cjs.js
CHANGED
|
@@ -6575,10 +6575,10 @@ function (_ref2) {
|
|
|
6575
6575
|
var minHeight = _ref6.minHeight;
|
|
6576
6576
|
return minHeight ? "margin-top: 0; margin-bottom: 0;" : "";
|
|
6577
6577
|
}, function (_ref7) {
|
|
6578
|
-
var sidebarOnRight = _ref7
|
|
6578
|
+
var $sidebarOnRight = _ref7.$sidebarOnRight,
|
|
6579
6579
|
contentMinWidth = _ref7.contentMinWidth,
|
|
6580
6580
|
childGap = _ref7.childGap;
|
|
6581
|
-
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 }");
|
|
6581
|
+
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 }");
|
|
6582
6582
|
}, function (_ref8) {
|
|
6583
6583
|
var fullHeight = _ref8.fullHeight;
|
|
6584
6584
|
return fullHeight ? "min-height: 100%;" : "";
|
|
@@ -6618,7 +6618,7 @@ var Sidebar = function Sidebar(_ref) {
|
|
|
6618
6618
|
}, rest), /*#__PURE__*/React__default.createElement(SidebarInnerWrapper, {
|
|
6619
6619
|
childGap: childGap,
|
|
6620
6620
|
width: width,
|
|
6621
|
-
sidebarOnRight: sidebarOnRight,
|
|
6621
|
+
$sidebarOnRight: sidebarOnRight,
|
|
6622
6622
|
contentMinWidth: contentMinWidth,
|
|
6623
6623
|
fullHeight: fullHeight,
|
|
6624
6624
|
minHeight: minHeight
|
|
@@ -18880,7 +18880,8 @@ var Card = function Card(_ref2) {
|
|
|
18880
18880
|
}, heading), /*#__PURE__*/React__default.createElement(Text$1, {
|
|
18881
18881
|
variant: "pS"
|
|
18882
18882
|
}, text)))), /*#__PURE__*/React__default.createElement(Box, {
|
|
18883
|
-
padding: "0.5rem 1rem 1rem"
|
|
18883
|
+
padding: "0.5rem 1rem 1rem",
|
|
18884
|
+
extraStyles: "display: flex; justify-content: center;"
|
|
18884
18885
|
}, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
18885
18886
|
variant: "smallPrimary",
|
|
18886
18887
|
text: buttonText,
|
|
@@ -40155,7 +40156,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
40155
40156
|
role: "form",
|
|
40156
40157
|
"aria-label": "ACH Payment"
|
|
40157
40158
|
}, /*#__PURE__*/React__default.createElement(FormInputColumn, null, /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
40158
|
-
labelTextWhenNoError: "Name on
|
|
40159
|
+
labelTextWhenNoError: "Name on checking account",
|
|
40159
40160
|
errorMessages: nameErrors,
|
|
40160
40161
|
field: fields.name,
|
|
40161
40162
|
fieldActions: actions.fields.name,
|
|
@@ -40247,7 +40248,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
40247
40248
|
hidden: hideDefaultPayment
|
|
40248
40249
|
}), showWalletCheckbox && /*#__PURE__*/React__default.createElement(Checkbox$1, {
|
|
40249
40250
|
name: "bank checkbox",
|
|
40250
|
-
title: "Save
|
|
40251
|
+
title: "Save checking account to wallet",
|
|
40251
40252
|
checked: walletCheckboxMarked,
|
|
40252
40253
|
onChange: saveToWallet
|
|
40253
40254
|
})));
|
|
@@ -41427,7 +41428,8 @@ var WorkflowTile = function WorkflowTile(_ref) {
|
|
|
41427
41428
|
text: workflowActionName,
|
|
41428
41429
|
minWidth: "100%",
|
|
41429
41430
|
url: "/service/".concat(slug),
|
|
41430
|
-
extraStyles: "width: 100%;"
|
|
41431
|
+
extraStyles: "width: 100%;",
|
|
41432
|
+
linkExtraStyles: "justify-content: center;"
|
|
41431
41433
|
}))));
|
|
41432
41434
|
};
|
|
41433
41435
|
|