igniteui-angular 19.2.29 → 19.2.30
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.
|
@@ -1120,7 +1120,12 @@ class IgxSorting {
|
|
|
1120
1120
|
const isDate = column?.dataType === DATE_TYPE || column?.dataType === DATE_TIME_TYPE;
|
|
1121
1121
|
const isTime = column?.dataType === TIME_TYPE || column?.dataType === DATE_TIME_TYPE;
|
|
1122
1122
|
const isString = column?.dataType === STRING_TYPE;
|
|
1123
|
-
|
|
1123
|
+
if (expr.dir === SortingDirection.None) {
|
|
1124
|
+
data = this.sortDataRecursive(data, expressions, expressionIndex + 1, grid);
|
|
1125
|
+
}
|
|
1126
|
+
else {
|
|
1127
|
+
data = expr.strategy.sort(data, expr.fieldName, expr.dir, expr.ignoreCase, this.getFieldValue, isDate, isTime, grid);
|
|
1128
|
+
}
|
|
1124
1129
|
if (expressionIndex === exprsLen - 1) {
|
|
1125
1130
|
return data;
|
|
1126
1131
|
}
|
|
@@ -93036,12 +93041,10 @@ class IgxSplitterComponent {
|
|
|
93036
93041
|
onMoveEnd(delta) {
|
|
93037
93042
|
let [paneSize, siblingSize] = this.calcNewSizes(delta);
|
|
93038
93043
|
if (paneSize + siblingSize > this.getTotalSize() && delta < 0) {
|
|
93039
|
-
|
|
93040
|
-
siblingSize = 0;
|
|
93044
|
+
siblingSize = this.getTotalSize() - paneSize;
|
|
93041
93045
|
}
|
|
93042
93046
|
else if (paneSize + siblingSize > this.getTotalSize() && delta > 0) {
|
|
93043
|
-
paneSize =
|
|
93044
|
-
siblingSize = this.getTotalSize();
|
|
93047
|
+
paneSize = this.getTotalSize() - siblingSize;
|
|
93045
93048
|
}
|
|
93046
93049
|
if (this.pane.isPercentageSize) {
|
|
93047
93050
|
// handle % resizes
|