@ornikar/kitt-universal 29.5.1 → 30.0.0

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.
@@ -4215,7 +4215,7 @@ function NativeOpacityAnimation$2({
4215
4215
  runOnJS(handleAnimationFinished)();
4216
4216
  })
4217
4217
  };
4218
- });
4218
+ }, [visible]);
4219
4219
  return /*#__PURE__*/jsx(Animated.View, {
4220
4220
  style: [StyleSheet.absoluteFillObject, opacityStyle],
4221
4221
  children: children
@@ -4270,9 +4270,11 @@ function NativeRotationAnimation$1({
4270
4270
  rotateZ: `${rotation.value}deg`
4271
4271
  }]
4272
4272
  };
4273
- });
4273
+ }, [rotation, visible]);
4274
4274
  return /*#__PURE__*/jsx(Animated.View, {
4275
- style: [animatedStyle],
4275
+ style: [{
4276
+ flexShrink: 1
4277
+ }, animatedStyle],
4276
4278
  children: children
4277
4279
  });
4278
4280
  }