@widergy/mobile-ui 1.49.5 → 1.49.7
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.49.7](https://github.com/widergy/mobile-ui/compare/v1.49.6...v1.49.7) (2025-07-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [UGC-1619] modal title too large ([#450](https://github.com/widergy/mobile-ui/issues/450)) ([7f0d5b1](https://github.com/widergy/mobile-ui/commit/7f0d5b140018fdc3ef30a66896d8288a9f53e2ec))
|
|
7
|
+
|
|
8
|
+
## [1.49.6](https://github.com/widergy/mobile-ui/compare/v1.49.5...v1.49.6) (2025-07-29)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* title ([#449](https://github.com/widergy/mobile-ui/issues/449)) ([67d463a](https://github.com/widergy/mobile-ui/commit/67d463a77401d02879b60f4922646ad2a9246edf))
|
|
14
|
+
|
|
1
15
|
## [1.49.5](https://github.com/widergy/mobile-ui/compare/v1.49.4...v1.49.5) (2025-07-22)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -115,9 +115,11 @@ const UTModal = ({
|
|
|
115
115
|
<View style={[styles.headerContainer, !!title && styles.closeButtonContainer]}>
|
|
116
116
|
{!!title && (
|
|
117
117
|
<UTLabel
|
|
118
|
+
style={styles.title }
|
|
118
119
|
variant="title3"
|
|
119
120
|
weight="medium"
|
|
120
121
|
dataTestId={`${dataTestId}.${titleTestId}`}
|
|
122
|
+
style={styles.title}
|
|
121
123
|
>
|
|
122
124
|
{title}
|
|
123
125
|
</UTLabel>
|
|
@@ -51,6 +51,7 @@ export default StyleSheet.create({
|
|
|
51
51
|
closeButton: {
|
|
52
52
|
alignSelf: 'flex-end'
|
|
53
53
|
},
|
|
54
|
+
title: { flex: 1 },
|
|
54
55
|
imageContainer: {
|
|
55
56
|
alignItems: 'center',
|
|
56
57
|
height: verticalScale(35),
|
|
@@ -59,5 +60,8 @@ export default StyleSheet.create({
|
|
|
59
60
|
},
|
|
60
61
|
keyboardAvoidingView: {
|
|
61
62
|
flex: 1
|
|
63
|
+
},
|
|
64
|
+
title:{
|
|
65
|
+
flexShrink: 1
|
|
62
66
|
}
|
|
63
67
|
});
|
package/package.json
CHANGED