Thomas
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
10 additions and
10 deletions
-
apps/client/src/app/components/transactions-table/transactions-table.component.ts
-
apps/client/src/app/components/transactions-table/transactions-table.module.ts
|
|
@ -1,3 +1,4 @@ |
|
|
|
import { COMMA, ENTER } from '@angular/cdk/keycodes'; |
|
|
|
import { |
|
|
|
ChangeDetectionStrategy, |
|
|
|
Component, |
|
|
@ -10,6 +11,12 @@ import { |
|
|
|
Output, |
|
|
|
ViewChild |
|
|
|
} from '@angular/core'; |
|
|
|
import { FormControl } from '@angular/forms'; |
|
|
|
import { |
|
|
|
MatAutocomplete, |
|
|
|
MatAutocompleteSelectedEvent |
|
|
|
} from '@angular/material/autocomplete'; |
|
|
|
import { MatChipInputEvent } from '@angular/material/chips'; |
|
|
|
import { MatDialog } from '@angular/material/dialog'; |
|
|
|
import { MatSort } from '@angular/material/sort'; |
|
|
|
import { MatTableDataSource } from '@angular/material/table'; |
|
|
@ -20,13 +27,6 @@ import { BehaviorSubject, Observable, Subject, Subscription } from 'rxjs'; |
|
|
|
import { takeUntil } from 'rxjs/operators'; |
|
|
|
|
|
|
|
import { PositionDetailDialog } from '../position/position-detail-dialog/position-detail-dialog.component'; |
|
|
|
import { |
|
|
|
MatAutocomplete, |
|
|
|
MatAutocompleteSelectedEvent |
|
|
|
} from '@angular/material/autocomplete'; |
|
|
|
import { FormControl } from '@angular/forms'; |
|
|
|
import { COMMA, ENTER } from '@angular/cdk/keycodes'; |
|
|
|
import { MatChipInputEvent } from '@angular/material/chips'; |
|
|
|
|
|
|
|
const SEARCH_STRING_SEPARATOR = ','; |
|
|
|
|
|
|
|
|
|
@ -1,6 +1,9 @@ |
|
|
|
import { CommonModule } from '@angular/common'; |
|
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
|
|
import { ReactiveFormsModule } from '@angular/forms'; |
|
|
|
import { MatAutocompleteModule } from '@angular/material/autocomplete'; |
|
|
|
import { MatButtonModule } from '@angular/material/button'; |
|
|
|
import { MatChipsModule } from '@angular/material/chips'; |
|
|
|
import { MatInputModule } from '@angular/material/input'; |
|
|
|
import { MatMenuModule } from '@angular/material/menu'; |
|
|
|
import { MatSortModule } from '@angular/material/sort'; |
|
|
@ -13,9 +16,6 @@ import { GfPositionDetailDialogModule } from '../position/position-detail-dialog |
|
|
|
import { GfSymbolIconModule } from '../symbol-icon/symbol-icon.module'; |
|
|
|
import { GfValueModule } from '../value/value.module'; |
|
|
|
import { TransactionsTableComponent } from './transactions-table.component'; |
|
|
|
import { MatChipsModule } from '@angular/material/chips'; |
|
|
|
import { MatAutocompleteModule } from '@angular/material/autocomplete'; |
|
|
|
import { ReactiveFormsModule } from '@angular/forms'; |
|
|
|
|
|
|
|
@NgModule({ |
|
|
|
declarations: [TransactionsTableComponent], |
|
|
|