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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-ui-lib",
3
- "version": "7.43.0-snapshot.7191",
3
+ "version": "7.43.0-snapshot.7194",
4
4
  "main": "src/index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "author": "Ethan Sharabi <ethan.shar@gmail.com>",
@@ -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
- $backgroundDangerHeavy: colorsPalette.red30,
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
- $textDangerLight: colorsPalette.red30,
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
- $iconDangerLight: colorsPalette.red30,
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.red30,
72
+ $outlineDanger: colorsPalette.red10,
70
73
  $outlineInverted: colorsPalette.white,
71
74
  // BLACK AND WHITE
72
75
  $black: colorsPalette.black,