[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

@@ -15,6 +15,8 @@
* limitations under the License.
*/
/* eslint-disable id-blacklist */
import { ExtensionElement } from './extension-element';
export interface DataColumnTypes {
@@ -25,9 +27,9 @@ export interface DataColumnTypes {
icon: string;
fileSize: string;
location: string;
// eslint-disable-next-line id-blacklist
boolean: string;
amount: string;
number: string;
}
export type DataColumnType = keyof DataColumnTypes;