pkg-components
Version:
37 lines (36 loc) • 814 B
text/typescript
export interface NewSelectProps {
accessor?: string
action?: boolean
beforeLabel?: string
border?: any
disabled?: boolean
error?: boolean
fullName?: any
heightBody?: any
icon?: boolean
canDelete?: boolean
id?: string
loading?: boolean
margin?: string
minWidth?: string
name?: string
resetValue?: boolean
noLabel?: boolean
optionName?: string
options?: any[]
overLine?: boolean
padding?: string
required?: boolean
search?: boolean
sideLabel?: string
title?: string
topTitle?: string
value?: string
width?: string
dataForm?: any
handleClickAction?: () => void
setDataValue?: (dataForm: any) => void
handleClean?: () => void
onReset?: () => void
onChange?: (e: { target: { name: string, value: any } }) => void
}