office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
19 lines • 1.05 kB
JavaScript
export var FocusZoneTabbableElements;
(function (FocusZoneTabbableElements) {
/** Tabbing is not allowed */
FocusZoneTabbableElements[FocusZoneTabbableElements["none"] = 0] = "none";
/** All tabbing action is allowed */
FocusZoneTabbableElements[FocusZoneTabbableElements["all"] = 1] = "all";
/** Tabbing is allowed only on input elements */
FocusZoneTabbableElements[FocusZoneTabbableElements["inputOnly"] = 2] = "inputOnly";
})(FocusZoneTabbableElements || (FocusZoneTabbableElements = {}));
export var FocusZoneDirection;
(function (FocusZoneDirection) {
/** Only react to up/down arrows. */
FocusZoneDirection[FocusZoneDirection["vertical"] = 0] = "vertical";
/** Only react to left/right arrows. */
FocusZoneDirection[FocusZoneDirection["horizontal"] = 1] = "horizontal";
/** React to all arrows. */
FocusZoneDirection[FocusZoneDirection["bidirectional"] = 2] = "bidirectional";
})(FocusZoneDirection || (FocusZoneDirection = {}));
//# sourceMappingURL=FocusZone.types.js.map