@atlaskit/dynamic-table
Version:
A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.
17 lines (16 loc) • 590 B
TypeScript
import React from 'react';
import type UIAnalyticsEvent from '@atlaskit/analytics-next/UIAnalyticsEvent';
import type { I18nShape } from '../types';
interface ManagedPaginationProps {
value?: number;
onChange: (newValue: any, analyticsEvent?: UIAnalyticsEvent) => void;
total: number;
i18n?: I18nShape;
testId?: string;
isDisabled?: boolean;
}
export default class ManagedPagination extends React.Component<ManagedPaginationProps> {
onChange: (_event: any, newValue: any, analyticsEvent?: UIAnalyticsEvent) => void;
render(): React.JSX.Element;
}
export {};