@hero-design/rn 8.102.0-alpha.0 → 8.102.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 +3 -3
- package/CHANGELOG.md +4 -4
- package/es/index.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/components/Select/SingleSelect/index.tsx +1 -1
- package/stats/8.102.0/rn-stats.html +4842 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
(node:
|
|
1
|
+
(node:3176) 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
|
[36m
|
|
4
4
|
[1msrc/index.ts[22m → [1mlib/index.js, es/index.js[22m...[39m
|
|
@@ -15,9 +15,9 @@ node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/sr
|
|
|
15
15
|
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~[0m
|
|
16
16
|
[39m
|
|
17
17
|
[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
|
|
18
|
-
[32mcreated [1mlib/index.js, es/index.js[22m in [1m1m
|
|
18
|
+
[32mcreated [1mlib/index.js, es/index.js[22m in [1m1m 11.7s[22m[39m
|
|
19
19
|
[36m
|
|
20
20
|
[1m/home/runner/work/hero-design/hero-design/packages/rn/src/locales/en_AU.ts, /home/runner/work/hero-design/hero-design/packages/rn/src/locales/en_CA.ts, /home/runner/work/hero-design/hero-design/packages/rn/src/locales/index.ts, /home/runner/work/hero-design/hero-design/packages/rn/src/locales/types.ts[22m → [1m., .[22m...[39m
|
|
21
21
|
[1m[33m(!) Generated empty chunks[39m[22m
|
|
22
22
|
"locales/types" and "locales/types"
|
|
23
|
-
[32mcreated [1m., .[22m in [
|
|
23
|
+
[32mcreated [1m., .[22m in [1m22.2s[22m[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
-
## 8.102.0
|
|
3
|
+
## 8.102.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
- [`
|
|
7
|
+
- [`849b412c2d217b636342dcd42ce0f4553c446762`](https://github.com/Thinkei/hero-design/commit/849b412c2d217b636342dcd42ce0f4553c446762) Thanks [@ttkien](https://github.com/ttkien)! - export styled function
|
|
8
8
|
|
|
9
9
|
### Patch Changes
|
|
10
10
|
|
|
11
|
-
- [`
|
|
11
|
+
- [#3998](https://github.com/Thinkei/hero-design/pull/3998) [`7d043a147897938f2c6d59b7716be72dfc40d168`](https://github.com/Thinkei/hero-design/commit/7d043a147897938f2c6d59b7716be72dfc40d168) Thanks [@ttkien](https://github.com/ttkien)! - export types from rn to resolve type error in playground
|
|
12
12
|
|
|
13
|
-
- [`
|
|
13
|
+
- [#3999](https://github.com/Thinkei/hero-design/pull/3999) [`28a6ab3090ec7d2a596de5c5838072b12f5c6104`](https://github.com/Thinkei/hero-design/commit/28a6ab3090ec7d2a596de5c5838072b12f5c6104) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [TextInput] Update internal border testID
|
|
14
14
|
|
|
15
15
|
## 8.101.3
|
|
16
16
|
|
package/es/index.js
CHANGED
|
@@ -25352,7 +25352,7 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
25352
25352
|
renderOption: renderOption,
|
|
25353
25353
|
value: value,
|
|
25354
25354
|
onPress: function onPress(selectedValue) {
|
|
25355
|
-
|
|
25355
|
+
setOpen(false);
|
|
25356
25356
|
onConfirm(selectedValue);
|
|
25357
25357
|
},
|
|
25358
25358
|
sectionListRef: sectionListRef,
|
package/lib/index.js
CHANGED
|
@@ -25381,7 +25381,7 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
25381
25381
|
renderOption: renderOption,
|
|
25382
25382
|
value: value,
|
|
25383
25383
|
onPress: function onPress(selectedValue) {
|
|
25384
|
-
|
|
25384
|
+
setOpen(false);
|
|
25385
25385
|
onConfirm(selectedValue);
|
|
25386
25386
|
},
|
|
25387
25387
|
sectionListRef: sectionListRef,
|
package/package.json
CHANGED