office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
23 lines (22 loc) • 2.43 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/data', './examples/CommandBar.Basic.Example', './examples/CommandBar.NonFocusable.Example'], function (require, exports, React, index_1, index_2, data_1, CommandBar_Basic_Example_1, CommandBar_NonFocusable_Example_1) {
"use strict";
var CommandBarBasicExampleCode = require('./examples/CommandBar.Basic.Example.tsx');
var CommandBarNoFocusableItemsExampleCode = require('./examples/CommandBar.NonFocusable.Example.tsx');
var CommandBarPage = (function (_super) {
__extends(CommandBarPage, _super);
function CommandBarPage() {
_super.apply(this, arguments);
}
CommandBarPage.prototype.render = function () {
var cmdBarParamsTextAndIcons = { items: data_1.items, farItems: data_1.farItems };
return (React.createElement("div", null, React.createElement("h1", {className: 'ms-font-xxl'}, "CommandBar"), React.createElement("div", null, React.createElement(index_1.Link, {target: '_blank', href: 'http://dev.office.com/fabric/components/commandBar'}, "CommandBars"), React.createElement("span", null, " provide a menu control to expose application commands. Command bars typically are rendered just below the header.")), React.createElement("h2", {className: 'ms-font-xl'}, "Examples"), React.createElement(index_2.ExampleCard, {title: 'CommandBar with search box and overflowing menu items', code: CommandBarBasicExampleCode}, React.createElement(CommandBar_Basic_Example_1.CommandBarBasicExample, React.__spread({}, cmdBarParamsTextAndIcons))), React.createElement(index_2.ExampleCard, {title: 'CommandBar with non-focusable items', code: CommandBarNoFocusableItemsExampleCode}, React.createElement(CommandBar_NonFocusable_Example_1.CommandBarNonFocusableItemsExample, null)), React.createElement(index_2.PropertiesTableSet, {componentName: 'CommandBar'}), React.createElement(index_2.PropertiesTableSet, {componentName: 'ContextualMenu', renderOnly: ['IContextualMenuItem']})));
};
return CommandBarPage;
}(React.Component));
exports.CommandBarPage = CommandBarPage;
});