@react-native-harness/runtime 1.0.0-alpha.17 → 1.0.0-alpha.18

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.
Files changed (48) hide show
  1. package/dist/bundler/bundle.d.ts.map +1 -1
  2. package/dist/bundler/bundle.js +1 -2
  3. package/dist/constants.d.ts +0 -1
  4. package/dist/constants.d.ts.map +1 -1
  5. package/dist/constants.js +0 -1
  6. package/dist/tsconfig.lib.tsbuildinfo +1 -1
  7. package/dist/ui/ReadyScreen.d.ts.map +1 -1
  8. package/dist/ui/ReadyScreen.js +2 -10
  9. package/dist/ui/WrongEnvironmentScreen.d.ts.map +1 -1
  10. package/dist/ui/WrongEnvironmentScreen.js +2 -10
  11. package/out-tsc/vitest/src/bundler/bundle.d.ts.map +1 -1
  12. package/out-tsc/vitest/src/bundler/evaluate.d.ts.map +1 -1
  13. package/out-tsc/vitest/src/client/factory.d.ts.map +1 -1
  14. package/out-tsc/vitest/src/client/setup-files.d.ts +12 -0
  15. package/out-tsc/vitest/src/client/setup-files.d.ts.map +1 -0
  16. package/out-tsc/vitest/src/collector/functions.d.ts +1 -1
  17. package/out-tsc/vitest/src/collector/functions.d.ts.map +1 -1
  18. package/out-tsc/vitest/src/collector/types.d.ts +1 -1
  19. package/out-tsc/vitest/src/collector/types.d.ts.map +1 -1
  20. package/out-tsc/vitest/src/constants.d.ts +0 -1
  21. package/out-tsc/vitest/src/constants.d.ts.map +1 -1
  22. package/out-tsc/vitest/src/index.d.ts +1 -0
  23. package/out-tsc/vitest/src/index.d.ts.map +1 -1
  24. package/out-tsc/vitest/src/jest-mock.d.ts +2 -0
  25. package/out-tsc/vitest/src/jest-mock.d.ts.map +1 -0
  26. package/out-tsc/vitest/src/render/ErrorBoundary.d.ts +17 -0
  27. package/out-tsc/vitest/src/render/ErrorBoundary.d.ts.map +1 -0
  28. package/out-tsc/vitest/src/render/TestComponentOverlay.d.ts +3 -0
  29. package/out-tsc/vitest/src/render/TestComponentOverlay.d.ts.map +1 -0
  30. package/out-tsc/vitest/src/render/cleanup.d.ts +2 -0
  31. package/out-tsc/vitest/src/render/cleanup.d.ts.map +1 -0
  32. package/out-tsc/vitest/src/render/index.d.ts +6 -0
  33. package/out-tsc/vitest/src/render/index.d.ts.map +1 -0
  34. package/out-tsc/vitest/src/render/setup.d.ts +2 -0
  35. package/out-tsc/vitest/src/render/setup.d.ts.map +1 -0
  36. package/out-tsc/vitest/src/render/types.d.ts +12 -0
  37. package/out-tsc/vitest/src/render/types.d.ts.map +1 -0
  38. package/out-tsc/vitest/src/runner/factory.d.ts.map +1 -1
  39. package/out-tsc/vitest/src/ui/ReadyScreen.d.ts.map +1 -1
  40. package/out-tsc/vitest/src/ui/WrongEnvironmentScreen.d.ts.map +1 -1
  41. package/out-tsc/vitest/src/ui/state.d.ts +13 -0
  42. package/out-tsc/vitest/src/ui/state.d.ts.map +1 -1
  43. package/out-tsc/vitest/tsconfig.spec.tsbuildinfo +1 -1
  44. package/package.json +2 -2
  45. package/src/constants.ts +0 -1
  46. package/src/ui/ReadyScreen.tsx +0 -12
  47. package/src/ui/WrongEnvironmentScreen.tsx +1 -19
  48. package/assets/logo.png +0 -0
@@ -1,13 +1,11 @@
1
1
  import {
2
2
  View,
3
3
  Text,
4
- Image,
5
4
  StyleSheet,
6
5
  ActivityIndicator,
7
6
  StatusBar,
8
7
  Platform,
9
8
  } from 'react-native';
10
- import { LOGO_IMAGE } from '../constants.js';
11
9
  import { useRunnerStatus } from './state.js';
12
10
  import { TestComponentOverlay } from '../render/TestComponentOverlay.js';
13
11
 
@@ -19,9 +17,6 @@ export const ReadyScreen = () => {
19
17
  return (
20
18
  <View style={styles.container}>
21
19
  <View style={styles.contentContainer}>
22
- <View style={styles.logoContainer}>
23
- <Image style={styles.logo} source={LOGO_IMAGE} />
24
- </View>
25
20
  <Text style={styles.title}>React Native Harness</Text>
26
21
 
27
22
  {status === 'idle' ? (
@@ -79,13 +74,6 @@ const styles = StyleSheet.create({
79
74
  shadowRadius: 30,
80
75
  maxWidth: 350,
81
76
  },
82
- logoContainer: {
83
- marginBottom: 12,
84
- },
85
- logo: {
86
- width: 128,
87
- height: 128,
88
- },
89
77
  title: {
90
78
  fontSize: 28,
91
79
  fontWeight: '700',
@@ -1,20 +1,9 @@
1
- import {
2
- View,
3
- Text,
4
- Image,
5
- StyleSheet,
6
- Platform,
7
- StatusBar,
8
- } from 'react-native';
9
- import { LOGO_IMAGE } from '../constants.js';
1
+ import { View, Text, StyleSheet, Platform, StatusBar } from 'react-native';
10
2
 
11
3
  export const WrongEnvironmentScreen = () => {
12
4
  return (
13
5
  <View style={styles.container}>
14
6
  <View style={styles.contentContainer}>
15
- <View style={styles.logoContainer}>
16
- <Image style={styles.logo} source={LOGO_IMAGE} />
17
- </View>
18
7
  <Text style={styles.title}>React Native Harness</Text>
19
8
 
20
9
  <View style={styles.errorIndicator}>
@@ -59,13 +48,6 @@ const styles = StyleSheet.create({
59
48
  shadowRadius: 30,
60
49
  maxWidth: 350,
61
50
  },
62
- logoContainer: {
63
- marginBottom: 12,
64
- },
65
- logo: {
66
- width: 128,
67
- height: 128,
68
- },
69
51
  title: {
70
52
  fontSize: 28,
71
53
  fontWeight: '700',
package/assets/logo.png DELETED
Binary file