@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "8.2.0-beta.0",
3
+ "version": "8.2.1-beta.0",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -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";
@@ -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
@@ -1 +1,2 @@
1
1
  export * from "./components";
2
+ export * from "./types/common";