@expo/config-types 55.0.4 → 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.
@@ -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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "55.0.4",
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": "436ffb4355d5207f4a03fbc3568cd33424a40f3e"
46
+ "gitHead": "b183e5cbd95eb6ee54a878291c7077d8d63e4850"
47
47
  }