@sd-angular/core 0.0.906 → 0.0.910
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/sd-angular-core-grid-material.umd.js +2 -1
- package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-select.umd.js +9 -10
- package/bundles/sd-angular-core-select.umd.js.map +1 -1
- package/bundles/sd-angular-core-select.umd.min.js +2 -2
- package/bundles/sd-angular-core-select.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-tab-router.umd.js +33 -18
- package/bundles/sd-angular-core-tab-router.umd.js.map +1 -1
- package/bundles/sd-angular-core-tab-router.umd.min.js +2 -2
- package/bundles/sd-angular-core-tab-router.umd.min.js.map +1 -1
- package/esm2015/grid-material/src/lib/grid-material.component.js +2 -1
- package/esm2015/grid-material/src/lib/pipes/column-transform.pipe.js +2 -2
- package/esm2015/select/src/lib/select.component.js +7 -7
- package/esm2015/tab-router/src/lib/components/tab-router-outlet/tab-router-outlet.component.js +30 -24
- package/fesm2015/sd-angular-core-grid-material.js +2 -1
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/fesm2015/sd-angular-core-select.js +6 -6
- package/fesm2015/sd-angular-core-select.js.map +1 -1
- package/fesm2015/sd-angular-core-tab-router.js +20 -14
- package/fesm2015/sd-angular-core-tab-router.js.map +1 -1
- package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
- package/package.json +1 -1
- package/{sd-angular-core-0.0.906.tgz → sd-angular-core-0.0.910.tgz} +0 -0
- package/select/sd-angular-core-select.metadata.json +1 -1
- package/select/src/lib/select.component.d.ts +2 -2
- package/tab-router/src/lib/components/tab-router-outlet/tab-router-outlet.component.d.ts +7 -7
|
@@ -2390,6 +2390,7 @@
|
|
|
2390
2390
|
});
|
|
2391
2391
|
var configuration = this.gridConfigurationService.init(this.key, this.gridOption);
|
|
2392
2392
|
this.gridConfigurationObserver = configuration.observer;
|
|
2393
|
+
configuration.load();
|
|
2393
2394
|
}
|
|
2394
2395
|
},
|
|
2395
2396
|
enumerable: false,
|
|
@@ -2744,7 +2745,7 @@
|
|
|
2744
2745
|
return Number.toVNCurrency(value); // this.decimalPipe.transform(value, '1.0-2');
|
|
2745
2746
|
}
|
|
2746
2747
|
if (column.type === 'bool') {
|
|
2747
|
-
return value === true ? (((_a = column.option) === null || _a === void 0 ? void 0 : _a.displayOnTrue) || 'True') : (((_b = column.option) === null || _b === void 0 ? void 0 : _b.
|
|
2748
|
+
return value === true ? (((_a = column.option) === null || _a === void 0 ? void 0 : _a.displayOnTrue) || 'True') : (((_b = column.option) === null || _b === void 0 ? void 0 : _b.displayOnFalse) || 'False');
|
|
2748
2749
|
}
|
|
2749
2750
|
return value;
|
|
2750
2751
|
};
|