@firestitch/list 12.12.10 → 12.12.11

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.
@@ -3227,7 +3227,7 @@
3227
3227
  return;
3228
3228
  }
3229
3229
  this.sortBy(column);
3230
- this.sortDirection(exports.SortingDirection.asc);
3230
+ this.sortDirection(column.direction || exports.SortingDirection.asc);
3231
3231
  };
3232
3232
  SortingController.prototype.getColumn = function (name) {
3233
3233
  return __spreadArray(__spreadArray([], __read(this.sortingColumns)), __read(this.fakeSortingColumns)).find(function (col) { return col.name === name && col.sortable; });