@hero-design/rn 8.128.0 → 8.128.2

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 (66) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/CLAUDE.md +1 -1
  3. package/es/index.js +196 -288
  4. package/lib/index.js +196 -288
  5. package/package.json +8 -1
  6. package/src/components/DatePicker/DatePicker.tsx +5 -24
  7. package/src/components/DatePicker/DatePickerAndroid.tsx +8 -17
  8. package/src/components/DatePicker/DatePickerCalendar.tsx +8 -17
  9. package/src/components/DatePicker/DatePickerIOS.tsx +8 -17
  10. package/src/components/DatePicker/StyledDatePicker.tsx +2 -19
  11. package/src/components/DatePicker/types.ts +0 -17
  12. package/src/components/FAB/FAB.tsx +37 -5
  13. package/src/components/FAB/Pair/StyledFAB.tsx +2 -2
  14. package/src/components/FAB/Pair/index.tsx +6 -0
  15. package/src/components/FAB/StyledFAB.tsx +3 -1
  16. package/src/components/Select/MultiSelect/index.tsx +9 -23
  17. package/src/components/Select/SingleSelect/index.tsx +9 -23
  18. package/src/components/Select/StyledSelect.tsx +2 -25
  19. package/src/components/Select/index.tsx +2 -8
  20. package/src/components/Select/types.ts +0 -4
  21. package/src/components/StatusScreens/Error/StyledError.tsx +0 -6
  22. package/src/components/StatusScreens/Error/index.tsx +2 -6
  23. package/src/components/StatusScreens/Success/StyledSuccess.tsx +0 -6
  24. package/src/components/StatusScreens/Success/index.tsx +2 -2
  25. package/src/components/TimePicker/StyledTimePicker.tsx +2 -19
  26. package/src/components/TimePicker/TimePicker.tsx +2 -2
  27. package/src/components/TimePicker/TimePickerAndroid.tsx +6 -15
  28. package/src/components/TimePicker/TimePickerIOS.tsx +7 -18
  29. package/src/components/TimePicker/types.ts +0 -17
  30. package/src/theme/components/fab.ts +12 -11
  31. package/src/theme/global/colors/ehJobs.ts +1 -0
  32. package/src/theme/global/colors/ehWork.ts +1 -1
  33. package/types/components/Checkbox/StyledInlineCheckBox.d.ts +1 -1
  34. package/types/components/Checkbox/utils.d.ts +1 -1
  35. package/types/components/DatePicker/DatePicker.d.ts +2 -2
  36. package/types/components/DatePicker/DatePickerAndroid.d.ts +3 -3
  37. package/types/components/DatePicker/DatePickerCalendar.d.ts +2 -2
  38. package/types/components/DatePicker/DatePickerIOS.d.ts +3 -3
  39. package/types/components/DatePicker/StyledDatePicker.d.ts +1 -8
  40. package/types/components/DatePicker/types.d.ts +0 -15
  41. package/types/components/FAB/FAB.d.ts +5 -1
  42. package/types/components/FAB/Pair/StyledFAB.d.ts +3 -1
  43. package/types/components/FAB/StyledFAB.d.ts +1 -0
  44. package/types/components/Select/MultiSelect/index.d.ts +1 -6
  45. package/types/components/Select/SingleSelect/index.d.ts +1 -6
  46. package/types/components/Select/StyledSelect.d.ts +1 -8
  47. package/types/components/Select/index.d.ts +2 -2
  48. package/types/components/Select/types.d.ts +0 -4
  49. package/types/components/StatusScreens/Error/StyledError.d.ts +1 -5
  50. package/types/components/StatusScreens/Success/StyledSuccess.d.ts +1 -5
  51. package/types/components/TextInput/index.d.ts +1 -1
  52. package/types/components/TimePicker/StyledTimePicker.d.ts +1 -8
  53. package/types/components/TimePicker/TimePicker.d.ts +2 -2
  54. package/types/components/TimePicker/TimePickerAndroid.d.ts +2 -2
  55. package/types/components/TimePicker/TimePickerIOS.d.ts +2 -2
  56. package/types/components/TimePicker/types.d.ts +0 -15
  57. package/src/components/DatePicker/index.internal.tsx +0 -10
  58. package/src/components/Select/index.internal.tsx +0 -26
  59. package/src/components/TimePicker/index.internal.tsx +0 -9
  60. package/src/index.internal.ts +0 -26
  61. package/src/types.internal.ts +0 -28
  62. package/types/components/DatePicker/index.internal.d.ts +0 -7
  63. package/types/components/Select/index.internal.d.ts +0 -21
  64. package/types/components/TimePicker/index.internal.d.ts +0 -5
  65. package/types/index.internal.d.ts +0 -19
  66. package/types/types.internal.d.ts +0 -18
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.128.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#5089](https://github.com/Thinkei/hero-design/pull/5089) [`6f9728388a4af8ebc44c858610e4f1a1c21870e1`](https://github.com/Thinkei/hero-design/commit/6f9728388a4af8ebc44c858610e4f1a1c21870e1) Thanks [@ttkien](https://github.com/ttkien)! - Remove unused rn-work-uikit package
8
+
9
+ ## 8.128.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#5088](https://github.com/Thinkei/hero-design/pull/5088) [`8a8a649b3d2ad1fa030be516afb94841ac4d7fa9`](https://github.com/Thinkei/hero-design/commit/8a8a649b3d2ad1fa030be516afb94841ac4d7fa9) Thanks [@ttkien](https://github.com/ttkien)! - [Error][success] fix: remove erroneous padding from StatusScreen buttons
14
+
15
+ - [#5085](https://github.com/Thinkei/hero-design/pull/5085) [`850eafeaec709444144e6cbe3cc15d53653c2088`](https://github.com/Thinkei/hero-design/commit/850eafeaec709444144e6cbe3cc15d53653c2088) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [FAB] Redesign FAB and FABPair visual tokens
16
+
17
+ - FAB size reduced from 64px (`xxxxxlarge`) to 48px (`xxxlarge`)
18
+ - FAB/FABPair button background changed from black (`overlayGlobalSurface`) to the `primary` color token
19
+ - Action.Item background changed from black to white (`defaultGlobalSurface`); text/icon color changed from `onDarkGlobalSurface` to `onDefaultGlobalSurface`
20
+ - FABPair label changed from 16px semiBold to 14px regular
21
+
22
+ - [#5080](https://github.com/Thinkei/hero-design/pull/5080) [`16e0cb317529452f5a10523c10b60f66fcba6ee4`](https://github.com/Thinkei/hero-design/commit/16e0cb317529452f5a10523c10b60f66fcba6ee4) Thanks [@ttkien](https://github.com/ttkien)! - [Theme] Update primary token to #7622d7 in EH Work & Jobs
23
+
3
24
  ## 8.128.0
4
25
 
5
26
  ### Minor Changes
package/CLAUDE.md CHANGED
@@ -28,7 +28,7 @@ React Native component library for Hero Design. Built with TypeScript and emotio
28
28
  ## Commands
29
29
 
30
30
  ```bash
31
- yarn turbo run test --filter=@hero-design/rn -- -- ComponentName [--watch|--updateSnapshot]
31
+ yarn turbo run test --filter=@hero-design/rn -- ComponentName [--watch|--updateSnapshot]
32
32
  yarn workspace @hero-design/rn lint
33
33
  yarn workspace @hero-design/rn type-check
34
34
  yarn build:watch:rn