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.
- package/esm2020/lib/core/utils/validators.mjs +2 -2
- package/fesm2015/monkey-front-core.mjs +1 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +1 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.577.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.576.tgz +0 -0
|
@@ -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 {
|
|
1578
|
+
return { fullName: true };
|
|
1579
1579
|
}
|
|
1580
1580
|
return null;
|
|
1581
1581
|
}
|