office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
32 lines (30 loc) • 2.45 kB
JavaScript
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
define(["require", "exports", "react", "../../../index", "../../components/index", "./examples/Picker.CustomResult.Example", "./examples/TagPicker.Basic.Example", "../../utilities/pageroute", "../../components/App/AppState"], function (require, exports, React, index_1, index_2, Picker_CustomResult_Example_1, TagPicker_Basic_Example_1, pageroute_1, AppState_1) {
"use strict";
var TagPickerExampleCode = require('./examples/TagPicker.Basic.Example.tsx');
var PickerCustomResultExampleCode = require('./examples/Picker.CustomResult.Example.tsx');
var PickersPage = (function (_super) {
__extends(PickersPage, _super);
function PickersPage() {
var _this = _super.call(this) || this;
_this._url = pageroute_1.getPageRouteFromState(AppState_1.AppState, 'Basic components', 'PeoplePicker');
return _this;
}
PickersPage.prototype.render = function () {
return (React.createElement(index_2.ComponentPage, { title: 'Pickers', componentName: 'PickersExample', exampleCards: React.createElement("div", null,
React.createElement(index_2.ExampleCard, { title: 'Tag Picker', code: TagPickerExampleCode },
React.createElement(TagPicker_Basic_Example_1.TagPickerBasicExample, null)),
React.createElement(index_2.ExampleCard, { title: 'Custom Picker (Document Picker)', code: PickerCustomResultExampleCode },
React.createElement(Picker_CustomResult_Example_1.PickerCustomResultExample, null))), propertiesTables: React.createElement(index_2.PropertiesTableSet, { componentName: 'BasePicker', componentPath: 'components/pickers/' }), overview: React.createElement("div", null,
React.createElement(index_1.Link, { target: '_blank', href: 'http://dev.office.com/fabric/components/Pickers' }, " Pickers "),
React.createElement("span", null, " are used to pick recipients.")), route: this._url, isHeaderVisible: this.props.isHeaderVisible }));
};
return PickersPage;
}(React.Component));
exports.PickersPage = PickersPage;
});
//# sourceMappingURL=PickersPage.js.map