@pluno/product-agent-web 0.1.104 → 0.1.106

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.
@@ -1935,7 +1935,7 @@ function Kt() {
1935
1935
  const s = e ? "browser_extension_sdk_preview" : "embedded_widget";
1936
1936
  return {
1937
1937
  surface: s,
1938
- description: s === "browser_extension_sdk_preview" ? "Pluno browser-extension SDK preview widget embedded in the host page." : "Pluno Product Agent default widget embedded in the host page.",
1938
+ description: s === "browser_extension_sdk_preview" ? "Pluno browser-extension SDK preview widget embedded in the host page." : "Pluno default widget embedded in the host page.",
1939
1939
  selectors: [
1940
1940
  {
1941
1941
  name: "widget_host",
@@ -234,7 +234,11 @@ const $i = [
234
234
  "[role='dialog']",
235
235
  "[aria-modal='true']",
236
236
  "[tabindex]:not([tabindex='-1'])",
237
- "[draggable='true']"
237
+ "[draggable='true']",
238
+ // Browsers may not expose an in-shadow-root selection by the time the click bubbles.
239
+ // Message content is selectable, so it must never become passive composer-focus space.
240
+ ".pluno-pa-widget__message",
241
+ ".timeline-item"
238
242
  ].join(",");
239
243
  function qi(e, t, n) {
240
244
  return e instanceof Element ? ji(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pluno/product-agent-web",
3
- "version": "0.1.104",
3
+ "version": "0.1.106",
4
4
  "description": "Browser SDK and default widget for embedding Pluno Product Agent into customer web apps.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",