@expo/config-types 55.0.3 → 55.0.5
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/build/ExpoConfig.d.ts +3 -5
- package/package.json +2 -2
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -78,6 +78,7 @@ export interface ExpoConfig {
|
|
|
78
78
|
barStyle?: 'light-content' | 'dark-content';
|
|
79
79
|
/**
|
|
80
80
|
* Specifies the background color of the status bar. Defaults to `#00000000` (transparent) for `dark-content` bar style and `#00000088` (semi-transparent black) for `light-content` bar style
|
|
81
|
+
* @deprecated Due to Android edge-to-edge enforcement, setting the status bar background color is deprecated and has no effect. This will be removed in a future release.
|
|
81
82
|
*/
|
|
82
83
|
backgroundColor?: string;
|
|
83
84
|
/**
|
|
@@ -86,11 +87,13 @@ export interface ExpoConfig {
|
|
|
86
87
|
hidden?: boolean;
|
|
87
88
|
/**
|
|
88
89
|
* When false, the system status bar pushes the content of your app down (similar to `position: relative`). When true, the status bar floats above the content in your app (similar to `position: absolute`). Defaults to `true` to match the iOS status bar behavior (which can only float above content). Explicitly setting this property to `true` will add `android:windowTranslucentStatus` to `styles.xml` and may cause unexpected keyboard behavior on Android when using the `softwareKeyboardLayoutMode` set to `resize`. In this case you will have to use `KeyboardAvoidingView` to manage the keyboard layout.
|
|
90
|
+
* @deprecated Due to Android edge-to-edge enforcement, setting the status bar as translucent is deprecated and has no effect. This will be removed in a future release.
|
|
89
91
|
*/
|
|
90
92
|
translucent?: boolean;
|
|
91
93
|
};
|
|
92
94
|
/**
|
|
93
95
|
* Configuration for the bottom navigation bar on Android. Can be used to configure the `expo-navigation-bar` module in EAS Build.
|
|
96
|
+
* @deprecated Use the `expo-navigation-bar` plugin configuration instead
|
|
94
97
|
*/
|
|
95
98
|
androidNavigationBar?: {
|
|
96
99
|
/**
|
|
@@ -792,11 +795,6 @@ export interface Android {
|
|
|
792
795
|
* Your android app version. Takes precedence over the root `version` field. In addition to this field, you'll also use `android.versionCode` — read more about how to version your app [here](https://docs.expo.dev/distribution/app-stores/#versioning-your-app). This corresponds to `versionName`. The required format can be found [here](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring).
|
|
793
796
|
*/
|
|
794
797
|
version?: string;
|
|
795
|
-
/**
|
|
796
|
-
* Enable your app to run in [edge-to-edge](https://developer.android.com/develop/ui/views/layout/edge-to-edge) mode. Default to true.
|
|
797
|
-
* @deprecated Android 16+ (API level 36) requires edge-to-edge to be enabled. This feature can't be disabled anymore. [learn more](https://developer.android.com/about/versions/16/behavior-changes-16#edge-to-edge)
|
|
798
|
-
*/
|
|
799
|
-
edgeToEdgeEnabled?: true;
|
|
800
798
|
/**
|
|
801
799
|
* Enable your app to use the [predictive back gesture](https://developer.android.com/guide/navigation/custom-back/predictive-back-gesture) on Android 13 (API level 33) and later. Default to false.
|
|
802
800
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "55.0.
|
|
3
|
+
"version": "55.0.5",
|
|
4
4
|
"description": "Types for the Expo config object app.config.ts",
|
|
5
5
|
"types": "build/ExpoConfig.d.ts",
|
|
6
6
|
"main": "build/ExpoConfig.js",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "b183e5cbd95eb6ee54a878291c7077d8d63e4850"
|
|
47
47
|
}
|