react-native-reanimated 2.14.0 → 2.14.1

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.
Files changed (25) hide show
  1. package/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
  2. package/android/.gradle/7.5.1/checksums/md5-checksums.bin +0 -0
  3. package/android/.gradle/7.5.1/checksums/sha1-checksums.bin +0 -0
  4. package/android/.gradle/7.5.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  5. package/android/.gradle/7.5.1/executionHistory/executionHistory.bin +0 -0
  6. package/android/.gradle/7.5.1/executionHistory/executionHistory.lock +0 -0
  7. package/android/.gradle/7.5.1/fileHashes/fileHashes.bin +0 -0
  8. package/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
  9. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  10. package/android/.gradle/buildOutputCleanup/cache.properties +1 -1
  11. package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  12. package/android/.gradle/file-system.probe +0 -0
  13. package/android/react-native-reanimated-67-hermes.aar +0 -0
  14. package/android/react-native-reanimated-67-jsc.aar +0 -0
  15. package/android/react-native-reanimated-68-hermes.aar +0 -0
  16. package/android/react-native-reanimated-68-jsc.aar +0 -0
  17. package/android/react-native-reanimated-69-hermes.aar +0 -0
  18. package/android/react-native-reanimated-69-jsc.aar +0 -0
  19. package/android/react-native-reanimated-70-hermes.aar +0 -0
  20. package/android/react-native-reanimated-70-jsc.aar +0 -0
  21. package/android/react-native-reanimated-71-hermes.aar +0 -0
  22. package/android/react-native-reanimated-71-jsc.aar +0 -0
  23. package/lib/createAnimatedComponent.js +1 -1
  24. package/package.json +1 -1
  25. package/src/createAnimatedComponent.tsx +1 -1
@@ -1,2 +1,2 @@
1
- #Wed Jan 11 16:23:50 UTC 2023
1
+ #Thu Jan 12 09:56:32 UTC 2023
2
2
  gradle.version=7.5.1
Binary file
@@ -189,7 +189,7 @@ export default function createAnimatedComponent(Component, options) {
189
189
  }
190
190
  _attachNativeEvents() {
191
191
  const node = this._getEventViewRef();
192
- const viewTag = findNodeHandle((options === null || options === void 0 ? void 0 : options.setNativeProps) ? this : node);
192
+ let viewTag = findNodeHandle((options === null || options === void 0 ? void 0 : options.setNativeProps) ? this : node);
193
193
  const componentName = Component.displayName || Component.name;
194
194
  if ((componentName === null || componentName === void 0 ? void 0 : componentName.endsWith('FlashList')) && this._component) {
195
195
  // @ts-ignore it's FlashList specific: https://github.com/Shopify/flash-list/blob/218f314e63806b4fe926741ef73f8b9cd6ebc7eb/src/FlashList.tsx#L824
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-reanimated",
3
- "version": "2.14.0",
3
+ "version": "2.14.1",
4
4
  "description": "More powerful alternative to Animated library for React Native.",
5
5
  "scripts": {
6
6
  "test": "yarn run format:js && yarn run lint:js && yarn run test:unit",
@@ -241,7 +241,7 @@ export default function createAnimatedComponent(
241
241
 
242
242
  _attachNativeEvents() {
243
243
  const node = this._getEventViewRef();
244
- const viewTag = findNodeHandle(options?.setNativeProps ? this : node);
244
+ let viewTag = findNodeHandle(options?.setNativeProps ? this : node);
245
245
  const componentName = Component.displayName || Component.name;
246
246
 
247
247
  if (componentName?.endsWith('FlashList') && this._component) {