@blueprintjs/core
Version:
Core styles & components
50 lines (42 loc) • 1.95 kB
text/typescript
/*
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import type { OverlayProps } from "../overlay/overlayProps";
/**
* Public instance properties & methods for an overlay in the current overlay stack.
*/
export interface OverlayInstance {
/**
* Bring document focus inside this overlay element.
* This should be defined if `props.enforceFocus={true}` or `props.autoFocus={true}`.
*/
bringFocusInsideOverlay?: () => void;
/** Reference to the overlay container element which may or may not be in a Portal. */
containerElement: React.RefObject<HTMLDivElement>;
/**
* Document "focus" event handler which needs to be attached & detached appropriately.
* This should be defined if `props.enforceFocus={true}`.
*/
handleDocumentFocus?: (e: FocusEvent) => void;
/**
* Document "mousedown" event handler which needs to be attached & detached appropriately.
* This should be defined if `props.canOutsideClickClose={true}` and `props.hasBackdrop={false}`.
*/
handleDocumentMousedown?: (e: MouseEvent) => void;
/** Unique ID for this overlay which helps to identify it across prop changes. */
id: string;
/** Subset of props necessary for some overlay stack focus management logic. */
props: Pick<OverlayProps, "autoFocus" | "enforceFocus" | "usePortal" | "hasBackdrop">;
}