mirror of
https://github.com/bitwarden/browser
synced 2026-01-08 03:23:50 +00:00
* add restricted item types service and apply it to filter web cipher * code cleanup. add shareReplay * account for multiple orgs when restricting item types * restrict item types for specific orgs * clean up logic. use policiesByType$ * track by item.type * clean up filtering. prefer observable. do not exempt owners for restricted item types * simplify in vault-filter. move item filter logic to vault. fix tests * don't return early in filter-function
34 lines
1.7 KiB
TypeScript
34 lines
1.7 KiB
TypeScript
export { PasswordRepromptService } from "./services/password-reprompt.service";
|
|
export { CopyCipherFieldService, CopyAction } from "./services/copy-cipher-field.service";
|
|
export { CopyCipherFieldDirective } from "./components/copy-cipher-field.directive";
|
|
export { OrgIconDirective } from "./components/org-icon.directive";
|
|
export { CanDeleteCipherDirective } from "./components/can-delete-cipher.directive";
|
|
export { DarkImageSourceDirective } from "./components/dark-image-source.directive";
|
|
|
|
export * from "./cipher-view";
|
|
export * from "./cipher-form";
|
|
export {
|
|
AssignCollectionsComponent,
|
|
CollectionAssignmentParams,
|
|
CollectionAssignmentResult,
|
|
} from "./components/assign-collections.component";
|
|
|
|
export { DownloadAttachmentComponent } from "./components/download-attachment/download-attachment.component";
|
|
export { PasswordHistoryViewComponent } from "./components/password-history-view/password-history-view.component";
|
|
export { DecryptionFailureDialogComponent } from "./components/decryption-failure-dialog/decryption-failure-dialog.component";
|
|
export { openPasswordHistoryDialog } from "./components/password-history/password-history.component";
|
|
export * from "./components/add-edit-folder-dialog/add-edit-folder-dialog.component";
|
|
export * from "./components/carousel";
|
|
|
|
export * as VaultIcons from "./icons";
|
|
|
|
export { DefaultSshImportPromptService } from "./services/default-ssh-import-prompt.service";
|
|
export { SshImportPromptService } from "./services/ssh-import-prompt.service";
|
|
export {
|
|
RestrictedItemTypesService,
|
|
RestrictedCipherType,
|
|
} from "./services/restricted-item-types.service";
|
|
|
|
export * from "./abstractions/change-login-password.service";
|
|
export * from "./services/default-change-login-password.service";
|