UNPKG

@uifabric/experiments

Version:

Experimental React components for building experiences for Office 365.

22 lines 1.25 kB
import * as tslib_1 from "tslib"; import * as React from 'react'; import { Pagination } from '@uifabric/experiments/lib/Pagination'; var PaginationButtonsBasicExample = /** @class */ (function (_super) { tslib_1.__extends(PaginationButtonsBasicExample, _super); function PaginationButtonsBasicExample(props) { var _this = _super.call(this, props) || this; _this.onPageChange = function (index) { _this.setState({ selectedPageIndex: index }); }; _this.state = { selectedPageIndex: 0 }; return _this; } PaginationButtonsBasicExample.prototype.render = function () { return (React.createElement(Pagination, { selectedPageIndex: this.state.selectedPageIndex, pageCount: 27, itemsPerPage: 10, totalItemCount: 268, format: 'buttons', previousPageAriaLabel: 'previous page', nextPageAriaLabel: 'next page', firstPageAriaLabel: 'first page', lastPageAriaLabel: 'last page', pageAriaLabel: 'page', selectedAriaLabel: 'selected', onPageChange: this.onPageChange })); }; return PaginationButtonsBasicExample; }(React.Component)); export { PaginationButtonsBasicExample }; //# sourceMappingURL=Pagination.Buttons.Basic.Example.js.map