@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.
- package/CHANGELOG.md +14 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +800 -529
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +800 -528
- package/package.json +4 -4
- package/src/components/BottomSheet/__tests__/index.spec.tsx +17 -153
- package/src/components/BottomSheet/index.tsx +14 -13
- package/src/components/Collapse/__tests__/index.spec.tsx +2 -5
- package/src/components/FloatingIsland/StyledFloatingIsland.tsx +32 -0
- package/src/components/FloatingIsland/__tests__/__snapshots__/index.spec.tsx.snap +561 -0
- package/src/components/FloatingIsland/__tests__/index.spec.tsx +67 -0
- package/src/components/FloatingIsland/index.tsx +94 -0
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +4 -0
- package/src/components/Toolbar/StyledToolbar.tsx +50 -1
- package/src/components/Toolbar/ToolbarMessage.tsx +169 -0
- package/src/components/Toolbar/__tests__/ToolbarMessage.spec.tsx +161 -0
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarMessage.spec.tsx.snap +382 -0
- package/src/components/Toolbar/index.tsx +2 -0
- package/src/index.ts +2 -0
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +46 -0
- package/src/theme/components/floatingIsland.ts +31 -0
- package/src/theme/components/toolbar.ts +19 -1
- package/src/theme/getTheme.ts +3 -0
- package/stats/8.74.1/rn-stats.html +4842 -0
- package/stats/8.75.0/rn-stats.html +4844 -0
- package/types/components/CompoundSearch/CompoundSearchHandler.d.ts +31 -0
- package/types/components/CompoundSearch/CompoundSearchTextInput.d.ts +60 -0
- package/types/components/CompoundSearch/StyledCompoundSearch.d.ts +40 -0
- package/types/components/CompoundSearch/index.d.ts +8 -0
- package/types/components/CompoundSearch/utils.d.ts +8 -0
- package/types/components/FloatingIsland/SingleLine/StyledSingleLine.d.ts +15 -0
- package/types/components/FloatingIsland/SingleLine/index.d.ts +24 -0
- package/types/components/FloatingIsland/StyledFloatingIsland.d.ts +19 -0
- package/types/components/FloatingIsland/index.d.ts +23 -0
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/Icon/utils.d.ts +1 -1
- package/types/components/Search/utils.d.ts +2 -2
- package/types/components/TextInput/index.d.ts +3 -3
- package/types/components/Toolbar/StyledToolbar.d.ts +33 -2
- package/types/components/Toolbar/ToolbarMessage.d.ts +59 -0
- package/types/components/Toolbar/index.d.ts +1 -0
- package/types/index.d.ts +2 -1
- package/types/theme/components/compoundSearch.d.ts +36 -0
- package/types/theme/components/floatingIsland.d.ts +32 -0
- package/types/theme/components/toolbar.d.ts +16 -0
- package/types/theme/getTheme.d.ts +2 -0
- package/.turbo/turbo-build.log +0 -8
- 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
|