office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
29 lines • 1.38 kB
JavaScript
import * as tslib_1 from "tslib";
import { DefaultButton } from 'office-ui-fabric-react/lib/Button';
import { Panel, PanelType } from 'office-ui-fabric-react/lib/Panel';
import * as React from 'react';
var PanelSmallLeftExample = /** @class */ (function (_super) {
tslib_1.__extends(PanelSmallLeftExample, _super);
function PanelSmallLeftExample() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.state = {
showPanel: false
};
_this._showPanel = function () {
_this.setState({ showPanel: true });
};
_this._hidePanel = function () {
_this.setState({ showPanel: false });
};
return _this;
}
PanelSmallLeftExample.prototype.render = function () {
return (React.createElement("div", null,
React.createElement(DefaultButton, { secondaryText: "Opens the Sample Panel", onClick: this._showPanel, text: "Open Panel" }),
React.createElement(Panel, { isOpen: this.state.showPanel, type: PanelType.smallFixedNear, onDismiss: this._hidePanel, headerText: "Panel - Small, left-aligned, fixed" },
React.createElement("span", null, "Content goes here."))));
};
return PanelSmallLeftExample;
}(React.Component));
export { PanelSmallLeftExample };
//# sourceMappingURL=Panel.SmallLeft.Example.js.map