@applicaster/zapp-react-native-ui-components 13.0.0-rc.89 → 13.0.0-rc.90

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.
@@ -644,7 +644,17 @@ const PlayerContainerComponent = (props: Props) => {
644
644
  testID={"player-screen-container"}
645
645
  >
646
646
  {/* Player container */}
647
- <View style={styles.playerWrapper} testID={"player-wrapper"}>
647
+ <View
648
+ style={[
649
+ styles.playerWrapper,
650
+ // eslint-disable-next-line react-native/no-inline-styles, react-native/no-color-literals
651
+ {
652
+ borderWidth: 1,
653
+ borderColor: "transparent",
654
+ } /* @HACK: see GH#7269 */,
655
+ ]}
656
+ testID={"player-wrapper"}
657
+ >
648
658
  <PlayerFocusableWrapperView
649
659
  nextFocusDown={context.bottomFocusableId}
650
660
  >
@@ -8,7 +8,6 @@ import {
8
8
 
9
9
  import { Placeholder } from "./Placeholder";
10
10
  import { useInitialLoading } from "./hooks";
11
- import { useIsFocusable } from "@applicaster/zapp-react-native-utils/focusManager";
12
11
 
13
12
  type ReactComponent = React.ComponentType<any>;
14
13
 
@@ -138,12 +137,13 @@ New signature: {Component, ErrorComponent, LoadingComponent, options}`
138
137
  );
139
138
 
140
139
  const componentProps = React.useMemo(
141
- () => ({ ...props, parent }),
140
+ () => ({
141
+ ...props,
142
+ parent,
143
+ }),
142
144
  [props, parent]
143
145
  );
144
146
 
145
- useIsFocusable(componentProps);
146
-
147
147
  React.useEffect(() => {
148
148
  if (!skipOnLoadFinished && !isLoading) {
149
149
  onLoadFinished();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-native-ui-components",
3
- "version": "13.0.0-rc.89",
3
+ "version": "13.0.0-rc.90",
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",
@@ -31,10 +31,10 @@
31
31
  "redux-mock-store": "^1.5.3"
32
32
  },
33
33
  "dependencies": {
34
- "@applicaster/applicaster-types": "13.0.0-rc.89",
35
- "@applicaster/zapp-react-native-bridge": "13.0.0-rc.89",
36
- "@applicaster/zapp-react-native-redux": "13.0.0-rc.89",
37
- "@applicaster/zapp-react-native-utils": "13.0.0-rc.89",
34
+ "@applicaster/applicaster-types": "13.0.0-rc.90",
35
+ "@applicaster/zapp-react-native-bridge": "13.0.0-rc.90",
36
+ "@applicaster/zapp-react-native-redux": "13.0.0-rc.90",
37
+ "@applicaster/zapp-react-native-utils": "13.0.0-rc.90",
38
38
  "promise": "^8.3.0",
39
39
  "react-router-native": "^5.1.2",
40
40
  "url": "^0.11.0",