Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99557155
TablePaginationActions.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jan 25, 09:53
Size
1 KB
Mime Type
text/x-java
Expires
Mon, Jan 27, 09:53 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23822420
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
TablePaginationActions.d.ts
View Options
import * as React from 'react';
import { IconButtonProps } from '../IconButton/IconButton';
export interface TablePaginationActionsProps extends React.HTMLAttributes<HTMLDivElement> {
backIconButtonProps?: Partial<IconButtonProps>;
/**
* Override or extend the styles applied to the component.
*/
classes?: {};
count: number;
/**
* Accepts a function which returns a string value that provides a user-friendly name for the current page.
* This is important for screen reader users.
*
* For localization purposes, you can use the provided [translations](/material-ui/guides/localization/).
* @param {string} type The link or button type to format ('first' | 'last' | 'next' | 'previous').
* @returns {string}
*/
getItemAriaLabel: (type: 'first' | 'last' | 'next' | 'previous') => string;
nextIconButtonProps?: Partial<IconButtonProps>;
onPageChange: (event: React.MouseEvent<HTMLButtonElement> | null, page: number) => void;
page: number;
rowsPerPage: number;
showFirstButton: boolean;
showLastButton: boolean;
}
declare const TablePaginationActions: React.JSXElementConstructor<TablePaginationActionsProps>;
export default TablePaginationActions;
Event Timeline
Log In to Comment