Updated reports components.

This commit is contained in:
Mike Cao 2025-03-26 21:54:23 -07:00
parent f5bc3dc6c2
commit 0f6cdf8b80
95 changed files with 580 additions and 698 deletions

View file

@ -195,31 +195,15 @@ export const ROLE_PERMISSIONS = {
export const THEME_COLORS = {
light: {
primary: '#2680eb',
gray50: '#ffffff',
gray75: '#fafafa',
gray100: '#f5f5f5',
gray200: '#eaeaea',
gray300: '#e1e1e1',
gray400: '#cacaca',
gray500: '#b3b3b3',
gray600: '#8e8e8e',
gray700: '#6e6e6e',
gray800: '#4b4b4b',
gray900: '#2c2c2c',
text: '#838383',
line: '#d9d9d9',
fill: '#f9f9f9',
},
dark: {
primary: '#2680eb',
gray50: '#252525',
gray75: '#2f2f2f',
gray100: '#323232',
gray200: '#3e3e3e',
gray300: '#4a4a4a',
gray400: '#5a5a5a',
gray500: '#6e6e6e',
gray600: '#909090',
gray700: '#b9b9b9',
gray800: '#e3e3e3',
gray900: '#ffffff',
text: '#7b7b7b',
line: '#3a3a3a',
fill: '#191919',
},
};

View file

@ -108,7 +108,7 @@ export function isValidTimezone(timezone: string) {
try {
Intl.DateTimeFormat(undefined, { timeZone: timezone });
return true;
} catch (error) {
} catch {
return false;
}
}

View file

@ -90,7 +90,7 @@ export function formatCurrency(value: number, currency: string, locale = 'en-US'
style: 'currency',
currency: currency,
});
} catch (error) {
} catch {
// Fallback to default currency format if an error occurs
formattedValue = new Intl.NumberFormat(locale, {
style: 'currency',

View file

@ -22,7 +22,7 @@ export function safeDecodeURI(s: string | undefined | null): string | undefined
try {
return decodeURI(s);
} catch (e) {
} catch {
return s;
}
}
@ -34,7 +34,7 @@ export function safeDecodeURIComponent(s: string | undefined | null): string | u
try {
return decodeURIComponent(s);
} catch (e) {
} catch {
return s;
}
}