@hero-design/rn 9.0.0-0 → 9.0.0-alpha.0
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/CHANGELOG.md +287 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +17491 -14687
- package/jest-ci.config.js +17 -0
- package/jest-setup.ts +2 -0
- package/jest.config.js +1 -3
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +17376 -14565
- package/package.json +50 -40
- package/rollup.config.js +1 -0
- package/sonar-project.properties +11 -0
- package/src/components/Accordion/AccordionItem.tsx +1 -3
- package/src/components/Accordion/__tests__/AccordionItem.spec.tsx +5 -5
- package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +580 -408
- package/src/components/Accordion/__tests__/__snapshots__/StyledAccordion.spec.tsx.snap +76 -20
- package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +818 -644
- package/src/components/Accordion/__tests__/index.spec.tsx +2 -2
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +912 -644
- package/src/components/Alert/__tests__/index.spec.tsx +44 -2
- package/src/components/Alert/index.tsx +30 -4
- package/src/components/AnimatedScroller/AnimatedFAB.tsx +155 -0
- package/src/components/AnimatedScroller/AnimatedScrollable.tsx +70 -0
- package/src/components/AnimatedScroller/FlatListWithFAB.tsx +23 -0
- package/src/components/AnimatedScroller/ScrollViewWithFAB.tsx +21 -0
- package/src/components/AnimatedScroller/SectionListWithFAB.tsx +26 -0
- package/src/components/AnimatedScroller/__tests__/ScrollablesWithFAB.spec.tsx +193 -0
- package/src/components/AnimatedScroller/__tests__/__snapshots__/ScrollablesWithFAB.spec.tsx.snap +3462 -0
- package/src/components/AnimatedScroller/index.tsx +5 -0
- package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +178 -117
- package/src/components/Attachment/index.tsx +3 -1
- package/src/components/Avatar/AvatarStack/StyledAvatarStack.tsx +63 -9
- package/src/components/Avatar/AvatarStack/__tests__/StyledAvatarStack.spec.tsx +71 -9
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +410 -73
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +2904 -591
- package/src/components/Avatar/AvatarStack/__tests__/index.spec.tsx +140 -6
- package/src/components/Avatar/AvatarStack/index.tsx +94 -9
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +163 -62
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +288 -168
- package/src/components/Badge/StyledBadge.tsx +1 -4
- package/src/components/Badge/__tests__/Status.spec.tsx +1 -1
- package/src/components/Badge/__tests__/__snapshots__/Badge.spec.tsx.snap +397 -259
- package/src/components/Badge/__tests__/__snapshots__/Status.spec.tsx.snap +123 -68
- package/src/components/BottomNavigation/StyledBottomNavigation.tsx +1 -1
- package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +332 -276
- package/src/components/BottomNavigation/index.tsx +4 -1
- package/src/components/BottomSheet/Header.tsx +1 -3
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +330 -197
- package/src/components/Box/__tests__/__snapshots__/index.spec.tsx.snap +1042 -454
- package/src/components/Button/Button.tsx +60 -25
- package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +6 -9
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +400 -140
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +1090 -880
- package/src/components/Button/StyledButton.tsx +56 -59
- package/src/components/Button/UtilityButton/StyledUtilityButton.tsx +2 -4
- package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +206 -122
- package/src/components/Button/__tests__/Button.spec.tsx +18 -0
- package/src/components/Button/__tests__/StyledButton.spec.tsx +12 -6
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +1878 -1196
- package/src/components/Button/__tests__/__snapshots__/IconButton.spec.tsx.snap +74 -29
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +1734 -778
- package/src/components/Calendar/CalendarRowItem.tsx +5 -2
- package/src/components/Calendar/StyledCalendar.tsx +2 -2
- package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +555 -335
- package/src/components/Calendar/__tests__/index.spec.tsx +76 -0
- package/src/components/Calendar/index.tsx +170 -59
- package/src/components/Card/DataCard/__tests__/__snapshots__/StyledDataCard.spec.tsx.snap +265 -69
- package/src/components/Card/DataCard/__tests__/__snapshots__/index.spec.tsx.snap +215 -75
- package/src/components/Card/__tests__/__snapshots__/StyledCard.spec.tsx.snap +36 -8
- package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +304 -142
- package/src/components/Card/__tests__/index.spec.tsx +1 -1
- package/src/components/Carousel/CardCarousel.tsx +23 -25
- package/src/components/Carousel/CarouselItem.tsx +39 -23
- package/src/components/Carousel/StyledCardCarousel.tsx +1 -16
- package/src/components/Carousel/StyledCarousel.tsx +8 -12
- package/src/components/Carousel/__tests__/CardCarousel.spec.tsx +18 -18
- package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +370 -366
- package/src/components/Carousel/__tests__/__snapshots__/StyledCardCarousel.spec.tsx.snap +199 -72
- package/src/components/Carousel/__tests__/__snapshots__/StyledCarousel.spec.tsx.snap +41 -13
- package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +1621 -1861
- package/src/components/Carousel/__tests__/index.spec.tsx +107 -7
- package/src/components/Carousel/index.tsx +63 -35
- package/src/components/Carousel/types.ts +4 -4
- package/src/components/Checkbox/StyledCheckbox.tsx +24 -30
- package/src/components/Checkbox/__tests__/StyledCheckbox.spec.tsx +25 -16
- package/src/components/Checkbox/__tests__/__snapshots__/StyledCheckbox.spec.tsx.snap +432 -77
- package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +598 -345
- package/src/components/Checkbox/__tests__/index.spec.tsx +24 -9
- package/src/components/Checkbox/index.tsx +60 -25
- package/src/components/Chip/StyledChip.tsx +121 -0
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +1483 -0
- package/src/components/Chip/__tests__/index.spec.tsx +136 -0
- package/src/components/Chip/index.tsx +82 -0
- package/src/components/Collapse/__tests__/__snapshots__/StyledCollapse.spec.tsx.snap +74 -18
- package/src/components/Collapse/__tests__/__snapshots__/index.spec.tsx.snap +100 -44
- package/src/components/Collapse/index.tsx +1 -1
- package/src/components/ContentNavigator/StyledContentNavigator.tsx +1 -6
- package/src/components/ContentNavigator/__tests__/StyledContentNavigator.spec.tsx +1 -9
- package/src/components/ContentNavigator/__tests__/__snapshots__/StyledContentNavigator.spec.tsx.snap +37 -38
- package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +449 -186
- package/src/components/ContentNavigator/__tests__/index.spec.tsx +16 -0
- package/src/components/ContentNavigator/index.tsx +30 -9
- package/src/components/DatePicker/DatePickerAndroid.tsx +8 -3
- package/src/components/DatePicker/DatePickerCalendar.tsx +44 -15
- package/src/components/DatePicker/DatePickerIOS.tsx +12 -23
- package/src/components/DatePicker/__tests__/DatePicker.spec.tsx +92 -0
- package/src/components/DatePicker/__tests__/DatePickerCalendar.spec.tsx +42 -0
- package/src/components/DatePicker/__tests__/DatePickerIOS.spec.tsx +6 -5
- package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +676 -508
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +230 -174
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +222 -166
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +518 -423
- package/src/components/DatePicker/types.ts +8 -0
- package/src/components/DatePicker/useCalculateDate.tsx +34 -0
- package/src/components/Divider/__tests__/__snapshots__/StyledDivider.spec.tsx.snap +464 -128
- package/src/components/Drawer/DragableDrawer/__tests__/__snapshots__/index.spec.tsx.snap +99 -71
- package/src/components/Drawer/DragableDrawer/index.tsx +2 -2
- package/src/components/Drawer/__tests__/__snapshots__/index.spec.tsx.snap +327 -192
- package/src/components/Drawer/index.tsx +3 -3
- package/src/components/Empty/StyledEmpty.tsx +2 -6
- package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +176 -134
- package/src/components/Empty/index.tsx +4 -2
- package/src/components/Error/StyledError.tsx +4 -9
- package/src/components/Error/__tests__/__snapshots__/index.spec.tsx.snap +431 -335
- package/src/components/Error/__tests__/index.spec.tsx +9 -6
- package/src/components/Error/index.tsx +6 -2
- package/src/components/FAB/ActionGroup/ActionItem.tsx +46 -15
- package/src/components/FAB/ActionGroup/StyledActionGroup.tsx +16 -18
- package/src/components/FAB/ActionGroup/StyledActionItem.tsx +1 -5
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +980 -1217
- package/src/components/FAB/ActionGroup/__tests__/index.spec.tsx +32 -22
- package/src/components/FAB/ActionGroup/index.tsx +135 -94
- package/src/components/FAB/AnimatedFABIcon.tsx +3 -5
- package/src/components/FAB/FAB.tsx +170 -28
- package/src/components/FAB/StyledFAB.tsx +26 -23
- package/src/components/FAB/__tests__/StyledFAB.spec.tsx +12 -2
- package/src/components/FAB/__tests__/__snapshots__/AnimatedFABIcon.spec.tsx.snap +102 -46
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +204 -52
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +323 -180
- package/src/components/FAB/__tests__/index.spec.tsx +22 -2
- package/src/components/HeroDesignProvider/__tests__/__snapshots__/index.spec.tsx.snap +80 -0
- package/src/components/HeroDesignProvider/__tests__/index.spec.tsx +78 -0
- package/src/components/HeroDesignProvider/index.tsx +14 -0
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +36 -0
- package/src/components/Icon/__tests__/__snapshots__/index.spec.tsx.snap +162 -50
- package/src/components/Image/__tests__/__snapshots__/index.spec.tsx.snap +172 -60
- package/src/components/List/BasicListItem.tsx +2 -6
- package/src/components/List/ListItem.tsx +3 -5
- package/src/components/List/StyledListItem.tsx +8 -7
- package/src/components/List/__tests__/ListItem.spec.tsx +4 -4
- package/src/components/List/__tests__/StyledBasicListItem.spec.tsx +3 -1
- package/src/components/List/__tests__/StyledListItem.spec.tsx +3 -1
- package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +264 -198
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +798 -635
- package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +280 -140
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +485 -203
- package/src/components/Modal/__tests__/__snapshots__/index.spec.tsx.snap +169 -0
- package/src/components/Modal/__tests__/index.spec.tsx +99 -0
- package/src/components/Modal/index.tsx +217 -0
- package/src/components/PageControl/__tests__/__snapshots__/index.spec.tsx.snap +84 -41
- package/src/components/PageControl/index.tsx +7 -4
- package/src/components/PinInput/PinCell.tsx +3 -1
- package/src/components/PinInput/StyledPinInput.tsx +2 -7
- package/src/components/PinInput/__tests__/StyledPinInput.spec.tsx +9 -4
- package/src/components/PinInput/__tests__/__snapshots__/PinCell.spec.tsx.snap +298 -178
- package/src/components/PinInput/__tests__/__snapshots__/StyledPinInput.spec.tsx.snap +15 -48
- package/src/components/PinInput/__tests__/__snapshots__/index.spec.tsx.snap +873 -777
- package/src/components/PinInput/index.tsx +3 -1
- package/src/components/Portal/PortalHost.tsx +27 -0
- package/src/components/Portal/PortalProvider.tsx +35 -0
- package/src/components/Portal/__tests__/PortalHost.spec.tsx +48 -0
- package/src/components/Portal/__tests__/PortalProvider.spec.tsx +24 -0
- package/src/components/Portal/__tests__/__snapshots__/index.spec.tsx.snap +57 -0
- package/src/components/Portal/__tests__/index.spec.tsx +48 -0
- package/src/components/Portal/__tests__/reducer.spec.tsx +110 -0
- package/src/components/Portal/constants.ts +10 -0
- package/src/components/Portal/contexts.ts +14 -0
- package/src/components/Portal/index.tsx +66 -0
- package/src/components/Portal/reducer.ts +106 -0
- package/src/components/Portal/types.tsx +31 -0
- package/src/components/Portal/usePortal.ts +50 -0
- package/src/components/Portal/usePortalState.ts +11 -0
- package/src/components/Progress/ProgressCircle.tsx +1 -3
- package/src/components/Progress/StyledProgressBar.tsx +1 -0
- package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +810 -671
- package/src/components/Radio/Radio.tsx +25 -6
- package/src/components/Radio/RadioGroup.tsx +13 -4
- package/src/components/Radio/StyledRadio.tsx +20 -3
- package/src/components/Radio/__tests__/Radio.spec.tsx +46 -13
- package/src/components/Radio/__tests__/RadioGroup.spec.tsx +40 -7
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +565 -126
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +1079 -196
- package/src/components/Radio/types.ts +9 -1
- package/src/components/Rate/StyledRate.tsx +16 -0
- package/src/components/Rate/__tests__/__snapshots__/index.spec.tsx.snap +1006 -0
- package/src/components/Rate/__tests__/index.spec.tsx +47 -0
- package/src/components/Rate/index.tsx +90 -0
- package/src/components/RefreshControl/__tests__/__snapshots__/index.spec.tsx.snap +131 -47
- package/src/components/RichTextEditor/RichTextEditor.tsx +94 -47
- package/src/components/RichTextEditor/__tests__/EditorToolbar.spec.tsx +5 -2
- package/src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx +3 -3
- package/src/components/RichTextEditor/__tests__/__snapshots__/EditorToolbar.spec.tsx.snap +420 -273
- package/src/components/RichTextEditor/__tests__/__snapshots__/MentionList.spec.tsx.snap +66 -37
- package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +451 -355
- package/src/components/SectionHeading/StyledHeading.tsx +21 -10
- package/src/components/SectionHeading/__tests__/StyledHeading.spec.tsx +6 -2
- package/src/components/SectionHeading/__tests__/__snapshots__/StyledHeading.spec.tsx.snap +165 -30
- package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +469 -169
- package/src/components/SectionHeading/__tests__/index.spec.tsx +15 -1
- package/src/components/SectionHeading/index.tsx +51 -32
- package/src/components/Select/MultiSelect/Option.tsx +3 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +100 -64
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +2557 -2320
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +2739 -911
- package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +39 -22
- package/src/components/Select/MultiSelect/index.tsx +1 -1
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +78 -43
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +2460 -2228
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +1356 -843
- package/src/components/Select/SingleSelect/__tests__/index.spec.tsx +5 -9
- package/src/components/Skeleton/__tests__/__snapshots__/index.spec.tsx.snap +525 -329
- package/src/components/Skeleton/index.tsx +3 -7
- package/src/components/Slider/__tests__/__snapshots__/index.spec.tsx.snap +117 -33
- package/src/components/Spinner/__tests__/__snapshots__/AnimatedSpinner.spec.tsx.snap +114 -86
- package/src/components/Spinner/__tests__/__snapshots__/StyledSpinner.spec.tsx.snap +1336 -664
- package/src/components/Spinner/__tests__/__snapshots__/index.spec.tsx.snap +129 -101
- package/src/components/Success/StyledSuccess.tsx +4 -7
- package/src/components/Success/__tests__/__snapshots__/index.spec.tsx.snap +560 -311
- package/src/components/Success/__tests__/index.spec.tsx +37 -9
- package/src/components/Success/index.tsx +7 -4
- package/src/components/Swipeable/__tests__/SwipeableAction.spec.tsx +2 -2
- package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +219 -87
- package/src/components/Swipeable/__tests__/__snapshots__/index.spec.tsx.snap +158 -24
- package/src/components/Swipeable/__tests__/index.spec.tsx +12 -5
- package/src/components/Swipeable/index.tsx +42 -15
- package/src/components/Switch/SelectorSwitch/Option.tsx +1 -1
- package/src/components/Switch/SelectorSwitch/StyledSelectorSwitch.tsx +4 -7
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/Option.spec.tsx.snap +242 -131
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +152 -116
- package/src/components/Switch/SelectorSwitch/index.tsx +7 -15
- package/src/components/Switch/__tests__/__snapshots__/StyledSwitch.spec.tsx.snap +203 -63
- package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +134 -70
- package/src/components/Tabs/SceneView.tsx +11 -6
- package/src/components/Tabs/ScrollableTabs.tsx +26 -8
- package/src/components/Tabs/{ScrollableTabsHeader.tsx → ScrollableTabsHeader/ScrollableTabsHeader.tsx} +74 -45
- package/src/components/Tabs/ScrollableTabsHeader/hooks/useInitHighlightedAnimation.ts +45 -0
- package/src/components/Tabs/ScrollableTabsHeader/hooks/useInitUnderlinedAnimation.ts +91 -0
- package/src/components/Tabs/StyledScrollableTabs.tsx +14 -9
- package/src/components/Tabs/StyledTabs.tsx +1 -9
- package/src/components/Tabs/__tests__/SceneView.spec.tsx +11 -11
- package/src/components/Tabs/__tests__/ScrollableTabsHeader.spec.tsx +7 -3
- package/src/components/Tabs/__tests__/__snapshots__/SceneView.spec.tsx.snap +219 -110
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +2348 -2072
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +1134 -444
- package/src/components/Tabs/__tests__/__snapshots__/TabWithBadge.spec.tsx.snap +124 -73
- package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +1694 -1487
- package/src/components/Tabs/__tests__/useInitHighlightedAnimation.spec.tsx +56 -0
- package/src/components/Tabs/__tests__/useInitUnderlinedAnimation.spec.tsx +65 -0
- package/src/components/Tabs/index.tsx +9 -6
- package/src/components/Tag/StyledTag.tsx +7 -39
- package/src/components/Tag/__tests__/Tag.spec.tsx +18 -14
- package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +572 -377
- package/src/components/Tag/index.tsx +8 -2
- package/src/components/TextInput/StyledTextInput.tsx +18 -49
- package/src/components/TextInput/__tests__/StyledTextInput.spec.tsx +2 -46
- package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +1001 -803
- package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +3774 -3075
- package/src/components/TextInput/__tests__/index.spec.tsx +151 -9
- package/src/components/TextInput/index.tsx +253 -105
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +452 -347
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +741 -597
- package/src/components/Toast/StyledToast.tsx +1 -1
- package/src/components/Toast/Toast.tsx +6 -5
- package/src/components/Toast/ToastContainer.tsx +2 -0
- package/src/components/Toast/ToastContext.ts +20 -2
- package/src/components/Toast/ToastProvider.tsx +7 -4
- package/src/components/Toast/__tests__/Toast.spec.tsx +5 -1
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +916 -631
- package/src/components/Toast/__tests__/__snapshots__/ToastContainer.spec.tsx.snap +180 -68
- package/src/components/Toolbar/StyledToolbar.tsx +1 -1
- package/src/components/Toolbar/ToolbarItem.tsx +4 -6
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +606 -456
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +714 -401
- package/src/components/Typography/Body/StyledBody.tsx +46 -0
- package/src/components/Typography/Body/__tests__/StyledBody.tsx +56 -0
- package/src/components/Typography/Body/__tests__/__snapshots__/StyledBody.tsx.snap +801 -0
- package/src/components/Typography/Body/__tests__/__snapshots__/index.spec.tsx.snap +970 -0
- package/src/components/Typography/Body/__tests__/index.spec.tsx +54 -0
- package/src/components/Typography/Body/index.tsx +71 -0
- package/src/components/Typography/Caption/StyledCaption.tsx +17 -0
- package/src/components/Typography/Caption/__tests__/StyledCaption.spec.tsx +39 -0
- package/src/components/Typography/Caption/__tests__/__snapshots__/StyledCaption.spec.tsx.snap +491 -0
- package/src/components/Typography/Caption/__tests__/__snapshots__/index.spec.tsx.snap +651 -0
- package/src/components/Typography/Caption/__tests__/index.spec.tsx +46 -0
- package/src/components/Typography/Caption/index.tsx +61 -0
- package/src/components/Typography/Label/StyledLabel.tsx +14 -0
- package/src/components/Typography/Label/__tests__/StyledLabel.tsx +23 -0
- package/src/components/Typography/Label/__tests__/__snapshots__/StyledLabel.tsx.snap +377 -0
- package/src/components/Typography/Label/__tests__/__snapshots__/index.spec.tsx.snap +529 -0
- package/src/components/Typography/Label/__tests__/index.spec.tsx +32 -0
- package/src/components/Typography/Label/index.tsx +55 -0
- package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +900 -340
- package/src/components/Typography/Text/index.tsx +19 -12
- package/src/components/Typography/Title/StyledTitle.tsx +20 -0
- package/src/components/Typography/Title/__tests__/StyledTitle.tsx +53 -0
- package/src/components/Typography/Title/__tests__/__snapshots__/StyledTitle.tsx.snap +1001 -0
- package/src/components/Typography/Title/__tests__/__snapshots__/index.spec.tsx.snap +1174 -0
- package/src/components/Typography/Title/__tests__/index.spec.tsx +55 -0
- package/src/components/Typography/Title/index.tsx +70 -0
- package/src/components/Typography/index.tsx +15 -0
- package/src/components/Typography/types.ts +18 -0
- package/src/index.ts +16 -0
- package/src/testHelpers/renderWithTheme.tsx +2 -2
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +539 -345
- package/src/theme/components/badge.ts +15 -0
- package/src/theme/components/button.ts +17 -1
- package/src/theme/components/calendar.ts +2 -0
- package/src/theme/components/cardCarousel.ts +1 -8
- package/src/theme/components/carousel.ts +15 -1
- package/src/theme/components/checkbox.ts +5 -2
- package/src/theme/components/chip.ts +47 -0
- package/src/theme/components/empty.ts +12 -0
- package/src/theme/components/error.ts +16 -0
- package/src/theme/components/fab.ts +17 -11
- package/src/theme/components/list.ts +9 -5
- package/src/theme/components/pinInput.ts +15 -0
- package/src/theme/components/progress.ts +2 -2
- package/src/theme/components/radio.ts +8 -2
- package/src/theme/components/rate.ts +16 -0
- package/src/theme/components/sectionHeading.ts +2 -1
- package/src/theme/components/success.ts +12 -0
- package/src/theme/components/swipeable.ts +10 -1
- package/src/theme/components/switch.ts +4 -4
- package/src/theme/components/tabs.ts +3 -2
- package/src/theme/components/tag.ts +18 -2
- package/src/theme/components/textInput.ts +4 -4
- package/src/theme/components/toast.ts +5 -5
- package/src/theme/components/typography.ts +132 -1
- package/src/theme/getTheme.ts +24 -18
- package/src/theme/global/colors/__tests__/__snapshots__/eBens.spec.ts.snap +8 -8
- package/src/theme/global/colors/__tests__/__snapshots__/global.spec.ts.snap +6 -6
- package/src/theme/global/colors/__tests__/__snapshots__/globalDark.spec.ts.snap +1 -1
- package/src/theme/global/colors/__tests__/__snapshots__/jobs.spec.ts.snap +7 -7
- package/src/theme/global/colors/__tests__/__snapshots__/swag.spec.ts.snap +7 -7
- package/src/theme/global/colors/__tests__/__snapshots__/swagDark.spec.ts.snap +1 -1
- package/src/theme/global/colors/__tests__/__snapshots__/wallet.spec.ts.snap +8 -8
- package/src/theme/global/colors/__tests__/__snapshots__/work.spec.ts.snap +10 -10
- package/src/theme/global/colors/eBens.ts +2 -2
- package/src/theme/global/colors/global.ts +5 -5
- package/src/theme/global/colors/jobs.ts +1 -1
- package/src/theme/global/colors/swag.ts +1 -1
- package/src/theme/global/colors/wallet.ts +2 -2
- package/src/theme/global/colors/work.ts +4 -4
- package/src/theme/global/index.ts +3 -0
- package/src/theme/global/shadows.ts +19 -0
- package/src/theme/global/space.ts +2 -0
- package/src/types.ts +4 -0
- package/src/utils/helpers.ts +4 -1
- package/testUtils/setup.tsx +32 -2
- package/tsconfig.json +14 -3
- package/types/components/Accordion/AccordionItem.d.ts +2 -1
- package/types/components/Accordion/StyledAccordion.d.ts +5 -6
- package/types/components/Accordion/index.d.ts +1 -1
- package/types/components/Alert/StyledAlert.d.ts +5 -6
- package/types/components/Alert/index.d.ts +18 -2
- package/types/components/AnimatedScroller/AnimatedFAB.d.ts +12 -0
- package/types/components/AnimatedScroller/AnimatedScrollable.d.ts +16 -0
- package/types/components/AnimatedScroller/FlatListWithFAB.d.ts +12 -0
- package/types/components/AnimatedScroller/ScrollViewWithFAB.d.ts +12 -0
- package/types/components/AnimatedScroller/SectionListWithFAB.d.ts +12 -0
- package/types/components/AnimatedScroller/index.d.ts +4 -0
- package/types/components/Attachment/StyledAttachment.d.ts +4 -5
- package/types/components/Attachment/index.d.ts +2 -1
- package/types/components/Avatar/Avatar.d.ts +2 -1
- package/types/components/Avatar/AvatarStack/StyledAvatarStack.d.ts +15 -3
- package/types/components/Avatar/AvatarStack/index.d.ts +14 -2
- 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 +2 -2
- package/types/components/Badge/Status.d.ts +0 -0
- package/types/components/Badge/StyledBadge.d.ts +4 -9
- package/types/components/Badge/index.d.ts +0 -0
- package/types/components/BottomNavigation/StyledBottomNavigation.d.ts +8 -9
- package/types/components/BottomNavigation/index.d.ts +0 -0
- package/types/components/BottomSheet/BottomSheetContext.d.ts +0 -1
- 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 +0 -0
- package/types/components/BottomSheet/StyledBottomSheet.d.ts +8 -13
- package/types/components/BottomSheet/index.d.ts +0 -0
- package/types/components/Box/StyledBox.d.ts +1 -2
- package/types/components/Box/config.d.ts +0 -0
- package/types/components/Box/index.d.ts +2 -1
- package/types/components/Box/types.d.ts +0 -1
- package/types/components/Button/Button.d.ts +3 -3
- package/types/components/Button/IconButton.d.ts +2 -1
- package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +5 -6
- package/types/components/Button/LoadingIndicator/index.d.ts +2 -1
- package/types/components/Button/StyledButton.d.ts +16 -10
- package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +4 -5
- package/types/components/Button/UtilityButton/index.d.ts +2 -1
- package/types/components/Button/index.d.ts +0 -0
- package/types/components/Calendar/CalendarRowItem.d.ts +2 -1
- package/types/components/Calendar/StyledCalendar.d.ts +8 -9
- package/types/components/Calendar/helpers.d.ts +0 -0
- package/types/components/Calendar/index.d.ts +15 -1
- package/types/components/Card/DataCard/StyledDataCard.d.ts +2 -3
- package/types/components/Card/DataCard/index.d.ts +0 -0
- package/types/components/Card/StyledCard.d.ts +1 -2
- package/types/components/Card/index.d.ts +0 -0
- package/types/components/Carousel/CardCarousel.d.ts +2 -1
- package/types/components/Carousel/CarouselItem.d.ts +2 -1
- package/types/components/Carousel/StyledCardCarousel.d.ts +5 -12
- package/types/components/Carousel/StyledCarousel.d.ts +13 -14
- package/types/components/Carousel/contants.d.ts +0 -0
- package/types/components/Carousel/index.d.ts +2 -2
- package/types/components/Carousel/types.d.ts +4 -4
- package/types/components/Checkbox/StyledCheckbox.d.ts +12 -10
- package/types/components/Checkbox/index.d.ts +12 -1
- package/types/components/Chip/StyledChip.d.ts +30 -0
- package/types/components/Chip/index.d.ts +27 -0
- package/types/components/Collapse/StyledCollapse.d.ts +3 -6
- package/types/components/Collapse/index.d.ts +2 -1
- package/types/components/ContentNavigator/StyledContentNavigator.d.ts +2 -7
- 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 -2
- package/types/components/DatePicker/StyledDatePicker.d.ts +1 -2
- package/types/components/DatePicker/index.d.ts +2 -1
- package/types/components/DatePicker/types.d.ts +8 -0
- package/types/components/DatePicker/useCalculateDate.d.ts +4 -0
- package/types/components/Divider/StyledDivider.d.ts +1 -2
- package/types/components/Divider/index.d.ts +2 -1
- 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 +7 -14
- package/types/components/Drawer/index.d.ts +0 -0
- package/types/components/Empty/StyledEmpty.d.ts +5 -6
- package/types/components/Empty/index.d.ts +0 -0
- package/types/components/Error/StyledError.d.ts +15 -22
- package/types/components/Error/index.d.ts +0 -0
- package/types/components/FAB/ActionGroup/ActionItem.d.ts +7 -2
- package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +13 -17
- package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +4 -5
- package/types/components/FAB/ActionGroup/index.d.ts +12 -1
- package/types/components/FAB/AnimatedFABIcon.d.ts +2 -1
- package/types/components/FAB/FAB.d.ts +8 -2
- package/types/components/FAB/StyledFAB.d.ts +11 -12
- package/types/components/FAB/index.d.ts +2 -2
- package/types/components/HeroDesignProvider/index.d.ts +4 -0
- package/types/components/Icon/AnimatedIcon.d.ts +2 -1
- package/types/components/Icon/HeroIcon/index.d.ts +1 -2
- 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 +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 +4 -5
- package/types/components/List/StyledListItem.d.ts +7 -8
- package/types/components/List/index.d.ts +0 -0
- package/types/components/Modal/index.d.ts +37 -0
- package/types/components/PageControl/StyledPageControl.d.ts +2 -5
- package/types/components/PageControl/index.d.ts +2 -1
- package/types/components/PinInput/PinCell.d.ts +2 -1
- package/types/components/PinInput/StyledPinInput.d.ts +12 -13
- package/types/components/PinInput/index.d.ts +0 -0
- package/types/components/Portal/PortalHost.d.ts +5 -0
- package/types/components/Portal/PortalProvider.d.ts +7 -0
- package/types/components/Portal/constants.d.ts +8 -0
- package/types/components/Portal/contexts.d.ts +9 -0
- package/types/components/Portal/index.d.ts +18 -0
- package/types/components/Portal/reducer.d.ts +5 -0
- package/types/components/Portal/types.d.ts +22 -0
- package/types/components/Portal/usePortal.d.ts +8 -0
- package/types/components/Portal/usePortalState.d.ts +1 -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 +2 -5
- package/types/components/Progress/StyledProgressCircle.d.ts +6 -7
- 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 +15 -3
- package/types/components/Radio/RadioGroup.d.ts +5 -1
- package/types/components/Radio/StyledRadio.d.ts +14 -5
- package/types/components/Radio/index.d.ts +1 -2
- package/types/components/Radio/types.d.ts +3 -0
- package/types/components/Rate/StyledRate.d.ts +10 -0
- package/types/components/Rate/index.d.ts +29 -0
- package/types/components/RefreshControl/index.d.ts +2 -1
- package/types/components/RichTextEditor/EditorEvent.d.ts +1 -0
- package/types/components/RichTextEditor/EditorToolbar.d.ts +2 -1
- package/types/components/RichTextEditor/MentionList.d.ts +2 -1
- package/types/components/RichTextEditor/RichTextEditor.d.ts +2 -2
- package/types/components/RichTextEditor/StyledRichTextEditor.d.ts +2 -3
- package/types/components/RichTextEditor/StyledToolbar.d.ts +3 -4
- 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 +2 -3
- 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 +7 -5
- package/types/components/SectionHeading/index.d.ts +7 -1
- 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 +1 -1
- package/types/components/Select/SingleSelect/index.d.ts +1 -1
- package/types/components/Select/StyledSelect.d.ts +3 -4
- package/types/components/Select/helpers.d.ts +1 -2
- package/types/components/Select/index.d.ts +1 -1
- package/types/components/Select/types.d.ts +0 -0
- package/types/components/Skeleton/StyledSkeleton.d.ts +2 -3
- 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/Spinner/StyledSpinner.d.ts +4 -5
- package/types/components/Spinner/index.d.ts +0 -0
- package/types/components/Success/StyledSuccess.d.ts +14 -19
- package/types/components/Success/index.d.ts +1 -1
- package/types/components/Swipeable/StyledSwipeable.d.ts +1 -2
- package/types/components/Swipeable/SwipeableAction.d.ts +2 -2
- package/types/components/Swipeable/index.d.ts +8 -4
- package/types/components/Switch/SelectorSwitch/Option.d.ts +2 -1
- package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +4 -11
- package/types/components/Switch/SelectorSwitch/index.d.ts +0 -0
- package/types/components/Switch/StyledSwitch.d.ts +2 -5
- package/types/components/Switch/index.d.ts +0 -0
- 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 +5 -1
- package/types/components/Tabs/{ScrollableTabsHeader.d.ts → ScrollableTabsHeader/ScrollableTabsHeader.d.ts} +8 -3
- package/types/components/Tabs/ScrollableTabsHeader/hooks/useInitHighlightedAnimation.d.ts +9 -0
- package/types/components/Tabs/ScrollableTabsHeader/hooks/useInitUnderlinedAnimation.d.ts +10 -0
- package/types/components/Tabs/StyledScrollableTabs.d.ts +12 -20
- package/types/components/Tabs/StyledTabs.d.ts +8 -18
- package/types/components/Tabs/TabWithBadge.d.ts +2 -2
- package/types/components/Tabs/index.d.ts +2 -1
- package/types/components/Tabs/useIsFocused.d.ts +0 -0
- package/types/components/Tabs/utils.d.ts +0 -0
- package/types/components/Tag/StyledTag.d.ts +4 -8
- package/types/components/Tag/index.d.ts +1 -0
- package/types/components/TextInput/StyledTextInput.d.ts +22 -46
- package/types/components/TextInput/index.d.ts +31 -2
- package/types/components/TimePicker/StyledTimePicker.d.ts +1 -2
- 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/TimePicker/types.d.ts +0 -0
- package/types/components/Toast/StyledToast.d.ts +6 -9
- 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 +1 -1
- package/types/components/Toast/ToastProvider.d.ts +2 -1
- package/types/components/Toast/index.d.ts +1 -2
- package/types/components/Toast/types.d.ts +0 -0
- package/types/components/Toolbar/StyledToolbar.d.ts +6 -7
- 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/StyledBody.d.ts +14 -0
- package/types/components/Typography/Body/__tests__/StyledBody.d.ts +1 -0
- package/types/components/Typography/Body/index.d.ts +33 -0
- package/types/components/Typography/Caption/StyledCaption.d.ts +12 -0
- package/types/components/Typography/Caption/index.d.ts +27 -0
- package/types/components/Typography/Label/StyledLabel.d.ts +11 -0
- package/types/components/Typography/Label/__tests__/StyledLabel.d.ts +1 -0
- package/types/components/Typography/Label/index.d.ts +23 -0
- package/types/components/Typography/Text/StyledText.d.ts +1 -2
- package/types/components/Typography/Text/index.d.ts +2 -1
- package/types/components/Typography/Title/StyledTitle.d.ts +14 -0
- package/types/components/Typography/Title/__tests__/StyledTitle.d.ts +1 -0
- package/types/components/Typography/Title/index.d.ts +33 -0
- package/types/components/Typography/index.d.ts +11 -0
- package/types/components/Typography/types.d.ts +6 -0
- package/types/index.d.ts +6 -1
- package/types/testHelpers/renderWithTheme.d.ts +0 -0
- package/types/theme/ThemeProvider.d.ts +0 -1
- package/types/theme/ThemeSwitcher.d.ts +2 -2
- 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 +0 -0
- package/types/theme/components/badge.d.ts +15 -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 +14 -0
- package/types/theme/components/calendar.d.ts +2 -0
- package/types/theme/components/card.d.ts +0 -0
- package/types/theme/components/cardCarousel.d.ts +0 -10
- package/types/theme/components/carousel.d.ts +15 -1
- package/types/theme/components/checkbox.d.ts +5 -2
- package/types/theme/components/chip.d.ts +40 -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 +11 -0
- package/types/theme/components/error.d.ts +15 -0
- package/types/theme/components/fab.d.ts +13 -7
- 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 +11 -7
- package/types/theme/components/pageControl.d.ts +0 -0
- package/types/theme/components/pinInput.d.ts +15 -0
- package/types/theme/components/progress.d.ts +0 -0
- package/types/theme/components/radio.d.ts +7 -1
- package/types/theme/components/rate.d.ts +11 -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 +1 -0
- package/types/theme/components/select.d.ts +0 -0
- package/types/theme/components/skeleton.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/success.d.ts +11 -0
- package/types/theme/components/swipeable.d.ts +7 -0
- package/types/theme/components/switch.d.ts +1 -1
- package/types/theme/components/tabs.d.ts +1 -0
- package/types/theme/components/tag.d.ts +16 -1
- package/types/theme/components/textInput.d.ts +2 -2
- package/types/theme/components/timePicker.d.ts +0 -0
- package/types/theme/components/toast.d.ts +1 -1
- package/types/theme/components/toolbar.d.ts +0 -0
- package/types/theme/components/typography.d.ts +122 -0
- package/types/theme/getTheme.d.ts +22 -18
- 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 +12 -0
- package/types/theme/global/scale.d.ts +0 -0
- package/types/theme/global/shadows.d.ts +16 -0
- package/types/theme/global/sizes.d.ts +0 -0
- package/types/theme/global/space.d.ts +1 -0
- package/types/theme/global/typography.d.ts +0 -0
- package/types/theme/index.d.ts +0 -0
- package/types/types.d.ts +3 -1
- package/types/utils/functions.d.ts +0 -0
- package/types/utils/helpers.d.ts +1 -1
- package/types/utils/hooks.d.ts +0 -0
- package/types/utils/scale.d.ts +0 -0
- package/.turbo/turbo-build.log +0 -8
- package/.turbo/turbo-build:types.log +0 -1
- package/.turbo/turbo-lint.log +0 -153
- package/.turbo/turbo-publish:npm.log +0 -0
- package/.turbo/turbo-type-check.log +0 -1
- package/types/components/Carousel/CarouselPaginator/StyledCarouselPaginator.d.ts +0 -14
- package/types/components/Carousel/CarouselPaginator/index.d.ts +0 -7
- package/types/components/Select/StyledOptionList.d.ts +0 -12
- package/types/components/SwipeableV2/StyledSwipeable.d.ts +0 -15
- package/types/components/SwipeableV2/index.d.ts +0 -46
- package/types/theme/global/colors/legacySystemPalette.d.ts +0 -3
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { fireEvent } from '@testing-library/react-native';
|
|
1
2
|
import React from 'react';
|
|
2
3
|
import Alert from '..';
|
|
3
4
|
import renderWithTheme from '../../../testHelpers/renderWithTheme';
|
|
@@ -29,6 +30,23 @@ describe('Alert', () => {
|
|
|
29
30
|
expect(getByTestId('alert-close-icon')).toBeDefined();
|
|
30
31
|
});
|
|
31
32
|
|
|
33
|
+
it('renders correctly with CTA ', () => {
|
|
34
|
+
const onCloseSpy = jest.fn();
|
|
35
|
+
const { getByText } = renderWithTheme(
|
|
36
|
+
<Alert
|
|
37
|
+
title="Title"
|
|
38
|
+
content="Content"
|
|
39
|
+
actionLabel="CTA"
|
|
40
|
+
onClose={onCloseSpy}
|
|
41
|
+
/>
|
|
42
|
+
);
|
|
43
|
+
|
|
44
|
+
expect(getByText('CTA')).toBeVisible();
|
|
45
|
+
fireEvent.press(getByText('CTA'));
|
|
46
|
+
|
|
47
|
+
expect(onCloseSpy).toHaveBeenCalledTimes(1);
|
|
48
|
+
});
|
|
49
|
+
|
|
32
50
|
it('renders correctly without rounded ', () => {
|
|
33
51
|
const { toJSON, getByTestId, getByText, queryByTestId } = renderWithTheme(
|
|
34
52
|
<Alert title="Title" content="Content" variant="unrounded" />
|
|
@@ -90,7 +108,9 @@ describe('Alert', () => {
|
|
|
90
108
|
it('renders custom title correctly', () => {
|
|
91
109
|
const { getByText } = renderWithTheme(
|
|
92
110
|
<Alert
|
|
93
|
-
title={
|
|
111
|
+
title={
|
|
112
|
+
<Typography.Body variant="small">Custom Title</Typography.Body>
|
|
113
|
+
}
|
|
94
114
|
content="Content"
|
|
95
115
|
/>
|
|
96
116
|
);
|
|
@@ -101,7 +121,11 @@ describe('Alert', () => {
|
|
|
101
121
|
describe('Content', () => {
|
|
102
122
|
it('renders custom content correctly', () => {
|
|
103
123
|
const { getByText } = renderWithTheme(
|
|
104
|
-
<Alert
|
|
124
|
+
<Alert
|
|
125
|
+
content={
|
|
126
|
+
<Typography.Body variant="small">Custom Content</Typography.Body>
|
|
127
|
+
}
|
|
128
|
+
/>
|
|
105
129
|
);
|
|
106
130
|
|
|
107
131
|
expect(getByText('Custom Content')).toBeDefined();
|
|
@@ -116,3 +140,21 @@ describe('Alert', () => {
|
|
|
116
140
|
});
|
|
117
141
|
});
|
|
118
142
|
});
|
|
143
|
+
|
|
144
|
+
describe('AlertProps', () => {
|
|
145
|
+
it('raises type error if actionLabel has value but no close icon', () => {
|
|
146
|
+
// should raise error which requires onClose
|
|
147
|
+
renderWithTheme(
|
|
148
|
+
// @ts-expect-error: Type '{ title: string; content: string; actionLabel: string; }' i
|
|
149
|
+
<Alert title="Title" content="Content" actionLabel="VIEW" />
|
|
150
|
+
);
|
|
151
|
+
|
|
152
|
+
// if onClose is standalone, it's valid
|
|
153
|
+
renderWithTheme(
|
|
154
|
+
<Alert title="Title" content="Content" onClose={jest.fn()} />
|
|
155
|
+
);
|
|
156
|
+
|
|
157
|
+
// if onClose and actionLabel are undefined, it's valid
|
|
158
|
+
renderWithTheme(<Alert title="Title" content="Content" />);
|
|
159
|
+
});
|
|
160
|
+
});
|
|
@@ -37,7 +37,7 @@ const AlertIcon = ({ icon }: { icon?: IconName }) =>
|
|
|
37
37
|
</IconContainer>
|
|
38
38
|
) : null;
|
|
39
39
|
|
|
40
|
-
interface
|
|
40
|
+
interface BasicAlertProps {
|
|
41
41
|
/**
|
|
42
42
|
* Alert title.
|
|
43
43
|
*/
|
|
@@ -59,6 +59,7 @@ interface AlertProps {
|
|
|
59
59
|
intent?: 'success' | 'info' | 'warning' | 'error' | 'notification';
|
|
60
60
|
/**
|
|
61
61
|
* Closing callback. When onClose is available, an X button will be rendered on the right side of alert. The callback will be called when user clicks on X button.
|
|
62
|
+
* - undefined: no action button.
|
|
62
63
|
*/
|
|
63
64
|
onClose?: () => void;
|
|
64
65
|
/**
|
|
@@ -73,8 +74,26 @@ interface AlertProps {
|
|
|
73
74
|
* Testing id of the component.
|
|
74
75
|
*/
|
|
75
76
|
testID?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Action label at the right side of the alert.
|
|
79
|
+
* - undefined: a close icon.
|
|
80
|
+
*/
|
|
81
|
+
actionLabel?: string;
|
|
76
82
|
}
|
|
77
83
|
|
|
84
|
+
type AlertProps =
|
|
85
|
+
| (BasicAlertProps & {
|
|
86
|
+
actionLabel?: undefined;
|
|
87
|
+
})
|
|
88
|
+
| (BasicAlertProps & {
|
|
89
|
+
onClose: () => void;
|
|
90
|
+
/**
|
|
91
|
+
* Action label at the right side of the alert.
|
|
92
|
+
* - undefined: a close icon.
|
|
93
|
+
*/
|
|
94
|
+
actionLabel: string;
|
|
95
|
+
});
|
|
96
|
+
|
|
78
97
|
const Alert = ({
|
|
79
98
|
content,
|
|
80
99
|
icon,
|
|
@@ -84,6 +103,7 @@ const Alert = ({
|
|
|
84
103
|
variant = 'rounded',
|
|
85
104
|
style,
|
|
86
105
|
testID,
|
|
106
|
+
actionLabel,
|
|
87
107
|
}: AlertProps): JSX.Element => {
|
|
88
108
|
useDeprecation(
|
|
89
109
|
`Alert's notification intent is deprecated and will be removed in the next major release. Please use other intents instead.`,
|
|
@@ -103,12 +123,12 @@ const Alert = ({
|
|
|
103
123
|
) : null}
|
|
104
124
|
<TextContainer>
|
|
105
125
|
{typeof title === 'string' ? (
|
|
106
|
-
<Typography.
|
|
126
|
+
<Typography.Body variant="small-bold">{title}</Typography.Body>
|
|
107
127
|
) : (
|
|
108
128
|
title
|
|
109
129
|
)}
|
|
110
130
|
{typeof content === 'string' ? (
|
|
111
|
-
<Typography.
|
|
131
|
+
<Typography.Body variant="small">{content}</Typography.Body>
|
|
112
132
|
) : (
|
|
113
133
|
content
|
|
114
134
|
)}
|
|
@@ -116,7 +136,13 @@ const Alert = ({
|
|
|
116
136
|
</ContentContainer>
|
|
117
137
|
{onClose ? (
|
|
118
138
|
<CTAWrapper onPress={onClose} testID="alert-close-icon">
|
|
119
|
-
|
|
139
|
+
{typeof actionLabel === 'string' ? (
|
|
140
|
+
<Typography.Body variant="small-bold">
|
|
141
|
+
{actionLabel}
|
|
142
|
+
</Typography.Body>
|
|
143
|
+
) : (
|
|
144
|
+
<Icon icon="cancel" size="small" />
|
|
145
|
+
)}
|
|
120
146
|
</CTAWrapper>
|
|
121
147
|
) : null}
|
|
122
148
|
</Container>
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Animated } from 'react-native';
|
|
3
|
+
import FAB from '../FAB';
|
|
4
|
+
import ActionGroup, {
|
|
5
|
+
ActionGroupHandles,
|
|
6
|
+
ActionGroupProps,
|
|
7
|
+
} from '../FAB/ActionGroup';
|
|
8
|
+
import { FABHandles, FABProps } from '../FAB/FAB';
|
|
9
|
+
|
|
10
|
+
const LAST_BREAKPOINT = 100;
|
|
11
|
+
const MIDDLE_BREAKPOINT = 250;
|
|
12
|
+
const MAX_ANIMATABLE_SCROLL_DISTANCE = 400;
|
|
13
|
+
const REF_ACTIONS_BY_COMPONENT = {
|
|
14
|
+
FAB: {
|
|
15
|
+
show: 'show',
|
|
16
|
+
hide: 'hide',
|
|
17
|
+
collapse: 'collapse',
|
|
18
|
+
},
|
|
19
|
+
ActionGroup: {
|
|
20
|
+
show: 'showFAB',
|
|
21
|
+
hide: 'hideFAB',
|
|
22
|
+
collapse: 'collapseFAB',
|
|
23
|
+
},
|
|
24
|
+
} as const;
|
|
25
|
+
|
|
26
|
+
interface AnimatedFABProps {
|
|
27
|
+
fabProps: FABProps | ActionGroupProps;
|
|
28
|
+
contentOffsetY: Animated.Value;
|
|
29
|
+
contentHeight: Animated.Value;
|
|
30
|
+
layoutHeight: Animated.Value;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const AnimatedFAB = ({
|
|
34
|
+
fabProps,
|
|
35
|
+
contentOffsetY,
|
|
36
|
+
contentHeight,
|
|
37
|
+
layoutHeight,
|
|
38
|
+
}: AnimatedFABProps) => {
|
|
39
|
+
const component = 'items' in fabProps ? 'ActionGroup' : 'FAB';
|
|
40
|
+
const ref = React.useRef<FABHandles & ActionGroupHandles>(null);
|
|
41
|
+
const currentContentHeight = React.useRef(0);
|
|
42
|
+
const currentLayoutHeight = React.useRef(0);
|
|
43
|
+
|
|
44
|
+
/** fabState is used to avoid calling duplicated animations. */
|
|
45
|
+
const fabState = React.useRef<'show' | 'hide' | 'collapse'>('show');
|
|
46
|
+
|
|
47
|
+
/** remainingScrollOffset determines whether to animate the FAB. */
|
|
48
|
+
const remainingScrollOffset = React.useRef(MAX_ANIMATABLE_SCROLL_DISTANCE);
|
|
49
|
+
|
|
50
|
+
/** currentScrollDirection is used to determine the scroll direction. */
|
|
51
|
+
const currentScrollDirection = React.useRef<'up' | 'down'>('down');
|
|
52
|
+
|
|
53
|
+
/** lastScrollY is the scrollY from the preview scroll event. */
|
|
54
|
+
const lastScrollY = React.useRef(0);
|
|
55
|
+
|
|
56
|
+
const animateFab = React.useCallback(
|
|
57
|
+
(newState: 'show' | 'hide' | 'collapse') => {
|
|
58
|
+
if (fabState.current !== newState) {
|
|
59
|
+
if (newState === 'show') {
|
|
60
|
+
ref.current?.[REF_ACTIONS_BY_COMPONENT[component].show]();
|
|
61
|
+
} else if (newState === 'hide') {
|
|
62
|
+
ref.current?.[REF_ACTIONS_BY_COMPONENT[component].hide]();
|
|
63
|
+
} else {
|
|
64
|
+
ref.current?.[REF_ACTIONS_BY_COMPONENT[component].collapse]();
|
|
65
|
+
}
|
|
66
|
+
fabState.current = newState;
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
[component]
|
|
70
|
+
);
|
|
71
|
+
|
|
72
|
+
React.useEffect(() => {
|
|
73
|
+
contentHeight.addListener(({ value }) => {
|
|
74
|
+
if (value > 0 && value !== currentContentHeight.current) {
|
|
75
|
+
currentContentHeight.current = value;
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
layoutHeight.addListener(({ value }) => {
|
|
80
|
+
if (value > 0 && value !== currentLayoutHeight.current) {
|
|
81
|
+
currentLayoutHeight.current = value;
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
// Listen to ScrollView's contentOffsetY value
|
|
86
|
+
contentOffsetY.addListener(({ value }) => {
|
|
87
|
+
if (
|
|
88
|
+
value < 0 ||
|
|
89
|
+
// Prevent calling the function if the scroll is not significant
|
|
90
|
+
(value > 0 && Math.abs(value - lastScrollY.current) < 5)
|
|
91
|
+
) {
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// Scroll up to top, bouncing included.
|
|
96
|
+
if (value === 0 && lastScrollY.current !== 0) {
|
|
97
|
+
animateFab('show');
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
const newScrollDirection = value >= lastScrollY.current ? 'down' : 'up';
|
|
101
|
+
|
|
102
|
+
if (newScrollDirection !== currentScrollDirection.current) {
|
|
103
|
+
// If scroll direction changes, reset all values
|
|
104
|
+
currentScrollDirection.current = newScrollDirection;
|
|
105
|
+
remainingScrollOffset.current = MAX_ANIMATABLE_SCROLL_DISTANCE;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
const hasReachedBottom =
|
|
109
|
+
value + currentLayoutHeight.current >= currentContentHeight.current;
|
|
110
|
+
|
|
111
|
+
// Scroll down to bottom, bouncing included.
|
|
112
|
+
if (hasReachedBottom) {
|
|
113
|
+
animateFab('hide');
|
|
114
|
+
return;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
if (remainingScrollOffset.current) {
|
|
118
|
+
const offsetDiff = Math.round(
|
|
119
|
+
Math.max(Math.abs(value - lastScrollY.current), 0)
|
|
120
|
+
);
|
|
121
|
+
|
|
122
|
+
const newRemainingScrollOffset = Math.max(
|
|
123
|
+
remainingScrollOffset.current - offsetDiff,
|
|
124
|
+
0
|
|
125
|
+
);
|
|
126
|
+
|
|
127
|
+
if (newRemainingScrollOffset <= LAST_BREAKPOINT) {
|
|
128
|
+
animateFab(
|
|
129
|
+
currentScrollDirection.current === 'down' ? 'hide' : 'show'
|
|
130
|
+
);
|
|
131
|
+
} else if (newRemainingScrollOffset <= MIDDLE_BREAKPOINT) {
|
|
132
|
+
animateFab('collapse');
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
remainingScrollOffset.current = newRemainingScrollOffset;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
lastScrollY.current = value;
|
|
139
|
+
});
|
|
140
|
+
|
|
141
|
+
return () => {
|
|
142
|
+
contentOffsetY.removeAllListeners();
|
|
143
|
+
contentHeight.removeAllListeners();
|
|
144
|
+
layoutHeight.removeAllListeners();
|
|
145
|
+
};
|
|
146
|
+
}, [contentHeight, contentOffsetY, layoutHeight]);
|
|
147
|
+
|
|
148
|
+
return component === 'FAB' ? (
|
|
149
|
+
<FAB ref={ref} {...(fabProps as FABProps)} />
|
|
150
|
+
) : (
|
|
151
|
+
<ActionGroup ref={ref} {...(fabProps as ActionGroupHandles)} />
|
|
152
|
+
);
|
|
153
|
+
};
|
|
154
|
+
|
|
155
|
+
export default AnimatedFAB;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import {
|
|
3
|
+
Animated,
|
|
4
|
+
FlatListProps,
|
|
5
|
+
ScrollViewProps as RnScrollViewProps,
|
|
6
|
+
SectionListProps,
|
|
7
|
+
} from 'react-native';
|
|
8
|
+
import { ActionGroupProps } from '../FAB/ActionGroup';
|
|
9
|
+
import { FABProps } from '../FAB/FAB';
|
|
10
|
+
import AnimatedFAB from './AnimatedFAB';
|
|
11
|
+
|
|
12
|
+
export interface AnimatedScrollerProps<T> {
|
|
13
|
+
/**
|
|
14
|
+
* Scroll component, it can be ScrollView, FlatList or SectionList.
|
|
15
|
+
*/
|
|
16
|
+
ScrollComponent: React.ReactElement<
|
|
17
|
+
RnScrollViewProps | FlatListProps<T> | SectionListProps<T>
|
|
18
|
+
>;
|
|
19
|
+
/**
|
|
20
|
+
* FAB or FAB.ActionGroup props.
|
|
21
|
+
*/
|
|
22
|
+
fabProps: FABProps | ActionGroupProps;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
function AnimatedScroller<T>({
|
|
26
|
+
ScrollComponent,
|
|
27
|
+
fabProps,
|
|
28
|
+
}: AnimatedScrollerProps<T>) {
|
|
29
|
+
const contentOffsetY = React.useRef(new Animated.Value(0)).current;
|
|
30
|
+
const contentHeight = React.useRef(new Animated.Value(0)).current;
|
|
31
|
+
const layoutHeight = React.useRef(new Animated.Value(0)).current;
|
|
32
|
+
|
|
33
|
+
// Common props for all ScrollView, FlatList and SectionList.
|
|
34
|
+
const { onScroll, scrollEventThrottle } = ScrollComponent.props;
|
|
35
|
+
|
|
36
|
+
return (
|
|
37
|
+
<>
|
|
38
|
+
{React.cloneElement(ScrollComponent, {
|
|
39
|
+
...ScrollComponent.props,
|
|
40
|
+
scrollEventThrottle: scrollEventThrottle || 100,
|
|
41
|
+
onScroll: Animated.event(
|
|
42
|
+
[
|
|
43
|
+
{
|
|
44
|
+
nativeEvent: {
|
|
45
|
+
contentOffset: { y: contentOffsetY },
|
|
46
|
+
contentSize: { height: contentHeight },
|
|
47
|
+
layoutMeasurement: { height: layoutHeight },
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
],
|
|
51
|
+
{
|
|
52
|
+
useNativeDriver: false,
|
|
53
|
+
listener: onScroll,
|
|
54
|
+
}
|
|
55
|
+
),
|
|
56
|
+
})}
|
|
57
|
+
|
|
58
|
+
{!!fabProps && (
|
|
59
|
+
<AnimatedFAB
|
|
60
|
+
fabProps={fabProps}
|
|
61
|
+
contentOffsetY={contentOffsetY}
|
|
62
|
+
contentHeight={contentHeight}
|
|
63
|
+
layoutHeight={layoutHeight}
|
|
64
|
+
/>
|
|
65
|
+
)}
|
|
66
|
+
</>
|
|
67
|
+
);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export default AnimatedScroller;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { FlatList, FlatListProps } from 'react-native';
|
|
3
|
+
import { FABProps } from '../FAB/FAB';
|
|
4
|
+
import AnimatedScroller from './AnimatedScrollable';
|
|
5
|
+
import { ActionGroupProps } from '../FAB/ActionGroup';
|
|
6
|
+
|
|
7
|
+
export interface FlatListWithFABProps<T> extends FlatListProps<T> {
|
|
8
|
+
/**
|
|
9
|
+
* FAB or FAB.ActionGroup props props.
|
|
10
|
+
*/
|
|
11
|
+
fabProps: FABProps | ActionGroupProps;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function FlatListWithFAB<T>({ fabProps, ...props }: FlatListWithFABProps<T>) {
|
|
15
|
+
return (
|
|
16
|
+
<AnimatedScroller
|
|
17
|
+
ScrollComponent={<FlatList {...props} />}
|
|
18
|
+
fabProps={fabProps}
|
|
19
|
+
/>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export default FlatListWithFAB;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ScrollView, ScrollViewProps } from 'react-native';
|
|
3
|
+
import AnimatedScroller from './AnimatedScrollable';
|
|
4
|
+
import { ActionGroupProps } from '../FAB/ActionGroup';
|
|
5
|
+
import { FABProps } from '../FAB/FAB';
|
|
6
|
+
|
|
7
|
+
export interface ScrollViewWithFABProps extends ScrollViewProps {
|
|
8
|
+
/**
|
|
9
|
+
* FAB or FAB.ActionGroup props props.
|
|
10
|
+
*/
|
|
11
|
+
fabProps: FABProps | ActionGroupProps;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const ScrollViewWithFAB = ({ fabProps, ...props }: ScrollViewWithFABProps) => (
|
|
15
|
+
<AnimatedScroller
|
|
16
|
+
ScrollComponent={<ScrollView {...props} />}
|
|
17
|
+
fabProps={fabProps}
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default ScrollViewWithFAB;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SectionList, SectionListProps } from 'react-native';
|
|
3
|
+
import AnimatedScroller from './AnimatedScrollable';
|
|
4
|
+
import { ActionGroupProps } from '../FAB/ActionGroup';
|
|
5
|
+
import { FABProps } from '../FAB/FAB';
|
|
6
|
+
|
|
7
|
+
export interface SectionListWithFABProps<T> extends SectionListProps<T> {
|
|
8
|
+
/**
|
|
9
|
+
* FAB or FAB.ActionGroup props props.
|
|
10
|
+
*/
|
|
11
|
+
fabProps: FABProps | ActionGroupProps;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function SectionListWithFAB<T>({
|
|
15
|
+
fabProps,
|
|
16
|
+
...props
|
|
17
|
+
}: SectionListWithFABProps<T>) {
|
|
18
|
+
return (
|
|
19
|
+
<AnimatedScroller
|
|
20
|
+
ScrollComponent={<SectionList {...props} />}
|
|
21
|
+
fabProps={fabProps}
|
|
22
|
+
/>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export default SectionListWithFAB;
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { useTheme } from '@emotion/react';
|
|
3
|
+
import { fireEvent } from '@testing-library/react-native';
|
|
4
|
+
import renderWithTheme from '../../../testHelpers/renderWithTheme';
|
|
5
|
+
import { FlatListWithFAB, ScrollViewWithFAB, SectionListWithFAB } from '..';
|
|
6
|
+
import Box from '../../Box';
|
|
7
|
+
import { ActionGroupProps } from '../../FAB/ActionGroup';
|
|
8
|
+
import { FABProps } from '../../FAB/FAB';
|
|
9
|
+
import Typography from '../../Typography';
|
|
10
|
+
import { ScrollViewWithFABProps } from '../ScrollViewWithFAB';
|
|
11
|
+
import { FlatListWithFABProps } from '../FlatListWithFAB';
|
|
12
|
+
import SectionHeading from '../../SectionHeading';
|
|
13
|
+
|
|
14
|
+
const ExampleScrollViewWithFAB = ({ fabProps }: ScrollViewWithFABProps) => (
|
|
15
|
+
<ScrollViewWithFAB fabProps={fabProps} testID="scrollable-with-fab">
|
|
16
|
+
<Box style={{ height: 2000 }} justifyContent="space-between">
|
|
17
|
+
<Typography.Body>Content 1</Typography.Body>
|
|
18
|
+
<Typography.Body>Content 2</Typography.Body>
|
|
19
|
+
<Typography.Body>Content 3</Typography.Body>
|
|
20
|
+
</Box>
|
|
21
|
+
</ScrollViewWithFAB>
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
function ExampleFlatListWithFAB<T>({ fabProps }: FlatListWithFABProps<T>) {
|
|
25
|
+
return (
|
|
26
|
+
<FlatListWithFAB
|
|
27
|
+
testID="scrollable-with-fab"
|
|
28
|
+
fabProps={fabProps}
|
|
29
|
+
data={Array.from({ length: 30 }, (_, i) => ({
|
|
30
|
+
id: i,
|
|
31
|
+
title: `Content ${i}`,
|
|
32
|
+
}))}
|
|
33
|
+
renderItem={({ item }) => (
|
|
34
|
+
<Box marginBottom="xxxxlarge">
|
|
35
|
+
<Typography.Title level="h5">{item.title}</Typography.Title>
|
|
36
|
+
<Typography.Body>Item {item.id}</Typography.Body>
|
|
37
|
+
</Box>
|
|
38
|
+
)}
|
|
39
|
+
/>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
function ExampleSectionListWithFAB<T>({ fabProps }: FlatListWithFABProps<T>) {
|
|
44
|
+
const theme = useTheme();
|
|
45
|
+
|
|
46
|
+
return (
|
|
47
|
+
<SectionListWithFAB
|
|
48
|
+
testID="scrollable-with-fab"
|
|
49
|
+
fabProps={fabProps}
|
|
50
|
+
sections={[
|
|
51
|
+
{
|
|
52
|
+
title: 'Title 1',
|
|
53
|
+
data: ['Content 1', 'Content 2', 'Content 3', 'Content 4'],
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
title: 'Title 2',
|
|
57
|
+
data: ['Content 5', 'Content 6', 'Content 7'],
|
|
58
|
+
},
|
|
59
|
+
]}
|
|
60
|
+
renderSectionHeader={({ section: { title } }) => (
|
|
61
|
+
<SectionHeading text={title} />
|
|
62
|
+
)}
|
|
63
|
+
renderItem={({ item }) => (
|
|
64
|
+
<Typography.Title style={{ marginBottom: theme.space.xxxxlarge }}>
|
|
65
|
+
{item}
|
|
66
|
+
</Typography.Title>
|
|
67
|
+
)}
|
|
68
|
+
/>
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
const defaultFabProps: FABProps = {
|
|
73
|
+
icon: 'speaker',
|
|
74
|
+
title: 'Shout out',
|
|
75
|
+
animated: true,
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
const defaultActionGroupProps: ActionGroupProps = {
|
|
79
|
+
fabTitle: 'Shout out',
|
|
80
|
+
items: [
|
|
81
|
+
{ icon: 'speaker', title: 'Announcements' },
|
|
82
|
+
{ icon: 'target', title: 'Goal' },
|
|
83
|
+
],
|
|
84
|
+
active: false,
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
describe('Scrollables With FAB', () => {
|
|
88
|
+
it.each`
|
|
89
|
+
fabComponent | ScrollComponent
|
|
90
|
+
${'FAB'} | ${ExampleScrollViewWithFAB}
|
|
91
|
+
${'ActionGroup'} | ${ExampleScrollViewWithFAB}
|
|
92
|
+
${'FAB'} | ${ExampleFlatListWithFAB}
|
|
93
|
+
${'ActionGroup'} | ${ExampleFlatListWithFAB}
|
|
94
|
+
${'FAB'} | ${ExampleSectionListWithFAB}
|
|
95
|
+
${'ActionGroup'} | ${ExampleSectionListWithFAB}
|
|
96
|
+
`(
|
|
97
|
+
'$ScrollComponent renders $fabComponent correctly',
|
|
98
|
+
({ fabComponent, ScrollComponent }) => {
|
|
99
|
+
const fabProps =
|
|
100
|
+
fabComponent === 'FAB' ? defaultFabProps : defaultActionGroupProps;
|
|
101
|
+
|
|
102
|
+
const { getByText, toJSON } = renderWithTheme(
|
|
103
|
+
<ScrollComponent fabProps={fabProps} />
|
|
104
|
+
);
|
|
105
|
+
|
|
106
|
+
expect(toJSON()).toMatchSnapshot();
|
|
107
|
+
expect(getByText('Content 1')).toBeDefined();
|
|
108
|
+
expect(getByText('Content 2')).toBeDefined();
|
|
109
|
+
expect(getByText('Content 3')).toBeDefined();
|
|
110
|
+
expect(getByText('Shout out')).toBeDefined();
|
|
111
|
+
}
|
|
112
|
+
);
|
|
113
|
+
|
|
114
|
+
it.each`
|
|
115
|
+
fabComponent | ScrollComponent
|
|
116
|
+
${'FAB'} | ${ExampleScrollViewWithFAB}
|
|
117
|
+
${'ActionGroup'} | ${ExampleScrollViewWithFAB}
|
|
118
|
+
${'FAB'} | ${ExampleFlatListWithFAB}
|
|
119
|
+
${'ActionGroup'} | ${ExampleFlatListWithFAB}
|
|
120
|
+
${'FAB'} | ${ExampleSectionListWithFAB}
|
|
121
|
+
${'ActionGroup'} | ${ExampleSectionListWithFAB}
|
|
122
|
+
`(
|
|
123
|
+
'$ScrollComponent animates $fabComponent correctly',
|
|
124
|
+
({ fabComponent, ScrollComponent }) => {
|
|
125
|
+
const fabProps =
|
|
126
|
+
fabComponent === 'FAB' ? defaultFabProps : defaultActionGroupProps;
|
|
127
|
+
|
|
128
|
+
const scrollConfig = {
|
|
129
|
+
contentSize: { height: 2000 },
|
|
130
|
+
layoutMeasurement: { height: 700, width: 400 },
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
const { getByText, queryByText, getByTestId, queryByTestId } =
|
|
134
|
+
renderWithTheme(<ScrollComponent fabProps={fabProps} />);
|
|
135
|
+
|
|
136
|
+
fireEvent.scroll(getByTestId('scrollable-with-fab'), {
|
|
137
|
+
nativeEvent: {
|
|
138
|
+
...scrollConfig,
|
|
139
|
+
contentOffset: { y: 50 },
|
|
140
|
+
},
|
|
141
|
+
});
|
|
142
|
+
|
|
143
|
+
// Scrolling down
|
|
144
|
+
expect(getByText('Shout out')).toBeDefined();
|
|
145
|
+
|
|
146
|
+
fireEvent.scroll(getByTestId('scrollable-with-fab'), {
|
|
147
|
+
nativeEvent: {
|
|
148
|
+
...scrollConfig,
|
|
149
|
+
contentOffset: { y: 150 },
|
|
150
|
+
},
|
|
151
|
+
});
|
|
152
|
+
|
|
153
|
+
// Collapsed
|
|
154
|
+
expect(queryByText('Shout out')).toBeNull();
|
|
155
|
+
expect(getByTestId('animated-fab-icon')).toBeDefined();
|
|
156
|
+
|
|
157
|
+
fireEvent.scroll(getByTestId('scrollable-with-fab'), {
|
|
158
|
+
nativeEvent: {
|
|
159
|
+
...scrollConfig,
|
|
160
|
+
contentOffset: { y: 500 },
|
|
161
|
+
},
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
// Hidden
|
|
165
|
+
expect(queryByText('Shout out')).toBeNull();
|
|
166
|
+
expect(queryByTestId('styled-fab-icon')).toBeNull();
|
|
167
|
+
|
|
168
|
+
// Scrolling up
|
|
169
|
+
fireEvent.scroll(getByTestId('scrollable-with-fab'), {
|
|
170
|
+
nativeEvent: {
|
|
171
|
+
...scrollConfig,
|
|
172
|
+
contentOffset: { y: -150 },
|
|
173
|
+
},
|
|
174
|
+
});
|
|
175
|
+
|
|
176
|
+
// Collapsed
|
|
177
|
+
expect(queryByText('Shout out')).toBeNull();
|
|
178
|
+
expect(getByTestId('animated-fab-icon')).toBeDefined();
|
|
179
|
+
|
|
180
|
+
// Scrolling up to top
|
|
181
|
+
fireEvent.scroll(getByTestId('scrollable-with-fab'), {
|
|
182
|
+
nativeEvent: {
|
|
183
|
+
...scrollConfig,
|
|
184
|
+
contentOffset: { y: 0 },
|
|
185
|
+
},
|
|
186
|
+
});
|
|
187
|
+
|
|
188
|
+
// Expanded
|
|
189
|
+
expect(getByText('Shout out')).toBeDefined();
|
|
190
|
+
expect(getByTestId('styled-fab-icon')).toBeDefined();
|
|
191
|
+
}
|
|
192
|
+
);
|
|
193
|
+
});
|