react-native-ui-lib 7.43.0-snapshot.7191 → 7.43.0-snapshot.7194
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/style/colors.d.ts
CHANGED
|
@@ -253,14 +253,12 @@ declare const colorObject: Colors & {
|
|
|
253
253
|
$iconDisabled: string;
|
|
254
254
|
$outlineDefault: string;
|
|
255
255
|
$outlineDisabled: string;
|
|
256
|
-
/**
|
|
257
|
-
* Load light and dark schemes based on generated design tokens
|
|
258
|
-
* @param color - palette color
|
|
259
|
-
*/
|
|
260
256
|
$outlineDisabledHeavy: string;
|
|
261
257
|
$outlineNeutral: string;
|
|
262
258
|
$outlineNeutralHeavy: string;
|
|
263
|
-
$outlinePrimary: string;
|
|
259
|
+
$outlinePrimary: string; /**
|
|
260
|
+
* Get app's current color scheme
|
|
261
|
+
*/
|
|
264
262
|
$outlinePrimaryMedium: string;
|
|
265
263
|
$outlineGeneral: string;
|
|
266
264
|
$outlineWarning: string;
|
|
@@ -21,7 +21,8 @@ export default {
|
|
|
21
21
|
$backgroundWarningLight: colorsPalette.yellow70,
|
|
22
22
|
$backgroundMajorLight: colorsPalette.orange80,
|
|
23
23
|
$backgroundMajorHeavy: colorsPalette.orange30,
|
|
24
|
-
|
|
24
|
+
//backgroundDangerHeavy should be changed to backgroundDanger
|
|
25
|
+
$backgroundDangerHeavy: colorsPalette.red10,
|
|
25
26
|
$backgroundDangerLight: colorsPalette.red80,
|
|
26
27
|
$backgroundDisabled: colorsPalette.grey50,
|
|
27
28
|
$backgroundDark: colorsPalette.grey10,
|
|
@@ -41,7 +42,8 @@ export default {
|
|
|
41
42
|
$textSuccessLight: colorsPalette.green30,
|
|
42
43
|
$textMajor: colorsPalette.orange10,
|
|
43
44
|
$textDanger: colorsPalette.red10,
|
|
44
|
-
|
|
45
|
+
//textDangerLight should be deprecated
|
|
46
|
+
$textDangerLight: colorsPalette.red10,
|
|
45
47
|
// ICON
|
|
46
48
|
$iconDefault: colorsPalette.grey10,
|
|
47
49
|
$iconNeutral: colorsPalette.grey20,
|
|
@@ -54,7 +56,8 @@ export default {
|
|
|
54
56
|
$iconSuccessLight: colorsPalette.green30,
|
|
55
57
|
$iconMajor: colorsPalette.orange10,
|
|
56
58
|
$iconDanger: colorsPalette.red10,
|
|
57
|
-
|
|
59
|
+
//iconDangerLight should be deprecated
|
|
60
|
+
$iconDangerLight: colorsPalette.red10,
|
|
58
61
|
$iconDisabled: colorsPalette.grey50,
|
|
59
62
|
// OUTLINE
|
|
60
63
|
$outlineDefault: colorsPalette.grey60,
|
|
@@ -66,7 +69,7 @@ export default {
|
|
|
66
69
|
$outlinePrimaryMedium: colorsPalette.blue70,
|
|
67
70
|
$outlineGeneral: colorsPalette.blue30,
|
|
68
71
|
$outlineWarning: colorsPalette.yellow30,
|
|
69
|
-
$outlineDanger: colorsPalette.
|
|
72
|
+
$outlineDanger: colorsPalette.red10,
|
|
70
73
|
$outlineInverted: colorsPalette.white,
|
|
71
74
|
// BLACK AND WHITE
|
|
72
75
|
$black: colorsPalette.black,
|