monkey-front-core 0.0.226 → 0.0.229
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/pipes/monkeyecx-format-type-document.mjs +3 -3
- package/fesm2015/monkey-front-core.mjs +2 -2
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +2 -2
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/pipes/monkeyecx-format-type-document.d.ts +1 -1
- package/monkey-front-core-0.0.229.tgz +0 -0
- package/package.json +3 -3
- package/monkey-front-core-0.0.226.tgz +0 -0
|
@@ -472,10 +472,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
472
472
|
}] });
|
|
473
473
|
|
|
474
474
|
class MonkeyEcxFormatDocumentTypePipe {
|
|
475
|
-
transform(document) {
|
|
475
|
+
transform(document, country) {
|
|
476
476
|
if (!MonkeyEcxUtils.persistNullEmptyUndefined(document))
|
|
477
477
|
return '';
|
|
478
|
-
return MonkeyEcxUtils.getDocumentType(document);
|
|
478
|
+
return MonkeyEcxUtils.getDocumentType(document, country);
|
|
479
479
|
}
|
|
480
480
|
}
|
|
481
481
|
MonkeyEcxFormatDocumentTypePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|