@sd-angular/core 1.3.185 → 1.3.186

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.
@@ -4467,12 +4467,16 @@
4467
4467
  this.renderer = renderer;
4468
4468
  this.cellDef = {};
4469
4469
  }
4470
- SdDesktopCell.prototype.set = function (column) {
4471
- this.column = column;
4472
- if (column.width) {
4473
- this.renderer.setStyle(this.elementRef.nativeElement, 'width', column.width);
4474
- }
4475
- };
4470
+ Object.defineProperty(SdDesktopCell.prototype, "_column", {
4471
+ set: function (column) {
4472
+ this.column = column;
4473
+ if (column.width) {
4474
+ this.renderer.setStyle(this.elementRef.nativeElement, 'min-width', column.width);
4475
+ }
4476
+ },
4477
+ enumerable: false,
4478
+ configurable: true
4479
+ });
4476
4480
  return SdDesktopCell;
4477
4481
  }());
4478
4482
  SdDesktopCell.decorators = [
@@ -4490,7 +4494,7 @@
4490
4494
  sdId: [{ type: core.Input }],
4491
4495
  value: [{ type: core.Input }],
4492
4496
  key: [{ type: core.Input }],
4493
- set: [{ type: core.Input, args: ['column',] }],
4497
+ _column: [{ type: core.Input, args: ['column',] }],
4494
4498
  item: [{ type: core.Input }],
4495
4499
  gridOption: [{ type: core.Input }],
4496
4500
  cellDef: [{ type: core.Input }],