monkey-front-core 0.0.576 → 0.0.577

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.
@@ -1575,7 +1575,7 @@ function validateFullName(control) {
1575
1575
  const fullName = value.split(/\s+/);
1576
1576
  const hasShortPart = fullName.some(part => part.length < 2);
1577
1577
  if (fullName.length < 2 || hasShortPart) {
1578
- return { fullNameIncompleted: true };
1578
+ return { fullName: true };
1579
1579
  }
1580
1580
  return null;
1581
1581
  }