@widergy/mobile-ui 1.28.1 → 1.28.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/CHANGELOG.md +7 -0
- package/lib/components/Loading/index.js +5 -1
- package/lib/components/RadioGroup/components/RadioButton/index.js +1 -5
- package/lib/components/RadioGroup/index.js +1 -1
- package/lib/components/UTTextInput/versions/V0/components/BaseInput/index.js +1 -1
- package/lib/components/UTTextInput/versions/V0/flavors/OutlinedInput/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.28.2](https://github.com/widergy/mobile-ui/compare/v1.28.1...v1.28.2) (2024-10-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* colors in radio button selected and others ([#370](https://github.com/widergy/mobile-ui/issues/370)) ([1cc52c0](https://github.com/widergy/mobile-ui/commit/1cc52c02641cae9c8fb7a04c33072ed0c865c58b))
|
|
7
|
+
|
|
1
8
|
## [1.28.1](https://github.com/widergy/mobile-ui/compare/v1.28.0...v1.28.1) (2024-10-15)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -94,7 +94,11 @@ class Loading extends Component {
|
|
|
94
94
|
<Animated.View style={getAnimatedContainerStyle(size, fade)}>
|
|
95
95
|
{layers.map(this.renderLayers)}
|
|
96
96
|
</Animated.View>
|
|
97
|
-
{!!message &&
|
|
97
|
+
{!!message && (
|
|
98
|
+
<UTLabel variant="small" style={[getMessageStyle(size), messageStyle]}>
|
|
99
|
+
{message}
|
|
100
|
+
</UTLabel>
|
|
101
|
+
)}
|
|
98
102
|
</View>
|
|
99
103
|
);
|
|
100
104
|
}
|
|
@@ -56,11 +56,7 @@ class RadioButton extends Component {
|
|
|
56
56
|
<View style={styles.labelsContainer}>
|
|
57
57
|
<View>
|
|
58
58
|
<View style={[styles.label, labelComponent && styles.labelComponent]}>
|
|
59
|
-
<UTLabel
|
|
60
|
-
colorTheme={status ? 'accent' : 'dark'}
|
|
61
|
-
variant="body"
|
|
62
|
-
weight={status ? 'bold' : 'regular'}
|
|
63
|
-
>
|
|
59
|
+
<UTLabel variant="xsmall" weight={status ? 'bold' : 'regular'}>
|
|
64
60
|
{label}
|
|
65
61
|
</UTLabel>
|
|
66
62
|
{labelComponent}
|
package/package.json
CHANGED