react-native-highlight-words icon indicating copy to clipboard operation
react-native-highlight-words copied to clipboard

ERROR TypeError: undefined is not an object (evaluating '_reactNative.Text.propTypes.style') in react native 0.70

Open hotaryuzaki opened this issue 2 years ago β€’ 1 comments

Hi! πŸ‘‹

Firstly, thanks for your work on this project! πŸ™‚

Today I used patch-package to patch [email protected] for the project I'm working on.

Here is the diff that solved my problem:

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
 };
 
 /**

This issue body was partially generated by patch-package.

hotaryuzaki avatar Dec 30 '22 09:12 hotaryuzaki

it was fixed by multiple PR's like https://github.com/clauderic/react-native-highlight-words/pull/31 and https://github.com/jacargentina/react-native-highlight-words/commit/5d46297549366793b13c9be99be13fd2a3bbbb1a but these changes never got released

harisbaig100 avatar May 09 '24 09:05 harisbaig100