@thecb/components 8.4.0-beta.8 → 8.4.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.d.ts CHANGED
@@ -1,5 +1,300 @@
1
1
  import React from 'react';
2
2
 
3
+ type Color = string;
4
+
5
+ type ColorSet = {
6
+ background: Color;
7
+ border: Color;
8
+ iconBackground: Color;
9
+ iconFill: Color;
10
+ };
11
+
12
+ declare const BLACK: Color;
13
+ declare const TRANSPARENT: Color;
14
+
15
+ // WHITE
16
+ declare const WHITE: Color;
17
+ declare const SOLITUDE_WHITE: Color;
18
+ declare const SEASHELL_WHITE: Color;
19
+ declare const ALABASTER_WHITE: Color;
20
+ declare const AQUA_HAZE_WHITE: Color;
21
+ declare const BLEACH_WHITE: Color;
22
+ declare const CATSKILL_WHITE: Color;
23
+ declare const HALF_COLONIAL_WHITE: Color;
24
+
25
+ // GREY
26
+ declare const ATHENS_GREY: Color;
27
+ declare const ALTO_GREY: Color;
28
+ declare const SILVER_GREY: Color;
29
+ declare const PEWTER_GREY: Color;
30
+ declare const ASH_GREY: Color;
31
+ declare const IRON_GREY: Color;
32
+ declare const GHOST_GREY: Color;
33
+ declare const DUSTY_GREY: Color;
34
+ declare const REGENT_GREY: Color;
35
+ declare const STORM_GREY: Color;
36
+ declare const TROUT_GREY: Color;
37
+ declare const MINESHAFT_GREY: Color;
38
+ declare const SOOT_GREY: Color;
39
+ declare const FIREFLY_GREY: Color;
40
+ declare const BRIGHT_GREY: Color;
41
+ declare const CHARADE_GREY: Color;
42
+ declare const GRECIAN_GREY: Color;
43
+ declare const BLACK_SQUEEZE: Color;
44
+ declare const GREY_CHATEAU: Color;
45
+ declare const COOL_GREY_05: Color;
46
+
47
+ // BLUE
48
+ declare const CLOUDBURST_BLUE: Color;
49
+ declare const ZODIAC_BLUE: Color;
50
+ declare const CONGRESS_BLUE: Color;
51
+ declare const SCIENCE_BLUE: Color;
52
+ declare const MARINER_BLUE: Color;
53
+ declare const CURIOUS_BLUE: Color;
54
+ declare const SELAGO_BLUE: Color;
55
+ declare const ONAHAU_BLUE: Color;
56
+ declare const PICKLED_BLUE: Color;
57
+ declare const CERULEAN_BLUE: Color;
58
+ declare const FOAM_BLUE: Color;
59
+ declare const CELLO_BLUE: Color;
60
+ declare const BOSTON_BLUE: Color;
61
+ declare const INFO_BLUE: Color;
62
+ declare const CORNFLOWER_BLUE: Color;
63
+ declare const HOVER_LIGHT_BLUE: Color;
64
+ declare const MATISSE_BLUE: Color;
65
+ declare const ROYAL_BLUE: Color;
66
+ declare const ROYAL_BLUE_VIVID: Color;
67
+ declare const ASTRAL_BLUE: Color;
68
+ declare const SAPPHIRE_BLUE: Color;
69
+ declare const PEACOCK_BLUE: Color;
70
+
71
+ // GREEN
72
+ declare const FOREST_GREEN: Color;
73
+ declare const MEADOW_GREEN: Color;
74
+ declare const POLAR_GREEN: Color;
75
+ declare const ICE_GREEN: Color;
76
+ declare const HAZE_GREEN: Color;
77
+ declare const EMERALD_GREEN: Color;
78
+ declare const HINT_GREEN: Color;
79
+ declare const SEA_GREEN: Color;
80
+
81
+ // YELLOW
82
+ declare const SELECTIVE_YELLOW: Color;
83
+ declare const MUSTARD_YELLOW: Color;
84
+ declare const FIRE_YELLOW: Color;
85
+
86
+ // ORANGE
87
+ declare const CARROT_ORANGE: Color;
88
+ declare const ZEST_ORANGE: Color;
89
+ declare const APRICOT_ORANGE: Color;
90
+
91
+ // RED
92
+ declare const RED: Color;
93
+ declare const CRIMSON_RED: Color;
94
+ declare const THUNDERBIRD_RED: Color;
95
+ declare const RAZZMATAZZ_RED: Color;
96
+ declare const RASPBERRY: Color;
97
+ declare const FANTASY_RED: Color;
98
+ declare const COSMOS_RED: Color;
99
+ declare const BLUSH_RED: Color;
100
+
101
+ declare const ERROR_COLOR: Color;
102
+
103
+ declare const ALERT_COLORS: {
104
+ warn: ColorSet;
105
+ info: ColorSet;
106
+ error: ColorSet;
107
+ success: ColorSet;
108
+ text: Color;
109
+ link: Color;
110
+ };
111
+
112
+ declare const PILL_COLORS: {
113
+ danger: {
114
+ background: Color;
115
+ text: Color;
116
+ };
117
+ neutral: {
118
+ background: Color;
119
+ text: Color;
120
+ };
121
+ success: {
122
+ background: Color;
123
+ text: Color;
124
+ };
125
+ warning: {
126
+ background: Color;
127
+ text: Color;
128
+ };
129
+ };
130
+
131
+ declare const colors_d_BLACK: typeof BLACK;
132
+ declare const colors_d_TRANSPARENT: typeof TRANSPARENT;
133
+ declare const colors_d_WHITE: typeof WHITE;
134
+ declare const colors_d_SOLITUDE_WHITE: typeof SOLITUDE_WHITE;
135
+ declare const colors_d_SEASHELL_WHITE: typeof SEASHELL_WHITE;
136
+ declare const colors_d_ALABASTER_WHITE: typeof ALABASTER_WHITE;
137
+ declare const colors_d_AQUA_HAZE_WHITE: typeof AQUA_HAZE_WHITE;
138
+ declare const colors_d_BLEACH_WHITE: typeof BLEACH_WHITE;
139
+ declare const colors_d_CATSKILL_WHITE: typeof CATSKILL_WHITE;
140
+ declare const colors_d_HALF_COLONIAL_WHITE: typeof HALF_COLONIAL_WHITE;
141
+ declare const colors_d_ATHENS_GREY: typeof ATHENS_GREY;
142
+ declare const colors_d_ALTO_GREY: typeof ALTO_GREY;
143
+ declare const colors_d_SILVER_GREY: typeof SILVER_GREY;
144
+ declare const colors_d_PEWTER_GREY: typeof PEWTER_GREY;
145
+ declare const colors_d_ASH_GREY: typeof ASH_GREY;
146
+ declare const colors_d_IRON_GREY: typeof IRON_GREY;
147
+ declare const colors_d_GHOST_GREY: typeof GHOST_GREY;
148
+ declare const colors_d_DUSTY_GREY: typeof DUSTY_GREY;
149
+ declare const colors_d_REGENT_GREY: typeof REGENT_GREY;
150
+ declare const colors_d_STORM_GREY: typeof STORM_GREY;
151
+ declare const colors_d_TROUT_GREY: typeof TROUT_GREY;
152
+ declare const colors_d_MINESHAFT_GREY: typeof MINESHAFT_GREY;
153
+ declare const colors_d_SOOT_GREY: typeof SOOT_GREY;
154
+ declare const colors_d_FIREFLY_GREY: typeof FIREFLY_GREY;
155
+ declare const colors_d_BRIGHT_GREY: typeof BRIGHT_GREY;
156
+ declare const colors_d_CHARADE_GREY: typeof CHARADE_GREY;
157
+ declare const colors_d_GRECIAN_GREY: typeof GRECIAN_GREY;
158
+ declare const colors_d_BLACK_SQUEEZE: typeof BLACK_SQUEEZE;
159
+ declare const colors_d_GREY_CHATEAU: typeof GREY_CHATEAU;
160
+ declare const colors_d_COOL_GREY_05: typeof COOL_GREY_05;
161
+ declare const colors_d_CLOUDBURST_BLUE: typeof CLOUDBURST_BLUE;
162
+ declare const colors_d_ZODIAC_BLUE: typeof ZODIAC_BLUE;
163
+ declare const colors_d_CONGRESS_BLUE: typeof CONGRESS_BLUE;
164
+ declare const colors_d_SCIENCE_BLUE: typeof SCIENCE_BLUE;
165
+ declare const colors_d_MARINER_BLUE: typeof MARINER_BLUE;
166
+ declare const colors_d_CURIOUS_BLUE: typeof CURIOUS_BLUE;
167
+ declare const colors_d_SELAGO_BLUE: typeof SELAGO_BLUE;
168
+ declare const colors_d_ONAHAU_BLUE: typeof ONAHAU_BLUE;
169
+ declare const colors_d_PICKLED_BLUE: typeof PICKLED_BLUE;
170
+ declare const colors_d_CERULEAN_BLUE: typeof CERULEAN_BLUE;
171
+ declare const colors_d_FOAM_BLUE: typeof FOAM_BLUE;
172
+ declare const colors_d_CELLO_BLUE: typeof CELLO_BLUE;
173
+ declare const colors_d_BOSTON_BLUE: typeof BOSTON_BLUE;
174
+ declare const colors_d_INFO_BLUE: typeof INFO_BLUE;
175
+ declare const colors_d_CORNFLOWER_BLUE: typeof CORNFLOWER_BLUE;
176
+ declare const colors_d_HOVER_LIGHT_BLUE: typeof HOVER_LIGHT_BLUE;
177
+ declare const colors_d_MATISSE_BLUE: typeof MATISSE_BLUE;
178
+ declare const colors_d_ROYAL_BLUE: typeof ROYAL_BLUE;
179
+ declare const colors_d_ROYAL_BLUE_VIVID: typeof ROYAL_BLUE_VIVID;
180
+ declare const colors_d_ASTRAL_BLUE: typeof ASTRAL_BLUE;
181
+ declare const colors_d_SAPPHIRE_BLUE: typeof SAPPHIRE_BLUE;
182
+ declare const colors_d_PEACOCK_BLUE: typeof PEACOCK_BLUE;
183
+ declare const colors_d_FOREST_GREEN: typeof FOREST_GREEN;
184
+ declare const colors_d_MEADOW_GREEN: typeof MEADOW_GREEN;
185
+ declare const colors_d_POLAR_GREEN: typeof POLAR_GREEN;
186
+ declare const colors_d_ICE_GREEN: typeof ICE_GREEN;
187
+ declare const colors_d_HAZE_GREEN: typeof HAZE_GREEN;
188
+ declare const colors_d_EMERALD_GREEN: typeof EMERALD_GREEN;
189
+ declare const colors_d_HINT_GREEN: typeof HINT_GREEN;
190
+ declare const colors_d_SEA_GREEN: typeof SEA_GREEN;
191
+ declare const colors_d_SELECTIVE_YELLOW: typeof SELECTIVE_YELLOW;
192
+ declare const colors_d_MUSTARD_YELLOW: typeof MUSTARD_YELLOW;
193
+ declare const colors_d_FIRE_YELLOW: typeof FIRE_YELLOW;
194
+ declare const colors_d_CARROT_ORANGE: typeof CARROT_ORANGE;
195
+ declare const colors_d_ZEST_ORANGE: typeof ZEST_ORANGE;
196
+ declare const colors_d_APRICOT_ORANGE: typeof APRICOT_ORANGE;
197
+ declare const colors_d_RED: typeof RED;
198
+ declare const colors_d_CRIMSON_RED: typeof CRIMSON_RED;
199
+ declare const colors_d_THUNDERBIRD_RED: typeof THUNDERBIRD_RED;
200
+ declare const colors_d_RAZZMATAZZ_RED: typeof RAZZMATAZZ_RED;
201
+ declare const colors_d_RASPBERRY: typeof RASPBERRY;
202
+ declare const colors_d_FANTASY_RED: typeof FANTASY_RED;
203
+ declare const colors_d_COSMOS_RED: typeof COSMOS_RED;
204
+ declare const colors_d_BLUSH_RED: typeof BLUSH_RED;
205
+ declare const colors_d_ERROR_COLOR: typeof ERROR_COLOR;
206
+ declare const colors_d_ALERT_COLORS: typeof ALERT_COLORS;
207
+ declare const colors_d_PILL_COLORS: typeof PILL_COLORS;
208
+ declare namespace colors_d {
209
+ export {
210
+ colors_d_BLACK as BLACK,
211
+ colors_d_TRANSPARENT as TRANSPARENT,
212
+ colors_d_WHITE as WHITE,
213
+ colors_d_SOLITUDE_WHITE as SOLITUDE_WHITE,
214
+ colors_d_SEASHELL_WHITE as SEASHELL_WHITE,
215
+ colors_d_ALABASTER_WHITE as ALABASTER_WHITE,
216
+ colors_d_AQUA_HAZE_WHITE as AQUA_HAZE_WHITE,
217
+ colors_d_BLEACH_WHITE as BLEACH_WHITE,
218
+ colors_d_CATSKILL_WHITE as CATSKILL_WHITE,
219
+ colors_d_HALF_COLONIAL_WHITE as HALF_COLONIAL_WHITE,
220
+ colors_d_ATHENS_GREY as ATHENS_GREY,
221
+ colors_d_ALTO_GREY as ALTO_GREY,
222
+ colors_d_SILVER_GREY as SILVER_GREY,
223
+ colors_d_PEWTER_GREY as PEWTER_GREY,
224
+ colors_d_ASH_GREY as ASH_GREY,
225
+ colors_d_IRON_GREY as IRON_GREY,
226
+ colors_d_GHOST_GREY as GHOST_GREY,
227
+ colors_d_DUSTY_GREY as DUSTY_GREY,
228
+ colors_d_REGENT_GREY as REGENT_GREY,
229
+ colors_d_STORM_GREY as STORM_GREY,
230
+ colors_d_TROUT_GREY as TROUT_GREY,
231
+ colors_d_MINESHAFT_GREY as MINESHAFT_GREY,
232
+ colors_d_SOOT_GREY as SOOT_GREY,
233
+ colors_d_FIREFLY_GREY as FIREFLY_GREY,
234
+ colors_d_BRIGHT_GREY as BRIGHT_GREY,
235
+ colors_d_CHARADE_GREY as CHARADE_GREY,
236
+ colors_d_GRECIAN_GREY as GRECIAN_GREY,
237
+ colors_d_BLACK_SQUEEZE as BLACK_SQUEEZE,
238
+ colors_d_GREY_CHATEAU as GREY_CHATEAU,
239
+ colors_d_COOL_GREY_05 as COOL_GREY_05,
240
+ colors_d_CLOUDBURST_BLUE as CLOUDBURST_BLUE,
241
+ colors_d_ZODIAC_BLUE as ZODIAC_BLUE,
242
+ colors_d_CONGRESS_BLUE as CONGRESS_BLUE,
243
+ colors_d_SCIENCE_BLUE as SCIENCE_BLUE,
244
+ colors_d_MARINER_BLUE as MARINER_BLUE,
245
+ colors_d_CURIOUS_BLUE as CURIOUS_BLUE,
246
+ colors_d_SELAGO_BLUE as SELAGO_BLUE,
247
+ colors_d_ONAHAU_BLUE as ONAHAU_BLUE,
248
+ colors_d_PICKLED_BLUE as PICKLED_BLUE,
249
+ colors_d_CERULEAN_BLUE as CERULEAN_BLUE,
250
+ colors_d_FOAM_BLUE as FOAM_BLUE,
251
+ colors_d_CELLO_BLUE as CELLO_BLUE,
252
+ colors_d_BOSTON_BLUE as BOSTON_BLUE,
253
+ colors_d_INFO_BLUE as INFO_BLUE,
254
+ colors_d_CORNFLOWER_BLUE as CORNFLOWER_BLUE,
255
+ colors_d_HOVER_LIGHT_BLUE as HOVER_LIGHT_BLUE,
256
+ colors_d_MATISSE_BLUE as MATISSE_BLUE,
257
+ colors_d_ROYAL_BLUE as ROYAL_BLUE,
258
+ colors_d_ROYAL_BLUE_VIVID as ROYAL_BLUE_VIVID,
259
+ colors_d_ASTRAL_BLUE as ASTRAL_BLUE,
260
+ colors_d_SAPPHIRE_BLUE as SAPPHIRE_BLUE,
261
+ colors_d_PEACOCK_BLUE as PEACOCK_BLUE,
262
+ colors_d_FOREST_GREEN as FOREST_GREEN,
263
+ colors_d_MEADOW_GREEN as MEADOW_GREEN,
264
+ colors_d_POLAR_GREEN as POLAR_GREEN,
265
+ colors_d_ICE_GREEN as ICE_GREEN,
266
+ colors_d_HAZE_GREEN as HAZE_GREEN,
267
+ colors_d_EMERALD_GREEN as EMERALD_GREEN,
268
+ colors_d_HINT_GREEN as HINT_GREEN,
269
+ colors_d_SEA_GREEN as SEA_GREEN,
270
+ colors_d_SELECTIVE_YELLOW as SELECTIVE_YELLOW,
271
+ colors_d_MUSTARD_YELLOW as MUSTARD_YELLOW,
272
+ colors_d_FIRE_YELLOW as FIRE_YELLOW,
273
+ colors_d_CARROT_ORANGE as CARROT_ORANGE,
274
+ colors_d_ZEST_ORANGE as ZEST_ORANGE,
275
+ colors_d_APRICOT_ORANGE as APRICOT_ORANGE,
276
+ colors_d_RED as RED,
277
+ colors_d_CRIMSON_RED as CRIMSON_RED,
278
+ colors_d_THUNDERBIRD_RED as THUNDERBIRD_RED,
279
+ colors_d_RAZZMATAZZ_RED as RAZZMATAZZ_RED,
280
+ colors_d_RASPBERRY as RASPBERRY,
281
+ colors_d_FANTASY_RED as FANTASY_RED,
282
+ colors_d_COSMOS_RED as COSMOS_RED,
283
+ colors_d_BLUSH_RED as BLUSH_RED,
284
+ colors_d_ERROR_COLOR as ERROR_COLOR,
285
+ colors_d_ALERT_COLORS as ALERT_COLORS,
286
+ colors_d_PILL_COLORS as PILL_COLORS,
287
+ };
288
+ }
289
+
290
+
291
+
292
+ declare namespace index_d {
293
+ export {
294
+ colors_d as colors,
295
+ };
296
+ }
297
+
3
298
  type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
4
299
 
5
300
  interface ButtonWithActionProps {
@@ -698,5 +993,5 @@ interface DefaultPageTemplateProps {
698
993
  declare const DefaultPageTemplate: React.FC<Expand<DefaultPageTemplateProps> &
699
994
  React.HTMLAttributes<HTMLElement>>;
700
995
 
701
- export { AddValidatorAction, ArrowDownCircleIconSmall, ArrowDownCircleIconSmallProps, ArrowLeftCircleIconMedium, ArrowLeftCircleIconMediumProps, ArrowLeftCircleIconSmall, ArrowLeftCircleIconSmallProps, ArrowRightCircleIconSmall, ArrowRightCircleIconSmallProps, ArrowUpCircleIconSmall, ArrowUpCircleIconSmallProps, BankIconLarge, BankIconLargeProps, Box, BoxProps, ButtonWithAction, ButtonWithActionProps, ButtonWithLink, ButtonWithLinkProps, Card, CardProps, Center, CenterProps, ChargebackIconMedium, ChargebackIconMediumProps, ChargebackIconSmall, ChargebackIconSmallProps, ChargebackReversalIconMedium, ChargebackReversalIconMediumProps, ChargebackReversalIconSmall, ChargebackReversalIconSmallProps, ClearAction, Cluster, ClusterProps, CollapsibleSection, CollapsibleSectionProps, Copyable, CopyableProps, Cover, CoverProps, DefaultPageTemplate, DefaultPageTemplateProps, EditableTable, EditableTableProps, ErrorMessageDictionary, ExternalLink, ExternalLinkProps, Field, FieldActionPayload, FieldActions, FooterWithSubfooter, FooterWithSubfooterProps, FormInput, FormInputProps, FormSelect, FormSelectOption, FormSelectProps, GuidedCheckoutImage, HistoryIconSmall, InternalLink, InternalLinkProps, KioskImage, Loading, LoadingProps, NavFooter, NavFooterProps, NavHeader, NavHeaderProps, NavTabs, NavTabsProps, Paragraph, ParagraphProps, PointOfSaleImage, Popover, PopoverProps, ProfileImage, ReduxAction, RefundIconMedium, RefundIconMediumProps, RefundIconSmall, RefundIconSmallProps, RemoveValidatorAction, RevenueManagementImage, SetAction, Spinner, SpinnerProps, Stack, StackProps, StandardCheckoutImage, SuccessfulIconMedium, SuccessfulIconMediumProps, SuccessfulIconSmall, SuccessfulIconSmallProps, Switcher, SwitcherProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableHead, TableHeadProps, TableHeading, TableHeadingProps, TableListItem, TableListItemProps, TableProps, TableRow, TableRowProps, Text, TextProps, Title, TitleProps, ValidatorFn, XCircleIconMedium, XCircleIconMediumProps, XCircleIconSmall, XCircleIconSmallProps };
996
+ export { AddValidatorAction, ArrowDownCircleIconSmall, ArrowDownCircleIconSmallProps, ArrowLeftCircleIconMedium, ArrowLeftCircleIconMediumProps, ArrowLeftCircleIconSmall, ArrowLeftCircleIconSmallProps, ArrowRightCircleIconSmall, ArrowRightCircleIconSmallProps, ArrowUpCircleIconSmall, ArrowUpCircleIconSmallProps, BankIconLarge, BankIconLargeProps, Box, BoxProps, ButtonWithAction, ButtonWithActionProps, ButtonWithLink, ButtonWithLinkProps, Card, CardProps, Center, CenterProps, ChargebackIconMedium, ChargebackIconMediumProps, ChargebackIconSmall, ChargebackIconSmallProps, ChargebackReversalIconMedium, ChargebackReversalIconMediumProps, ChargebackReversalIconSmall, ChargebackReversalIconSmallProps, ClearAction, Cluster, ClusterProps, CollapsibleSection, CollapsibleSectionProps, Copyable, CopyableProps, Cover, CoverProps, DefaultPageTemplate, DefaultPageTemplateProps, EditableTable, EditableTableProps, ErrorMessageDictionary, ExternalLink, ExternalLinkProps, Field, FieldActionPayload, FieldActions, FooterWithSubfooter, FooterWithSubfooterProps, FormInput, FormInputProps, FormSelect, FormSelectOption, FormSelectProps, GuidedCheckoutImage, HistoryIconSmall, InternalLink, InternalLinkProps, KioskImage, Loading, LoadingProps, NavFooter, NavFooterProps, NavHeader, NavHeaderProps, NavTabs, NavTabsProps, Paragraph, ParagraphProps, PointOfSaleImage, Popover, PopoverProps, ProfileImage, ReduxAction, RefundIconMedium, RefundIconMediumProps, RefundIconSmall, RefundIconSmallProps, RemoveValidatorAction, RevenueManagementImage, SetAction, Spinner, SpinnerProps, Stack, StackProps, StandardCheckoutImage, SuccessfulIconMedium, SuccessfulIconMediumProps, SuccessfulIconSmall, SuccessfulIconSmallProps, Switcher, SwitcherProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableHead, TableHeadProps, TableHeading, TableHeadingProps, TableListItem, TableListItemProps, TableProps, TableRow, TableRowProps, Text, TextProps, Title, TitleProps, ValidatorFn, XCircleIconMedium, XCircleIconMediumProps, XCircleIconSmall, XCircleIconSmallProps, index_d as constants };
702
997
  //# sourceMappingURL=index.d.ts.map
package/dist/index.esm.js CHANGED
@@ -13937,6 +13937,114 @@ var GenericCard = function GenericCard() {
13937
13937
  }));
13938
13938
  };
13939
13939
 
13940
+ var GenericErrorIcon = function GenericErrorIcon() {
13941
+ return /*#__PURE__*/React.createElement("svg", {
13942
+ width: "474",
13943
+ height: "308",
13944
+ viewBox: "0 0 474 308",
13945
+ fill: "none",
13946
+ xmlns: "http://www.w3.org/2000/svg"
13947
+ }, /*#__PURE__*/React.createElement("path", {
13948
+ fillRule: "evenodd",
13949
+ clipRule: "evenodd",
13950
+ d: "M107.968 73H347.689C351.538 73 354.658 76.12 354.658 79.968V258.366C354.658 262.214 351.538 265.334 347.689 265.334H107.968C104.119 265.334 101 262.214 101 258.366V79.968C101 76.12 104.119 73 107.968 73",
13951
+ fill: "white"
13952
+ }), /*#__PURE__*/React.createElement("path", {
13953
+ fillRule: "evenodd",
13954
+ clipRule: "evenodd",
13955
+ d: "M200.435 148.429C201.244 146.174 203.256 144.701 205.477 144.701C207.698 144.701 209.71 146.174 210.518 148.429C211.038 149.878 212.634 150.632 214.083 150.112C215.532 149.593 216.286 147.997 215.766 146.547C214.239 142.287 210.267 139.126 205.477 139.126C200.687 139.126 196.715 142.286 195.187 146.547C194.668 147.997 195.422 149.593 196.871 150.112C198.32 150.632 199.916 149.878 200.435 148.429ZM246.435 148.429C247.244 146.174 249.256 144.701 251.477 144.701C253.698 144.701 255.71 146.174 256.518 148.429C257.038 149.878 258.634 150.632 260.083 150.112C261.532 149.593 262.286 147.997 261.766 146.547C260.239 142.287 256.267 139.126 251.477 139.126C246.687 139.126 242.715 142.286 241.187 146.547C240.668 147.997 241.422 149.593 242.871 150.112C244.32 150.632 245.916 149.878 246.435 148.429ZM208 195.674C209.54 195.674 210.788 194.426 210.788 192.886C210.788 190.622 212.623 188.788 214.885 188.788H241.305C243.569 188.788 245.404 190.623 245.404 192.886C245.404 194.426 246.652 195.674 248.191 195.674C249.731 195.674 250.979 194.426 250.979 192.886C250.979 187.544 246.648 183.213 241.305 183.213H214.885C209.543 183.213 205.213 187.544 205.213 192.886C205.213 194.426 206.461 195.674 208 195.674ZM31.6619 247.285C31.7125 249.493 29.9631 251.325 27.7546 251.375L12.5756 251.723C10.367 251.774 8.53559 250.024 8.48496 247.816C8.43432 245.607 10.1837 243.776 12.3922 243.725L27.5712 243.377C29.7798 243.327 31.6112 245.076 31.6619 247.285ZM99.6215 251.376C101.831 251.361 103.609 249.559 103.595 247.35C103.58 245.141 101.777 243.362 99.5683 243.376L47.1963 243.724C44.9872 243.739 43.2083 245.542 43.223 247.751C43.2377 249.96 45.0404 251.739 47.2495 251.724L99.6215 251.376ZM423.796 247.354C423.808 249.563 422.027 251.364 419.818 251.376L356.062 251.724C353.853 251.736 352.052 249.955 352.04 247.746C352.028 245.537 353.809 243.736 356.018 243.724L419.774 243.376C421.984 243.364 423.784 245.145 423.796 247.354ZM473.424 247.33C473.45 249.539 471.68 251.35 469.471 251.376L439.636 251.724C437.427 251.75 435.615 249.98 435.589 247.771C435.564 245.562 437.333 243.75 439.542 243.724L469.377 243.376C471.586 243.351 473.398 245.121 473.424 247.33Z",
13956
+ fill: "#292A33"
13957
+ }), /*#__PURE__*/React.createElement("path", {
13958
+ fillRule: "evenodd",
13959
+ clipRule: "evenodd",
13960
+ d: "M101 99H355V73H101V99Z",
13961
+ fill: "#CACED8"
13962
+ }), /*#__PURE__*/React.createElement("path", {
13963
+ d: "M117 86C117 87.6569 115.657 89 114 89C112.343 89 111 87.6569 111 86C111 84.3431 112.343 83 114 83C115.657 83 117 84.3431 117 86Z",
13964
+ fill: "#292A33"
13965
+ }), /*#__PURE__*/React.createElement("path", {
13966
+ d: "M127 86C127 87.6569 125.657 89 124 89C122.343 89 121 87.6569 121 86C121 84.3431 122.343 83 124 83C125.657 83 127 84.3431 127 86Z",
13967
+ fill: "#292A33"
13968
+ }), /*#__PURE__*/React.createElement("path", {
13969
+ d: "M137 86C137 87.6569 135.657 89 134 89C132.343 89 131 87.6569 131 86C131 84.3431 132.343 83 134 83C135.657 83 137 84.3431 137 86Z",
13970
+ fill: "#292A33"
13971
+ }), /*#__PURE__*/React.createElement("path", {
13972
+ fillRule: "evenodd",
13973
+ clipRule: "evenodd",
13974
+ d: "M352 102H104V96H352V102Z",
13975
+ fill: "#292A33"
13976
+ }), /*#__PURE__*/React.createElement("path", {
13977
+ fillRule: "evenodd",
13978
+ clipRule: "evenodd",
13979
+ d: "M223.998 268C223.998 265.691 222.126 263.819 219.817 263.819C217.508 263.819 215.636 265.691 215.636 268V288.614H204C201.691 288.614 199.819 290.486 199.819 292.795C199.819 295.104 201.691 296.976 204 296.976H219.817C222.126 296.976 223.998 295.104 223.998 292.795V268ZM239.491 268C239.491 265.691 237.619 263.819 235.31 263.819C233.001 263.819 231.129 265.691 231.129 268V293.574C231.129 295.883 233.001 297.755 235.31 297.755H251.127C253.436 297.755 255.308 295.883 255.308 293.574C255.308 291.265 253.436 289.393 251.127 289.393H239.491V268Z",
13980
+ fill: "#3B5BDB"
13981
+ }), /*#__PURE__*/React.createElement("path", {
13982
+ fillRule: "evenodd",
13983
+ clipRule: "evenodd",
13984
+ d: "M102.461 202.558C103.91 204.226 103.732 206.753 102.064 208.201L79.804 227.532C78.136 228.981 75.6096 228.803 74.1611 227.135C72.7126 225.467 72.8905 222.94 74.5585 221.492L96.8185 202.161C98.4864 200.712 101.013 200.89 102.461 202.558Z",
13985
+ fill: "#3B5BDB"
13986
+ }), /*#__PURE__*/React.createElement("path", {
13987
+ fillRule: "evenodd",
13988
+ clipRule: "evenodd",
13989
+ d: "M396.5 185.5C394.291 185.5 392.5 187.291 392.5 189.5C392.5 191.709 394.291 193.5 396.5 193.5H404.869L380.696 219.39L358.454 202.109C356.71 200.754 354.197 201.069 352.842 202.814C351.486 204.558 351.802 207.071 353.546 208.427L378.673 227.949C380.307 229.218 382.639 229.032 384.051 227.52L415.814 193.5H429.5C431.709 193.5 433.5 191.709 433.5 189.5C433.5 187.291 431.709 185.5 429.5 185.5H396.5Z",
13990
+ fill: "#3B5BDB"
13991
+ }), /*#__PURE__*/React.createElement("path", {
13992
+ fillRule: "evenodd",
13993
+ clipRule: "evenodd",
13994
+ d: "M107.969 76C105.777 76 104 77.7769 104 79.969V258.366C104 260.557 105.777 262.334 107.969 262.334H347.69C349.881 262.334 351.658 260.557 351.658 258.366V79.969C351.658 77.7766 349.881 76 347.69 76H107.969ZM98 79.969C98 74.4631 102.463 70 107.969 70H347.69C353.195 70 357.658 74.4634 357.658 79.969V258.366C357.658 263.871 353.195 268.334 347.69 268.334H107.969C102.463 268.334 98 263.871 98 258.366V79.969Z",
13995
+ fill: "#292A33"
13996
+ }), /*#__PURE__*/React.createElement("path", {
13997
+ fillRule: "evenodd",
13998
+ clipRule: "evenodd",
13999
+ d: "M78.0922 220.617C75.9411 220.114 73.7895 221.45 73.2864 223.601C72.7833 225.752 74.1193 227.904 76.2704 228.407L125.537 239.929C126.148 245.765 131.082 250.314 137.079 250.314H143.723C145.932 250.314 147.723 248.523 147.723 246.314C147.723 244.105 145.932 242.314 143.723 242.314H137.079C135.088 242.314 133.474 240.7 133.474 238.708C133.474 236.717 135.088 235.103 137.079 235.103C139.288 235.103 141.079 233.312 141.079 231.103C141.079 228.894 139.288 227.103 137.079 227.103C133.095 227.103 129.579 229.111 127.49 232.17L78.0922 220.617Z",
14000
+ fill: "#3B5BDB"
14001
+ }), /*#__PURE__*/React.createElement("path", {
14002
+ fillRule: "evenodd",
14003
+ clipRule: "evenodd",
14004
+ d: "M452.68 155.302C450.663 157.996 448.259 160.384 445.551 162.382C444.575 163.102 443.215 162.995 442.358 162.138L439.438 159.218C438.636 158.416 437.423 158.218 436.397 158.698C435.931 158.916 435.458 159.12 434.979 159.312C434.678 159.431 434.375 159.545 434.071 159.655C432.987 160.039 432.245 161.041 432.245 162.192L432.244 166.276C432.244 167.493 431.354 168.533 430.15 168.706C428.54 168.939 426.895 169.059 425.221 169.059C423.513 169.059 421.835 168.934 420.195 168.693C418.992 168.516 418.104 167.478 418.104 166.262V162.151C418.104 161.024 417.395 160.02 416.333 159.641C415.469 159.331 414.625 158.979 413.805 158.584C412.782 158.093 411.564 158.298 410.761 159.1L407.877 161.985C407.015 162.847 405.646 162.949 404.67 162.218C402.004 160.218 399.64 157.839 397.656 155.16C396.934 154.185 397.039 152.823 397.897 151.966L400.811 149.05C401.609 148.251 401.814 147.041 401.332 146.021C400.973 145.257 400.649 144.474 400.362 143.672C399.981 142.609 398.979 141.896 397.849 141.897H393.739C392.523 141.897 391.485 141.008 391.308 139.806C391.067 138.165 390.942 136.487 390.942 134.78C390.942 133.072 391.067 131.394 391.308 129.753C391.485 128.551 392.523 127.662 393.738 127.662H397.849C398.979 127.662 399.982 126.949 400.363 125.885C400.642 125.103 400.958 124.337 401.308 123.59C401.786 122.569 401.581 121.361 400.784 120.564L397.862 117.643C397.004 116.785 396.898 115.426 397.617 114.45C399.617 111.741 402.004 109.337 404.698 107.32C405.673 106.59 407.042 106.693 407.904 107.554L410.792 110.444C411.594 111.245 412.811 111.45 413.833 110.961C414.645 110.572 415.479 110.224 416.333 109.918C417.396 109.539 418.104 108.535 418.104 107.407V103.297C418.104 102.082 418.992 101.043 420.195 100.866C421.835 100.625 423.513 100.5 425.221 100.5C426.92 100.5 428.59 100.624 430.223 100.863C431.436 101.04 432.327 102.095 432.314 103.322L432.267 107.351C432.254 108.494 432.97 109.514 434.047 109.897C434.889 110.195 435.71 110.535 436.51 110.914C437.538 111.401 438.76 111.189 439.558 110.377L442.406 107.481C443.262 106.61 444.634 106.497 445.616 107.225C448.288 109.206 450.662 111.568 452.659 114.229C453.391 115.204 453.288 116.573 452.426 117.435L449.541 120.32C448.74 121.122 448.534 122.34 449.026 123.364C449.42 124.184 449.773 125.028 450.082 125.893C450.462 126.954 451.465 127.662 452.593 127.662H456.703C457.918 127.662 458.957 128.551 459.134 129.753C459.375 131.394 459.5 133.072 459.5 134.78C459.5 136.49 459.374 138.171 459.133 139.815C458.956 141.013 457.924 141.9 456.713 141.906L452.572 141.923C451.449 141.928 450.452 142.635 450.073 143.692C449.77 144.537 449.425 145.363 449.04 146.165C448.55 147.189 448.754 148.406 449.557 149.208L452.447 152.096C453.308 152.958 453.41 154.326 452.68 155.302Z",
14005
+ fill: "#CACED8",
14006
+ stroke: "#292A33",
14007
+ strokeWidth: "3",
14008
+ strokeLinecap: "round",
14009
+ strokeLinejoin: "round"
14010
+ }), /*#__PURE__*/React.createElement("path", {
14011
+ fillRule: "evenodd",
14012
+ clipRule: "evenodd",
14013
+ d: "M382.155 168.156C380.905 169.826 379.414 171.306 377.734 172.546C377.13 172.992 376.287 172.927 375.755 172.395L373.944 170.584C373.447 170.087 372.695 169.964 372.058 170.261C371.77 170.396 371.476 170.523 371.178 170.642C370.993 170.717 370.805 170.787 370.616 170.854C369.944 171.094 369.484 171.715 369.484 172.427V174.961C369.484 175.715 368.931 176.36 368.184 176.468C367.186 176.611 366.166 176.685 365.129 176.685C364.07 176.685 363.029 176.608 362.011 176.459C361.266 176.349 360.716 175.706 360.716 174.952L360.715 172.402C360.715 171.704 360.276 171.081 359.618 170.846C359.082 170.654 358.558 170.435 358.05 170.191C357.415 169.886 356.66 170.013 356.162 170.51L354.374 172.3C353.84 172.834 352.99 172.898 352.385 172.444C350.732 171.204 349.266 169.728 348.036 168.068C347.588 167.463 347.653 166.619 348.185 166.087L349.992 164.279C350.487 163.784 350.614 163.034 350.316 162.4C350.092 161.927 349.891 161.441 349.714 160.944C349.477 160.285 348.856 159.843 348.155 159.843H345.606C344.853 159.843 344.209 159.293 344.099 158.547C343.95 157.529 343.873 156.489 343.873 155.43C343.873 154.371 343.95 153.331 344.099 152.313C344.209 151.568 344.853 151.017 345.606 151.017H348.155C348.856 151.017 349.478 150.575 349.714 149.915C349.887 149.429 350.084 148.955 350.301 148.492C350.597 147.858 350.469 147.109 349.975 146.615L348.164 144.803C347.632 144.272 347.566 143.429 348.012 142.824C349.252 141.144 350.732 139.654 352.402 138.403C353.008 137.95 353.856 138.013 354.39 138.549L356.181 140.34C356.678 140.837 357.433 140.964 358.067 140.66C358.57 140.42 359.088 140.204 359.617 140.014C360.276 139.779 360.716 139.156 360.716 138.457V135.908C360.716 135.155 361.266 134.51 362.011 134.401C363.029 134.252 364.07 134.175 365.129 134.175C366.182 134.175 367.217 134.251 368.23 134.399C368.982 134.509 369.535 135.164 369.526 135.924L369.498 138.423C369.489 139.131 369.933 139.763 370.601 140.001C371.123 140.185 371.633 140.396 372.129 140.632C372.766 140.933 373.523 140.802 374.018 140.299L375.785 138.503C376.315 137.963 377.167 137.892 377.775 138.344C379.432 139.573 380.904 141.037 382.142 142.687C382.596 143.292 382.533 144.14 381.998 144.676L380.209 146.464C379.712 146.962 379.585 147.717 379.889 148.351C380.134 148.86 380.352 149.384 380.545 149.92C380.78 150.578 381.402 151.017 382.101 151.017L384.65 151.016C385.404 151.016 386.048 151.568 386.157 152.313C386.306 153.331 386.384 154.371 386.384 155.43C386.384 156.491 386.306 157.533 386.156 158.552C386.047 159.295 385.407 159.845 384.656 159.848L382.088 159.86C381.391 159.863 380.774 160.302 380.539 160.957C380.35 161.48 380.136 161.992 379.898 162.49C379.594 163.125 379.721 163.88 380.218 164.377L382.01 166.168C382.545 166.702 382.608 167.551 382.155 168.156Z",
14014
+ fill: "#CACED8",
14015
+ stroke: "#292A33",
14016
+ strokeWidth: "3",
14017
+ strokeLinecap: "round",
14018
+ strokeLinejoin: "round"
14019
+ }), /*#__PURE__*/React.createElement("path", {
14020
+ fillRule: "evenodd",
14021
+ clipRule: "evenodd",
14022
+ d: "M415.001 134.779C415.001 140.424 419.577 145 425.222 145C430.866 145 435.442 140.424 435.442 134.779C435.442 129.134 430.866 124.558 425.222 124.558C419.577 124.558 415.001 129.134 415.001 134.779Z",
14023
+ fill: "#F6F6F9"
14024
+ }), /*#__PURE__*/React.createElement("path", {
14025
+ fillRule: "evenodd",
14026
+ clipRule: "evenodd",
14027
+ d: "M425.222 126.058C430.037 126.058 433.942 129.963 433.942 134.779C433.942 139.596 430.037 143.5 425.222 143.5C420.405 143.5 416.501 139.596 416.501 134.779C416.501 129.963 420.405 126.058 425.222 126.058ZM436.942 134.779C436.942 128.306 431.694 123.058 425.222 123.058C418.748 123.058 413.501 128.306 413.501 134.779C413.501 141.253 418.748 146.5 425.222 146.5C431.694 146.5 436.942 141.253 436.942 134.779Z",
14028
+ fill: "#292A33"
14029
+ }), /*#__PURE__*/React.createElement("path", {
14030
+ fillRule: "evenodd",
14031
+ clipRule: "evenodd",
14032
+ d: "M358.791 155.431C358.791 158.931 361.628 161.768 365.129 161.768C368.629 161.768 371.467 158.931 371.467 155.431C371.467 151.93 368.629 149.093 365.129 149.093C361.628 149.093 358.791 151.93 358.791 155.431Z",
14033
+ fill: "#F6F6F9"
14034
+ }), /*#__PURE__*/React.createElement("path", {
14035
+ fillRule: "evenodd",
14036
+ clipRule: "evenodd",
14037
+ d: "M365.129 150.593C367.8 150.593 369.967 152.758 369.967 155.431C369.967 158.102 367.8 160.268 365.129 160.268C362.456 160.268 360.291 158.102 360.291 155.431C360.291 152.758 362.456 150.593 365.129 150.593ZM372.967 155.431C372.967 151.101 369.457 147.593 365.129 147.593C360.799 147.593 357.291 151.101 357.291 155.431C357.291 159.759 360.799 163.268 365.129 163.268C369.457 163.268 372.967 159.759 372.967 155.431Z",
14038
+ fill: "#292A33"
14039
+ }), /*#__PURE__*/React.createElement("path", {
14040
+ fillRule: "evenodd",
14041
+ clipRule: "evenodd",
14042
+ d: "M159.146 27.899C161.226 26.41 163.766 25.524 166.518 25.524C173.522 25.524 179.201 31.203 179.201 38.208C179.201 45.212 173.522 50.891 166.518 50.891H109.108C100.911 50.891 94.2649 44.245 94.2649 36.047C94.2649 27.85 100.911 21.204 109.108 21.204C112.441 21.204 115.506 22.316 117.984 24.17C120.469 15.329 128.583 8.84497 138.219 8.84497C149.165 8.84497 158.154 17.212 159.146 27.899ZM415.354 42.963C417.095 41.716 419.223 40.973 421.529 40.973C427.397 40.973 432.154 45.73 432.154 51.598C432.154 57.467 427.397 62.223 421.529 62.223H373.435C366.567 62.223 361 56.657 361 49.789C361 42.921 366.567 37.354 373.435 37.354C376.226 37.354 378.795 38.285 380.87 39.838C382.952 32.432 389.75 27 397.822 27C406.992 27 414.522 34.01 415.354 42.963ZM69.491 141.356C68.241 141.356 67.056 141.631 65.985 142.113C64.929 140.771 63.293 139.906 61.453 139.906C60.912 139.906 60.391 139.985 59.894 140.125C57.947 135.058 53.048 131.456 47.296 131.456C41.027 131.456 35.77 135.733 34.247 141.525C33.701 141.415 33.136 141.356 32.557 141.356C27.831 141.356 24 145.187 24 149.913C24 154.639 27.831 158.47 32.557 158.47H69.491C74.217 158.47 78.048 154.639 78.048 149.913C78.048 145.187 74.217 141.356 69.491 141.356ZM228.163 307.832C260.286 307.832 286.327 302.049 286.327 294.916C286.327 287.783 260.286 282 228.163 282C196.04 282 170 287.783 170 294.916C170 302.049 196.04 307.832 228.163 307.832Z",
14043
+ fill: "#3B5BDB",
14044
+ fillOpacity: "0.2"
14045
+ }));
14046
+ };
14047
+
13940
14048
  var IconAdd = function IconAdd() {
13941
14049
  return /*#__PURE__*/React.createElement("svg", {
13942
14050
  xmlns: "http://www.w3.org/2000/svg",
@@ -17669,13 +17777,16 @@ var ArrowRightCircleIconSmall = function ArrowRightCircleIconSmall(_ref) {
17669
17777
 
17670
17778
  var ArrowRightIcon = function ArrowRightIcon(_ref) {
17671
17779
  var _ref$color = _ref.color,
17672
- color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color;
17780
+ color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color,
17781
+ _ref$labeledBy = _ref.labeledBy,
17782
+ labeledBy = _ref$labeledBy === void 0 ? "" : _ref$labeledBy;
17673
17783
  return /*#__PURE__*/React.createElement("svg", {
17674
17784
  xmlns: "http://www.w3.org/2000/svg",
17675
17785
  width: "20",
17676
17786
  height: "20",
17677
17787
  viewBox: "0 0 20 20",
17678
- fill: "none"
17788
+ fill: "none",
17789
+ "aria-labeledBy": labeledBy
17679
17790
  }, /*#__PURE__*/React.createElement("path", {
17680
17791
  fillRule: "evenodd",
17681
17792
  clipRule: "evenodd",
@@ -18097,13 +18208,16 @@ var ChargebackReversalIconMedium = function ChargebackReversalIconMedium(_ref) {
18097
18208
 
18098
18209
  var PlusCircleIcon = function PlusCircleIcon(_ref) {
18099
18210
  var _ref$color = _ref.color,
18100
- color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color;
18211
+ color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color,
18212
+ _ref$labeledBy = _ref.labeledBy,
18213
+ labeledBy = _ref$labeledBy === void 0 ? "" : _ref$labeledBy;
18101
18214
  return /*#__PURE__*/React.createElement("svg", {
18102
18215
  xmlns: "http://www.w3.org/2000/svg",
18103
18216
  width: "20",
18104
18217
  height: "20",
18105
18218
  viewBox: "0 0 20 20",
18106
- fill: "none"
18219
+ fill: "none",
18220
+ "aria-labelledby": labeledBy
18107
18221
  }, /*#__PURE__*/React.createElement("path", {
18108
18222
  fillRule: "evenodd",
18109
18223
  clipRule: "evenodd",
@@ -19762,9 +19876,9 @@ var fontFamily$2 = {
19762
19876
  primary: "Public Sans",
19763
19877
  secondary: "Open Sans"
19764
19878
  };
19765
- var hoverColor$2 = "#116285";
19766
- var activeColor$3 = "#0E506D";
19767
- var externalLinkColor = "#15749D";
19879
+ var hoverColor$2 = SAPPHIRE_BLUE;
19880
+ var activeColor$3 = PEACOCK_BLUE;
19881
+ var externalLinkColor = MATISSE_BLUE;
19768
19882
  var fallbackValues$a = {
19769
19883
  fontFamily: fontFamily$2,
19770
19884
  hoverColor: hoverColor$2,
@@ -42830,20 +42944,35 @@ var MISC_BILL_ICON = "MISC_SINGLE_BILL";
42830
42944
  var iconsMap = (_iconsMap = {}, _defineProperty(_iconsMap, ACCOUNTS_GENERIC_ICON, AccountGenericIcon), _defineProperty(_iconsMap, ACCOUNTS_CONSTRUCTION_ICON, AccountConstructionIcon), _defineProperty(_iconsMap, ACCOUNTS_HEALTH_ICON, AccountMedicalIcon), _defineProperty(_iconsMap, ACCOUNTS_DENTAL_ICON, AccountDentalIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_ELECTRIC_ICON, AccountElectricIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_GARBAGE_ICON, AccountGarbageIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_GAS_ICON, AccountGasIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_WATER_ICON, AccountWaterIcon), _defineProperty(_iconsMap, PROPERTIES_PERSONAL_ICON, PropertyPersonalIcon), _defineProperty(_iconsMap, PROPERTIES_GARAGE_ICON, PropertyGarageIcon), _defineProperty(_iconsMap, PROPERTIES_BUSINESS_ICON, PropertyBusinessIcon), _defineProperty(_iconsMap, PROPERTIES_STOREFRONT_ICON, PropertyStorefrontIcon), _defineProperty(_iconsMap, PROPERTIES_APARTMENT_ICON, PropertyApartmentIcon), _defineProperty(_iconsMap, PROPERTIES_LAND_ICON, PropertyLandIcon), _defineProperty(_iconsMap, PROPERTIES_CAR_ICON, PropertyCarIcon), _defineProperty(_iconsMap, PROPERTIES_MOTORCYCLE_ICON, PropertyMotorcycleIcon), _defineProperty(_iconsMap, PROPERTIES_COMMERCIAL_AUTO_ICON, PropertyCommercialVehicleIcon), _defineProperty(_iconsMap, MISC_BILL_ICON, AccountBillIcon), _iconsMap);
42831
42945
 
42832
42946
  var background$3 = {
42833
- "default": "".concat(WHITE),
42834
- hover: "".concat(CORNFLOWER_BLUE)
42947
+ "default": MOON_RAKER
42835
42948
  };
42836
42949
  var color$b = {
42837
- "default": "".concat(ROYAL_BLUE_VIVID)
42950
+ "default": ROYAL_BLUE_VIVID
42838
42951
  };
42839
42952
  var fallbackValues$I = {
42840
42953
  background: background$3,
42841
42954
  color: color$b
42842
42955
  };
42843
42956
 
42957
+ var Container = styled(Box).withConfig({
42958
+ displayName: "LinkCardstyled__Container",
42959
+ componentId: "sc-l5q1h2-0"
42960
+ })(["display:flex;flex-direction:column;align-items:flex-start;width:100%;gap:40px;flex-shrink:0;align-self:stretch;border-radius:8px;&:hover,&:active{cursor:pointer;box-shadow:0px 0px 0px 0px rgba(41,42,51,0.1),0px 5px 11px 0px rgba(41,42,51,0.1),0px 4px 19px 0px rgba(41,42,51,0.09),0px 27px 26px 0px rgba(41,42,51,0.05),0px 56px 31px 0px rgba(41,42,51,0.01),0px 80px 33px 0px rgba(41,42,51,0);}&:hover:not(:active){border:1px solid ", ";background-color:", ";}&:active{border:1px solid ", ";}"], MOON_RAKER, LINK_WATER, ROYAL_BLUE_VIVID);
42961
+ var Title$2 = styled(Heading$1).withConfig({
42962
+ displayName: "LinkCardstyled__Title",
42963
+ componentId: "sc-l5q1h2-1"
42964
+ })(["display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;overflow:hidden;text-overflow:ellipsis;font-size:16px;line-height:150%;background-color:transparent;"]);
42965
+ var Subtitle = styled(Paragraph$1).withConfig({
42966
+ displayName: "LinkCardstyled__Subtitle",
42967
+ componentId: "sc-l5q1h2-2"
42968
+ })(["overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;font-size:14px;line-height:150 %;letter-spacing:0.14px;"]);
42969
+ var Footer = styled(Stack).withConfig({
42970
+ displayName: "LinkCardstyled__Footer",
42971
+ componentId: "sc-l5q1h2-3"
42972
+ })(["align-items:center;width:100%;"]);
42973
+
42844
42974
  var LinkCard = function LinkCard(_ref) {
42845
- var _ref$variant = _ref.variant,
42846
- _ref$title = _ref.title,
42975
+ var _ref$title = _ref.title,
42847
42976
  title = _ref$title === void 0 ? "Test Workflow" : _ref$title,
42848
42977
  _ref$subtitle = _ref.subtitle,
42849
42978
  subtitle = _ref$subtitle === void 0 ? "Link your benefit plan" : _ref$subtitle,
@@ -42859,19 +42988,22 @@ var LinkCard = function LinkCard(_ref) {
42859
42988
  extraHoverStyles = _ref$extraHoverStyles === void 0 ? "" : _ref$extraHoverStyles,
42860
42989
  _ref$extraActiveStyle = _ref.extraActiveStyles,
42861
42990
  extraActiveStyles = _ref$extraActiveStyle === void 0 ? "" : _ref$extraActiveStyle;
42862
- var activeAndHoverStyles = "cursor: pointer;\n border-radius: 8px;\n border: 1px solid ".concat(themeValues.color, ";\n box-shadow: 0px 0px 0px 0px rgba(41, 42, 51, 0.10), 0px 5px 11px 0px rgba(41, 42, 51, 0.10), 0px 4px 19px 0px rgba(41, 42, 51, 0.09), 0px 27px 26px 0px rgba(41, 42, 51, 0.05), 0px 56px 31px 0px rgba(41, 42, 51, 0.01), 0px 80px 33px 0px rgba(41, 42, 51, 0.00);");
42863
- return /*#__PURE__*/React.createElement(Box, {
42864
- border: "1px solid ".concat(MOON_RAKER, ";"),
42991
+
42992
+ var _useContext = useContext(ThemeContext),
42993
+ isMobile = _useContext.isMobile;
42994
+
42995
+ return /*#__PURE__*/React.createElement(Container, {
42996
+ border: "1px solid ".concat(themeValues.background, ";"),
42865
42997
  borderRadius: "8px",
42866
42998
  dataQa: "link-card-".concat(title),
42867
42999
  width: "100%",
42868
- maxWidth: "288px",
42869
- minWidth: "240px",
43000
+ maxWidth: isMobile ? "100%" : "288px",
43001
+ minWidth: isMobile ? "240px" : "288px",
42870
43002
  minHeight: "141px",
42871
43003
  padding: "24px",
42872
- extraStyles: "\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n width: 100%;\n gap: 40px;\n flex-shrink: 0;\n align-self: stretch;\n ".concat(extraStyles, "\n "),
42873
- hoverStyles: "".concat(activeAndHoverStyles, "\n border: 0;\n ").concat(extraHoverStyles, "\n "),
42874
- activeStyles: "".concat(activeAndHoverStyles, "\n background-color: ").concat(CORNFLOWER_BLUE, ";\n ").concat(extraActiveStyles, "\n "),
43004
+ extraStyles: extraStyles,
43005
+ hoverStyles: extraHoverStyles,
43006
+ activeStyles: extraActiveStyles,
42875
43007
  onClick: onClick
42876
43008
  }, /*#__PURE__*/React.createElement(Stack, {
42877
43009
  childGap: 0,
@@ -42884,30 +43016,27 @@ var LinkCard = function LinkCard(_ref) {
42884
43016
  }, /*#__PURE__*/React.createElement(Box, {
42885
43017
  padding: 0,
42886
43018
  width: "100%"
42887
- }, /*#__PURE__*/React.createElement(Heading$1, {
43019
+ }, /*#__PURE__*/React.createElement(Title$2, {
42888
43020
  variant: "h6",
42889
43021
  weight: FONT_WEIGHT_SEMIBOLD,
42890
43022
  color: themeValues.color,
42891
- margin: 0,
42892
- extraStyles: "display: -webkit-box; \n -webkit-box-orient: vertical; \n -webkit-line-clamp: 2; \n align-self: stretch;\n overflow: hidden; \n text-overflow: ellipsis; \n font-family: Public Sans; \n font-size: 16px; \n font-style: normal; \n font-weight: 600; \n line-height: 150%;\n ".concat(extraStyles, "\n ")
43023
+ margin: 0
42893
43024
  }, title)), /*#__PURE__*/React.createElement(Box, {
42894
43025
  padding: "0 0 40px",
42895
43026
  width: "100%"
42896
- }, /*#__PURE__*/React.createElement(Paragraph$1, {
43027
+ }, /*#__PURE__*/React.createElement(Subtitle, {
42897
43028
  variant: "pS",
42898
- color: themeValues.color,
42899
- extraStyles: "overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; align-self: stretch; /* CB Standard/Desktop/D - P Small - Regular */ font-family: Public Sans; font-size: 14px; font-style: normal; font-weight: 400; line-height: 150%; /* 21px */ letter-spacing: 0.14px;"
43029
+ color: themeValues.color
42900
43030
  }, subtitle)), /*#__PURE__*/React.createElement(Box, {
42901
43031
  background: "transparent",
42902
43032
  borderWidthOverride: "0 0 0 0",
42903
43033
  padding: "0",
42904
43034
  width: "100%"
42905
- }, /*#__PURE__*/React.createElement(Stack, {
43035
+ }, /*#__PURE__*/React.createElement(Footer, {
42906
43036
  direction: "row",
42907
43037
  childGap: "6px",
42908
- justify: "space-between",
42909
- extraStyles: "width: 100%; justify-content: space-between"
42910
- }, showLeft && leftContent, showRight && rightContent))));
43038
+ justify: "space-between"
43039
+ }, showLeft && !leftContent && /*#__PURE__*/React.createElement(Box, null), showLeft && leftContent, showRight && rightContent))));
42911
43040
  };
42912
43041
 
42913
43042
  var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$I, "default");
@@ -50273,5 +50402,5 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
50273
50402
 
50274
50403
  var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$U));
50275
50404
 
50276
- export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
50405
+ export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
50277
50406
  //# sourceMappingURL=index.esm.js.map