@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.
@@ -1,4 +1,4 @@
1
- (node:4126) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
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
  
4
4
  src/index.ts → lib/index.js, es/index.js...
@@ -15,9 +15,9 @@ node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/sr
15
15
     ~~~~~~~~~~~~~~~~~~~
16
16
  
17
17
  (!) [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.
18
- created lib/index.js, es/index.js in 1m 12.2s
18
+ created lib/index.js, es/index.js in 1m 11.7s
19
19
  
20
20
  /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 → ., ....
21
21
  (!) Generated empty chunks
22
22
  "locales/types" and "locales/types"
23
- created ., . in 26s
23
+ created ., . in 22.2s
package/CHANGELOG.md CHANGED
@@ -1,16 +1,16 @@
1
1
  # @hero-design/rn
2
2
 
3
- ## 8.102.0-alpha.0
3
+ ## 8.102.0
4
4
 
5
5
  ### Minor Changes
6
6
 
7
- - [`ef1eea9cfb01728a6c49985a15928e349fe06e9d`](https://github.com/Thinkei/hero-design/commit/ef1eea9cfb01728a6c49985a15928e349fe06e9d) Thanks [@TanNguyenEH](https://github.com/TanNguyenEH)! - export styled function
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
- - [`ef1eea9cfb01728a6c49985a15928e349fe06e9d`](https://github.com/Thinkei/hero-design/commit/ef1eea9cfb01728a6c49985a15928e349fe06e9d) Thanks [@TanNguyenEH](https://github.com/TanNguyenEH)! - export types from rn to resolve type error in playground
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
- - [`ef1eea9cfb01728a6c49985a15928e349fe06e9d`](https://github.com/Thinkei/hero-design/commit/ef1eea9cfb01728a6c49985a15928e349fe06e9d) Thanks [@TanNguyenEH](https://github.com/TanNguyenEH)! - [TextInput] Update internal border testID
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
- // setOpen(false);
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
- // setOpen(false);
25384
+ setOpen(false);
25385
25385
  onConfirm(selectedValue);
25386
25386
  },
25387
25387
  sectionListRef: sectionListRef,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hero-design/rn",
3
- "version": "8.102.0-alpha.0",
3
+ "version": "8.102.0",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -142,7 +142,7 @@ const SingleSelect = <V, T extends OptionType<V>>({
142
142
  renderOption={renderOption}
143
143
  value={value}
144
144
  onPress={(selectedValue) => {
145
- // setOpen(false);
145
+ setOpen(false);
146
146
  onConfirm(selectedValue);
147
147
  }}
148
148
  sectionListRef={sectionListRef}