mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
Fix AAE-16968 BC (#9010)
* Fix AAE-16968 BC * Fix incorrect import * Move DataColumnType to extensions lib * Lint fixes
This commit is contained in:
@@ -17,9 +17,24 @@
|
||||
|
||||
import { ExtensionElement } from './extension-element';
|
||||
|
||||
export interface DataColumnTypes {
|
||||
text: string;
|
||||
image: string;
|
||||
date: string;
|
||||
json: string;
|
||||
icon: string;
|
||||
fileSize: string;
|
||||
location: string;
|
||||
// eslint-disable-next-line id-blacklist
|
||||
boolean: string;
|
||||
amount: string;
|
||||
}
|
||||
|
||||
export type DataColumnType = keyof DataColumnTypes;
|
||||
|
||||
export interface DocumentListPresetRef extends ExtensionElement {
|
||||
key: string;
|
||||
type: string; // text|image|date
|
||||
type: DataColumnType;
|
||||
title?: string;
|
||||
format?: string;
|
||||
class?: string;
|
||||
|
Reference in New Issue
Block a user