@thecb/components 11.6.4 → 11.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +54 -53
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.esm.js +54 -53
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/alert/Alert.theme.js +5 -5
- package/src/components/atoms/button-with-action/ButtonWithAction.theme.js +40 -38
- package/src/components/atoms/dropdown/Dropdown.theme.js +6 -6
- package/src/components/atoms/form-select/FormSelect.styled.js +2 -2
- package/src/components/atoms/form-select/FormSelect.theme.js +6 -3
- package/src/components/atoms/icons/PeriscopeFailedIcon.js +2 -2
- package/src/constants/colors.d.ts +4 -0
- package/src/deprecated/icons/AlertInfoIcon.js +1 -1
- package/src/components/.DS_Store +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ declare const ROYAL_BLUE_VIVID: Color;
|
|
|
67
67
|
declare const ASTRAL_BLUE: Color;
|
|
68
68
|
declare const SAPPHIRE_BLUE: Color;
|
|
69
69
|
declare const PEACOCK_BLUE: Color;
|
|
70
|
+
declare const HAWKES_BLUE: Color;
|
|
70
71
|
|
|
71
72
|
// GREEN
|
|
72
73
|
declare const FOREST_GREEN: Color;
|
|
@@ -98,6 +99,9 @@ declare const FANTASY_RED: Color;
|
|
|
98
99
|
declare const COSMOS_RED: Color;
|
|
99
100
|
declare const BLUSH_RED: Color;
|
|
100
101
|
|
|
102
|
+
// PURPLE
|
|
103
|
+
declare const LUCKY_POINT: Color;
|
|
104
|
+
|
|
101
105
|
declare const ERROR_COLOR: Color;
|
|
102
106
|
declare const ERROR_BACKGROUND_COLOR: Color;
|
|
103
107
|
|
|
@@ -181,6 +185,7 @@ declare const colors_d_ROYAL_BLUE_VIVID: typeof ROYAL_BLUE_VIVID;
|
|
|
181
185
|
declare const colors_d_ASTRAL_BLUE: typeof ASTRAL_BLUE;
|
|
182
186
|
declare const colors_d_SAPPHIRE_BLUE: typeof SAPPHIRE_BLUE;
|
|
183
187
|
declare const colors_d_PEACOCK_BLUE: typeof PEACOCK_BLUE;
|
|
188
|
+
declare const colors_d_HAWKES_BLUE: typeof HAWKES_BLUE;
|
|
184
189
|
declare const colors_d_FOREST_GREEN: typeof FOREST_GREEN;
|
|
185
190
|
declare const colors_d_MEADOW_GREEN: typeof MEADOW_GREEN;
|
|
186
191
|
declare const colors_d_POLAR_GREEN: typeof POLAR_GREEN;
|
|
@@ -203,6 +208,7 @@ declare const colors_d_RASPBERRY: typeof RASPBERRY;
|
|
|
203
208
|
declare const colors_d_FANTASY_RED: typeof FANTASY_RED;
|
|
204
209
|
declare const colors_d_COSMOS_RED: typeof COSMOS_RED;
|
|
205
210
|
declare const colors_d_BLUSH_RED: typeof BLUSH_RED;
|
|
211
|
+
declare const colors_d_LUCKY_POINT: typeof LUCKY_POINT;
|
|
206
212
|
declare const colors_d_ERROR_COLOR: typeof ERROR_COLOR;
|
|
207
213
|
declare const colors_d_ERROR_BACKGROUND_COLOR: typeof ERROR_BACKGROUND_COLOR;
|
|
208
214
|
declare const colors_d_ALERT_COLORS: typeof ALERT_COLORS;
|
|
@@ -261,6 +267,7 @@ declare namespace colors_d {
|
|
|
261
267
|
colors_d_ASTRAL_BLUE as ASTRAL_BLUE,
|
|
262
268
|
colors_d_SAPPHIRE_BLUE as SAPPHIRE_BLUE,
|
|
263
269
|
colors_d_PEACOCK_BLUE as PEACOCK_BLUE,
|
|
270
|
+
colors_d_HAWKES_BLUE as HAWKES_BLUE,
|
|
264
271
|
colors_d_FOREST_GREEN as FOREST_GREEN,
|
|
265
272
|
colors_d_MEADOW_GREEN as MEADOW_GREEN,
|
|
266
273
|
colors_d_POLAR_GREEN as POLAR_GREEN,
|
|
@@ -283,6 +290,7 @@ declare namespace colors_d {
|
|
|
283
290
|
colors_d_FANTASY_RED as FANTASY_RED,
|
|
284
291
|
colors_d_COSMOS_RED as COSMOS_RED,
|
|
285
292
|
colors_d_BLUSH_RED as BLUSH_RED,
|
|
293
|
+
colors_d_LUCKY_POINT as LUCKY_POINT,
|
|
286
294
|
colors_d_ERROR_COLOR as ERROR_COLOR,
|
|
287
295
|
colors_d_ERROR_BACKGROUND_COLOR as ERROR_BACKGROUND_COLOR,
|
|
288
296
|
colors_d_ALERT_COLORS as ALERT_COLORS,
|
package/dist/index.esm.js
CHANGED
|
@@ -11722,14 +11722,15 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
11722
11722
|
|
|
11723
11723
|
var WHITE$1 = WHITE,
|
|
11724
11724
|
TRANSPARENT$1 = TRANSPARENT,
|
|
11725
|
-
SAPPHIRE_BLUE$1 = SAPPHIRE_BLUE,
|
|
11726
11725
|
PEACOCK_BLUE$1 = PEACOCK_BLUE,
|
|
11727
11726
|
MANATEE_GREY$1 = MANATEE_GREY,
|
|
11728
|
-
|
|
11727
|
+
LUCKY_POINT$1 = LUCKY_POINT,
|
|
11729
11728
|
HINT_GREEN$1 = HINT_GREEN,
|
|
11730
11729
|
SEA_GREEN$1 = SEA_GREEN,
|
|
11731
11730
|
RASPBERRY$1 = RASPBERRY,
|
|
11732
|
-
ERROR_COLOR$1 = ERROR_COLOR
|
|
11731
|
+
ERROR_COLOR$1 = ERROR_COLOR,
|
|
11732
|
+
LUCKY_POINT_DARK$1 = LUCKY_POINT_DARK,
|
|
11733
|
+
HAWKES_BLUE$1 = HAWKES_BLUE;
|
|
11733
11734
|
var LINK_TEXT_DECORATION$1 = LINK_TEXT_DECORATION;
|
|
11734
11735
|
var disabledBorderColor = {
|
|
11735
11736
|
primary: MANATEE_GREY$1,
|
|
@@ -11797,13 +11798,13 @@ var padding = {
|
|
|
11797
11798
|
};
|
|
11798
11799
|
var color$2 = {
|
|
11799
11800
|
primary: WHITE$1,
|
|
11800
|
-
secondary:
|
|
11801
|
-
back:
|
|
11801
|
+
secondary: LUCKY_POINT$1,
|
|
11802
|
+
back: LUCKY_POINT$1,
|
|
11802
11803
|
smallPrimary: WHITE$1,
|
|
11803
|
-
smallSecondary:
|
|
11804
|
-
smallGhost:
|
|
11805
|
-
ghost:
|
|
11806
|
-
tertiary:
|
|
11804
|
+
smallSecondary: LUCKY_POINT$1,
|
|
11805
|
+
smallGhost: LUCKY_POINT$1,
|
|
11806
|
+
ghost: LUCKY_POINT$1,
|
|
11807
|
+
tertiary: LUCKY_POINT$1,
|
|
11807
11808
|
danger: WHITE$1,
|
|
11808
11809
|
dangerSecondary: ERROR_COLOR$1,
|
|
11809
11810
|
whitePrimary: WHITE$1,
|
|
@@ -11892,10 +11893,10 @@ var textDecoration = {
|
|
|
11892
11893
|
greenSecondary: "none"
|
|
11893
11894
|
};
|
|
11894
11895
|
var backgroundColor = {
|
|
11895
|
-
primary:
|
|
11896
|
+
primary: LUCKY_POINT$1,
|
|
11896
11897
|
secondary: TRANSPARENT$1,
|
|
11897
11898
|
back: TRANSPARENT$1,
|
|
11898
|
-
smallPrimary:
|
|
11899
|
+
smallPrimary: LUCKY_POINT$1,
|
|
11899
11900
|
smallSecondary: TRANSPARENT$1,
|
|
11900
11901
|
smallGhost: TRANSPARENT$1,
|
|
11901
11902
|
ghost: TRANSPARENT$1,
|
|
@@ -11908,11 +11909,11 @@ var backgroundColor = {
|
|
|
11908
11909
|
greenSecondary: TRANSPARENT$1
|
|
11909
11910
|
};
|
|
11910
11911
|
var border = {
|
|
11911
|
-
primary: "2px solid " +
|
|
11912
|
-
secondary: "2px solid " +
|
|
11913
|
-
back: "2px solid " +
|
|
11914
|
-
smallPrimary: "2px solid " +
|
|
11915
|
-
smallSecondary: "2px solid " +
|
|
11912
|
+
primary: "2px solid " + LUCKY_POINT$1,
|
|
11913
|
+
secondary: "2px solid " + LUCKY_POINT$1,
|
|
11914
|
+
back: "2px solid " + LUCKY_POINT$1,
|
|
11915
|
+
smallPrimary: "2px solid " + LUCKY_POINT$1,
|
|
11916
|
+
smallSecondary: "2px solid " + LUCKY_POINT$1,
|
|
11916
11917
|
smallGhost: "none",
|
|
11917
11918
|
ghost: "none",
|
|
11918
11919
|
tertiary: "none",
|
|
@@ -11924,11 +11925,11 @@ var border = {
|
|
|
11924
11925
|
greenSecondary: "2px solid " + SEA_GREEN$1
|
|
11925
11926
|
};
|
|
11926
11927
|
var hoverBackgroundColor = {
|
|
11927
|
-
primary:
|
|
11928
|
-
secondary:
|
|
11928
|
+
primary: LUCKY_POINT_DARK$1,
|
|
11929
|
+
secondary: HAWKES_BLUE$1,
|
|
11929
11930
|
back: TRANSPARENT$1,
|
|
11930
|
-
smallPrimary:
|
|
11931
|
-
smallSecondary:
|
|
11931
|
+
smallPrimary: LUCKY_POINT_DARK$1,
|
|
11932
|
+
smallSecondary: HAWKES_BLUE$1,
|
|
11932
11933
|
smallGhost: TRANSPARENT$1,
|
|
11933
11934
|
ghost: TRANSPARENT$1,
|
|
11934
11935
|
tertiary: TRANSPARENT$1,
|
|
@@ -11940,11 +11941,11 @@ var hoverBackgroundColor = {
|
|
|
11940
11941
|
greenSecondary: HINT_GREEN$1
|
|
11941
11942
|
};
|
|
11942
11943
|
var hoverBorderColor = {
|
|
11943
|
-
primary:
|
|
11944
|
-
secondary:
|
|
11944
|
+
primary: LUCKY_POINT_DARK$1,
|
|
11945
|
+
secondary: LUCKY_POINT$1,
|
|
11945
11946
|
back: "#DCEAF1",
|
|
11946
|
-
smallPrimary:
|
|
11947
|
-
smallSecondary:
|
|
11947
|
+
smallPrimary: LUCKY_POINT_DARK$1,
|
|
11948
|
+
smallSecondary: LUCKY_POINT$1,
|
|
11948
11949
|
smallGhost: TRANSPARENT$1,
|
|
11949
11950
|
ghost: TRANSPARENT$1,
|
|
11950
11951
|
tertiary: TRANSPARENT$1,
|
|
@@ -11957,13 +11958,13 @@ var hoverBorderColor = {
|
|
|
11957
11958
|
};
|
|
11958
11959
|
var hoverColor = {
|
|
11959
11960
|
primary: WHITE$1,
|
|
11960
|
-
secondary:
|
|
11961
|
-
back:
|
|
11961
|
+
secondary: LUCKY_POINT$1,
|
|
11962
|
+
back: LUCKY_POINT$1,
|
|
11962
11963
|
smallPrimary: WHITE$1,
|
|
11963
|
-
smallSecondary:
|
|
11964
|
-
smallGhost:
|
|
11965
|
-
ghost:
|
|
11966
|
-
tertiary:
|
|
11964
|
+
smallSecondary: LUCKY_POINT$1,
|
|
11965
|
+
smallGhost: LUCKY_POINT$1,
|
|
11966
|
+
ghost: LUCKY_POINT$1,
|
|
11967
|
+
tertiary: LUCKY_POINT$1,
|
|
11967
11968
|
danger: WHITE$1,
|
|
11968
11969
|
dangerSecondary: "#B10541",
|
|
11969
11970
|
whitePrimary: WHITE$1,
|
|
@@ -11972,11 +11973,11 @@ var hoverColor = {
|
|
|
11972
11973
|
greenSecondary: SEA_GREEN$1
|
|
11973
11974
|
};
|
|
11974
11975
|
var activeBackgroundColor = {
|
|
11975
|
-
primary:
|
|
11976
|
-
secondary: "
|
|
11976
|
+
primary: LUCKY_POINT_DARK$1,
|
|
11977
|
+
secondary: adjustHexColor(HAWKES_BLUE$1, 10, "darken"),
|
|
11977
11978
|
back: TRANSPARENT$1,
|
|
11978
|
-
smallPrimary:
|
|
11979
|
-
smallSecondary: "
|
|
11979
|
+
smallPrimary: LUCKY_POINT_DARK$1,
|
|
11980
|
+
smallSecondary: adjustHexColor(HAWKES_BLUE$1, 10, "darken"),
|
|
11980
11981
|
smallGhost: TRANSPARENT$1,
|
|
11981
11982
|
ghost: TRANSPARENT$1,
|
|
11982
11983
|
tertiary: TRANSPARENT$1,
|
|
@@ -11988,11 +11989,11 @@ var activeBackgroundColor = {
|
|
|
11988
11989
|
greenSecondary: adjustHexColor(HINT_GREEN$1, 5, "darken")
|
|
11989
11990
|
};
|
|
11990
11991
|
var activeBorderColor = {
|
|
11991
|
-
primary:
|
|
11992
|
-
secondary:
|
|
11992
|
+
primary: adjustHexColor(LUCKY_POINT_DARK$1, 10, "darken"),
|
|
11993
|
+
secondary: LUCKY_POINT$1,
|
|
11993
11994
|
back: PEACOCK_BLUE$1,
|
|
11994
|
-
smallPrimary:
|
|
11995
|
-
smallSecondary:
|
|
11995
|
+
smallPrimary: adjustHexColor(LUCKY_POINT_DARK$1, 10, "darken"),
|
|
11996
|
+
smallSecondary: LUCKY_POINT$1,
|
|
11996
11997
|
smallGhost: TRANSPARENT$1,
|
|
11997
11998
|
ghost: TRANSPARENT$1,
|
|
11998
11999
|
tertiary: TRANSPARENT$1,
|
|
@@ -12005,7 +12006,7 @@ var activeBorderColor = {
|
|
|
12005
12006
|
};
|
|
12006
12007
|
var activeColor = {
|
|
12007
12008
|
primary: WHITE$1,
|
|
12008
|
-
secondary:
|
|
12009
|
+
secondary: LUCKY_POINT$1,
|
|
12009
12010
|
back: PEACOCK_BLUE$1,
|
|
12010
12011
|
smallPrimary: WHITE$1,
|
|
12011
12012
|
smallSecondary: PEACOCK_BLUE$1,
|
|
@@ -16191,7 +16192,7 @@ var PeriscopeFailedIcon = function PeriscopeFailedIcon() {
|
|
|
16191
16192
|
}, /*#__PURE__*/React__default.createElement("g", {
|
|
16192
16193
|
transform: "translate(288 64)"
|
|
16193
16194
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16194
|
-
fill: "#
|
|
16195
|
+
fill: "#281978",
|
|
16195
16196
|
fillOpacity: "0.3",
|
|
16196
16197
|
d: "M302.247 310.746c36.612 0 66.292 6.549 66.292 14.627S338.86 340 302.247 340c-36.613 0-66.292-6.55-66.292-14.627 0-8.078 29.68-14.627 66.292-14.627zM65.904 208.318c6.071 0 11.057 4.655 11.608 10.6a6.983 6.983 0 014.09-1.321c3.885 0 7.034 3.159 7.034 7.055 0 3.818-3.022 6.926-6.798 7.051l-.237.004H49.756c-4.548 0-8.234-3.696-8.234-8.256 0-4.56 3.686-8.257 8.234-8.257 1.848 0 3.549.618 4.923 1.65 1.378-4.919 5.88-8.526 11.225-8.526zm195.894-57.546c16.134 0 29.213 13.097 29.213 29.254 0 16.157-13.08 29.254-29.213 29.254-16.134 0-29.214-13.097-29.214-29.254 0-16.157 13.08-29.254 29.214-29.254zm80.899 0c16.134 0 29.213 13.097 29.213 29.254 0 16.157-13.08 29.254-29.213 29.254-16.135 0-29.214-13.097-29.214-29.254 0-16.157 13.08-29.254 29.214-29.254zm-80.899 22.503c-5.514 0-10.317 3.673-12.173 9.018a3.377 3.377 0 002.077 4.297 3.37 3.37 0 004.29-2.08l.16-.42c1.027-2.474 3.233-4.064 5.646-4.064 2.547 0 4.863 1.771 5.805 4.484l.12.302a3.37 3.37 0 004.17 1.778 3.377 3.377 0 002.077-4.297c-1.855-5.345-6.658-9.018-12.172-9.018zm80.9 0c-5.515 0-10.318 3.673-12.174 9.018a3.377 3.377 0 002.077 4.297 3.37 3.37 0 004.29-2.08l.16-.42c1.027-2.474 3.233-4.064 5.646-4.064 2.547 0 4.863 1.771 5.805 4.484l.12.302a3.37 3.37 0 004.17 1.778 3.377 3.377 0 002.077-4.297c-1.855-5.345-6.659-9.018-12.172-9.018zM519.99 12.426c12.578 0 22.908 9.642 24.048 21.958a14.473 14.473 0 018.471-2.737c8.049 0 14.575 6.544 14.575 14.617 0 7.966-6.358 14.445-14.262 14.612l-.313.003H486.54c-9.42 0-17.057-7.658-17.057-17.106 0-9.446 7.637-17.104 17.057-17.104 3.83 0 7.352 1.281 10.2 3.418 2.855-10.189 12.179-17.66 23.252-17.66zM170.591 0c6.61 0 12.239 4.15 14.476 9.99a6.571 6.571 0 011.792-.252c2.114 0 3.994.996 5.208 2.543a9.767 9.767 0 014.028-.872c5.431 0 9.833 4.414 9.833 9.86 0 5.354-4.254 9.712-9.557 9.858l-.276.004h-42.442c-5.43 0-9.833-4.415-9.833-9.861 0-5.447 4.403-9.861 9.833-9.861.666 0 1.315.068 1.942.194C157.345 4.93 163.386 0 170.59 0z"
|
|
16197
16198
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
@@ -16209,7 +16210,7 @@ var PeriscopeFailedIcon = function PeriscopeFailedIcon() {
|
|
|
16209
16210
|
filter: "url(#periscope-failed-filter-2)",
|
|
16210
16211
|
xlinkHref: "#periscope-failed-path-1"
|
|
16211
16212
|
}), /*#__PURE__*/React__default.createElement("use", {
|
|
16212
|
-
fill: "#
|
|
16213
|
+
fill: "#281978",
|
|
16213
16214
|
xlinkHref: "#periscope-failed-path-1"
|
|
16214
16215
|
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16215
16216
|
transform: "translate(0 96.764)"
|
|
@@ -19241,7 +19242,7 @@ var AlertInfoIcon = function AlertInfoIcon() {
|
|
|
19241
19242
|
xlinkHref: "#path-1"
|
|
19242
19243
|
})), /*#__PURE__*/React__default.createElement("use", {
|
|
19243
19244
|
id: "background-2",
|
|
19244
|
-
fill: "#
|
|
19245
|
+
fill: "#281978",
|
|
19245
19246
|
fillRule: "nonzero",
|
|
19246
19247
|
xlinkHref: "#path-1"
|
|
19247
19248
|
})))));
|
|
@@ -19392,13 +19393,13 @@ var AlertIcons = {
|
|
|
19392
19393
|
};
|
|
19393
19394
|
|
|
19394
19395
|
var background = {
|
|
19395
|
-
info: "".concat(
|
|
19396
|
+
info: "".concat(HAWKES_BLUE),
|
|
19396
19397
|
warn: "".concat(APRICOT_ORANGE),
|
|
19397
19398
|
error: "".concat(BLUSH_RED),
|
|
19398
19399
|
success: "".concat(HINT_GREEN)
|
|
19399
19400
|
};
|
|
19400
19401
|
var border$1 = {
|
|
19401
|
-
info: "".concat(
|
|
19402
|
+
info: "".concat(LUCKY_POINT),
|
|
19402
19403
|
warn: "".concat(ZEST_ORANGE),
|
|
19403
19404
|
error: "".concat(RAZZMATAZZ_RED),
|
|
19404
19405
|
success: "".concat(EMERALD_GREEN)
|
|
@@ -21178,7 +21179,7 @@ var BoxWithShadow = function BoxWithShadow(_ref) {
|
|
|
21178
21179
|
var BoxWithShadow$1 = themeComponent(BoxWithShadow, "BoxWithShadow", fallbackValues$8);
|
|
21179
21180
|
|
|
21180
21181
|
// import theme from "styled-theming";
|
|
21181
|
-
var MATISSE_BLUE$
|
|
21182
|
+
var MATISSE_BLUE$1 = MATISSE_BLUE,
|
|
21182
21183
|
STORM_GREY$1 = STORM_GREY;
|
|
21183
21184
|
var LINK_TEXT_DECORATION$2 = LINK_TEXT_DECORATION;
|
|
21184
21185
|
|
|
@@ -21187,7 +21188,7 @@ var LINK_TEXT_DECORATION$2 = LINK_TEXT_DECORATION;
|
|
|
21187
21188
|
for colors/values that should be used here instead
|
|
21188
21189
|
*/
|
|
21189
21190
|
|
|
21190
|
-
var color$6 = "".concat(MATISSE_BLUE$
|
|
21191
|
+
var color$6 = "".concat(MATISSE_BLUE$1);
|
|
21191
21192
|
var activeColor$2 = "".concat(STORM_GREY$1);
|
|
21192
21193
|
var activeBreadcrumbColor = "".concat(STORM_GREY$1);
|
|
21193
21194
|
var fontSize$2 = "0.875rem";
|
|
@@ -23695,9 +23696,9 @@ exportTypedArrayMethod$1('at', function at(index) {
|
|
|
23695
23696
|
return (k < 0 || k >= len) ? undefined : O[k];
|
|
23696
23697
|
});
|
|
23697
23698
|
|
|
23698
|
-
var selectedColor = "".concat(
|
|
23699
|
-
var hoverColor$3 = "".concat(
|
|
23700
|
-
var focusColor = "".concat(
|
|
23699
|
+
var selectedColor = "".concat(LUCKY_POINT);
|
|
23700
|
+
var hoverColor$3 = "".concat(HAWKES_BLUE);
|
|
23701
|
+
var focusColor = "".concat(LUCKY_POINT_DARK);
|
|
23701
23702
|
var fallbackValues$i = {
|
|
23702
23703
|
selectedColor: selectedColor,
|
|
23703
23704
|
hoverColor: hoverColor$3,
|
|
@@ -24119,15 +24120,15 @@ var SelectField = styled.select.withConfig({
|
|
|
24119
24120
|
}, function (_ref3) {
|
|
24120
24121
|
var themeValues = _ref3.themeValues;
|
|
24121
24122
|
return themeValues.color && themeValues.color;
|
|
24122
|
-
},
|
|
24123
|
+
}, LUCKY_POINT);
|
|
24123
24124
|
var SelectOption = styled.option.withConfig({
|
|
24124
24125
|
displayName: "FormSelectstyled__SelectOption",
|
|
24125
24126
|
componentId: "sc-hkrqrv-2"
|
|
24126
24127
|
})([""]);
|
|
24127
24128
|
|
|
24128
24129
|
var linkColor$1 = {
|
|
24129
|
-
"default": "".concat(
|
|
24130
|
-
disabled: "".concat(
|
|
24130
|
+
"default": "".concat(LUCKY_POINT),
|
|
24131
|
+
disabled: "".concat(LUCKY_POINT)
|
|
24131
24132
|
};
|
|
24132
24133
|
var formBackgroundColor = {
|
|
24133
24134
|
"default": "".concat(WHITE),
|
|
@@ -24168,7 +24169,7 @@ var fontWeight$3 = {
|
|
|
24168
24169
|
disabled: "".concat(FONT_WEIGHT_REGULAR)
|
|
24169
24170
|
};
|
|
24170
24171
|
var hoverFocusStyles = {
|
|
24171
|
-
"default": "color:
|
|
24172
|
+
"default": "color: ".concat(LUCKY_POINT_DARK, "; outline: none; text-decoration: underline; "),
|
|
24172
24173
|
disabled: "color: #6D717E;"
|
|
24173
24174
|
};
|
|
24174
24175
|
var fallbackValues$j = {
|