react-admin-kit
Version:
A react based UI components for admin system
30 lines (29 loc) • 970 B
TypeScript
import { Component } from 'react';
import type { BaseSelectProps } from './BaseSelect';
/**
* 分页选择组件
*
*/
declare class BasePaginationSelect extends Component<BaseSelectProps, any> {
private isLoaded;
constructor(props: any);
reRender: (e: any) => void;
componentDidMount(): void;
componentWillUnmount(): void;
componentDidUpdate(prevProps: any): void;
isNoCache: () => boolean | undefined;
handleLoadData: () => void;
loadDataForCache: () => void;
loadDataWithoutCache: () => void;
getTotal: () => any;
reset: () => void;
handleOnChange: (val: any, option: any) => void;
handleUpdateData: () => void;
handleSearchData: () => void;
handlePopupScroll: (e: any) => void;
toBottomNeedLoad: (target: any) => boolean;
toBottom: (target: any) => boolean;
handleSearch: (value: any) => void;
render(): import("react/jsx-runtime").JSX.Element;
}
export default BasePaginationSelect;