baseui
Version:
A React Component library implementing the Base design language
15 lines (14 loc) • 785 B
TypeScript
import { SIZE } from '../input';
import type { StatefulContainerState, StateReducerFn } from './types';
export { default as Pagination } from './pagination';
export { default as StatefulPagination } from './stateful-pagination';
export { default as StatefulContainer } from './stateful-container';
export { SIZE };
export { StyledRoot, StyledMaxLabel, StyledDropdownContainer } from './styled-components';
export { STATE_CHANGE_TYPE } from './constants';
export * from './types';
export type { PaginationLocale } from './locale';
/** @deprecated use StatefulContainerState instead. To be removed in future versions.*/
export type State = StatefulContainerState;
/** @deprecated use StateReducerFn instead. To be removed in future versions.*/
export type StateReducer = StateReducerFn;