@uifabric/experiments
Version:
Experimental React components for building experiences for Office 365.
23 lines • 1.45 kB
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { Pagination } from '@uifabric/experiments/lib/Pagination';
var PaginationComboBoxExample = /** @class */ (function (_super) {
tslib_1.__extends(PaginationComboBoxExample, _super);
function PaginationComboBoxExample(props) {
var _this = _super.call(this, props) || this;
_this.onPageChange = function (index) {
_this.setState({
selectedPageIndex: index
});
};
_this.state = { selectedPageIndex: 0 };
return _this;
}
PaginationComboBoxExample.prototype.render = function () {
var pageCount = 28;
return (React.createElement(Pagination, { selectedPageIndex: this.state.selectedPageIndex, pageCount: pageCount, onPageChange: this.onPageChange, format: 'comboBox', comboBoxAriaLabel: pageCount + " pages available", previousPageAriaLabel: 'previous page', nextPageAriaLabel: 'next page', firstPageAriaLabel: 'first page', lastPageAriaLabel: 'last page', pageAriaLabel: 'page', firstPageIconProps: { iconName: 'DoubleChevronLeft' }, previousPageIconProps: { iconName: 'ChevronLeft' }, nextPageIconProps: { iconName: 'ChevronRight' }, lastPageIconProps: { iconName: 'DoubleChevronRight' } }));
};
return PaginationComboBoxExample;
}(React.Component));
export { PaginationComboBoxExample };
//# sourceMappingURL=Pagination.ComboBox.Example.js.map