[AAE-16964] Handle amount data table cloumn type (#8984)

* [AAE-16964] Handle amount data table cloumn type

* remove not needed reset testing module

* improve spacing

* update documentation

* remove code duplications in unit tests

* add type for default currency config

* update doc
This commit is contained in:
Tomasz Gnyp
2023-10-19 11:50:35 +02:00
committed by GitHub
parent 962a2be698
commit 6644f539fa
10 changed files with 242 additions and 5 deletions

View File

@@ -54,6 +54,7 @@ import { DataColumnComponent, DataColumnListComponent, DateColumnHeaderComponent
import { ResizableModule } from './directives/resizable/resizable.module';
import { DataColumnModule } from './data-column/data-column.module';
import { BooleanCellComponent } from './components/boolean-cell/boolean-cell.component';
import { AmountCellComponent } from './components/amount-cell/amount-cell.component';
@NgModule({
imports: [
@@ -71,7 +72,8 @@ import { BooleanCellComponent } from './components/boolean-cell/boolean-cell.com
ReactiveFormsModule,
ResizableModule,
DataColumnModule,
BooleanCellComponent
BooleanCellComponent,
AmountCellComponent
],
declarations: [
DataTableComponent,