@hero-design/rn 8.118.2 → 8.119.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 +20 -0
- package/README.md +1 -1
- package/es/index.js +661 -7917
- package/jest.config.js +1 -1
- package/lib/index.js +621 -7877
- package/locales/index.mjs +4 -4
- package/package.json +26 -25
- package/rollup.config.mjs +1 -1
- package/src/components/AppCue/index.tsx +4 -1
- package/src/components/BottomNavigation/StyledBottomNavigation.tsx +2 -3
- package/src/components/Button/Button.tsx +2 -2
- package/src/components/Button/UtilityButton/index.tsx +2 -2
- package/src/components/Chip/index.tsx +4 -0
- package/src/components/FloatingIsland/index.tsx +2 -2
- package/src/components/Search/SearchOneLine.tsx +1 -1
- package/src/components/Select/BaseOptionList.tsx +2 -2
- package/src/components/Select/SingleSelect/OptionList.tsx +1 -1
- package/src/components/StatusScreens/Error/index.tsx +3 -2
- package/src/components/Tabs/ScrollableTabs.tsx +1 -2
- package/src/components/Tabs/index.tsx +2 -2
- package/src/components/TextInput/index.tsx +7 -9
- package/src/components/Toolbar/ToolbarMessage.tsx +1 -1
- package/src/theme/components/bottomNavigation.ts +1 -2
- package/src/utils/hooks.ts +1 -1
- package/testUtils/setup.tsx +0 -6
- package/types/components/AppCue/index.d.ts +4 -1
- package/types/components/Button/Button.d.ts +2 -2
- package/types/components/Button/UtilityButton/index.d.ts +2 -2
- package/types/components/Chip/index.d.ts +1 -1
- package/types/components/FloatingIsland/index.d.ts +2 -2
- package/types/components/Select/BaseOptionList.d.ts +1 -1
- package/types/components/Select/SingleSelect/OptionList.d.ts +1 -1
- package/types/components/StatusScreens/Error/index.d.ts +1 -1
- package/types/components/Swipeable/index.d.ts +1 -1
- package/types/components/Tabs/ScrollableTabs.d.ts +1 -2
- package/types/components/Tabs/index.d.ts +2 -2
- package/types/components/Tabs/useHandlePageScroll.d.ts +1 -1
- package/types/components/TextInput/index.d.ts +4 -4
- package/types/theme/components/bottomNavigation.d.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
+
## 8.119.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#4754](https://github.com/Thinkei/hero-design/pull/4754) [`da189546e72d936d19d17f64a2fae1d6e4f97fe7`](https://github.com/Thinkei/hero-design/commit/da189546e72d936d19d17f64a2fae1d6e4f97fe7) Thanks [@phthhieu](https://github.com/phthhieu)! - Upgrade react-native 81
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#4770](https://github.com/Thinkei/hero-design/pull/4770) [`f41e0ff2a0a23e37c0be1203320dc2677f7e6af4`](https://github.com/Thinkei/hero-design/commit/f41e0ff2a0a23e37c0be1203320dc2677f7e6af4) Thanks [@tqdungit](https://github.com/tqdungit)! - Upgrade node 22
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [[`f41e0ff2a0a23e37c0be1203320dc2677f7e6af4`](https://github.com/Thinkei/hero-design/commit/f41e0ff2a0a23e37c0be1203320dc2677f7e6af4)]:
|
|
14
|
+
- @hero-design/colors@8.47.2
|
|
15
|
+
- @hero-design/react-native-month-year-picker@8.45.1
|
|
16
|
+
|
|
17
|
+
## 8.118.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [#4786](https://github.com/Thinkei/hero-design/pull/4786) [`0604c66c663667c36e9ae1d76a97fa7c5153ad7f`](https://github.com/Thinkei/hero-design/commit/0604c66c663667c36e9ae1d76a97fa7c5153ad7f) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [BottomNavigation] Update sizing
|
|
22
|
+
|
|
3
23
|
## 8.118.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ yarn add react-native-webview@^13.10.2
|
|
|
30
30
|
**Requirements:**
|
|
31
31
|
- React 18.3.1
|
|
32
32
|
- React Native 0.77.3
|
|
33
|
-
- Node.js >= 20.0.0 (20.
|
|
33
|
+
- Node.js >= 20.0.0 (20.x or 22.x supported)
|
|
34
34
|
- Yarn >= 4.0.2 (enabled via Corepack: `corepack enable`)
|
|
35
35
|
- iOS Simulator or Android Emulator:
|
|
36
36
|
- **For visual tests compatibility**: iPhone 14 (iOS 18+) or Android Pixel 6 (API 30) are recommended
|