@applicaster/zapp-react-native-ui-components 16.0.0-alpha.3534530222 → 16.0.0-alpha.5063542327
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.
|
@@ -48,6 +48,7 @@ type Position = {
|
|
|
48
48
|
type PlayerFactoryConfig = {
|
|
49
49
|
player: any; // React ref for native view
|
|
50
50
|
playerId: string;
|
|
51
|
+
muted: boolean;
|
|
51
52
|
playerPluginId: string;
|
|
52
53
|
screenConfig: Record<string, any>;
|
|
53
54
|
entry: ZappEntry; // original entry, used as fallback if no hooks
|
|
@@ -634,6 +635,7 @@ export class LiveImage implements QuickBrickPlayer.SharedPlayerCallBacks {
|
|
|
634
635
|
playerId: this.factoryConfig.playerId,
|
|
635
636
|
autoplay: false,
|
|
636
637
|
entry,
|
|
638
|
+
muted: this.factoryConfig.muted,
|
|
637
639
|
playerPluginId: this.factoryConfig.playerPluginId,
|
|
638
640
|
screenConfig: this.factoryConfig.screenConfig,
|
|
639
641
|
playerRole: PlayerRole.Cell,
|
|
@@ -126,6 +126,7 @@ const PlayerLiveImageComponent = (props: Props) => {
|
|
|
126
126
|
factoryConfig: {
|
|
127
127
|
player: ref,
|
|
128
128
|
playerId,
|
|
129
|
+
muted, // omitted from hook parameters as it can be changed by user and should not trigger factory again
|
|
129
130
|
playerPluginId: playerPluginId,
|
|
130
131
|
screenConfig: screenConfig,
|
|
131
132
|
entry: item,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applicaster/zapp-react-native-ui-components",
|
|
3
|
-
"version": "16.0.0-alpha.
|
|
3
|
+
"version": "16.0.0-alpha.5063542327",
|
|
4
4
|
"description": "Applicaster Zapp React Native ui components for the Quick Brick App",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/applicaster/quickbrick#readme",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@applicaster/applicaster-types": "16.0.0-alpha.
|
|
32
|
-
"@applicaster/zapp-react-native-bridge": "16.0.0-alpha.
|
|
33
|
-
"@applicaster/zapp-react-native-redux": "16.0.0-alpha.
|
|
34
|
-
"@applicaster/zapp-react-native-utils": "16.0.0-alpha.
|
|
31
|
+
"@applicaster/applicaster-types": "16.0.0-alpha.5063542327",
|
|
32
|
+
"@applicaster/zapp-react-native-bridge": "16.0.0-alpha.5063542327",
|
|
33
|
+
"@applicaster/zapp-react-native-redux": "16.0.0-alpha.5063542327",
|
|
34
|
+
"@applicaster/zapp-react-native-utils": "16.0.0-alpha.5063542327",
|
|
35
35
|
"fast-json-stable-stringify": "^2.1.0",
|
|
36
36
|
"promise": "^8.3.0",
|
|
37
37
|
"url": "^0.11.0",
|