office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
26 lines • 1.92 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
var Button_1 = require("office-ui-fabric-react/lib/Button");
var FocusZone_1 = require("office-ui-fabric-react/lib/FocusZone");
var TextField_1 = require("office-ui-fabric-react/lib/TextField");
var Stack_1 = require("office-ui-fabric-react/lib/Stack");
exports.FocusZoneDisabledExample = function () {
var tokens = { childrenGap: 20 };
return (React.createElement(Stack_1.Stack, { tokens: tokens, horizontalAlign: "start" },
React.createElement(FocusZone_1.FocusZone, { direction: FocusZone_1.FocusZoneDirection.horizontal },
React.createElement(Stack_1.Stack, { tokens: tokens, horizontal: true, verticalAlign: "center" },
React.createElement("span", null, "Enabled FocusZone: "),
React.createElement(Button_1.DefaultButton, null, "Button 1"),
React.createElement(Button_1.DefaultButton, null, "Button 2"),
React.createElement(TextField_1.TextField, { placeholder: "FocusZone TextField", styles: { root: { width: 200 } }, ariaLabel: "FocusZone TextField" }),
React.createElement(Button_1.DefaultButton, null, "Button 3"))),
React.createElement(Button_1.DefaultButton, null, "Tabbable Element 1"),
React.createElement(FocusZone_1.FocusZone, { disabled: true },
React.createElement(Stack_1.Stack, { tokens: tokens, horizontal: true, verticalAlign: "center" },
React.createElement("span", null, "Disabled FocusZone: "),
React.createElement(Button_1.DefaultButton, null, "Button 1"),
React.createElement(Button_1.DefaultButton, null, "Button 2"))),
React.createElement(TextField_1.TextField, { placeholder: "Tabbable Element 2", ariaLabel: "Tabbable Element 2" })));
};
//# sourceMappingURL=FocusZone.Disabled.Example.js.map