@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
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
# @hero-design/rn
|
|
2
|
+
|
|
3
|
+
## 8.63.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#3044](https://github.com/Thinkei/hero-design/pull/3044) [`675805609`](https://github.com/Thinkei/hero-design/commit/67580560951948e18472939f68e38eba76fd21e4) Thanks [@TanNguyenEH](https://github.com/TanNguyenEH)! - add new icons for mobile: clock-in-outlined, clock-out-outlined, start-break-outlined, end-break-outlined
|
|
8
|
+
|
|
9
|
+
- [#3045](https://github.com/Thinkei/hero-design/pull/3045) [`038e3f44a`](https://github.com/Thinkei/hero-design/commit/038e3f44abfd182db5b887c279b7d0a5d4638cd0) Thanks [@ttkien](https://github.com/ttkien)! - [Alert] add actionLabel
|
|
10
|
+
|
|
11
|
+
## 8.62.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#3030](https://github.com/Thinkei/hero-design/pull/3030) [`19693f226`](https://github.com/Thinkei/hero-design/commit/19693f22649c2130d15e1cb8b9c4bd8b47580d80) Thanks [@ttkien](https://github.com/ttkien)! - [Radio] Add extended variant
|
|
16
|
+
|
|
17
|
+
## 8.61.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [#2995](https://github.com/Thinkei/hero-design/pull/2995) [`d8519217a`](https://github.com/Thinkei/hero-design/commit/d8519217aedc7900d82446586313a3b6e48c0f21) Thanks [@ttkien](https://github.com/ttkien)! - [Success] Support a description using ReactElement.
|
|
22
|
+
|
|
23
|
+
- [#2996](https://github.com/Thinkei/hero-design/pull/2996) [`8bc9a4be6`](https://github.com/Thinkei/hero-design/commit/8bc9a4be6faedf8c9c0894303b11103bd419e73d) Thanks [@lygioianeh](https://github.com/lygioianeh)! - [Icon] Add wellness-outlined icon
|
|
24
|
+
|
|
25
|
+
## 8.61.2
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- [#2896](https://github.com/Thinkei/hero-design/pull/2896) [`c4fcac207`](https://github.com/Thinkei/hero-design/commit/c4fcac207f9e7172b2c44426e7cd06a21966fa26) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - Upgrade react-native version for HD mobile
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [[`c4fcac207`](https://github.com/Thinkei/hero-design/commit/c4fcac207f9e7172b2c44426e7cd06a21966fa26)]:
|
|
32
|
+
- @hero-design/react-native-month-year-picker@8.42.8
|
|
33
|
+
|
|
34
|
+
## 8.61.1
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- [#2853](https://github.com/Thinkei/hero-design/pull/2853) [`2d654c6de`](https://github.com/Thinkei/hero-design/commit/2d654c6dece0447ad405727cdea18da90c09865a) Thanks [@nguyen315](https://github.com/nguyen315)! - [Icon] Add share-outlined-2 icon
|
|
39
|
+
|
|
40
|
+
- [#2854](https://github.com/Thinkei/hero-design/pull/2854) [`ce593d70f`](https://github.com/Thinkei/hero-design/commit/ce593d70f51c4968b829145daec222d8c465eba6) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Button] Allow passing custom icon
|
|
41
|
+
|
|
42
|
+
## 8.61.0
|
|
43
|
+
|
|
44
|
+
### Minor Changes
|
|
45
|
+
|
|
46
|
+
- [#2786](https://github.com/Thinkei/hero-design/pull/2786) [`f5f4d1d55`](https://github.com/Thinkei/hero-design/commit/f5f4d1d55601f9ae3e37438f0928e9a6173ae260) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Radio.Group] Update indicator color and add inactiveIntent prop
|
|
47
|
+
|
|
48
|
+
## 8.60.1-alpha.0
|
|
49
|
+
|
|
50
|
+
### Patch Changes
|
|
51
|
+
|
|
52
|
+
- [#2807](https://github.com/Thinkei/hero-design/pull/2807) [`391137af3`](https://github.com/Thinkei/hero-design/commit/391137af35cb9ae71da51d6863624da0251017aa) Thanks [@ttkien](https://github.com/ttkien)! - initial HDv9
|
|
53
|
+
|
|
54
|
+
- Updated dependencies [[`5c76fdb0b`](https://github.com/Thinkei/hero-design/commit/5c76fdb0b3565456f30864c78e42cc9a589747c9), [`391137af3`](https://github.com/Thinkei/hero-design/commit/391137af35cb9ae71da51d6863624da0251017aa)]:
|
|
55
|
+
- @hero-design/colors@9.0.0-alpha.0
|
|
56
|
+
|
|
57
|
+
## 8.60.0
|
|
58
|
+
|
|
59
|
+
### Minor Changes
|
|
60
|
+
|
|
61
|
+
- [#2747](https://github.com/Thinkei/hero-design/pull/2747) [`28106e711`](https://github.com/Thinkei/hero-design/commit/28106e711ef6a127e4bfa0890535489649ff516c) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [FAB][fab.actiongroup][Scrollables with FAB] Update animations using Animated
|
|
62
|
+
|
|
63
|
+
## 8.59.0
|
|
64
|
+
|
|
65
|
+
### Minor Changes
|
|
66
|
+
|
|
67
|
+
- [#2765](https://github.com/Thinkei/hero-design/pull/2765) [`d2ebbb352`](https://github.com/Thinkei/hero-design/commit/d2ebbb35203162593468cd243602550ab6510dd9) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Carousel] Make item heading optional.
|
|
68
|
+
|
|
69
|
+
## 8.58.0
|
|
70
|
+
|
|
71
|
+
### Minor Changes
|
|
72
|
+
|
|
73
|
+
- [#2756](https://github.com/Thinkei/hero-design/pull/2756) [`de3e8fa92`](https://github.com/Thinkei/hero-design/commit/de3e8fa92aa4a3598fc24f6fbdf40c66066bbb90) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Carousel] Update styling and make image optional
|
|
74
|
+
|
|
75
|
+
### Patch Changes
|
|
76
|
+
|
|
77
|
+
- [#2758](https://github.com/Thinkei/hero-design/pull/2758) [`61012afc4`](https://github.com/Thinkei/hero-design/commit/61012afc45105803d3bec4fc8ca8cf7cbe7f9363) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Tabs] Fix tabs bottom border on iOS not showing in full width
|
|
78
|
+
|
|
79
|
+
## 8.57.1
|
|
80
|
+
|
|
81
|
+
### Patch Changes
|
|
82
|
+
|
|
83
|
+
- [#2717](https://github.com/Thinkei/hero-design/pull/2717) [`7d56b99af`](https://github.com/Thinkei/hero-design/commit/7d56b99afa8cf585f78c2aba57e97817f9365441) Thanks [@ttkien](https://github.com/ttkien)! - refactor card carousel to reduce cognitive comlexity to 15
|
|
84
|
+
|
|
85
|
+
- [#2738](https://github.com/Thinkei/hero-design/pull/2738) [`819421b35`](https://github.com/Thinkei/hero-design/commit/819421b357b3e87f36326759c636b9958622215c) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - Upgrade Expo SDK to 49
|
|
86
|
+
|
|
87
|
+
- [#2719](https://github.com/Thinkei/hero-design/pull/2719) [`6985126e1`](https://github.com/Thinkei/hero-design/commit/6985126e14c4a1e43d9daf029afcbf21937d040e) Thanks [@ttkien](https://github.com/ttkien)! - [TextInput] refactor code
|
|
88
|
+
|
|
89
|
+
- [#2716](https://github.com/Thinkei/hero-design/pull/2716) [`481838499`](https://github.com/Thinkei/hero-design/commit/4818384992a154a309b6c66099069822082f2f77) Thanks [@phucdph](https://github.com/phucdph)! - Fix typing issue
|
|
90
|
+
|
|
91
|
+
- Updated dependencies [[`819421b35`](https://github.com/Thinkei/hero-design/commit/819421b357b3e87f36326759c636b9958622215c)]:
|
|
92
|
+
- @hero-design/react-native-month-year-picker@8.42.7
|
|
93
|
+
|
|
94
|
+
## 8.57.0
|
|
95
|
+
|
|
96
|
+
### Minor Changes
|
|
97
|
+
|
|
98
|
+
- [#2708](https://github.com/Thinkei/hero-design/pull/2708) [`9e6e0f4ca`](https://github.com/Thinkei/hero-design/commit/9e6e0f4ca9495ba9834926da6c5b05a8d0b093a0) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Tabs.Scroll] Add variant prop and underlined variant
|
|
99
|
+
|
|
100
|
+
- [#2715](https://github.com/Thinkei/hero-design/pull/2715) [`28295d111`](https://github.com/Thinkei/hero-design/commit/28295d1110f158644f3711c154102d0a3f8e8e7d) Thanks [@dangkhoa2708](https://github.com/dangkhoa2708)! - Add new icon: map-outlined
|
|
101
|
+
|
|
102
|
+
- [#2706](https://github.com/Thinkei/hero-design/pull/2706) [`5ea1013e7`](https://github.com/Thinkei/hero-design/commit/5ea1013e782bae67336ec4c112ce2f9298e3f0d3) Thanks [@ducminhleeh](https://github.com/ducminhleeh)! - Add new icons: explore_nearby, local_mall_outlined and shopping_basket_outlined
|
|
103
|
+
|
|
104
|
+
### Patch Changes
|
|
105
|
+
|
|
106
|
+
- [#2714](https://github.com/Thinkei/hero-design/pull/2714) [`39a2871cd`](https://github.com/Thinkei/hero-design/commit/39a2871cdd0873bfe585a974cffb23b035e271df) Thanks [@ttkien](https://github.com/ttkien)! - [Typography.Body] Fix font of playful variant
|
|
107
|
+
|
|
108
|
+
- [#2709](https://github.com/Thinkei/hero-design/pull/2709) [`7aa65f3b2`](https://github.com/Thinkei/hero-design/commit/7aa65f3b20babe50cd39a81160d3a495d5828347) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - Resolve @hero-design/rn sonarqube issues
|
|
109
|
+
|
|
110
|
+
## 8.56.1
|
|
111
|
+
|
|
112
|
+
### Patch Changes
|
|
113
|
+
|
|
114
|
+
- [#2673](https://github.com/Thinkei/hero-design/pull/2673) [`4ced86d15`](https://github.com/Thinkei/hero-design/commit/4ced86d15b3c4baf62fb44154eebc1cdd92130e3) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [ScrollViewWithFAB][flatlistwithfab][SectionListWithFAB] Add unit tests and visual tests
|
|
115
|
+
|
|
116
|
+
## 8.56.0
|
|
117
|
+
|
|
118
|
+
### Minor Changes
|
|
119
|
+
|
|
120
|
+
- [#2674](https://github.com/Thinkei/hero-design/pull/2674) [`25b5201d1`](https://github.com/Thinkei/hero-design/commit/25b5201d19da905123c2f9e70b45865da8404c80) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [ScrollView] Add component and docs
|
|
121
|
+
|
|
122
|
+
## 8.55.1
|
|
123
|
+
|
|
124
|
+
### Patch Changes
|
|
125
|
+
|
|
126
|
+
- [#2666](https://github.com/Thinkei/hero-design/pull/2666) [`61807698e`](https://github.com/Thinkei/hero-design/commit/61807698e94cc831a9083f3d531131c86f4af220) Thanks [@ttkien](https://github.com/ttkien)! - [Carousel] replace useWindowsDimension with onLayout and convert Carousel example to react-native-web
|
|
127
|
+
|
|
128
|
+
## 8.55.0
|
|
129
|
+
|
|
130
|
+
### Minor Changes
|
|
131
|
+
|
|
132
|
+
- [#2630](https://github.com/Thinkei/hero-design/pull/2630) [`294faa148`](https://github.com/Thinkei/hero-design/commit/294faa148142ab60861e04d44b43e2a55236c879) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Tabs] Make indicator overlap with bottom border
|
|
133
|
+
|
|
134
|
+
## 8.54.0
|
|
135
|
+
|
|
136
|
+
### Minor Changes
|
|
137
|
+
|
|
138
|
+
- [#2571](https://github.com/Thinkei/hero-design/pull/2571) [`4d36728e3`](https://github.com/Thinkei/hero-design/commit/4d36728e31b566f17a21dc95933f07b6f2eca1a5) Thanks [@ducminhleeh](https://github.com/ducminhleeh)! - Add new icons: hero-points, bill-management-outlined
|
|
139
|
+
|
|
140
|
+
### Patch Changes
|
|
141
|
+
|
|
142
|
+
- [#2580](https://github.com/Thinkei/hero-design/pull/2580) [`6ace8b688`](https://github.com/Thinkei/hero-design/commit/6ace8b68820cb1ddefe08dceca140d993f91793b) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [ContentNavigator][drawer] Migrate expo doc examples
|
|
143
|
+
|
|
144
|
+
## 8.53.0
|
|
145
|
+
|
|
146
|
+
### Minor Changes
|
|
147
|
+
|
|
148
|
+
- [#2547](https://github.com/Thinkei/hero-design/pull/2547) [`630f1b2a3`](https://github.com/Thinkei/hero-design/commit/630f1b2a395dee6e88a54e93387630d35cf91f03) Thanks [@ducminhleeh](https://github.com/ducminhleeh)! - Add new icon: unavailability-outlined
|
|
149
|
+
|
|
150
|
+
- [#2539](https://github.com/Thinkei/hero-design/pull/2539) [`7ddb6f245`](https://github.com/Thinkei/hero-design/commit/7ddb6f245d5bf47004b9a6a6cf07e80897b61463) Thanks [@TanNguyenEH](https://github.com/TanNguyenEH)! - add new icons for mobile: instapay-daily, instapay-now, salary-sacrifice, stash-outlined, cashback-outlined, safety-outlined
|
|
151
|
+
|
|
152
|
+
## 8.52.1
|
|
153
|
+
|
|
154
|
+
### Patch Changes
|
|
155
|
+
|
|
156
|
+
- [#2524](https://github.com/Thinkei/hero-design/pull/2524) [`2fbcd3712`](https://github.com/Thinkei/hero-design/commit/2fbcd371210cce4d257abc29ba37094bb6b1aaae) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Carousel.Card] Remove shadow
|
|
157
|
+
|
|
158
|
+
## 8.52.0
|
|
159
|
+
|
|
160
|
+
### Minor Changes
|
|
161
|
+
|
|
162
|
+
- [#2490](https://github.com/Thinkei/hero-design/pull/2490) [`18b7be6d2`](https://github.com/Thinkei/hero-design/commit/18b7be6d29aafc6847d66c6e800b79aba495e10c) Thanks [@ducminhleeh](https://github.com/ducminhleeh)! - Add new icons: application-outlined, job-search-outlined, resume-outlined and smart-match-outlined
|
|
163
|
+
|
|
164
|
+
### Patch Changes
|
|
165
|
+
|
|
166
|
+
- [#2483](https://github.com/Thinkei/hero-design/pull/2483) [`aeb5ccd7a`](https://github.com/Thinkei/hero-design/commit/aeb5ccd7a0b7e7a608ffae1985aab9725f6339d2) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Carousel] Hide page controls when there is only 1 page
|
|
167
|
+
|
|
168
|
+
- [#2471](https://github.com/Thinkei/hero-design/pull/2471) [`f2724ba80`](https://github.com/Thinkei/hero-design/commit/f2724ba80f5ca9cd591756f69039bfdd9932cb28) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Swipeable] Update container radius
|
|
169
|
+
|
|
170
|
+
- [#2472](https://github.com/Thinkei/hero-design/pull/2472) [`b24dbec12`](https://github.com/Thinkei/hero-design/commit/b24dbec1202d81a4e8422f1ef645c3a5cf21a1da) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [TextInput] Update max length text alignment
|
|
171
|
+
|
|
172
|
+
## 8.51.0
|
|
173
|
+
|
|
174
|
+
### Minor Changes
|
|
175
|
+
|
|
176
|
+
- [#2482](https://github.com/Thinkei/hero-design/pull/2482) [`5491d0476`](https://github.com/Thinkei/hero-design/commit/5491d0476f573d481c731350e078e43b68e22278) Thanks [@dangkhoa2708](https://github.com/dangkhoa2708)! - Add new icon `location-on`
|
|
177
|
+
|
|
178
|
+
## 8.50.0
|
|
179
|
+
|
|
180
|
+
### Minor Changes
|
|
181
|
+
|
|
182
|
+
- [#2478](https://github.com/Thinkei/hero-design/pull/2478) [`2fa8d6a00`](https://github.com/Thinkei/hero-design/commit/2fa8d6a00e22aba6809856f8943d310a5477ebfe) Thanks [@dangkhoa2708](https://github.com/dangkhoa2708)! - Add new icon `near-me`
|
|
183
|
+
|
|
184
|
+
## 8.49.0
|
|
185
|
+
|
|
186
|
+
### Minor Changes
|
|
187
|
+
|
|
188
|
+
- [#2462](https://github.com/Thinkei/hero-design/pull/2462) [`8d1d76caa`](https://github.com/Thinkei/hero-design/commit/8d1d76caa2d0619b77375291c6f82eae0dd79872) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Typography.Caption] Update letter spacing
|
|
189
|
+
|
|
190
|
+
### Patch Changes
|
|
191
|
+
|
|
192
|
+
- [#2461](https://github.com/Thinkei/hero-design/pull/2461) [`f6d24b44c`](https://github.com/Thinkei/hero-design/commit/f6d24b44ca58f4bfb38bd6012143b4dc0ff7d485) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Tabs.Scroll] Prevent onTabPress from running on the first render
|
|
193
|
+
|
|
194
|
+
## 8.48.0
|
|
195
|
+
|
|
196
|
+
### Minor Changes
|
|
197
|
+
|
|
198
|
+
- [#2440](https://github.com/Thinkei/hero-design/pull/2440) [`b7e29d466`](https://github.com/Thinkei/hero-design/commit/b7e29d466db1c9d850982295c351d5f22d43a979) Thanks [@ducminhleeh](https://github.com/ducminhleeh)! - Add new icons `leave-approval-outlined` and `expense-approval-outlined`
|
|
199
|
+
|
|
200
|
+
## 8.47.0
|
|
201
|
+
|
|
202
|
+
### Minor Changes
|
|
203
|
+
|
|
204
|
+
- [`7558c0b83`](https://github.com/Thinkei/hero-design/commit/7558c0b83f82f068a94cf4afcc12f637dd347d6e) Thanks [@ttkien](https://github.com/ttkien)! - [Icon] add timehsheets-icon
|
|
205
|
+
|
|
206
|
+
## 8.46.2
|
|
207
|
+
|
|
208
|
+
### Patch Changes
|
|
209
|
+
|
|
210
|
+
- [#2432](https://github.com/Thinkei/hero-design/pull/2432) [`82d119eb0`](https://github.com/Thinkei/hero-design/commit/82d119eb076b934474494eeaa49ae51abfc245d5) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [DatePicker] Update useCalculateDate comparison logic
|
|
211
|
+
|
|
212
|
+
## 8.46.1
|
|
213
|
+
|
|
214
|
+
### Patch Changes
|
|
215
|
+
|
|
216
|
+
- [#2426](https://github.com/Thinkei/hero-design/pull/2426) [`696e01db8`](https://github.com/Thinkei/hero-design/commit/696e01db8033379871d718dc20f5fdfb448a02e1) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [PageControl] Disable useNativeDriver to prevent crash
|
|
217
|
+
|
|
218
|
+
## 8.46.0
|
|
219
|
+
|
|
220
|
+
### Minor Changes
|
|
221
|
+
|
|
222
|
+
- [#2423](https://github.com/Thinkei/hero-design/pull/2423) [`176e43f0d`](https://github.com/Thinkei/hero-design/commit/176e43f0d2d50a67b053ddba8f8e5fb8d752599a) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Swipeable] Add full-width variant
|
|
223
|
+
|
|
224
|
+
### Patch Changes
|
|
225
|
+
|
|
226
|
+
- [#2406](https://github.com/Thinkei/hero-design/pull/2406) [`f6a11c2a9`](https://github.com/Thinkei/hero-design/commit/f6a11c2a97133154a527f607f3af59a5a7e30b3c) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [PageControl] Fix animation not working
|
|
227
|
+
|
|
228
|
+
- [#2407](https://github.com/Thinkei/hero-design/pull/2407) [`9b943f82d`](https://github.com/Thinkei/hero-design/commit/9b943f82dfa7a3213cb51ef32fc30c5ca77b3c5c) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [DatePicker] Update minDate and maxDate logic
|
|
229
|
+
|
|
230
|
+
- Updated dependencies [[`f006136ba`](https://github.com/Thinkei/hero-design/commit/f006136ba8db6d5adb9698c493e638338321c63c)]:
|
|
231
|
+
- @hero-design/colors@8.42.5
|
|
232
|
+
|
|
233
|
+
## 8.45.1
|
|
234
|
+
|
|
235
|
+
### Patch Changes
|
|
236
|
+
|
|
237
|
+
- [#2399](https://github.com/Thinkei/hero-design/pull/2399) [`9c30d8876`](https://github.com/Thinkei/hero-design/commit/9c30d88766b22e19eafc02322cc6b4af284a14c0) Thanks [@luanlai2201](https://github.com/luanlai2201)! - [TextInput] [RichTextEditor] Fix label position if width is small
|
|
238
|
+
|
|
239
|
+
- [#2390](https://github.com/Thinkei/hero-design/pull/2390) [`8c7780262`](https://github.com/Thinkei/hero-design/commit/8c77802626e1069a50b8cf54c0ff36722f5a248f) Thanks [@ttkien](https://github.com/ttkien)! - Upgrade dependencies to the versions which suggested by expo@48
|
|
240
|
+
|
|
241
|
+
- Updated dependencies [[`8c7780262`](https://github.com/Thinkei/hero-design/commit/8c77802626e1069a50b8cf54c0ff36722f5a248f)]:
|
|
242
|
+
- @hero-design/react-native-month-year-picker@8.42.6
|
|
243
|
+
|
|
244
|
+
## 8.45.0
|
|
245
|
+
|
|
246
|
+
### Minor Changes
|
|
247
|
+
|
|
248
|
+
- [#2365](https://github.com/Thinkei/hero-design/pull/2365) [`cc2811a4a`](https://github.com/Thinkei/hero-design/commit/cc2811a4adbb986c417368bb3a3e2d0071d5dd69) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Avatar] Support vertical variant, total and renderSurplus props
|
|
249
|
+
|
|
250
|
+
### Patch Changes
|
|
251
|
+
|
|
252
|
+
- [#2360](https://github.com/Thinkei/hero-design/pull/2360) [`dbb0630fa`](https://github.com/Thinkei/hero-design/commit/dbb0630faa27e1c4d6f099f1e2b48efbe5e1ae1c) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Carousel] Use ref for onViewableItemChanged and add a default background color
|
|
253
|
+
|
|
254
|
+
## 8.44.1
|
|
255
|
+
|
|
256
|
+
### Patch Changes
|
|
257
|
+
|
|
258
|
+
- [#2341](https://github.com/Thinkei/hero-design/pull/2341) [`68a91bfc1`](https://github.com/Thinkei/hero-design/commit/68a91bfc1c2a0cd6b46d6c35e59aeaa2ae86160d) Thanks [@luanlai2201](https://github.com/luanlai2201)! - [TextInput][richtexteditor] Add animation for label
|
|
259
|
+
|
|
260
|
+
## 8.44.0
|
|
261
|
+
|
|
262
|
+
### Minor Changes
|
|
263
|
+
|
|
264
|
+
- [#2330](https://github.com/Thinkei/hero-design/pull/2330) [`4f6a78c46`](https://github.com/Thinkei/hero-design/commit/4f6a78c46c3be8c3c9452194ec1f23754330f88c) Thanks [@peterkhuu](https://github.com/peterkhuu)! - [Icon] Add expand-content and swipe-right icons
|
|
265
|
+
|
|
266
|
+
### Patch Changes
|
|
267
|
+
|
|
268
|
+
- [#2327](https://github.com/Thinkei/hero-design/pull/2327) [`da8522e43`](https://github.com/Thinkei/hero-design/commit/da8522e435dbfe0d2ebe2cf3025511e7b8d23f11) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - Update renderWithTheme to use HeroDesignProvider
|
|
269
|
+
|
|
270
|
+
## 8.43.1
|
|
271
|
+
|
|
272
|
+
### Patch Changes
|
|
273
|
+
|
|
274
|
+
- [#2302](https://github.com/Thinkei/hero-design/pull/2302) [`2293190d1`](https://github.com/Thinkei/hero-design/commit/2293190d105fb97dc699e39990c3148f3509fafb) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - Upgrade expo sdk and react-native version
|
|
275
|
+
|
|
276
|
+
- Updated dependencies [[`2293190d1`](https://github.com/Thinkei/hero-design/commit/2293190d105fb97dc699e39990c3148f3509fafb)]:
|
|
277
|
+
- @hero-design/react-native-month-year-picker@8.42.5
|
|
278
|
+
|
|
279
|
+
## 8.43.0
|
|
280
|
+
|
|
281
|
+
### Minor Changes
|
|
282
|
+
|
|
283
|
+
- [#2306](https://github.com/Thinkei/hero-design/pull/2306) [`1ecb9eb20`](https://github.com/Thinkei/hero-design/commit/1ecb9eb206b00b228be35e4fa5bd8047e902c473) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Chip] Add component
|
|
284
|
+
|
|
285
|
+
### Patch Changes
|
|
286
|
+
|
|
287
|
+
- [#2316](https://github.com/Thinkei/hero-design/pull/2316) [`ac1dcf43f`](https://github.com/Thinkei/hero-design/commit/ac1dcf43f2b76f93247307683bbdafce0759b7a0) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - Revert Modal migration
|
|
Binary file
|