AW-6756 Settingsknop Explorer dezelfde kleur als het logo van de explorer.
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
2025-03-24 09:13:47 +01:00
parent 2ca9730735
commit a46e8040b2
6 changed files with 24 additions and 7 deletions

View File

@@ -85,6 +85,9 @@ export const SETUNREADNOTIFICATIONS = '[AppCommon] SetUnreadNotifications';
export const SWITCHLANGUAGE = '[AppCommon] SwitchLanguage';
export const SETSETTINGMENUBACKGROUNDCOLOR = '[AppCommon] SetSettingMenuBackgroundColor';
export class InitUser implements Action {
readonly type = INITUSER;
@@ -379,6 +382,11 @@ export class SwitchLanguage implements Action {
constructor(public locale:string) { }
}
export class SetSettingMenuBackgroundColor implements Action {
readonly type = SETSETTINGMENUBACKGROUNDCOLOR;
constructor(public color:string) { }
}
export type Actions = OpenModal
| InitRoot
@@ -427,6 +435,7 @@ export type Actions = OpenModal
| ToggleSettingMenu
| NotificationEvent
| SetUnreadNotifications
| SwitchLanguage;
| SwitchLanguage
| SetSettingMenuBackgroundColor;