webcoreui
Version:
UI component and template library for Astro, Svelte, and React apps styled with Sass.
20 lines (16 loc) • 467 B
text/typescript
import type { PopoverPosition } from '../../utils/popover'
import type { ListEventType, ListProps } from '../List/list'
export type SelectEventType = {
select: string
} & ListEventType
export type SelectProps = {
name: string
value?: string
placeholder?: string
label?: string
subText?: string
disabled?: boolean
required?: boolean
updateValue?: boolean
position?: PopoverPosition | 'modal'
} & ListProps