UNPKG

nutui-uniapp

Version:

京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)

21 lines (18 loc) 543 B
export type PopoverTheme = 'light' | 'dark' export interface PopoverRootPosition { width: number height: number left: number top: number right: number } export const popoverLocation = ['bottom', 'top', 'left', 'right', 'top-start', 'top-end', 'bottom-start', 'bottom-end', 'left-start', 'left-end', 'right-start', 'right-end'] as const export type PopoverLocation = (typeof popoverLocation)[number] export interface PopoverList { name: string icon?: string disabled?: boolean className?: any [key: PropertyKey]: any }