@hero-design/rn 8.74.0 → 8.75.0-alpha.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 (51) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  3. package/es/index.js +800 -529
  4. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  5. package/lib/index.js +800 -528
  6. package/package.json +4 -4
  7. package/src/components/BottomSheet/__tests__/index.spec.tsx +17 -153
  8. package/src/components/BottomSheet/index.tsx +14 -13
  9. package/src/components/Collapse/__tests__/index.spec.tsx +2 -5
  10. package/src/components/FloatingIsland/StyledFloatingIsland.tsx +32 -0
  11. package/src/components/FloatingIsland/__tests__/__snapshots__/index.spec.tsx.snap +561 -0
  12. package/src/components/FloatingIsland/__tests__/index.spec.tsx +67 -0
  13. package/src/components/FloatingIsland/index.tsx +94 -0
  14. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  15. package/src/components/Icon/IconList.ts +4 -0
  16. package/src/components/Toolbar/StyledToolbar.tsx +50 -1
  17. package/src/components/Toolbar/ToolbarMessage.tsx +169 -0
  18. package/src/components/Toolbar/__tests__/ToolbarMessage.spec.tsx +161 -0
  19. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarMessage.spec.tsx.snap +382 -0
  20. package/src/components/Toolbar/index.tsx +2 -0
  21. package/src/index.ts +2 -0
  22. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +46 -0
  23. package/src/theme/components/floatingIsland.ts +31 -0
  24. package/src/theme/components/toolbar.ts +19 -1
  25. package/src/theme/getTheme.ts +3 -0
  26. package/stats/8.74.1/rn-stats.html +4842 -0
  27. package/stats/8.75.0/rn-stats.html +4844 -0
  28. package/types/components/CompoundSearch/CompoundSearchHandler.d.ts +31 -0
  29. package/types/components/CompoundSearch/CompoundSearchTextInput.d.ts +60 -0
  30. package/types/components/CompoundSearch/StyledCompoundSearch.d.ts +40 -0
  31. package/types/components/CompoundSearch/index.d.ts +8 -0
  32. package/types/components/CompoundSearch/utils.d.ts +8 -0
  33. package/types/components/FloatingIsland/SingleLine/StyledSingleLine.d.ts +15 -0
  34. package/types/components/FloatingIsland/SingleLine/index.d.ts +24 -0
  35. package/types/components/FloatingIsland/StyledFloatingIsland.d.ts +19 -0
  36. package/types/components/FloatingIsland/index.d.ts +23 -0
  37. package/types/components/Icon/IconList.d.ts +1 -1
  38. package/types/components/Icon/index.d.ts +1 -1
  39. package/types/components/Icon/utils.d.ts +1 -1
  40. package/types/components/Search/utils.d.ts +2 -2
  41. package/types/components/TextInput/index.d.ts +3 -3
  42. package/types/components/Toolbar/StyledToolbar.d.ts +33 -2
  43. package/types/components/Toolbar/ToolbarMessage.d.ts +59 -0
  44. package/types/components/Toolbar/index.d.ts +1 -0
  45. package/types/index.d.ts +2 -1
  46. package/types/theme/components/compoundSearch.d.ts +36 -0
  47. package/types/theme/components/floatingIsland.d.ts +32 -0
  48. package/types/theme/components/toolbar.d.ts +16 -0
  49. package/types/theme/getTheme.d.ts +2 -0
  50. package/.turbo/turbo-build.log +0 -8
  51. package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +0 -751
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.75.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#3459](https://github.com/Thinkei/hero-design/pull/3459) [`83f55b47168ad3c7b4b2099200c3e6ebc0db54df`](https://github.com/Thinkei/hero-design/commit/83f55b47168ad3c7b4b2099200c3e6ebc0db54df) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [FloatingIsland] Add commponent
8
+
9
+ ## 8.74.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#3457](https://github.com/Thinkei/hero-design/pull/3457) [`e8fd9ab44b7f6aab3046d1129be71aa0e9a5948f`](https://github.com/Thinkei/hero-design/commit/e8fd9ab44b7f6aab3046d1129be71aa0e9a5948f) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [BottomSheet] Resolve onDismiss being called twice
14
+
15
+ - [#3456](https://github.com/Thinkei/hero-design/pull/3456) [`8a9f0cb48060aa771d4236455acd7fe8d0cee9cf`](https://github.com/Thinkei/hero-design/commit/8a9f0cb48060aa771d4236455acd7fe8d0cee9cf) Thanks [@vuvohoang](https://github.com/vuvohoang)! - Add new icons: evening-outlined, afternoon-outlined, morning-outlined, dot-filled
16
+
3
17
  ## 8.74.0
4
18
 
5
19
  ### Minor Changes
Binary file