fix: apply theme colors to all admin pages
AdminDashboard: - Replace all gray colors with theme variables - Indonesian text: 'Selamat datang', 'Kelola Plans', etc. - Loading: 'Memuat...' AdminPlans: - bg-card, text-foreground, border-border - text-muted-foreground for secondary text - bg-muted for sections - text-primary for links/icons - text-destructive for delete - Indonesian: 'Kelola Plans', 'Tambah Plan', 'Tidak ada plan' AdminUsers: - Same theme color replacements - Indonesian: 'Kelola Users', 'Tidak ada user' - bg-primary for avatars - Consistent hover states All pages now: ✅ Respect light/dark mode ✅ Use @theme colors from index.css ✅ Indonesian text (keeping English tech terms) ✅ Consistent with member layout styling
This commit is contained in:
5
apps/api/dist/auth/auth.service.d.ts
vendored
5
apps/api/dist/auth/auth.service.d.ts
vendored
@@ -13,6 +13,7 @@ export declare class AuthService {
|
||||
name: string | null;
|
||||
avatarUrl: string | null;
|
||||
emailVerified: boolean;
|
||||
role: string;
|
||||
};
|
||||
token: string;
|
||||
}>;
|
||||
@@ -33,6 +34,7 @@ export declare class AuthService {
|
||||
name: string | null;
|
||||
avatarUrl: string | null;
|
||||
emailVerified: boolean;
|
||||
role: string;
|
||||
};
|
||||
token: string;
|
||||
requiresOtp?: undefined;
|
||||
@@ -61,6 +63,7 @@ export declare class AuthService {
|
||||
name: string | null;
|
||||
avatarUrl: string | null;
|
||||
emailVerified: boolean;
|
||||
role: string;
|
||||
};
|
||||
token: string;
|
||||
requiresOtp?: undefined;
|
||||
@@ -74,6 +77,7 @@ export declare class AuthService {
|
||||
name: string | null;
|
||||
avatarUrl: string | null;
|
||||
emailVerified: boolean;
|
||||
role: string;
|
||||
};
|
||||
token: string;
|
||||
}>;
|
||||
@@ -85,6 +89,7 @@ export declare class AuthService {
|
||||
emailVerified: boolean;
|
||||
name: string | null;
|
||||
avatarUrl: string | null;
|
||||
role: string;
|
||||
}>;
|
||||
changePassword(userId: string, currentPassword: string, newPassword: string, isSettingPassword?: boolean): Promise<{
|
||||
message: string;
|
||||
|
||||
Reference in New Issue
Block a user