@hero-design/rn 8.12.5-alpha.0 → 8.12.5
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 +9 -9
- package/.turbo/turbo-publish:npm.log +0 -9
- package/es/index.js +58 -53
- package/lib/index.js +58 -53
- package/package.json +5 -5
- package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +8 -0
- package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +12 -0
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +13 -0
- package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +21 -4
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +189 -36
- package/src/components/Avatar/StyledAvatar.tsx +11 -4
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +21 -4
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +42 -8
- package/src/components/Badge/StyledBadge.tsx +4 -2
- package/src/components/Badge/__tests__/__snapshots__/Badge.spec.tsx.snap +132 -42
- package/src/components/Badge/__tests__/__snapshots__/Status.spec.tsx.snap +1 -0
- package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +4 -0
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +10 -0
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +10 -0
- package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +5 -0
- package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +6 -0
- package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +2 -0
- package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +16 -0
- package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +4 -0
- package/src/components/ContentNavigator/__tests__/__snapshots__/StyledContentNavigator.spec.tsx.snap +1 -0
- package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +2 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +4 -0
- package/src/components/Empty/StyledEmpty.tsx +14 -13
- package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +76 -20
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +56 -16
- package/src/components/FAB/StyledFAB.tsx +3 -2
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +1 -0
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +22 -8
- package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +4 -0
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +53 -8
- package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +4 -0
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +4 -0
- package/src/components/PinInput/StyledPinInput.tsx +6 -3
- package/src/components/PinInput/__tests__/__snapshots__/PinCell.spec.tsx.snap +93 -18
- package/src/components/PinInput/__tests__/__snapshots__/index.spec.tsx.snap +73 -13
- package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +3 -0
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +2 -0
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +3 -0
- package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +4 -0
- package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +23 -1
- package/src/components/SectionHeading/__tests__/index.spec.tsx +2 -2
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +1 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +20 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +38 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +1 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +20 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +35 -0
- package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +3 -0
- package/src/components/Swipeable/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/Option.spec.tsx.snap +1 -0
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Tabs/ScrollableTabs.tsx +167 -208
- package/src/components/Tabs/__tests__/ScrollableTabs.spec.tsx +11 -58
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +24 -7
- package/src/components/Tabs/__tests__/__snapshots__/TabWithBadge.spec.tsx.snap +22 -7
- package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +27 -7
- package/src/components/Tag/StyledTag.tsx +3 -2
- package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +167 -62
- package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +22 -0
- package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +51 -0
- package/src/components/TextInput/index.tsx +2 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +5 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +7 -0
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +13 -0
- package/src/components/Typography/Text/index.tsx +2 -0
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +17 -0
- package/src/theme/components/avatar.ts +11 -1
- package/src/theme/components/badge.ts +5 -1
- package/src/theme/components/pinInput.ts +14 -1
- package/src/types.ts +0 -2
- package/types/components/Accordion/AccordionItem.d.ts +0 -0
- package/types/components/Accordion/StyledAccordion.d.ts +0 -0
- package/types/components/Accordion/index.d.ts +0 -0
- package/types/components/Alert/StyledAlert.d.ts +0 -0
- package/types/components/Alert/index.d.ts +0 -0
- package/types/components/Attachment/StyledAttachment.d.ts +0 -0
- package/types/components/Attachment/index.d.ts +0 -0
- package/types/components/Avatar/Avatar.d.ts +0 -0
- package/types/components/Avatar/AvatarStack/StyledAvatarStack.d.ts +0 -0
- package/types/components/Avatar/AvatarStack/index.d.ts +0 -0
- package/types/components/Avatar/AvatarStack/utils.d.ts +0 -0
- package/types/components/Avatar/StyledAvatar.d.ts +4 -5
- package/types/components/Avatar/index.d.ts +0 -0
- package/types/components/Badge/Status.d.ts +0 -0
- package/types/components/Badge/StyledBadge.d.ts +3 -5
- package/types/components/Badge/index.d.ts +0 -0
- package/types/components/BottomNavigation/StyledBottomNavigation.d.ts +0 -0
- package/types/components/BottomNavigation/index.d.ts +0 -0
- package/types/components/BottomSheet/BottomSheetContext.d.ts +0 -0
- package/types/components/BottomSheet/Footer.d.ts +0 -0
- package/types/components/BottomSheet/Header.d.ts +0 -0
- package/types/components/BottomSheet/ScrollView.d.ts +0 -0
- package/types/components/BottomSheet/StyledBottomSheet.d.ts +0 -0
- package/types/components/BottomSheet/index.d.ts +0 -0
- package/types/components/Box/StyledBox.d.ts +0 -0
- package/types/components/Box/config.d.ts +0 -0
- package/types/components/Box/index.d.ts +0 -0
- package/types/components/Box/types.d.ts +0 -0
- package/types/components/Button/Button.d.ts +0 -0
- package/types/components/Button/IconButton.d.ts +0 -0
- package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +0 -0
- package/types/components/Button/LoadingIndicator/index.d.ts +0 -0
- package/types/components/Button/StyledButton.d.ts +0 -0
- package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +0 -0
- package/types/components/Button/UtilityButton/index.d.ts +0 -0
- package/types/components/Button/index.d.ts +0 -0
- package/types/components/Calendar/CalendarRowItem.d.ts +0 -0
- package/types/components/Calendar/StyledCalendar.d.ts +0 -0
- package/types/components/Calendar/helpers.d.ts +0 -0
- package/types/components/Calendar/index.d.ts +0 -0
- package/types/components/Card/DataCard/StyledDataCard.d.ts +0 -0
- package/types/components/Card/DataCard/index.d.ts +0 -0
- package/types/components/Card/StyledCard.d.ts +0 -0
- package/types/components/Card/index.d.ts +0 -0
- package/types/components/Carousel/CardCarousel.d.ts +0 -0
- package/types/components/Carousel/CarouselItem.d.ts +0 -0
- package/types/components/Carousel/StyledCardCarousel.d.ts +0 -0
- package/types/components/Carousel/StyledCarousel.d.ts +0 -0
- package/types/components/Carousel/contants.d.ts +0 -0
- package/types/components/Carousel/index.d.ts +0 -0
- package/types/components/Carousel/types.d.ts +0 -0
- package/types/components/Checkbox/StyledCheckbox.d.ts +0 -0
- package/types/components/Checkbox/index.d.ts +0 -0
- package/types/components/Collapse/StyledCollapse.d.ts +0 -0
- package/types/components/Collapse/index.d.ts +0 -0
- package/types/components/ContentNavigator/StyledContentNavigator.d.ts +0 -0
- package/types/components/ContentNavigator/index.d.ts +0 -0
- package/types/components/DatePicker/DatePickerAndroid.d.ts +0 -0
- package/types/components/DatePicker/DatePickerIOS.d.ts +0 -0
- package/types/components/DatePicker/StyledDatePicker.d.ts +0 -0
- package/types/components/DatePicker/index.d.ts +0 -0
- package/types/components/DatePicker/types.d.ts +0 -0
- package/types/components/Divider/StyledDivider.d.ts +0 -0
- package/types/components/Divider/index.d.ts +0 -0
- package/types/components/Drawer/DragableDrawer/helpers.d.ts +0 -0
- package/types/components/Drawer/DragableDrawer/index.d.ts +0 -0
- package/types/components/Drawer/StyledDrawer.d.ts +0 -0
- package/types/components/Drawer/index.d.ts +0 -0
- package/types/components/Empty/StyledEmpty.d.ts +5 -9
- package/types/components/Empty/index.d.ts +0 -0
- package/types/components/FAB/ActionGroup/ActionItem.d.ts +0 -0
- package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +0 -0
- package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +0 -0
- package/types/components/FAB/ActionGroup/index.d.ts +0 -0
- package/types/components/FAB/AnimatedFABIcon.d.ts +0 -0
- package/types/components/FAB/FAB.d.ts +0 -0
- package/types/components/FAB/StyledFAB.d.ts +3 -5
- package/types/components/FAB/index.d.ts +0 -0
- package/types/components/Icon/AnimatedIcon.d.ts +0 -0
- package/types/components/Icon/HeroIcon/index.d.ts +0 -0
- package/types/components/Icon/IconList.d.ts +0 -0
- package/types/components/Icon/index.d.ts +0 -0
- package/types/components/Icon/utils.d.ts +0 -0
- package/types/components/Image/index.d.ts +0 -0
- package/types/components/List/BasicListItem.d.ts +0 -0
- package/types/components/List/ListItem.d.ts +0 -0
- package/types/components/List/StyledBasicListItem.d.ts +0 -0
- package/types/components/List/StyledListItem.d.ts +0 -0
- package/types/components/List/index.d.ts +0 -0
- package/types/components/PageControl/StyledPageControl.d.ts +0 -0
- package/types/components/PageControl/index.d.ts +0 -0
- package/types/components/PinInput/PinCell.d.ts +0 -0
- package/types/components/PinInput/StyledPinInput.d.ts +5 -9
- package/types/components/PinInput/index.d.ts +0 -0
- package/types/components/Progress/ProgressBar.d.ts +0 -0
- package/types/components/Progress/ProgressCircle.d.ts +0 -0
- package/types/components/Progress/StyledProgressBar.d.ts +0 -0
- package/types/components/Progress/StyledProgressCircle.d.ts +0 -0
- package/types/components/Progress/__tests__/index.spec.d.ts +0 -0
- package/types/components/Progress/constants.d.ts +0 -0
- package/types/components/Progress/index.d.ts +0 -0
- package/types/components/Progress/types.d.ts +0 -0
- package/types/components/Radio/Radio.d.ts +0 -0
- package/types/components/Radio/RadioGroup.d.ts +0 -0
- package/types/components/Radio/StyledRadio.d.ts +0 -0
- package/types/components/Radio/index.d.ts +0 -0
- package/types/components/Radio/types.d.ts +0 -0
- package/types/components/RefreshControl/index.d.ts +0 -0
- package/types/components/RichTextEditor/EditorEvent.d.ts +0 -0
- package/types/components/RichTextEditor/EditorToolbar.d.ts +0 -0
- package/types/components/RichTextEditor/MentionList.d.ts +0 -0
- package/types/components/RichTextEditor/RichTextEditor.d.ts +0 -0
- package/types/components/RichTextEditor/StyledRichTextEditor.d.ts +0 -0
- package/types/components/RichTextEditor/StyledToolbar.d.ts +0 -0
- package/types/components/RichTextEditor/__mocks__/heroEditorApp.d.ts +0 -0
- package/types/components/RichTextEditor/constants.d.ts +0 -0
- package/types/components/RichTextEditor/heroEditorApp.d.ts +0 -0
- package/types/components/RichTextEditor/index.d.ts +0 -0
- package/types/components/RichTextEditor/types.d.ts +0 -0
- package/types/components/RichTextEditor/utils/events.d.ts +0 -0
- package/types/components/RichTextEditor/utils/rnWebView.d.ts +0 -0
- package/types/components/SectionHeading/StyledHeading.d.ts +0 -0
- package/types/components/SectionHeading/index.d.ts +0 -0
- package/types/components/Select/BaseOptionList.d.ts +0 -0
- package/types/components/Select/Footer.d.ts +0 -0
- package/types/components/Select/MultiSelect/Option.d.ts +0 -0
- package/types/components/Select/MultiSelect/OptionList.d.ts +0 -0
- package/types/components/Select/MultiSelect/index.d.ts +0 -0
- package/types/components/Select/SingleSelect/Option.d.ts +0 -0
- package/types/components/Select/SingleSelect/OptionList.d.ts +0 -0
- package/types/components/Select/SingleSelect/StyledSingleSelect.d.ts +0 -0
- package/types/components/Select/SingleSelect/index.d.ts +0 -0
- package/types/components/Select/StyledSelect.d.ts +0 -0
- package/types/components/Select/helpers.d.ts +0 -0
- package/types/components/Select/index.d.ts +0 -0
- package/types/components/Select/types.d.ts +0 -0
- package/types/components/Slider/index.d.ts +0 -0
- package/types/components/Spinner/AnimatedSpinner.d.ts +0 -0
- package/types/components/Spinner/StyledSpinner.d.ts +0 -0
- package/types/components/Spinner/index.d.ts +0 -0
- package/types/components/Swipeable/StyledSwipeable.d.ts +0 -0
- package/types/components/Swipeable/SwipeableAction.d.ts +0 -0
- package/types/components/Swipeable/index.d.ts +0 -0
- package/types/components/Switch/SelectorSwitch/Option.d.ts +0 -0
- package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +0 -0
- package/types/components/Switch/SelectorSwitch/index.d.ts +0 -0
- package/types/components/Switch/StyledSwitch.d.ts +0 -0
- package/types/components/Switch/index.d.ts +0 -0
- package/types/components/Tabs/ActiveTabIndicator.d.ts +0 -0
- package/types/components/Tabs/ScrollableTabs.d.ts +1 -8
- package/types/components/Tabs/StyledScrollableTabs.d.ts +0 -0
- package/types/components/Tabs/StyledTabs.d.ts +0 -0
- package/types/components/Tabs/TabWithBadge.d.ts +0 -0
- package/types/components/Tabs/index.d.ts +1 -2
- package/types/components/Tabs/utils.d.ts +0 -0
- package/types/components/Tag/StyledTag.d.ts +3 -5
- package/types/components/Tag/index.d.ts +0 -0
- package/types/components/TextInput/StyledTextInput.d.ts +0 -0
- package/types/components/TextInput/index.d.ts +0 -0
- package/types/components/TimePicker/StyledTimePicker.d.ts +0 -0
- package/types/components/TimePicker/TimePickerAndroid.d.ts +0 -0
- package/types/components/TimePicker/TimePickerIOS.d.ts +0 -0
- package/types/components/TimePicker/index.d.ts +0 -0
- package/types/components/TimePicker/types.d.ts +0 -0
- package/types/components/Toast/StyledToast.d.ts +0 -0
- package/types/components/Toast/Toast.d.ts +0 -0
- package/types/components/Toast/ToastContainer.d.ts +0 -0
- package/types/components/Toast/ToastContext.d.ts +0 -0
- package/types/components/Toast/ToastProvider.d.ts +0 -0
- package/types/components/Toast/index.d.ts +0 -0
- package/types/components/Toast/types.d.ts +0 -0
- package/types/components/Toolbar/StyledToolbar.d.ts +0 -0
- package/types/components/Toolbar/ToolbarGroup.d.ts +0 -0
- package/types/components/Toolbar/ToolbarItem.d.ts +0 -0
- package/types/components/Toolbar/index.d.ts +0 -0
- package/types/components/Typography/Text/StyledText.d.ts +0 -0
- package/types/components/Typography/Text/index.d.ts +1 -1
- package/types/components/Typography/index.d.ts +0 -0
- package/types/index.d.ts +0 -0
- package/types/testHelpers/renderWithTheme.d.ts +0 -0
- package/types/theme/ThemeProvider.d.ts +0 -0
- package/types/theme/ThemeSwitcher.d.ts +0 -0
- package/types/theme/components/accordion.d.ts +0 -0
- package/types/theme/components/alert.d.ts +0 -0
- package/types/theme/components/attachment.d.ts +0 -0
- package/types/theme/components/avatar.d.ts +10 -0
- package/types/theme/components/badge.d.ts +3 -0
- package/types/theme/components/bottomNavigation.d.ts +0 -0
- package/types/theme/components/bottomSheet.d.ts +0 -0
- package/types/theme/components/button.d.ts +0 -0
- package/types/theme/components/calendar.d.ts +0 -0
- package/types/theme/components/card.d.ts +0 -0
- package/types/theme/components/cardCarousel.d.ts +0 -0
- package/types/theme/components/carousel.d.ts +0 -0
- package/types/theme/components/checkbox.d.ts +0 -0
- package/types/theme/components/contentNavigator.d.ts +0 -0
- package/types/theme/components/datePicker.d.ts +0 -0
- package/types/theme/components/divider.d.ts +0 -0
- package/types/theme/components/drawer.d.ts +0 -0
- package/types/theme/components/empty.d.ts +0 -0
- package/types/theme/components/fab.d.ts +0 -0
- package/types/theme/components/icon.d.ts +0 -0
- package/types/theme/components/image.d.ts +0 -0
- package/types/theme/components/list.d.ts +0 -0
- package/types/theme/components/pageControl.d.ts +0 -0
- package/types/theme/components/pinInput.d.ts +4 -0
- package/types/theme/components/progress.d.ts +0 -0
- package/types/theme/components/radio.d.ts +0 -0
- package/types/theme/components/refreshControl.d.ts +0 -0
- package/types/theme/components/richTextEditor.d.ts +0 -0
- package/types/theme/components/sectionHeading.d.ts +0 -0
- package/types/theme/components/select.d.ts +0 -0
- package/types/theme/components/slider.d.ts +0 -0
- package/types/theme/components/spinner.d.ts +0 -0
- package/types/theme/components/swipeable.d.ts +0 -0
- package/types/theme/components/switch.d.ts +0 -0
- package/types/theme/components/tabs.d.ts +0 -0
- package/types/theme/components/tag.d.ts +0 -0
- package/types/theme/components/textInput.d.ts +0 -0
- package/types/theme/components/timePicker.d.ts +0 -0
- package/types/theme/components/toast.d.ts +0 -0
- package/types/theme/components/toolbar.d.ts +0 -0
- package/types/theme/components/typography.d.ts +0 -0
- package/types/theme/getTheme.d.ts +0 -0
- package/types/theme/global/borders.d.ts +0 -0
- package/types/theme/global/colors/eBens.d.ts +0 -0
- package/types/theme/global/colors/global.d.ts +0 -0
- package/types/theme/global/colors/globalDark.d.ts +0 -0
- package/types/theme/global/colors/jobs.d.ts +0 -0
- package/types/theme/global/colors/swag.d.ts +0 -0
- package/types/theme/global/colors/swagDark.d.ts +0 -0
- package/types/theme/global/colors/types.d.ts +0 -0
- package/types/theme/global/colors/wallet.d.ts +0 -0
- package/types/theme/global/colors/work.d.ts +0 -0
- package/types/theme/global/index.d.ts +0 -0
- package/types/theme/global/scale.d.ts +0 -0
- package/types/theme/global/sizes.d.ts +0 -0
- package/types/theme/global/space.d.ts +0 -0
- package/types/theme/global/typography.d.ts +0 -0
- package/types/theme/index.d.ts +0 -0
- package/types/types.d.ts +1 -2
- package/types/utils/functions.d.ts +0 -0
- package/types/utils/helpers.d.ts +0 -0
- package/types/utils/hooks.d.ts +0 -0
- package/types/utils/scale.d.ts +0 -0
- package/.turbo/turbo-build:types.log +0 -2
- package/.turbo/turbo-lint.log +0 -149
|
@@ -41,6 +41,7 @@ exports[`rendering renders correctly when checked 1`] = `
|
|
|
41
41
|
}
|
|
42
42
|
>
|
|
43
43
|
<Text
|
|
44
|
+
allowFontScaling={false}
|
|
44
45
|
style={
|
|
45
46
|
Array [
|
|
46
47
|
Object {
|
|
@@ -147,6 +148,7 @@ exports[`rendering renders correctly when not checked 1`] = `
|
|
|
147
148
|
}
|
|
148
149
|
>
|
|
149
150
|
<Text
|
|
151
|
+
allowFontScaling={false}
|
|
150
152
|
style={
|
|
151
153
|
Array [
|
|
152
154
|
Object {
|
|
@@ -42,6 +42,7 @@ exports[`rendering renders correctly 1`] = `
|
|
|
42
42
|
}
|
|
43
43
|
>
|
|
44
44
|
<Text
|
|
45
|
+
allowFontScaling={false}
|
|
45
46
|
style={
|
|
46
47
|
Array [
|
|
47
48
|
Object {
|
|
@@ -140,6 +141,7 @@ exports[`rendering renders correctly 1`] = `
|
|
|
140
141
|
}
|
|
141
142
|
>
|
|
142
143
|
<Text
|
|
144
|
+
allowFontScaling={false}
|
|
143
145
|
style={
|
|
144
146
|
Array [
|
|
145
147
|
Object {
|
|
@@ -238,6 +240,7 @@ exports[`rendering renders correctly 1`] = `
|
|
|
238
240
|
}
|
|
239
241
|
>
|
|
240
242
|
<Text
|
|
243
|
+
allowFontScaling={false}
|
|
241
244
|
style={
|
|
242
245
|
Array [
|
|
243
246
|
Object {
|
|
@@ -78,6 +78,7 @@ exports[`RichTextEditor onMessage recevied event editor-layout should update hei
|
|
|
78
78
|
}
|
|
79
79
|
>
|
|
80
80
|
<Text
|
|
81
|
+
allowFontScaling={false}
|
|
81
82
|
style={
|
|
82
83
|
Array [
|
|
83
84
|
Object {
|
|
@@ -235,6 +236,7 @@ exports[`RichTextEditor onMessage recevied event editor-layout should update hei
|
|
|
235
236
|
themeSize="xsmall"
|
|
236
237
|
/>
|
|
237
238
|
<Text
|
|
239
|
+
allowFontScaling={false}
|
|
238
240
|
style={
|
|
239
241
|
Array [
|
|
240
242
|
Object {
|
|
@@ -346,6 +348,7 @@ exports[`RichTextEditor should render correctly 1`] = `
|
|
|
346
348
|
}
|
|
347
349
|
>
|
|
348
350
|
<Text
|
|
351
|
+
allowFontScaling={false}
|
|
349
352
|
style={
|
|
350
353
|
Array [
|
|
351
354
|
Object {
|
|
@@ -502,6 +505,7 @@ exports[`RichTextEditor should render correctly 1`] = `
|
|
|
502
505
|
themeSize="xsmall"
|
|
503
506
|
/>
|
|
504
507
|
<Text
|
|
508
|
+
allowFontScaling={false}
|
|
505
509
|
style={
|
|
506
510
|
Array [
|
|
507
511
|
Object {
|
|
@@ -55,6 +55,7 @@ exports[`SectionHeading allows to customise the icon 1`] = `
|
|
|
55
55
|
/>
|
|
56
56
|
</View>
|
|
57
57
|
<Text
|
|
58
|
+
allowFontScaling={false}
|
|
58
59
|
style={
|
|
59
60
|
Array [
|
|
60
61
|
Object {
|
|
@@ -134,6 +135,7 @@ exports[`SectionHeading render icon correctly 1`] = `
|
|
|
134
135
|
/>
|
|
135
136
|
</View>
|
|
136
137
|
<Text
|
|
138
|
+
allowFontScaling={false}
|
|
137
139
|
style={
|
|
138
140
|
Array [
|
|
139
141
|
Object {
|
|
@@ -198,6 +200,7 @@ exports[`SectionHeading render right children correctly 1`] = `
|
|
|
198
200
|
}
|
|
199
201
|
/>
|
|
200
202
|
<Text
|
|
203
|
+
allowFontScaling={false}
|
|
201
204
|
style={
|
|
202
205
|
Array [
|
|
203
206
|
Object {
|
|
@@ -218,7 +221,25 @@ exports[`SectionHeading render right children correctly 1`] = `
|
|
|
218
221
|
test demo
|
|
219
222
|
</Text>
|
|
220
223
|
</View>
|
|
221
|
-
<Text
|
|
224
|
+
<Text
|
|
225
|
+
allowFontScaling={false}
|
|
226
|
+
style={
|
|
227
|
+
Array [
|
|
228
|
+
Object {
|
|
229
|
+
"color": "#001f23",
|
|
230
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
231
|
+
"fontSize": 14,
|
|
232
|
+
"letterSpacing": 0.42,
|
|
233
|
+
"lineHeight": 22,
|
|
234
|
+
},
|
|
235
|
+
undefined,
|
|
236
|
+
]
|
|
237
|
+
}
|
|
238
|
+
themeFontSize="medium"
|
|
239
|
+
themeFontWeight="regular"
|
|
240
|
+
themeIntent="body"
|
|
241
|
+
themeTypeface="neutral"
|
|
242
|
+
>
|
|
222
243
|
right children
|
|
223
244
|
</Text>
|
|
224
245
|
</View>
|
|
@@ -265,6 +286,7 @@ exports[`SectionHeading renders correctly 1`] = `
|
|
|
265
286
|
}
|
|
266
287
|
/>
|
|
267
288
|
<Text
|
|
289
|
+
allowFontScaling={false}
|
|
268
290
|
style={
|
|
269
291
|
Array [
|
|
270
292
|
Object {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { Text } from 'react-native';
|
|
3
2
|
import renderWithTheme from '../../../testHelpers/renderWithTheme';
|
|
4
3
|
import SectionHeading from '..';
|
|
5
4
|
import Icon from '../../Icon';
|
|
5
|
+
import Typography from '../../Typography';
|
|
6
6
|
|
|
7
7
|
describe('SectionHeading', () => {
|
|
8
8
|
it('renders correctly', () => {
|
|
@@ -31,7 +31,7 @@ describe('SectionHeading', () => {
|
|
|
31
31
|
<SectionHeading
|
|
32
32
|
testID="sectionHeading"
|
|
33
33
|
text="test demo"
|
|
34
|
-
rightChildren={<Text>right children</Text>}
|
|
34
|
+
rightChildren={<Typography.Text>right children</Typography.Text>}
|
|
35
35
|
/>
|
|
36
36
|
);
|
|
37
37
|
|
|
@@ -116,6 +116,7 @@ exports[`OptionList render isLoading correctly 1`] = `
|
|
|
116
116
|
}
|
|
117
117
|
/>
|
|
118
118
|
<Text
|
|
119
|
+
allowFontScaling={false}
|
|
119
120
|
style={
|
|
120
121
|
Array [
|
|
121
122
|
Object {
|
|
@@ -226,6 +227,7 @@ exports[`OptionList render isLoading correctly 1`] = `
|
|
|
226
227
|
}
|
|
227
228
|
>
|
|
228
229
|
<Text
|
|
230
|
+
allowFontScaling={false}
|
|
229
231
|
style={
|
|
230
232
|
Array [
|
|
231
233
|
Object {
|
|
@@ -368,6 +370,7 @@ exports[`OptionList render isLoading correctly 1`] = `
|
|
|
368
370
|
}
|
|
369
371
|
/>
|
|
370
372
|
<Text
|
|
373
|
+
allowFontScaling={false}
|
|
371
374
|
style={
|
|
372
375
|
Array [
|
|
373
376
|
Object {
|
|
@@ -478,6 +481,7 @@ exports[`OptionList render isLoading correctly 1`] = `
|
|
|
478
481
|
}
|
|
479
482
|
>
|
|
480
483
|
<Text
|
|
484
|
+
allowFontScaling={false}
|
|
481
485
|
style={
|
|
482
486
|
Array [
|
|
483
487
|
Object {
|
|
@@ -595,6 +599,7 @@ exports[`OptionList render isLoading correctly 1`] = `
|
|
|
595
599
|
}
|
|
596
600
|
>
|
|
597
601
|
<Text
|
|
602
|
+
allowFontScaling={false}
|
|
598
603
|
style={
|
|
599
604
|
Array [
|
|
600
605
|
Object {
|
|
@@ -926,6 +931,7 @@ exports[`OptionList renders correctly 1`] = `
|
|
|
926
931
|
}
|
|
927
932
|
/>
|
|
928
933
|
<Text
|
|
934
|
+
allowFontScaling={false}
|
|
929
935
|
style={
|
|
930
936
|
Array [
|
|
931
937
|
Object {
|
|
@@ -1036,6 +1042,7 @@ exports[`OptionList renders correctly 1`] = `
|
|
|
1036
1042
|
}
|
|
1037
1043
|
>
|
|
1038
1044
|
<Text
|
|
1045
|
+
allowFontScaling={false}
|
|
1039
1046
|
style={
|
|
1040
1047
|
Array [
|
|
1041
1048
|
Object {
|
|
@@ -1178,6 +1185,7 @@ exports[`OptionList renders correctly 1`] = `
|
|
|
1178
1185
|
}
|
|
1179
1186
|
/>
|
|
1180
1187
|
<Text
|
|
1188
|
+
allowFontScaling={false}
|
|
1181
1189
|
style={
|
|
1182
1190
|
Array [
|
|
1183
1191
|
Object {
|
|
@@ -1288,6 +1296,7 @@ exports[`OptionList renders correctly 1`] = `
|
|
|
1288
1296
|
}
|
|
1289
1297
|
>
|
|
1290
1298
|
<Text
|
|
1299
|
+
allowFontScaling={false}
|
|
1291
1300
|
style={
|
|
1292
1301
|
Array [
|
|
1293
1302
|
Object {
|
|
@@ -1405,6 +1414,7 @@ exports[`OptionList renders correctly 1`] = `
|
|
|
1405
1414
|
}
|
|
1406
1415
|
>
|
|
1407
1416
|
<Text
|
|
1417
|
+
allowFontScaling={false}
|
|
1408
1418
|
style={
|
|
1409
1419
|
Array [
|
|
1410
1420
|
Object {
|
|
@@ -1583,6 +1593,7 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
|
|
|
1583
1593
|
}
|
|
1584
1594
|
/>
|
|
1585
1595
|
<Text
|
|
1596
|
+
allowFontScaling={false}
|
|
1586
1597
|
style={
|
|
1587
1598
|
Array [
|
|
1588
1599
|
Object {
|
|
@@ -1693,6 +1704,7 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
|
|
|
1693
1704
|
}
|
|
1694
1705
|
>
|
|
1695
1706
|
<Text
|
|
1707
|
+
allowFontScaling={false}
|
|
1696
1708
|
style={
|
|
1697
1709
|
Array [
|
|
1698
1710
|
Object {
|
|
@@ -1835,6 +1847,7 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
|
|
|
1835
1847
|
}
|
|
1836
1848
|
/>
|
|
1837
1849
|
<Text
|
|
1850
|
+
allowFontScaling={false}
|
|
1838
1851
|
style={
|
|
1839
1852
|
Array [
|
|
1840
1853
|
Object {
|
|
@@ -1945,6 +1958,7 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
|
|
|
1945
1958
|
}
|
|
1946
1959
|
>
|
|
1947
1960
|
<Text
|
|
1961
|
+
allowFontScaling={false}
|
|
1948
1962
|
style={
|
|
1949
1963
|
Array [
|
|
1950
1964
|
Object {
|
|
@@ -2089,6 +2103,7 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
|
|
|
2089
2103
|
}
|
|
2090
2104
|
>
|
|
2091
2105
|
<Text
|
|
2106
|
+
allowFontScaling={false}
|
|
2092
2107
|
style={
|
|
2093
2108
|
Array [
|
|
2094
2109
|
Object {
|
|
@@ -2267,6 +2282,7 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
|
|
|
2267
2282
|
}
|
|
2268
2283
|
/>
|
|
2269
2284
|
<Text
|
|
2285
|
+
allowFontScaling={false}
|
|
2270
2286
|
style={
|
|
2271
2287
|
Array [
|
|
2272
2288
|
Object {
|
|
@@ -2377,6 +2393,7 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
|
|
|
2377
2393
|
}
|
|
2378
2394
|
>
|
|
2379
2395
|
<Text
|
|
2396
|
+
allowFontScaling={false}
|
|
2380
2397
|
style={
|
|
2381
2398
|
Array [
|
|
2382
2399
|
Object {
|
|
@@ -2519,6 +2536,7 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
|
|
|
2519
2536
|
}
|
|
2520
2537
|
/>
|
|
2521
2538
|
<Text
|
|
2539
|
+
allowFontScaling={false}
|
|
2522
2540
|
style={
|
|
2523
2541
|
Array [
|
|
2524
2542
|
Object {
|
|
@@ -2629,6 +2647,7 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
|
|
|
2629
2647
|
}
|
|
2630
2648
|
>
|
|
2631
2649
|
<Text
|
|
2650
|
+
allowFontScaling={false}
|
|
2632
2651
|
style={
|
|
2633
2652
|
Array [
|
|
2634
2653
|
Object {
|
|
@@ -2746,6 +2765,7 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
|
|
|
2746
2765
|
}
|
|
2747
2766
|
>
|
|
2748
2767
|
<Text
|
|
2768
|
+
allowFontScaling={false}
|
|
2749
2769
|
style={
|
|
2750
2770
|
Array [
|
|
2751
2771
|
Object {
|
|
@@ -109,6 +109,7 @@ Array [
|
|
|
109
109
|
}
|
|
110
110
|
>
|
|
111
111
|
<Text
|
|
112
|
+
allowFontScaling={false}
|
|
112
113
|
style={
|
|
113
114
|
Array [
|
|
114
115
|
Object {
|
|
@@ -147,6 +148,7 @@ Array [
|
|
|
147
148
|
"disabled": false,
|
|
148
149
|
}
|
|
149
150
|
}
|
|
151
|
+
allowFontScaling={false}
|
|
150
152
|
editable={true}
|
|
151
153
|
multiline={true}
|
|
152
154
|
onBlur={[Function]}
|
|
@@ -335,6 +337,7 @@ Array [
|
|
|
335
337
|
}
|
|
336
338
|
>
|
|
337
339
|
<Text
|
|
340
|
+
allowFontScaling={false}
|
|
338
341
|
style={
|
|
339
342
|
Array [
|
|
340
343
|
Object {
|
|
@@ -516,6 +519,7 @@ Array [
|
|
|
516
519
|
}
|
|
517
520
|
/>
|
|
518
521
|
<Text
|
|
522
|
+
allowFontScaling={false}
|
|
519
523
|
style={
|
|
520
524
|
Array [
|
|
521
525
|
Object {
|
|
@@ -635,6 +639,7 @@ Array [
|
|
|
635
639
|
}
|
|
636
640
|
>
|
|
637
641
|
<Text
|
|
642
|
+
allowFontScaling={false}
|
|
638
643
|
style={
|
|
639
644
|
Array [
|
|
640
645
|
Object {
|
|
@@ -655,6 +660,7 @@ Array [
|
|
|
655
660
|
Daniel
|
|
656
661
|
</Text>
|
|
657
662
|
<Text
|
|
663
|
+
allowFontScaling={false}
|
|
658
664
|
style={
|
|
659
665
|
Array [
|
|
660
666
|
Object {
|
|
@@ -782,6 +788,7 @@ Array [
|
|
|
782
788
|
}
|
|
783
789
|
>
|
|
784
790
|
<Text
|
|
791
|
+
allowFontScaling={false}
|
|
785
792
|
style={
|
|
786
793
|
Array [
|
|
787
794
|
Object {
|
|
@@ -802,6 +809,7 @@ Array [
|
|
|
802
809
|
Daemon
|
|
803
810
|
</Text>
|
|
804
811
|
<Text
|
|
812
|
+
allowFontScaling={false}
|
|
805
813
|
style={
|
|
806
814
|
Array [
|
|
807
815
|
Object {
|
|
@@ -926,6 +934,7 @@ Array [
|
|
|
926
934
|
}
|
|
927
935
|
/>
|
|
928
936
|
<Text
|
|
937
|
+
allowFontScaling={false}
|
|
929
938
|
style={
|
|
930
939
|
Array [
|
|
931
940
|
Object {
|
|
@@ -1045,6 +1054,7 @@ Array [
|
|
|
1045
1054
|
}
|
|
1046
1055
|
>
|
|
1047
1056
|
<Text
|
|
1057
|
+
allowFontScaling={false}
|
|
1048
1058
|
style={
|
|
1049
1059
|
Array [
|
|
1050
1060
|
Object {
|
|
@@ -1065,6 +1075,7 @@ Array [
|
|
|
1065
1075
|
Jennifer
|
|
1066
1076
|
</Text>
|
|
1067
1077
|
<Text
|
|
1078
|
+
allowFontScaling={false}
|
|
1068
1079
|
style={
|
|
1069
1080
|
Array [
|
|
1070
1081
|
Object {
|
|
@@ -1192,6 +1203,7 @@ Array [
|
|
|
1192
1203
|
}
|
|
1193
1204
|
>
|
|
1194
1205
|
<Text
|
|
1206
|
+
allowFontScaling={false}
|
|
1195
1207
|
style={
|
|
1196
1208
|
Array [
|
|
1197
1209
|
Object {
|
|
@@ -1212,6 +1224,7 @@ Array [
|
|
|
1212
1224
|
Josh
|
|
1213
1225
|
</Text>
|
|
1214
1226
|
<Text
|
|
1227
|
+
allowFontScaling={false}
|
|
1215
1228
|
style={
|
|
1216
1229
|
Array [
|
|
1217
1230
|
Object {
|
|
@@ -1339,6 +1352,7 @@ Array [
|
|
|
1339
1352
|
}
|
|
1340
1353
|
>
|
|
1341
1354
|
<Text
|
|
1355
|
+
allowFontScaling={false}
|
|
1342
1356
|
disabled={false}
|
|
1343
1357
|
ellipsizeMode="tail"
|
|
1344
1358
|
numberOfLines={1}
|
|
@@ -1479,6 +1493,7 @@ Array [
|
|
|
1479
1493
|
testID="label-container"
|
|
1480
1494
|
>
|
|
1481
1495
|
<Text
|
|
1496
|
+
allowFontScaling={false}
|
|
1482
1497
|
style={
|
|
1483
1498
|
Array [
|
|
1484
1499
|
Object {
|
|
@@ -1528,6 +1543,7 @@ Array [
|
|
|
1528
1543
|
"disabled": false,
|
|
1529
1544
|
}
|
|
1530
1545
|
}
|
|
1546
|
+
allowFontScaling={false}
|
|
1531
1547
|
editable={true}
|
|
1532
1548
|
multiline={true}
|
|
1533
1549
|
onBlur={[Function]}
|
|
@@ -1704,6 +1720,7 @@ Array [
|
|
|
1704
1720
|
testID="label-container"
|
|
1705
1721
|
>
|
|
1706
1722
|
<Text
|
|
1723
|
+
allowFontScaling={false}
|
|
1707
1724
|
style={
|
|
1708
1725
|
Array [
|
|
1709
1726
|
Object {
|
|
@@ -1753,6 +1770,7 @@ Array [
|
|
|
1753
1770
|
"disabled": false,
|
|
1754
1771
|
}
|
|
1755
1772
|
}
|
|
1773
|
+
allowFontScaling={false}
|
|
1756
1774
|
editable={true}
|
|
1757
1775
|
multiline={true}
|
|
1758
1776
|
onBlur={[Function]}
|
|
@@ -1941,6 +1959,7 @@ Array [
|
|
|
1941
1959
|
}
|
|
1942
1960
|
>
|
|
1943
1961
|
<Text
|
|
1962
|
+
allowFontScaling={false}
|
|
1944
1963
|
style={
|
|
1945
1964
|
Array [
|
|
1946
1965
|
Object {
|
|
@@ -2182,6 +2201,7 @@ Array [
|
|
|
2182
2201
|
}
|
|
2183
2202
|
>
|
|
2184
2203
|
<Text
|
|
2204
|
+
allowFontScaling={false}
|
|
2185
2205
|
style={
|
|
2186
2206
|
Array [
|
|
2187
2207
|
Object {
|
|
@@ -2336,6 +2356,7 @@ Array [
|
|
|
2336
2356
|
}
|
|
2337
2357
|
>
|
|
2338
2358
|
<Text
|
|
2359
|
+
allowFontScaling={false}
|
|
2339
2360
|
style={
|
|
2340
2361
|
Array [
|
|
2341
2362
|
Object {
|
|
@@ -2490,6 +2511,7 @@ Array [
|
|
|
2490
2511
|
}
|
|
2491
2512
|
>
|
|
2492
2513
|
<Text
|
|
2514
|
+
allowFontScaling={false}
|
|
2493
2515
|
style={
|
|
2494
2516
|
Array [
|
|
2495
2517
|
Object {
|
|
@@ -2617,6 +2639,7 @@ Array [
|
|
|
2617
2639
|
}
|
|
2618
2640
|
>
|
|
2619
2641
|
<Text
|
|
2642
|
+
allowFontScaling={false}
|
|
2620
2643
|
style={
|
|
2621
2644
|
Array [
|
|
2622
2645
|
Object {
|
|
@@ -2744,6 +2767,7 @@ Array [
|
|
|
2744
2767
|
}
|
|
2745
2768
|
>
|
|
2746
2769
|
<Text
|
|
2770
|
+
allowFontScaling={false}
|
|
2747
2771
|
style={
|
|
2748
2772
|
Array [
|
|
2749
2773
|
Object {
|
|
@@ -2871,6 +2895,7 @@ Array [
|
|
|
2871
2895
|
}
|
|
2872
2896
|
>
|
|
2873
2897
|
<Text
|
|
2898
|
+
allowFontScaling={false}
|
|
2874
2899
|
style={
|
|
2875
2900
|
Array [
|
|
2876
2901
|
Object {
|
|
@@ -2999,6 +3024,7 @@ Array [
|
|
|
2999
3024
|
}
|
|
3000
3025
|
>
|
|
3001
3026
|
<Text
|
|
3027
|
+
allowFontScaling={false}
|
|
3002
3028
|
style={
|
|
3003
3029
|
Array [
|
|
3004
3030
|
Object {
|
|
@@ -3128,6 +3154,7 @@ Array [
|
|
|
3128
3154
|
}
|
|
3129
3155
|
>
|
|
3130
3156
|
<Text
|
|
3157
|
+
allowFontScaling={false}
|
|
3131
3158
|
disabled={false}
|
|
3132
3159
|
ellipsizeMode="tail"
|
|
3133
3160
|
numberOfLines={1}
|
|
@@ -3268,6 +3295,7 @@ Array [
|
|
|
3268
3295
|
testID="label-container"
|
|
3269
3296
|
>
|
|
3270
3297
|
<Text
|
|
3298
|
+
allowFontScaling={false}
|
|
3271
3299
|
style={
|
|
3272
3300
|
Array [
|
|
3273
3301
|
Object {
|
|
@@ -3317,6 +3345,7 @@ Array [
|
|
|
3317
3345
|
"disabled": true,
|
|
3318
3346
|
}
|
|
3319
3347
|
}
|
|
3348
|
+
allowFontScaling={false}
|
|
3320
3349
|
editable={true}
|
|
3321
3350
|
multiline={true}
|
|
3322
3351
|
onBlur={[Function]}
|
|
@@ -3506,6 +3535,7 @@ Array [
|
|
|
3506
3535
|
testID="label-container"
|
|
3507
3536
|
>
|
|
3508
3537
|
<Text
|
|
3538
|
+
allowFontScaling={false}
|
|
3509
3539
|
style={
|
|
3510
3540
|
Array [
|
|
3511
3541
|
Object {
|
|
@@ -3555,6 +3585,7 @@ Array [
|
|
|
3555
3585
|
"disabled": false,
|
|
3556
3586
|
}
|
|
3557
3587
|
}
|
|
3588
|
+
allowFontScaling={false}
|
|
3558
3589
|
editable={true}
|
|
3559
3590
|
multiline={true}
|
|
3560
3591
|
onBlur={[Function]}
|
|
@@ -3743,6 +3774,7 @@ Array [
|
|
|
3743
3774
|
}
|
|
3744
3775
|
>
|
|
3745
3776
|
<Text
|
|
3777
|
+
allowFontScaling={false}
|
|
3746
3778
|
style={
|
|
3747
3779
|
Array [
|
|
3748
3780
|
Object {
|
|
@@ -3916,6 +3948,7 @@ Array [
|
|
|
3916
3948
|
}
|
|
3917
3949
|
/>
|
|
3918
3950
|
<Text
|
|
3951
|
+
allowFontScaling={false}
|
|
3919
3952
|
style={
|
|
3920
3953
|
Array [
|
|
3921
3954
|
Object {
|
|
@@ -4026,6 +4059,7 @@ Array [
|
|
|
4026
4059
|
}
|
|
4027
4060
|
>
|
|
4028
4061
|
<Text
|
|
4062
|
+
allowFontScaling={false}
|
|
4029
4063
|
style={
|
|
4030
4064
|
Array [
|
|
4031
4065
|
Object {
|
|
@@ -4141,6 +4175,7 @@ Array [
|
|
|
4141
4175
|
}
|
|
4142
4176
|
/>
|
|
4143
4177
|
<Text
|
|
4178
|
+
allowFontScaling={false}
|
|
4144
4179
|
style={
|
|
4145
4180
|
Array [
|
|
4146
4181
|
Object {
|
|
@@ -4251,6 +4286,7 @@ Array [
|
|
|
4251
4286
|
}
|
|
4252
4287
|
>
|
|
4253
4288
|
<Text
|
|
4289
|
+
allowFontScaling={false}
|
|
4254
4290
|
style={
|
|
4255
4291
|
Array [
|
|
4256
4292
|
Object {
|
|
@@ -4395,6 +4431,7 @@ Array [
|
|
|
4395
4431
|
}
|
|
4396
4432
|
>
|
|
4397
4433
|
<Text
|
|
4434
|
+
allowFontScaling={false}
|
|
4398
4435
|
style={
|
|
4399
4436
|
Array [
|
|
4400
4437
|
Object {
|
|
@@ -4540,6 +4577,7 @@ Array [
|
|
|
4540
4577
|
}
|
|
4541
4578
|
>
|
|
4542
4579
|
<Text
|
|
4580
|
+
allowFontScaling={false}
|
|
4543
4581
|
disabled={false}
|
|
4544
4582
|
ellipsizeMode="tail"
|
|
4545
4583
|
numberOfLines={1}
|