UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

32 lines 2.17 kB
define(["require", "exports", "react", "office-ui-fabric-react"], function (require, exports, React, office_ui_fabric_react_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var menuProps = { items: [ { key: 'emailMessage', text: 'Email message', iconProps: { iconName: 'Mail' } }, { key: 'calendarEvent', text: 'Calendar event', iconProps: { iconName: 'Calendar' } } ] }; // Example formatting var stackTokens = { childrenGap: 40 }; exports.ButtonSplitExample = function (props) { var disabled = props.disabled, checked = props.checked; return (React.createElement(office_ui_fabric_react_1.Stack, { horizontal: true, wrap: true, tokens: stackTokens }, React.createElement(office_ui_fabric_react_1.DefaultButton, { text: "Standard", split: true, splitButtonAriaLabel: "See 2 options", "aria-roledescription": "split button", menuProps: menuProps, onClick: _alertClicked, disabled: disabled, checked: checked }), React.createElement(office_ui_fabric_react_1.DefaultButton, { text: "Primary", primary: true, split: true, splitButtonAriaLabel: "See 2 options", "aria-roledescription": "split button", menuProps: menuProps, onClick: _alertClicked, disabled: disabled, checked: checked }), React.createElement(office_ui_fabric_react_1.DefaultButton, { text: "Main action disabled", primaryDisabled: true, split: true, splitButtonAriaLabel: "See 2 options", "aria-roledescription": "split button", menuProps: menuProps, onClick: _alertClicked, disabled: disabled, checked: checked }), React.createElement(office_ui_fabric_react_1.DefaultButton, { text: "Disabled", disabled: true, allowDisabledFocus: true, split: true, splitButtonAriaLabel: "See 2 options", "aria-roledescription": "split button", menuProps: menuProps, onClick: _alertClicked, checked: checked }))); }; function _alertClicked() { alert('Clicked'); } }); //# sourceMappingURL=Button.Split.Example.js.map