@widergy/mobile-ui 1.26.4 → 1.26.5
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,10 @@
|
|
|
1
|
+
## [1.26.5](https://github.com/widergy/mobile-ui/compare/v1.26.4...v1.26.5) (2024-10-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* visual fixes ([#367](https://github.com/widergy/mobile-ui/issues/367)) ([b916b9b](https://github.com/widergy/mobile-ui/commit/b916b9b641c2fbff90b8b5ab2efb8b6b8ae447b6))
|
|
7
|
+
|
|
1
8
|
## [1.26.4](https://github.com/widergy/mobile-ui/compare/v1.26.3...v1.26.4) (2024-10-01)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -3,7 +3,7 @@ import { ViewPropTypes } from 'deprecated-react-native-prop-types';
|
|
|
3
3
|
import { View } from 'react-native';
|
|
4
4
|
import PropTypes from 'prop-types';
|
|
5
5
|
|
|
6
|
-
import
|
|
6
|
+
import UTLabel from '../UTLabel';
|
|
7
7
|
|
|
8
8
|
import RadioButton from './components/RadioButton';
|
|
9
9
|
import { DEFAULT_KEY_FIELD } from './constants';
|
|
@@ -40,14 +40,14 @@ class RadioGroup extends Component {
|
|
|
40
40
|
return (
|
|
41
41
|
<View style={styles.container}>
|
|
42
42
|
{title && (
|
|
43
|
-
<
|
|
43
|
+
<UTLabel variant="body" {...titleProps}>
|
|
44
44
|
{title}
|
|
45
|
-
</
|
|
45
|
+
</UTLabel>
|
|
46
46
|
)}
|
|
47
47
|
{options.map(this.renderOptions)}
|
|
48
|
-
<
|
|
48
|
+
<UTLabel colorTheme="error" shade="05" variant="body">
|
|
49
49
|
{error}
|
|
50
|
-
</
|
|
50
|
+
</UTLabel>
|
|
51
51
|
</View>
|
|
52
52
|
);
|
|
53
53
|
}
|
package/package.json
CHANGED