@react-native-tvos/virtualized-lists 0.83.1-1 → 0.84.0-0

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.
@@ -31,9 +31,10 @@ export default class StateSafePureComponent<
31
31
  this._installSetStateHooks();
32
32
  }
33
33
 
34
+ // $FlowFixMe[incompatible-type]
34
35
  setState<K: $Keys<State>>(
35
36
  partialState: ?(Pick<State, K> | ((State, Props) => ?Pick<State, K>)),
36
- callback?: () => mixed,
37
+ callback?: () => unknown,
37
38
  ): void {
38
39
  if (typeof partialState === 'function') {
39
40
  super.setState((state, props) => {
@@ -13,7 +13,7 @@
13
13
  /**
14
14
  * Intentional info-level logging for clear separation from ad-hoc console debug logging.
15
15
  */
16
- function infoLog(...args: Array<mixed>): void {
16
+ function infoLog(...args: Array<unknown>): void {
17
17
  return console.log(...args);
18
18
  }
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-tvos/virtualized-lists",
3
- "version": "0.83.1-1",
3
+ "version": "0.84.0-0",
4
4
  "description": "Virtualized lists for React Native.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -48,7 +48,7 @@
48
48
  "nullthrows": "^1.1.1"
49
49
  },
50
50
  "devDependencies": {
51
- "react-test-renderer": "19.2.0"
51
+ "react-test-renderer": "19.2.3"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "@types/react": "^19.2.0",