Skip to content

Commit 9ba50ce

Browse files
authored
Merge pull request #905 from GoogleChromeLabs/support-minimal-ui
Support minimal-ui display mode
2 parents 9429036 + f14af5a commit 9ba50ce

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages/core/src/lib/TwaManifest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const SHORT_NAME_MAX_SIZE = 12;
3939
const MIN_NOTIFICATION_ICON_SIZE = 48;
4040

4141
// Supported display modes for TWA
42-
const DISPLAY_MODE_VALUES = ['standalone', 'fullscreen', 'fullscreen-sticky'];
42+
const DISPLAY_MODE_VALUES = ['standalone', 'minimal-ui', 'fullscreen', 'fullscreen-sticky'];
4343
export type DisplayMode = typeof DISPLAY_MODE_VALUES[number];
4444
export const DisplayModes: DisplayMode[] = [...DISPLAY_MODE_VALUES];
4545

packages/core/src/spec/lib/TwaManifestSpec.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,6 @@ describe('TwaManifest', () => {
186186

187187
it('Replaces unsupported display modes with `standalone`', () => {
188188
const manifestUrl = new URL('https://pwa-directory.com/manifest.json');
189-
expect(TwaManifest.fromWebManifestJson(manifestUrl, {display: 'minimal-ui'}).display)
190-
.toBe('standalone');
191189
expect(TwaManifest.fromWebManifestJson(manifestUrl, {display: 'browser'}).display)
192190
.toBe('standalone');
193191
});
@@ -333,11 +331,11 @@ describe('TwaManifest', () => {
333331
it('Returns display mode if it is supported', () => {
334332
expect(asDisplayMode('standalone')).toBe('standalone');
335333
expect(asDisplayMode('fullscreen')).toBe('fullscreen');
334+
expect(asDisplayMode('minimal-ui')).toBe('minimal-ui');
336335
});
337336

338337
it('Returns null for unsupported display modes', () => {
339338
expect(asDisplayMode('browser')).toBeNull();
340-
expect(asDisplayMode('minimal-ui')).toBeNull();
341339
expect(asDisplayMode('bogus')).toBeNull();
342340
expect(asDisplayMode('')).toBeNull();
343341
});

0 commit comments

Comments
 (0)