@hero-design/rn 8.43.0 → 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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +9 -0
- package/es/index.js +1339 -1324
- package/jest-setup.ts +2 -0
- package/lib/index.js +1339 -1324
- package/package.json +20 -20
- package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +68 -0
- package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +102 -0
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +85 -0
- package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +34 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +12 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +108 -0
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +17 -0
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +36 -0
- package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +36 -0
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +51 -1
- package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +34 -0
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +128 -0
- package/src/components/Button/__tests__/__snapshots__/IconButton.spec.tsx.snap +17 -0
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +80 -0
- package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +85 -0
- package/src/components/Carousel/CardCarousel.tsx +10 -7
- package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +4 -0
- package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +36 -0
- package/src/components/Checkbox/__tests__/__snapshots__/StyledCheckbox.spec.tsx.snap +68 -0
- package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +72 -0
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +204 -0
- package/src/components/Collapse/index.tsx +1 -1
- package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +72 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +36 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +12 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +12 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +54 -1
- package/src/components/Drawer/__tests__/__snapshots__/index.spec.tsx.snap +51 -0
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +81 -0
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +16 -0
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +24 -0
- package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +16 -0
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +60 -0
- package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +32 -0
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +32 -0
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +16 -0
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +24 -0
- package/src/components/Rate/__tests__/__snapshots__/index.spec.tsx.snap +180 -0
- package/src/components/RichTextEditor/__tests__/__snapshots__/EditorToolbar.spec.tsx.snap +119 -0
- package/src/components/RichTextEditor/__tests__/__snapshots__/MentionList.spec.tsx.snap +1 -0
- package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +18 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +8 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +124 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +437 -4
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +8 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +124 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +323 -3
- package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +51 -0
- package/src/components/Swipeable/index.tsx +3 -3
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +9 -0
- package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +8 -0
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +171 -0
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +40 -0
- package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +159 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +24 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +66 -1
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +102 -0
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +72 -0
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +96 -0
- package/tsconfig.json +4 -1
- package/types/components/Accordion/AccordionItem.d.ts +2 -1
- package/types/components/Accordion/index.d.ts +1 -1
- package/types/components/Attachment/index.d.ts +2 -1
- package/types/components/Avatar/Avatar.d.ts +2 -1
- package/types/components/Avatar/AvatarStack/index.d.ts +2 -2
- package/types/components/Avatar/index.d.ts +3 -2
- package/types/components/Badge/StyledBadge.d.ts +0 -4
- package/types/components/BottomSheet/Footer.d.ts +2 -1
- package/types/components/BottomSheet/Header.d.ts +2 -1
- package/types/components/BottomSheet/ScrollView.d.ts +1 -0
- package/types/components/BottomSheet/StyledBottomSheet.d.ts +0 -4
- package/types/components/Box/index.d.ts +2 -1
- package/types/components/Button/IconButton.d.ts +2 -1
- package/types/components/Button/LoadingIndicator/index.d.ts +2 -1
- package/types/components/Button/UtilityButton/index.d.ts +2 -1
- package/types/components/Calendar/CalendarRowItem.d.ts +2 -1
- package/types/components/Calendar/StyledCalendar.d.ts +1 -1
- package/types/components/Calendar/index.d.ts +2 -1
- package/types/components/Carousel/CardCarousel.d.ts +1 -1
- package/types/components/Carousel/CarouselItem.d.ts +2 -1
- package/types/components/Carousel/index.d.ts +2 -2
- package/types/components/Checkbox/index.d.ts +2 -1
- package/types/components/Chip/index.d.ts +2 -1
- package/types/components/Collapse/StyledCollapse.d.ts +0 -2
- package/types/components/Collapse/index.d.ts +2 -1
- package/types/components/ContentNavigator/index.d.ts +2 -1
- package/types/components/DatePicker/DatePickerAndroid.d.ts +2 -1
- package/types/components/DatePicker/DatePickerCalendar.d.ts +2 -1
- package/types/components/DatePicker/DatePickerIOS.d.ts +2 -1
- package/types/components/DatePicker/index.d.ts +2 -1
- package/types/components/Divider/index.d.ts +2 -1
- package/types/components/Drawer/StyledDrawer.d.ts +0 -6
- package/types/components/Error/StyledError.d.ts +0 -4
- package/types/components/FAB/ActionGroup/ActionItem.d.ts +2 -1
- package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +0 -4
- package/types/components/FAB/AnimatedFABIcon.d.ts +2 -1
- package/types/components/HeroDesignProvider/index.d.ts +2 -1
- package/types/components/Icon/AnimatedIcon.d.ts +2 -1
- package/types/components/Icon/index.d.ts +2 -1
- package/types/components/Icon/utils.d.ts +1 -1
- package/types/components/Image/index.d.ts +1 -0
- package/types/components/Modal/index.d.ts +2 -2
- package/types/components/PageControl/StyledPageControl.d.ts +0 -2
- package/types/components/PageControl/index.d.ts +2 -1
- package/types/components/PinInput/PinCell.d.ts +2 -1
- package/types/components/Portal/PortalHost.d.ts +1 -1
- package/types/components/Portal/PortalProvider.d.ts +1 -1
- package/types/components/Portal/index.d.ts +2 -2
- package/types/components/Progress/ProgressBar.d.ts +1 -0
- package/types/components/Progress/StyledProgressBar.d.ts +0 -2
- package/types/components/Progress/index.d.ts +1 -0
- package/types/components/Rate/StyledRate.d.ts +0 -2
- package/types/components/Rate/index.d.ts +2 -1
- package/types/components/RefreshControl/index.d.ts +2 -1
- package/types/components/RichTextEditor/EditorToolbar.d.ts +2 -1
- package/types/components/RichTextEditor/MentionList.d.ts +2 -1
- package/types/components/RichTextEditor/index.d.ts +2 -2
- package/types/components/Select/BaseOptionList.d.ts +1 -1
- package/types/components/Select/Footer.d.ts +2 -1
- package/types/components/Select/MultiSelect/Option.d.ts +2 -1
- package/types/components/Select/MultiSelect/OptionList.d.ts +2 -1
- package/types/components/Select/MultiSelect/index.d.ts +1 -1
- package/types/components/Select/SingleSelect/Option.d.ts +2 -1
- package/types/components/Select/SingleSelect/OptionList.d.ts +1 -1
- package/types/components/Select/SingleSelect/StyledSingleSelect.d.ts +2 -1
- package/types/components/Select/SingleSelect/index.d.ts +1 -1
- package/types/components/Select/helpers.d.ts +1 -2
- package/types/components/Select/index.d.ts +2 -1
- package/types/components/Skeleton/index.d.ts +2 -1
- package/types/components/Slider/index.d.ts +2 -1
- package/types/components/Spinner/AnimatedSpinner.d.ts +2 -1
- package/types/components/Success/StyledSuccess.d.ts +0 -2
- package/types/components/Swipeable/SwipeableAction.d.ts +2 -2
- package/types/components/Swipeable/index.d.ts +3 -3
- package/types/components/Switch/SelectorSwitch/Option.d.ts +2 -1
- package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +0 -6
- package/types/components/Switch/StyledSwitch.d.ts +0 -2
- package/types/components/Tabs/ActiveTabIndicator.d.ts +2 -1
- package/types/components/Tabs/SceneView.d.ts +1 -1
- package/types/components/Tabs/ScrollableTabs.d.ts +2 -1
- package/types/components/Tabs/ScrollableTabsHeader.d.ts +2 -1
- package/types/components/Tabs/StyledScrollableTabs.d.ts +0 -4
- package/types/components/Tabs/StyledTabs.d.ts +0 -4
- package/types/components/Tabs/TabWithBadge.d.ts +2 -2
- package/types/components/Tabs/index.d.ts +2 -1
- package/types/components/TextInput/StyledTextInput.d.ts +1 -1
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/components/TimePicker/TimePickerAndroid.d.ts +2 -1
- package/types/components/TimePicker/TimePickerIOS.d.ts +2 -1
- package/types/components/TimePicker/index.d.ts +2 -1
- package/types/components/Toast/StyledToast.d.ts +0 -2
- package/types/components/Toast/Toast.d.ts +1 -0
- package/types/components/Toast/ToastProvider.d.ts +2 -1
- package/types/components/Toast/index.d.ts +1 -1
- package/types/components/Toolbar/ToolbarGroup.d.ts +2 -1
- package/types/components/Toolbar/ToolbarItem.d.ts +2 -1
- package/types/components/Toolbar/index.d.ts +3 -2
- package/types/components/Typography/Body/index.d.ts +2 -1
- package/types/components/Typography/Caption/index.d.ts +2 -1
- package/types/components/Typography/Label/index.d.ts +2 -1
- package/types/components/Typography/Text/index.d.ts +2 -1
- package/types/components/Typography/Title/index.d.ts +2 -1
- package/types/testHelpers/renderWithTheme.d.ts +1 -0
- package/types/theme/ThemeSwitcher.d.ts +2 -2
|
@@ -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
|
/>
|