@thecb/components 8.2.0-beta.0 → 8.2.1-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 +121 -169
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +122 -169
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/icons.stories.js +2 -0
- package/src/components/atoms/index.js +0 -1
- package/src/constants/colors.js +1 -4
- package/src/index.d.ts +1 -0
- package/dist/src/apps/checkout/pages/payment/sub-pages/payment-amount/PaymentAmount_old.js +0 -49322
- package/src/.DS_Store +0 -0
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/atoms/badge/Badge.js +0 -39
- package/src/components/atoms/badge/Badge.stories.js +0 -28
- package/src/components/atoms/badge/Badge.theme.js +0 -29
- package/src/components/atoms/badge/index.js +0 -3
- package/src/components/atoms/icons/AutopayIcon.js +0 -31
- /package/src/components/atoms/icons/{ExternalLinkIcon.js → ExternalLinkicon.js} +0 -0
package/package.json
CHANGED
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
CheckmarkIcon,
|
|
21
21
|
BankIcon,
|
|
22
22
|
GenericCard,
|
|
23
|
+
PaymentIcon,
|
|
23
24
|
AutopayOnIcon,
|
|
24
25
|
SearchIcon,
|
|
25
26
|
AchReturnIcon,
|
|
@@ -64,6 +65,7 @@ export const routingNumberImage = () => <RoutingNumberImage />;
|
|
|
64
65
|
export const checkmarkIcon = () => <CheckmarkIcon />;
|
|
65
66
|
export const bankIcon = () => <BankIcon />;
|
|
66
67
|
export const genericCard = () => <GenericCard />;
|
|
68
|
+
export const paymentIcon = () => <PaymentIcon />;
|
|
67
69
|
export const autopayOnIcon = () => <AutopayOnIcon />;
|
|
68
70
|
export const searchIcon = () => <SearchIcon />;
|
|
69
71
|
export const achReturnIcon = () => <AchReturnIcon />;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export { default as AddObligation } from "./add-obligation";
|
|
2
2
|
export { default as Alert } from "./alert";
|
|
3
3
|
export { default as AmountCallout } from "./amount-callout";
|
|
4
|
-
export { default as Badge } from "./badge";
|
|
5
4
|
export { default as BoxWithShadow } from "./box-with-shadow";
|
|
6
5
|
export { default as Breadcrumb } from "./breadcrumb";
|
|
7
6
|
export { default as ButtonWithAction } from "./button-with-action";
|
package/src/constants/colors.js
CHANGED
|
@@ -40,7 +40,6 @@ const COOL_GREY_05 = "#fbfcfd"; // CBS-050
|
|
|
40
40
|
const CLOUDBURST_BLUE = "#26395c";
|
|
41
41
|
const ZODIAC_BLUE = "#14284b";
|
|
42
42
|
const CONGRESS_BLUE = "#005095";
|
|
43
|
-
const ROYAL_BLUE = "#3B5BDB";
|
|
44
43
|
const SCIENCE_BLUE = "#0074D9";
|
|
45
44
|
const MARINER_BLUE = "#2E75D2";
|
|
46
45
|
const CURIOUS_BLUE = "#27A9E1";
|
|
@@ -52,10 +51,9 @@ const FOAM_BLUE = "#EFF4FD";
|
|
|
52
51
|
const CELLO_BLUE = "#214566";
|
|
53
52
|
const BOSTON_BLUE = "#357fb8";
|
|
54
53
|
const INFO_BLUE = "#E4F4FD";
|
|
55
|
-
const CORNFLOWER_BLUE = "#EBEFFB";
|
|
56
54
|
const HOVER_LIGHT_BLUE = "#EFFAFF";
|
|
57
55
|
const MATISSE_BLUE = "#15749D";
|
|
58
|
-
|
|
56
|
+
const ROYAL_BLUE = "#3181E3";
|
|
59
57
|
const ASTRAL_BLUE = "#3176AA";
|
|
60
58
|
const SAPPHIRE_BLUE = "#116285";
|
|
61
59
|
const PEACOCK_BLUE = "#0E506D";
|
|
@@ -149,7 +147,6 @@ export {
|
|
|
149
147
|
AQUA_HAZE_WHITE,
|
|
150
148
|
BLEACH_WHITE,
|
|
151
149
|
CATSKILL_WHITE,
|
|
152
|
-
CORNFLOWER_BLUE,
|
|
153
150
|
HALF_COLONIAL_WHITE,
|
|
154
151
|
ATHENS_GREY,
|
|
155
152
|
ALTO_GREY,
|
package/src/index.d.ts
CHANGED