@hero-design/rn 8.48.0 → 8.50.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.
Files changed (30) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/CHANGELOG.md +16 -0
  3. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  4. package/es/index.js +292 -284
  5. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  6. package/lib/index.js +292 -284
  7. package/package.json +1 -1
  8. package/src/components/Badge/__tests__/__snapshots__/Badge.spec.tsx.snap +6 -6
  9. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  10. package/src/components/Icon/IconList.ts +1 -0
  11. package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +2 -2
  12. package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +3 -3
  13. package/src/components/PinInput/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  14. package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +2 -2
  15. package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  16. package/src/components/Tabs/ScrollableTabs.tsx +12 -2
  17. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +3 -3
  18. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +1 -1
  19. package/src/components/Tabs/__tests__/__snapshots__/TabWithBadge.spec.tsx.snap +1 -1
  20. package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  21. package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +7 -7
  22. package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
  23. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +1 -1
  24. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +1 -1
  25. package/src/components/Typography/Caption/StyledCaption.tsx +1 -1
  26. package/src/components/Typography/Caption/__tests__/__snapshots__/StyledCaption.spec.tsx.snap +9 -9
  27. package/src/components/Typography/Caption/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
  28. package/types/components/Icon/IconList.d.ts +1 -1
  29. package/types/components/Icon/index.d.ts +1 -1
  30. package/types/components/Icon/utils.d.ts +1 -1
@@ -3,6 +3,6 @@ $ rollup -c
3
3
  
4
4
  src/index.ts → lib/index.js, es/index.js...
5
5
  (!) Plugin replace: @rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`.
6
- (!) Plugin node-resolve: preferring built-in module 'events' over local alternative at '/root/hero-design/node_modules/events/events.js', pass 'preferBuiltins: false' to disable this behavior or 'preferBuiltins: true' to disable this warning
7
- created lib/index.js, es/index.js in 20.3s
6
+ (!) Plugin node-resolve: preferring built-in module 'events' over local alternative at '/runner/_work/hero-design/hero-design/node_modules/events/events.js', pass 'preferBuiltins: false' to disable this behavior or 'preferBuiltins: true' to disable this warning
7
+ created lib/index.js, es/index.js in 29.7s
8
8
  $ tsc --noEmit false --emitDeclarationOnly --project tsconfig.prod.json
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.50.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#2478](https://github.com/Thinkei/hero-design/pull/2478) [`2fa8d6a00`](https://github.com/Thinkei/hero-design/commit/2fa8d6a00e22aba6809856f8943d310a5477ebfe) Thanks [@dangkhoa2708](https://github.com/dangkhoa2708)! - Add new icon `near-me`
8
+
9
+ ## 8.49.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#2462](https://github.com/Thinkei/hero-design/pull/2462) [`8d1d76caa`](https://github.com/Thinkei/hero-design/commit/8d1d76caa2d0619b77375291c6f82eae0dd79872) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Typography.Caption] Update letter spacing
14
+
15
+ ### Patch Changes
16
+
17
+ - [#2461](https://github.com/Thinkei/hero-design/pull/2461) [`f6d24b44c`](https://github.com/Thinkei/hero-design/commit/f6d24b44ca58f4bfb38bd6012143b4dc0ff7d485) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Tabs.Scroll] Prevent onTabPress from running on the first render
18
+
3
19
  ## 8.48.0
4
20
 
5
21
  ### Minor Changes
Binary file