1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

[PM-7174] New Notifications Settings and Excluded Domains components (#10059)

* add v2 notification settings component

* adjust filenames for future deprecation

* drop popup tab navigation for the notification settings view

* add refreshed excluded domains component

* do not allow edits of pre-existing excluded domains

* fix buttonType on bit-link button
This commit is contained in:
Jonathan Prusik
2024-07-19 12:36:09 -04:00
committed by GitHub
parent 11669da911
commit beeb0354fd
13 changed files with 683 additions and 284 deletions

View File

@@ -20,5 +20,6 @@ export const UriMatchStrategy = {
export type UriMatchStrategySetting = (typeof UriMatchStrategy)[keyof typeof UriMatchStrategy];
export type NeverDomains = { [id: string]: unknown };
// using uniqueness properties of object shape over Set for ease of state storability
export type NeverDomains = { [id: string]: null };
export type EquivalentDomains = string[][];