@sheinx/hooks 3.6.2-beta.3 → 3.6.2-beta.5

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 +1 @@
1
- {"version":3,"file":"use-form-control.d.ts","sourceRoot":"","sources":["use-form-control.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AA0B/D,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,CAAC,EAAE,KAAK,EAAE,oBAAoB,CAAC,CAAC,CAAC;;kBAiJpC,CAAC,YAAY,GAAG,EAAE;;;;;EAkDrD"}
1
+ {"version":3,"file":"use-form-control.d.ts","sourceRoot":"","sources":["use-form-control.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AA0B/D,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,CAAC,EAAE,KAAK,EAAE,oBAAoB,CAAC,CAAC,CAAC;;kBA6IpC,CAAC,YAAY,GAAG,EAAE;;;;;EAkDrD"}
@@ -232,8 +232,8 @@ function useFormControl(props) {
232
232
  if ((0, _is.isArray)(name)) {
233
233
  name.forEach(function (n) {
234
234
  controlFunc.unbind(n, reserveAble, validateField, update);
235
- updateError(n, undefined);
236
235
  });
236
+ updateError((0, _is.isArray)(name) ? name.join('|') : name, undefined);
237
237
  } else {
238
238
  controlFunc.unbind(name, reserveAble, validateField, update);
239
239
  updateError(name, undefined);
@@ -1 +1 @@
1
- {"version":3,"file":"use-form-control.d.ts","sourceRoot":"","sources":["use-form-control.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AA0B/D,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,CAAC,EAAE,KAAK,EAAE,oBAAoB,CAAC,CAAC,CAAC;;kBAiJpC,CAAC,YAAY,GAAG,EAAE;;;;;EAkDrD"}
1
+ {"version":3,"file":"use-form-control.d.ts","sourceRoot":"","sources":["use-form-control.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AA0B/D,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,CAAC,EAAE,KAAK,EAAE,oBAAoB,CAAC,CAAC,CAAC;;kBA6IpC,CAAC,YAAY,GAAG,EAAE;;;;;EAkDrD"}
@@ -223,8 +223,8 @@ export default function useFormControl(props) {
223
223
  if (isArray(name)) {
224
224
  name.forEach(function (n) {
225
225
  controlFunc.unbind(n, reserveAble, validateField, update);
226
- updateError(n, undefined);
227
226
  });
227
+ updateError(isArray(name) ? name.join('|') : name, undefined);
228
228
  } else {
229
229
  controlFunc.unbind(name, reserveAble, validateField, update);
230
230
  updateError(name, undefined);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sheinx/hooks",
3
- "version": "3.6.2-beta.3",
3
+ "version": "3.6.2-beta.5",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "MIT",