@hero-design/rn 8.50.0 → 8.52.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 (33) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/CHANGELOG.md +20 -0
  3. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  4. package/es/index.js +332 -307
  5. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  6. package/lib/index.js +332 -307
  7. package/package.json +1 -1
  8. package/src/components/Carousel/__tests__/index.spec.tsx +14 -0
  9. package/src/components/Carousel/index.tsx +15 -14
  10. package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +6 -3
  11. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +2 -1
  12. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +2 -1
  13. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +2 -1
  14. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  15. package/src/components/Icon/IconList.ts +5 -0
  16. package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +4 -2
  17. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +12 -6
  18. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +10 -5
  19. package/src/components/Swipeable/__tests__/__snapshots__/index.spec.tsx.snap +90 -54
  20. package/src/components/Swipeable/index.tsx +31 -17
  21. package/src/components/TextInput/StyledTextInput.tsx +3 -4
  22. package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +0 -10
  23. package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +34 -25
  24. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +4 -2
  25. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +4 -2
  26. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +5 -2
  27. package/src/theme/components/swipeable.ts +6 -1
  28. package/src/theme/components/textInput.ts +1 -2
  29. package/types/components/Icon/IconList.d.ts +1 -1
  30. package/types/components/Icon/index.d.ts +1 -1
  31. package/types/components/Icon/utils.d.ts +1 -1
  32. package/types/theme/components/swipeable.d.ts +4 -0
  33. package/types/theme/components/textInput.d.ts +1 -2
@@ -4,5 +4,5 @@ $ rollup -c
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
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
7
+ created lib/index.js, es/index.js in 29.2s
8
8
  $ tsc --noEmit false --emitDeclarationOnly --project tsconfig.prod.json
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.52.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#2490](https://github.com/Thinkei/hero-design/pull/2490) [`18b7be6d2`](https://github.com/Thinkei/hero-design/commit/18b7be6d29aafc6847d66c6e800b79aba495e10c) Thanks [@ducminhleeh](https://github.com/ducminhleeh)! - Add new icons: application-outlined, job-search-outlined, resume-outlined and smart-match-outlined
8
+
9
+ ### Patch Changes
10
+
11
+ - [#2483](https://github.com/Thinkei/hero-design/pull/2483) [`aeb5ccd7a`](https://github.com/Thinkei/hero-design/commit/aeb5ccd7a0b7e7a608ffae1985aab9725f6339d2) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Carousel] Hide page controls when there is only 1 page
12
+
13
+ - [#2471](https://github.com/Thinkei/hero-design/pull/2471) [`f2724ba80`](https://github.com/Thinkei/hero-design/commit/f2724ba80f5ca9cd591756f69039bfdd9932cb28) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Swipeable] Update container radius
14
+
15
+ - [#2472](https://github.com/Thinkei/hero-design/pull/2472) [`b24dbec12`](https://github.com/Thinkei/hero-design/commit/b24dbec1202d81a4e8422f1ef645c3a5cf21a1da) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [TextInput] Update max length text alignment
16
+
17
+ ## 8.51.0
18
+
19
+ ### Minor Changes
20
+
21
+ - [#2482](https://github.com/Thinkei/hero-design/pull/2482) [`5491d0476`](https://github.com/Thinkei/hero-design/commit/5491d0476f573d481c731350e078e43b68e22278) Thanks [@dangkhoa2708](https://github.com/dangkhoa2708)! - Add new icon `location-on`
22
+
3
23
  ## 8.50.0
4
24
 
5
25
  ### Minor Changes
Binary file