@hero-design/rn 8.92.2 → 8.93.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 (72) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/CHANGELOG.md +28 -0
  3. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  4. package/es/index.js +689 -752
  5. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  6. package/lib/index.js +690 -752
  7. package/package.json +4 -2
  8. package/rollup.config.mjs +1 -0
  9. package/src/components/Badge/Count.tsx +60 -0
  10. package/src/components/Badge/StyledBadge.tsx +33 -2
  11. package/src/components/Badge/__tests__/Count.spec.tsx +38 -0
  12. package/src/components/Badge/__tests__/__snapshots__/Count.spec.tsx.snap +310 -0
  13. package/src/components/Badge/constants.ts +1 -0
  14. package/src/components/Badge/index.tsx +3 -2
  15. package/src/components/Button/StyledButton.tsx +15 -8
  16. package/src/components/Button/UtilityButton/StyledUtilityButton.tsx +5 -3
  17. package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +4 -0
  18. package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +61 -4
  19. package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +26 -0
  20. package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +6 -0
  21. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +2 -0
  22. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  23. package/src/components/Icon/IconList.ts +2 -0
  24. package/src/components/MapPin/StyledMapPin.tsx +1 -9
  25. package/src/components/Progress/ProgressCircle.tsx +53 -109
  26. package/src/components/Progress/StyledProgressBar.tsx +4 -1
  27. package/src/components/Progress/StyledProgressCircle.tsx +1 -57
  28. package/src/components/Progress/StyledStep.tsx +1 -1
  29. package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +299 -647
  30. package/src/components/Search/SearchOneLine.tsx +2 -2
  31. package/src/components/Search/SearchTwoLine.tsx +1 -1
  32. package/src/components/Search/StyledSearch.tsx +20 -35
  33. package/src/components/Search/__tests__/__snapshots__/SearchOneLine.spec.tsx.snap +51 -51
  34. package/src/components/Search/__tests__/__snapshots__/SearchSuffixIcon.spec.tsx.snap +2 -2
  35. package/src/components/Search/__tests__/__snapshots__/SearchTwoLine.spec.tsx.snap +13 -15
  36. package/src/components/Search/__tests__/__snapshots__/utils.spec.tsx.snap +4 -4
  37. package/src/components/Search/utils.tsx +2 -2
  38. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +5 -0
  39. package/src/components/Tabs/TabWithBadge.tsx +1 -1
  40. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +15 -9
  41. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +6 -6
  42. package/src/components/Tabs/__tests__/__snapshots__/TabWithBadge.spec.tsx.snap +3 -3
  43. package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +15 -9
  44. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +1 -0
  45. package/src/components/Toolbar/StyledToolbar.tsx +1 -0
  46. package/src/components/Toolbar/ToolbarMessage.tsx +3 -0
  47. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarMessage.spec.tsx.snap +8 -0
  48. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +31 -23
  49. package/src/theme/components/badge.ts +26 -1
  50. package/src/theme/components/button.ts +10 -0
  51. package/src/theme/components/progress.ts +21 -26
  52. package/src/theme/components/search.ts +2 -10
  53. package/src/theme/components/toolbar.ts +2 -0
  54. package/src/utils/helpers.ts +9 -0
  55. package/stats/8.92.3/rn-stats.html +4842 -0
  56. package/types/components/Badge/Count.d.ts +27 -0
  57. package/types/components/Badge/StyledBadge.d.ts +14 -4
  58. package/types/components/Badge/constants.d.ts +1 -0
  59. package/types/components/Badge/index.d.ts +1 -0
  60. package/types/components/Button/StyledButton.d.ts +2 -2
  61. package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +1 -1
  62. package/types/components/Icon/IconList.d.ts +1 -1
  63. package/types/components/Icon/index.d.ts +1 -1
  64. package/types/components/Progress/StyledProgressCircle.d.ts +1 -32
  65. package/types/components/Search/StyledSearch.d.ts +0 -1
  66. package/types/components/TextInput/index.d.ts +1 -1
  67. package/types/theme/components/badge.d.ts +11 -0
  68. package/types/theme/components/button.d.ts +3 -0
  69. package/types/theme/components/progress.d.ts +6 -6
  70. package/types/theme/components/search.d.ts +2 -10
  71. package/types/theme/components/toolbar.d.ts +2 -0
  72. package/types/utils/helpers.d.ts +1 -0
@@ -1,4 +1,4 @@
1
- (node:3013) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
1
+ (node:3041) 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...
@@ -10,4 +10,4 @@
10
10
     ~~~~~~~~~~~~~~~~~~~
11
11
  
12
12
  (!) [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.
13
- created lib/index.js, es/index.js in 53.6s
13
+ created lib/index.js, es/index.js in 53s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.93.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#3761](https://github.com/Thinkei/hero-design/pull/3761) [`f92d9b56e581accf3ebafc8becd72068cfaa5493`](https://github.com/Thinkei/hero-design/commit/f92d9b56e581accf3ebafc8becd72068cfaa5493) Thanks [@ttkien](https://github.com/ttkien)! - [Badge.Count] add component
8
+
9
+ ### Patch Changes
10
+
11
+ - [#3765](https://github.com/Thinkei/hero-design/pull/3765) [`c4d1a248033828799063daae6ef12ab8ee84e8ba`](https://github.com/Thinkei/hero-design/commit/c4d1a248033828799063daae6ef12ab8ee84e8ba) Thanks [@anniepham96](https://github.com/anniepham96)! - Add new icon for profile checklist badge
12
+
13
+ ## 8.92.3
14
+
15
+ ### Patch Changes
16
+
17
+ - [#3753](https://github.com/Thinkei/hero-design/pull/3753) [`a592fbfcace05f7ffb2f89a9a47150d712fd0acc`](https://github.com/Thinkei/hero-design/commit/a592fbfcace05f7ffb2f89a9a47150d712fd0acc) Thanks [@ttkien](https://github.com/ttkien)! - add calculator-outlined icon
18
+
19
+ - [#3712](https://github.com/Thinkei/hero-design/pull/3712) [`450be3ea106620aff69e6e2663b6e9d124c641c9`](https://github.com/Thinkei/hero-design/commit/450be3ea106620aff69e6e2663b6e9d124c641c9) Thanks [@haudao-eh](https://github.com/haudao-eh)! - [Progress] Re-implement Progress.Circle with svg
20
+
21
+ - [#3752](https://github.com/Thinkei/hero-design/pull/3752) [`85e3982e86a1afb2f01467b0ac99a6eec288192d`](https://github.com/Thinkei/hero-design/commit/85e3982e86a1afb2f01467b0ac99a6eec288192d) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Tabs] Update default badge intent
22
+
23
+ - [#3743](https://github.com/Thinkei/hero-design/pull/3743) [`012cffceeaead5a092d0bd07d23656361bf24060`](https://github.com/Thinkei/hero-design/commit/012cffceeaead5a092d0bd07d23656361bf24060) Thanks [@haudao-eh](https://github.com/haudao-eh)! - [Progress] Update colors
24
+
25
+ - [#3755](https://github.com/Thinkei/hero-design/pull/3755) [`ef2b8ebce86dfff8c8fae8e142b5051591c55698`](https://github.com/Thinkei/hero-design/commit/ef2b8ebce86dfff8c8fae8e142b5051591c55698) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Search.OneLine][toolbar.message] Update placeholder and text color
26
+
27
+ - [#3728](https://github.com/Thinkei/hero-design/pull/3728) [`e8753c4f722db4cb1752430fdb6249e0b91145ba`](https://github.com/Thinkei/hero-design/commit/e8753c4f722db4cb1752430fdb6249e0b91145ba) Thanks [@phucdph](https://github.com/phucdph)! - [Search.OneLine] Update styling
28
+
29
+ - [#3742](https://github.com/Thinkei/hero-design/pull/3742) [`56545aedcff36594973d96d480926a3f905ceb6f`](https://github.com/Thinkei/hero-design/commit/56545aedcff36594973d96d480926a3f905ceb6f) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Button] Update text alignment on android
30
+
3
31
  ## 8.92.2
4
32
 
5
33
  ### Patch Changes
Binary file