35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
diff --git a/node_modules/react-native-star-rating/node_modules/react-native-button/Button.js b/node_modules/react-native-star-rating/node_modules/react-native-button/Button.js
|
|
index fb7cf46..8e4c522 100644
|
|
--- a/node_modules/react-native-star-rating/node_modules/react-native-button/Button.js
|
|
+++ b/node_modules/react-native-star-rating/node_modules/react-native-button/Button.js
|
|
@@ -1,11 +1,12 @@
|
|
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
+import {TextPropTypes,ViewPropTypes} from 'deprecated-react-native-prop-types'
|
|
import {
|
|
StyleSheet,
|
|
Text,
|
|
TouchableOpacity,
|
|
View,
|
|
- ViewPropTypes,
|
|
+ //ViewPropTypes,
|
|
} from 'react-native';
|
|
|
|
import coalesceNonElementChildren from './coalesceNonElementChildren';
|
|
@@ -16,12 +17,12 @@ export default class Button extends Component {
|
|
static propTypes = {
|
|
...TouchableOpacity.propTypes,
|
|
accessibilityLabel: PropTypes.string,
|
|
- allowFontScaling: Text.propTypes.allowFontScaling,
|
|
+ allowFontScaling: TextPropTypes.allowFontScaling,
|
|
containerStyle: ViewPropTypes.style,
|
|
disabledContainerStyle: ViewPropTypes.style,
|
|
disabled: PropTypes.bool,
|
|
- style: Text.propTypes.style,
|
|
- styleDisabled: Text.propTypes.style,
|
|
+ style: TextPropTypes.style,
|
|
+ styleDisabled: TextPropTypes.style,
|
|
childGroupStyle: ViewPropTypes.style,
|
|
};
|
|
|