@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.
- package/CHANGELOG.md +13 -0
- package/dist/definitions/CardModal/CardModalAnimation/NativeRotationAnimation.d.ts +0 -1
- package/dist/definitions/CardModal/CardModalAnimation/NativeRotationAnimation.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +5 -3
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +5 -3
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +5 -3
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.css +0 -8
- package/dist/index-node-22.17.cjs.web.js +149 -73
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +5 -3
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.css +0 -8
- package/dist/index-node-22.17.es.web.mjs +149 -73
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +5 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +163 -88
- package/dist/index.es.web.js.map +1 -1
- package/dist/styles.css +0 -8
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/definitions/CardModal/CardModalAnimation/CardModalAnimation.web.d.ts +0 -4
- package/dist/definitions/CardModal/CardModalAnimation/CardModalAnimation.web.d.ts.map +0 -1
package/dist/index.es.js
CHANGED
|
@@ -4258,7 +4258,7 @@ function NativeOpacityAnimation$2(_ref) {
|
|
|
4258
4258
|
runOnJS(handleAnimationFinished)();
|
|
4259
4259
|
})
|
|
4260
4260
|
};
|
|
4261
|
-
});
|
|
4261
|
+
}, [visible]);
|
|
4262
4262
|
return /*#__PURE__*/jsx(Animated.View, {
|
|
4263
4263
|
style: [StyleSheet.absoluteFillObject, opacityStyle],
|
|
4264
4264
|
children: children
|
|
@@ -4309,9 +4309,11 @@ function NativeRotationAnimation$1(_ref) {
|
|
|
4309
4309
|
rotateZ: "".concat(rotation.value, "deg")
|
|
4310
4310
|
}]
|
|
4311
4311
|
};
|
|
4312
|
-
});
|
|
4312
|
+
}, [rotation, visible]);
|
|
4313
4313
|
return /*#__PURE__*/jsx(Animated.View, {
|
|
4314
|
-
style: [
|
|
4314
|
+
style: [{
|
|
4315
|
+
flexShrink: 1
|
|
4316
|
+
}, animatedStyle],
|
|
4315
4317
|
children: children
|
|
4316
4318
|
});
|
|
4317
4319
|
}
|