mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
* Added select-payment-method.component in shared lib Because we're going to be implementing the same functionality for providers and orgs/users, I wanted to start moving some of this shared functionality into libs so it can be accessed in both web and bit-web. Additionally, the Stripe and Braintree functionality has been moved into their own services for more central management. * Added generalized manage-tax-information component to shared lib * Added generalized add-account-credit-dialog component to shared libs * Added generalized verify-bank-account component to shared libs * Added dialog for selection of provider payment method * Added provider-payment-method component * Added provider-payment-method component to provider layout
148 lines
4.4 KiB
TypeScript
148 lines
4.4 KiB
TypeScript
import { CommonModule, DatePipe } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
|
|
|
|
import {
|
|
AddAccountCreditDialogComponent,
|
|
ManageTaxInformationComponent,
|
|
SelectPaymentMethodComponent,
|
|
VerifyBankAccountComponent,
|
|
} from "@bitwarden/angular/billing/components";
|
|
import {
|
|
AsyncActionsModule,
|
|
AutofocusDirective,
|
|
ButtonModule,
|
|
CheckboxModule,
|
|
DialogModule,
|
|
FormFieldModule,
|
|
RadioButtonModule,
|
|
SelectModule,
|
|
ToastModule,
|
|
TypographyModule,
|
|
} from "@bitwarden/components";
|
|
|
|
import { CalloutComponent } from "./components/callout.component";
|
|
import { A11yInvalidDirective } from "./directives/a11y-invalid.directive";
|
|
import { A11yTitleDirective } from "./directives/a11y-title.directive";
|
|
import { ApiActionDirective } from "./directives/api-action.directive";
|
|
import { BoxRowDirective } from "./directives/box-row.directive";
|
|
import { CopyClickDirective } from "./directives/copy-click.directive";
|
|
import { CopyTextDirective } from "./directives/copy-text.directive";
|
|
import { FallbackSrcDirective } from "./directives/fallback-src.directive";
|
|
import { IfFeatureDirective } from "./directives/if-feature.directive";
|
|
import { InputStripSpacesDirective } from "./directives/input-strip-spaces.directive";
|
|
import { InputVerbatimDirective } from "./directives/input-verbatim.directive";
|
|
import { LaunchClickDirective } from "./directives/launch-click.directive";
|
|
import { NotPremiumDirective } from "./directives/not-premium.directive";
|
|
import { StopClickDirective } from "./directives/stop-click.directive";
|
|
import { StopPropDirective } from "./directives/stop-prop.directive";
|
|
import { TrueFalseValueDirective } from "./directives/true-false-value.directive";
|
|
import { CreditCardNumberPipe } from "./pipes/credit-card-number.pipe";
|
|
import { SearchCiphersPipe } from "./pipes/search-ciphers.pipe";
|
|
import { SearchPipe } from "./pipes/search.pipe";
|
|
import { UserNamePipe } from "./pipes/user-name.pipe";
|
|
import { UserTypePipe } from "./pipes/user-type.pipe";
|
|
import { EllipsisPipe } from "./platform/pipes/ellipsis.pipe";
|
|
import { FingerprintPipe } from "./platform/pipes/fingerprint.pipe";
|
|
import { I18nPipe } from "./platform/pipes/i18n.pipe";
|
|
import { PasswordStrengthComponent } from "./tools/password-strength/password-strength.component";
|
|
import { IconComponent } from "./vault/components/icon.component";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
ToastModule.forRoot({
|
|
maxOpened: 5,
|
|
autoDismiss: true,
|
|
closeButton: true,
|
|
}),
|
|
CommonModule,
|
|
FormsModule,
|
|
ReactiveFormsModule,
|
|
AsyncActionsModule,
|
|
RadioButtonModule,
|
|
FormFieldModule,
|
|
SelectModule,
|
|
ButtonModule,
|
|
CheckboxModule,
|
|
DialogModule,
|
|
TypographyModule,
|
|
],
|
|
declarations: [
|
|
A11yInvalidDirective,
|
|
A11yTitleDirective,
|
|
ApiActionDirective,
|
|
AutofocusDirective,
|
|
BoxRowDirective,
|
|
CalloutComponent,
|
|
CopyTextDirective,
|
|
CreditCardNumberPipe,
|
|
EllipsisPipe,
|
|
FallbackSrcDirective,
|
|
I18nPipe,
|
|
IconComponent,
|
|
InputStripSpacesDirective,
|
|
InputVerbatimDirective,
|
|
NotPremiumDirective,
|
|
SearchCiphersPipe,
|
|
SearchPipe,
|
|
StopClickDirective,
|
|
StopPropDirective,
|
|
TrueFalseValueDirective,
|
|
CopyClickDirective,
|
|
LaunchClickDirective,
|
|
UserNamePipe,
|
|
PasswordStrengthComponent,
|
|
UserTypePipe,
|
|
IfFeatureDirective,
|
|
FingerprintPipe,
|
|
AddAccountCreditDialogComponent,
|
|
ManageTaxInformationComponent,
|
|
SelectPaymentMethodComponent,
|
|
VerifyBankAccountComponent,
|
|
],
|
|
exports: [
|
|
A11yInvalidDirective,
|
|
A11yTitleDirective,
|
|
ApiActionDirective,
|
|
AutofocusDirective,
|
|
ToastModule,
|
|
BoxRowDirective,
|
|
CalloutComponent,
|
|
CopyTextDirective,
|
|
CreditCardNumberPipe,
|
|
EllipsisPipe,
|
|
FallbackSrcDirective,
|
|
I18nPipe,
|
|
IconComponent,
|
|
InputStripSpacesDirective,
|
|
InputVerbatimDirective,
|
|
NotPremiumDirective,
|
|
SearchCiphersPipe,
|
|
SearchPipe,
|
|
StopClickDirective,
|
|
StopPropDirective,
|
|
TrueFalseValueDirective,
|
|
CopyClickDirective,
|
|
LaunchClickDirective,
|
|
UserNamePipe,
|
|
PasswordStrengthComponent,
|
|
UserTypePipe,
|
|
IfFeatureDirective,
|
|
FingerprintPipe,
|
|
AddAccountCreditDialogComponent,
|
|
ManageTaxInformationComponent,
|
|
SelectPaymentMethodComponent,
|
|
VerifyBankAccountComponent,
|
|
],
|
|
providers: [
|
|
CreditCardNumberPipe,
|
|
DatePipe,
|
|
I18nPipe,
|
|
SearchPipe,
|
|
UserNamePipe,
|
|
UserTypePipe,
|
|
FingerprintPipe,
|
|
],
|
|
})
|
|
export class JslibModule {}
|