jupyterlab_claude_code_extension 1.1.9 → 1.1.11

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/lib/widget.js CHANGED
@@ -857,7 +857,6 @@ export class ClaudeCodeSessionsWidget extends Widget {
857
857
  }
858
858
  const path = this._activeSession.project_path;
859
859
  Clipboard.copyToSystem(path);
860
- Notification.success(`Copied: ${path}`, { autoClose: 2000 });
861
860
  }
862
861
  });
863
862
  this._commands.addCommand('claude-code-sessions:remove', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyterlab_claude_code_extension",
3
- "version": "1.1.9",
3
+ "version": "1.1.11",
4
4
  "description": "Browse, resume, and manage your Claude Code CLI sessions from a JupyterLab side panel. One click reactivates the right terminal - no duplicate tabs, live remote-control indicator, and favourites for the projects you keep coming back to.",
5
5
  "keywords": [
6
6
  "jupyter",
@@ -95,7 +95,13 @@
95
95
  },
96
96
  "resolutions": {
97
97
  "lib0": "0.2.111",
98
- "license-webpack-plugin": "4.0.2"
98
+ "webpack": "5.106.0",
99
+ "chalk": "4.1.2"
100
+ },
101
+ "overrides": {
102
+ "lib0": "0.2.111",
103
+ "webpack": "5.106.0",
104
+ "chalk": "4.1.2"
99
105
  },
100
106
  "sideEffects": [
101
107
  "style/*.css",
package/src/widget.ts CHANGED
@@ -1001,7 +1001,6 @@ export class ClaudeCodeSessionsWidget extends Widget {
1001
1001
  }
1002
1002
  const path = this._activeSession.project_path;
1003
1003
  Clipboard.copyToSystem(path);
1004
- Notification.success(`Copied: ${path}`, { autoClose: 2000 });
1005
1004
  }
1006
1005
  });
1007
1006