@senior-agronegocio/angular-components 0.0.9852 → 0.0.9853
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/bundles/senior-agronegocio-angular-components.umd.js +3 -1
- package/bundles/senior-agronegocio-angular-components.umd.js.map +1 -1
- package/bundles/senior-agronegocio-angular-components.umd.min.js +1 -1
- package/bundles/senior-agronegocio-angular-components.umd.min.js.map +1 -1
- package/esm2015/common/agro-object-stringifier.class.js +4 -2
- package/esm5/common/agro-object-stringifier.class.js +4 -2
- package/fesm2015/senior-agronegocio-angular-components.js +3 -1
- package/fesm2015/senior-agronegocio-angular-components.js.map +1 -1
- package/fesm5/senior-agronegocio-angular-components.js +3 -1
- package/fesm5/senior-agronegocio-angular-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -6796,7 +6796,9 @@
|
|
|
6796
6796
|
return value !== null && value !== void 0 ? value : "";
|
|
6797
6797
|
}
|
|
6798
6798
|
function filterValid(v) {
|
|
6799
|
-
|
|
6799
|
+
if (typeof v === "number" || AgroStringUtils.isValid(v)) {
|
|
6800
|
+
return true;
|
|
6801
|
+
}
|
|
6800
6802
|
}
|
|
6801
6803
|
return fields.map(mapField).filter(filterValid).join(" " + separator + " ");
|
|
6802
6804
|
};
|