@expo/config-types 54.0.2 → 54.0.4
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 +9 -0
- package/package.json +3 -3
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -136,6 +136,11 @@ export interface ExpoConfig {
|
|
|
136
136
|
* Specifies the background color of the navigation bar.
|
|
137
137
|
*/
|
|
138
138
|
backgroundColor?: string;
|
|
139
|
+
/**
|
|
140
|
+
* Determines whether the operating system should keep the navigation bar translucent to provide contrast between the navigation buttons and app content.
|
|
141
|
+
* Defaults to true.
|
|
142
|
+
*/
|
|
143
|
+
enforceContrast?: boolean;
|
|
139
144
|
};
|
|
140
145
|
/**
|
|
141
146
|
* Settings that apply specifically to running this app in a development client
|
|
@@ -248,6 +253,10 @@ export interface ExpoConfig {
|
|
|
248
253
|
* Enable experimental features that may be unstable, unsupported, or removed without deprecation notices.
|
|
249
254
|
*/
|
|
250
255
|
experiments?: {
|
|
256
|
+
/**
|
|
257
|
+
* Apply Expo Autolinking's search results to Metro's module resolution. This forces your project's dependencies on `react`, `react-dom`, and `react-native`, and the autolinked versions of any Expo and React Native modules to be resolved when bundling your app. This prevents version misalignment and is useful for monorepos and to prevent conflicts.
|
|
258
|
+
*/
|
|
259
|
+
autolinkingModuleResolution?: boolean;
|
|
251
260
|
/**
|
|
252
261
|
* Export a website relative to a subpath of a domain. The path will be prepended as-is to links to all bundled resources. Prefix the path with a `/` (recommended) to load all resources relative to the server root. If the path **does not** start with a `/` then resources will be loaded relative to the code that requests them, this could lead to unexpected behavior. Example '/subpath'. Defaults to '' (empty string).
|
|
253
262
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "54.0.
|
|
3
|
+
"version": "54.0.4",
|
|
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",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"build"
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"expo-module-scripts": "^5.0.
|
|
40
|
+
"expo-module-scripts": "^5.0.3",
|
|
41
41
|
"json-schema-to-typescript": "^14.0.5"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "f2270a4447fa0939e0d6f95c92bf5238e7162a73"
|
|
47
47
|
}
|