[AAE-16962] Handle number data table column type (#9013)

* [AAE-16962] Handle number column type

* solve conflicts

* remove TODO

* [AAE-16952] Revert incorrect conflict solve

* remove duplicated import
This commit is contained in:
Tomasz Gnyp
2023-10-23 11:53:32 +02:00
committed by GitHub
parent 7c4304a1e7
commit 33f1147671
11 changed files with 250 additions and 36 deletions

View File

@@ -55,6 +55,7 @@ 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';
import { NumberCellComponent } from './components/number-cell/number-cell.component';
@NgModule({
imports: [
@@ -73,7 +74,8 @@ import { AmountCellComponent } from './components/amount-cell/amount-cell.compon
ResizableModule,
DataColumnModule,
BooleanCellComponent,
AmountCellComponent
AmountCellComponent,
NumberCellComponent
],
declarations: [
DataTableComponent,