@terreno/ui 0.0.15 → 0.0.16

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 (151) hide show
  1. package/dist/DateUtilities.js +2 -2
  2. package/package.json +1 -1
  3. package/src/ActionSheet.test.tsx +77 -0
  4. package/src/Banner.test.tsx +106 -0
  5. package/src/Body.test.tsx +79 -0
  6. package/src/BooleanField.test.tsx +84 -0
  7. package/src/Button.test.tsx +160 -0
  8. package/src/Card.test.tsx +61 -0
  9. package/src/CheckBox.test.tsx +53 -0
  10. package/src/CustomSelectField.test.tsx +85 -0
  11. package/src/DataTable.test.tsx +133 -0
  12. package/src/DateTimeActionSheet.test.tsx +16 -0
  13. package/src/DateUtilities.tsx +2 -2
  14. package/src/DecimalRangeActionSheet.test.tsx +46 -0
  15. package/src/DismissButton.test.tsx +49 -0
  16. package/src/EmailField.test.tsx +106 -0
  17. package/src/ErrorBoundary.test.tsx +44 -0
  18. package/src/ErrorPage.test.tsx +44 -0
  19. package/src/Field.test.tsx +128 -0
  20. package/src/Heading.test.tsx +66 -0
  21. package/src/HeightActionSheet.test.tsx +34 -0
  22. package/src/Hyperlink.test.tsx +52 -0
  23. package/src/Icon.test.tsx +61 -0
  24. package/src/IconButton.test.tsx +145 -0
  25. package/src/Image.test.tsx +65 -0
  26. package/src/ImageBackground.test.tsx +46 -0
  27. package/src/InfoModalIcon.test.tsx +54 -0
  28. package/src/InfoTooltipButton.test.tsx +22 -0
  29. package/src/Link.test.tsx +64 -0
  30. package/src/MarkdownView.test.tsx +50 -0
  31. package/src/MobileAddressAutoComplete.test.tsx +15 -0
  32. package/src/Modal.test.tsx +169 -0
  33. package/src/ModalSheet.test.tsx +20 -0
  34. package/src/MultiselectField.test.tsx +134 -0
  35. package/src/NumberField.test.tsx +133 -0
  36. package/src/NumberPickerActionSheet.test.tsx +46 -0
  37. package/src/OpenAPIContext.test.tsx +36 -0
  38. package/src/Page.test.tsx +128 -0
  39. package/src/Pagination.test.tsx +86 -0
  40. package/src/PasswordField.test.tsx +17 -0
  41. package/src/PhoneNumberField.test.tsx +79 -0
  42. package/src/PickerSelect.test.tsx +16 -0
  43. package/src/Radio.test.tsx +30 -0
  44. package/src/RadioField.test.tsx +89 -0
  45. package/src/SectionDivider.test.tsx +17 -0
  46. package/src/SegmentedControl.test.tsx +84 -0
  47. package/src/SelectBadge.test.tsx +103 -0
  48. package/src/SelectField.test.tsx +84 -0
  49. package/src/SideDrawer.test.tsx +99 -0
  50. package/src/Signature.test.tsx +15 -0
  51. package/src/SignatureField.test.tsx +16 -0
  52. package/src/Spinner.test.tsx +74 -0
  53. package/src/SplitPage.test.tsx +15 -0
  54. package/src/TapToEdit.test.tsx +147 -0
  55. package/src/TerrenoProvider.test.tsx +36 -0
  56. package/src/Text.test.tsx +147 -0
  57. package/src/Theme.test.tsx +153 -0
  58. package/src/TimezonePicker.test.tsx +57 -0
  59. package/src/Toast.test.tsx +82 -0
  60. package/src/Tooltip.test.tsx +89 -0
  61. package/src/UnifiedAddressAutoComplete.test.tsx +15 -0
  62. package/src/Utilities.test.tsx +237 -0
  63. package/src/WebAddressAutocomplete.test.tsx +15 -0
  64. package/src/__snapshots__/ActionSheet.test.tsx.snap +889 -0
  65. package/src/__snapshots__/Banner.test.tsx.snap +546 -0
  66. package/src/__snapshots__/Body.test.tsx.snap +685 -0
  67. package/src/__snapshots__/BooleanField.test.tsx.snap +553 -0
  68. package/src/__snapshots__/Button.test.tsx.snap +1281 -0
  69. package/src/__snapshots__/Card.test.tsx.snap +195 -0
  70. package/src/__snapshots__/CheckBox.test.tsx.snap +190 -0
  71. package/src/__snapshots__/CustomSelectField.test.tsx.snap +2299 -0
  72. package/src/__snapshots__/DataTable.test.tsx.snap +9614 -0
  73. package/src/__snapshots__/DecimalRangeActionSheet.test.tsx.snap +1719 -0
  74. package/src/__snapshots__/DismissButton.test.tsx.snap +91 -0
  75. package/src/__snapshots__/EmailField.test.tsx.snap +168 -0
  76. package/src/__snapshots__/ErrorBoundary.test.tsx.snap +57 -0
  77. package/src/__snapshots__/ErrorPage.test.tsx.snap +195 -0
  78. package/src/__snapshots__/Field.test.tsx.snap +4510 -0
  79. package/src/__snapshots__/Heading.test.tsx.snap +193 -0
  80. package/src/__snapshots__/HeightActionSheet.test.tsx.snap +1269 -0
  81. package/src/__snapshots__/Hyperlink.test.tsx.snap +81 -0
  82. package/src/__snapshots__/Icon.test.tsx.snap +47 -0
  83. package/src/__snapshots__/IconButton.test.tsx.snap +29 -0
  84. package/src/__snapshots__/Image.test.tsx.snap +282 -0
  85. package/src/__snapshots__/ImageBackground.test.tsx.snap +120 -0
  86. package/src/__snapshots__/InfoModalIcon.test.tsx.snap +1229 -0
  87. package/src/__snapshots__/InfoTooltipButton.test.tsx.snap +7 -0
  88. package/src/__snapshots__/Link.test.tsx.snap +41 -0
  89. package/src/__snapshots__/MarkdownView.test.tsx.snap +965 -0
  90. package/src/__snapshots__/Modal.test.tsx.snap +1477 -0
  91. package/src/__snapshots__/MultiselectField.test.tsx.snap +1454 -0
  92. package/src/__snapshots__/NumberField.test.tsx.snap +80 -0
  93. package/src/__snapshots__/NumberPickerActionSheet.test.tsx.snap +5359 -0
  94. package/src/__snapshots__/OpenAPIContext.test.tsx.snap +14 -0
  95. package/src/__snapshots__/Page.test.tsx.snap +1647 -0
  96. package/src/__snapshots__/Pagination.test.tsx.snap +1913 -0
  97. package/src/__snapshots__/PasswordField.test.tsx.snap +15 -0
  98. package/src/__snapshots__/PhoneNumberField.test.tsx.snap +405 -0
  99. package/src/__snapshots__/PickerSelect.test.tsx.snap +266 -0
  100. package/src/__snapshots__/Radio.test.tsx.snap +111 -0
  101. package/src/__snapshots__/RadioField.test.tsx.snap +944 -0
  102. package/src/__snapshots__/SectionDivider.test.tsx.snap +37 -0
  103. package/src/__snapshots__/SegmentedControl.test.tsx.snap +1422 -0
  104. package/src/__snapshots__/SelectBadge.test.tsx.snap +2377 -0
  105. package/src/__snapshots__/SelectField.test.tsx.snap +1658 -0
  106. package/src/__snapshots__/SideDrawer.test.tsx.snap +1857 -0
  107. package/src/__snapshots__/SignatureField.test.tsx.snap +133 -0
  108. package/src/__snapshots__/Spinner.test.tsx.snap +73 -0
  109. package/src/__snapshots__/TapToEdit.test.tsx.snap +839 -0
  110. package/src/__snapshots__/TerrenoProvider.test.tsx.snap +203 -0
  111. package/src/__snapshots__/Text.test.tsx.snap +558 -0
  112. package/src/__snapshots__/TimezonePicker.test.tsx.snap +6676 -0
  113. package/src/__snapshots__/Toast.test.tsx.snap +1982 -0
  114. package/src/__snapshots__/Tooltip.test.tsx.snap +456 -0
  115. package/src/bunSetup.ts +101 -8
  116. package/src/fieldElements/FieldError.test.tsx +40 -0
  117. package/src/fieldElements/FieldHelperText.test.tsx +34 -0
  118. package/src/fieldElements/FieldTitle.test.tsx +30 -0
  119. package/src/fieldElements/__snapshots__/FieldError.test.tsx.snap +85 -0
  120. package/src/fieldElements/__snapshots__/FieldHelperText.test.tsx.snap +30 -0
  121. package/src/fieldElements/__snapshots__/FieldTitle.test.tsx.snap +19 -0
  122. package/src/icons/MobileIcon.test.tsx +21 -0
  123. package/src/icons/OfflineIcon.test.tsx +21 -0
  124. package/src/icons/OnlineIcon.test.tsx +21 -0
  125. package/src/icons/OutOfficeIcon.test.tsx +21 -0
  126. package/src/icons/__snapshots__/MobileIcon.test.tsx.snap +160 -0
  127. package/src/icons/__snapshots__/OfflineIcon.test.tsx.snap +133 -0
  128. package/src/icons/__snapshots__/OnlineIcon.test.tsx.snap +124 -0
  129. package/src/icons/__snapshots__/OutOfficeIcon.test.tsx.snap +160 -0
  130. package/src/table/Table.test.tsx +107 -0
  131. package/src/table/TableBadge.test.tsx +53 -0
  132. package/src/table/TableBoolean.test.tsx +38 -0
  133. package/src/table/TableDate.test.tsx +27 -0
  134. package/src/table/TableHeader.test.tsx +67 -0
  135. package/src/table/TableHeaderCell.test.tsx +113 -0
  136. package/src/table/TableIconButton.test.tsx +51 -0
  137. package/src/table/TableNumber.test.tsx +45 -0
  138. package/src/table/TableRow.test.tsx +83 -0
  139. package/src/table/TableText.test.tsx +30 -0
  140. package/src/table/TableTitle.test.tsx +30 -0
  141. package/src/table/__snapshots__/Table.test.tsx.snap +2090 -0
  142. package/src/table/__snapshots__/TableBadge.test.tsx.snap +710 -0
  143. package/src/table/__snapshots__/TableBoolean.test.tsx.snap +231 -0
  144. package/src/table/__snapshots__/TableDate.test.tsx.snap +61 -0
  145. package/src/table/__snapshots__/TableHeader.test.tsx.snap +1089 -0
  146. package/src/table/__snapshots__/TableHeaderCell.test.tsx.snap +1773 -0
  147. package/src/table/__snapshots__/TableIconButton.test.tsx.snap +81 -0
  148. package/src/table/__snapshots__/TableNumber.test.tsx.snap +91 -0
  149. package/src/table/__snapshots__/TableRow.test.tsx.snap +1391 -0
  150. package/src/table/__snapshots__/TableText.test.tsx.snap +73 -0
  151. package/src/table/__snapshots__/TableTitle.test.tsx.snap +109 -0
@@ -0,0 +1,91 @@
1
+ // Bun Snapshot v1, https://bun.sh/docs/test/snapshots
2
+
3
+ exports[`DismissButton renders correctly with default props 1`] = `
4
+ {
5
+ "$$typeof": Symbol(react.test.json),
6
+ "children": [
7
+ {
8
+ "$$typeof": Symbol(react.test.json),
9
+ "children": null,
10
+ "props": {
11
+ "style": undefined,
12
+ "testID": undefined,
13
+ },
14
+ "type": "View",
15
+ },
16
+ ],
17
+ "props": {
18
+ "accessibilityHint": undefined,
19
+ "aria-label": "Dismiss",
20
+ "aria-role": "button",
21
+ "onPress": [Function],
22
+ "style": {
23
+ "alignItems": "center",
24
+ "height": 24.5,
25
+ "justifyContent": "center",
26
+ "width": 24.5,
27
+ },
28
+ },
29
+ "type": "Pressable",
30
+ }
31
+ `;
32
+
33
+ exports[`DismissButton renders with primary color (default) 1`] = `
34
+ {
35
+ "$$typeof": Symbol(react.test.json),
36
+ "children": [
37
+ {
38
+ "$$typeof": Symbol(react.test.json),
39
+ "children": null,
40
+ "props": {
41
+ "style": undefined,
42
+ "testID": undefined,
43
+ },
44
+ "type": "View",
45
+ },
46
+ ],
47
+ "props": {
48
+ "accessibilityHint": undefined,
49
+ "aria-label": "Dismiss",
50
+ "aria-role": "button",
51
+ "onPress": [Function],
52
+ "style": {
53
+ "alignItems": "center",
54
+ "height": 24.5,
55
+ "justifyContent": "center",
56
+ "width": 24.5,
57
+ },
58
+ },
59
+ "type": "Pressable",
60
+ }
61
+ `;
62
+
63
+ exports[`DismissButton renders with inverted color 1`] = `
64
+ {
65
+ "$$typeof": Symbol(react.test.json),
66
+ "children": [
67
+ {
68
+ "$$typeof": Symbol(react.test.json),
69
+ "children": null,
70
+ "props": {
71
+ "style": undefined,
72
+ "testID": undefined,
73
+ },
74
+ "type": "View",
75
+ },
76
+ ],
77
+ "props": {
78
+ "accessibilityHint": undefined,
79
+ "aria-label": "Dismiss",
80
+ "aria-role": "button",
81
+ "onPress": [Function],
82
+ "style": {
83
+ "alignItems": "center",
84
+ "height": 24.5,
85
+ "justifyContent": "center",
86
+ "width": 24.5,
87
+ },
88
+ },
89
+ "type": "Pressable",
90
+ }
91
+ `;
@@ -0,0 +1,168 @@
1
+ // Bun Snapshot v1, https://bun.sh/docs/test/snapshots
2
+
3
+ exports[`EmailField renders correctly with default props 1`] = `
4
+ {
5
+ "$$typeof": Symbol(react.test.json),
6
+ "children": [
7
+ {
8
+ "$$typeof": Symbol(react.test.json),
9
+ "children": [
10
+ {
11
+ "$$typeof": Symbol(react.test.json),
12
+ "children": null,
13
+ "props": {
14
+ "accessibilityHint": "Enter text here",
15
+ "accessibilityState": {
16
+ "disabled": undefined,
17
+ },
18
+ "aria-label": "Text input field",
19
+ "autoCapitalize": "none",
20
+ "autoCorrect": false,
21
+ "blurOnSubmit": true,
22
+ "enterKeyHint": undefined,
23
+ "keyboardType": "email-address",
24
+ "multiline": undefined,
25
+ "numberOfLines": 1,
26
+ "onBlur": [Function],
27
+ "onChangeText": [Function],
28
+ "onContentSizeChange": [Function],
29
+ "onFocus": [Function],
30
+ "onSubmitEditing": [Function],
31
+ "placeholder": undefined,
32
+ "placeholderTextColor": "#686868",
33
+ "readOnly": undefined,
34
+ "ref": [Function],
35
+ "secureTextEntry": false,
36
+ "style": {
37
+ "color": "#1C1C1C",
38
+ "flex": 1,
39
+ "fontFamily": "text",
40
+ "fontSize": 16,
41
+ "gap": 10,
42
+ "height": 20,
43
+ "paddingVertical": 0,
44
+ "width": "100%",
45
+ },
46
+ "testID": undefined,
47
+ "textContentType": "emailAddress",
48
+ "underlineColorAndroid": "transparent",
49
+ "value": "",
50
+ },
51
+ "type": "TextInput",
52
+ },
53
+ ],
54
+ "props": {
55
+ "style": {
56
+ "alignItems": "center",
57
+ "backgroundColor": "#FFFFFF",
58
+ "borderColor": "#9A9A9A",
59
+ "borderRadius": 4,
60
+ "borderWidth": 1,
61
+ "flexDirection": "row",
62
+ "overflow": "hidden",
63
+ "paddingHorizontal": 12,
64
+ "paddingVertical": 8,
65
+ },
66
+ "testID": undefined,
67
+ },
68
+ "type": "View",
69
+ },
70
+ ],
71
+ "props": {
72
+ "style": {
73
+ "flexDirection": "column",
74
+ "width": "100%",
75
+ },
76
+ "testID": undefined,
77
+ },
78
+ "type": "View",
79
+ }
80
+ `;
81
+
82
+ exports[`EmailField renders with icon 1`] = `
83
+ {
84
+ "$$typeof": Symbol(react.test.json),
85
+ "children": [
86
+ {
87
+ "$$typeof": Symbol(react.test.json),
88
+ "children": [
89
+ {
90
+ "$$typeof": Symbol(react.test.json),
91
+ "children": null,
92
+ "props": {
93
+ "accessibilityHint": "Enter text here",
94
+ "accessibilityState": {
95
+ "disabled": undefined,
96
+ },
97
+ "aria-label": "Text input field",
98
+ "autoCapitalize": "none",
99
+ "autoCorrect": false,
100
+ "blurOnSubmit": true,
101
+ "enterKeyHint": undefined,
102
+ "keyboardType": "email-address",
103
+ "multiline": undefined,
104
+ "numberOfLines": 1,
105
+ "onBlur": [Function],
106
+ "onChangeText": [Function],
107
+ "onContentSizeChange": [Function],
108
+ "onFocus": [Function],
109
+ "onSubmitEditing": [Function],
110
+ "placeholder": undefined,
111
+ "placeholderTextColor": "#686868",
112
+ "readOnly": undefined,
113
+ "ref": [Function],
114
+ "secureTextEntry": false,
115
+ "style": {
116
+ "color": "#1C1C1C",
117
+ "flex": 1,
118
+ "fontFamily": "text",
119
+ "fontSize": 16,
120
+ "gap": 10,
121
+ "height": 20,
122
+ "paddingVertical": 0,
123
+ "width": "100%",
124
+ },
125
+ "testID": undefined,
126
+ "textContentType": "emailAddress",
127
+ "underlineColorAndroid": "transparent",
128
+ "value": "",
129
+ },
130
+ "type": "TextInput",
131
+ },
132
+ {
133
+ "$$typeof": Symbol(react.test.json),
134
+ "children": null,
135
+ "props": {
136
+ "aria-role": "button",
137
+ "onPress": undefined,
138
+ },
139
+ "type": "Pressable",
140
+ },
141
+ ],
142
+ "props": {
143
+ "style": {
144
+ "alignItems": "center",
145
+ "backgroundColor": "#FFFFFF",
146
+ "borderColor": "#9A9A9A",
147
+ "borderRadius": 4,
148
+ "borderWidth": 1,
149
+ "flexDirection": "row",
150
+ "overflow": "hidden",
151
+ "paddingHorizontal": 12,
152
+ "paddingVertical": 8,
153
+ },
154
+ "testID": undefined,
155
+ },
156
+ "type": "View",
157
+ },
158
+ ],
159
+ "props": {
160
+ "style": {
161
+ "flexDirection": "column",
162
+ "width": "100%",
163
+ },
164
+ "testID": undefined,
165
+ },
166
+ "type": "View",
167
+ }
168
+ `;
@@ -0,0 +1,57 @@
1
+ // Bun Snapshot v1, https://bun.sh/docs/test/snapshots
2
+
3
+ exports[`ErrorBoundary renders correctly with default props 1`] = `
4
+ {
5
+ "$$typeof": Symbol(react.test.json),
6
+ "children": [
7
+ {
8
+ "$$typeof": Symbol(react.test.json),
9
+ "children": [
10
+ "Content",
11
+ ],
12
+ "props": {
13
+ "numberOfLines": 0,
14
+ "selectable": undefined,
15
+ "style": {
16
+ "color": "#1C1C1C",
17
+ "fontFamily": "text-regular",
18
+ "fontSize": 14,
19
+ "textAlign": "left",
20
+ },
21
+ "testID": undefined,
22
+ },
23
+ "type": "Text",
24
+ },
25
+ ],
26
+ "props": {},
27
+ "type": "View",
28
+ }
29
+ `;
30
+
31
+ exports[`ErrorBoundary accepts onError callback prop 1`] = `
32
+ {
33
+ "$$typeof": Symbol(react.test.json),
34
+ "children": [
35
+ {
36
+ "$$typeof": Symbol(react.test.json),
37
+ "children": [
38
+ "Content",
39
+ ],
40
+ "props": {
41
+ "numberOfLines": 0,
42
+ "selectable": undefined,
43
+ "style": {
44
+ "color": "#1C1C1C",
45
+ "fontFamily": "text-regular",
46
+ "fontSize": 14,
47
+ "textAlign": "left",
48
+ },
49
+ "testID": undefined,
50
+ },
51
+ "type": "Text",
52
+ },
53
+ ],
54
+ "props": {},
55
+ "type": "View",
56
+ }
57
+ `;
@@ -0,0 +1,195 @@
1
+ // Bun Snapshot v1, https://bun.sh/docs/test/snapshots
2
+
3
+ exports[`ErrorPage renders correctly 1`] = `
4
+ {
5
+ "$$typeof": Symbol(react.test.json),
6
+ "children": [
7
+ {
8
+ "$$typeof": Symbol(react.test.json),
9
+ "children": [
10
+ {
11
+ "$$typeof": Symbol(react.test.json),
12
+ "children": [
13
+ "Oops!",
14
+ ],
15
+ "props": {
16
+ "numberOfLines": 0,
17
+ "selectable": undefined,
18
+ "style": {
19
+ "color": "#BD1111",
20
+ "fontFamily": "text-bold",
21
+ "fontSize": 16,
22
+ "textAlign": "center",
23
+ },
24
+ "testID": undefined,
25
+ },
26
+ "type": "Text",
27
+ },
28
+ ],
29
+ "props": {},
30
+ "type": "View",
31
+ },
32
+ {
33
+ "$$typeof": Symbol(react.test.json),
34
+ "children": [
35
+ {
36
+ "$$typeof": Symbol(react.test.json),
37
+ "children": [
38
+ {
39
+ "$$typeof": Symbol(react.test.json),
40
+ "children": [
41
+ "There's an error. Sorry! Our team just got a notification about the error so they can fix it as soon as possible!",
42
+ ],
43
+ "props": {
44
+ "numberOfLines": 0,
45
+ "selectable": undefined,
46
+ "style": {
47
+ "color": "#1C1C1C",
48
+ "fontFamily": "text-regular",
49
+ "fontSize": 14,
50
+ "textAlign": "center",
51
+ },
52
+ "testID": undefined,
53
+ },
54
+ "type": "Text",
55
+ },
56
+ ],
57
+ "props": {},
58
+ "type": "View",
59
+ },
60
+ ],
61
+ "props": {
62
+ "onPointerEnter": [Function: AsyncFunction],
63
+ "onPointerLeave": [Function: AsyncFunction],
64
+ "style": {
65
+ "paddingBottom": 12,
66
+ "paddingTop": 12,
67
+ },
68
+ "testID": undefined,
69
+ },
70
+ "type": "View",
71
+ },
72
+ {
73
+ "$$typeof": Symbol(react.test.json),
74
+ "children": [
75
+ {
76
+ "$$typeof": Symbol(react.test.json),
77
+ "children": [
78
+ {
79
+ "$$typeof": Symbol(react.test.json),
80
+ "children": [
81
+ "Error: Test error message",
82
+ ],
83
+ "props": {
84
+ "numberOfLines": 0,
85
+ "selectable": undefined,
86
+ "style": {
87
+ "color": "#1C1C1C",
88
+ "fontFamily": "text-regular",
89
+ "fontSize": 14,
90
+ "textAlign": "left",
91
+ },
92
+ "testID": undefined,
93
+ },
94
+ "type": "Text",
95
+ },
96
+ ],
97
+ "props": {},
98
+ "type": "View",
99
+ },
100
+ ],
101
+ "props": {
102
+ "onPointerEnter": [Function: AsyncFunction],
103
+ "onPointerLeave": [Function: AsyncFunction],
104
+ "style": {
105
+ "paddingBottom": 12,
106
+ "paddingTop": 12,
107
+ },
108
+ "testID": undefined,
109
+ },
110
+ "type": "View",
111
+ },
112
+ {
113
+ "$$typeof": Symbol(react.test.json),
114
+ "children": [
115
+ {
116
+ "$$typeof": Symbol(react.test.json),
117
+ "children": [
118
+ {
119
+ "$$typeof": Symbol(react.test.json),
120
+ "children": [
121
+ {
122
+ "$$typeof": Symbol(react.test.json),
123
+ "children": [
124
+ "Try again",
125
+ ],
126
+ "props": {
127
+ "style": {
128
+ "color": "#FFFFFF",
129
+ "fontSize": 16,
130
+ "fontWeight": "700",
131
+ },
132
+ },
133
+ "type": "Text",
134
+ },
135
+ ],
136
+ "props": {
137
+ "style": {
138
+ "flexDirection": "row",
139
+ },
140
+ "testID": undefined,
141
+ },
142
+ "type": "View",
143
+ },
144
+ ],
145
+ "props": {
146
+ "style": {
147
+ "flexDirection": "row",
148
+ },
149
+ "testID": undefined,
150
+ },
151
+ "type": "View",
152
+ },
153
+ ],
154
+ "props": {
155
+ "accessibilityHint": "Press to perform action",
156
+ "aria-label": "Try again",
157
+ "aria-role": "button",
158
+ "disabled": undefined,
159
+ "onPress": [Function: debounced],
160
+ "style": {
161
+ "alignItems": "center",
162
+ "alignSelf": undefined,
163
+ "backgroundColor": "#0E9DCD",
164
+ "borderColor": undefined,
165
+ "borderRadius": 360,
166
+ "borderWidth": undefined,
167
+ "flexDirection": "column",
168
+ "justifyContent": "center",
169
+ "paddingHorizontal": 20,
170
+ "paddingVertical": 8,
171
+ "width": "auto",
172
+ },
173
+ "testID": undefined,
174
+ },
175
+ "type": "Pressable",
176
+ },
177
+ ],
178
+ "props": {
179
+ "onPointerEnter": [Function: AsyncFunction],
180
+ "onPointerLeave": [Function: AsyncFunction],
181
+ "style": {
182
+ "alignItems": "center",
183
+ "display": "flex",
184
+ "flex": undefined,
185
+ "flexDirection": "column",
186
+ "height": "100%",
187
+ "justifyContent": "center",
188
+ "padding": 32,
189
+ "width": "100%",
190
+ },
191
+ "testID": undefined,
192
+ },
193
+ "type": "View",
194
+ }
195
+ `;