@hero-design/rn 8.87.2 → 8.89.0-alpha.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 (54) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/es/index.js +1034 -979
  3. package/lib/index.js +1034 -978
  4. package/package.json +3 -2
  5. package/src/components/AppCue/StyledAppCue.tsx +27 -1
  6. package/src/components/AppCue/__tests__/StyledAppCue.tsx +4 -0
  7. package/src/components/AppCue/__tests__/__snapshots__/StyledAppCue.tsx.snap +194 -0
  8. package/src/components/AppCue/__tests__/__snapshots__/index.spec.tsx.snap +260 -0
  9. package/src/components/AppCue/__tests__/index.spec.tsx +4 -0
  10. package/src/components/AppCue/__tests__/utils.spec.ts +57 -4
  11. package/src/components/AppCue/index.tsx +7 -4
  12. package/src/components/AppCue/utils.ts +60 -9
  13. package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +18 -15
  14. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +6 -5
  15. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +6 -5
  16. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +12 -10
  17. package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
  18. package/src/components/Empty/index.tsx +1 -1
  19. package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +8 -0
  20. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +42 -35
  21. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +36 -30
  22. package/src/components/TextInput/StyledTextInput.tsx +4 -0
  23. package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +20 -0
  24. package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +446 -432
  25. package/src/components/TextInput/index.tsx +13 -32
  26. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +12 -10
  27. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +12 -10
  28. package/src/index.ts +2 -0
  29. package/src/theme/global/colors/ehWorkDark.ts +60 -0
  30. package/src/theme/global/index.ts +2 -0
  31. package/src/theme/index.ts +2 -0
  32. package/stats/8.88.0/rn-stats.html +4844 -0
  33. package/types/components/AppCue/StyledAppCue.d.ts +1 -1
  34. package/types/components/AppCue/utils.d.ts +6 -3
  35. package/types/components/Calendar/CalendarRange.d.ts +23 -0
  36. package/types/components/Calendar/CalendarRangeConnector.d.ts +11 -0
  37. package/types/components/Calendar/CalendarRangeSelectedItem.d.ts +11 -0
  38. package/types/components/Calendar/Sample.d.ts +13 -0
  39. package/types/components/Calendar/hooks/useCalendarLayout.d.ts +7 -0
  40. package/types/components/Calendar/useSetUpCalendar.d.ts +0 -0
  41. package/types/components/CompoundSearch/CompoundSearchHandler.d.ts +31 -0
  42. package/types/components/CompoundSearch/CompoundSearchTextInput.d.ts +60 -0
  43. package/types/components/CompoundSearch/StyledCompoundSearch.d.ts +40 -0
  44. package/types/components/CompoundSearch/index.d.ts +8 -0
  45. package/types/components/CompoundSearch/utils.d.ts +8 -0
  46. package/types/components/FloatingIsland/SingleLine/StyledSingleLine.d.ts +15 -0
  47. package/types/components/FloatingIsland/SingleLine/index.d.ts +24 -0
  48. package/types/index.d.ts +2 -2
  49. package/types/test-utils.d.ts +4 -0
  50. package/types/theme/components/compoundSearch.d.ts +36 -0
  51. package/types/theme/global/colors/ehWorkDark.d.ts +48 -0
  52. package/types/theme/global/index.d.ts +2 -1
  53. package/types/theme/index.d.ts +2 -2
  54. package/.turbo/turbo-build.log +0 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.88.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#3630](https://github.com/Thinkei/hero-design/pull/3630) [`b4ae9bf3fe00b4a7a27d2919eb7ef83a7d391e59`](https://github.com/Thinkei/hero-design/commit/b4ae9bf3fe00b4a7a27d2919eb7ef83a7d391e59) Thanks [@phucdph](https://github.com/phucdph)! - [AppCue] Support top-left, top-right, bottom-left, bottom-right placement
8
+
9
+ ### Patch Changes
10
+
11
+ - [#3633](https://github.com/Thinkei/hero-design/pull/3633) [`040aa3235d512304df0dc00c4aa3c26766f1fc1c`](https://github.com/Thinkei/hero-design/commit/040aa3235d512304df0dc00c4aa3c26766f1fc1c) Thanks [@luanlai2201](https://github.com/luanlai2201)! - [TextInput] Fix label when has value do not align with another TextInput
12
+
13
+ - [#3638](https://github.com/Thinkei/hero-design/pull/3638) [`4a5628d321f2c6b9dcb96c62b1ceed999a6ec7b7`](https://github.com/Thinkei/hero-design/commit/4a5628d321f2c6b9dcb96c62b1ceed999a6ec7b7) Thanks [@ttkien](https://github.com/ttkien)! - [Empty] Update descrption typeface and font size
14
+
3
15
  ## 8.87.2
4
16
 
5
17
  ### Patch Changes