@hero-design/rn 8.68.0 → 8.70.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 (70) hide show
  1. package/.turbo/turbo-build.log +3 -3
  2. package/CHANGELOG.md +32 -0
  3. package/es/index.js +310 -164
  4. package/lib/index.js +310 -163
  5. package/package.json +2 -2
  6. package/src/components/BottomSheet/Header.tsx +50 -27
  7. package/src/components/BottomSheet/StyledBottomSheet.tsx +35 -8
  8. package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +352 -1
  9. package/src/components/BottomSheet/__tests__/index.spec.tsx +30 -0
  10. package/src/components/BottomSheet/index.tsx +47 -30
  11. package/src/components/Card/StyledCard.tsx +6 -2
  12. package/src/components/Card/__tests__/__snapshots__/StyledCard.spec.tsx.snap +1 -1
  13. package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +7 -0
  14. package/src/components/Card/__tests__/index.spec.tsx +12 -0
  15. package/src/components/Card/index.tsx +8 -2
  16. package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +4 -0
  17. package/src/components/Carousel/__tests__/__snapshots__/StyledCardCarousel.spec.tsx.snap +1 -0
  18. package/src/components/Chip/StyledChip.tsx +15 -45
  19. package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +145 -389
  20. package/src/components/Chip/__tests__/index.spec.tsx +6 -26
  21. package/src/components/Chip/index.tsx +26 -33
  22. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +1 -1
  23. package/src/components/Progress/ProgressStep.tsx +87 -0
  24. package/src/components/Progress/StyledStep.tsx +48 -0
  25. package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +209 -0
  26. package/src/components/Progress/__tests__/index.spec.js +26 -0
  27. package/src/components/Progress/index.tsx +6 -1
  28. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +4 -4
  29. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  30. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +1 -1
  31. package/src/index.ts +2 -0
  32. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +25 -6
  33. package/src/theme/components/bottomSheet.ts +7 -0
  34. package/src/theme/components/card.ts +1 -0
  35. package/src/theme/components/chip.ts +8 -6
  36. package/src/theme/components/progress.ts +11 -1
  37. package/src/theme/global/colors/__tests__/__snapshots__/swagLight.spec.ts.snap +12 -12
  38. package/src/theme/global/colors/__tests__/__snapshots__/swagLightGlobal.spec.ts.snap +39 -0
  39. package/src/theme/global/colors/__tests__/__snapshots__/swagLightJobs.spec.ts.snap +50 -0
  40. package/src/theme/global/colors/__tests__/swagLightGlobal.spec.ts +7 -0
  41. package/src/theme/global/colors/__tests__/swagLightJobs.spec.ts +7 -0
  42. package/src/theme/global/colors/swagLight.ts +9 -10
  43. package/src/theme/global/colors/swagLightGlobal.ts +14 -0
  44. package/src/theme/global/colors/swagLightJobs.ts +11 -0
  45. package/src/theme/global/colors/types.ts +4 -0
  46. package/src/theme/global/index.ts +2 -0
  47. package/src/theme/index.ts +2 -0
  48. package/stats/8.69.0/rn-stats.html +4842 -0
  49. package/stats/8.70.0/rn-stats.html +4842 -0
  50. package/types/components/BottomSheet/Header.d.ts +3 -2
  51. package/types/components/BottomSheet/StyledBottomSheet.d.ts +16 -2
  52. package/types/components/BottomSheet/index.d.ts +5 -1
  53. package/types/components/Box/StyledBox.d.ts +1 -1
  54. package/types/components/Card/StyledCard.d.ts +1 -0
  55. package/types/components/Card/index.d.ts +2 -1
  56. package/types/components/Chip/StyledChip.d.ts +1 -19
  57. package/types/components/Chip/index.d.ts +6 -2
  58. package/types/components/Progress/ProgressStep.d.ts +20 -0
  59. package/types/components/Progress/StyledStep.d.ts +21 -0
  60. package/types/components/Progress/index.d.ts +1 -0
  61. package/types/index.d.ts +2 -2
  62. package/types/theme/components/bottomSheet.d.ts +7 -0
  63. package/types/theme/components/card.d.ts +1 -0
  64. package/types/theme/components/chip.d.ts +8 -6
  65. package/types/theme/components/progress.d.ts +9 -0
  66. package/types/theme/global/colors/swagLightGlobal.d.ts +3 -0
  67. package/types/theme/global/colors/swagLightJobs.d.ts +47 -0
  68. package/types/theme/global/colors/types.d.ts +2 -0
  69. package/types/theme/global/index.d.ts +4 -1
  70. package/types/theme/index.d.ts +2 -2
@@ -1,8 +1,8 @@
1
- (node:3083) ExperimentalWarning: Import assertions are not a stable feature of the JavaScript language. Avoid relying on their current behavior and syntax as those might change in a future version of Node.js.
1
+ (node:2991) ExperimentalWarning: Import assertions are not a stable feature of the JavaScript language. Avoid relying on their current behavior and syntax as those might change in a future version of Node.js.
2
2
  (Use `node --trace-warnings ...` to show where the warning was created)
3
- (node:3083) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
3
+ (node:2991) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
4
4
  
5
5
  src/index.ts → lib/index.js, es/index.js...
6
6
  (!) [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`.
7
7
  (!) [plugin node-resolve] preferring built-in module 'events' over local alternative at '/home/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.or passing a function to 'preferBuiltins' to provide more fine-grained control over which built-in modules to prefer.
8
- created lib/index.js, es/index.js in 1m 57.4s
8
+ created lib/index.js, es/index.js in 51.7s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.70.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#3421](https://github.com/Thinkei/hero-design/pull/3421) [`1a36cbade6beba151ca794d950db19b3cd38f414`](https://github.com/Thinkei/hero-design/commit/1a36cbade6beba151ca794d950db19b3cd38f414) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Card] Add super-round variant
8
+
9
+ ### Patch Changes
10
+
11
+ - [#3409](https://github.com/Thinkei/hero-design/pull/3409) [`4566296654e11a8d6be117fb241d1d94e29c4750`](https://github.com/Thinkei/hero-design/commit/4566296654e11a8d6be117fb241d1d94e29c4750) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Chip] Allow hiding selected icon
12
+
13
+ - [#3396](https://github.com/Thinkei/hero-design/pull/3396) [`4fd2a3371237fe4d8dc306380a3575a35e6213f4`](https://github.com/Thinkei/hero-design/commit/4fd2a3371237fe4d8dc306380a3575a35e6213f4) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Chip] Update styling
14
+
15
+ - [#3419](https://github.com/Thinkei/hero-design/pull/3419) [`3b050b79e0cd915fad534c208044852aeb45210c`](https://github.com/Thinkei/hero-design/commit/3b050b79e0cd915fad534c208044852aeb45210c) Thanks [@ttkien](https://github.com/ttkien)! - Add global theme for swaglight
16
+
17
+ - Updated dependencies [[`3b050b79e0cd915fad534c208044852aeb45210c`](https://github.com/Thinkei/hero-design/commit/3b050b79e0cd915fad534c208044852aeb45210c)]:
18
+ - @hero-design/colors@8.45.1
19
+
20
+ ## 8.69.0
21
+
22
+ ### Minor Changes
23
+
24
+ - [#3410](https://github.com/Thinkei/hero-design/pull/3410) [`1dbf68987b0e128c87bb242eacfed4a1e8e20565`](https://github.com/Thinkei/hero-design/commit/1dbf68987b0e128c87bb242eacfed4a1e8e20565) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Progress.Step] Add component
25
+
26
+ - [#3397](https://github.com/Thinkei/hero-design/pull/3397) [`f754b1fc35bdd5affc394ac3b97a96d2d6a1fed1`](https://github.com/Thinkei/hero-design/commit/f754b1fc35bdd5affc394ac3b97a96d2d6a1fed1) Thanks [@haudao-eh](https://github.com/haudao-eh)! - Add swag light jobs theme
27
+
28
+ - [#3413](https://github.com/Thinkei/hero-design/pull/3413) [`697404ec334124d9ab5cf27869d4f661fd838e5e`](https://github.com/Thinkei/hero-design/commit/697404ec334124d9ab5cf27869d4f661fd838e5e) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [BottomSheet] Add floating variant
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies [[`f754b1fc35bdd5affc394ac3b97a96d2d6a1fed1`](https://github.com/Thinkei/hero-design/commit/f754b1fc35bdd5affc394ac3b97a96d2d6a1fed1)]:
33
+ - @hero-design/colors@8.45.0
34
+
3
35
  ## 8.68.0
4
36
 
5
37
  ### Minor Changes