UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

28 lines 2.04 kB
define(["require", "exports", "tslib", "react", "office-ui-fabric-react/lib/Utilities", "./Button.Basic.Example.styles", "office-ui-fabric-react/lib/Button", "office-ui-fabric-react/lib/Label"], function (require, exports, tslib_1, React, Utilities_1, Button_Basic_Example_styles_1, Button_1, Label_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var ButtonDefaultExample = /** @class */ (function (_super) { tslib_1.__extends(ButtonDefaultExample, _super); function ButtonDefaultExample() { return _super !== null && _super.apply(this, arguments) || this; } ButtonDefaultExample.prototype.render = function () { var _a = this.props, disabled = _a.disabled, checked = _a.checked; var getClassNames = Utilities_1.classNamesFunction(); var classNames = getClassNames(Button_Basic_Example_styles_1.getStyles, {}); return (React.createElement("div", { className: Utilities_1.css(classNames.twoup) }, React.createElement("div", null, React.createElement(Label_1.Label, null, "Standard"), React.createElement(Button_1.DefaultButton, { "data-automation-id": "test", allowDisabledFocus: true, disabled: disabled, checked: checked, text: "Button", onClick: this._alertClicked })), React.createElement("div", null, React.createElement(Label_1.Label, null, "Primary"), React.createElement(Button_1.DefaultButton, { primary: true, "data-automation-id": "test", disabled: disabled, checked: checked, text: "Button", onClick: this._alertClicked, allowDisabledFocus: true })))); }; ButtonDefaultExample.prototype._alertClicked = function () { alert('Clicked'); }; return ButtonDefaultExample; }(React.Component)); exports.ButtonDefaultExample = ButtonDefaultExample; }); //# sourceMappingURL=Button.Default.Example.js.map