|
|
|
@ -19,7 +19,7 @@ export class OptionsComponent implements OnInit { |
|
|
|
disableIcons: boolean; |
|
|
|
disableIcons: boolean; |
|
|
|
enableGravatars: boolean; |
|
|
|
enableGravatars: boolean; |
|
|
|
enableFullWidth: boolean; |
|
|
|
enableFullWidth: boolean; |
|
|
|
theme: string = null; |
|
|
|
theme: ThemeType = ThemeType.Light; |
|
|
|
locale: string; |
|
|
|
locale: string; |
|
|
|
vaultTimeouts: { name: string; value: number }[]; |
|
|
|
vaultTimeouts: { name: string; value: number }[]; |
|
|
|
localeOptions: any[]; |
|
|
|
localeOptions: any[]; |
|
|
|
@ -28,7 +28,7 @@ export class OptionsComponent implements OnInit { |
|
|
|
vaultTimeout: FormControl = new FormControl(null); |
|
|
|
vaultTimeout: FormControl = new FormControl(null); |
|
|
|
|
|
|
|
|
|
|
|
private startingLocale: string; |
|
|
|
private startingLocale: string; |
|
|
|
private startingTheme: string; |
|
|
|
private startingTheme: ThemeType = ThemeType.Light; |
|
|
|
|
|
|
|
|
|
|
|
constructor( |
|
|
|
constructor( |
|
|
|
private stateService: StateService, |
|
|
|
private stateService: StateService, |
|
|
|
|