@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.
Files changed (28) hide show
  1. package/bundles/sd-angular-core-grid-material.umd.js +2 -1
  2. package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
  3. package/bundles/sd-angular-core-grid-material.umd.min.js +1 -1
  4. package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
  5. package/bundles/sd-angular-core-select.umd.js +9 -10
  6. package/bundles/sd-angular-core-select.umd.js.map +1 -1
  7. package/bundles/sd-angular-core-select.umd.min.js +2 -2
  8. package/bundles/sd-angular-core-select.umd.min.js.map +1 -1
  9. package/bundles/sd-angular-core-tab-router.umd.js +33 -18
  10. package/bundles/sd-angular-core-tab-router.umd.js.map +1 -1
  11. package/bundles/sd-angular-core-tab-router.umd.min.js +2 -2
  12. package/bundles/sd-angular-core-tab-router.umd.min.js.map +1 -1
  13. package/esm2015/grid-material/src/lib/grid-material.component.js +2 -1
  14. package/esm2015/grid-material/src/lib/pipes/column-transform.pipe.js +2 -2
  15. package/esm2015/select/src/lib/select.component.js +7 -7
  16. package/esm2015/tab-router/src/lib/components/tab-router-outlet/tab-router-outlet.component.js +30 -24
  17. package/fesm2015/sd-angular-core-grid-material.js +2 -1
  18. package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
  19. package/fesm2015/sd-angular-core-select.js +6 -6
  20. package/fesm2015/sd-angular-core-select.js.map +1 -1
  21. package/fesm2015/sd-angular-core-tab-router.js +20 -14
  22. package/fesm2015/sd-angular-core-tab-router.js.map +1 -1
  23. package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
  24. package/package.json +1 -1
  25. package/{sd-angular-core-0.0.906.tgz → sd-angular-core-0.0.910.tgz} +0 -0
  26. package/select/sd-angular-core-select.metadata.json +1 -1
  27. package/select/src/lib/select.component.d.ts +2 -2
  28. 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.displayOnTrue) || 'False');
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
  };