@hero-design/rn 8.55.1-rc2.3 → 8.56.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +5 -34
- package/es/index.js +5385 -4937
- package/lib/index.js +5390 -4939
- package/package.json +8 -8
- package/sonar-project.properties +1 -0
- package/src/components/AnimatedScroller/AnimatedFAB.tsx +105 -0
- package/src/components/AnimatedScroller/AnimatedScrollable.tsx +55 -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/index.tsx +5 -0
- package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +26 -833
- package/src/components/Carousel/__tests__/index.spec.tsx +9 -3
- package/src/components/Carousel/index.tsx +19 -6
- package/src/components/FAB/FAB.tsx +6 -6
- package/src/index.ts +8 -0
- package/types/components/Accordion/StyledAccordion.d.ts +5 -5
- package/types/components/Alert/StyledAlert.d.ts +5 -5
- package/types/components/AnimatedScroller/AnimatedFAB.d.ts +10 -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 -4
- package/types/components/Avatar/AvatarStack/StyledAvatarStack.d.ts +3 -3
- package/types/components/Avatar/StyledAvatar.d.ts +4 -4
- package/types/components/Badge/StyledBadge.d.ts +3 -3
- package/types/components/BottomNavigation/StyledBottomNavigation.d.ts +7 -7
- package/types/components/BottomSheet/StyledBottomSheet.d.ts +8 -8
- package/types/components/Box/StyledBox.d.ts +1 -1
- package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +2 -2
- package/types/components/Button/StyledButton.d.ts +5 -5
- package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +3 -3
- package/types/components/Calendar/StyledCalendar.d.ts +9 -9
- package/types/components/Card/DataCard/StyledDataCard.d.ts +2 -2
- package/types/components/Card/StyledCard.d.ts +1 -1
- package/types/components/Carousel/StyledCardCarousel.d.ts +4 -4
- package/types/components/Carousel/StyledCarousel.d.ts +9 -9
- package/types/components/Checkbox/StyledCheckbox.d.ts +5 -5
- package/types/components/Chip/StyledChip.d.ts +4 -4
- package/types/components/Collapse/StyledCollapse.d.ts +3 -3
- package/types/components/ContentNavigator/StyledContentNavigator.d.ts +1 -1
- package/types/components/DatePicker/StyledDatePicker.d.ts +1 -1
- package/types/components/Divider/StyledDivider.d.ts +1 -1
- package/types/components/Drawer/StyledDrawer.d.ts +7 -7
- package/types/components/Empty/StyledEmpty.d.ts +3 -3
- package/types/components/Error/StyledError.d.ts +10 -10
- package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +5 -5
- package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +3 -3
- package/types/components/FAB/StyledFAB.d.ts +4 -4
- package/types/components/Icon/HeroIcon/index.d.ts +1 -1
- package/types/components/List/StyledBasicListItem.d.ts +4 -4
- package/types/components/List/StyledListItem.d.ts +7 -7
- package/types/components/PageControl/StyledPageControl.d.ts +2 -2
- package/types/components/PinInput/StyledPinInput.d.ts +10 -10
- package/types/components/Progress/StyledProgressBar.d.ts +2 -2
- package/types/components/Progress/StyledProgressCircle.d.ts +6 -6
- package/types/components/Radio/StyledRadio.d.ts +3 -3
- package/types/components/Rate/StyledRate.d.ts +2 -2
- package/types/components/RichTextEditor/StyledRichTextEditor.d.ts +2 -2
- package/types/components/RichTextEditor/StyledToolbar.d.ts +3 -3
- package/types/components/SectionHeading/StyledHeading.d.ts +3 -3
- package/types/components/Select/StyledSelect.d.ts +3 -3
- package/types/components/Skeleton/StyledSkeleton.d.ts +2 -2
- package/types/components/Spinner/StyledSpinner.d.ts +4 -4
- package/types/components/Success/StyledSuccess.d.ts +9 -9
- package/types/components/Swipeable/StyledSwipeable.d.ts +1 -1
- package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +4 -4
- package/types/components/Switch/StyledSwitch.d.ts +2 -2
- package/types/components/Tabs/StyledScrollableTabs.d.ts +8 -8
- package/types/components/Tabs/StyledTabs.d.ts +8 -8
- package/types/components/Tag/StyledTag.d.ts +2 -2
- package/types/components/TextInput/StyledTextInput.d.ts +13 -13
- package/types/components/TimePicker/StyledTimePicker.d.ts +1 -1
- package/types/components/Toast/StyledToast.d.ts +6 -6
- package/types/components/Toolbar/StyledToolbar.d.ts +5 -5
- package/types/components/Typography/Body/StyledBody.d.ts +1 -1
- package/types/components/Typography/Caption/StyledCaption.d.ts +1 -1
- package/types/components/Typography/Label/StyledLabel.d.ts +1 -1
- package/types/components/Typography/Text/StyledText.d.ts +1 -1
- package/types/components/Typography/Title/StyledTitle.d.ts +1 -1
- package/types/index.d.ts +2 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
[1msrc/index.ts[22m → [1mlib/index.js, es/index.js[22m...[39m
|
|
3
3
|
[1m[33m(!) Plugin replace: @rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`.[39m[22m
|
|
4
4
|
[1m[33m(!) Plugin node-resolve: preferring built-in module 'events' over local alternative at '/home/runner/work/hero-design/hero-design/node_modules/events/events.js', pass 'preferBuiltins: false' to disable this behavior or 'preferBuiltins: true' to disable this warning[39m[22m
|
|
5
|
-
[32mcreated [1mlib/index.js, es/index.js[22m in [
|
|
5
|
+
[32mcreated [1mlib/index.js, es/index.js[22m in [1m1m 2.4s[22m[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,45 +1,16 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
-
## 8.
|
|
3
|
+
## 8.56.0
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
|
|
7
|
-
- Updated dependencies [[`25ae9a822`](https://github.com/Thinkei/hero-design/commit/25ae9a822f6981c2d874b204ac927dbc1785c837), [`6f0724064`](https://github.com/Thinkei/hero-design/commit/6f0724064299a409b8c3b0047f9c17a549ddb58a)]:
|
|
8
|
-
- @hero-design/colors@8.42.6-rc2.3
|
|
9
|
-
|
|
10
|
-
## 8.55.1-rc2.2
|
|
11
|
-
|
|
12
|
-
### Patch Changes
|
|
13
|
-
|
|
14
|
-
- [#2647](https://github.com/Thinkei/hero-design/pull/2647) [`c5d38100f`](https://github.com/Thinkei/hero-design/commit/c5d38100f7a484a90164b06405f78e09f13d5a5b) Thanks [@ttkien](https://github.com/ttkien)! - fix
|
|
15
|
-
|
|
16
|
-
- [#2647](https://github.com/Thinkei/hero-design/pull/2647) [`d24b42494`](https://github.com/Thinkei/hero-design/commit/d24b42494b3915b2500067a51b3970a528224c5b) Thanks [@ttkien](https://github.com/ttkien)! - fix release flow
|
|
17
|
-
|
|
18
|
-
- Updated dependencies [[`c5d38100f`](https://github.com/Thinkei/hero-design/commit/c5d38100f7a484a90164b06405f78e09f13d5a5b), [`d24b42494`](https://github.com/Thinkei/hero-design/commit/d24b42494b3915b2500067a51b3970a528224c5b)]:
|
|
19
|
-
- @hero-design/colors@8.42.6-rc2.2
|
|
20
|
-
- @hero-design/react-native-month-year-picker@8.42.7-rc2.2
|
|
21
|
-
|
|
22
|
-
## 8.55.1-rc2.1
|
|
23
|
-
|
|
24
|
-
### Patch Changes
|
|
25
|
-
|
|
26
|
-
- [#2647](https://github.com/Thinkei/hero-design/pull/2647) [`286e61897`](https://github.com/Thinkei/hero-design/commit/286e61897f3d3a187dfec6f62f46ec8e0028801f) Thanks [@ttkien](https://github.com/ttkien)! - update release flow
|
|
5
|
+
### Minor Changes
|
|
27
6
|
|
|
28
|
-
-
|
|
29
|
-
- @hero-design/colors@8.42.6-rc2.1
|
|
30
|
-
- @hero-design/react-native-month-year-picker@8.42.7-rc2.1
|
|
7
|
+
- [#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
|
|
31
8
|
|
|
32
|
-
## 8.55.1
|
|
9
|
+
## 8.55.1
|
|
33
10
|
|
|
34
11
|
### Patch Changes
|
|
35
12
|
|
|
36
|
-
- [#
|
|
37
|
-
|
|
38
|
-
- [#2647](https://github.com/Thinkei/hero-design/pull/2647) [`35fcc3812`](https://github.com/Thinkei/hero-design/commit/35fcc3812a090140848c80ed8d5f39026c4c5ee2) Thanks [@ttkien](https://github.com/ttkien)! - yarn install after bump version
|
|
39
|
-
|
|
40
|
-
- Updated dependencies [[`96d0a79e0`](https://github.com/Thinkei/hero-design/commit/96d0a79e008db83c915bbadc8d70a5403d6bd4e3), [`35fcc3812`](https://github.com/Thinkei/hero-design/commit/35fcc3812a090140848c80ed8d5f39026c4c5ee2)]:
|
|
41
|
-
- @hero-design/colors@8.42.6-rc2.0
|
|
42
|
-
- @hero-design/react-native-month-year-picker@8.42.7-rc2.0
|
|
13
|
+
- [#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
|
|
43
14
|
|
|
44
15
|
## 8.55.0
|
|
45
16
|
|