@thecb/components 8.4.0-beta.2 → 8.4.0-beta.21

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
@@ -4951,8 +4951,8 @@ Name already taken? If you can't use the existing color, then use thesaurus.com
4951
4951
  to the one generated by name-that-color.
4952
4952
  */
4953
4953
  var BLACK = "#000000";
4954
- var TRANSPARENT = "transparent"; // WHITE
4955
-
4954
+ var TRANSPARENT = "transparent";
4955
+ var LINK_WATER = "#FEFEFE";
4956
4956
  var WHITE = "#FFFFFF";
4957
4957
  var SOLITUDE_WHITE = "#EBEDF1";
4958
4958
  var SEASHELL_WHITE = "#F1F1F1";
@@ -4999,6 +4999,7 @@ var MARINER_BLUE = "#2E75D2";
4999
4999
  var CURIOUS_BLUE = "#27A9E1";
5000
5000
  var SELAGO_BLUE = "#F2F8FD";
5001
5001
  var ONAHAU_BLUE = "#D1ECFF";
5002
+ var MOON_RAKER = "#C4CEF4";
5002
5003
  var PICKLED_BLUE = "#2C3E50";
5003
5004
  var CERULEAN_BLUE = "#0D8DC4";
5004
5005
  var FOAM_BLUE = "#EFF4FD";
@@ -5095,6 +5096,7 @@ var colors = /*#__PURE__*/Object.freeze({
5095
5096
  BLACK: BLACK,
5096
5097
  TRANSPARENT: TRANSPARENT,
5097
5098
  WHITE: WHITE,
5099
+ LINK_WATER: LINK_WATER,
5098
5100
  SOLITUDE_WHITE: SOLITUDE_WHITE,
5099
5101
  SEASHELL_WHITE: SEASHELL_WHITE,
5100
5102
  ALABASTER_WHITE: ALABASTER_WHITE,
@@ -5132,6 +5134,7 @@ var colors = /*#__PURE__*/Object.freeze({
5132
5134
  CURIOUS_BLUE: CURIOUS_BLUE,
5133
5135
  SELAGO_BLUE: SELAGO_BLUE,
5134
5136
  ONAHAU_BLUE: ONAHAU_BLUE,
5137
+ MOON_RAKER: MOON_RAKER,
5135
5138
  PICKLED_BLUE: PICKLED_BLUE,
5136
5139
  CERULEAN_BLUE: CERULEAN_BLUE,
5137
5140
  FOAM_BLUE: FOAM_BLUE,
@@ -17666,13 +17669,16 @@ var ArrowRightCircleIconSmall = function ArrowRightCircleIconSmall(_ref) {
17666
17669
 
17667
17670
  var ArrowRightIcon = function ArrowRightIcon(_ref) {
17668
17671
  var _ref$color = _ref.color,
17669
- color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color;
17672
+ color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color,
17673
+ _ref$labeledBy = _ref.labeledBy,
17674
+ labeledBy = _ref$labeledBy === void 0 ? "" : _ref$labeledBy;
17670
17675
  return /*#__PURE__*/React.createElement("svg", {
17671
17676
  xmlns: "http://www.w3.org/2000/svg",
17672
17677
  width: "20",
17673
17678
  height: "20",
17674
17679
  viewBox: "0 0 20 20",
17675
- fill: "none"
17680
+ fill: "none",
17681
+ "aria-labeledBy": labeledBy
17676
17682
  }, /*#__PURE__*/React.createElement("path", {
17677
17683
  fillRule: "evenodd",
17678
17684
  clipRule: "evenodd",
@@ -18094,13 +18100,16 @@ var ChargebackReversalIconMedium = function ChargebackReversalIconMedium(_ref) {
18094
18100
 
18095
18101
  var PlusCircleIcon = function PlusCircleIcon(_ref) {
18096
18102
  var _ref$color = _ref.color,
18097
- color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color;
18103
+ color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color,
18104
+ _ref$labeledBy = _ref.labeledBy,
18105
+ labeledBy = _ref$labeledBy === void 0 ? "" : _ref$labeledBy;
18098
18106
  return /*#__PURE__*/React.createElement("svg", {
18099
18107
  xmlns: "http://www.w3.org/2000/svg",
18100
18108
  width: "20",
18101
18109
  height: "20",
18102
18110
  viewBox: "0 0 20 20",
18103
- fill: "none"
18111
+ fill: "none",
18112
+ "aria-labelledby": labeledBy
18104
18113
  }, /*#__PURE__*/React.createElement("path", {
18105
18114
  fillRule: "evenodd",
18106
18115
  clipRule: "evenodd",
@@ -19759,9 +19768,9 @@ var fontFamily$2 = {
19759
19768
  primary: "Public Sans",
19760
19769
  secondary: "Open Sans"
19761
19770
  };
19762
- var hoverColor$2 = "#116285";
19763
- var activeColor$3 = "#0E506D";
19764
- var externalLinkColor = "#15749D";
19771
+ var hoverColor$2 = SAPPHIRE_BLUE;
19772
+ var activeColor$3 = PEACOCK_BLUE;
19773
+ var externalLinkColor = MATISSE_BLUE;
19765
19774
  var fallbackValues$a = {
19766
19775
  fontFamily: fontFamily$2,
19767
19776
  hoverColor: hoverColor$2,
@@ -42827,78 +42836,99 @@ var MISC_BILL_ICON = "MISC_SINGLE_BILL";
42827
42836
  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);
42828
42837
 
42829
42838
  var background$3 = {
42830
- "default": "".concat(WHITE)
42839
+ "default": MOON_RAKER
42831
42840
  };
42832
42841
  var color$b = {
42833
- "default": "".concat(ROYAL_BLUE_VIVID)
42842
+ "default": ROYAL_BLUE_VIVID
42834
42843
  };
42835
42844
  var fallbackValues$I = {
42836
42845
  background: background$3,
42837
42846
  color: color$b
42838
42847
  };
42839
42848
 
42840
- // import ArrowRightIcon from "../../atoms/icons/ArrowRightIcon";
42849
+ var Container = styled(Box).withConfig({
42850
+ displayName: "LinkCardstyled__Container",
42851
+ componentId: "sc-l5q1h2-0"
42852
+ })(["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);
42853
+ var Title$2 = styled(Heading$1).withConfig({
42854
+ displayName: "LinkCardstyled__Title",
42855
+ componentId: "sc-l5q1h2-1"
42856
+ })(["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;"]);
42857
+ var Subtitle = styled(Paragraph$1).withConfig({
42858
+ displayName: "LinkCardstyled__Subtitle",
42859
+ componentId: "sc-l5q1h2-2"
42860
+ })(["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;"]);
42861
+ var Footer = styled(Stack).withConfig({
42862
+ displayName: "LinkCardstyled__Footer",
42863
+ componentId: "sc-l5q1h2-3"
42864
+ })(["align-items:center;width:100%;"]);
42841
42865
 
42842
42866
  var LinkCard = function LinkCard(_ref) {
42843
- var _ref$variant = _ref.variant,
42844
- _ref$title = _ref.title,
42867
+ var _ref$title = _ref.title,
42845
42868
  title = _ref$title === void 0 ? "Test Workflow" : _ref$title,
42846
42869
  _ref$subtitle = _ref.subtitle,
42847
42870
  subtitle = _ref$subtitle === void 0 ? "Link your benefit plan" : _ref$subtitle,
42848
42871
  themeValues = _ref.themeValues,
42849
- path = _ref.path,
42850
42872
  showLeft = _ref.showLeft,
42851
42873
  leftContent = _ref.leftContent,
42852
42874
  showRight = _ref.showRight,
42853
- rightContent = _ref.rightContent;
42854
- var navigate = useNavigate();
42855
- var activeHoverStyles = "\n border-radius: 8px;\n cursor: pointer;\n border: 1px solid ".concat(themeValues.color, ";\n background: var(--primary-color-primary-10, #EBEFFB);\n /* Primitives/New Shadow/3-Pressed-New */\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);\n .show-on-hover {color: ").concat(themeValues.color, ";}\n ");
42856
- return /*#__PURE__*/React.createElement(Box, {
42857
- background: "#FEFEFE" // --grays-cool-gray-00
42858
- ,
42859
- border: "1px solid #C4CEF4;" // --primary-color-primary-30
42860
- ,
42875
+ rightContent = _ref.rightContent,
42876
+ onClick = _ref.onClick,
42877
+ _ref$extraStyles = _ref.extraStyles,
42878
+ extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
42879
+ _ref$extraHoverStyles = _ref.extraHoverStyles,
42880
+ extraHoverStyles = _ref$extraHoverStyles === void 0 ? "" : _ref$extraHoverStyles,
42881
+ _ref$extraActiveStyle = _ref.extraActiveStyles,
42882
+ extraActiveStyles = _ref$extraActiveStyle === void 0 ? "" : _ref$extraActiveStyle;
42883
+
42884
+ var _useContext = useContext(ThemeContext),
42885
+ isMobile = _useContext.isMobile;
42886
+
42887
+ return /*#__PURE__*/React.createElement(Container, {
42888
+ border: "1px solid ".concat(themeValues.background, ";"),
42861
42889
  borderRadius: "8px",
42862
42890
  dataQa: "link-card-".concat(title),
42863
42891
  width: "100%",
42864
- maxWidth: "288px",
42865
- minWidth: "240px",
42892
+ maxWidth: isMobile ? "100%" : "288px",
42893
+ minWidth: isMobile ? "240px" : "288px",
42866
42894
  minHeight: "141px",
42867
- padding: "16px 24px",
42868
- extraStyles: " display: flex; flex-direction: column; align-items: flex-start; gap: 40px; flex-shrink: 0; align-self: stretch;",
42869
- hoverStyles: activeHoverStyles,
42870
- activeStyles: activeHoverStyles,
42871
- onClick: function onClick() {
42872
- navigate(path);
42873
- }
42895
+ padding: "24px",
42896
+ extraStyles: extraStyles,
42897
+ hoverStyles: extraHoverStyles,
42898
+ activeStyles: extraActiveStyles,
42899
+ onClick: onClick
42874
42900
  }, /*#__PURE__*/React.createElement(Stack, {
42875
42901
  childGap: 0,
42876
42902
  bottomItem: 3,
42903
+ justify: "space-between",
42904
+ style: {
42905
+ width: "100%"
42906
+ },
42877
42907
  fullHeight: true
42878
42908
  }, /*#__PURE__*/React.createElement(Box, {
42879
- padding: "1rem 1rem 0 1rem"
42880
- }, /*#__PURE__*/React.createElement(Heading$1, {
42909
+ padding: 0,
42910
+ width: "100%"
42911
+ }, /*#__PURE__*/React.createElement(Title$2, {
42881
42912
  variant: "h6",
42882
42913
  weight: FONT_WEIGHT_SEMIBOLD,
42883
42914
  color: themeValues.color,
42884
- margin: 0,
42885
- extraStyles: "display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; align-self: stretch; overflow: hidden; text-overflow: ellipsis; font-family: Public Sans; font-size: 16px; font-style: normal; font-weight: 600; line-height: 150%;"
42915
+ margin: 0
42886
42916
  }, title)), /*#__PURE__*/React.createElement(Box, {
42887
- padding: "0 1rem 40px"
42888
- /* minHeight={"4.25rem"}*/
42889
-
42890
- }, /*#__PURE__*/React.createElement(Paragraph$1, {
42917
+ padding: "0 0 40px",
42918
+ width: "100%"
42919
+ }, /*#__PURE__*/React.createElement(Subtitle, {
42891
42920
  variant: "pS",
42892
- color: themeValues.color,
42893
- 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;"
42921
+ color: themeValues.color
42894
42922
  }, subtitle)), /*#__PURE__*/React.createElement(Box, {
42895
42923
  background: "transparent",
42896
42924
  borderWidthOverride: "0 0 0 0",
42897
- padding: "0 1rem 1rem 1rem"
42898
- }, /*#__PURE__*/React.createElement(Stack, {
42925
+ padding: "0",
42926
+ width: "100%"
42927
+ }, /*#__PURE__*/React.createElement(Footer, {
42899
42928
  direction: "row",
42929
+ childGap: "6px",
42900
42930
  justify: "space-between"
42901
- }, showLeft && leftContent, showRight && rightContent))));
42931
+ }, showLeft && !leftContent && /*#__PURE__*/React.createElement(Box, null), showLeft && leftContent, showRight && rightContent))));
42902
42932
  };
42903
42933
 
42904
42934
  var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$I, "default");