mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-23 08:27:30 +03:00
23 lines
866 B
Diff
23 lines
866 B
Diff
diff --git a/node_modules/react-native-highlight-words/index.js b/node_modules/react-native-highlight-words/index.js
|
|
index e15cc90..15f0b34 100644
|
|
--- a/node_modules/react-native-highlight-words/index.js
|
|
+++ b/node_modules/react-native-highlight-words/index.js
|
|
@@ -2,14 +2,15 @@ import React from 'react';
|
|
import {Text} from 'react-native';
|
|
import {findAll} from 'highlight-words-core';
|
|
import PropTypes from 'prop-types';
|
|
+import { TextPropTypes } from 'deprecated-react-native-prop-types';
|
|
|
|
Highlighter.propTypes = {
|
|
autoEscape: PropTypes.bool,
|
|
- highlightStyle: Text.propTypes.style,
|
|
+ highlightStyle: TextPropTypes.style,
|
|
searchWords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
textToHighlight: PropTypes.string.isRequired,
|
|
sanitize: PropTypes.func,
|
|
- style: Text.propTypes.style
|
|
+ style: TextPropTypes.style
|
|
};
|
|
|
|
/**
|