@hero-design/rn 8.134.0 → 8.135.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/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +2302 -1748
- package/jest.config.js +1 -1
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +2299 -1744
- 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/BasicListItem.tsx +2 -2
- 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/SectionList/SectionList.tsx +181 -0
- package/src/components/SectionList/StyledSectionList.tsx +65 -0
- package/src/components/SectionList/index.tsx +4 -0
- 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/index.ts +2 -0
- package/src/theme/components/sectionList.ts +31 -0
- package/src/theme/getTheme.ts +3 -0
- package/src/types.ts +1 -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/BasicListItem.d.ts +2 -2
- package/types/components/List/index.d.ts +2 -0
- package/types/components/LocaleProvider/utils.d.ts +1 -1
- package/types/components/Radio/StyledRadio.d.ts +1 -1
- package/types/components/SectionList/SectionList.d.ts +66 -0
- package/types/components/SectionList/StyledSectionList.d.ts +33 -0
- package/types/components/SectionList/index.d.ts +3 -0
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/components/TimePicker/types.d.ts +1 -1
- package/types/index.d.ts +2 -1
- package/types/theme/components/sectionList.d.ts +23 -0
- package/types/theme/getTheme.d.ts +2 -0
- package/types/types.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
+
## 8.135.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
- [#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
|
|
10
|
+
|
|
11
|
+
## 8.135.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#5432](https://github.com/Thinkei/hero-design/pull/5432) [`c70719e`](https://github.com/Thinkei/hero-design/commit/c70719eb28beab23c74cfe81b1aade5494e20d39) Thanks [@ttkien](https://github.com/ttkien)! - [SectionList] Add component
|
|
16
|
+
|
|
3
17
|
## 8.134.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
Binary file
|