jupyterlab_claude_code_extension 1.1.11 → 1.1.13

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/README.md CHANGED
@@ -44,6 +44,9 @@ End-users can install the published package from PyPI:
44
44
  pip install jupyterlab_claude_code_extension
45
45
  ```
46
46
 
47
+ > [!WARNING]
48
+ > `package.json` pins `webpack: 5.106.0` and `chalk: 4.1.2` in both `resolutions` and `overrides`. Do not remove these. webpack `>= 5.106.1` changed its module-federation share identifier format and crashes the unmaintained `license-webpack-plugin` (`split('=')[1].trim()`) that `@jupyterlab/builder` injects into every production build; the duplicate `chalk@2.4.2` pulled by `duplicate-package-checker-webpack-plugin` crashes on Node 24+ in the build-isolation install. Without the pins, `make publish` and CI fail on `python -m build`.
49
+
47
50
  ## Uninstall
48
51
 
49
52
  ```bash
package/lib/widget.js CHANGED
@@ -468,7 +468,7 @@ export class ClaudeCodeSessionsWidget extends Widget {
468
468
  const dialog = new Dialog({
469
469
  title: 'Opening Claude Code session',
470
470
  body,
471
- buttons: [Dialog.cancelButton({ label: 'Run in background' })]
471
+ buttons: []
472
472
  });
473
473
  // launch() returns a Promise we don't await - we resolve programmatically
474
474
  // when the spawn completes (or errors).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyterlab_claude_code_extension",
3
- "version": "1.1.11",
3
+ "version": "1.1.13",
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",
package/src/widget.ts CHANGED
@@ -564,7 +564,7 @@ export class ClaudeCodeSessionsWidget extends Widget {
564
564
  const dialog = new Dialog<unknown>({
565
565
  title: 'Opening Claude Code session',
566
566
  body,
567
- buttons: [Dialog.cancelButton({ label: 'Run in background' })]
567
+ buttons: []
568
568
  });
569
569
  // launch() returns a Promise we don't await - we resolve programmatically
570
570
  // when the spawn completes (or errors).