mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 13:23:34 +00:00
* migrate change login password service to use bitwarden server rather than fetch directly - avoids CSP entirely * add `HelpUsersUpdatePasswords` policy to policy type * add `HelpUsersUpdatePasswordsPolicy` components * allow list description override for policy description * add `HelpUsersUpdatePasswordsPolicy` when the feature flag is enabled * apply `HelpUsersUpdatePasswords` to everyone in an org * use policy to guard the well known password API * fix tests * refactor to use `policyAppliesToUser$` * remove policy work for change password - this was removed from scope * update copy for show favicon setting - it now handles both favicons and change password urls * remove favicon setting description - no longer needed * only call change password service when the setting is enabled * add popover for permitting cipher details * import permit popover directly into the settings component * replace `nativeFetch` with `fetch` * use string literal to construct URL rather than `URL` class - The `getIconsUrl` can return with an appended path which the new URL constructor will strip when passed as the base parameter * use string literal to construct URL rather than `URL` class instance (#16045) - The `getIconsUrl` can return with an appended path which the new URL constructor will strip when passed as the base parameter * [PM-24716] UI changes for Change URI work (#16043) * use platform service to launch the URI - this allows desktop to open a separate browser instance rather than use electron * fix spacing on web app * add bitLink for focus/hover states * remove spacing around links
20 lines
728 B
TypeScript
20 lines
728 B
TypeScript
import { Component, inject } from "@angular/core";
|
|
|
|
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
|
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
|
|
import { LinkModule, PopoverModule } from "@bitwarden/components";
|
|
|
|
@Component({
|
|
selector: "vault-permit-cipher-details-popover",
|
|
templateUrl: "./permit-cipher-details-popover.component.html",
|
|
imports: [PopoverModule, JslibModule, LinkModule],
|
|
})
|
|
export class PermitCipherDetailsPopoverComponent {
|
|
private platformUtilService = inject(PlatformUtilsService);
|
|
|
|
openLearnMore(e: Event) {
|
|
e.preventDefault();
|
|
this.platformUtilService.launchUri("https://bitwarden.com/help/website-icons/");
|
|
}
|
|
}
|