mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-26 12:21:23 +00:00
updated snapshot
This commit is contained in:
@@ -33,6 +33,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
||||
<div
|
||||
className="contextual-pane-out"
|
||||
onClick={[Function]}
|
||||
onKeyDown={[Function]}
|
||||
/>
|
||||
<div
|
||||
className="contextual-pane"
|
||||
@@ -1165,7 +1166,9 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
||||
className="errorLink"
|
||||
hidden={true}
|
||||
onClick={[Function]}
|
||||
onKeyDown={[Function]}
|
||||
role="link"
|
||||
tabIndex={0}
|
||||
>
|
||||
More details
|
||||
</a>
|
||||
|
||||
@@ -24,6 +24,7 @@ exports[`Excute Sproc Param Pane should render Default properly 1`] = `
|
||||
<div
|
||||
className="contextual-pane-out"
|
||||
onClick={[Function]}
|
||||
onKeyDown={[Function]}
|
||||
/>
|
||||
<div
|
||||
className="contextual-pane"
|
||||
@@ -1156,7 +1157,9 @@ exports[`Excute Sproc Param Pane should render Default properly 1`] = `
|
||||
className="errorLink"
|
||||
hidden={true}
|
||||
onClick={[Function]}
|
||||
onKeyDown={[Function]}
|
||||
role="link"
|
||||
tabIndex={0}
|
||||
>
|
||||
More details
|
||||
</a>
|
||||
|
||||
@@ -1,7 +1,4 @@
|
||||
/* eslint-disable jsx-a11y/no-static-element-interactions */
|
||||
/* eslint-disable jsx-a11y/interactive-supports-focus */
|
||||
/* eslint-disable jsx-a11y/click-events-have-key-events */
|
||||
/* eslint-disable jsx-a11y/anchor-is-valid */
|
||||
import { IconButton, PrimaryButton } from "@fluentui/react";
|
||||
import React, { FunctionComponent, ReactNode } from "react";
|
||||
import ErrorRedIcon from "../../../../images/error_red.svg";
|
||||
@@ -71,7 +68,14 @@ export const GenericRightPaneComponent: FunctionComponent<GenericRightPaneProps>
|
||||
<span className="formErrors" title={formError}>
|
||||
{formError}
|
||||
</span>
|
||||
<a className="errorLink" role="link" hidden={!formErrorDetail} onClick={expandConsole}>
|
||||
<a
|
||||
className="errorLink"
|
||||
role="link"
|
||||
hidden={!formErrorDetail}
|
||||
onClick={expandConsole}
|
||||
tabIndex={0}
|
||||
onKeyDown={expandConsole}
|
||||
>
|
||||
More details
|
||||
</a>
|
||||
</span>
|
||||
@@ -115,7 +119,7 @@ export const GenericRightPaneComponent: FunctionComponent<GenericRightPaneProps>
|
||||
|
||||
return (
|
||||
<div tabIndex={-1} onKeyDown={onKeyDown}>
|
||||
<div className="contextual-pane-out" onClick={onClose}></div>
|
||||
<div className="contextual-pane-out" onClick={onClose} onKeyDown={onClose}></div>
|
||||
<div className="contextual-pane" id={id} style={{ height: panelHeight }} onKeyDown={onKeyDown}>
|
||||
<div className="panelContentWrapper">
|
||||
{renderPanelHeader()}
|
||||
|
||||
@@ -1002,6 +1002,7 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
||||
<div
|
||||
className="contextual-pane-out"
|
||||
onClick={[Function]}
|
||||
onKeyDown={[Function]}
|
||||
/>
|
||||
<div
|
||||
className="contextual-pane"
|
||||
@@ -2134,7 +2135,9 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
||||
className="errorLink"
|
||||
hidden={true}
|
||||
onClick={[Function]}
|
||||
onKeyDown={[Function]}
|
||||
role="link"
|
||||
tabIndex={0}
|
||||
>
|
||||
More details
|
||||
</a>
|
||||
|
||||
@@ -28,6 +28,7 @@ exports[`Table query select Panel should render Default properly 1`] = `
|
||||
<div
|
||||
className="contextual-pane-out"
|
||||
onClick={[Function]}
|
||||
onKeyDown={[Function]}
|
||||
/>
|
||||
<div
|
||||
className="contextual-pane"
|
||||
@@ -1160,7 +1161,9 @@ exports[`Table query select Panel should render Default properly 1`] = `
|
||||
className="errorLink"
|
||||
hidden={true}
|
||||
onClick={[Function]}
|
||||
onKeyDown={[Function]}
|
||||
role="link"
|
||||
tabIndex={0}
|
||||
>
|
||||
More details
|
||||
</a>
|
||||
|
||||
Reference in New Issue
Block a user