Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "Support ESC after clicking in Popup",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "jehell@microsoft.com"
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ exports[`Callout renders Callout correctly 1`] = `
"overflowY": undefined,
}
}
tabIndex={-1}
>
Content
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ exports[`HoverCard renders ExpandingCard correctly 1`] = `
"overflowY": "hidden",
}
}
tabIndex={-1}
>
<div
onFocusCapture={[Function]}
Expand Down Expand Up @@ -295,6 +296,7 @@ exports[`HoverCard renders PlainCard correctly 1`] = `
"overflowY": undefined,
}
}
tabIndex={-1}
>
<div
onFocusCapture={[Function]}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ exports[`Modal renders Modal correctly 1`] = `
"overflowY": undefined,
}
}
tabIndex={-1}
>
<div
className=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ exports[`Panel renders Panel correctly 1`] = `
"overflowY": undefined,
}
}
tabIndex={-1}
>
<div
aria-hidden={false}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export class Popup extends BaseComponent<IPopupProps, IPopupState> {

return (
<div
tabIndex={-1}
ref={this._root}
{...getNativeProps(this.props, divProperties)}
className={className}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ exports[`TeachingBubble renders TeachingBubble correctly 1`] = `
"overflowY": "hidden",
}
}
tabIndex={-1}
>
<div>
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ exports[`Tooltip renders default Tooltip correctly 1`] = `
"overflowY": undefined,
}
}
tabIndex={-1}
>
<div
role="tooltip"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ exports[`Component Examples renders Panel.HiddenOnDismiss.Example.tsx correctly
"overflowY": undefined,
}
}
tabIndex={-1}
>
<div
aria-hidden={false}
Expand Down