@hero-design/rn 8.56.0 → 8.57.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 +22 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +5106 -4266
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +5105 -4265
- package/package.json +2 -1
- package/src/components/AnimatedScroller/__tests__/ScrollablesWithFAB.spec.tsx +172 -0
- package/src/components/AnimatedScroller/__tests__/__snapshots__/ScrollablesWithFAB.spec.tsx.snap +3435 -0
- package/src/components/Button/StyledButton.tsx +16 -30
- package/src/components/Carousel/CardCarousel.tsx +3 -4
- package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/Error/__tests__/__snapshots__/index.spec.tsx.snap +4 -4
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +4 -0
- package/src/components/PinInput/index.tsx +1 -1
- package/src/components/Tabs/SceneView.tsx +6 -4
- package/src/components/Tabs/ScrollableTabs.tsx +8 -2
- package/src/components/Tabs/{ScrollableTabsHeader.tsx → ScrollableTabsHeader/ScrollableTabsHeader.tsx} +73 -42
- 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 -3
- package/src/components/Tabs/__tests__/ScrollableTabsHeader.spec.tsx +7 -3
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +42 -6
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +623 -3
- package/src/components/Tabs/__tests__/useInitHighlightedAnimation.spec.tsx +56 -0
- package/src/components/Tabs/__tests__/useInitUnderlinedAnimation.spec.tsx +65 -0
- package/src/components/Typography/Body/__tests__/__snapshots__/StyledBody.tsx.snap +2 -2
- package/src/components/Typography/Body/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +1 -1
- package/src/theme/components/typography.ts +1 -1
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/Icon/utils.d.ts +1 -1
- package/types/components/Tabs/ScrollableTabs.d.ts +4 -1
- package/types/components/Tabs/{ScrollableTabsHeader.d.ts → ScrollableTabsHeader/ScrollableTabsHeader.d.ts} +7 -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 +5 -1
- package/types/components/Tabs/index.d.ts +1 -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 [1m44.3s[22m[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
+
## 8.57.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
- [#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
|
|
10
|
+
|
|
11
|
+
- [#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
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#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
|
|
16
|
+
|
|
17
|
+
- [#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
|
|
18
|
+
|
|
19
|
+
## 8.56.1
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- [#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
|
|
24
|
+
|
|
3
25
|
## 8.56.0
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
|
Binary file
|