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 a4f26e9006 - Show all commits
@@ -22,7 +22,9 @@
field: 'text', field: 'text',
direction: 'asc', direction: 'asc',
func: function(a, b) { func: function(a, b) {
return a.text.localeCompare(b.text, undefined, {numeric: true, sensitivity: 'base'}); const numA = parseInt(a.text, 10);
const numB = parseInt(b.text, 10);
return numA - numB;
} }
}] }]
}); });