@ornikar/kitt-universal 29.3.2-canary.f2abfc91dffa35207c7250cfe664cca0fa103531.0 → 29.4.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 +11 -2
- package/dist/definitions/CardModal/CardModalAnimation/CardModalAnimation.d.ts.map +1 -1
- package/dist/definitions/DialogModal/DialogModalAnimation/DialogModalAnimation.d.ts.map +1 -1
- package/dist/definitions/FullscreenModal/FullscreenModalAnimation.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +7 -4
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +7 -4
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +7 -4
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.css +0 -1
- package/dist/index-node-22.17.cjs.web.js +30 -4
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +7 -4
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.css +0 -1
- package/dist/index-node-22.17.es.web.mjs +54 -28
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +7 -4
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +54 -28
- package/dist/index.es.web.js.map +1 -1
- package/dist/styles.css +0 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/definitions/Icon/SpinningIcon.web.d.ts +0 -4
- package/dist/definitions/Icon/SpinningIcon.web.d.ts.map +0 -1
|
@@ -3731,7 +3731,7 @@ function SpinningIcon({
|
|
|
3731
3731
|
toValue: 1,
|
|
3732
3732
|
duration: 1100,
|
|
3733
3733
|
easing: reactNative.Easing.linear,
|
|
3734
|
-
useNativeDriver:
|
|
3734
|
+
useNativeDriver: reactNative.Platform.OS !== 'web'
|
|
3735
3735
|
}));
|
|
3736
3736
|
animation.start();
|
|
3737
3737
|
return () => {
|
|
@@ -4318,8 +4318,9 @@ function CardModalAnimation({
|
|
|
4318
4318
|
children: /*#__PURE__*/jsxRuntime.jsxs(View
|
|
4319
4319
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
4320
4320
|
// This ugly workaround is used in FullScreenModalAnimation and DialogModalAnimation as well
|
|
4321
|
+
// TODO [expo@>=53]: Check if still needed
|
|
4321
4322
|
, {
|
|
4322
|
-
height: 1,
|
|
4323
|
+
height: reactNative.Platform.OS === 'android' ? 1 : undefined,
|
|
4323
4324
|
position: "relative",
|
|
4324
4325
|
flexGrow: 1,
|
|
4325
4326
|
justifyContent: "center",
|
|
@@ -5031,8 +5032,9 @@ function DialogModalAnimation({
|
|
|
5031
5032
|
children: /*#__PURE__*/jsxRuntime.jsxs(View
|
|
5032
5033
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
5033
5034
|
// This ugly workaround is used in FullScreenModalAnimation and CardModalAnimation as well
|
|
5035
|
+
// TODO [expo@>=53]: Check if still needed
|
|
5034
5036
|
, {
|
|
5035
|
-
height: 1,
|
|
5037
|
+
height: reactNative.Platform.OS === 'android' ? 1 : undefined,
|
|
5036
5038
|
position: "relative",
|
|
5037
5039
|
flexGrow: 1,
|
|
5038
5040
|
justifyContent: "center",
|
|
@@ -8262,8 +8264,9 @@ function FullscreenModalAnimation({
|
|
|
8262
8264
|
children: /*#__PURE__*/jsxRuntime.jsxs(View
|
|
8263
8265
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
8264
8266
|
// This ugly workaround is used in DialogModalAnimation and CardModalAnimation as well
|
|
8267
|
+
// TODO [expo@>=53]: Check if still needed
|
|
8265
8268
|
, {
|
|
8266
|
-
height: 1,
|
|
8269
|
+
height: reactNative.Platform.OS === 'android' ? 1 : undefined,
|
|
8267
8270
|
position: "relative",
|
|
8268
8271
|
flexGrow: 1,
|
|
8269
8272
|
justifyContent: "center",
|