UNPKG

@vlsergey/react-bootstrap-pagetable

Version:

Complex solution to work with pageable data, including sorting, filtering, actions, changing displayed columns, etc.

13 lines 829 B
/// <reference types="react" /> import { PropsType as WithActionsPropsType } from '../actions/withActions'; import ControlledPropsType from '../controlled/ControlledPropsType'; import { PropsType as WithSelectablePropsType } from '../selectable/withSelectable'; declare type PlusControlledBaseProps<T> = ControlledPropsType<T>; declare type PlusSelectableProps<T> = WithSelectablePropsType<T, PlusControlledBaseProps<T>>; declare type PlusFilterableProps<T> = PlusSelectableProps<T>; declare type PlusSortableProps<T> = PlusFilterableProps<T>; declare type PlusActionsProps<T> = WithActionsPropsType<T, PlusSortableProps<T>>; export declare type PropsType<T> = PlusActionsProps<T>; declare const _default: <T>(props: PropsType<T>) => JSX.Element; export default _default; //# sourceMappingURL=ControlledMixin.d.ts.map