agentation 2.3.0 → 2.3.1
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 +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1219,6 +1219,7 @@ var AnnotationPopupCSS = forwardRef(
|
|
|
1219
1219
|
}, [text, onSubmit]);
|
|
1220
1220
|
const handleKeyDown = useCallback(
|
|
1221
1221
|
(e) => {
|
|
1222
|
+
e.stopPropagation();
|
|
1222
1223
|
if (e.nativeEvent.isComposing) return;
|
|
1223
1224
|
if (e.key === "Enter" && !e.shiftKey) {
|
|
1224
1225
|
e.preventDefault();
|
|
@@ -5046,7 +5047,7 @@ function PageFeedbackToolbarCSS({
|
|
|
5046
5047
|
] }),
|
|
5047
5048
|
/* @__PURE__ */ jsxs3("span", { className: styles_module_default2.settingsVersion, children: [
|
|
5048
5049
|
"v",
|
|
5049
|
-
"2.3.
|
|
5050
|
+
"2.3.1"
|
|
5050
5051
|
] }),
|
|
5051
5052
|
/* @__PURE__ */ jsx3(
|
|
5052
5053
|
"button",
|
|
@@ -5454,6 +5455,7 @@ function PageFeedbackToolbarCSS({
|
|
|
5454
5455
|
style: {
|
|
5455
5456
|
"--marker-color": settings.annotationColor
|
|
5456
5457
|
},
|
|
5458
|
+
onKeyDown: (e) => e.stopPropagation(),
|
|
5457
5459
|
onChange: (e) => setSettings((s) => ({
|
|
5458
5460
|
...s,
|
|
5459
5461
|
webhookUrl: e.target.value
|