diff --git a/libs/vault/src/cipher-view/additional-information/additional-information.component.ts b/libs/vault/src/cipher-view/additional-information/additional-information.component.ts index a9660f3fc27..9e1376a8066 100644 --- a/libs/vault/src/cipher-view/additional-information/additional-information.component.ts +++ b/libs/vault/src/cipher-view/additional-information/additional-information.component.ts @@ -8,6 +8,7 @@ import { InputModule, SectionComponent, SectionHeaderComponent, + TypographyModule, } from "@bitwarden/components"; @Component({ @@ -22,6 +23,7 @@ import { InputModule, SectionComponent, SectionHeaderComponent, + TypographyModule, ], }) export class AdditionalInformationComponent { diff --git a/libs/vault/src/cipher-view/attachments/attachments-v2.component.ts b/libs/vault/src/cipher-view/attachments/attachments-v2.component.ts index c274fa4e9ac..6ea96bec497 100644 --- a/libs/vault/src/cipher-view/attachments/attachments-v2.component.ts +++ b/libs/vault/src/cipher-view/attachments/attachments-v2.component.ts @@ -22,6 +22,7 @@ import { IconButtonModule, SectionComponent, SectionHeaderComponent, + TypographyModule, } from "@bitwarden/components"; import { PasswordRepromptService } from "@bitwarden/vault"; @@ -36,6 +37,7 @@ import { PasswordRepromptService } from "@bitwarden/vault"; IconButtonModule, SectionComponent, SectionHeaderComponent, + TypographyModule, ], }) export class AttachmentsV2Component { diff --git a/libs/vault/src/cipher-view/custom-fields/custom-fields-v2.component.ts b/libs/vault/src/cipher-view/custom-fields/custom-fields-v2.component.ts index a40bca2d261..e54e5996eb5 100644 --- a/libs/vault/src/cipher-view/custom-fields/custom-fields-v2.component.ts +++ b/libs/vault/src/cipher-view/custom-fields/custom-fields-v2.component.ts @@ -12,6 +12,7 @@ import { InputModule, SectionComponent, SectionHeaderComponent, + TypographyModule, } from "@bitwarden/components"; @Component({ @@ -27,6 +28,7 @@ import { InputModule, SectionComponent, SectionHeaderComponent, + TypographyModule, ], }) export class CustomFieldV2Component { diff --git a/libs/vault/src/cipher-view/item-details/item-details-v2.component.html b/libs/vault/src/cipher-view/item-details/item-details-v2.component.html index 0ade00679af..6941c25c2e3 100644 --- a/libs/vault/src/cipher-view/item-details/item-details-v2.component.html +++ b/libs/vault/src/cipher-view/item-details/item-details-v2.component.html @@ -7,27 +7,32 @@ - +
-
+

{{ "ownerYou" | i18n }} -

-
+

{{ organization.name }} -

-
-

+

+
    +

    {{ collection.name }} -

-
-
+

+ +

{{ folder.name }} -

+

diff --git a/libs/vault/src/cipher-view/item-details/item-details-v2.component.ts b/libs/vault/src/cipher-view/item-details/item-details-v2.component.ts index b0d158c1409..f4f60dc6f54 100644 --- a/libs/vault/src/cipher-view/item-details/item-details-v2.component.ts +++ b/libs/vault/src/cipher-view/item-details/item-details-v2.component.ts @@ -6,13 +6,25 @@ import { Organization } from "@bitwarden/common/admin-console/models/domain/orga import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view"; import { CollectionView } from "@bitwarden/common/vault/models/view/collection.view"; import { FolderView } from "@bitwarden/common/vault/models/view/folder.view"; -import { CardComponent, SectionComponent, SectionHeaderComponent } from "@bitwarden/components"; +import { + CardComponent, + SectionComponent, + SectionHeaderComponent, + TypographyModule, +} from "@bitwarden/components"; @Component({ selector: "app-item-details-v2", templateUrl: "item-details-v2.component.html", standalone: true, - imports: [CommonModule, JslibModule, CardComponent, SectionComponent, SectionHeaderComponent], + imports: [ + CommonModule, + JslibModule, + CardComponent, + SectionComponent, + SectionHeaderComponent, + TypographyModule, + ], }) export class ItemDetailsV2Component { @Input() cipher: CipherView; diff --git a/libs/vault/src/cipher-view/item-history/item-history-v2.component.ts b/libs/vault/src/cipher-view/item-history/item-history-v2.component.ts index 51badfdbc89..830e37da61e 100644 --- a/libs/vault/src/cipher-view/item-history/item-history-v2.component.ts +++ b/libs/vault/src/cipher-view/item-history/item-history-v2.component.ts @@ -4,7 +4,12 @@ import { RouterModule } from "@angular/router"; import { JslibModule } from "@bitwarden/angular/jslib.module"; import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view"; -import { CardComponent, SectionComponent, SectionHeaderComponent } from "@bitwarden/components"; +import { + CardComponent, + SectionComponent, + SectionHeaderComponent, + TypographyModule, +} from "@bitwarden/components"; @Component({ selector: "app-item-history-v2", @@ -17,6 +22,7 @@ import { CardComponent, SectionComponent, SectionHeaderComponent } from "@bitwar CardComponent, SectionComponent, SectionHeaderComponent, + TypographyModule, ], }) export class ItemHistoryV2Component {