@thecb/components 4.1.18 → 4.1.20
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
CHANGED
|
@@ -14181,9 +14181,7 @@ var WalletIcon = function WalletIcon(_ref) {
|
|
|
14181
14181
|
var themeValues = _ref.themeValues;
|
|
14182
14182
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14183
14183
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14184
|
-
|
|
14185
|
-
height: "151",
|
|
14186
|
-
viewBox: "0 0 299 151"
|
|
14184
|
+
viewBox: "0 0 299 160"
|
|
14187
14185
|
}, /*#__PURE__*/React__default.createElement("g", {
|
|
14188
14186
|
fill: "none",
|
|
14189
14187
|
fillRule: "evenodd",
|
|
@@ -38526,10 +38524,10 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
|
38526
38524
|
return /*#__PURE__*/React__default.createElement(FormContainer$1, {
|
|
38527
38525
|
variant: variant,
|
|
38528
38526
|
role: "form",
|
|
38529
|
-
"aria-label": "
|
|
38527
|
+
"aria-label": "Other amount"
|
|
38530
38528
|
}, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
38531
38529
|
variant: "p"
|
|
38532
|
-
}, "Pay a
|
|
38530
|
+
}, "Pay a different amount. The total balance will still be due on the same due date."), /*#__PURE__*/React__default.createElement("div", {
|
|
38533
38531
|
style: {
|
|
38534
38532
|
height: "16px"
|
|
38535
38533
|
}
|
package/package.json
CHANGED
|
@@ -4,12 +4,7 @@ import { themeComponent } from "../../../util/themeUtils";
|
|
|
4
4
|
|
|
5
5
|
const WalletIcon = ({ themeValues }) => {
|
|
6
6
|
return (
|
|
7
|
-
<svg
|
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
-
width="299"
|
|
10
|
-
height="151"
|
|
11
|
-
viewBox="0 0 299 151"
|
|
12
|
-
>
|
|
7
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 299 160">
|
|
13
8
|
<g fill="none" fillRule="evenodd" stroke="none" strokeWidth="1">
|
|
14
9
|
<g>
|
|
15
10
|
<path
|
|
@@ -39,10 +39,10 @@ const PartialAmountForm = ({
|
|
|
39
39
|
|
|
40
40
|
const lineItemsNew = Array.isArray(lineItems) ? lineItems : [];
|
|
41
41
|
return (
|
|
42
|
-
<FormContainer variant={variant} role="form" aria-label="
|
|
42
|
+
<FormContainer variant={variant} role="form" aria-label="Other amount">
|
|
43
43
|
<Text variant="p">
|
|
44
|
-
Pay a
|
|
45
|
-
due
|
|
44
|
+
Pay a different amount. The total balance will still be due on the same
|
|
45
|
+
due date.
|
|
46
46
|
</Text>
|
|
47
47
|
<div style={{ height: "16px" }}></div>
|
|
48
48
|
<FormInputColumn>
|