@runtypelabs/persona 3.8.0 → 3.8.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.
@@ -13808,6 +13808,7 @@ var createAgentExperience = (mount, initialConfig, runtimeOptions) => {
13808
13808
  if (openPrevented === true) return;
13809
13809
  event.preventDefault();
13810
13810
  event.stopPropagation();
13811
+ artifactsPaneUserHidden = false;
13811
13812
  session.selectArtifact(artifactId);
13812
13813
  syncArtifactPane();
13813
13814
  });
@@ -13703,6 +13703,7 @@ var createAgentExperience = (mount, initialConfig, runtimeOptions) => {
13703
13703
  if (openPrevented === true) return;
13704
13704
  event.preventDefault();
13705
13705
  event.stopPropagation();
13706
+ artifactsPaneUserHidden = false;
13706
13707
  session.selectArtifact(artifactId);
13707
13708
  syncArtifactPane();
13708
13709
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runtypelabs/persona",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "Themeable, pluggable streaming agent widget for websites, in plain JS with support for voice input and reasoning / tool output.",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
package/src/ui.ts CHANGED
@@ -1289,6 +1289,7 @@ export const createAgentExperience = (
1289
1289
  if (openPrevented === true) return;
1290
1290
  event.preventDefault();
1291
1291
  event.stopPropagation();
1292
+ artifactsPaneUserHidden = false;
1292
1293
  session.selectArtifact(artifactId);
1293
1294
  syncArtifactPane();
1294
1295
  });