@hxui/angular
Version:
This README includes the steps that are necessary to import the HxUi-angular into a project or to contribute with development.
33 lines (32 loc) • 818 B
TypeScript
import { IActionsConfig } from './actions-config.interface';
import { Context } from '../enums';
export interface ITabularRow {
/**
* Set context, default, danger, warning, success or info
*/
context?: Context;
/**
* Set stripe context, default, danger, warning, success or info
*/
stripeContext?: Context;
/**
* Allows you to add any css class names to each row.
*/
cssClass?: string;
/**
* Used to configure 1 or more actions
*/
actions?: IActionsConfig[];
/**
* Used to control the checkbox checked state
*/
checked?: boolean;
/**
* Used to control the model selected state
*/
selected?: boolean;
/**
* Title attribute at the row level
*/
title?: string;
}