x-ui-design 0.5.80 → 0.5.81

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/compile.sh CHANGED
@@ -10,5 +10,6 @@ git commit -m "Push command from compile"
10
10
  npm version patch
11
11
 
12
12
  git push origin main
13
+ git push spring-origin main
13
14
 
14
15
  npm publish
package/dist/index.esm.js CHANGED
@@ -709,6 +709,7 @@ const useForm = (initialValues = {}, onFieldsChange, onValuesChange, scrollToFir
709
709
  }
710
710
  function isFieldsTouched(nameList, allFieldsTouched = false) {
711
711
  if (!nameList) {
712
+ console.info(touchedFieldsRef.current);
712
713
  return touchedFieldsRef.current.size > 0;
713
714
  }
714
715
  return allFieldsTouched ? nameList.every(name => touchedFieldsRef.current.has(name)) : nameList.some(name => touchedFieldsRef.current.has(name));