UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

51 lines (48 loc) 1.29 kB
interface ColumnProps { columnKey?: any; field?: string | ((item: any) => any); sortField?: string | ((item: any) => any); filterField?: string | ((item: any) => any); dataType?: string; sortable?: boolean; header?: any; footer?: any; style?: object; class?: string; headerStyle?: object; headerClass?: string; bodyStyle?: object; bodyClass?: string; footerStyle?: object; footerClass?: string; showFilterMenu?: boolean; showFilterOperator?: boolean; showClearButton?: boolean; showApplyButton?: boolean; showFilterMatchModes?: boolean; showAddButton?: boolean; filterMatchModeOptions?: any[]; maxConstraints?: number; excludeGlobalFilter?: boolean; filterHeaderStyle?: object; filterHeaderClass?: string; filterMenuStyle?: object; filterMenuClass?: string; selectionMode?: string; expander?: boolean; colspan?: number; rowspan?: number; rowReorder?: boolean; rowReorderIcon?: string; reorderableColumn?: boolean; rowEditor?: boolean; frozen?: boolean; alignFrozen?: string; exportable?: boolean; filterMatchMode?: string; hidden?: boolean; } declare class Column { $props: ColumnProps; } export default Column;