@hero-design/rn 8.130.3 → 8.131.1
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 +12 -0
- package/es/index.js +406 -225
- package/lib/index.js +406 -225
- package/package.json +1 -1
- package/src/components/Tabs/ScrollableTabsHeader/ScrollableTabsHeader.tsx +217 -131
- package/src/components/Tabs/ScrollableTabsHeader/hooks/useIndicatorAnimation.ts +242 -0
- package/src/components/Tabs/StyledScrollableTabs.tsx +68 -21
- package/src/components/Tabs/index.tsx +2 -0
- package/src/theme/components/filterTrigger.ts +1 -1
- package/src/theme/components/tabs.ts +9 -2
- package/types/components/Tabs/ScrollableTabsHeader/ScrollableTabsHeader.d.ts +1 -1
- package/types/components/Tabs/ScrollableTabsHeader/hooks/useIndicatorAnimation.d.ts +75 -0
- package/types/components/Tabs/StyledScrollableTabs.d.ts +13 -8
- package/types/components/Tabs/index.d.ts +3 -1
- package/types/theme/components/tabs.d.ts +9 -2
- package/src/components/Tabs/ScrollableTabsHeader/hooks/useInitHighlightedAnimation.ts +0 -45
- package/types/components/Tabs/ScrollableTabsHeader/hooks/useInitHighlightedAnimation.d.ts +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
+
## 8.131.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#5125](https://github.com/Thinkei/hero-design/pull/5125) [`4ffd7dc018090ad4f36fb926266f0849a4b52984`](https://github.com/Thinkei/hero-design/commit/4ffd7dc018090ad4f36fb926266f0849a4b52984) Thanks [@tqdungit](https://github.com/tqdungit)! - [FilterTrigger] Use `secondaryOutline` border color for `outlined` variant in inactive state (was incorrectly `primary`)
|
|
8
|
+
|
|
9
|
+
## 8.131.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#5113](https://github.com/Thinkei/hero-design/pull/5113) [`4631666a4d6f9ec140792bc2c817a9471ea52fa7`](https://github.com/Thinkei/hero-design/commit/4631666a4d6f9ec140792bc2c817a9471ea52fa7) Thanks [@ttkien](https://github.com/ttkien)! - [Tabs.Scroll] highlighted variant UI updates and support disable tab item
|
|
14
|
+
|
|
3
15
|
## 8.130.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|