@thecb/components 4.1.16-beta.0 → 4.1.18-beta.0
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
|
@@ -14663,6 +14663,40 @@ var ProfileIcon = function ProfileIcon(_ref) {
|
|
|
14663
14663
|
|
|
14664
14664
|
var ProfileIcon$1 = themeComponent(ProfileIcon, "Icons", fallbackValues$2, "info");
|
|
14665
14665
|
|
|
14666
|
+
var GenericCardLarge = function GenericCardLarge() {
|
|
14667
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14668
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14669
|
+
width: "34",
|
|
14670
|
+
height: "28",
|
|
14671
|
+
viewBox: "0 0 34 28"
|
|
14672
|
+
}, /*#__PURE__*/React__default.createElement("g", {
|
|
14673
|
+
fill: "none",
|
|
14674
|
+
fillRule: "evenodd",
|
|
14675
|
+
stroke: "none",
|
|
14676
|
+
strokeWidth: "1"
|
|
14677
|
+
}, /*#__PURE__*/React__default.createElement("g", {
|
|
14678
|
+
fillRule: "nonzero",
|
|
14679
|
+
transform: "translate(-142 -927)"
|
|
14680
|
+
}, /*#__PURE__*/React__default.createElement("g", {
|
|
14681
|
+
transform: "translate(94 518)"
|
|
14682
|
+
}, /*#__PURE__*/React__default.createElement("g", {
|
|
14683
|
+
transform: "translate(24 350)"
|
|
14684
|
+
}, /*#__PURE__*/React__default.createElement("g", {
|
|
14685
|
+
transform: "translate(0 35)"
|
|
14686
|
+
}, /*#__PURE__*/React__default.createElement("g", {
|
|
14687
|
+
transform: "translate(24 24)"
|
|
14688
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
14689
|
+
fill: "#CACED8",
|
|
14690
|
+
d: "M29.259.699H3.282C1.497.699.035 2.217.035 4.074v20.25c0 1.856 1.462 3.375 3.247 3.375H29.26c1.786 0 3.247-1.52 3.247-3.375V4.074c0-1.857-1.461-3.375-3.247-3.375z"
|
|
14691
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
14692
|
+
fill: "#000",
|
|
14693
|
+
d: "M0.035 6.699H32.50599999999999V13.699H0.035z"
|
|
14694
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
14695
|
+
fill: "#000",
|
|
14696
|
+
d: "M27.51 22.699h-6.244c-.468 0-.937-.47-.937-.938v-3.125c0-.469.469-.937.937-.937h6.244c.469 0 .937.468.937.937v3.125c0 .625-.312.938-.937.938z"
|
|
14697
|
+
}))))))));
|
|
14698
|
+
};
|
|
14699
|
+
|
|
14666
14700
|
var color$2 = "#15749D";
|
|
14667
14701
|
var hoverColor$1 = "#116285";
|
|
14668
14702
|
var activeColor$1 = "#0E506D";
|
|
@@ -38492,10 +38526,10 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
|
38492
38526
|
return /*#__PURE__*/React__default.createElement(FormContainer$1, {
|
|
38493
38527
|
variant: variant,
|
|
38494
38528
|
role: "form",
|
|
38495
|
-
"aria-label": "
|
|
38529
|
+
"aria-label": "Other amount"
|
|
38496
38530
|
}, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
38497
38531
|
variant: "p"
|
|
38498
|
-
}, "Pay a
|
|
38532
|
+
}, "Pay a different amount. The total balance will still be due on the same due date."), /*#__PURE__*/React__default.createElement("div", {
|
|
38499
38533
|
style: {
|
|
38500
38534
|
height: "16px"
|
|
38501
38535
|
}
|
|
@@ -40545,6 +40579,7 @@ exports.FormattedAddress = FormattedAddress$1;
|
|
|
40545
40579
|
exports.FormattedCreditCard = FormattedCreditCard$1;
|
|
40546
40580
|
exports.Frame = Frame;
|
|
40547
40581
|
exports.GenericCard = GenericCard;
|
|
40582
|
+
exports.GenericCardLarge = GenericCardLarge;
|
|
40548
40583
|
exports.GoToEmailIcon = GoToEmailIcon$1;
|
|
40549
40584
|
exports.Grid = Grid;
|
|
40550
40585
|
exports.HamburgerButton = HamburgerButton;
|
package/package.json
CHANGED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
const GenericCardLarge = () => {
|
|
4
|
+
return (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="34"
|
|
8
|
+
height="28"
|
|
9
|
+
viewBox="0 0 34 28"
|
|
10
|
+
>
|
|
11
|
+
<g fill="none" fillRule="evenodd" stroke="none" strokeWidth="1">
|
|
12
|
+
<g fillRule="nonzero" transform="translate(-142 -927)">
|
|
13
|
+
<g transform="translate(94 518)">
|
|
14
|
+
<g transform="translate(24 350)">
|
|
15
|
+
<g transform="translate(0 35)">
|
|
16
|
+
<g transform="translate(24 24)">
|
|
17
|
+
<path
|
|
18
|
+
fill="#CACED8"
|
|
19
|
+
d="M29.259.699H3.282C1.497.699.035 2.217.035 4.074v20.25c0 1.856 1.462 3.375 3.247 3.375H29.26c1.786 0 3.247-1.52 3.247-3.375V4.074c0-1.857-1.461-3.375-3.247-3.375z"
|
|
20
|
+
></path>
|
|
21
|
+
<path
|
|
22
|
+
fill="#000"
|
|
23
|
+
d="M0.035 6.699H32.50599999999999V13.699H0.035z"
|
|
24
|
+
></path>
|
|
25
|
+
<path
|
|
26
|
+
fill="#000"
|
|
27
|
+
d="M27.51 22.699h-6.244c-.468 0-.937-.47-.937-.938v-3.125c0-.469.469-.937.937-.937h6.244c.469 0 .937.468.937.937v3.125c0 .625-.312.938-.937.938z"
|
|
28
|
+
></path>
|
|
29
|
+
</g>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
</g>
|
|
33
|
+
</g>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
36
|
+
);
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
export default GenericCardLarge;
|
|
@@ -41,6 +41,7 @@ import VoidedIcon from "./VoidedIcon";
|
|
|
41
41
|
import StatusUnknownIcon from "./StatusUnknownIcon";
|
|
42
42
|
import CarrotIcon from "./CarrotIcon";
|
|
43
43
|
import ProfileIcon from "./ProfileIcon";
|
|
44
|
+
import GenericCardLarge from "./GenericCardLarge";
|
|
44
45
|
|
|
45
46
|
export {
|
|
46
47
|
AccountsIcon,
|
|
@@ -85,5 +86,6 @@ export {
|
|
|
85
86
|
VoidedIcon,
|
|
86
87
|
StatusUnknownIcon,
|
|
87
88
|
CarrotIcon,
|
|
88
|
-
ProfileIcon
|
|
89
|
+
ProfileIcon,
|
|
90
|
+
GenericCardLarge
|
|
89
91
|
};
|
|
@@ -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>
|