add grouping and totals

This commit is contained in:
2024-08-29 02:32:30 +02:00
parent 796d866a33
commit bfb0949c25
13 changed files with 636 additions and 25 deletions

View File

@@ -0,0 +1,36 @@
import { extendTailwindMerge } from "tailwind-merge";
export const tremorTwMerge = extendTailwindMerge({
classGroups: {
boxShadow: [
{
shadow: [
{
tremor: ["input", "card", "dropdown"],
"dark-tremor": ["input", "card", "dropdown"],
},
],
},
],
borderRadius: [
{
rounded: [
{
tremor: ["small", "default", "full"],
"dark-tremor": ["small", "default", "full"],
},
],
},
],
fontSize: [
{
text: [
{
tremor: ["default", "title", "metric"],
"dark-tremor": ["default", "title", "metric"],
},
],
},
],
},
});