uilib-native 4.5.0 → 4.5.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/Keyboard/KeyboardInput/TextInputKeyboardManager/TextInputKeyboardManager.ios.js
CHANGED
|
@@ -45,7 +45,7 @@ export default class TextInputKeyboardManager {
|
|
|
45
45
|
};
|
|
46
46
|
}
|
|
47
47
|
function findNodeHandle(ref) {
|
|
48
|
-
return ReactNative.findNodeHandle(ref.current || ref);
|
|
48
|
+
return ref.current?.getNodeHandle?.() || ref?.getNodeHandle?.() || ReactNative.findNodeHandle(ref.current || ref);
|
|
49
49
|
}
|
|
50
50
|
const springAnimation = {
|
|
51
51
|
duration: 400,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uilib-native",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.2",
|
|
4
4
|
"homepage": "https://github.com/wix/react-native-ui-lib",
|
|
5
5
|
"description": "uilib native components (separated from js components)",
|
|
6
6
|
"main": "components/index",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"author": "Ethan Sharabi <ethan.shar@gmail.com>",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"lodash": "^4.
|
|
13
|
+
"lodash": "^4.17.21",
|
|
14
14
|
"prop-types": "^15.5.10"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"shell-utils": "^1.0.10"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"react": "
|
|
21
|
-
"react-native": "
|
|
20
|
+
"react": ">=17.0.1",
|
|
21
|
+
"react-native": ">=0.64.1"
|
|
22
22
|
}
|
|
23
23
|
}
|