@hero-design/rn 8.107.0 → 8.108.1

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 (67) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/CHANGELOG.md +18 -0
  3. package/es/index.js +454 -20
  4. package/lib/index.js +454 -20
  5. package/package.json +1 -1
  6. package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +0 -1
  7. package/src/components/FAB/ActionGroup/index.tsx +5 -12
  8. package/src/components/Illustration/__tests__/index.spec.tsx +19 -0
  9. package/src/components/Illustration/assets/AllInOneSketch.tsx +26 -0
  10. package/src/components/Illustration/assets/CelebrationSketch.tsx +21 -0
  11. package/src/components/Illustration/assets/DiySketch.tsx +26 -0
  12. package/src/components/Illustration/assets/ErrorSketch.tsx +26 -0
  13. package/src/components/Illustration/assets/FreedomSketch.tsx +24 -0
  14. package/src/components/Illustration/assets/GrowingSketch.tsx +28 -0
  15. package/src/components/Illustration/assets/InstantSketch.tsx +26 -0
  16. package/src/components/Illustration/assets/LiftSketch.tsx +24 -0
  17. package/src/components/Illustration/assets/OnDemandSketch.tsx +24 -0
  18. package/src/components/Illustration/assets/ProcessingSketch.tsx +24 -0
  19. package/src/components/Illustration/assets/RemoteJobsSketch.tsx +28 -0
  20. package/src/components/Illustration/assets/RewardSketch.tsx +28 -0
  21. package/src/components/Illustration/assets/SearchSketch.tsx +28 -0
  22. package/src/components/Illustration/assets/SecuritySketch.tsx +24 -0
  23. package/src/components/Illustration/assets/SentSketch.tsx +24 -0
  24. package/src/components/Illustration/assets/SpeedSketch.tsx +24 -0
  25. package/src/components/Illustration/assets/SuperchargeSketch.tsx +24 -0
  26. package/src/components/Illustration/assets/UnlockSketch.tsx +20 -0
  27. package/src/components/Illustration/assets/WorkflowSketch.tsx +24 -0
  28. package/src/components/Illustration/hooks/useMonoColor.ts +15 -0
  29. package/src/components/Illustration/illustrations.ts +38 -0
  30. package/src/components/MapPin/__tests__/__snapshots__/Focussed.spec.tsx.snap +1 -1
  31. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +2 -2
  32. package/src/components/Typography/Body/__tests__/__snapshots__/StyledBody.tsx.snap +1 -1
  33. package/src/components/Typography/Body/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  34. package/src/components/Typography/Caption/__tests__/__snapshots__/StyledCaption.spec.tsx.snap +1 -1
  35. package/src/components/Typography/Caption/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  36. package/src/components/Typography/Label/__tests__/__snapshots__/StyledLabel.tsx.snap +1 -1
  37. package/src/components/Typography/Label/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  38. package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +1 -1
  39. package/src/components/Typography/Title/__tests__/__snapshots__/StyledTitle.tsx.snap +1 -1
  40. package/src/components/Typography/Title/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  41. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +1 -1
  42. package/src/theme/components/typography.ts +1 -1
  43. package/src/utils/__tests__/helpers.spec.ts +142 -0
  44. package/src/utils/helpers.ts +34 -5
  45. package/stats/8.108.0/rn-stats.html +4844 -0
  46. package/stats/8.108.1/rn-stats.html +4844 -0
  47. package/types/components/Illustration/assets/AllInOneSketch.d.ts +4 -0
  48. package/types/components/Illustration/assets/CelebrationSketch.d.ts +4 -0
  49. package/types/components/Illustration/assets/DiySketch.d.ts +4 -0
  50. package/types/components/Illustration/assets/ErrorSketch.d.ts +4 -0
  51. package/types/components/Illustration/assets/FreedomSketch.d.ts +4 -0
  52. package/types/components/Illustration/assets/GrowingSketch.d.ts +4 -0
  53. package/types/components/Illustration/assets/InstantSketch.d.ts +4 -0
  54. package/types/components/Illustration/assets/LiftSketch.d.ts +4 -0
  55. package/types/components/Illustration/assets/OnDemandSketch.d.ts +4 -0
  56. package/types/components/Illustration/assets/ProcessingSketch.d.ts +4 -0
  57. package/types/components/Illustration/assets/RemoteJobsSketch.d.ts +4 -0
  58. package/types/components/Illustration/assets/RewardSketch.d.ts +4 -0
  59. package/types/components/Illustration/assets/SearchSketch.d.ts +4 -0
  60. package/types/components/Illustration/assets/SecuritySketch.d.ts +4 -0
  61. package/types/components/Illustration/assets/SentSketch.d.ts +4 -0
  62. package/types/components/Illustration/assets/SpeedSketch.d.ts +4 -0
  63. package/types/components/Illustration/assets/SuperchargeSketch.d.ts +4 -0
  64. package/types/components/Illustration/assets/UnlockSketch.d.ts +4 -0
  65. package/types/components/Illustration/assets/WorkflowSketch.d.ts +4 -0
  66. package/types/components/Illustration/hooks/useMonoColor.d.ts +5 -0
  67. package/types/components/Illustration/illustrations.d.ts +19 -0
@@ -1,4 +1,4 @@
1
- (node:3307) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
1
+ (node:3310) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
2
2
  (Use `node --trace-warnings ...` to show where the warning was created)
3
3
  
4
4
  src/index.ts → lib/index.js, es/index.js...
@@ -15,7 +15,7 @@ node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/sr
15
15
     ~~~~~~~~~~~~~~~~~~~
16
16
  
17
17
  (!) [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.
18
- created lib/index.js, es/index.js in 1m 10.5s
18
+ created lib/index.js, es/index.js in 1m 13.9s
19
19
  
20
20
  /home/runner/work/hero-design/hero-design/packages/rn/src/locales/en_AU.ts, /home/runner/work/hero-design/hero-design/packages/rn/src/locales/en_CA.ts, /home/runner/work/hero-design/hero-design/packages/rn/src/locales/index.ts, /home/runner/work/hero-design/hero-design/packages/rn/src/locales/types.ts → ., ....
21
21
  (!) Generated empty chunks
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.108.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#4210](https://github.com/Thinkei/hero-design/pull/4210) [`d0856e4f74472a83c5227e88638ad9631a7fe8f5`](https://github.com/Thinkei/hero-design/commit/d0856e4f74472a83c5227e88638ad9631a7fe8f5) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [FAB.ActionGroup] Fix double circle issue
8
+
9
+ - [#4211](https://github.com/Thinkei/hero-design/pull/4211) [`9af53ac4bda22015a04ca404ae2a85d9bfb11ac2`](https://github.com/Thinkei/hero-design/commit/9af53ac4bda22015a04ca404ae2a85d9bfb11ac2) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Progress] Update colors to match design
10
+
11
+ ## 8.108.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#4204](https://github.com/Thinkei/hero-design/pull/4204) [`601ffaa1fb7db45e5d2c1ec8daa3829c6dad2827`](https://github.com/Thinkei/hero-design/commit/601ffaa1fb7db45e5d2c1ec8daa3829c6dad2827) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Illustration] Add new sketch illustrations
16
+
17
+ ### Patch Changes
18
+
19
+ - [#4203](https://github.com/Thinkei/hero-design/pull/4203) [`37361afc4c96b1cea54505023bd55d023327fb0f`](https://github.com/Thinkei/hero-design/commit/37361afc4c96b1cea54505023bd55d023327fb0f) Thanks [@haudao-eh](https://github.com/haudao-eh)! - [Typography] Update danger intent
20
+
3
21
  ## 8.107.0
4
22
 
5
23
  ### Minor Changes