@siberiaweb/components
Version:
21 lines (16 loc) • 458 B
text/typescript
/**
* Выравнивание содержания ячейки.
*/
export type CellContentAlign = "left" | "center" | "right";
/**
* Тип данных поля.
*/
export type FieldType = "boolean" | "date" | "date-string" | "number" | "text";
/**
* Тип выбора.
*/
export type SelectionType = "cell" | "row" | "none";
/**
* Порядок сортировки.
*/
export type SortOrder = "asc" | "desc" | "none";