igniteui-angular 20.1.22 → 20.1.23
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.
|
@@ -46464,7 +46464,8 @@ class IgxColumnComponent {
|
|
|
46464
46464
|
}
|
|
46465
46465
|
else {
|
|
46466
46466
|
const currentWidth = parseFloat(this.grid.getPossibleColumnWidth());
|
|
46467
|
-
|
|
46467
|
+
const target = size && size.ref ? size.ref : this;
|
|
46468
|
+
result.push(target.getConstrainedSizePx(currentWidth) + 'px');
|
|
46468
46469
|
}
|
|
46469
46470
|
}
|
|
46470
46471
|
return result;
|
|
@@ -46898,7 +46899,7 @@ class IgxColumnComponent {
|
|
|
46898
46899
|
this.widthConstrained = true;
|
|
46899
46900
|
return this.userSetMinWidthPx;
|
|
46900
46901
|
}
|
|
46901
|
-
else if (!this.minWidth && (!this.widthSetByUser || this.width === 'fit-content') && !this.grid.columnWidthSetByUser && (!newSize || newSize <= this.grid.minColumnWidth)) {
|
|
46902
|
+
else if (!this.columnGroup && !this.minWidth && (!this.widthSetByUser || this.width === 'fit-content') && !this.grid.columnWidthSetByUser && (!newSize || newSize <= this.grid.minColumnWidth)) {
|
|
46902
46903
|
return this.grid.minColumnWidth;
|
|
46903
46904
|
}
|
|
46904
46905
|
else {
|
|
@@ -84002,7 +84003,7 @@ class IgxPaginatorComponent {
|
|
|
84002
84003
|
* By default it uses EN resources.
|
|
84003
84004
|
*/
|
|
84004
84005
|
set resourceStrings(value) {
|
|
84005
|
-
this._resourceStrings = Object.assign({}, this.
|
|
84006
|
+
this._resourceStrings = Object.assign({}, this.resourceStrings, value);
|
|
84006
84007
|
}
|
|
84007
84008
|
/**
|
|
84008
84009
|
* An accessor that returns the resource strings.
|