import * as React from 'react'; import { GetScrollContextConsumerValue } from '../Scroll/Props'; import { GetZIndexConsumerProps } from '../Modal/Props'; import { ForceAdd, KeygenType, RegularAttributes, StandardProps } from '../@types/common'; declare type PickerPosition = 'left-bottom' | 'left-top' | 'right-bottom' | 'right-top'; declare type DropdownPosition = 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right'; export declare type ListDurationType = 'fast' | 'slow' | number; export declare type ListAnimationType = 'collapse' | 'fade' | 'scale-y' | 'scale-x'; export interface AbsoluteProps { focus?: boolean; fixed?: boolean | 'min'; parentElement?: HTMLElement; position?: RegularAttributes.ListPosition | PickerPosition | DropdownPosition; /** * @en When it is true, the pop-up layer of option append into document.body; When it is a function, the return value is used as the popup layer container * @cn 为 true 时,选项弹出层在 DOM 中独立 render; 为函数时,返回值作为弹出层容器 * @default false */ absolute?: boolean | (() => HTMLElement); scrollElement?: HTMLElement; scrollLeft?: number; scrollTop?: number; rootClass?: string; /** * @en options z-index should use with absolute * @cn 选项列表 z-index 值, 需要配合 absolute * @default 1000 */ zIndex?: number; style?: React.CSSProperties; autoClass?: string; value?: any; getResetPosition?: (resetFunc: () => void) => void; autoAdapt?: boolean; } declare type GetAbsolutePropsIn = Omit, 'getRef'>; export declare type GetAbsoluteProps = GetZIndexConsumerProps>>; /** -----------List----------* */ export interface ListProps extends StandardProps { show?: boolean; getRef?: (el: HTMLDivElement) => void; children?: React.ReactNode; onMouseMove?: () => void; } /** -----------lazyList----------* */ export interface LazyListProps extends StandardProps { stay?: boolean; data: DataItem[]; lineHeight?: number; colNum?: number; itemsInView?: number; height?: number; renderItem: (d: DataItem, i: number) => React.ReactNode; keygen?: KeygenType; force?: any; } export {};