DIR : /home/kozerus/public_html/cropex/node/node_modules/@radix-ui/react-focus-guards/dist/index.mjs
/home/kozerus/public_html/cropex/node/node_modules/@radix-ui/react-focus-guards/dist
"use client";
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
// src/focus-guards.tsx
import * as React from "react";
var count = 0;
var guards = null;
function FocusGuards(props) {
useFocusGuards();
return props.children;
}
__name(FocusGuards, "FocusGuards");
function useFocusGuards() {
React.useEffect(() => {
if (!guards) {
guards = { start: createFocusGuard(), end: createFocusGuard() };
}
const { start, end } = guards;
if (document.body.firstElementChild !== start) {
document.body.insertAdjacentElement("afterbegin", start);
}
if (document.body.lastElementChild !== end) {
document.body.insertAdjacentElement("beforeend", end);
}
count++;
return () => {
if (count === 1) {
guards?.start.remove();
guards?.end.remove();
guards = null;
}
count = Math.max(0, count - 1);
};
}, []);
}
__name(useFocusGuards, "useFocusGuards");
function createFocusGuard() {
const element = document.createElement("span");
element.setAttribute("data-radix-focus-guard", "");
element.tabIndex = 0;
element.style.outline = "none";
element.style.opacity = "0";
element.style.position = "fixed";
element.style.pointerEvents = "none";
return element;
}
__name(createFocusGuard, "createFocusGuard");
export {
FocusGuards,
FocusGuards as Root,
useFocusGuards
};
//# sourceMappingURL=index.mjs.map
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer