@hero-design/rn 8.64.8-alpha.0 → 8.64.8

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,5 @@
1
+ 
2
+ src/index.ts → lib/index.js, es/index.js...
3
+ (!) 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`.
4
+ (!) 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
5
+ created lib/index.js, es/index.js in 1m 2.7s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.64.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3341](https://github.com/Thinkei/hero-design/pull/3341) [`64499bbbdc8c3ee3de9ed61fd1e2d15f95eea7e9`](https://github.com/Thinkei/hero-design/commit/64499bbbdc8c3ee3de9ed61fd1e2d15f95eea7e9) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [PinInput] Update validation logic
8
+
9
+ ## 8.64.7
10
+
11
+ ### Patch Changes
12
+
13
+ - [#3336](https://github.com/Thinkei/hero-design/pull/3336) [`34f5cb207ed68fcb4d2882e0175c7c085963332d`](https://github.com/Thinkei/hero-design/commit/34f5cb207ed68fcb4d2882e0175c7c085963332d) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [PinInput] Add value validation logic
14
+
3
15
  ## 8.64.6
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hero-design/rn",
3
- "version": "8.64.8-alpha.0",
3
+ "version": "8.64.8",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -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
  }
@@ -150,20 +150,6 @@ describe('behaviors', () => {
150
150
  }
151
151
  }
152
152
  );
153
- it('does not allow typing when the max length is reached', () => {
154
- const onChangeText = jest.fn();
155
- const onFulfill = jest.fn();
156
- const { getByTestId } = renderWithTheme(
157
- <PinInput value="" onChangeText={onChangeText} onFulfill={onFulfill} />
158
- );
159
-
160
- const pinInput = getByTestId('pin-hidden-input');
161
- fireEvent.changeText(pinInput, '1234');
162
- fireEvent.changeText(pinInput, '56789');
163
-
164
- expect(onChangeText).toHaveBeenCalledTimes(1);
165
- expect(onFulfill).toHaveBeenCalledTimes(1);
166
- });
167
153
  });
168
154
 
169
155
  describe('getState', () => {