ui-sniper 3.0.5 → 3.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -9
package/dist/index.js
CHANGED
|
@@ -7893,7 +7893,7 @@ function SettingsPanel({
|
|
|
7893
7893
|
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("a", { className: styles_module_default9.settingsBrand, href: "https://hara-xy.com", target: "_blank", rel: "noopener noreferrer", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "72", height: "16", viewBox: "0 0 500 151", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("text", { x: "10", y: "110", "font-family": "'Arial Black', 'Impact', sans-serif", "font-size": "105", "font-weight": "900", "font-style": "italic", "letter-spacing": "-2", fill: "currentColor", children: "UI SNIPER" }) }) }),
|
|
7894
7894
|
/* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { className: styles_module_default9.settingsVersion, children: [
|
|
7895
7895
|
"v",
|
|
7896
|
-
"3.0.
|
|
7896
|
+
"3.0.6"
|
|
7897
7897
|
] }),
|
|
7898
7898
|
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
7899
7899
|
"button",
|
|
@@ -10663,6 +10663,16 @@ function PageFeedbackToolbarCSS({
|
|
|
10663
10663
|
return;
|
|
10664
10664
|
}
|
|
10665
10665
|
if (isTyping || e.metaKey || e.ctrlKey) return;
|
|
10666
|
+
if (e.key === "f" || e.key === "F") {
|
|
10667
|
+
e.preventDefault();
|
|
10668
|
+
hideTooltipsUntilMouseLeave();
|
|
10669
|
+
if (isActive) {
|
|
10670
|
+
deactivate();
|
|
10671
|
+
} else {
|
|
10672
|
+
setIsActive(true);
|
|
10673
|
+
}
|
|
10674
|
+
return;
|
|
10675
|
+
}
|
|
10666
10676
|
if (e.key === "p" || e.key === "P") {
|
|
10667
10677
|
e.preventDefault();
|
|
10668
10678
|
hideTooltipsUntilMouseLeave();
|