feat: install and scaffold Tablar theme #6

Merged
rlong merged 139 commits from feature/tablar-theme into master 2026-05-02 16:01:21 -04:00
Showing only changes of commit 2521246bda - Show all commits
@@ -22,12 +22,7 @@
field: 'text',
direction: 'asc',
func: function(a, b) {
const valA = parseInt(a.text, 10);
const valB = parseInt(b.text, 10);
if (isNaN(valA) || isNaN(valB)) {
return a.text.localeCompare(b.text);
}
return valA - valB;
return a.text.localeCompare(b.text, undefined, {numeric: true, sensitivity: 'base'});
}
}
});