@hero-design/rn 8.135.0 → 8.136.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 +18 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +2141 -1673
- package/jest.config.js +1 -1
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +2141 -1673
- package/package.json +2 -2
- package/src/components/Calendar/CalendarRange.tsx +1 -1
- package/src/components/Calendar/index.tsx +1 -1
- package/src/components/DatePicker/hooks/useFormatDate.ts +1 -1
- package/src/components/DatePicker/types.ts +1 -1
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +0 -4
- package/src/components/List/ListGroup.tsx +106 -0
- package/src/components/List/StyledListGroup.tsx +19 -0
- package/src/components/List/index.tsx +3 -0
- package/src/components/LocaleProvider/index.tsx +1 -1
- package/src/components/LocaleProvider/utils.ts +2 -3
- package/src/components/TimePicker/TimePickerAndroid.tsx +1 -1
- package/src/components/TimePicker/TimePickerIOS.tsx +1 -1
- package/src/components/TimePicker/types.ts +1 -1
- package/src/theme/components/list.ts +8 -0
- package/types/components/DatePicker/types.d.ts +1 -1
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/List/ListGroup.d.ts +26 -0
- package/types/components/List/StyledListGroup.d.ts +12 -0
- package/types/components/List/index.d.ts +2 -0
- package/types/components/LocaleProvider/utils.d.ts +1 -1
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/components/TimePicker/types.d.ts +1 -1
- package/types/theme/components/list.d.ts +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
+
## 8.136.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#5431](https://github.com/Thinkei/hero-design/pull/5431) [`a921554`](https://github.com/Thinkei/hero-design/commit/a921554bad1514779864fde5740d2b17c059f15e) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [List] Add List.Group component
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#5431](https://github.com/Thinkei/hero-design/pull/5431) [`a921554`](https://github.com/Thinkei/hero-design/commit/a921554bad1514779864fde5740d2b17c059f15e) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [List] Square off row corners at the top and bottom of List.Group so it reads as one continuous shape
|
|
12
|
+
|
|
13
|
+
## 8.135.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#5442](https://github.com/Thinkei/hero-design/pull/5442) [`3f72d72`](https://github.com/Thinkei/hero-design/commit/3f72d724d7d6618446e295ca7293f233f46b8974) Thanks [@tqdungit](https://github.com/tqdungit)! - [Icon] Remove unused icons: speaker-active, speaker-active-outlined, home-active-outlined, bell-active-outlined
|
|
18
|
+
|
|
19
|
+
- [#5393](https://github.com/Thinkei/hero-design/pull/5393) [`3eb8666`](https://github.com/Thinkei/hero-design/commit/3eb8666724f421d1295775218326d9fad3a1b04c) Thanks [@tqdungit](https://github.com/tqdungit)! - Upgrade date-fns to v4
|
|
20
|
+
|
|
3
21
|
## 8.135.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
Binary file
|