@hero-design/rn 8.92.1 → 8.92.3

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 (64) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/CHANGELOG.md +24 -0
  3. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  4. package/es/index.js +594 -729
  5. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  6. package/lib/index.js +595 -729
  7. package/package.json +4 -2
  8. package/rollup.config.mjs +1 -0
  9. package/src/components/Button/StyledButton.tsx +15 -8
  10. package/src/components/Button/UtilityButton/StyledUtilityButton.tsx +5 -3
  11. package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +4 -0
  12. package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +61 -4
  13. package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +26 -0
  14. package/src/components/Calendar/__tests__/CalendarRange.spec.tsx +26 -11
  15. package/src/components/Calendar/__tests__/helper.spec.ts +65 -58
  16. package/src/components/Calendar/helpers.ts +8 -13
  17. package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +6 -0
  18. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +2 -0
  19. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  20. package/src/components/Icon/IconList.ts +1 -0
  21. package/src/components/MapPin/StyledMapPin.tsx +1 -9
  22. package/src/components/Progress/ProgressCircle.tsx +53 -109
  23. package/src/components/Progress/StyledProgressBar.tsx +4 -1
  24. package/src/components/Progress/StyledProgressCircle.tsx +1 -57
  25. package/src/components/Progress/StyledStep.tsx +1 -1
  26. package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +299 -647
  27. package/src/components/Search/SearchOneLine.tsx +2 -2
  28. package/src/components/Search/SearchTwoLine.tsx +1 -1
  29. package/src/components/Search/StyledSearch.tsx +20 -35
  30. package/src/components/Search/__tests__/__snapshots__/SearchOneLine.spec.tsx.snap +51 -51
  31. package/src/components/Search/__tests__/__snapshots__/SearchSuffixIcon.spec.tsx.snap +2 -2
  32. package/src/components/Search/__tests__/__snapshots__/SearchTwoLine.spec.tsx.snap +13 -15
  33. package/src/components/Search/__tests__/__snapshots__/utils.spec.tsx.snap +4 -4
  34. package/src/components/Search/utils.tsx +2 -2
  35. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +5 -0
  36. package/src/components/Tabs/TabWithBadge.tsx +1 -1
  37. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +15 -9
  38. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +6 -6
  39. package/src/components/Tabs/__tests__/__snapshots__/TabWithBadge.spec.tsx.snap +3 -3
  40. package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +15 -9
  41. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +1 -0
  42. package/src/components/Toolbar/StyledToolbar.tsx +1 -0
  43. package/src/components/Toolbar/ToolbarMessage.tsx +3 -0
  44. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarMessage.spec.tsx.snap +8 -0
  45. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +20 -23
  46. package/src/theme/components/button.ts +10 -0
  47. package/src/theme/components/progress.ts +21 -26
  48. package/src/theme/components/search.ts +2 -10
  49. package/src/theme/components/toolbar.ts +2 -0
  50. package/src/utils/helpers.ts +9 -0
  51. package/stats/8.92.2/rn-stats.html +4842 -0
  52. package/stats/8.92.3/rn-stats.html +4842 -0
  53. package/types/components/Button/StyledButton.d.ts +2 -2
  54. package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +1 -1
  55. package/types/components/Icon/IconList.d.ts +1 -1
  56. package/types/components/Icon/index.d.ts +1 -1
  57. package/types/components/Progress/StyledProgressCircle.d.ts +1 -32
  58. package/types/components/Search/StyledSearch.d.ts +0 -1
  59. package/types/components/TextInput/index.d.ts +1 -1
  60. package/types/theme/components/button.d.ts +3 -0
  61. package/types/theme/components/progress.d.ts +6 -6
  62. package/types/theme/components/search.d.ts +2 -10
  63. package/types/theme/components/toolbar.d.ts +2 -0
  64. package/types/utils/helpers.d.ts +1 -0
@@ -1,4 +1,4 @@
1
- (node:3004) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
1
+ (node:2980) 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.1s
13
+ created lib/index.js, es/index.js in 52.8s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.92.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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
8
+
9
+ - [#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
10
+
11
+ - [#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
12
+
13
+ - [#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
14
+
15
+ - [#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
16
+
17
+ - [#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
18
+
19
+ - [#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
20
+
21
+ ## 8.92.2
22
+
23
+ ### Patch Changes
24
+
25
+ - [#3733](https://github.com/Thinkei/hero-design/pull/3733) [`3704e47f0103bde351e4820b81f2ebcbafedc6a5`](https://github.com/Thinkei/hero-design/commit/3704e47f0103bde351e4820b81f2ebcbafedc6a5) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Calendar] Update selection logic
26
+
3
27
  ## 8.92.1
4
28
 
5
29
  ### Patch Changes
Binary file