mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
* [PS-515] Use virtual scroll to speed up long user lists WIP: this is currently showing a large blank area under the last user. Need to figure out why virtual-scroll-spacer is sized too large. * Fix cdk-virtual-scroll styling * Format csp for readability * Set Viewport height The viewport height was * Calculate viewport height from item size Virtual scroll viewports need set heights, we can emulate the old modal behavior by calculating an approximate height required by the viewport to display all items. It will not go beyond the window due to the `.modal-dialog-scrollable` class * Remove modal css changes * pr review
497 lines
24 KiB
TypeScript
497 lines
24 KiB
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { UserVerificationComponent } from "jslib-angular/components/user-verification.component";
|
|
|
|
import { AcceptEmergencyComponent } from "../accounts/accept-emergency.component";
|
|
import { AcceptOrganizationComponent } from "../accounts/accept-organization.component";
|
|
import { HintComponent } from "../accounts/hint.component";
|
|
import { LockComponent } from "../accounts/lock.component";
|
|
import { LoginComponent } from "../accounts/login.component";
|
|
import { RecoverDeleteComponent } from "../accounts/recover-delete.component";
|
|
import { RecoverTwoFactorComponent } from "../accounts/recover-two-factor.component";
|
|
import { RegisterComponent } from "../accounts/register.component";
|
|
import { RemovePasswordComponent } from "../accounts/remove-password.component";
|
|
import { SetPasswordComponent } from "../accounts/set-password.component";
|
|
import { SsoComponent } from "../accounts/sso.component";
|
|
import { TwoFactorOptionsComponent } from "../accounts/two-factor-options.component";
|
|
import { TwoFactorComponent } from "../accounts/two-factor.component";
|
|
import { UpdatePasswordComponent } from "../accounts/update-password.component";
|
|
import { UpdateTempPasswordComponent } from "../accounts/update-temp-password.component";
|
|
import { VerifyEmailTokenComponent } from "../accounts/verify-email-token.component";
|
|
import { VerifyRecoverDeleteComponent } from "../accounts/verify-recover-delete.component";
|
|
import { NestedCheckboxComponent } from "../components/nested-checkbox.component";
|
|
import { OrganizationSwitcherComponent } from "../components/organization-switcher.component";
|
|
import { PasswordRepromptComponent } from "../components/password-reprompt.component";
|
|
import { PasswordStrengthComponent } from "../components/password-strength.component";
|
|
import { PremiumBadgeComponent } from "../components/premium-badge.component";
|
|
import { FooterComponent } from "../layouts/footer.component";
|
|
import { FrontendLayoutComponent } from "../layouts/frontend-layout.component";
|
|
import { NavbarComponent } from "../layouts/navbar.component";
|
|
import { UserLayoutComponent } from "../layouts/user-layout.component";
|
|
import { OrganizationLayoutComponent } from "../organizations/layouts/organization-layout.component";
|
|
import { BulkConfirmComponent as OrgBulkConfirmComponent } from "../organizations/manage/bulk/bulk-confirm.component";
|
|
import { BulkRemoveComponent as OrgBulkRemoveComponent } from "../organizations/manage/bulk/bulk-remove.component";
|
|
import { BulkStatusComponent as OrgBulkStatusComponent } from "../organizations/manage/bulk/bulk-status.component";
|
|
import { CollectionAddEditComponent as OrgCollectionAddEditComponent } from "../organizations/manage/collection-add-edit.component";
|
|
import { CollectionsComponent as OrgManageCollectionsComponent } from "../organizations/manage/collections.component";
|
|
import { EntityEventsComponent as OrgEntityEventsComponent } from "../organizations/manage/entity-events.component";
|
|
import { EventsComponent as OrgEventsComponent } from "../organizations/manage/events.component";
|
|
import { GroupAddEditComponent as OrgGroupAddEditComponent } from "../organizations/manage/group-add-edit.component";
|
|
import { GroupsComponent as OrgGroupsComponent } from "../organizations/manage/groups.component";
|
|
import { ManageComponent as OrgManageComponent } from "../organizations/manage/manage.component";
|
|
import { PeopleComponent as OrgPeopleComponent } from "../organizations/manage/people.component";
|
|
import { PoliciesComponent as OrgPoliciesComponent } from "../organizations/manage/policies.component";
|
|
import { PolicyEditComponent as OrgPolicyEditComponent } from "../organizations/manage/policy-edit.component";
|
|
import { ResetPasswordComponent as OrgResetPasswordComponent } from "../organizations/manage/reset-password.component";
|
|
import { UserAddEditComponent as OrgUserAddEditComponent } from "../organizations/manage/user-add-edit.component";
|
|
import { UserConfirmComponent as OrgUserConfirmComponent } from "../organizations/manage/user-confirm.component";
|
|
import { UserGroupsComponent as OrgUserGroupsComponent } from "../organizations/manage/user-groups.component";
|
|
import { DisableSendPolicyComponent } from "../organizations/policies/disable-send.component";
|
|
import { MasterPasswordPolicyComponent } from "../organizations/policies/master-password.component";
|
|
import { PasswordGeneratorPolicyComponent } from "../organizations/policies/password-generator.component";
|
|
import { PersonalOwnershipPolicyComponent } from "../organizations/policies/personal-ownership.component";
|
|
import { RequireSsoPolicyComponent } from "../organizations/policies/require-sso.component";
|
|
import { ResetPasswordPolicyComponent } from "../organizations/policies/reset-password.component";
|
|
import { SendOptionsPolicyComponent } from "../organizations/policies/send-options.component";
|
|
import { SingleOrgPolicyComponent } from "../organizations/policies/single-org.component";
|
|
import { TwoFactorAuthenticationPolicyComponent } from "../organizations/policies/two-factor-authentication.component";
|
|
import { AccountComponent as OrgAccountComponent } from "../organizations/settings/account.component";
|
|
import { AdjustSubscription } from "../organizations/settings/adjust-subscription.component";
|
|
import { BillingSyncApiKeyComponent } from "../organizations/settings/billing-sync-api-key.component";
|
|
import { ChangePlanComponent } from "../organizations/settings/change-plan.component";
|
|
import { DeleteOrganizationComponent } from "../organizations/settings/delete-organization.component";
|
|
import { DownloadLicenseComponent } from "../organizations/settings/download-license.component";
|
|
import { ImageSubscriptionHiddenComponent as OrgSubscriptionHiddenComponent } from "../organizations/settings/image-subscription-hidden.component";
|
|
import { OrganizationBillingComponent } from "../organizations/settings/organization-billing.component";
|
|
import { OrganizationSubscriptionComponent } from "../organizations/settings/organization-subscription.component";
|
|
import { SettingsComponent as OrgSettingComponent } from "../organizations/settings/settings.component";
|
|
import { TwoFactorSetupComponent as OrgTwoFactorSetupComponent } from "../organizations/settings/two-factor-setup.component";
|
|
import { AcceptFamilySponsorshipComponent } from "../organizations/sponsorships/accept-family-sponsorship.component";
|
|
import { FamiliesForEnterpriseSetupComponent } from "../organizations/sponsorships/families-for-enterprise-setup.component";
|
|
import { ExportComponent as OrgExportComponent } from "../organizations/tools/export.component";
|
|
import { ExposedPasswordsReportComponent as OrgExposedPasswordsReportComponent } from "../organizations/tools/exposed-passwords-report.component";
|
|
import { ImportComponent as OrgImportComponent } from "../organizations/tools/import.component";
|
|
import { InactiveTwoFactorReportComponent as OrgInactiveTwoFactorReportComponent } from "../organizations/tools/inactive-two-factor-report.component";
|
|
import { ReusedPasswordsReportComponent as OrgReusedPasswordsReportComponent } from "../organizations/tools/reused-passwords-report.component";
|
|
import { ToolsComponent as OrgToolsComponent } from "../organizations/tools/tools.component";
|
|
import { UnsecuredWebsitesReportComponent as OrgUnsecuredWebsitesReportComponent } from "../organizations/tools/unsecured-websites-report.component";
|
|
import { WeakPasswordsReportComponent as OrgWeakPasswordsReportComponent } from "../organizations/tools/weak-passwords-report.component";
|
|
import { AddEditComponent as OrgAddEditComponent } from "../organizations/vault/add-edit.component";
|
|
import { AttachmentsComponent as OrgAttachmentsComponent } from "../organizations/vault/attachments.component";
|
|
import { CiphersComponent as OrgCiphersComponent } from "../organizations/vault/ciphers.component";
|
|
import { CollectionsComponent as OrgCollectionsComponent } from "../organizations/vault/collections.component";
|
|
import { ProvidersComponent } from "../providers/providers.component";
|
|
import { BreachReportComponent } from "../reports/breach-report.component";
|
|
import { ExposedPasswordsReportComponent } from "../reports/exposed-passwords-report.component";
|
|
import { InactiveTwoFactorReportComponent } from "../reports/inactive-two-factor-report.component";
|
|
import { ReportCardComponent } from "../reports/report-card.component";
|
|
import { ReportListComponent } from "../reports/report-list.component";
|
|
import { ReportsComponent } from "../reports/reports.component";
|
|
import { ReusedPasswordsReportComponent } from "../reports/reused-passwords-report.component";
|
|
import { UnsecuredWebsitesReportComponent } from "../reports/unsecured-websites-report.component";
|
|
import { WeakPasswordsReportComponent } from "../reports/weak-passwords-report.component";
|
|
import { AccessComponent } from "../send/access.component";
|
|
import { AddEditComponent as SendAddEditComponent } from "../send/add-edit.component";
|
|
import { EffluxDatesComponent as SendEffluxDatesComponent } from "../send/efflux-dates.component";
|
|
import { SendComponent } from "../send/send.component";
|
|
import { AccountComponent } from "../settings/account.component";
|
|
import { AddCreditComponent } from "../settings/add-credit.component";
|
|
import { AdjustPaymentComponent } from "../settings/adjust-payment.component";
|
|
import { AdjustStorageComponent } from "../settings/adjust-storage.component";
|
|
import { ApiKeyComponent } from "../settings/api-key.component";
|
|
import { BillingSyncKeyComponent } from "../settings/billing-sync-key.component";
|
|
import { ChangeEmailComponent } from "../settings/change-email.component";
|
|
import { ChangeKdfComponent } from "../settings/change-kdf.component";
|
|
import { ChangePasswordComponent } from "../settings/change-password.component";
|
|
import { CreateOrganizationComponent } from "../settings/create-organization.component";
|
|
import { DeauthorizeSessionsComponent } from "../settings/deauthorize-sessions.component";
|
|
import { DeleteAccountComponent } from "../settings/delete-account.component";
|
|
import { DomainRulesComponent } from "../settings/domain-rules.component";
|
|
import { EmergencyAccessAddEditComponent } from "../settings/emergency-access-add-edit.component";
|
|
import { EmergencyAccessAttachmentsComponent } from "../settings/emergency-access-attachments.component";
|
|
import { EmergencyAccessConfirmComponent } from "../settings/emergency-access-confirm.component";
|
|
import { EmergencyAccessTakeoverComponent } from "../settings/emergency-access-takeover.component";
|
|
import { EmergencyAccessViewComponent } from "../settings/emergency-access-view.component";
|
|
import { EmergencyAccessComponent } from "../settings/emergency-access.component";
|
|
import { EmergencyAddEditComponent } from "../settings/emergency-add-edit.component";
|
|
import { LinkSsoComponent } from "../settings/link-sso.component";
|
|
import { OrganizationPlansComponent } from "../settings/organization-plans.component";
|
|
import { PaymentMethodComponent } from "../settings/payment-method.component";
|
|
import { PaymentComponent } from "../settings/payment.component";
|
|
import { PreferencesComponent } from "../settings/preferences.component";
|
|
import { PremiumComponent } from "../settings/premium.component";
|
|
import { ProfileComponent } from "../settings/profile.component";
|
|
import { PurgeVaultComponent } from "../settings/purge-vault.component";
|
|
import { SecurityKeysComponent } from "../settings/security-keys.component";
|
|
import { SecurityComponent } from "../settings/security.component";
|
|
import { SettingsComponent } from "../settings/settings.component";
|
|
import { SponsoredFamiliesComponent } from "../settings/sponsored-families.component";
|
|
import { SponsoringOrgRowComponent } from "../settings/sponsoring-org-row.component";
|
|
import { SubscriptionComponent } from "../settings/subscription.component";
|
|
import { TaxInfoComponent } from "../settings/tax-info.component";
|
|
import { TwoFactorAuthenticatorComponent } from "../settings/two-factor-authenticator.component";
|
|
import { TwoFactorDuoComponent } from "../settings/two-factor-duo.component";
|
|
import { TwoFactorEmailComponent } from "../settings/two-factor-email.component";
|
|
import { TwoFactorRecoveryComponent } from "../settings/two-factor-recovery.component";
|
|
import { TwoFactorSetupComponent } from "../settings/two-factor-setup.component";
|
|
import { TwoFactorVerifyComponent } from "../settings/two-factor-verify.component";
|
|
import { TwoFactorWebAuthnComponent } from "../settings/two-factor-webauthn.component";
|
|
import { TwoFactorYubiKeyComponent } from "../settings/two-factor-yubikey.component";
|
|
import { UpdateKeyComponent } from "../settings/update-key.component";
|
|
import { UpdateLicenseComponent } from "../settings/update-license.component";
|
|
import { UserBillingHistoryComponent } from "../settings/user-billing-history.component";
|
|
import { UserSubscriptionComponent } from "../settings/user-subscription.component";
|
|
import { VaultTimeoutInputComponent } from "../settings/vault-timeout-input.component";
|
|
import { VerifyEmailComponent } from "../settings/verify-email.component";
|
|
import { ExportComponent } from "../tools/export.component";
|
|
import { GeneratorComponent } from "../tools/generator.component";
|
|
import { ImportComponent } from "../tools/import.component";
|
|
import { PasswordGeneratorHistoryComponent } from "../tools/password-generator-history.component";
|
|
import { ToolsComponent } from "../tools/tools.component";
|
|
import { AddEditCustomFieldsComponent } from "../vault/add-edit-custom-fields.component";
|
|
import { AddEditComponent } from "../vault/add-edit.component";
|
|
import { AttachmentsComponent } from "../vault/attachments.component";
|
|
import { BulkActionsComponent } from "../vault/bulk-actions.component";
|
|
import { BulkDeleteComponent } from "../vault/bulk-delete.component";
|
|
import { BulkMoveComponent } from "../vault/bulk-move.component";
|
|
import { BulkRestoreComponent } from "../vault/bulk-restore.component";
|
|
import { BulkShareComponent } from "../vault/bulk-share.component";
|
|
import { CiphersComponent } from "../vault/ciphers.component";
|
|
import { CollectionsComponent } from "../vault/collections.component";
|
|
import { FolderAddEditComponent } from "../vault/folder-add-edit.component";
|
|
import { ShareComponent } from "../vault/share.component";
|
|
|
|
import { PipesModule } from "./pipes/pipes.module";
|
|
import { SharedModule } from "./shared.module";
|
|
import { VaultFilterModule } from "./vault-filter/vault-filter.module";
|
|
import { OrganizationBadgeModule } from "./vault/modules/organization-badge/organization-badge.module";
|
|
|
|
// Please do not add to this list of declarations - we should refactor these into modules when doing so makes sense until there are none left.
|
|
// If you are building new functionality, please create or extend a feature module instead.
|
|
@NgModule({
|
|
imports: [SharedModule, VaultFilterModule, OrganizationBadgeModule, PipesModule],
|
|
declarations: [
|
|
PremiumBadgeComponent,
|
|
AcceptEmergencyComponent,
|
|
AcceptFamilySponsorshipComponent,
|
|
AcceptOrganizationComponent,
|
|
AccessComponent,
|
|
AccountComponent,
|
|
AddCreditComponent,
|
|
AddEditComponent,
|
|
AddEditCustomFieldsComponent,
|
|
AddEditCustomFieldsComponent,
|
|
AdjustPaymentComponent,
|
|
AdjustStorageComponent,
|
|
AdjustSubscription,
|
|
ApiKeyComponent,
|
|
AttachmentsComponent,
|
|
BillingSyncApiKeyComponent,
|
|
BillingSyncKeyComponent,
|
|
BreachReportComponent,
|
|
BulkActionsComponent,
|
|
BulkDeleteComponent,
|
|
BulkMoveComponent,
|
|
BulkRestoreComponent,
|
|
BulkShareComponent,
|
|
ChangeEmailComponent,
|
|
ChangeKdfComponent,
|
|
ChangePasswordComponent,
|
|
ChangePlanComponent,
|
|
CiphersComponent,
|
|
CollectionsComponent,
|
|
CreateOrganizationComponent,
|
|
DeauthorizeSessionsComponent,
|
|
DeleteAccountComponent,
|
|
DeleteOrganizationComponent,
|
|
DisableSendPolicyComponent,
|
|
DomainRulesComponent,
|
|
DownloadLicenseComponent,
|
|
EmergencyAccessAddEditComponent,
|
|
EmergencyAccessAttachmentsComponent,
|
|
EmergencyAccessComponent,
|
|
EmergencyAccessConfirmComponent,
|
|
EmergencyAccessTakeoverComponent,
|
|
EmergencyAccessViewComponent,
|
|
EmergencyAddEditComponent,
|
|
ExportComponent,
|
|
ExposedPasswordsReportComponent,
|
|
FamiliesForEnterpriseSetupComponent,
|
|
FolderAddEditComponent,
|
|
FooterComponent,
|
|
FrontendLayoutComponent,
|
|
HintComponent,
|
|
ImportComponent,
|
|
InactiveTwoFactorReportComponent,
|
|
LinkSsoComponent,
|
|
LockComponent,
|
|
LoginComponent,
|
|
MasterPasswordPolicyComponent,
|
|
NavbarComponent,
|
|
NestedCheckboxComponent,
|
|
OrganizationSwitcherComponent,
|
|
OrgAccountComponent,
|
|
OrgAddEditComponent,
|
|
OrganizationBillingComponent,
|
|
OrganizationLayoutComponent,
|
|
OrganizationPlansComponent,
|
|
OrganizationSubscriptionComponent,
|
|
OrgAttachmentsComponent,
|
|
OrgBulkConfirmComponent,
|
|
OrgBulkRemoveComponent,
|
|
OrgBulkStatusComponent,
|
|
OrgCiphersComponent,
|
|
OrgCollectionAddEditComponent,
|
|
OrgCollectionsComponent,
|
|
OrgEntityEventsComponent,
|
|
OrgEventsComponent,
|
|
OrgExportComponent,
|
|
OrgExposedPasswordsReportComponent,
|
|
OrgGroupAddEditComponent,
|
|
OrgGroupsComponent,
|
|
OrgImportComponent,
|
|
OrgInactiveTwoFactorReportComponent,
|
|
OrgManageCollectionsComponent,
|
|
OrgManageComponent,
|
|
OrgPeopleComponent,
|
|
OrgPoliciesComponent,
|
|
OrgPolicyEditComponent,
|
|
OrgResetPasswordComponent,
|
|
OrgReusedPasswordsReportComponent,
|
|
OrgSettingComponent,
|
|
OrgToolsComponent,
|
|
OrgTwoFactorSetupComponent,
|
|
OrgSubscriptionHiddenComponent,
|
|
OrgUnsecuredWebsitesReportComponent,
|
|
OrgUserAddEditComponent,
|
|
OrgUserConfirmComponent,
|
|
OrgUserGroupsComponent,
|
|
OrgWeakPasswordsReportComponent,
|
|
GeneratorComponent,
|
|
PasswordGeneratorHistoryComponent,
|
|
PasswordGeneratorPolicyComponent,
|
|
PasswordRepromptComponent,
|
|
PasswordStrengthComponent,
|
|
PaymentComponent,
|
|
PaymentMethodComponent,
|
|
PersonalOwnershipPolicyComponent,
|
|
PreferencesComponent,
|
|
PremiumBadgeComponent,
|
|
PremiumComponent,
|
|
ProfileComponent,
|
|
ProvidersComponent,
|
|
PurgeVaultComponent,
|
|
RecoverDeleteComponent,
|
|
RecoverTwoFactorComponent,
|
|
RegisterComponent,
|
|
RemovePasswordComponent,
|
|
ReportCardComponent,
|
|
ReportListComponent,
|
|
ReportsComponent,
|
|
RequireSsoPolicyComponent,
|
|
ResetPasswordPolicyComponent,
|
|
ReusedPasswordsReportComponent,
|
|
SecurityComponent,
|
|
SecurityKeysComponent,
|
|
SendAddEditComponent,
|
|
SendComponent,
|
|
SendEffluxDatesComponent,
|
|
SendOptionsPolicyComponent,
|
|
SetPasswordComponent,
|
|
SettingsComponent,
|
|
ShareComponent,
|
|
SingleOrgPolicyComponent,
|
|
SponsoredFamiliesComponent,
|
|
SponsoringOrgRowComponent,
|
|
SsoComponent,
|
|
SubscriptionComponent,
|
|
TaxInfoComponent,
|
|
ToolsComponent,
|
|
TwoFactorAuthenticationPolicyComponent,
|
|
TwoFactorAuthenticatorComponent,
|
|
TwoFactorComponent,
|
|
TwoFactorDuoComponent,
|
|
TwoFactorEmailComponent,
|
|
TwoFactorOptionsComponent,
|
|
TwoFactorRecoveryComponent,
|
|
TwoFactorSetupComponent,
|
|
TwoFactorVerifyComponent,
|
|
TwoFactorWebAuthnComponent,
|
|
TwoFactorYubiKeyComponent,
|
|
UnsecuredWebsitesReportComponent,
|
|
UpdateKeyComponent,
|
|
UpdateLicenseComponent,
|
|
UpdatePasswordComponent,
|
|
UpdateTempPasswordComponent,
|
|
UserBillingHistoryComponent,
|
|
UserLayoutComponent,
|
|
UserSubscriptionComponent,
|
|
UserVerificationComponent,
|
|
VaultTimeoutInputComponent,
|
|
VerifyEmailComponent,
|
|
VerifyEmailTokenComponent,
|
|
VerifyRecoverDeleteComponent,
|
|
WeakPasswordsReportComponent,
|
|
],
|
|
exports: [
|
|
PremiumBadgeComponent,
|
|
AcceptEmergencyComponent,
|
|
AcceptOrganizationComponent,
|
|
AccessComponent,
|
|
AccountComponent,
|
|
AddCreditComponent,
|
|
AddEditComponent,
|
|
AddEditCustomFieldsComponent,
|
|
AddEditCustomFieldsComponent,
|
|
AdjustPaymentComponent,
|
|
AdjustStorageComponent,
|
|
AdjustSubscription,
|
|
ApiKeyComponent,
|
|
AttachmentsComponent,
|
|
BreachReportComponent,
|
|
BulkActionsComponent,
|
|
BulkDeleteComponent,
|
|
BulkMoveComponent,
|
|
BulkRestoreComponent,
|
|
BulkShareComponent,
|
|
ChangeEmailComponent,
|
|
ChangeKdfComponent,
|
|
ChangePasswordComponent,
|
|
ChangePlanComponent,
|
|
CiphersComponent,
|
|
CollectionsComponent,
|
|
CreateOrganizationComponent,
|
|
DeauthorizeSessionsComponent,
|
|
DeleteAccountComponent,
|
|
DeleteOrganizationComponent,
|
|
DisableSendPolicyComponent,
|
|
DomainRulesComponent,
|
|
DownloadLicenseComponent,
|
|
EmergencyAccessAddEditComponent,
|
|
EmergencyAccessAttachmentsComponent,
|
|
EmergencyAccessComponent,
|
|
EmergencyAccessConfirmComponent,
|
|
EmergencyAccessTakeoverComponent,
|
|
EmergencyAccessViewComponent,
|
|
EmergencyAddEditComponent,
|
|
ExportComponent,
|
|
ExposedPasswordsReportComponent,
|
|
FamiliesForEnterpriseSetupComponent,
|
|
FolderAddEditComponent,
|
|
FooterComponent,
|
|
FrontendLayoutComponent,
|
|
HintComponent,
|
|
ImportComponent,
|
|
InactiveTwoFactorReportComponent,
|
|
LinkSsoComponent,
|
|
LockComponent,
|
|
LoginComponent,
|
|
MasterPasswordPolicyComponent,
|
|
NavbarComponent,
|
|
NestedCheckboxComponent,
|
|
OrganizationSwitcherComponent,
|
|
OrgAccountComponent,
|
|
OrgAddEditComponent,
|
|
OrganizationBillingComponent,
|
|
OrganizationLayoutComponent,
|
|
OrganizationPlansComponent,
|
|
OrganizationSubscriptionComponent,
|
|
OrgAttachmentsComponent,
|
|
OrgBulkConfirmComponent,
|
|
OrgBulkRemoveComponent,
|
|
OrgBulkStatusComponent,
|
|
OrgCiphersComponent,
|
|
OrgCollectionAddEditComponent,
|
|
OrgCollectionsComponent,
|
|
OrgEntityEventsComponent,
|
|
OrgEventsComponent,
|
|
OrgExportComponent,
|
|
OrgExposedPasswordsReportComponent,
|
|
OrgGroupAddEditComponent,
|
|
OrgGroupsComponent,
|
|
OrgImportComponent,
|
|
OrgInactiveTwoFactorReportComponent,
|
|
OrgManageCollectionsComponent,
|
|
OrgManageComponent,
|
|
OrgPeopleComponent,
|
|
OrgPoliciesComponent,
|
|
OrgPolicyEditComponent,
|
|
OrgResetPasswordComponent,
|
|
OrgReusedPasswordsReportComponent,
|
|
OrgSettingComponent,
|
|
OrgToolsComponent,
|
|
OrgTwoFactorSetupComponent,
|
|
OrgUnsecuredWebsitesReportComponent,
|
|
OrgUserAddEditComponent,
|
|
OrgUserConfirmComponent,
|
|
OrgUserGroupsComponent,
|
|
OrgWeakPasswordsReportComponent,
|
|
GeneratorComponent,
|
|
PasswordGeneratorHistoryComponent,
|
|
PasswordGeneratorPolicyComponent,
|
|
PasswordRepromptComponent,
|
|
PasswordStrengthComponent,
|
|
PaymentComponent,
|
|
PaymentMethodComponent,
|
|
PersonalOwnershipPolicyComponent,
|
|
PreferencesComponent,
|
|
PremiumBadgeComponent,
|
|
PremiumComponent,
|
|
ProfileComponent,
|
|
ProvidersComponent,
|
|
PurgeVaultComponent,
|
|
RecoverDeleteComponent,
|
|
RecoverTwoFactorComponent,
|
|
RegisterComponent,
|
|
RemovePasswordComponent,
|
|
ReportCardComponent,
|
|
ReportListComponent,
|
|
ReportsComponent,
|
|
RequireSsoPolicyComponent,
|
|
ResetPasswordPolicyComponent,
|
|
ReusedPasswordsReportComponent,
|
|
SecurityComponent,
|
|
SecurityKeysComponent,
|
|
SendAddEditComponent,
|
|
SendComponent,
|
|
SendEffluxDatesComponent,
|
|
SendOptionsPolicyComponent,
|
|
SetPasswordComponent,
|
|
SettingsComponent,
|
|
ShareComponent,
|
|
SingleOrgPolicyComponent,
|
|
SponsoredFamiliesComponent,
|
|
SponsoringOrgRowComponent,
|
|
SsoComponent,
|
|
SubscriptionComponent,
|
|
TaxInfoComponent,
|
|
ToolsComponent,
|
|
TwoFactorAuthenticationPolicyComponent,
|
|
TwoFactorAuthenticatorComponent,
|
|
TwoFactorComponent,
|
|
TwoFactorDuoComponent,
|
|
TwoFactorEmailComponent,
|
|
TwoFactorOptionsComponent,
|
|
TwoFactorRecoveryComponent,
|
|
TwoFactorSetupComponent,
|
|
TwoFactorVerifyComponent,
|
|
TwoFactorWebAuthnComponent,
|
|
TwoFactorYubiKeyComponent,
|
|
UnsecuredWebsitesReportComponent,
|
|
UpdateKeyComponent,
|
|
UpdateLicenseComponent,
|
|
UpdatePasswordComponent,
|
|
UpdateTempPasswordComponent,
|
|
UserBillingHistoryComponent,
|
|
UserLayoutComponent,
|
|
UserSubscriptionComponent,
|
|
UserVerificationComponent,
|
|
VaultTimeoutInputComponent,
|
|
VerifyEmailComponent,
|
|
VerifyEmailTokenComponent,
|
|
VerifyRecoverDeleteComponent,
|
|
WeakPasswordsReportComponent,
|
|
],
|
|
})
|
|
export class LooseComponentsModule {}
|