@hero-design/rn 8.42.4 → 8.43.1

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 (202) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/CHANGELOG.md +20 -0
  3. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  4. package/es/index.js +2174 -1988
  5. package/jest-setup.ts +2 -0
  6. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  7. package/lib/index.js +2173 -1986
  8. package/package.json +20 -20
  9. package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +68 -0
  10. package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +102 -0
  11. package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +85 -0
  12. package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +34 -0
  13. package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +12 -0
  14. package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +108 -0
  15. package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +17 -0
  16. package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +36 -0
  17. package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +36 -0
  18. package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +247 -211
  19. package/src/components/BottomSheet/index.tsx +1 -1
  20. package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +6 -10
  21. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +0 -20
  22. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +0 -70
  23. package/src/components/Button/StyledButton.tsx +4 -0
  24. package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +34 -0
  25. package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +144 -42
  26. package/src/components/Button/__tests__/__snapshots__/IconButton.spec.tsx.snap +17 -0
  27. package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +90 -0
  28. package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +85 -0
  29. package/src/components/Carousel/CardCarousel.tsx +10 -7
  30. package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +4 -0
  31. package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +39 -0
  32. package/src/components/Carousel/__tests__/index.spec.tsx +8 -10
  33. package/src/components/Checkbox/__tests__/__snapshots__/StyledCheckbox.spec.tsx.snap +68 -0
  34. package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +72 -0
  35. package/src/components/Chip/StyledChip.tsx +121 -0
  36. package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +1147 -0
  37. package/src/components/Chip/__tests__/index.spec.tsx +136 -0
  38. package/src/components/Chip/index.tsx +82 -0
  39. package/src/components/Collapse/index.tsx +1 -1
  40. package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +72 -0
  41. package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +48 -0
  42. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +12 -0
  43. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +12 -0
  44. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +470 -399
  45. package/src/components/Drawer/__tests__/__snapshots__/index.spec.tsx.snap +51 -0
  46. package/src/components/Error/__tests__/index.spec.tsx +9 -6
  47. package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +81 -0
  48. package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +16 -0
  49. package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +24 -0
  50. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  51. package/src/components/Icon/IconList.ts +1 -0
  52. package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +16 -0
  53. package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +60 -0
  54. package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +32 -0
  55. package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +32 -0
  56. package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +16 -0
  57. package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +24 -0
  58. package/src/components/Rate/__tests__/__snapshots__/index.spec.tsx.snap +180 -0
  59. package/src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx +8 -10
  60. package/src/components/RichTextEditor/__tests__/__snapshots__/EditorToolbar.spec.tsx.snap +119 -0
  61. package/src/components/RichTextEditor/__tests__/__snapshots__/MentionList.spec.tsx.snap +1 -0
  62. package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +18 -0
  63. package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +8 -0
  64. package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +124 -0
  65. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +804 -455
  66. package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +7 -10
  67. package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +8 -0
  68. package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +124 -0
  69. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +790 -532
  70. package/src/components/Success/__tests__/index.spec.tsx +9 -6
  71. package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +51 -0
  72. package/src/components/Swipeable/index.tsx +3 -3
  73. package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +9 -0
  74. package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +8 -0
  75. package/src/components/Tabs/__tests__/SceneView.spec.tsx +19 -23
  76. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +171 -0
  77. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +40 -0
  78. package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +159 -0
  79. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +24 -0
  80. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +482 -399
  81. package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +102 -0
  82. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +72 -0
  83. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +96 -0
  84. package/src/index.ts +2 -0
  85. package/src/testHelpers/renderWithTheme.tsx +1 -7
  86. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +38 -1
  87. package/src/theme/components/button.ts +0 -1
  88. package/src/theme/components/chip.ts +47 -0
  89. package/src/theme/getTheme.ts +3 -0
  90. package/tsconfig.json +4 -1
  91. package/types/components/Accordion/AccordionItem.d.ts +2 -1
  92. package/types/components/Accordion/index.d.ts +1 -1
  93. package/types/components/Attachment/index.d.ts +2 -1
  94. package/types/components/Avatar/Avatar.d.ts +2 -1
  95. package/types/components/Avatar/AvatarStack/index.d.ts +2 -2
  96. package/types/components/Avatar/index.d.ts +3 -2
  97. package/types/components/Badge/StyledBadge.d.ts +0 -4
  98. package/types/components/BottomSheet/Footer.d.ts +2 -1
  99. package/types/components/BottomSheet/Header.d.ts +2 -1
  100. package/types/components/BottomSheet/ScrollView.d.ts +1 -0
  101. package/types/components/BottomSheet/StyledBottomSheet.d.ts +0 -4
  102. package/types/components/Box/index.d.ts +2 -1
  103. package/types/components/Button/IconButton.d.ts +2 -1
  104. package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +3 -3
  105. package/types/components/Button/LoadingIndicator/index.d.ts +2 -1
  106. package/types/components/Button/UtilityButton/index.d.ts +2 -1
  107. package/types/components/Calendar/CalendarRowItem.d.ts +2 -1
  108. package/types/components/Calendar/StyledCalendar.d.ts +1 -1
  109. package/types/components/Calendar/index.d.ts +2 -1
  110. package/types/components/Carousel/CardCarousel.d.ts +1 -1
  111. package/types/components/Carousel/CarouselItem.d.ts +2 -1
  112. package/types/components/Carousel/index.d.ts +2 -2
  113. package/types/components/Checkbox/index.d.ts +2 -1
  114. package/types/components/Chip/StyledChip.d.ts +31 -0
  115. package/types/components/Chip/index.d.ts +27 -0
  116. package/types/components/Collapse/StyledCollapse.d.ts +0 -2
  117. package/types/components/Collapse/index.d.ts +2 -1
  118. package/types/components/ContentNavigator/index.d.ts +2 -1
  119. package/types/components/DatePicker/DatePickerAndroid.d.ts +2 -1
  120. package/types/components/DatePicker/DatePickerCalendar.d.ts +2 -1
  121. package/types/components/DatePicker/DatePickerIOS.d.ts +2 -1
  122. package/types/components/DatePicker/index.d.ts +2 -1
  123. package/types/components/Divider/index.d.ts +2 -1
  124. package/types/components/Drawer/StyledDrawer.d.ts +0 -6
  125. package/types/components/Error/StyledError.d.ts +0 -4
  126. package/types/components/FAB/ActionGroup/ActionItem.d.ts +2 -1
  127. package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +0 -4
  128. package/types/components/FAB/AnimatedFABIcon.d.ts +2 -1
  129. package/types/components/HeroDesignProvider/index.d.ts +2 -1
  130. package/types/components/Icon/AnimatedIcon.d.ts +2 -1
  131. package/types/components/Icon/IconList.d.ts +1 -1
  132. package/types/components/Icon/index.d.ts +3 -2
  133. package/types/components/Icon/utils.d.ts +1 -1
  134. package/types/components/Image/index.d.ts +1 -0
  135. package/types/components/Modal/index.d.ts +2 -2
  136. package/types/components/PageControl/StyledPageControl.d.ts +0 -2
  137. package/types/components/PageControl/index.d.ts +2 -1
  138. package/types/components/PinInput/PinCell.d.ts +2 -1
  139. package/types/components/Portal/PortalHost.d.ts +1 -1
  140. package/types/components/Portal/PortalProvider.d.ts +1 -1
  141. package/types/components/Portal/index.d.ts +2 -2
  142. package/types/components/Progress/ProgressBar.d.ts +1 -0
  143. package/types/components/Progress/StyledProgressBar.d.ts +0 -2
  144. package/types/components/Progress/index.d.ts +1 -0
  145. package/types/components/Rate/StyledRate.d.ts +0 -2
  146. package/types/components/Rate/index.d.ts +2 -1
  147. package/types/components/RefreshControl/index.d.ts +2 -1
  148. package/types/components/RichTextEditor/EditorToolbar.d.ts +2 -1
  149. package/types/components/RichTextEditor/MentionList.d.ts +2 -1
  150. package/types/components/RichTextEditor/index.d.ts +2 -2
  151. package/types/components/Select/BaseOptionList.d.ts +1 -1
  152. package/types/components/Select/Footer.d.ts +2 -1
  153. package/types/components/Select/MultiSelect/Option.d.ts +2 -1
  154. package/types/components/Select/MultiSelect/OptionList.d.ts +2 -1
  155. package/types/components/Select/MultiSelect/index.d.ts +1 -1
  156. package/types/components/Select/SingleSelect/Option.d.ts +2 -1
  157. package/types/components/Select/SingleSelect/OptionList.d.ts +1 -1
  158. package/types/components/Select/SingleSelect/StyledSingleSelect.d.ts +2 -1
  159. package/types/components/Select/SingleSelect/index.d.ts +1 -1
  160. package/types/components/Select/helpers.d.ts +1 -2
  161. package/types/components/Select/index.d.ts +2 -1
  162. package/types/components/Skeleton/index.d.ts +2 -1
  163. package/types/components/Slider/index.d.ts +2 -1
  164. package/types/components/Spinner/AnimatedSpinner.d.ts +2 -1
  165. package/types/components/Success/StyledSuccess.d.ts +0 -2
  166. package/types/components/Swipeable/SwipeableAction.d.ts +2 -2
  167. package/types/components/Swipeable/index.d.ts +3 -3
  168. package/types/components/Switch/SelectorSwitch/Option.d.ts +2 -1
  169. package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +0 -6
  170. package/types/components/Switch/StyledSwitch.d.ts +0 -2
  171. package/types/components/Tabs/ActiveTabIndicator.d.ts +2 -1
  172. package/types/components/Tabs/SceneView.d.ts +1 -1
  173. package/types/components/Tabs/ScrollableTabs.d.ts +2 -1
  174. package/types/components/Tabs/ScrollableTabsHeader.d.ts +2 -1
  175. package/types/components/Tabs/StyledScrollableTabs.d.ts +0 -4
  176. package/types/components/Tabs/StyledTabs.d.ts +0 -4
  177. package/types/components/Tabs/TabWithBadge.d.ts +2 -2
  178. package/types/components/Tabs/index.d.ts +2 -1
  179. package/types/components/TextInput/StyledTextInput.d.ts +1 -1
  180. package/types/components/TextInput/index.d.ts +1 -1
  181. package/types/components/TimePicker/TimePickerAndroid.d.ts +2 -1
  182. package/types/components/TimePicker/TimePickerIOS.d.ts +2 -1
  183. package/types/components/TimePicker/index.d.ts +2 -1
  184. package/types/components/Toast/StyledToast.d.ts +0 -2
  185. package/types/components/Toast/Toast.d.ts +1 -0
  186. package/types/components/Toast/ToastProvider.d.ts +2 -1
  187. package/types/components/Toast/index.d.ts +1 -1
  188. package/types/components/Toolbar/ToolbarGroup.d.ts +2 -1
  189. package/types/components/Toolbar/ToolbarItem.d.ts +2 -1
  190. package/types/components/Toolbar/index.d.ts +3 -2
  191. package/types/components/Typography/Body/index.d.ts +2 -1
  192. package/types/components/Typography/Caption/index.d.ts +2 -1
  193. package/types/components/Typography/Label/index.d.ts +2 -1
  194. package/types/components/Typography/Text/index.d.ts +2 -1
  195. package/types/components/Typography/Title/index.d.ts +2 -1
  196. package/types/index.d.ts +2 -1
  197. package/types/testHelpers/renderWithTheme.d.ts +1 -0
  198. package/types/theme/ThemeSwitcher.d.ts +2 -2
  199. package/types/theme/components/button.d.ts +0 -1
  200. package/types/theme/components/chip.d.ts +40 -0
  201. package/types/theme/getTheme.d.ts +2 -0
  202. package/.turbo/turbo-publish:npm.log +0 -0
@@ -8,7 +8,6 @@ import Box from '../../../Box';
8
8
  import Button from '../../../Button/Button';
9
9
  import type { ListRenderOptionInfo } from '../../types';
10
10
  import theme, { ThemeProvider } from '../../../../theme';
11
- import Portal from '../../../Portal';
12
11
 
13
12
  const options = [
14
13
  { text: 'Monday', value: 'mon' },
@@ -157,15 +156,13 @@ describe('rendering', () => {
157
156
  // should rerender UI if values are changed
158
157
  rerender(
159
158
  <ThemeProvider theme={theme}>
160
- <Portal.Provider>
161
- <MultiSelect
162
- label="Allow notifications"
163
- footerLabel="Confirm"
164
- options={sections}
165
- value={['a', 'a1']}
166
- onConfirm={jest.fn()}
167
- />
168
- </Portal.Provider>
159
+ <MultiSelect
160
+ label="Allow notifications"
161
+ footerLabel="Confirm"
162
+ options={sections}
163
+ value={['a', 'a1']}
164
+ onConfirm={jest.fn()}
165
+ />
169
166
  </ThemeProvider>
170
167
  );
171
168
  expect(toJSON()).toMatchSnapshot();
@@ -7,6 +7,14 @@ exports[`Option renders correctly 1`] = `
7
7
  "disabled": false,
8
8
  }
9
9
  }
10
+ accessibilityValue={
11
+ {
12
+ "max": undefined,
13
+ "min": undefined,
14
+ "now": undefined,
15
+ "text": undefined,
16
+ }
17
+ }
10
18
  accessible={true}
11
19
  focusable={true}
12
20
  onClick={[Function]}
@@ -77,6 +77,7 @@ exports[`OptionList render isLoading correctly 1`] = `
77
77
  >
78
78
  <View>
79
79
  <View
80
+ onFocusCapture={[Function]}
80
81
  onLayout={[Function]}
81
82
  style={null}
82
83
  >
@@ -146,6 +147,7 @@ exports[`OptionList render isLoading correctly 1`] = `
146
147
  </View>
147
148
  </View>
148
149
  <View
150
+ onFocusCapture={[Function]}
149
151
  onLayout={[Function]}
150
152
  style={null}
151
153
  >
@@ -199,6 +201,14 @@ exports[`OptionList render isLoading correctly 1`] = `
199
201
  "disabled": false,
200
202
  }
201
203
  }
204
+ accessibilityValue={
205
+ {
206
+ "max": undefined,
207
+ "min": undefined,
208
+ "now": undefined,
209
+ "text": undefined,
210
+ }
211
+ }
202
212
  accessible={true}
203
213
  focusable={true}
204
214
  onClick={[Function]}
@@ -300,10 +310,12 @@ exports[`OptionList render isLoading correctly 1`] = `
300
310
  </View>
301
311
  </View>
302
312
  <View
313
+ onFocusCapture={[Function]}
303
314
  onLayout={[Function]}
304
315
  style={null}
305
316
  />
306
317
  <View
318
+ onFocusCapture={[Function]}
307
319
  onLayout={[Function]}
308
320
  style={null}
309
321
  >
@@ -373,6 +385,7 @@ exports[`OptionList render isLoading correctly 1`] = `
373
385
  </View>
374
386
  </View>
375
387
  <View
388
+ onFocusCapture={[Function]}
376
389
  onLayout={[Function]}
377
390
  style={null}
378
391
  >
@@ -426,6 +439,14 @@ exports[`OptionList render isLoading correctly 1`] = `
426
439
  "disabled": false,
427
440
  }
428
441
  }
442
+ accessibilityValue={
443
+ {
444
+ "max": undefined,
445
+ "min": undefined,
446
+ "now": undefined,
447
+ "text": undefined,
448
+ }
449
+ }
429
450
  accessible={true}
430
451
  focusable={true}
431
452
  onClick={[Function]}
@@ -533,6 +554,7 @@ exports[`OptionList render isLoading correctly 1`] = `
533
554
  </View>
534
555
  </View>
535
556
  <View
557
+ onFocusCapture={[Function]}
536
558
  onLayout={[Function]}
537
559
  style={null}
538
560
  >
@@ -543,6 +565,14 @@ exports[`OptionList render isLoading correctly 1`] = `
543
565
  "disabled": false,
544
566
  }
545
567
  }
568
+ accessibilityValue={
569
+ {
570
+ "max": undefined,
571
+ "min": undefined,
572
+ "now": undefined,
573
+ "text": undefined,
574
+ }
575
+ }
546
576
  accessible={true}
547
577
  focusable={true}
548
578
  onClick={[Function]}
@@ -644,6 +674,7 @@ exports[`OptionList render isLoading correctly 1`] = `
644
674
  </View>
645
675
  </View>
646
676
  <View
677
+ onFocusCapture={[Function]}
647
678
  onLayout={[Function]}
648
679
  style={null}
649
680
  />
@@ -869,6 +900,7 @@ exports[`OptionList renders correctly 1`] = `
869
900
  >
870
901
  <View>
871
902
  <View
903
+ onFocusCapture={[Function]}
872
904
  onLayout={[Function]}
873
905
  style={null}
874
906
  >
@@ -938,6 +970,7 @@ exports[`OptionList renders correctly 1`] = `
938
970
  </View>
939
971
  </View>
940
972
  <View
973
+ onFocusCapture={[Function]}
941
974
  onLayout={[Function]}
942
975
  style={null}
943
976
  >
@@ -991,6 +1024,14 @@ exports[`OptionList renders correctly 1`] = `
991
1024
  "disabled": false,
992
1025
  }
993
1026
  }
1027
+ accessibilityValue={
1028
+ {
1029
+ "max": undefined,
1030
+ "min": undefined,
1031
+ "now": undefined,
1032
+ "text": undefined,
1033
+ }
1034
+ }
994
1035
  accessible={true}
995
1036
  focusable={true}
996
1037
  onClick={[Function]}
@@ -1092,10 +1133,12 @@ exports[`OptionList renders correctly 1`] = `
1092
1133
  </View>
1093
1134
  </View>
1094
1135
  <View
1136
+ onFocusCapture={[Function]}
1095
1137
  onLayout={[Function]}
1096
1138
  style={null}
1097
1139
  />
1098
1140
  <View
1141
+ onFocusCapture={[Function]}
1099
1142
  onLayout={[Function]}
1100
1143
  style={null}
1101
1144
  >
@@ -1165,6 +1208,7 @@ exports[`OptionList renders correctly 1`] = `
1165
1208
  </View>
1166
1209
  </View>
1167
1210
  <View
1211
+ onFocusCapture={[Function]}
1168
1212
  onLayout={[Function]}
1169
1213
  style={null}
1170
1214
  >
@@ -1218,6 +1262,14 @@ exports[`OptionList renders correctly 1`] = `
1218
1262
  "disabled": false,
1219
1263
  }
1220
1264
  }
1265
+ accessibilityValue={
1266
+ {
1267
+ "max": undefined,
1268
+ "min": undefined,
1269
+ "now": undefined,
1270
+ "text": undefined,
1271
+ }
1272
+ }
1221
1273
  accessible={true}
1222
1274
  focusable={true}
1223
1275
  onClick={[Function]}
@@ -1325,6 +1377,7 @@ exports[`OptionList renders correctly 1`] = `
1325
1377
  </View>
1326
1378
  </View>
1327
1379
  <View
1380
+ onFocusCapture={[Function]}
1328
1381
  onLayout={[Function]}
1329
1382
  style={null}
1330
1383
  >
@@ -1335,6 +1388,14 @@ exports[`OptionList renders correctly 1`] = `
1335
1388
  "disabled": false,
1336
1389
  }
1337
1390
  }
1391
+ accessibilityValue={
1392
+ {
1393
+ "max": undefined,
1394
+ "min": undefined,
1395
+ "now": undefined,
1396
+ "text": undefined,
1397
+ }
1398
+ }
1338
1399
  accessible={true}
1339
1400
  focusable={true}
1340
1401
  onClick={[Function]}
@@ -1436,6 +1497,7 @@ exports[`OptionList renders correctly 1`] = `
1436
1497
  </View>
1437
1498
  </View>
1438
1499
  <View
1500
+ onFocusCapture={[Function]}
1439
1501
  onLayout={[Function]}
1440
1502
  style={null}
1441
1503
  />
@@ -1508,6 +1570,7 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1508
1570
  >
1509
1571
  <View>
1510
1572
  <View
1573
+ onFocusCapture={[Function]}
1511
1574
  onLayout={[Function]}
1512
1575
  style={null}
1513
1576
  >
@@ -1577,6 +1640,7 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1577
1640
  </View>
1578
1641
  </View>
1579
1642
  <View
1643
+ onFocusCapture={[Function]}
1580
1644
  onLayout={[Function]}
1581
1645
  style={null}
1582
1646
  >
@@ -1630,6 +1694,14 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1630
1694
  "disabled": false,
1631
1695
  }
1632
1696
  }
1697
+ accessibilityValue={
1698
+ {
1699
+ "max": undefined,
1700
+ "min": undefined,
1701
+ "now": undefined,
1702
+ "text": undefined,
1703
+ }
1704
+ }
1633
1705
  accessible={true}
1634
1706
  focusable={true}
1635
1707
  onClick={[Function]}
@@ -1731,10 +1803,12 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1731
1803
  </View>
1732
1804
  </View>
1733
1805
  <View
1806
+ onFocusCapture={[Function]}
1734
1807
  onLayout={[Function]}
1735
1808
  style={null}
1736
1809
  />
1737
1810
  <View
1811
+ onFocusCapture={[Function]}
1738
1812
  onLayout={[Function]}
1739
1813
  style={null}
1740
1814
  >
@@ -1804,6 +1878,7 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1804
1878
  </View>
1805
1879
  </View>
1806
1880
  <View
1881
+ onFocusCapture={[Function]}
1807
1882
  onLayout={[Function]}
1808
1883
  style={null}
1809
1884
  >
@@ -1857,6 +1932,14 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1857
1932
  "disabled": false,
1858
1933
  }
1859
1934
  }
1935
+ accessibilityValue={
1936
+ {
1937
+ "max": undefined,
1938
+ "min": undefined,
1939
+ "now": undefined,
1940
+ "text": undefined,
1941
+ }
1942
+ }
1860
1943
  accessible={true}
1861
1944
  focusable={true}
1862
1945
  onClick={[Function]}
@@ -1964,6 +2047,7 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1964
2047
  </View>
1965
2048
  </View>
1966
2049
  <View
2050
+ onFocusCapture={[Function]}
1967
2051
  onLayout={[Function]}
1968
2052
  style={null}
1969
2053
  >
@@ -1974,6 +2058,14 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1974
2058
  "disabled": false,
1975
2059
  }
1976
2060
  }
2061
+ accessibilityValue={
2062
+ {
2063
+ "max": undefined,
2064
+ "min": undefined,
2065
+ "now": undefined,
2066
+ "text": undefined,
2067
+ }
2068
+ }
1977
2069
  accessible={true}
1978
2070
  focusable={true}
1979
2071
  onClick={[Function]}
@@ -2075,6 +2167,7 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
2075
2167
  </View>
2076
2168
  </View>
2077
2169
  <View
2170
+ onFocusCapture={[Function]}
2078
2171
  onLayout={[Function]}
2079
2172
  style={null}
2080
2173
  />
@@ -2147,6 +2240,7 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2147
2240
  >
2148
2241
  <View>
2149
2242
  <View
2243
+ onFocusCapture={[Function]}
2150
2244
  onLayout={[Function]}
2151
2245
  style={null}
2152
2246
  >
@@ -2216,6 +2310,7 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2216
2310
  </View>
2217
2311
  </View>
2218
2312
  <View
2313
+ onFocusCapture={[Function]}
2219
2314
  onLayout={[Function]}
2220
2315
  style={null}
2221
2316
  >
@@ -2269,6 +2364,14 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2269
2364
  "disabled": false,
2270
2365
  }
2271
2366
  }
2367
+ accessibilityValue={
2368
+ {
2369
+ "max": undefined,
2370
+ "min": undefined,
2371
+ "now": undefined,
2372
+ "text": undefined,
2373
+ }
2374
+ }
2272
2375
  accessible={true}
2273
2376
  focusable={true}
2274
2377
  onClick={[Function]}
@@ -2370,10 +2473,12 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2370
2473
  </View>
2371
2474
  </View>
2372
2475
  <View
2476
+ onFocusCapture={[Function]}
2373
2477
  onLayout={[Function]}
2374
2478
  style={null}
2375
2479
  />
2376
2480
  <View
2481
+ onFocusCapture={[Function]}
2377
2482
  onLayout={[Function]}
2378
2483
  style={null}
2379
2484
  >
@@ -2443,6 +2548,7 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2443
2548
  </View>
2444
2549
  </View>
2445
2550
  <View
2551
+ onFocusCapture={[Function]}
2446
2552
  onLayout={[Function]}
2447
2553
  style={null}
2448
2554
  >
@@ -2496,6 +2602,14 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2496
2602
  "disabled": false,
2497
2603
  }
2498
2604
  }
2605
+ accessibilityValue={
2606
+ {
2607
+ "max": undefined,
2608
+ "min": undefined,
2609
+ "now": undefined,
2610
+ "text": undefined,
2611
+ }
2612
+ }
2499
2613
  accessible={true}
2500
2614
  focusable={true}
2501
2615
  onClick={[Function]}
@@ -2603,6 +2717,7 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2603
2717
  </View>
2604
2718
  </View>
2605
2719
  <View
2720
+ onFocusCapture={[Function]}
2606
2721
  onLayout={[Function]}
2607
2722
  style={null}
2608
2723
  >
@@ -2613,6 +2728,14 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2613
2728
  "disabled": false,
2614
2729
  }
2615
2730
  }
2731
+ accessibilityValue={
2732
+ {
2733
+ "max": undefined,
2734
+ "min": undefined,
2735
+ "now": undefined,
2736
+ "text": undefined,
2737
+ }
2738
+ }
2616
2739
  accessible={true}
2617
2740
  focusable={true}
2618
2741
  onClick={[Function]}
@@ -2714,6 +2837,7 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2714
2837
  </View>
2715
2838
  </View>
2716
2839
  <View
2840
+ onFocusCapture={[Function]}
2717
2841
  onLayout={[Function]}
2718
2842
  style={null}
2719
2843
  />