react-native-ui-lib 7.46.0-snapshot.7290 → 7.46.0-snapshot.7291
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
|
@@ -256,18 +256,14 @@ declare const colorObject: Colors & {
|
|
|
256
256
|
$outlineDisabledHeavy: string;
|
|
257
257
|
$outlineNeutral: string;
|
|
258
258
|
$outlineNeutralHeavy: string;
|
|
259
|
-
$outlinePrimary: string;
|
|
260
|
-
$outlinePrimaryMedium: string;
|
|
261
|
-
$outlineGeneral: string; /**
|
|
259
|
+
$outlinePrimary: string; /**
|
|
262
260
|
* Get app's current color scheme
|
|
263
261
|
*/
|
|
262
|
+
$outlinePrimaryMedium: string;
|
|
263
|
+
$outlineGeneral: string;
|
|
264
264
|
$outlineWarning: string;
|
|
265
265
|
$outlineDanger: string;
|
|
266
|
-
$outlineInverted: string;
|
|
267
|
-
* Set color scheme for app
|
|
268
|
-
* arguments:
|
|
269
|
-
* scheme - color scheme e.g light/dark/default
|
|
270
|
-
*/
|
|
266
|
+
$outlineInverted: string;
|
|
271
267
|
$black: string;
|
|
272
268
|
$white: string;
|
|
273
269
|
};
|
|
@@ -38,10 +38,11 @@ export default {
|
|
|
38
38
|
$textDefaultLight: colorsPalette.white,
|
|
39
39
|
$textPrimary: colorsPalette.violet30,
|
|
40
40
|
$textGeneral: colorsPalette.blue30,
|
|
41
|
-
$textSuccess: colorsPalette.
|
|
41
|
+
$textSuccess: colorsPalette.green10,
|
|
42
42
|
$textSuccessLight: colorsPalette.green30,
|
|
43
|
-
$textMajor: colorsPalette.
|
|
44
|
-
$textDanger: colorsPalette.
|
|
43
|
+
$textMajor: colorsPalette.orange10,
|
|
44
|
+
$textDanger: colorsPalette.red10,
|
|
45
|
+
//textDangerLight should be deprecated
|
|
45
46
|
$textDangerLight: colorsPalette.red10,
|
|
46
47
|
// ICON
|
|
47
48
|
$iconDefault: colorsPalette.grey10,
|
|
@@ -51,10 +52,11 @@ export default {
|
|
|
51
52
|
$iconPrimaryLight: colorsPalette.violet50,
|
|
52
53
|
$iconGeneral: colorsPalette.blue30,
|
|
53
54
|
$iconGeneralLight: colorsPalette.blue50,
|
|
54
|
-
$iconSuccess: colorsPalette.
|
|
55
|
+
$iconSuccess: colorsPalette.green10,
|
|
55
56
|
$iconSuccessLight: colorsPalette.green30,
|
|
56
|
-
$iconMajor: colorsPalette.
|
|
57
|
-
$iconDanger: colorsPalette.
|
|
57
|
+
$iconMajor: colorsPalette.orange10,
|
|
58
|
+
$iconDanger: colorsPalette.red10,
|
|
59
|
+
//iconDangerLight should be deprecated
|
|
58
60
|
$iconDangerLight: colorsPalette.red10,
|
|
59
61
|
$iconDisabled: colorsPalette.grey50,
|
|
60
62
|
// OUTLINE
|