@hero-design/rn 8.81.1-alpha.0 → 8.81.2

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.
@@ -0,0 +1,7 @@
1
+ (node:2808) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
2
+ (Use `node --trace-warnings ...` to show where the warning was created)
3
+ 
4
+ src/index.ts → lib/index.js, es/index.js...
5
+ (!) [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`.
6
+ (!) [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.
7
+ created lib/index.js, es/index.js in 52.7s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.81.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3527](https://github.com/Thinkei/hero-design/pull/3527) [`228f8de96b09802ce890eeb6277a12a774af99ad`](https://github.com/Thinkei/hero-design/commit/228f8de96b09802ce890eeb6277a12a774af99ad) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [TimePicker] Fix bottom sheet value not in sync
8
+
3
9
  ## 8.81.1
4
10
 
5
11
  ### Patch Changes
package/es/index.js CHANGED
@@ -14462,7 +14462,7 @@ var customAlphabet = function customAlphabet(alphabet) {
14462
14462
  return function () {
14463
14463
  var size = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultSize;
14464
14464
  var id = '';
14465
- var i = size;
14465
+ var i = size | 0;
14466
14466
  while (i--) {
14467
14467
  id += alphabet[Math.random() * alphabet.length | 0];
14468
14468
  }
package/lib/index.js CHANGED
@@ -14489,7 +14489,7 @@ var customAlphabet = function customAlphabet(alphabet) {
14489
14489
  return function () {
14490
14490
  var size = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultSize;
14491
14491
  var id = '';
14492
- var i = size;
14492
+ var i = size | 0;
14493
14493
  while (i--) {
14494
14494
  id += alphabet[Math.random() * alphabet.length | 0];
14495
14495
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hero-design/rn",
3
- "version": "8.81.1-alpha.0",
3
+ "version": "8.81.2",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -25,7 +25,7 @@
25
25
  "@hero-design/colors": "8.45.1",
26
26
  "date-fns": "^2.16.1",
27
27
  "hero-editor": "^1.9.21",
28
- "nanoid": "^4.0.2"
28
+ "nanoid": "^5.0.9"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "@hero-design/react-native-month-year-picker": "^8.42.10",
@@ -93,6 +93,5 @@
93
93
  "ts-jest": "^29.1.1",
94
94
  "typescript": "4.8.4"
95
95
  },
96
- "prettier": "prettier-config-hd",
97
- "react-native": "src/index.ts"
96
+ "prettier": "prettier-config-hd"
98
97
  }