You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the table component uses a fixed alphanumeric sorting function (sortingFn: "alphanumeric"). This limits the flexibility when working with special data types like BigInt or custom sorting requirements.
Current Limitations
No way to specify custom sorting functions through the SortingShape interface
Fixed alphanumeric sorting which doesn't work well for special data types
Can't implement domain-specific sorting logic
Proposed Solution
Add support for custom sorting functions by:
Adding an optional sortingFn property to SortingShape interface
Allowing pass-through of custom sorting functions to the underlying table component
The text was updated successfully, but these errors were encountered:
Description
Currently, the table component uses a fixed alphanumeric sorting function (
sortingFn: "alphanumeric"
). This limits the flexibility when working with special data types like BigInt or custom sorting requirements.Current Limitations
SortingShape
interfaceProposed Solution
Add support for custom sorting functions by:
sortingFn
property toSortingShape
interfaceThe text was updated successfully, but these errors were encountered: