feat(core): lock fullscreen orientation (#1656)

This commit is contained in:
Sam Potts
2026-06-10 10:32:43 +10:00
committed by GitHub
parent 3d2225e77e
commit 62d0524b83
20 changed files with 770 additions and 13 deletions
@@ -4,5 +4,7 @@
* Exercises: namespace re-export filtering — `export * as features from './feature.parts'`
* in the index should NOT produce a feature entry named "features".
*/
export { orientationLockFeature as orientationLock } from './orientation-lock';
export { playbackFeature as playback } from './playback';
export { volumeFeature as volume } from './volume';
@@ -7,6 +7,7 @@
*/
export * as features from './feature.parts';
export * from './orientation-lock';
export * from './playback';
export * from './presets';
export * from './volume';
@@ -0,0 +1,6 @@
import { definePlayerFeature } from '../../feature';
export const orientationLockFeature = definePlayerFeature({
name: 'orientationLock',
state: () => ({}),
});