mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 14:53:33 +00:00
* consolidated session timeout settings component * rename preferences to appearance * race condition bug on computed signal * outdated header for browser * unnecessary padding * remove required on action, fix build * rename localization key * missing user id * required * cleanup task * eslint fix signals rollback * takeUntilDestroyed, null checks * move browser specific logic outside shared component * explicit input type * input name * takeUntilDestroyed, no toast * unit tests * cleanup * cleanup, correct link to deprecation jira * tech debt todo with jira * missing web localization key when policy is on * relative import * extracting timeout options to component service * duplicate localization key * fix failing test * subsequent timeout action selecting opening without dialog on first dialog cancellation * default locale can be null * unit tests failing * rename, simplifications * one if else feature flag * timeout input component rendering before async pipe completion
12 lines
671 B
TypeScript
12 lines
671 B
TypeScript
export { VaultTimeoutSettingsService } from "./abstractions/vault-timeout-settings.service";
|
|
export { VaultTimeoutSettingsService as DefaultVaultTimeoutSettingsService } from "./services/vault-timeout-settings.service";
|
|
export { VaultTimeoutService } from "./abstractions/vault-timeout.service";
|
|
export { VaultTimeoutService as DefaultVaultTimeoutService } from "./services/vault-timeout.service";
|
|
export { VaultTimeoutAction } from "./enums/vault-timeout-action.enum";
|
|
export {
|
|
VaultTimeout,
|
|
VaultTimeoutOption,
|
|
VaultTimeoutStringType,
|
|
} from "./types/vault-timeout.type";
|
|
export { MaximumVaultTimeoutPolicyData } from "./types/maximum-vault-timeout-policy.type";
|