@ornikar/kitt-universal 29.3.1 → 29.3.2
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 +9 -0
- 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 +18 -3
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +18 -3
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +18 -3
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +18 -3
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index.es.js +18 -3
- package/dist/index.es.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -4290,7 +4290,12 @@ function CardModalAnimation({
|
|
|
4290
4290
|
onDismiss: () => {
|
|
4291
4291
|
if (onExited) onExited();
|
|
4292
4292
|
},
|
|
4293
|
-
children: /*#__PURE__*/jsxs(View
|
|
4293
|
+
children: /*#__PURE__*/jsxs(View
|
|
4294
|
+
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
4295
|
+
// This ugly workaround is used in FullScreenModalAnimation and DialogModalAnimation as well
|
|
4296
|
+
// TODO [expo@>=53]: Check if still needed
|
|
4297
|
+
, {
|
|
4298
|
+
height: Platform.OS === 'android' ? 1 : undefined,
|
|
4294
4299
|
position: "relative",
|
|
4295
4300
|
flexGrow: 1,
|
|
4296
4301
|
justifyContent: "center",
|
|
@@ -4998,7 +5003,12 @@ function DialogModalAnimation({
|
|
|
4998
5003
|
onDismiss: () => {
|
|
4999
5004
|
if (onExited) onExited();
|
|
5000
5005
|
},
|
|
5001
|
-
children: /*#__PURE__*/jsxs(View
|
|
5006
|
+
children: /*#__PURE__*/jsxs(View
|
|
5007
|
+
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
5008
|
+
// This ugly workaround is used in FullScreenModalAnimation and CardModalAnimation as well
|
|
5009
|
+
// TODO [expo@>=53]: Check if still needed
|
|
5010
|
+
, {
|
|
5011
|
+
height: Platform.OS === 'android' ? 1 : undefined,
|
|
5002
5012
|
position: "relative",
|
|
5003
5013
|
flexGrow: 1,
|
|
5004
5014
|
justifyContent: "center",
|
|
@@ -8250,7 +8260,12 @@ function FullscreenModalAnimation({
|
|
|
8250
8260
|
onDismiss: () => {
|
|
8251
8261
|
if (onExited) onExited();
|
|
8252
8262
|
},
|
|
8253
|
-
children: /*#__PURE__*/jsxs(View
|
|
8263
|
+
children: /*#__PURE__*/jsxs(View
|
|
8264
|
+
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
8265
|
+
// This ugly workaround is used in DialogModalAnimation and CardModalAnimation as well
|
|
8266
|
+
// TODO [expo@>=53]: Check if still needed
|
|
8267
|
+
, {
|
|
8268
|
+
height: Platform.OS === 'android' ? 1 : undefined,
|
|
8254
8269
|
position: "relative",
|
|
8255
8270
|
flexGrow: 1,
|
|
8256
8271
|
justifyContent: "center",
|