worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
74
node_modules/@mui/material/usePagination/usePagination.d.ts
generated
vendored
Normal file
74
node_modules/@mui/material/usePagination/usePagination.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
import * as React from 'react';
|
||||
export interface UsePaginationProps {
|
||||
/**
|
||||
* Number of always visible pages at the beginning and end.
|
||||
* @default 1
|
||||
*/
|
||||
boundaryCount?: number;
|
||||
/**
|
||||
* The name of the component where this hook is used.
|
||||
*/
|
||||
componentName?: string;
|
||||
/**
|
||||
* The total number of pages.
|
||||
* @default 1
|
||||
*/
|
||||
count?: number;
|
||||
/**
|
||||
* The page selected by default when the component is uncontrolled.
|
||||
* @default 1
|
||||
*/
|
||||
defaultPage?: number;
|
||||
/**
|
||||
* If `true`, the component is disabled.
|
||||
* @default false
|
||||
*/
|
||||
disabled?: boolean;
|
||||
/**
|
||||
* If `true`, hide the next-page button.
|
||||
* @default false
|
||||
*/
|
||||
hideNextButton?: boolean;
|
||||
/**
|
||||
* If `true`, hide the previous-page button.
|
||||
* @default false
|
||||
*/
|
||||
hidePrevButton?: boolean;
|
||||
/**
|
||||
* Callback fired when the page is changed.
|
||||
*
|
||||
* @param {React.ChangeEvent<unknown>} event The event source of the callback.
|
||||
* @param {number} page The page selected.
|
||||
*/
|
||||
onChange?: (event: React.ChangeEvent<unknown>, page: number) => void;
|
||||
/**
|
||||
* The current page. Unlike `TablePagination`, which starts numbering from `0`, this pagination starts from `1`.
|
||||
*/
|
||||
page?: number;
|
||||
/**
|
||||
* If `true`, show the first-page button.
|
||||
* @default false
|
||||
*/
|
||||
showFirstButton?: boolean;
|
||||
/**
|
||||
* If `true`, show the last-page button.
|
||||
* @default false
|
||||
*/
|
||||
showLastButton?: boolean;
|
||||
/**
|
||||
* Number of always visible pages before and after the current page.
|
||||
* @default 1
|
||||
*/
|
||||
siblingCount?: number;
|
||||
}
|
||||
export interface UsePaginationItem {
|
||||
onClick: React.ReactEventHandler;
|
||||
type: 'page' | 'first' | 'last' | 'next' | 'previous' | 'start-ellipsis' | 'end-ellipsis';
|
||||
page: number | null;
|
||||
selected: boolean;
|
||||
disabled: boolean;
|
||||
}
|
||||
export interface UsePaginationResult {
|
||||
items: UsePaginationItem[];
|
||||
}
|
||||
export default function usePagination(props: UsePaginationProps): UsePaginationResult;
|
||||
Loading…
Add table
Add a link
Reference in a new issue