@hero-design/rn 8.118.1 → 8.118.2-alpha.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 +14 -0
- package/es/index.js +144 -7390
- package/jest.config.js +1 -1
- package/lib/index.js +144 -7390
- package/package.json +21 -20
- package/src/components/AppCue/index.tsx +4 -1
- 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/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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
+
## 8.118.2-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#4706](https://github.com/Thinkei/hero-design/pull/4706) [`82a9532c5364c2dea2ffc96153103522295aa868`](https://github.com/Thinkei/hero-design/commit/82a9532c5364c2dea2ffc96153103522295aa868) Thanks [@tqdungit](https://github.com/tqdungit)! - Trigger alpha release for rn
|
|
8
|
+
|
|
9
|
+
- [#4728](https://github.com/Thinkei/hero-design/pull/4728) [`61b2bbfe16cf7f59f6255ebc0129abfee11a61e7`](https://github.com/Thinkei/hero-design/commit/61b2bbfe16cf7f59f6255ebc0129abfee11a61e7) Thanks [@ttkien](https://github.com/ttkien)! - add react-native key to fix issue on RN 81
|
|
10
|
+
|
|
11
|
+
## 8.118.2-alpha.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#4706](https://github.com/Thinkei/hero-design/pull/4706) [`82a9532c5364c2dea2ffc96153103522295aa868`](https://github.com/Thinkei/hero-design/commit/82a9532c5364c2dea2ffc96153103522295aa868) Thanks [@tqdungit](https://github.com/tqdungit)! - Trigger alpha release for rn
|
|
16
|
+
|
|
3
17
|
## 8.118.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|