office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
36 lines • 1.66 kB
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { autobind } from '../../../Utilities';
import { DefaultButton } from 'office-ui-fabric-react/lib/Button';
import { Panel, PanelType } from 'office-ui-fabric-react/lib/Panel';
var PanelCustomExample = /** @class */ (function (_super) {
tslib_1.__extends(PanelCustomExample, _super);
function PanelCustomExample(props) {
var _this = _super.call(this, props) || this;
_this.state = {
showPanel: false
};
return _this;
}
PanelCustomExample.prototype.render = function () {
return (React.createElement("div", null,
React.createElement(DefaultButton, { text: 'Open Panel', description: 'Opens the Sample Panel', onClick: this._showPanel }),
React.createElement(Panel, { isOpen: this.state.showPanel, onDismiss: this._closePanel, type: PanelType.custom, customWidth: '888px', headerText: 'Custom Panel with custom 888px width' },
React.createElement("span", null, "Content goes here."))));
};
PanelCustomExample.prototype._showPanel = function () {
this.setState({ showPanel: true });
};
PanelCustomExample.prototype._closePanel = function () {
this.setState({ showPanel: false });
};
tslib_1.__decorate([
autobind
], PanelCustomExample.prototype, "_showPanel", null);
tslib_1.__decorate([
autobind
], PanelCustomExample.prototype, "_closePanel", null);
return PanelCustomExample;
}(React.Component));
export { PanelCustomExample };
//# sourceMappingURL=Panel.Custom.Example.js.map