Add additional information to album: record label, release type, version (#1242)

* Add additional information to album

* add mbz release types and normalization

* update Pill styling

---------

Co-authored-by: jeffvli <jeffvictorli@gmail.com>
This commit is contained in:
Kendall Garner
2025-11-03 08:34:42 +00:00
committed by GitHub
parent 3fe6ccf300
commit e26ffaac53
12 changed files with 223 additions and 40 deletions
+9
View File
@@ -0,0 +1,9 @@
import { PillVariant } from '@mantine/core';
type ExtendedPillVariant = 'outline' | PillVariant;
declare module '@mantine/core' {
export interface PillProps {
variant?: ExtendedPillVariant;
}
}