office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
28 lines (26 loc) • 1.41 kB
JavaScript
define(["require", "exports", "tslib", "./index", "react"], function (require, exports, tslib_1, index_1, React) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/* tslint:enable:no-unused-variable */
var ComboBoxVPage = (function (_super) {
tslib_1.__extends(ComboBoxVPage, _super);
function ComboBoxVPage() {
return _super !== null && _super.apply(this, arguments) || this;
}
ComboBoxVPage.prototype.render = function () {
return React.createElement("div", null,
React.createElement(index_1.ComboBox, { defaultSelectedKey: 'C', label: 'Basic uncontrolled example (allowFreeform: T, AutoComplete: T):', id: 'Basicdrop1', ariaLabel: 'Basic ComboBox example', allowFreeform: true, autoComplete: true, options: [
{ key: 'A', text: 'Option a' },
{ key: 'B', text: 'Option b' },
{ key: 'C', text: 'Option c' },
{ key: 'D', text: 'Option d' },
{ key: 'E', text: 'Option e' },
{ key: 'F', text: 'Option f' },
{ key: 'G', text: 'Option g' },
] }));
};
return ComboBoxVPage;
}(React.Component));
exports.default = ComboBoxVPage;
});
//# sourceMappingURL=ComboBoxPage.visualtest.js.map