@hero-design/rn 8.73.1 → 8.74.1-test.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/.turbo/turbo-build.log +2 -3
- package/CHANGELOG.md +26 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +398 -396
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +398 -396
- package/package.json +4 -4
- package/src/components/BottomSheet/index.tsx +13 -14
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/HeroIcon/index.tsx +3 -1
- package/src/components/Icon/IconList.ts +4 -0
- package/src/components/Icon/__tests__/__snapshots__/index.spec.tsx.snap +405 -0
- package/src/components/Icon/__tests__/index.spec.tsx +14 -2
- package/src/components/Icon/index.tsx +2 -1
- package/src/components/Typography/Body/__tests__/__snapshots__/index.spec.tsx.snap +51 -0
- package/src/components/Typography/Body/__tests__/index.spec.tsx +1 -0
- package/src/components/Typography/Body/index.tsx +2 -1
- package/src/components/Typography/Caption/__tests__/__snapshots__/index.spec.tsx.snap +50 -0
- package/src/components/Typography/Caption/__tests__/index.spec.tsx +1 -0
- package/src/components/Typography/Caption/index.tsx +2 -1
- package/src/components/Typography/Label/__tests__/__snapshots__/index.spec.tsx.snap +48 -0
- package/src/components/Typography/Label/__tests__/index.spec.tsx +1 -0
- package/src/components/Typography/Label/index.tsx +2 -1
- package/src/components/Typography/Title/__tests__/__snapshots__/index.spec.tsx.snap +51 -0
- package/src/components/Typography/Title/__tests__/index.spec.tsx +1 -0
- package/src/components/Typography/Title/index.tsx +2 -1
- package/src/components/Typography/types.ts +2 -1
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +2 -0
- package/src/theme/components/icon.ts +1 -0
- package/src/theme/components/typography.ts +1 -0
- package/stats/8.74.0/rn-stats.html +4842 -0
- package/stats/8.74.1/rn-stats.html +4844 -0
- package/stats/8.74.1-test.0/rn-stats.html +4842 -0
- package/types/components/Icon/HeroIcon/index.d.ts +1 -1
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +2 -2
- 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/Typography/Body/index.d.ts +1 -1
- package/types/components/Typography/Caption/index.d.ts +1 -1
- package/types/components/Typography/Label/index.d.ts +1 -1
- package/types/components/Typography/Title/index.d.ts +1 -1
- package/types/components/Typography/types.d.ts +1 -1
- package/types/theme/components/icon.d.ts +1 -0
- package/types/theme/components/typography.d.ts +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
(node:
|
|
1
|
+
(node:2105) 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
|
-
(node:2943) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
|
|
4
3
|
[36m
|
|
5
4
|
[1msrc/index.ts[22m → [1mlib/index.js, es/index.js[22m...[39m
|
|
6
5
|
[1m[33m(!) [plugin replace] @rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`.[39m[22m
|
|
7
6
|
[1m[33m(!) [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.[39m[22m
|
|
8
|
-
[32mcreated [1mlib/index.js, es/index.js[22m in [1m50.
|
|
7
|
+
[32mcreated [1mlib/index.js, es/index.js[22m in [1m50.8s[22m[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
+
## 8.74.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3461](https://github.com/Thinkei/hero-design/pull/3461) [`9427c560bb87abf2977816c7b17ad6a1d44b33bc`](https://github.com/Thinkei/hero-design/commit/9427c560bb87abf2977816c7b17ad6a1d44b33bc) Thanks [@ttkien](https://github.com/ttkien)! - [BottomSheet] Resolve onDismiss being called twice
|
|
8
|
+
|
|
9
|
+
## 8.74.1-test.0
|
|
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
|
+
## 8.74.1-test.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#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
|
|
20
|
+
|
|
21
|
+
- [#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
|
|
22
|
+
|
|
23
|
+
## 8.74.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- [#3449](https://github.com/Thinkei/hero-design/pull/3449) [`b3029bb02497703734c5fab90aff67d20b94940b`](https://github.com/Thinkei/hero-design/commit/b3029bb02497703734c5fab90aff67d20b94940b) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Icon][typography] Add muted intent
|
|
28
|
+
|
|
3
29
|
## 8.73.1
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
|
Binary file
|