UNPKG

dareway-rui

Version:

42 lines (31 loc) 871 B
import * as React from 'react'; declare interface NumberColumnProps { name: string, head?: string, headBold?: boolean, headFontColor?: string, headOblique?: boolean, bodyAlign?: string, bodyBold?: boolean, bodyFontColor?: string, bodyOblique?: boolean, bodyStyleFilter?: Function, tail?: string, tailAlign?: string, tailBold?: boolean, tailFontColor?: string, tailOblique?: boolean, width?: number, widthFixed?: boolean, readonly?: boolean, cellReadonlyFilter?: Function, required?: boolean, hidden?: boolean, maxLength?: number, mask?: string, zeroDisplayAs0?: boolean, nullable?: boolean, onChange?: Function, onBlur?: Function } export default class NumberColumn extends React.Component<NumberColumnProps> {}