@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
|
@@ -4238,7 +4238,7 @@ function NativeOpacityAnimation$2({
|
|
|
4238
4238
|
Animated.runOnJS(handleAnimationFinished)();
|
|
4239
4239
|
})
|
|
4240
4240
|
};
|
|
4241
|
-
});
|
|
4241
|
+
}, [visible]);
|
|
4242
4242
|
return /*#__PURE__*/jsxRuntime.jsx(Animated__default.View, {
|
|
4243
4243
|
style: [reactNative.StyleSheet.absoluteFillObject, opacityStyle],
|
|
4244
4244
|
children: children
|
|
@@ -4293,9 +4293,11 @@ function NativeRotationAnimation$1({
|
|
|
4293
4293
|
rotateZ: `${rotation.value}deg`
|
|
4294
4294
|
}]
|
|
4295
4295
|
};
|
|
4296
|
-
});
|
|
4296
|
+
}, [rotation, visible]);
|
|
4297
4297
|
return /*#__PURE__*/jsxRuntime.jsx(Animated__default.View, {
|
|
4298
|
-
style: [
|
|
4298
|
+
style: [{
|
|
4299
|
+
flexShrink: 1
|
|
4300
|
+
}, animatedStyle],
|
|
4299
4301
|
children: children
|
|
4300
4302
|
});
|
|
4301
4303
|
}
|