@draftbit/core 54.1.1-ab9b11.2 → 55.0.1-1023b1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@draftbit/core",
3
- "version": "54.1.1-ab9b11.2+ab9b111",
3
+ "version": "55.0.1-1023b1.2+1023b19",
4
4
  "description": "Core (non-native) Components",
5
5
  "main": "./src/index.tsx",
6
6
  "react-native": "./src/index.tsx",
@@ -42,7 +42,7 @@
42
42
  "homepage": "https://github.com/draftbit/react-native-jigsaw#readme",
43
43
  "dependencies": {
44
44
  "@draftbit/react-theme-provider": "^2.1.1",
45
- "@draftbit/theme": "^54.1.1-ab9b11.2+ab9b111",
45
+ "@draftbit/theme": "^55.0.1-1023b1.2+1023b19",
46
46
  "@emotion/react": "^11.13.5",
47
47
  "@emotion/styled": "^11.13.5",
48
48
  "@expo/vector-icons": "^15.0.3",
@@ -123,5 +123,5 @@
123
123
  ],
124
124
  "testEnvironment": "node"
125
125
  },
126
- "gitHead": "ab9b11171f08824a491b297918698e62688f4c06"
126
+ "gitHead": "1023b192f07ba4491e48fd67ef230841db5c7ef9"
127
127
  }
@@ -45,6 +45,7 @@ interface VideoPlayerProps extends ExpoVideoPropsOmitted, MediaPlayerProps {
45
45
  positionMillis?: number;
46
46
  rate?: number;
47
47
  volume?: number;
48
+ allowsFullscreen?: boolean;
48
49
  }
49
50
 
50
51
  export interface VideoPlayerRef extends MediaPlayerRef {
@@ -264,7 +265,7 @@ const VideoPlayer = React.forwardRef<VideoPlayerRef, VideoPlayerProps>(
264
265
  contentFit={mappedVideoContentFit}
265
266
  onFullscreenEnter={() => onFullscreenUpdate("entered")}
266
267
  onFullscreenExit={() => onFullscreenUpdate("exited")}
267
- allowsFullscreen={allowsFullscreen}
268
+ fullscreenOptions={{ enable: allowsFullscreen }}
268
269
  {...videoPlayerProps}
269
270
  />
270
271
  {showPoster && posterSource && (