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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 223 additions and 40 deletions

9
src/types/mantine.d.ts vendored Normal file
View file

@ -0,0 +1,9 @@
import { PillVariant } from '@mantine/core';
type ExtendedPillVariant = 'outline' | PillVariant;
declare module '@mantine/core' {
export interface PillProps {
variant?: ExtendedPillVariant;
}
}