@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.
- package/bundles/sd-angular-core-grid-material.umd.js +11 -7
- 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/esm2015/grid-material/src/lib/components/desktop-cell/desktop-cell.component.js +4 -4
- package/fesm2015/sd-angular-core-grid-material.js +3 -3
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
- package/grid-material/src/lib/components/desktop-cell/desktop-cell.component.d.ts +1 -1
- package/package.json +1 -1
- package/{sd-angular-core-1.3.185.tgz → sd-angular-core-1.3.186.tgz} +0 -0
|
@@ -4467,12 +4467,16 @@
|
|
|
4467
4467
|
this.renderer = renderer;
|
|
4468
4468
|
this.cellDef = {};
|
|
4469
4469
|
}
|
|
4470
|
-
SdDesktopCell.prototype
|
|
4471
|
-
|
|
4472
|
-
|
|
4473
|
-
|
|
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
|
-
|
|
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 }],
|