@shoutem/ui 9.1.1-rc.0 → 9.1.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/components/DateTimePicker.js +1 -1
- package/package.json +1 -1
- package/theme.js +1 -0
|
@@ -122,7 +122,7 @@ class DateTimePicker extends PureComponent {
|
|
|
122
122
|
style={style.textContainer}
|
|
123
123
|
onPress={this.handleShowPicker}
|
|
124
124
|
>
|
|
125
|
-
<Text>{textValue}</Text>
|
|
125
|
+
<Text style={style.text}>{textValue}</Text>
|
|
126
126
|
</TouchableOpacity>
|
|
127
127
|
<TouchableOpacity
|
|
128
128
|
onPress={this.handleShowPicker}
|
package/package.json
CHANGED
package/theme.js
CHANGED
|
@@ -2680,6 +2680,7 @@ export default () => {
|
|
|
2680
2680
|
modalButton: { width: 100, margin: 'auto' },
|
|
2681
2681
|
modalButtonContainer: { height: 80 },
|
|
2682
2682
|
modalContainer: { backgroundColor: '#FFFFFF' },
|
|
2683
|
+
text: {},
|
|
2683
2684
|
textContainer: {
|
|
2684
2685
|
borderColor: '#C2C2C2',
|
|
2685
2686
|
borderWidth: 1,
|