@ornikar/kitt-universal 29.3.2-canary.f2abfc91dffa35207c7250cfe664cca0fa103531.0 → 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 +2 -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 +6 -3
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +6 -3
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +6 -3
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +6 -3
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index.es.js +6 -3
- package/dist/index.es.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -4295,8 +4295,9 @@ function CardModalAnimation({
|
|
|
4295
4295
|
children: /*#__PURE__*/jsxs(View
|
|
4296
4296
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
4297
4297
|
// This ugly workaround is used in FullScreenModalAnimation and DialogModalAnimation as well
|
|
4298
|
+
// TODO [expo@>=53]: Check if still needed
|
|
4298
4299
|
, {
|
|
4299
|
-
height: 1,
|
|
4300
|
+
height: Platform.OS === 'android' ? 1 : undefined,
|
|
4300
4301
|
position: "relative",
|
|
4301
4302
|
flexGrow: 1,
|
|
4302
4303
|
justifyContent: "center",
|
|
@@ -5008,8 +5009,9 @@ function DialogModalAnimation({
|
|
|
5008
5009
|
children: /*#__PURE__*/jsxs(View
|
|
5009
5010
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
5010
5011
|
// This ugly workaround is used in FullScreenModalAnimation and CardModalAnimation as well
|
|
5012
|
+
// TODO [expo@>=53]: Check if still needed
|
|
5011
5013
|
, {
|
|
5012
|
-
height: 1,
|
|
5014
|
+
height: Platform.OS === 'android' ? 1 : undefined,
|
|
5013
5015
|
position: "relative",
|
|
5014
5016
|
flexGrow: 1,
|
|
5015
5017
|
justifyContent: "center",
|
|
@@ -8239,8 +8241,9 @@ function FullscreenModalAnimation({
|
|
|
8239
8241
|
children: /*#__PURE__*/jsxs(View
|
|
8240
8242
|
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
8241
8243
|
// This ugly workaround is used in DialogModalAnimation and CardModalAnimation as well
|
|
8244
|
+
// TODO [expo@>=53]: Check if still needed
|
|
8242
8245
|
, {
|
|
8243
|
-
height: 1,
|
|
8246
|
+
height: Platform.OS === 'android' ? 1 : undefined,
|
|
8244
8247
|
position: "relative",
|
|
8245
8248
|
flexGrow: 1,
|
|
8246
8249
|
justifyContent: "center",
|