@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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +20 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +2174 -1988
- package/jest-setup.ts +2 -0
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +2173 -1986
- 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 +247 -211
- package/src/components/BottomSheet/index.tsx +1 -1
- package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +6 -10
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +0 -20
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +0 -70
- package/src/components/Button/StyledButton.tsx +4 -0
- package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +34 -0
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +144 -42
- package/src/components/Button/__tests__/__snapshots__/IconButton.spec.tsx.snap +17 -0
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +90 -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 +39 -0
- package/src/components/Carousel/__tests__/index.spec.tsx +8 -10
- 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/StyledChip.tsx +121 -0
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +1147 -0
- package/src/components/Chip/__tests__/index.spec.tsx +136 -0
- package/src/components/Chip/index.tsx +82 -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 +48 -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 +470 -399
- package/src/components/Drawer/__tests__/__snapshots__/index.spec.tsx.snap +51 -0
- package/src/components/Error/__tests__/index.spec.tsx +9 -6
- 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/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +1 -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__/RichTextEditor.spec.tsx +8 -10
- 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 +804 -455
- package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +7 -10
- 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 +790 -532
- package/src/components/Success/__tests__/index.spec.tsx +9 -6
- 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__/SceneView.spec.tsx +19 -23
- 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 +482 -399
- 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/src/index.ts +2 -0
- package/src/testHelpers/renderWithTheme.tsx +1 -7
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +38 -1
- package/src/theme/components/button.ts +0 -1
- package/src/theme/components/chip.ts +47 -0
- package/src/theme/getTheme.ts +3 -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/StyledLoadingIndicator.d.ts +3 -3
- 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/StyledChip.d.ts +31 -0
- package/types/components/Chip/index.d.ts +27 -0
- 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/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +3 -2
- 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/index.d.ts +2 -1
- package/types/testHelpers/renderWithTheme.d.ts +1 -0
- package/types/theme/ThemeSwitcher.d.ts +2 -2
- package/types/theme/components/button.d.ts +0 -1
- package/types/theme/components/chip.d.ts +40 -0
- package/types/theme/getTheme.d.ts +2 -0
- package/.turbo/turbo-publish:npm.log +0 -0
|
@@ -28,6 +28,23 @@ exports[`Drawer renders correctly in invisible state 1`] = `
|
|
|
28
28
|
}
|
|
29
29
|
>
|
|
30
30
|
<View
|
|
31
|
+
accessibilityState={
|
|
32
|
+
{
|
|
33
|
+
"busy": undefined,
|
|
34
|
+
"checked": undefined,
|
|
35
|
+
"disabled": undefined,
|
|
36
|
+
"expanded": undefined,
|
|
37
|
+
"selected": undefined,
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
accessibilityValue={
|
|
41
|
+
{
|
|
42
|
+
"max": undefined,
|
|
43
|
+
"min": undefined,
|
|
44
|
+
"now": undefined,
|
|
45
|
+
"text": undefined,
|
|
46
|
+
}
|
|
47
|
+
}
|
|
31
48
|
accessible={true}
|
|
32
49
|
collapsable={false}
|
|
33
50
|
focusable={true}
|
|
@@ -107,6 +124,23 @@ exports[`Drawer renders correctly in visible state 1`] = `
|
|
|
107
124
|
}
|
|
108
125
|
>
|
|
109
126
|
<View
|
|
127
|
+
accessibilityState={
|
|
128
|
+
{
|
|
129
|
+
"busy": undefined,
|
|
130
|
+
"checked": undefined,
|
|
131
|
+
"disabled": undefined,
|
|
132
|
+
"expanded": undefined,
|
|
133
|
+
"selected": undefined,
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
accessibilityValue={
|
|
137
|
+
{
|
|
138
|
+
"max": undefined,
|
|
139
|
+
"min": undefined,
|
|
140
|
+
"now": undefined,
|
|
141
|
+
"text": undefined,
|
|
142
|
+
}
|
|
143
|
+
}
|
|
110
144
|
accessible={true}
|
|
111
145
|
collapsable={false}
|
|
112
146
|
focusable={true}
|
|
@@ -186,6 +220,23 @@ exports[`Drawer renders correctly with no backdrop 1`] = `
|
|
|
186
220
|
}
|
|
187
221
|
>
|
|
188
222
|
<View
|
|
223
|
+
accessibilityState={
|
|
224
|
+
{
|
|
225
|
+
"busy": undefined,
|
|
226
|
+
"checked": undefined,
|
|
227
|
+
"disabled": undefined,
|
|
228
|
+
"expanded": undefined,
|
|
229
|
+
"selected": undefined,
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
accessibilityValue={
|
|
233
|
+
{
|
|
234
|
+
"max": undefined,
|
|
235
|
+
"min": undefined,
|
|
236
|
+
"now": undefined,
|
|
237
|
+
"text": undefined,
|
|
238
|
+
}
|
|
239
|
+
}
|
|
189
240
|
accessible={true}
|
|
190
241
|
collapsable={false}
|
|
191
242
|
focusable={true}
|
|
@@ -3,6 +3,7 @@ import { fireEvent } from '@testing-library/react-native';
|
|
|
3
3
|
import renderWithTheme from '../../../testHelpers/renderWithTheme';
|
|
4
4
|
import Error from '..';
|
|
5
5
|
import Image from '../../Image';
|
|
6
|
+
import Portal from '../../Portal';
|
|
6
7
|
|
|
7
8
|
const title = `We’re sorry, something went wrong`;
|
|
8
9
|
const description = 'Please try again later';
|
|
@@ -46,12 +47,14 @@ describe('Error', () => {
|
|
|
46
47
|
});
|
|
47
48
|
it('renders full screen error page correctly', () => {
|
|
48
49
|
const { toJSON, getByText, getByTestId } = renderWithTheme(
|
|
49
|
-
<
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
50
|
+
<Portal.Provider>
|
|
51
|
+
<Error
|
|
52
|
+
variant="full-screen"
|
|
53
|
+
title={title}
|
|
54
|
+
description={description}
|
|
55
|
+
image="path_to_image"
|
|
56
|
+
/>
|
|
57
|
+
</Portal.Provider>
|
|
55
58
|
);
|
|
56
59
|
|
|
57
60
|
expect(getByText(title)).toBeTruthy();
|
|
@@ -27,6 +27,14 @@ exports[`ActionGroup has active false 1`] = `
|
|
|
27
27
|
}
|
|
28
28
|
>
|
|
29
29
|
<View
|
|
30
|
+
accessibilityValue={
|
|
31
|
+
{
|
|
32
|
+
"max": undefined,
|
|
33
|
+
"min": undefined,
|
|
34
|
+
"now": undefined,
|
|
35
|
+
"text": undefined,
|
|
36
|
+
}
|
|
37
|
+
}
|
|
30
38
|
accessible={true}
|
|
31
39
|
focusable={false}
|
|
32
40
|
onClick={[Function]}
|
|
@@ -180,6 +188,14 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
180
188
|
}
|
|
181
189
|
>
|
|
182
190
|
<View
|
|
191
|
+
accessibilityValue={
|
|
192
|
+
{
|
|
193
|
+
"max": undefined,
|
|
194
|
+
"min": undefined,
|
|
195
|
+
"now": undefined,
|
|
196
|
+
"text": undefined,
|
|
197
|
+
}
|
|
198
|
+
}
|
|
183
199
|
accessible={true}
|
|
184
200
|
focusable={false}
|
|
185
201
|
onClick={[Function]}
|
|
@@ -307,6 +323,23 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
307
323
|
}
|
|
308
324
|
>
|
|
309
325
|
<View
|
|
326
|
+
accessibilityState={
|
|
327
|
+
{
|
|
328
|
+
"busy": undefined,
|
|
329
|
+
"checked": undefined,
|
|
330
|
+
"disabled": undefined,
|
|
331
|
+
"expanded": undefined,
|
|
332
|
+
"selected": undefined,
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
accessibilityValue={
|
|
336
|
+
{
|
|
337
|
+
"max": undefined,
|
|
338
|
+
"min": undefined,
|
|
339
|
+
"now": undefined,
|
|
340
|
+
"text": undefined,
|
|
341
|
+
}
|
|
342
|
+
}
|
|
310
343
|
accessible={true}
|
|
311
344
|
collapsable={false}
|
|
312
345
|
focusable={true}
|
|
@@ -371,6 +404,14 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
371
404
|
}
|
|
372
405
|
>
|
|
373
406
|
<View
|
|
407
|
+
accessibilityValue={
|
|
408
|
+
{
|
|
409
|
+
"max": undefined,
|
|
410
|
+
"min": undefined,
|
|
411
|
+
"now": undefined,
|
|
412
|
+
"text": undefined,
|
|
413
|
+
}
|
|
414
|
+
}
|
|
374
415
|
accessible={true}
|
|
375
416
|
focusable={false}
|
|
376
417
|
onClick={[Function]}
|
|
@@ -474,6 +515,14 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
474
515
|
}
|
|
475
516
|
>
|
|
476
517
|
<View
|
|
518
|
+
accessibilityValue={
|
|
519
|
+
{
|
|
520
|
+
"max": undefined,
|
|
521
|
+
"min": undefined,
|
|
522
|
+
"now": undefined,
|
|
523
|
+
"text": undefined,
|
|
524
|
+
}
|
|
525
|
+
}
|
|
477
526
|
accessible={true}
|
|
478
527
|
focusable={false}
|
|
479
528
|
onClick={[Function]}
|
|
@@ -577,6 +626,14 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
577
626
|
}
|
|
578
627
|
>
|
|
579
628
|
<View
|
|
629
|
+
accessibilityValue={
|
|
630
|
+
{
|
|
631
|
+
"max": undefined,
|
|
632
|
+
"min": undefined,
|
|
633
|
+
"now": undefined,
|
|
634
|
+
"text": undefined,
|
|
635
|
+
}
|
|
636
|
+
}
|
|
580
637
|
accessible={true}
|
|
581
638
|
focusable={false}
|
|
582
639
|
onClick={[Function]}
|
|
@@ -680,6 +737,14 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
680
737
|
}
|
|
681
738
|
>
|
|
682
739
|
<View
|
|
740
|
+
accessibilityValue={
|
|
741
|
+
{
|
|
742
|
+
"max": undefined,
|
|
743
|
+
"min": undefined,
|
|
744
|
+
"now": undefined,
|
|
745
|
+
"text": undefined,
|
|
746
|
+
}
|
|
747
|
+
}
|
|
683
748
|
accessible={true}
|
|
684
749
|
focusable={false}
|
|
685
750
|
onClick={[Function]}
|
|
@@ -783,6 +848,14 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
783
848
|
}
|
|
784
849
|
>
|
|
785
850
|
<View
|
|
851
|
+
accessibilityValue={
|
|
852
|
+
{
|
|
853
|
+
"max": undefined,
|
|
854
|
+
"min": undefined,
|
|
855
|
+
"now": undefined,
|
|
856
|
+
"text": undefined,
|
|
857
|
+
}
|
|
858
|
+
}
|
|
786
859
|
accessible={true}
|
|
787
860
|
focusable={false}
|
|
788
861
|
onClick={[Function]}
|
|
@@ -876,6 +949,14 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
876
949
|
</View>
|
|
877
950
|
</View>
|
|
878
951
|
<View
|
|
952
|
+
accessibilityValue={
|
|
953
|
+
{
|
|
954
|
+
"max": undefined,
|
|
955
|
+
"min": undefined,
|
|
956
|
+
"now": undefined,
|
|
957
|
+
"text": undefined,
|
|
958
|
+
}
|
|
959
|
+
}
|
|
879
960
|
accessible={true}
|
|
880
961
|
focusable={false}
|
|
881
962
|
onClick={[Function]}
|
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`StyledFAB renders correctly 1`] = `
|
|
4
4
|
<View
|
|
5
|
+
accessibilityValue={
|
|
6
|
+
{
|
|
7
|
+
"max": undefined,
|
|
8
|
+
"min": undefined,
|
|
9
|
+
"now": undefined,
|
|
10
|
+
"text": undefined,
|
|
11
|
+
}
|
|
12
|
+
}
|
|
5
13
|
accessible={true}
|
|
6
14
|
focusable={false}
|
|
7
15
|
onClick={[Function]}
|
|
@@ -59,6 +67,14 @@ exports[`StyledFAB renders correctly 1`] = `
|
|
|
59
67
|
|
|
60
68
|
exports[`StyledFAB renders correctly 2`] = `
|
|
61
69
|
<View
|
|
70
|
+
accessibilityValue={
|
|
71
|
+
{
|
|
72
|
+
"max": undefined,
|
|
73
|
+
"min": undefined,
|
|
74
|
+
"now": undefined,
|
|
75
|
+
"text": undefined,
|
|
76
|
+
}
|
|
77
|
+
}
|
|
62
78
|
accessible={true}
|
|
63
79
|
focusable={false}
|
|
64
80
|
onClick={[Function]}
|
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`FAB when animated is false renders StyledFABIcon 1`] = `
|
|
4
4
|
<View
|
|
5
|
+
accessibilityValue={
|
|
6
|
+
{
|
|
7
|
+
"max": undefined,
|
|
8
|
+
"min": undefined,
|
|
9
|
+
"now": undefined,
|
|
10
|
+
"text": undefined,
|
|
11
|
+
}
|
|
12
|
+
}
|
|
5
13
|
accessible={true}
|
|
6
14
|
focusable={false}
|
|
7
15
|
onClick={[Function]}
|
|
@@ -70,6 +78,14 @@ exports[`FAB when animated is false renders StyledFABIcon 1`] = `
|
|
|
70
78
|
|
|
71
79
|
exports[`FAB when animated is true renders animatedFABIcon 1`] = `
|
|
72
80
|
<View
|
|
81
|
+
accessibilityValue={
|
|
82
|
+
{
|
|
83
|
+
"max": undefined,
|
|
84
|
+
"min": undefined,
|
|
85
|
+
"now": undefined,
|
|
86
|
+
"text": undefined,
|
|
87
|
+
}
|
|
88
|
+
}
|
|
73
89
|
accessible={true}
|
|
74
90
|
focusable={false}
|
|
75
91
|
onClick={[Function]}
|
|
@@ -168,6 +184,14 @@ exports[`FAB when animated is true renders animatedFABIcon 1`] = `
|
|
|
168
184
|
|
|
169
185
|
exports[`FAB when title has value renders correctly 1`] = `
|
|
170
186
|
<View
|
|
187
|
+
accessibilityValue={
|
|
188
|
+
{
|
|
189
|
+
"max": undefined,
|
|
190
|
+
"min": undefined,
|
|
191
|
+
"now": undefined,
|
|
192
|
+
"text": undefined,
|
|
193
|
+
}
|
|
194
|
+
}
|
|
171
195
|
accessible={true}
|
|
172
196
|
focusable={false}
|
|
173
197
|
onClick={[Function]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"activate":59000,"add-emoji":59001,"add-person":59002,"adjustment":59003,"alignment":59004,"antenna":59005,"archive":59006,"assignment-warning":59007,"bank":59008,"bell":59009,"billing":59010,"bolt":59011,"bookmark-added":59012,"bookmark":59013,"box-check":59014,"box":59015,"bpay":59016,"buildings":59017,"cake":59018,"calendar-clock":59019,"calendar":59020,"candy-box-menu":59021,"caret-down-small":59022,"caret-down":59023,"caret-left-small":59024,"caret-left":59025,"caret-right-small":59026,"caret-right":59027,"caret-up-small":59028,"caret-up":59029,"check-radio":59030,"circle-add":59031,"circle-cancel":59032,"circle-check":59033,"circle-down":59034,"circle-info":59035,"circle-left":59036,"circle-ok":59037,"circle-pencil":59038,"circle-question":59039,"circle-remove":59040,"circle-right":59041,"circle-up":59042,"circle-warning":59043,"clock-3":59044,"clock":59045,"cloud-download":59046,"cloud-upload":59047,"cog":59048,"coin":59049,"contacts":59050,"credit-card":59051,"diamond":59052,"direction-arrows":59053,"directory":59054,"document":59055,"dollar-coin-shine":59056,"double-buildings":59057,"edit-template":59058,"envelope":59059,"exclude":59060,"expense":59061,"eye-circle":59062,"eye-invisible":59063,"eye":59064,"face-meh":59065,"face-sad":59066,"face-smiley":59067,"feed":59068,"feedbacks":59069,"file-certified":59070,"file-clone":59071,"file-copy":59072,"file-csv":59073,"file-dispose":59074,"file-doc":59075,"file-excel":59076,"file-export":59077,"file-lock":59078,"file-pdf":59079,"file-powerpoint":59080,"file-search":59081,"file-secured":59082,"file-sheets":59083,"file-slide":59084,"file-verified":59085,"file-word":59086,"file":59087,"filter":59088,"folder-user":59089,"folder":59090,"format-bold":59091,"format-heading1":59092,"format-heading2":59093,"format-italic":59094,"format-list-bulleted":59095,"format-list-numbered":59096,"format-underlined":59097,"funnel-filter":59098,"global-dollar":59099,"globe":59100,"graduation-cap":59101,"graph":59102,"happy-sun":59103,"health-bag":59104,"heart":59105,"home":59106,"image":59107,"import":59108,"incident-siren":59109,"instapay":59110,"list":59111,"loading-2":59112,"loading":59113,"location":59114,"lock":59115,"looks-one":59116,"looks-two":59117,"media-content":59118,"menu":59119,"money-notes":59120,"moneybag":59121,"moon":59122,"multiple-stars":59123,"multiple-users":59124,"node":59125,"open-folder":59126,"paperclip":59127,"payment-summary":59128,"pencil":59129,"phone":59130,"piggy-bank":59131,"plane-up":59132,"plane":59133,"play-circle":59134,"print":59135,"raising-hands":59136,"reply-arrow":59137,"reply":59138,"reschedule":59139,"rostering":59140,"save":59141,"schedule-send":59142,"schedule":59143,"search-person":59144,"send":59145,"speaker-active":59146,"speaker":59147,"star-award":59148,"star-badge":59149,"star-circle":59150,"star-medal":59151,"star":59152,"steps-circle":59153,"stopwatch":59154,"suitcase":59155,"surfing":59156,"survey":59157,"swag-pillar-benefit":59158,"swag-pillar-career":59159,"swag-pillar-money":59160,"swag-pillar-work":59161,"swag":59162,"switch":59163,"tag":59164,"target":59165,"teams":59166,"timesheet":59167,"touch-id":59168,"trash-bin":59169,"unlock":59170,"user":59171,"video-1":59172,"video-2":59173,"wallet":59174,"warning":59175,"activate-outlined":59176,"add-credit-card-outlined":59177,"add-person-outlined":59178,"add-section-outlined":59179,"add-time-outlined":59180,"add":59181,"adjustment-outlined":59182,"ai-outlined":59183,"alignment-2-outlined":59184,"alignment-outlined":59185,"all-caps":59186,"arrow-down":59187,"arrow-downwards":59188,"arrow-left":59189,"arrow-leftwards":59190,"arrow-right":59191,"arrow-rightwards":59192,"arrow-up":59193,"arrow-upwards":59194,"article-outlined":59195,"at-sign":59196,"auto-graph-outlined":59197,"beer-outlined":59198,"bell-active-outlined":59199,"bell-outlined":59200,"bell-slash-outlined":59201,"billing-outlined":59202,"body-outlined":59203,"bold":59204,"bolt-outlined":59205,"book-outlined":59206,"bookmark-added-outlined":59207,"bookmark-outlined":59208,"box-check-outlined":59209,"box-outlined":59210,"bullet-points":59211,"cake-outlined":59212,"calendar-dates-outlined":59213,"calendar-star-outlined":59214,"call-outlined":59215,"call-split-outlined":59216,"camera-outlined":59217,"cancel":59218,"car-forward-outlined":59219,"charging-station-outlined":59220,"chat-bubble-outlined":59221,"chat-unread-outlined":59222,"checkmark":59223,"circle-add-outlined":59224,"circle-cancel-outlined":59225,"circle-down-outlined":59226,"circle-info-outlined":59227,"circle-left-outlined":59228,"circle-ok-outlined":59229,"circle-question-outlined":59230,"circle-remove-outlined":59231,"circle-right-outlined":59232,"circle-up-outlined":59233,"circle-warning-outlined":59234,"clock-2-outlined":59235,"clock-outlined":59236,"cog-outlined":59237,"coin-outlined":59238,"coin-super-outlined":59239,"comment-outlined":59240,"contacts-outlined":59241,"contacts-user-outlined":59242,"credit-card-outlined":59243,"cup-outlined":59244,"dentistry-outlined":59245,"direction-arrows-outlined":59246,"directory-outlined":59247,"document-outlined":59248,"dollar-box-outlined":59249,"dollar-card-outlined":59250,"dollar-coin-shine-outlined":59251,"dollar-credit-card-outlined":59252,"dollar-sign":59253,"double-buildings-outlined":59254,"double-left-arrows":59255,"double-right-arrows":59256,"download-box-outlined":59257,"download-outlined":59258,"edit-template-outlined":59259,"email-outlined":59260,"enter-arrow":59261,"envelope-outlined":59262,"expense-outlined":59263,"explore-outlined":59264,"extension-outlined":59265,"external-link":59266,"eye-invisible-outlined":59267,"eye-outlined":59268,"face-id":59269,"face-meh-outlined":59270,"face-open-smiley-outlined":59271,"face-sad-outlined":59272,"face-smiley-outlined":59273,"fastfood-outlined":59274,"feed-outlined":59275,"file-certified-outlined":59276,"file-clone-outlined":59277,"file-copy-outlined":59278,"file-dispose-outlined":59279,"file-dollar-certified-outlined":59280,"file-dollar-outlined":59281,"file-download-outlined":59282,"file-export-outlined":59283,"file-lock-outlined":59284,"file-outlined":59285,"file-search-outlined":59286,"file-secured-outlined":59287,"file-statutory-outlined":59288,"file-verified-outlined":59289,"filter-outlined":59290,"folder-outlined":59291,"folder-user-outlined":59292,"form-outlined":59293,"funnel-filter-outline":59294,"
|
|
1
|
+
{"activate":59000,"add-emoji":59001,"add-person":59002,"adjustment":59003,"alignment":59004,"antenna":59005,"archive":59006,"assignment-warning":59007,"bank":59008,"bell":59009,"billing":59010,"bolt":59011,"bookmark-added":59012,"bookmark":59013,"box-check":59014,"box":59015,"bpay":59016,"buildings":59017,"cake":59018,"calendar-clock":59019,"calendar":59020,"candy-box-menu":59021,"caret-down-small":59022,"caret-down":59023,"caret-left-small":59024,"caret-left":59025,"caret-right-small":59026,"caret-right":59027,"caret-up-small":59028,"caret-up":59029,"check-radio":59030,"circle-add":59031,"circle-cancel":59032,"circle-check":59033,"circle-down":59034,"circle-info":59035,"circle-left":59036,"circle-ok":59037,"circle-pencil":59038,"circle-question":59039,"circle-remove":59040,"circle-right":59041,"circle-up":59042,"circle-warning":59043,"clock-3":59044,"clock":59045,"cloud-download":59046,"cloud-upload":59047,"cog":59048,"coin":59049,"contacts":59050,"credit-card":59051,"diamond":59052,"direction-arrows":59053,"directory":59054,"document":59055,"dollar-coin-shine":59056,"double-buildings":59057,"edit-template":59058,"envelope":59059,"exclude":59060,"expense":59061,"eye-circle":59062,"eye-invisible":59063,"eye":59064,"face-meh":59065,"face-sad":59066,"face-smiley":59067,"feed":59068,"feedbacks":59069,"file-certified":59070,"file-clone":59071,"file-copy":59072,"file-csv":59073,"file-dispose":59074,"file-doc":59075,"file-excel":59076,"file-export":59077,"file-lock":59078,"file-pdf":59079,"file-powerpoint":59080,"file-search":59081,"file-secured":59082,"file-sheets":59083,"file-slide":59084,"file-verified":59085,"file-word":59086,"file":59087,"filter":59088,"folder-user":59089,"folder":59090,"format-bold":59091,"format-heading1":59092,"format-heading2":59093,"format-italic":59094,"format-list-bulleted":59095,"format-list-numbered":59096,"format-underlined":59097,"funnel-filter":59098,"global-dollar":59099,"globe":59100,"graduation-cap":59101,"graph":59102,"happy-sun":59103,"health-bag":59104,"heart":59105,"home":59106,"image":59107,"import":59108,"incident-siren":59109,"instapay":59110,"list":59111,"loading-2":59112,"loading":59113,"location":59114,"lock":59115,"looks-one":59116,"looks-two":59117,"media-content":59118,"menu":59119,"money-notes":59120,"moneybag":59121,"moon":59122,"multiple-stars":59123,"multiple-users":59124,"node":59125,"open-folder":59126,"paperclip":59127,"payment-summary":59128,"pencil":59129,"phone":59130,"piggy-bank":59131,"plane-up":59132,"plane":59133,"play-circle":59134,"print":59135,"raising-hands":59136,"reply-arrow":59137,"reply":59138,"reschedule":59139,"rostering":59140,"save":59141,"schedule-send":59142,"schedule":59143,"search-person":59144,"send":59145,"speaker-active":59146,"speaker":59147,"star-award":59148,"star-badge":59149,"star-circle":59150,"star-medal":59151,"star":59152,"steps-circle":59153,"stopwatch":59154,"suitcase":59155,"surfing":59156,"survey":59157,"swag-pillar-benefit":59158,"swag-pillar-career":59159,"swag-pillar-money":59160,"swag-pillar-work":59161,"swag":59162,"switch":59163,"tag":59164,"target":59165,"teams":59166,"timesheet":59167,"touch-id":59168,"trash-bin":59169,"unlock":59170,"user":59171,"video-1":59172,"video-2":59173,"wallet":59174,"warning":59175,"activate-outlined":59176,"add-credit-card-outlined":59177,"add-person-outlined":59178,"add-section-outlined":59179,"add-time-outlined":59180,"add":59181,"adjustment-outlined":59182,"ai-outlined":59183,"alignment-2-outlined":59184,"alignment-outlined":59185,"all-caps":59186,"arrow-down":59187,"arrow-downwards":59188,"arrow-left":59189,"arrow-leftwards":59190,"arrow-right":59191,"arrow-rightwards":59192,"arrow-up":59193,"arrow-upwards":59194,"article-outlined":59195,"at-sign":59196,"auto-graph-outlined":59197,"beer-outlined":59198,"bell-active-outlined":59199,"bell-outlined":59200,"bell-slash-outlined":59201,"billing-outlined":59202,"body-outlined":59203,"bold":59204,"bolt-outlined":59205,"book-outlined":59206,"bookmark-added-outlined":59207,"bookmark-outlined":59208,"box-check-outlined":59209,"box-outlined":59210,"bullet-points":59211,"cake-outlined":59212,"calendar-dates-outlined":59213,"calendar-star-outlined":59214,"call-outlined":59215,"call-split-outlined":59216,"camera-outlined":59217,"cancel":59218,"car-forward-outlined":59219,"charging-station-outlined":59220,"chat-bubble-outlined":59221,"chat-unread-outlined":59222,"checkmark":59223,"circle-add-outlined":59224,"circle-cancel-outlined":59225,"circle-down-outlined":59226,"circle-info-outlined":59227,"circle-left-outlined":59228,"circle-ok-outlined":59229,"circle-question-outlined":59230,"circle-remove-outlined":59231,"circle-right-outlined":59232,"circle-up-outlined":59233,"circle-warning-outlined":59234,"clock-2-outlined":59235,"clock-outlined":59236,"cog-outlined":59237,"coin-outlined":59238,"coin-super-outlined":59239,"comment-outlined":59240,"contacts-outlined":59241,"contacts-user-outlined":59242,"credit-card-outlined":59243,"cup-outlined":59244,"dentistry-outlined":59245,"direction-arrows-outlined":59246,"directory-outlined":59247,"document-outlined":59248,"dollar-box-outlined":59249,"dollar-card-outlined":59250,"dollar-coin-shine-outlined":59251,"dollar-credit-card-outlined":59252,"dollar-sign":59253,"double-buildings-outlined":59254,"double-left-arrows":59255,"double-right-arrows":59256,"download-box-outlined":59257,"download-outlined":59258,"edit-template-outlined":59259,"email-outlined":59260,"enter-arrow":59261,"envelope-outlined":59262,"expense-outlined":59263,"explore-outlined":59264,"extension-outlined":59265,"external-link":59266,"eye-invisible-outlined":59267,"eye-outlined":59268,"face-id":59269,"face-meh-outlined":59270,"face-open-smiley-outlined":59271,"face-sad-outlined":59272,"face-smiley-outlined":59273,"fastfood-outlined":59274,"feed-outlined":59275,"file-certified-outlined":59276,"file-clone-outlined":59277,"file-copy-outlined":59278,"file-dispose-outlined":59279,"file-dollar-certified-outlined":59280,"file-dollar-outlined":59281,"file-download-outlined":59282,"file-export-outlined":59283,"file-lock-outlined":59284,"file-outlined":59285,"file-search-outlined":59286,"file-secured-outlined":59287,"file-statutory-outlined":59288,"file-verified-outlined":59289,"filter-outlined":59290,"folder-outlined":59291,"folder-user-outlined":59292,"form-outlined":59293,"funnel-filter-outline":59294,"goal-outlined":59295,"graph-outlined":59296,"hand-holding-user-outlined":59297,"happy-sun-outlined":59298,"health-bag-outlined":59299,"heart-outlined":59300,"home-active-outlined":59301,"home-outlined":59302,"id-card-outlined":59303,"image-outlined":59304,"import-outlined":59305,"instapay-outlined":59306,"italic":59307,"link-1":59308,"link-2":59309,"list-outlined":59310,"live-help-outlined":59311,"location-on-outlined":59312,"location-outlined":59313,"lock-outlined":59314,"locked-file-outlined":59315,"log-out":59316,"mail-outlined":59317,"media-content-outlined":59318,"menu-close":59319,"menu-expand":59320,"menu-fold-outlined":59321,"menu-unfold-outlined":59322,"moneybag-outlined":59323,"moon-outlined":59324,"more-horizontal":59325,"more-vertical":59326,"multiple-folders-outlined":59327,"multiple-users-outlined":59328,"near-me-outlined":59329,"node-outlined":59330,"number-points":59331,"number":59332,"overview-outlined":59333,"payment-summary-outlined":59334,"payslip-outlined":59335,"pencil-outlined":59336,"percentage":59337,"phone-outlined":59338,"piggy-bank-outlined":59339,"plane-outlined":59340,"play-circle-outlined":59341,"print-outlined":59342,"propane-tank-outlined":59343,"qr-code-outlined":59344,"qualification-outlined":59345,"re-assign":59346,"redeem":59347,"refresh":59348,"remove":59349,"reply-outlined":59350,"restart":59351,"return-arrow":59352,"rostering-outlined":59353,"save-outlined":59354,"schedule-outlined":59355,"search-outlined":59356,"search-secured-outlined":59357,"send-outlined":59358,"share-1":59359,"share-2":59360,"share-outlined":59361,"show-chart-outlined":59362,"single-down-arrow":59363,"single-left-arrow":59364,"single-right-arrow":59365,"single-up-arrow":59366,"sparkle-outlined":59367,"speaker-active-outlined":59368,"speaker-outlined":59369,"star-circle-outlined":59370,"star-outlined":59371,"stopwatch-outlined":59372,"strikethrough":59373,"styler-outlined":59374,"suitcase-clock-outlined":59375,"suitcase-outlined":59376,"survey-outlined":59377,"switch-outlined":59378,"sync":59379,"tag-outlined":59380,"target-outlined":59381,"tennis-outlined":59382,"ticket-outlined":59383,"timesheet-outlined":59384,"today-outlined":59385,"transfer":59386,"trash-bin-outlined":59387,"umbrela-outlined":59388,"unavailable":59389,"underline":59390,"union-outlined":59391,"unlock-outlined":59392,"upload-outlined":59393,"user-circle-outlined":59394,"user-gear-outlined":59395,"user-outlined":59396,"user-rectangle-outlined":59397,"video-1-outlined":59398,"video-2-outlined":59399,"volunteer-outlined":59400,"wallet-outlined":59401}
|
|
@@ -7,6 +7,14 @@ exports[`BasicListItem when suffix and prefix are icon name 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={false}
|
|
12
20
|
onClick={[Function]}
|
|
@@ -141,6 +149,14 @@ exports[`BasicListItem when suffix and prefix are react element renders correctl
|
|
|
141
149
|
"disabled": false,
|
|
142
150
|
}
|
|
143
151
|
}
|
|
152
|
+
accessibilityValue={
|
|
153
|
+
{
|
|
154
|
+
"max": undefined,
|
|
155
|
+
"min": undefined,
|
|
156
|
+
"now": undefined,
|
|
157
|
+
"text": undefined,
|
|
158
|
+
}
|
|
159
|
+
}
|
|
144
160
|
accessible={true}
|
|
145
161
|
focusable={false}
|
|
146
162
|
onClick={[Function]}
|
|
@@ -7,6 +7,14 @@ exports[`ListItem renders correctly ListItem with children 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={false}
|
|
12
20
|
onClick={[Function]}
|
|
@@ -61,7 +69,19 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
|
|
|
61
69
|
<View
|
|
62
70
|
accessibilityState={
|
|
63
71
|
{
|
|
72
|
+
"busy": undefined,
|
|
73
|
+
"checked": undefined,
|
|
64
74
|
"disabled": true,
|
|
75
|
+
"expanded": undefined,
|
|
76
|
+
"selected": undefined,
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
accessibilityValue={
|
|
80
|
+
{
|
|
81
|
+
"max": undefined,
|
|
82
|
+
"min": undefined,
|
|
83
|
+
"now": undefined,
|
|
84
|
+
"text": undefined,
|
|
65
85
|
}
|
|
66
86
|
}
|
|
67
87
|
accessible={true}
|
|
@@ -334,6 +354,14 @@ exports[`ListItem renders correctly ListItem with icon 1`] = `
|
|
|
334
354
|
"disabled": false,
|
|
335
355
|
}
|
|
336
356
|
}
|
|
357
|
+
accessibilityValue={
|
|
358
|
+
{
|
|
359
|
+
"max": undefined,
|
|
360
|
+
"min": undefined,
|
|
361
|
+
"now": undefined,
|
|
362
|
+
"text": undefined,
|
|
363
|
+
}
|
|
364
|
+
}
|
|
337
365
|
accessible={true}
|
|
338
366
|
focusable={false}
|
|
339
367
|
onClick={[Function]}
|
|
@@ -463,6 +491,14 @@ exports[`ListItem renders correctly ListItem with leading status 1`] = `
|
|
|
463
491
|
"disabled": false,
|
|
464
492
|
}
|
|
465
493
|
}
|
|
494
|
+
accessibilityValue={
|
|
495
|
+
{
|
|
496
|
+
"max": undefined,
|
|
497
|
+
"min": undefined,
|
|
498
|
+
"now": undefined,
|
|
499
|
+
"text": undefined,
|
|
500
|
+
}
|
|
501
|
+
}
|
|
466
502
|
accessible={true}
|
|
467
503
|
focusable={false}
|
|
468
504
|
onClick={[Function]}
|
|
@@ -587,6 +623,14 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
|
|
|
587
623
|
"disabled": false,
|
|
588
624
|
}
|
|
589
625
|
}
|
|
626
|
+
accessibilityValue={
|
|
627
|
+
{
|
|
628
|
+
"max": undefined,
|
|
629
|
+
"min": undefined,
|
|
630
|
+
"now": undefined,
|
|
631
|
+
"text": undefined,
|
|
632
|
+
}
|
|
633
|
+
}
|
|
590
634
|
accessible={true}
|
|
591
635
|
focusable={false}
|
|
592
636
|
onClick={[Function]}
|
|
@@ -642,7 +686,19 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
|
|
|
642
686
|
<View
|
|
643
687
|
accessibilityState={
|
|
644
688
|
{
|
|
689
|
+
"busy": undefined,
|
|
690
|
+
"checked": undefined,
|
|
645
691
|
"disabled": true,
|
|
692
|
+
"expanded": undefined,
|
|
693
|
+
"selected": undefined,
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
accessibilityValue={
|
|
697
|
+
{
|
|
698
|
+
"max": undefined,
|
|
699
|
+
"min": undefined,
|
|
700
|
+
"now": undefined,
|
|
701
|
+
"text": undefined,
|
|
646
702
|
}
|
|
647
703
|
}
|
|
648
704
|
accessible={true}
|
|
@@ -778,7 +834,11 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
|
|
|
778
834
|
<View
|
|
779
835
|
accessibilityState={
|
|
780
836
|
{
|
|
837
|
+
"busy": undefined,
|
|
838
|
+
"checked": undefined,
|
|
781
839
|
"disabled": false,
|
|
840
|
+
"expanded": undefined,
|
|
841
|
+
"selected": undefined,
|
|
782
842
|
}
|
|
783
843
|
}
|
|
784
844
|
accessible={true}
|
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`StyledListItemContainer renders correctly themeSelected false themeDisabled false 1`] = `
|
|
4
4
|
<View
|
|
5
|
+
accessibilityValue={
|
|
6
|
+
{
|
|
7
|
+
"max": undefined,
|
|
8
|
+
"min": undefined,
|
|
9
|
+
"now": undefined,
|
|
10
|
+
"text": undefined,
|
|
11
|
+
}
|
|
12
|
+
}
|
|
5
13
|
accessible={true}
|
|
6
14
|
focusable={false}
|
|
7
15
|
onClick={[Function]}
|
|
@@ -50,6 +58,14 @@ exports[`StyledListItemContainer renders correctly themeSelected false themeDisa
|
|
|
50
58
|
|
|
51
59
|
exports[`StyledListItemContainer renders correctly themeSelected false themeDisabled true 1`] = `
|
|
52
60
|
<View
|
|
61
|
+
accessibilityValue={
|
|
62
|
+
{
|
|
63
|
+
"max": undefined,
|
|
64
|
+
"min": undefined,
|
|
65
|
+
"now": undefined,
|
|
66
|
+
"text": undefined,
|
|
67
|
+
}
|
|
68
|
+
}
|
|
53
69
|
accessible={true}
|
|
54
70
|
focusable={false}
|
|
55
71
|
onClick={[Function]}
|
|
@@ -98,6 +114,14 @@ exports[`StyledListItemContainer renders correctly themeSelected false themeDisa
|
|
|
98
114
|
|
|
99
115
|
exports[`StyledListItemContainer renders correctly themeSelected true themeDisabled false 1`] = `
|
|
100
116
|
<View
|
|
117
|
+
accessibilityValue={
|
|
118
|
+
{
|
|
119
|
+
"max": undefined,
|
|
120
|
+
"min": undefined,
|
|
121
|
+
"now": undefined,
|
|
122
|
+
"text": undefined,
|
|
123
|
+
}
|
|
124
|
+
}
|
|
101
125
|
accessible={true}
|
|
102
126
|
focusable={false}
|
|
103
127
|
onClick={[Function]}
|
|
@@ -146,6 +170,14 @@ exports[`StyledListItemContainer renders correctly themeSelected true themeDisab
|
|
|
146
170
|
|
|
147
171
|
exports[`StyledListItemContainer renders correctly themeSelected true themeDisabled true 1`] = `
|
|
148
172
|
<View
|
|
173
|
+
accessibilityValue={
|
|
174
|
+
{
|
|
175
|
+
"max": undefined,
|
|
176
|
+
"min": undefined,
|
|
177
|
+
"now": undefined,
|
|
178
|
+
"text": undefined,
|
|
179
|
+
}
|
|
180
|
+
}
|
|
149
181
|
accessible={true}
|
|
150
182
|
focusable={false}
|
|
151
183
|
onClick={[Function]}
|
|
@@ -87,6 +87,14 @@ exports[`LeadingStatus renders correctly themeLeadingStausIntent warning 1`] = `
|
|
|
87
87
|
|
|
88
88
|
exports[`ListItemContainer renders correctly themeSelected false themeVariant card 1`] = `
|
|
89
89
|
<View
|
|
90
|
+
accessibilityValue={
|
|
91
|
+
{
|
|
92
|
+
"max": undefined,
|
|
93
|
+
"min": undefined,
|
|
94
|
+
"now": undefined,
|
|
95
|
+
"text": undefined,
|
|
96
|
+
}
|
|
97
|
+
}
|
|
90
98
|
accessible={true}
|
|
91
99
|
focusable={false}
|
|
92
100
|
onClick={[Function]}
|
|
@@ -142,6 +150,14 @@ exports[`ListItemContainer renders correctly themeSelected false themeVariant ca
|
|
|
142
150
|
|
|
143
151
|
exports[`ListItemContainer renders correctly themeSelected false themeVariant full-width 1`] = `
|
|
144
152
|
<View
|
|
153
|
+
accessibilityValue={
|
|
154
|
+
{
|
|
155
|
+
"max": undefined,
|
|
156
|
+
"min": undefined,
|
|
157
|
+
"now": undefined,
|
|
158
|
+
"text": undefined,
|
|
159
|
+
}
|
|
160
|
+
}
|
|
145
161
|
accessible={true}
|
|
146
162
|
focusable={false}
|
|
147
163
|
onClick={[Function]}
|
|
@@ -188,6 +204,14 @@ exports[`ListItemContainer renders correctly themeSelected false themeVariant fu
|
|
|
188
204
|
|
|
189
205
|
exports[`ListItemContainer renders correctly themeSelected true themeVariant card 1`] = `
|
|
190
206
|
<View
|
|
207
|
+
accessibilityValue={
|
|
208
|
+
{
|
|
209
|
+
"max": undefined,
|
|
210
|
+
"min": undefined,
|
|
211
|
+
"now": undefined,
|
|
212
|
+
"text": undefined,
|
|
213
|
+
}
|
|
214
|
+
}
|
|
191
215
|
accessible={true}
|
|
192
216
|
focusable={false}
|
|
193
217
|
onClick={[Function]}
|
|
@@ -243,6 +267,14 @@ exports[`ListItemContainer renders correctly themeSelected true themeVariant car
|
|
|
243
267
|
|
|
244
268
|
exports[`ListItemContainer renders correctly themeSelected true themeVariant full-width 1`] = `
|
|
245
269
|
<View
|
|
270
|
+
accessibilityValue={
|
|
271
|
+
{
|
|
272
|
+
"max": undefined,
|
|
273
|
+
"min": undefined,
|
|
274
|
+
"now": undefined,
|
|
275
|
+
"text": undefined,
|
|
276
|
+
}
|
|
277
|
+
}
|
|
246
278
|
accessible={true}
|
|
247
279
|
focusable={false}
|
|
248
280
|
onClick={[Function]}
|
|
@@ -7,6 +7,14 @@ exports[`rendering renders correctly when checked 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]}
|
|
@@ -113,6 +121,14 @@ exports[`rendering renders correctly when not checked 1`] = `
|
|
|
113
121
|
"disabled": false,
|
|
114
122
|
}
|
|
115
123
|
}
|
|
124
|
+
accessibilityValue={
|
|
125
|
+
{
|
|
126
|
+
"max": undefined,
|
|
127
|
+
"min": undefined,
|
|
128
|
+
"now": undefined,
|
|
129
|
+
"text": undefined,
|
|
130
|
+
}
|
|
131
|
+
}
|
|
116
132
|
accessible={true}
|
|
117
133
|
focusable={true}
|
|
118
134
|
onClick={[Function]}
|