react-native-ui-lib 7.46.0 → 7.46.1-snapshot.7300
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
|
@@ -7,6 +7,8 @@ export declare const BorderRadiusesLiterals: {
|
|
|
7
7
|
br40: number;
|
|
8
8
|
br50: number;
|
|
9
9
|
br60: number;
|
|
10
|
+
br70: number;
|
|
11
|
+
br90: number;
|
|
10
12
|
br100: number;
|
|
11
13
|
};
|
|
12
14
|
export declare class BorderRadiuses {
|
|
@@ -21,6 +23,8 @@ declare const borderRadiusesInstance: BorderRadiuses & {
|
|
|
21
23
|
br40: number;
|
|
22
24
|
br50: number;
|
|
23
25
|
br60: number;
|
|
26
|
+
br70: number;
|
|
27
|
+
br90: number;
|
|
24
28
|
br100: number;
|
|
25
29
|
};
|
|
26
30
|
export default borderRadiusesInstance;
|
package/src/style/colors.d.ts
CHANGED
|
@@ -256,14 +256,18 @@ declare const colorObject: Colors & {
|
|
|
256
256
|
$outlineDisabledHeavy: string;
|
|
257
257
|
$outlineNeutral: string;
|
|
258
258
|
$outlineNeutralHeavy: string;
|
|
259
|
-
$outlinePrimary: string;
|
|
259
|
+
$outlinePrimary: string;
|
|
260
|
+
$outlinePrimaryMedium: string;
|
|
261
|
+
$outlineGeneral: string; /**
|
|
260
262
|
* Get app's current color scheme
|
|
261
263
|
*/
|
|
262
|
-
$outlinePrimaryMedium: string;
|
|
263
|
-
$outlineGeneral: string;
|
|
264
264
|
$outlineWarning: string;
|
|
265
265
|
$outlineDanger: string;
|
|
266
|
-
$outlineInverted: string;
|
|
266
|
+
$outlineInverted: string; /**
|
|
267
|
+
* Set color scheme for app
|
|
268
|
+
* arguments:
|
|
269
|
+
* scheme - color scheme e.g light/dark/default
|
|
270
|
+
*/
|
|
267
271
|
$black: string;
|
|
268
272
|
$white: string;
|
|
269
273
|
};
|
|
@@ -38,11 +38,10 @@ export default {
|
|
|
38
38
|
$textDefaultLight: colorsPalette.white,
|
|
39
39
|
$textPrimary: colorsPalette.violet30,
|
|
40
40
|
$textGeneral: colorsPalette.blue30,
|
|
41
|
-
$textSuccess: colorsPalette.
|
|
41
|
+
$textSuccess: colorsPalette.green5,
|
|
42
42
|
$textSuccessLight: colorsPalette.green30,
|
|
43
|
-
$textMajor: colorsPalette.
|
|
44
|
-
$textDanger: colorsPalette.
|
|
45
|
-
//textDangerLight should be deprecated
|
|
43
|
+
$textMajor: colorsPalette.orange5,
|
|
44
|
+
$textDanger: colorsPalette.red5,
|
|
46
45
|
$textDangerLight: colorsPalette.red10,
|
|
47
46
|
// ICON
|
|
48
47
|
$iconDefault: colorsPalette.grey10,
|
|
@@ -52,11 +51,10 @@ export default {
|
|
|
52
51
|
$iconPrimaryLight: colorsPalette.violet50,
|
|
53
52
|
$iconGeneral: colorsPalette.blue30,
|
|
54
53
|
$iconGeneralLight: colorsPalette.blue50,
|
|
55
|
-
$iconSuccess: colorsPalette.
|
|
54
|
+
$iconSuccess: colorsPalette.green5,
|
|
56
55
|
$iconSuccessLight: colorsPalette.green30,
|
|
57
|
-
$iconMajor: colorsPalette.
|
|
58
|
-
$iconDanger: colorsPalette.
|
|
59
|
-
//iconDangerLight should be deprecated
|
|
56
|
+
$iconMajor: colorsPalette.orange5,
|
|
57
|
+
$iconDanger: colorsPalette.red5,
|
|
60
58
|
$iconDangerLight: colorsPalette.red10,
|
|
61
59
|
$iconDisabled: colorsPalette.grey50,
|
|
62
60
|
// OUTLINE
|