ikualo-ui-kit-mobile 2.0.8 → 2.0.9

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": "2.0.8",
6
+ "version": "2.0.9",
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": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "main": "src/index.ts",
5
5
  "scripts": {
6
6
  "start": "expo start",
@@ -234,7 +234,9 @@ export const DialogDown = (props: IDialogDown & { priority?: 0 | 1 | 2 | 3 | 4 |
234
234
  <View style={stylesDialog['dialog-img']}>{image}</View>
235
235
  ) : (
236
236
  <View style={{ marginTop: image ? 0 : -16, position: 'relative' }}>
237
- <Text style={[stylesDialog['dialog-title']]}>{title}</Text>
237
+ <Text style={[stylesDialog['dialog-title'], { fontSize: showCloseButton ? 16 : 24 }]}>
238
+ {title}
239
+ </Text>
238
240
  </View>
239
241
  )}
240
242