@hero-design/rn-work-uikit 1.2.3-alpha.0 → 1.3.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 CHANGED
@@ -1,11 +1,19 @@
1
1
  # @hero-design/rn-work-uikit
2
2
 
3
- ## 1.2.3-alpha.0
3
+ ## 1.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#4057](https://github.com/Thinkei/hero-design/pull/4057) [`d325c8ec38c827e494e078e3732a232b966f2dc6`](https://github.com/Thinkei/hero-design/commit/d325c8ec38c827e494e078e3732a232b966f2dc6) Thanks [@ttkien](https://github.com/ttkien)! - [Select] Apply new TextInput
8
+
9
+ ## 1.2.3
4
10
 
5
11
  ### Patch Changes
6
12
 
7
- - Updated dependencies [[`e92d1dab57316441e7b5054debe823328e1a1083`](https://github.com/Thinkei/hero-design/commit/e92d1dab57316441e7b5054debe823328e1a1083)]:
8
- - @hero-design/rn@8.103.2-alpha.0
13
+ - [#4050](https://github.com/Thinkei/hero-design/pull/4050) [`44c253319e985a85bf75e00effc140733dd73ee9`](https://github.com/Thinkei/hero-design/commit/44c253319e985a85bf75e00effc140733dd73ee9) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - Revert BottomSheet Fix overlapping with dynamic island in iOS
14
+
15
+ - Updated dependencies [[`44c253319e985a85bf75e00effc140733dd73ee9`](https://github.com/Thinkei/hero-design/commit/44c253319e985a85bf75e00effc140733dd73ee9)]:
16
+ - @hero-design/rn@8.103.2
9
17
 
10
18
  ## 1.2.2
11
19
 
package/babel.config.js CHANGED
@@ -1,3 +1,7 @@
1
+ const alias = {
2
+ '@hero-design/rn': '../rn/src/index.internal.ts'
3
+ };
4
+
1
5
  module.exports = function (api) {
2
6
  const isFromRollup = api.caller(
3
7
  (caller) => caller && caller.name === '@rollup/plugin-babel'
@@ -17,6 +21,7 @@ module.exports = function (api) {
17
21
  extensions: ['hero-editor/dist/app.js'],
18
22
  },
19
23
  ],
24
+ ['module-resolver', { alias }],
20
25
  ],
21
26
  };
22
27
  }
@@ -33,6 +38,7 @@ module.exports = function (api) {
33
38
  extensions: ['hero-editor/dist/app.js'],
34
39
  },
35
40
  ],
41
+ ['module-resolver', { alias }],
36
42
  ],
37
43
  };
38
44
  };