@applicaster/zapp-react-native-ui-components 16.0.0-alpha.3524654973 → 16.0.0-alpha.3534530222
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,7 +48,6 @@ type Position = {
|
|
|
48
48
|
type PlayerFactoryConfig = {
|
|
49
49
|
player: any; // React ref for native view
|
|
50
50
|
playerId: string;
|
|
51
|
-
muted: boolean;
|
|
52
51
|
playerPluginId: string;
|
|
53
52
|
screenConfig: Record<string, any>;
|
|
54
53
|
entry: ZappEntry; // original entry, used as fallback if no hooks
|
|
@@ -635,7 +634,6 @@ export class LiveImage implements QuickBrickPlayer.SharedPlayerCallBacks {
|
|
|
635
634
|
playerId: this.factoryConfig.playerId,
|
|
636
635
|
autoplay: false,
|
|
637
636
|
entry,
|
|
638
|
-
muted: this.factoryConfig.muted,
|
|
639
637
|
playerPluginId: this.factoryConfig.playerPluginId,
|
|
640
638
|
screenConfig: this.factoryConfig.screenConfig,
|
|
641
639
|
playerRole: PlayerRole.Cell,
|
|
@@ -126,14 +126,13 @@ const PlayerLiveImageComponent = (props: Props) => {
|
|
|
126
126
|
factoryConfig: {
|
|
127
127
|
player: ref,
|
|
128
128
|
playerId,
|
|
129
|
-
muted,
|
|
130
129
|
playerPluginId: playerPluginId,
|
|
131
130
|
screenConfig: screenConfig,
|
|
132
131
|
entry: item,
|
|
133
132
|
},
|
|
134
133
|
tag: item.title?.toString(),
|
|
135
134
|
});
|
|
136
|
-
}, [playerId, preloadHooks,
|
|
135
|
+
}, [playerId, preloadHooks, playerPluginId, screenConfig, item]);
|
|
137
136
|
|
|
138
137
|
React.useEffect(() => {
|
|
139
138
|
liveImageItem.setMode = setModeDebounced;
|
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.3534530222",
|
|
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.3534530222",
|
|
32
|
+
"@applicaster/zapp-react-native-bridge": "16.0.0-alpha.3534530222",
|
|
33
|
+
"@applicaster/zapp-react-native-redux": "16.0.0-alpha.3534530222",
|
|
34
|
+
"@applicaster/zapp-react-native-utils": "16.0.0-alpha.3534530222",
|
|
35
35
|
"fast-json-stable-stringify": "^2.1.0",
|
|
36
36
|
"promise": "^8.3.0",
|
|
37
37
|
"url": "^0.11.0",
|