@thecb/components 8.3.1-beta.8 → 8.3.1

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,293 @@
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
+ // WHITE
15
+ declare const WHITE: Color;
16
+ declare const SOLITUDE_WHITE: Color;
17
+ declare const SEASHELL_WHITE: Color;
18
+ declare const ALABASTER_WHITE: Color;
19
+ declare const AQUA_HAZE_WHITE: Color;
20
+ declare const BLEACH_WHITE: Color;
21
+ declare const CATSKILL_WHITE: Color;
22
+ declare const HALF_COLONIAL_WHITE: Color;
23
+ // GREY
24
+ declare const ATHENS_GREY: Color;
25
+ declare const ALTO_GREY: Color;
26
+ declare const SILVER_GREY: Color;
27
+ declare const PEWTER_GREY: Color;
28
+ declare const ASH_GREY: Color;
29
+ declare const IRON_GREY: Color;
30
+ declare const GHOST_GREY: Color;
31
+ declare const DUSTY_GREY: Color;
32
+ declare const REGENT_GREY: Color;
33
+ declare const STORM_GREY: Color;
34
+ declare const TROUT_GREY: Color;
35
+ declare const MINESHAFT_GREY: Color;
36
+ declare const SOOT_GREY: Color;
37
+ declare const FIREFLY_GREY: Color;
38
+ declare const BRIGHT_GREY: Color;
39
+ declare const CHARADE_GREY: Color;
40
+ declare const GRECIAN_GREY: Color;
41
+ declare const BLACK_SQUEEZE: Color;
42
+ declare const GREY_CHATEAU: Color;
43
+ declare const COOL_GREY_05: Color;
44
+ // BLUE
45
+ declare const CLOUDBURST_BLUE: Color;
46
+ declare const ZODIAC_BLUE: Color;
47
+ declare const CONGRESS_BLUE: Color;
48
+ declare const SCIENCE_BLUE: Color;
49
+ declare const MARINER_BLUE: Color;
50
+ declare const CURIOUS_BLUE: Color;
51
+ declare const SELAGO_BLUE: Color;
52
+ declare const ONAHAU_BLUE: Color;
53
+ declare const PICKLED_BLUE: Color;
54
+ declare const CERULEAN_BLUE: Color;
55
+ declare const FOAM_BLUE: Color;
56
+ declare const CELLO_BLUE: Color;
57
+ declare const BOSTON_BLUE: Color;
58
+ declare const INFO_BLUE: Color;
59
+ declare const CORNFLOWER_BLUE: Color;
60
+ declare const HOVER_LIGHT_BLUE: Color;
61
+ declare const MATISSE_BLUE: Color;
62
+ declare const ROYAL_BLUE: Color;
63
+ declare const ROYAL_BLUE_VIVID: Color;
64
+ declare const ASTRAL_BLUE: Color;
65
+ declare const SAPPHIRE_BLUE: Color;
66
+ declare const PEACOCK_BLUE: Color;
67
+ // GREEN
68
+ declare const FOREST_GREEN: Color;
69
+ declare const MEADOW_GREEN: Color;
70
+ declare const POLAR_GREEN: Color;
71
+ declare const ICE_GREEN: Color;
72
+ declare const HAZE_GREEN: Color;
73
+ declare const EMERALD_GREEN: Color;
74
+ declare const HINT_GREEN: Color;
75
+ declare const SEA_GREEN: Color;
76
+ // YELLOW
77
+ declare const SELECTIVE_YELLOW: Color;
78
+ declare const MUSTARD_YELLOW: Color;
79
+ declare const FIRE_YELLOW: Color;
80
+ // ORANGE
81
+ declare const CARROT_ORANGE: Color;
82
+ declare const ZEST_ORANGE: Color;
83
+ declare const APRICOT_ORANGE: Color;
84
+ // RED
85
+ declare const RED: Color;
86
+ declare const CRIMSON_RED: Color;
87
+ declare const THUNDERBIRD_RED: Color;
88
+ declare const RAZZMATAZZ_RED: Color;
89
+ declare const RASPBERRY: Color;
90
+ declare const FANTASY_RED: Color;
91
+ declare const COSMOS_RED: Color;
92
+ declare const BLUSH_RED: Color;
93
+
94
+ declare const ERROR_COLOR: Color;
95
+
96
+ declare const ALERT_COLORS: {
97
+ warn: ColorSet;
98
+ info: ColorSet;
99
+ error: ColorSet;
100
+ success: ColorSet;
101
+ text: Color;
102
+ link: Color;
103
+ };
104
+
105
+ declare const PILL_COLORS: {
106
+ danger: {
107
+ background: Color;
108
+ text: Color;
109
+ };
110
+ neutral: {
111
+ background: Color;
112
+ text: Color;
113
+ };
114
+ success: {
115
+ background: Color;
116
+ text: Color;
117
+ };
118
+ warning: {
119
+ background: Color;
120
+ text: Color;
121
+ };
122
+ };
123
+
124
+ declare const colors_d_BLACK: typeof BLACK;
125
+ declare const colors_d_TRANSPARENT: typeof TRANSPARENT;
126
+ declare const colors_d_WHITE: typeof WHITE;
127
+ declare const colors_d_SOLITUDE_WHITE: typeof SOLITUDE_WHITE;
128
+ declare const colors_d_SEASHELL_WHITE: typeof SEASHELL_WHITE;
129
+ declare const colors_d_ALABASTER_WHITE: typeof ALABASTER_WHITE;
130
+ declare const colors_d_AQUA_HAZE_WHITE: typeof AQUA_HAZE_WHITE;
131
+ declare const colors_d_BLEACH_WHITE: typeof BLEACH_WHITE;
132
+ declare const colors_d_CATSKILL_WHITE: typeof CATSKILL_WHITE;
133
+ declare const colors_d_HALF_COLONIAL_WHITE: typeof HALF_COLONIAL_WHITE;
134
+ declare const colors_d_ATHENS_GREY: typeof ATHENS_GREY;
135
+ declare const colors_d_ALTO_GREY: typeof ALTO_GREY;
136
+ declare const colors_d_SILVER_GREY: typeof SILVER_GREY;
137
+ declare const colors_d_PEWTER_GREY: typeof PEWTER_GREY;
138
+ declare const colors_d_ASH_GREY: typeof ASH_GREY;
139
+ declare const colors_d_IRON_GREY: typeof IRON_GREY;
140
+ declare const colors_d_GHOST_GREY: typeof GHOST_GREY;
141
+ declare const colors_d_DUSTY_GREY: typeof DUSTY_GREY;
142
+ declare const colors_d_REGENT_GREY: typeof REGENT_GREY;
143
+ declare const colors_d_STORM_GREY: typeof STORM_GREY;
144
+ declare const colors_d_TROUT_GREY: typeof TROUT_GREY;
145
+ declare const colors_d_MINESHAFT_GREY: typeof MINESHAFT_GREY;
146
+ declare const colors_d_SOOT_GREY: typeof SOOT_GREY;
147
+ declare const colors_d_FIREFLY_GREY: typeof FIREFLY_GREY;
148
+ declare const colors_d_BRIGHT_GREY: typeof BRIGHT_GREY;
149
+ declare const colors_d_CHARADE_GREY: typeof CHARADE_GREY;
150
+ declare const colors_d_GRECIAN_GREY: typeof GRECIAN_GREY;
151
+ declare const colors_d_BLACK_SQUEEZE: typeof BLACK_SQUEEZE;
152
+ declare const colors_d_GREY_CHATEAU: typeof GREY_CHATEAU;
153
+ declare const colors_d_COOL_GREY_05: typeof COOL_GREY_05;
154
+ declare const colors_d_CLOUDBURST_BLUE: typeof CLOUDBURST_BLUE;
155
+ declare const colors_d_ZODIAC_BLUE: typeof ZODIAC_BLUE;
156
+ declare const colors_d_CONGRESS_BLUE: typeof CONGRESS_BLUE;
157
+ declare const colors_d_SCIENCE_BLUE: typeof SCIENCE_BLUE;
158
+ declare const colors_d_MARINER_BLUE: typeof MARINER_BLUE;
159
+ declare const colors_d_CURIOUS_BLUE: typeof CURIOUS_BLUE;
160
+ declare const colors_d_SELAGO_BLUE: typeof SELAGO_BLUE;
161
+ declare const colors_d_ONAHAU_BLUE: typeof ONAHAU_BLUE;
162
+ declare const colors_d_PICKLED_BLUE: typeof PICKLED_BLUE;
163
+ declare const colors_d_CERULEAN_BLUE: typeof CERULEAN_BLUE;
164
+ declare const colors_d_FOAM_BLUE: typeof FOAM_BLUE;
165
+ declare const colors_d_CELLO_BLUE: typeof CELLO_BLUE;
166
+ declare const colors_d_BOSTON_BLUE: typeof BOSTON_BLUE;
167
+ declare const colors_d_INFO_BLUE: typeof INFO_BLUE;
168
+ declare const colors_d_CORNFLOWER_BLUE: typeof CORNFLOWER_BLUE;
169
+ declare const colors_d_HOVER_LIGHT_BLUE: typeof HOVER_LIGHT_BLUE;
170
+ declare const colors_d_MATISSE_BLUE: typeof MATISSE_BLUE;
171
+ declare const colors_d_ROYAL_BLUE: typeof ROYAL_BLUE;
172
+ declare const colors_d_ROYAL_BLUE_VIVID: typeof ROYAL_BLUE_VIVID;
173
+ declare const colors_d_ASTRAL_BLUE: typeof ASTRAL_BLUE;
174
+ declare const colors_d_SAPPHIRE_BLUE: typeof SAPPHIRE_BLUE;
175
+ declare const colors_d_PEACOCK_BLUE: typeof PEACOCK_BLUE;
176
+ declare const colors_d_FOREST_GREEN: typeof FOREST_GREEN;
177
+ declare const colors_d_MEADOW_GREEN: typeof MEADOW_GREEN;
178
+ declare const colors_d_POLAR_GREEN: typeof POLAR_GREEN;
179
+ declare const colors_d_ICE_GREEN: typeof ICE_GREEN;
180
+ declare const colors_d_HAZE_GREEN: typeof HAZE_GREEN;
181
+ declare const colors_d_EMERALD_GREEN: typeof EMERALD_GREEN;
182
+ declare const colors_d_HINT_GREEN: typeof HINT_GREEN;
183
+ declare const colors_d_SEA_GREEN: typeof SEA_GREEN;
184
+ declare const colors_d_SELECTIVE_YELLOW: typeof SELECTIVE_YELLOW;
185
+ declare const colors_d_MUSTARD_YELLOW: typeof MUSTARD_YELLOW;
186
+ declare const colors_d_FIRE_YELLOW: typeof FIRE_YELLOW;
187
+ declare const colors_d_CARROT_ORANGE: typeof CARROT_ORANGE;
188
+ declare const colors_d_ZEST_ORANGE: typeof ZEST_ORANGE;
189
+ declare const colors_d_APRICOT_ORANGE: typeof APRICOT_ORANGE;
190
+ declare const colors_d_RED: typeof RED;
191
+ declare const colors_d_CRIMSON_RED: typeof CRIMSON_RED;
192
+ declare const colors_d_THUNDERBIRD_RED: typeof THUNDERBIRD_RED;
193
+ declare const colors_d_RAZZMATAZZ_RED: typeof RAZZMATAZZ_RED;
194
+ declare const colors_d_RASPBERRY: typeof RASPBERRY;
195
+ declare const colors_d_FANTASY_RED: typeof FANTASY_RED;
196
+ declare const colors_d_COSMOS_RED: typeof COSMOS_RED;
197
+ declare const colors_d_BLUSH_RED: typeof BLUSH_RED;
198
+ declare const colors_d_ERROR_COLOR: typeof ERROR_COLOR;
199
+ declare const colors_d_ALERT_COLORS: typeof ALERT_COLORS;
200
+ declare const colors_d_PILL_COLORS: typeof PILL_COLORS;
201
+ declare namespace colors_d {
202
+ export {
203
+ colors_d_BLACK as BLACK,
204
+ colors_d_TRANSPARENT as TRANSPARENT,
205
+ colors_d_WHITE as WHITE,
206
+ colors_d_SOLITUDE_WHITE as SOLITUDE_WHITE,
207
+ colors_d_SEASHELL_WHITE as SEASHELL_WHITE,
208
+ colors_d_ALABASTER_WHITE as ALABASTER_WHITE,
209
+ colors_d_AQUA_HAZE_WHITE as AQUA_HAZE_WHITE,
210
+ colors_d_BLEACH_WHITE as BLEACH_WHITE,
211
+ colors_d_CATSKILL_WHITE as CATSKILL_WHITE,
212
+ colors_d_HALF_COLONIAL_WHITE as HALF_COLONIAL_WHITE,
213
+ colors_d_ATHENS_GREY as ATHENS_GREY,
214
+ colors_d_ALTO_GREY as ALTO_GREY,
215
+ colors_d_SILVER_GREY as SILVER_GREY,
216
+ colors_d_PEWTER_GREY as PEWTER_GREY,
217
+ colors_d_ASH_GREY as ASH_GREY,
218
+ colors_d_IRON_GREY as IRON_GREY,
219
+ colors_d_GHOST_GREY as GHOST_GREY,
220
+ colors_d_DUSTY_GREY as DUSTY_GREY,
221
+ colors_d_REGENT_GREY as REGENT_GREY,
222
+ colors_d_STORM_GREY as STORM_GREY,
223
+ colors_d_TROUT_GREY as TROUT_GREY,
224
+ colors_d_MINESHAFT_GREY as MINESHAFT_GREY,
225
+ colors_d_SOOT_GREY as SOOT_GREY,
226
+ colors_d_FIREFLY_GREY as FIREFLY_GREY,
227
+ colors_d_BRIGHT_GREY as BRIGHT_GREY,
228
+ colors_d_CHARADE_GREY as CHARADE_GREY,
229
+ colors_d_GRECIAN_GREY as GRECIAN_GREY,
230
+ colors_d_BLACK_SQUEEZE as BLACK_SQUEEZE,
231
+ colors_d_GREY_CHATEAU as GREY_CHATEAU,
232
+ colors_d_COOL_GREY_05 as COOL_GREY_05,
233
+ colors_d_CLOUDBURST_BLUE as CLOUDBURST_BLUE,
234
+ colors_d_ZODIAC_BLUE as ZODIAC_BLUE,
235
+ colors_d_CONGRESS_BLUE as CONGRESS_BLUE,
236
+ colors_d_SCIENCE_BLUE as SCIENCE_BLUE,
237
+ colors_d_MARINER_BLUE as MARINER_BLUE,
238
+ colors_d_CURIOUS_BLUE as CURIOUS_BLUE,
239
+ colors_d_SELAGO_BLUE as SELAGO_BLUE,
240
+ colors_d_ONAHAU_BLUE as ONAHAU_BLUE,
241
+ colors_d_PICKLED_BLUE as PICKLED_BLUE,
242
+ colors_d_CERULEAN_BLUE as CERULEAN_BLUE,
243
+ colors_d_FOAM_BLUE as FOAM_BLUE,
244
+ colors_d_CELLO_BLUE as CELLO_BLUE,
245
+ colors_d_BOSTON_BLUE as BOSTON_BLUE,
246
+ colors_d_INFO_BLUE as INFO_BLUE,
247
+ colors_d_CORNFLOWER_BLUE as CORNFLOWER_BLUE,
248
+ colors_d_HOVER_LIGHT_BLUE as HOVER_LIGHT_BLUE,
249
+ colors_d_MATISSE_BLUE as MATISSE_BLUE,
250
+ colors_d_ROYAL_BLUE as ROYAL_BLUE,
251
+ colors_d_ROYAL_BLUE_VIVID as ROYAL_BLUE_VIVID,
252
+ colors_d_ASTRAL_BLUE as ASTRAL_BLUE,
253
+ colors_d_SAPPHIRE_BLUE as SAPPHIRE_BLUE,
254
+ colors_d_PEACOCK_BLUE as PEACOCK_BLUE,
255
+ colors_d_FOREST_GREEN as FOREST_GREEN,
256
+ colors_d_MEADOW_GREEN as MEADOW_GREEN,
257
+ colors_d_POLAR_GREEN as POLAR_GREEN,
258
+ colors_d_ICE_GREEN as ICE_GREEN,
259
+ colors_d_HAZE_GREEN as HAZE_GREEN,
260
+ colors_d_EMERALD_GREEN as EMERALD_GREEN,
261
+ colors_d_HINT_GREEN as HINT_GREEN,
262
+ colors_d_SEA_GREEN as SEA_GREEN,
263
+ colors_d_SELECTIVE_YELLOW as SELECTIVE_YELLOW,
264
+ colors_d_MUSTARD_YELLOW as MUSTARD_YELLOW,
265
+ colors_d_FIRE_YELLOW as FIRE_YELLOW,
266
+ colors_d_CARROT_ORANGE as CARROT_ORANGE,
267
+ colors_d_ZEST_ORANGE as ZEST_ORANGE,
268
+ colors_d_APRICOT_ORANGE as APRICOT_ORANGE,
269
+ colors_d_RED as RED,
270
+ colors_d_CRIMSON_RED as CRIMSON_RED,
271
+ colors_d_THUNDERBIRD_RED as THUNDERBIRD_RED,
272
+ colors_d_RAZZMATAZZ_RED as RAZZMATAZZ_RED,
273
+ colors_d_RASPBERRY as RASPBERRY,
274
+ colors_d_FANTASY_RED as FANTASY_RED,
275
+ colors_d_COSMOS_RED as COSMOS_RED,
276
+ colors_d_BLUSH_RED as BLUSH_RED,
277
+ colors_d_ERROR_COLOR as ERROR_COLOR,
278
+ colors_d_ALERT_COLORS as ALERT_COLORS,
279
+ colors_d_PILL_COLORS as PILL_COLORS,
280
+ };
281
+ }
282
+
283
+
284
+
285
+ declare namespace index_d {
286
+ export {
287
+ colors_d as colors,
288
+ };
289
+ }
290
+
3
291
  type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
4
292
 
5
293
  interface ButtonWithActionProps {
@@ -698,5 +986,5 @@ interface DefaultPageTemplateProps {
698
986
  declare const DefaultPageTemplate: React.FC<Expand<DefaultPageTemplateProps> &
699
987
  React.HTMLAttributes<HTMLElement>>;
700
988
 
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 };
989
+ 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
990
  //# sourceMappingURL=index.d.ts.map
package/dist/index.esm.js CHANGED
@@ -19824,7 +19824,7 @@ var StyledInternalLink = styled( /*#__PURE__*/forwardRef(function (_ref, ref) {
19824
19824
  })).withConfig({
19825
19825
  displayName: "InternalLinkstyled__StyledInternalLink",
19826
19826
  componentId: "sc-cuqxud-0"
19827
- })(["display:flex;color:", ";font-weight:", ";line-height:", ";font-size:", ";font-family:", ";margin:", ";background-color:", ";&:hover{color:", ";text-decoration:underline;}&:focus{outline:3px solid ", ";outline-offset:2px;}&:active{text-decoration:underline;color:", ";}", ""], function (_ref2) {
19827
+ })(["display:flex;color:", ";font-weight:", ";line-height:", ";font-size:", ";font-family:", ";margin:", ";&:hover{color:", ";text-decoration:underline;}&:focus{outline:3px solid ", ";outline-offset:2px;}&:active{text-decoration:underline;color:", ";}", ""], function (_ref2) {
19828
19828
  var color = _ref2.color,
19829
19829
  active = _ref2.active,
19830
19830
  activeColor = _ref2.activeColor;
@@ -19845,16 +19845,13 @@ var StyledInternalLink = styled( /*#__PURE__*/forwardRef(function (_ref, ref) {
19845
19845
  var margin = _ref7.margin;
19846
19846
  return margin;
19847
19847
  }, function (_ref8) {
19848
- var matchesCurrentRoute = _ref8.matchesCurrentRoute;
19849
- return matchesCurrentRoute ? INFO_BLUE : 'transparent';
19850
- }, function (_ref9) {
19851
- var hoverColor = _ref9.hoverColor;
19848
+ var hoverColor = _ref8.hoverColor;
19852
19849
  return hoverColor;
19853
- }, ROYAL_BLUE, function (_ref10) {
19854
- var activeColor = _ref10.activeColor;
19850
+ }, ROYAL_BLUE, function (_ref9) {
19851
+ var activeColor = _ref9.activeColor;
19855
19852
  return activeColor;
19856
- }, function (_ref11) {
19857
- var extrastyles = _ref11.extrastyles;
19853
+ }, function (_ref10) {
19854
+ var extrastyles = _ref10.extrastyles;
19858
19855
  return extrastyles;
19859
19856
  });
19860
19857
  /* eslint-enable no-unused-vars */
@@ -21505,12 +21502,11 @@ _curry2(function test(pattern, str) {
21505
21502
 
21506
21503
  var URL_TEST = /(([a-z]{3,6}:\/\/)|(^|\s))([a-zA-Z0-9\-]+\.)+[a-z]{2,13}[\.\?\=\&\%\/\w\-]*\b([^@]|$)/;
21507
21504
 
21508
- var _excluded$m = ["url", "matchesCurrentRoute", "disabled", "fileLink", "extraStyles", "linkExtraStyles", "newTab", "dataQa"];
21505
+ var _excluded$m = ["url", "disabled", "fileLink", "extraStyles", "linkExtraStyles", "newTab", "dataQa"];
21509
21506
 
21510
21507
  var ButtonWithLink = function ButtonWithLink(_ref) {
21511
21508
  var _ref$url = _ref.url,
21512
21509
  url = _ref$url === void 0 ? "/" : _ref$url,
21513
- _ref$matchesCurrentRo = _ref.matchesCurrentRoute,
21514
21510
  _ref$disabled = _ref.disabled,
21515
21511
  disabled = _ref$disabled === void 0 ? false : _ref$disabled,
21516
21512
  _ref$fileLink = _ref.fileLink,
@@ -21525,7 +21521,6 @@ var ButtonWithLink = function ButtonWithLink(_ref) {
21525
21521
  var ButtonWithLinkWrapper = function ButtonWithLinkWrapper(_ref2) {
21526
21522
  var children = _ref2.children,
21527
21523
  url = _ref2.url,
21528
- matchesCurrentRoute = _ref2.matchesCurrentRoute,
21529
21524
  disabled = _ref2.disabled,
21530
21525
  newTab = _ref2.newTab,
21531
21526
  dataQa = _ref2.dataQa,
@@ -21543,7 +21538,6 @@ var ButtonWithLink = function ButtonWithLink(_ref) {
21543
21538
  dataQa: dataQa
21544
21539
  }, safeChildren(children, /*#__PURE__*/React.createElement("span", null))) : /*#__PURE__*/React.createElement(InternalLink, {
21545
21540
  to: url,
21546
- matchesCurrentRoute: matchesCurrentRoute,
21547
21541
  tabIndex: "-1",
21548
21542
  dataQa: dataQa,
21549
21543
  extraStyles: extraStyles