ikualo-ui-kit-mobile 1.9.0 → 1.9.2

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/app.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "ikualo-app-2.0",
4
4
  "slug": "ikualo-app-20",
5
5
  "owner": "ikualo",
6
- "version": "1.9.0",
6
+ "version": "1.9.2",
7
7
  "orientation": "portrait",
8
8
  "icon": "./assets/icon.png",
9
9
  "userInterfaceStyle": "automatic",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ikualo-ui-kit-mobile",
3
- "version": "1.9.0",
3
+ "version": "1.9.2",
4
4
  "main": "src/index.ts",
5
5
  "scripts": {
6
6
  "start": "expo start",
@@ -108,7 +108,7 @@ const colors = {
108
108
  transparent: 'transparent',
109
109
  freezed: '#6DB9FF',
110
110
  background_freezed: '#C6E4FF',
111
- background_app_gradient: '#FAFAFF',
111
+ background_gradient: '#E5E5F9',
112
112
  };
113
113
  const light = {
114
114
  background_app: '#FAFAFF',
@@ -123,6 +123,8 @@ const light = {
123
123
  background_orange: colors.orange_400,
124
124
  background_purple: colors.tertiary_800,
125
125
  background_card_alt: colors.primary_20,
126
+ background_app_gradient_final: colors.white_50,
127
+ background_app_gradient_initial: colors.background_gradient,
126
128
 
127
129
  background_btn: colors.gray_900,
128
130
  background_btn_focus: colors.gray_800,
@@ -156,6 +158,7 @@ const light = {
156
158
  border_disabled: colors.gray_500,
157
159
  border_btn_small: colors.freezed,
158
160
  };
161
+
159
162
  const dark = {
160
163
  background_app: colors.gray_900,
161
164
  background_focus: colors.dark_800,
@@ -169,6 +172,8 @@ const dark = {
169
172
  background_orange: '#906651',
170
173
  background_purple: '#342360',
171
174
  background_card_alt: colors.gray_1000,
175
+ background_app_gradient_final: colors.gray_900,
176
+ background_app_gradient_initial: colors.gray_900,
172
177
 
173
178
  background_btn: colors.primary_300,
174
179
  background_btn_focus: colors.primary_100,
@@ -40,7 +40,7 @@ export const Alert = (props: IFAlertInfo) => {
40
40
  >
41
41
  <View style={styleAlerts['alert-container-text']}>
42
42
  {icons.find((icon) => icon.name === type)?.icon}
43
- <Text fontWeight={'MontserratBold700'} fontSize={14} color={theme.colors.text_p}>
43
+ <Text fontWeight={'MontserratBold700'} fontSize={14} color={theme.colors.white_50}>
44
44
  {title}
45
45
  </Text>
46
46
  </View>
@@ -58,7 +58,7 @@ export const Alert = (props: IFAlertInfo) => {
58
58
  >
59
59
  <View style={styleAlerts['alert-container-text']}>
60
60
  {icons.find((icon) => icon.name === type)?.icon}
61
- <Text fontWeight={'MontserratBold700'} fontSize={14} color={theme.colors.text_p}>
61
+ <Text fontWeight={'MontserratBold700'} fontSize={14} color={theme.colors.white_50}>
62
62
  {title}
63
63
  </Text>
64
64
  </View>