@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
@@ -7,6 +7,14 @@ exports[`Button 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]}
@@ -24,6 +32,7 @@ exports[`Button renders correctly 1`] = `
24
32
  "backgroundColor": "#401960",
25
33
  "borderRadius": 32,
26
34
  "flexDirection": "row",
35
+ "height": 60,
27
36
  "justifyContent": "center",
28
37
  "padding": 16,
29
38
  },
@@ -72,6 +81,14 @@ exports[`Button renders correctly 2`] = `
72
81
  "disabled": true,
73
82
  }
74
83
  }
84
+ accessibilityValue={
85
+ {
86
+ "max": undefined,
87
+ "min": undefined,
88
+ "now": undefined,
89
+ "text": undefined,
90
+ }
91
+ }
75
92
  accessible={true}
76
93
  focusable={true}
77
94
  onClick={[Function]}
@@ -89,6 +106,7 @@ exports[`Button renders correctly 2`] = `
89
106
  "backgroundColor": "#401960",
90
107
  "borderRadius": 32,
91
108
  "flexDirection": "row",
109
+ "height": 60,
92
110
  "justifyContent": "center",
93
111
  "padding": 16,
94
112
  },
@@ -104,7 +122,6 @@ exports[`Button renders correctly 2`] = `
104
122
  "alignItems": "center",
105
123
  "flexDirection": "row",
106
124
  "justifyContent": "center",
107
- "paddingVertical": 1,
108
125
  },
109
126
  {},
110
127
  ]
@@ -132,9 +149,7 @@ exports[`Button renders correctly 2`] = `
132
149
  "backgroundColor": "#ffffff",
133
150
  "borderRadius": 8,
134
151
  "height": 12,
135
- "marginBottom": 4,
136
152
  "marginHorizontal": 8,
137
- "marginTop": 4,
138
153
  "width": 12,
139
154
  },
140
155
  {},
@@ -164,9 +179,7 @@ exports[`Button renders correctly 2`] = `
164
179
  "backgroundColor": "#ffffff",
165
180
  "borderRadius": 8,
166
181
  "height": 12,
167
- "marginBottom": 4,
168
182
  "marginHorizontal": 8,
169
- "marginTop": 4,
170
183
  "width": 12,
171
184
  },
172
185
  {},
@@ -196,9 +209,7 @@ exports[`Button renders correctly 2`] = `
196
209
  "backgroundColor": "#ffffff",
197
210
  "borderRadius": 8,
198
211
  "height": 12,
199
- "marginBottom": 4,
200
212
  "marginHorizontal": 8,
201
- "marginTop": 4,
202
213
  "width": 12,
203
214
  },
204
215
  {},
@@ -218,6 +229,14 @@ exports[`Button renders correctly 3`] = `
218
229
  "disabled": true,
219
230
  }
220
231
  }
232
+ accessibilityValue={
233
+ {
234
+ "max": undefined,
235
+ "min": undefined,
236
+ "now": undefined,
237
+ "text": undefined,
238
+ }
239
+ }
221
240
  accessible={true}
222
241
  focusable={true}
223
242
  onClick={[Function]}
@@ -235,6 +254,7 @@ exports[`Button renders correctly 3`] = `
235
254
  "backgroundColor": "#bfc1c5",
236
255
  "borderRadius": 32,
237
256
  "flexDirection": "row",
257
+ "height": 60,
238
258
  "justifyContent": "center",
239
259
  "padding": 16,
240
260
  },
@@ -283,6 +303,14 @@ exports[`Button renders correctly 4`] = `
283
303
  "disabled": false,
284
304
  }
285
305
  }
306
+ accessibilityValue={
307
+ {
308
+ "max": undefined,
309
+ "min": undefined,
310
+ "now": undefined,
311
+ "text": undefined,
312
+ }
313
+ }
286
314
  accessible={true}
287
315
  focusable={true}
288
316
  onClick={[Function]}
@@ -302,6 +330,7 @@ exports[`Button renders correctly 4`] = `
302
330
  "borderRadius": 32,
303
331
  "borderWidth": 2,
304
332
  "flexDirection": "row",
333
+ "height": 60,
305
334
  "justifyContent": "center",
306
335
  "padding": 14,
307
336
  },
@@ -350,6 +379,14 @@ exports[`Button renders correctly 5`] = `
350
379
  "disabled": true,
351
380
  }
352
381
  }
382
+ accessibilityValue={
383
+ {
384
+ "max": undefined,
385
+ "min": undefined,
386
+ "now": undefined,
387
+ "text": undefined,
388
+ }
389
+ }
353
390
  accessible={true}
354
391
  focusable={true}
355
392
  onClick={[Function]}
@@ -369,6 +406,7 @@ exports[`Button renders correctly 5`] = `
369
406
  "borderRadius": 32,
370
407
  "borderWidth": 2,
371
408
  "flexDirection": "row",
409
+ "height": 60,
372
410
  "justifyContent": "center",
373
411
  "padding": 14,
374
412
  },
@@ -384,7 +422,6 @@ exports[`Button renders correctly 5`] = `
384
422
  "alignItems": "center",
385
423
  "flexDirection": "row",
386
424
  "justifyContent": "center",
387
- "paddingVertical": 1,
388
425
  },
389
426
  {},
390
427
  ]
@@ -412,9 +449,7 @@ exports[`Button renders correctly 5`] = `
412
449
  "backgroundColor": "#401960",
413
450
  "borderRadius": 8,
414
451
  "height": 12,
415
- "marginBottom": 4,
416
452
  "marginHorizontal": 8,
417
- "marginTop": 4,
418
453
  "width": 12,
419
454
  },
420
455
  {},
@@ -444,9 +479,7 @@ exports[`Button renders correctly 5`] = `
444
479
  "backgroundColor": "#401960",
445
480
  "borderRadius": 8,
446
481
  "height": 12,
447
- "marginBottom": 4,
448
482
  "marginHorizontal": 8,
449
- "marginTop": 4,
450
483
  "width": 12,
451
484
  },
452
485
  {},
@@ -476,9 +509,7 @@ exports[`Button renders correctly 5`] = `
476
509
  "backgroundColor": "#401960",
477
510
  "borderRadius": 8,
478
511
  "height": 12,
479
- "marginBottom": 4,
480
512
  "marginHorizontal": 8,
481
- "marginTop": 4,
482
513
  "width": 12,
483
514
  },
484
515
  {},
@@ -498,6 +529,14 @@ exports[`Button renders correctly 6`] = `
498
529
  "disabled": true,
499
530
  }
500
531
  }
532
+ accessibilityValue={
533
+ {
534
+ "max": undefined,
535
+ "min": undefined,
536
+ "now": undefined,
537
+ "text": undefined,
538
+ }
539
+ }
501
540
  accessible={true}
502
541
  focusable={true}
503
542
  onClick={[Function]}
@@ -517,6 +556,7 @@ exports[`Button renders correctly 6`] = `
517
556
  "borderRadius": 32,
518
557
  "borderWidth": 2,
519
558
  "flexDirection": "row",
559
+ "height": 60,
520
560
  "justifyContent": "center",
521
561
  "padding": 14,
522
562
  },
@@ -565,6 +605,14 @@ exports[`Button renders correctly 7`] = `
565
605
  "disabled": false,
566
606
  }
567
607
  }
608
+ accessibilityValue={
609
+ {
610
+ "max": undefined,
611
+ "min": undefined,
612
+ "now": undefined,
613
+ "text": undefined,
614
+ }
615
+ }
568
616
  accessible={true}
569
617
  focusable={true}
570
618
  onClick={[Function]}
@@ -582,6 +630,7 @@ exports[`Button renders correctly 7`] = `
582
630
  "borderRadius": 4,
583
631
  "borderWidth": 0,
584
632
  "flexDirection": "row",
633
+ "height": 60,
585
634
  "justifyContent": "center",
586
635
  "padding": 12,
587
636
  },
@@ -631,6 +680,14 @@ exports[`Button renders correctly 8`] = `
631
680
  "disabled": true,
632
681
  }
633
682
  }
683
+ accessibilityValue={
684
+ {
685
+ "max": undefined,
686
+ "min": undefined,
687
+ "now": undefined,
688
+ "text": undefined,
689
+ }
690
+ }
634
691
  accessible={true}
635
692
  focusable={true}
636
693
  onClick={[Function]}
@@ -648,6 +705,7 @@ exports[`Button renders correctly 8`] = `
648
705
  "borderRadius": 4,
649
706
  "borderWidth": 0,
650
707
  "flexDirection": "row",
708
+ "height": 60,
651
709
  "justifyContent": "center",
652
710
  "padding": 12,
653
711
  },
@@ -663,7 +721,6 @@ exports[`Button renders correctly 8`] = `
663
721
  "alignItems": "center",
664
722
  "flexDirection": "row",
665
723
  "justifyContent": "center",
666
- "paddingVertical": 1,
667
724
  },
668
725
  {},
669
726
  ]
@@ -691,9 +748,7 @@ exports[`Button renders correctly 8`] = `
691
748
  "backgroundColor": "#795e90",
692
749
  "borderRadius": 8,
693
750
  "height": 12,
694
- "marginBottom": 4,
695
751
  "marginHorizontal": 8,
696
- "marginTop": 4,
697
752
  "width": 12,
698
753
  },
699
754
  {},
@@ -723,9 +778,7 @@ exports[`Button renders correctly 8`] = `
723
778
  "backgroundColor": "#795e90",
724
779
  "borderRadius": 8,
725
780
  "height": 12,
726
- "marginBottom": 4,
727
781
  "marginHorizontal": 8,
728
- "marginTop": 4,
729
782
  "width": 12,
730
783
  },
731
784
  {},
@@ -755,9 +808,7 @@ exports[`Button renders correctly 8`] = `
755
808
  "backgroundColor": "#795e90",
756
809
  "borderRadius": 8,
757
810
  "height": 12,
758
- "marginBottom": 4,
759
811
  "marginHorizontal": 8,
760
- "marginTop": 4,
761
812
  "width": 12,
762
813
  },
763
814
  {},
@@ -777,6 +828,14 @@ exports[`Button renders correctly 9`] = `
777
828
  "disabled": true,
778
829
  }
779
830
  }
831
+ accessibilityValue={
832
+ {
833
+ "max": undefined,
834
+ "min": undefined,
835
+ "now": undefined,
836
+ "text": undefined,
837
+ }
838
+ }
780
839
  accessible={true}
781
840
  focusable={true}
782
841
  onClick={[Function]}
@@ -794,6 +853,7 @@ exports[`Button renders correctly 9`] = `
794
853
  "borderRadius": 4,
795
854
  "borderWidth": 0,
796
855
  "flexDirection": "row",
856
+ "height": 60,
797
857
  "justifyContent": "center",
798
858
  "padding": 12,
799
859
  },
@@ -843,6 +903,14 @@ exports[`Button renders correctly 10`] = `
843
903
  "disabled": false,
844
904
  }
845
905
  }
906
+ accessibilityValue={
907
+ {
908
+ "max": undefined,
909
+ "min": undefined,
910
+ "now": undefined,
911
+ "text": undefined,
912
+ }
913
+ }
846
914
  accessible={true}
847
915
  focusable={true}
848
916
  onClick={[Function]}
@@ -860,6 +928,7 @@ exports[`Button renders correctly 10`] = `
860
928
  "borderRadius": 4,
861
929
  "borderWidth": 0,
862
930
  "flexDirection": "row",
931
+ "height": 60,
863
932
  "justifyContent": "center",
864
933
  "padding": 12,
865
934
  },
@@ -909,6 +978,14 @@ exports[`Button renders correctly 11`] = `
909
978
  "disabled": true,
910
979
  }
911
980
  }
981
+ accessibilityValue={
982
+ {
983
+ "max": undefined,
984
+ "min": undefined,
985
+ "now": undefined,
986
+ "text": undefined,
987
+ }
988
+ }
912
989
  accessible={true}
913
990
  focusable={true}
914
991
  onClick={[Function]}
@@ -926,6 +1003,7 @@ exports[`Button renders correctly 11`] = `
926
1003
  "borderRadius": 4,
927
1004
  "borderWidth": 0,
928
1005
  "flexDirection": "row",
1006
+ "height": 60,
929
1007
  "justifyContent": "center",
930
1008
  "padding": 12,
931
1009
  },
@@ -941,7 +1019,6 @@ exports[`Button renders correctly 11`] = `
941
1019
  "alignItems": "center",
942
1020
  "flexDirection": "row",
943
1021
  "justifyContent": "center",
944
- "paddingVertical": 1,
945
1022
  },
946
1023
  {},
947
1024
  ]
@@ -969,9 +1046,7 @@ exports[`Button renders correctly 11`] = `
969
1046
  "backgroundColor": "#795e90",
970
1047
  "borderRadius": 8,
971
1048
  "height": 12,
972
- "marginBottom": 4,
973
1049
  "marginHorizontal": 8,
974
- "marginTop": 4,
975
1050
  "width": 12,
976
1051
  },
977
1052
  {},
@@ -1001,9 +1076,7 @@ exports[`Button renders correctly 11`] = `
1001
1076
  "backgroundColor": "#795e90",
1002
1077
  "borderRadius": 8,
1003
1078
  "height": 12,
1004
- "marginBottom": 4,
1005
1079
  "marginHorizontal": 8,
1006
- "marginTop": 4,
1007
1080
  "width": 12,
1008
1081
  },
1009
1082
  {},
@@ -1033,9 +1106,7 @@ exports[`Button renders correctly 11`] = `
1033
1106
  "backgroundColor": "#795e90",
1034
1107
  "borderRadius": 8,
1035
1108
  "height": 12,
1036
- "marginBottom": 4,
1037
1109
  "marginHorizontal": 8,
1038
- "marginTop": 4,
1039
1110
  "width": 12,
1040
1111
  },
1041
1112
  {},
@@ -1055,6 +1126,14 @@ exports[`Button renders correctly 12`] = `
1055
1126
  "disabled": true,
1056
1127
  }
1057
1128
  }
1129
+ accessibilityValue={
1130
+ {
1131
+ "max": undefined,
1132
+ "min": undefined,
1133
+ "now": undefined,
1134
+ "text": undefined,
1135
+ }
1136
+ }
1058
1137
  accessible={true}
1059
1138
  focusable={true}
1060
1139
  onClick={[Function]}
@@ -1072,6 +1151,7 @@ exports[`Button renders correctly 12`] = `
1072
1151
  "borderRadius": 4,
1073
1152
  "borderWidth": 0,
1074
1153
  "flexDirection": "row",
1154
+ "height": 60,
1075
1155
  "justifyContent": "center",
1076
1156
  "padding": 12,
1077
1157
  },
@@ -1121,6 +1201,14 @@ exports[`Button renders correctly 13`] = `
1121
1201
  "disabled": false,
1122
1202
  }
1123
1203
  }
1204
+ accessibilityValue={
1205
+ {
1206
+ "max": undefined,
1207
+ "min": undefined,
1208
+ "now": undefined,
1209
+ "text": undefined,
1210
+ }
1211
+ }
1124
1212
  accessible={true}
1125
1213
  focusable={true}
1126
1214
  onClick={[Function]}
@@ -1138,6 +1226,7 @@ exports[`Button renders correctly 13`] = `
1138
1226
  "borderRadius": 4,
1139
1227
  "borderWidth": 0,
1140
1228
  "flexDirection": "row",
1229
+ "height": 60,
1141
1230
  "justifyContent": "center",
1142
1231
  "padding": 12,
1143
1232
  },
@@ -1187,6 +1276,14 @@ exports[`Button renders correctly 14`] = `
1187
1276
  "disabled": true,
1188
1277
  }
1189
1278
  }
1279
+ accessibilityValue={
1280
+ {
1281
+ "max": undefined,
1282
+ "min": undefined,
1283
+ "now": undefined,
1284
+ "text": undefined,
1285
+ }
1286
+ }
1190
1287
  accessible={true}
1191
1288
  focusable={true}
1192
1289
  onClick={[Function]}
@@ -1204,6 +1301,7 @@ exports[`Button renders correctly 14`] = `
1204
1301
  "borderRadius": 4,
1205
1302
  "borderWidth": 0,
1206
1303
  "flexDirection": "row",
1304
+ "height": 60,
1207
1305
  "justifyContent": "center",
1208
1306
  "padding": 12,
1209
1307
  },
@@ -1219,7 +1317,6 @@ exports[`Button renders correctly 14`] = `
1219
1317
  "alignItems": "center",
1220
1318
  "flexDirection": "row",
1221
1319
  "justifyContent": "center",
1222
- "paddingVertical": 1,
1223
1320
  },
1224
1321
  {},
1225
1322
  ]
@@ -1247,9 +1344,7 @@ exports[`Button renders correctly 14`] = `
1247
1344
  "backgroundColor": "#cb300a",
1248
1345
  "borderRadius": 8,
1249
1346
  "height": 12,
1250
- "marginBottom": 4,
1251
1347
  "marginHorizontal": 8,
1252
- "marginTop": 4,
1253
1348
  "width": 12,
1254
1349
  },
1255
1350
  {},
@@ -1279,9 +1374,7 @@ exports[`Button renders correctly 14`] = `
1279
1374
  "backgroundColor": "#cb300a",
1280
1375
  "borderRadius": 8,
1281
1376
  "height": 12,
1282
- "marginBottom": 4,
1283
1377
  "marginHorizontal": 8,
1284
- "marginTop": 4,
1285
1378
  "width": 12,
1286
1379
  },
1287
1380
  {},
@@ -1311,9 +1404,7 @@ exports[`Button renders correctly 14`] = `
1311
1404
  "backgroundColor": "#cb300a",
1312
1405
  "borderRadius": 8,
1313
1406
  "height": 12,
1314
- "marginBottom": 4,
1315
1407
  "marginHorizontal": 8,
1316
- "marginTop": 4,
1317
1408
  "width": 12,
1318
1409
  },
1319
1410
  {},
@@ -1333,6 +1424,14 @@ exports[`Button renders correctly 15`] = `
1333
1424
  "disabled": true,
1334
1425
  }
1335
1426
  }
1427
+ accessibilityValue={
1428
+ {
1429
+ "max": undefined,
1430
+ "min": undefined,
1431
+ "now": undefined,
1432
+ "text": undefined,
1433
+ }
1434
+ }
1336
1435
  accessible={true}
1337
1436
  focusable={true}
1338
1437
  onClick={[Function]}
@@ -1350,6 +1449,7 @@ exports[`Button renders correctly 15`] = `
1350
1449
  "borderRadius": 4,
1351
1450
  "borderWidth": 0,
1352
1451
  "flexDirection": "row",
1452
+ "height": 60,
1353
1453
  "justifyContent": "center",
1354
1454
  "padding": 12,
1355
1455
  },
@@ -1399,6 +1499,14 @@ exports[`Button renders loading icon 1`] = `
1399
1499
  "disabled": true,
1400
1500
  }
1401
1501
  }
1502
+ accessibilityValue={
1503
+ {
1504
+ "max": undefined,
1505
+ "min": undefined,
1506
+ "now": undefined,
1507
+ "text": undefined,
1508
+ }
1509
+ }
1402
1510
  accessible={true}
1403
1511
  focusable={true}
1404
1512
  onClick={[Function]}
@@ -1416,6 +1524,7 @@ exports[`Button renders loading icon 1`] = `
1416
1524
  "backgroundColor": "#401960",
1417
1525
  "borderRadius": 32,
1418
1526
  "flexDirection": "row",
1527
+ "height": 60,
1419
1528
  "justifyContent": "center",
1420
1529
  "padding": 16,
1421
1530
  },
@@ -1432,7 +1541,6 @@ exports[`Button renders loading icon 1`] = `
1432
1541
  "alignItems": "center",
1433
1542
  "flexDirection": "row",
1434
1543
  "justifyContent": "center",
1435
- "paddingVertical": 1,
1436
1544
  },
1437
1545
  {},
1438
1546
  ]
@@ -1460,9 +1568,7 @@ exports[`Button renders loading icon 1`] = `
1460
1568
  "backgroundColor": "#ffffff",
1461
1569
  "borderRadius": 8,
1462
1570
  "height": 12,
1463
- "marginBottom": 4,
1464
1571
  "marginHorizontal": 8,
1465
- "marginTop": 4,
1466
1572
  "width": 12,
1467
1573
  },
1468
1574
  {},
@@ -1492,9 +1598,7 @@ exports[`Button renders loading icon 1`] = `
1492
1598
  "backgroundColor": "#ffffff",
1493
1599
  "borderRadius": 8,
1494
1600
  "height": 12,
1495
- "marginBottom": 4,
1496
1601
  "marginHorizontal": 8,
1497
- "marginTop": 4,
1498
1602
  "width": 12,
1499
1603
  },
1500
1604
  {},
@@ -1524,9 +1628,7 @@ exports[`Button renders loading icon 1`] = `
1524
1628
  "backgroundColor": "#ffffff",
1525
1629
  "borderRadius": 8,
1526
1630
  "height": 12,
1527
- "marginBottom": 4,
1528
1631
  "marginHorizontal": 8,
1529
- "marginTop": 4,
1530
1632
  "width": 12,
1531
1633
  },
1532
1634
  {},
@@ -2,6 +2,23 @@
2
2
 
3
3
  exports[`IconButton renders correctly 1`] = `
4
4
  <View
5
+ accessibilityState={
6
+ {
7
+ "busy": undefined,
8
+ "checked": undefined,
9
+ "disabled": undefined,
10
+ "expanded": undefined,
11
+ "selected": undefined,
12
+ }
13
+ }
14
+ accessibilityValue={
15
+ {
16
+ "max": undefined,
17
+ "min": undefined,
18
+ "now": undefined,
19
+ "text": undefined,
20
+ }
21
+ }
5
22
  accessible={true}
6
23
  collapsable={false}
7
24
  focusable={true}