bitwarden-estensione-browser/src/app/app.module.ts

115 lines
4.3 KiB
TypeScript
Raw Normal View History

2018-01-23 05:37:36 +01:00
import 'core-js';
2018-01-16 20:48:34 +01:00
import 'zone.js/dist/zone';
2018-02-08 16:37:54 +01:00
import { ToasterModule } from 'angular2-toaster';
2018-01-26 16:50:06 +01:00
import { Angulartics2Module } from 'angulartics2';
import { Angulartics2GoogleAnalytics } from 'angulartics2/ga';
2018-02-08 16:37:54 +01:00
2018-01-16 21:58:17 +01:00
import { AppRoutingModule } from './app-routing.module';
2018-04-25 05:26:50 +02:00
import { ServicesModule } from './services.module';
2018-01-16 21:58:17 +01:00
2018-02-08 16:37:54 +01:00
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
2018-02-10 21:20:13 +01:00
import { BrowserModule } from '@angular/platform-browser';
2018-02-08 16:37:54 +01:00
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2018-01-16 20:48:34 +01:00
import { AppComponent } from './app.component';
2018-02-08 16:37:54 +01:00
import { EnvironmentComponent } from './accounts/environment.component';
import { HintComponent } from './accounts/hint.component';
2018-02-10 04:47:53 +01:00
import { LockComponent } from './accounts/lock.component';
2018-02-08 16:37:54 +01:00
import { LoginComponent } from './accounts/login.component';
2018-02-16 21:03:29 +01:00
import { PremiumComponent } from './accounts/premium.component';
2018-02-08 16:37:54 +01:00
import { RegisterComponent } from './accounts/register.component';
2018-02-10 05:41:29 +01:00
import { SettingsComponent } from './accounts/settings.component';
2018-02-08 16:37:54 +01:00
import { TwoFactorOptionsComponent } from './accounts/two-factor-options.component';
import { TwoFactorComponent } from './accounts/two-factor.component';
2018-04-11 05:49:41 +02:00
import { IconComponent } from 'jslib/angular/components/icon.component';
2018-04-25 05:23:10 +02:00
import { ModalComponent } from 'jslib/angular/components/modal.component';
2018-04-11 05:49:41 +02:00
2018-04-04 14:30:14 +02:00
import { ApiActionDirective } from 'jslib/angular/directives/api-action.directive';
import { AutofocusDirective } from 'jslib/angular/directives/autofocus.directive';
import { BlurClickDirective } from 'jslib/angular/directives/blur-click.directive';
2018-04-04 20:19:09 +02:00
import { BoxRowDirective } from 'jslib/angular/directives/box-row.directive';
2018-04-04 14:30:14 +02:00
import { FallbackSrcDirective } from 'jslib/angular/directives/fallback-src.directive';
import { StopClickDirective } from 'jslib/angular/directives/stop-click.directive';
import { StopPropDirective } from 'jslib/angular/directives/stop-prop.directive';
import { TrueFalseValueDirective } from 'jslib/angular/directives/true-false-value.directive';
2018-02-08 16:37:54 +01:00
2018-04-04 14:30:14 +02:00
import { I18nPipe } from 'jslib/angular/pipes/i18n.pipe';
import { SearchCiphersPipe } from 'jslib/angular/pipes/search-ciphers.pipe';
2018-02-08 16:37:54 +01:00
import { AddEditComponent } from './vault/add-edit.component';
import { AttachmentsComponent } from './vault/attachments.component';
import { CiphersComponent } from './vault/ciphers.component';
2018-01-30 21:40:06 +01:00
import { FolderAddEditComponent } from './vault/folder-add-edit.component';
2018-01-24 04:21:14 +01:00
import { GroupingsComponent } from './vault/groupings.component';
2018-02-18 04:37:43 +01:00
import { PasswordGeneratorHistoryComponent } from './vault/password-generator-history.component';
2018-01-29 15:33:43 +01:00
import { PasswordGeneratorComponent } from './vault/password-generator.component';
2018-01-16 22:12:26 +01:00
import { VaultComponent } from './vault/vault.component';
2018-01-24 04:21:14 +01:00
import { ViewComponent } from './vault/view.component';
2018-01-16 20:48:34 +01:00
@NgModule({
2018-01-16 21:58:17 +01:00
imports: [
2018-02-10 21:20:13 +01:00
BrowserModule,
2018-01-26 20:12:41 +01:00
BrowserAnimationsModule,
FormsModule,
2018-01-16 21:58:17 +01:00
AppRoutingModule,
2018-01-23 05:37:36 +01:00
ServicesModule,
2018-01-26 16:50:06 +01:00
Angulartics2Module.forRoot([Angulartics2GoogleAnalytics], {
pageTracking: {
clearQueryParams: true,
},
}),
2018-01-26 20:12:41 +01:00
ToasterModule,
2018-01-16 21:58:17 +01:00
],
declarations: [
2018-01-26 20:56:54 +01:00
AddEditComponent,
2018-01-31 18:52:12 +01:00
ApiActionDirective,
2018-01-16 21:58:17 +01:00
AppComponent,
2018-01-30 05:19:55 +01:00
AttachmentsComponent,
2018-01-30 21:40:06 +01:00
AutofocusDirective,
2018-01-27 19:47:48 +01:00
BlurClickDirective,
2018-01-30 20:33:06 +01:00
BoxRowDirective,
2018-01-24 04:21:14 +01:00
CiphersComponent,
2018-02-02 18:31:21 +01:00
EnvironmentComponent,
2018-01-24 05:38:56 +01:00
FallbackSrcDirective,
2018-01-30 21:40:06 +01:00
FolderAddEditComponent,
2018-01-24 04:21:14 +01:00
GroupingsComponent,
2018-01-31 23:06:14 +01:00
HintComponent,
2018-01-24 20:59:03 +01:00
I18nPipe,
2018-01-23 23:29:30 +01:00
IconComponent,
2018-02-10 04:47:53 +01:00
LockComponent,
2018-01-16 21:58:17 +01:00
LoginComponent,
2018-01-29 15:33:43 +01:00
ModalComponent,
PasswordGeneratorComponent,
2018-02-18 04:37:43 +01:00
PasswordGeneratorHistoryComponent,
2018-02-16 21:03:29 +01:00
PremiumComponent,
2018-01-31 20:19:21 +01:00
RegisterComponent,
SearchCiphersPipe,
2018-02-10 05:41:29 +01:00
SettingsComponent,
2018-01-24 05:38:56 +01:00
StopClickDirective,
2018-01-27 20:43:29 +01:00
StopPropDirective,
TrueFalseValueDirective,
2018-02-01 04:54:13 +01:00
TwoFactorComponent,
TwoFactorOptionsComponent,
2018-01-16 22:12:26 +01:00
VaultComponent,
2018-01-24 04:21:14 +01:00
ViewComponent,
2018-01-16 21:58:17 +01:00
],
2018-01-29 15:33:43 +01:00
entryComponents: [
2018-01-30 05:19:55 +01:00
AttachmentsComponent,
2018-02-02 18:31:21 +01:00
EnvironmentComponent,
2018-01-30 21:40:06 +01:00
FolderAddEditComponent,
2018-01-29 15:33:43 +01:00
ModalComponent,
PasswordGeneratorComponent,
2018-02-18 04:37:43 +01:00
PasswordGeneratorHistoryComponent,
2018-02-16 21:03:29 +01:00
PremiumComponent,
2018-02-10 05:41:29 +01:00
SettingsComponent,
TwoFactorOptionsComponent,
2018-01-29 15:33:43 +01:00
],
2018-01-16 21:58:17 +01:00
providers: [],
2018-01-16 20:48:34 +01:00
bootstrap: [AppComponent],
})
export class AppModule { }