ng-table-pg
Version:
A powerful and flexible responsive table component for Angular applications with drag-drop, filtering, pagination, and advanced responsive features
20 lines (19 loc) • 1.11 kB
TypeScript
import { OnChanges, SimpleChanges } from '@angular/core';
import * as i0 from "@angular/core";
export declare class TableRowContentComponent implements OnChanges {
item: any;
column: any;
itemValue: any;
itemTransformed: any;
isArrayItemValue: boolean;
ngOnChanges(changes: SimpleChanges): void;
getStatus(step: string): string;
getStatusClass(status: any): "bg-green-100 text-green-800" | "bg-red-100 text-red-800" | "bg-blue-100 text-blue-800" | "bg-yellow-100 text-yellow-800" | "bg-gray-100 text-gray-800" | "";
getStatusClasses(status: any): {
[x: string]: boolean;
'px-2 py-1 rounded-full text-xs font-semibold text-nowrap': boolean;
};
formatJson(value: any): string;
static ɵfac: i0.ɵɵFactoryDeclaration<TableRowContentComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TableRowContentComponent, "table-row-content", never, { "item": { "alias": "item"; "required": false; }; "column": { "alias": "column"; "required": false; }; "itemValue": { "alias": "itemValue"; "required": false; }; }, {}, never, never, true, never>;
}