jupyterlab_claude_code_extension 1.1.19 → 1.1.20

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/icons.js CHANGED
@@ -49,13 +49,13 @@ export const shieldIcon = new LabIcon({
49
49
  name: 'jupyterlab_claude_code_extension:shield',
50
50
  svgstr: shieldSvgStr
51
51
  });
52
- // Magnifying-glass copied verbatim from @jupyterlab/ui-components'
53
- // `toolbar/search.svg` - same image the file browser's FilterBox shows
54
- // at the right of the filter input. The icon is used here on the toggle
55
- // button that reveals/hides our filter input, matching what the user
56
- // already recognises from the file browser.
57
- const filterSvgStr = `<svg xmlns="http://www.w3.org/2000/svg" width="16" viewBox="0 0 18 18">
58
- <path fill="#616161" d="M12.1 10.9h-.7l-.2-.2c.8-.9 1.3-2.2 1.3-3.5 0-3-2.4-5.4-5.4-5.4S1.8 4.2 1.8 7.1s2.4 5.4 5.4 5.4c1.3 0 2.5-.5 3.5-1.3l.2.2v.7l4.1 4.1 1.2-1.2zm-5 0c-2.1 0-3.7-1.7-3.7-3.7s1.7-3.7 3.7-3.7 3.7 1.7 3.7 3.7-1.6 3.7-3.7 3.7" class="jp-icon3"/>
52
+ // Funnel copied verbatim from @jupyterlab/ui-components'
53
+ // `search/filter.svg` - the same image the file browser's filter
54
+ // toggle uses. The `class="jp-icon3"` lets JupyterLab's theme drive
55
+ // the fill, so the `fill="#FFF"` on the source path becomes effectively
56
+ // inert under the standard light/dark themes.
57
+ const filterSvgStr = `<svg xmlns="http://www.w3.org/2000/svg" width="16" viewBox="0 0 24 24">
58
+ <path fill="#FFF" d="M14 12v7.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0l-2.01-2.01a.99.99 0 0 1-.29-.83V12h-.03L4.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L14.03 12z" class="jp-icon3"/>
59
59
  </svg>`;
60
60
  export const filterIcon = new LabIcon({
61
61
  name: 'jupyterlab_claude_code_extension:filter',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyterlab_claude_code_extension",
3
- "version": "1.1.19",
3
+ "version": "1.1.20",
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/icons.ts CHANGED
@@ -60,13 +60,13 @@ export const shieldIcon = new LabIcon({
60
60
  svgstr: shieldSvgStr
61
61
  });
62
62
 
63
- // Magnifying-glass copied verbatim from @jupyterlab/ui-components'
64
- // `toolbar/search.svg` - same image the file browser's FilterBox shows
65
- // at the right of the filter input. The icon is used here on the toggle
66
- // button that reveals/hides our filter input, matching what the user
67
- // already recognises from the file browser.
68
- const filterSvgStr = `<svg xmlns="http://www.w3.org/2000/svg" width="16" viewBox="0 0 18 18">
69
- <path fill="#616161" d="M12.1 10.9h-.7l-.2-.2c.8-.9 1.3-2.2 1.3-3.5 0-3-2.4-5.4-5.4-5.4S1.8 4.2 1.8 7.1s2.4 5.4 5.4 5.4c1.3 0 2.5-.5 3.5-1.3l.2.2v.7l4.1 4.1 1.2-1.2zm-5 0c-2.1 0-3.7-1.7-3.7-3.7s1.7-3.7 3.7-3.7 3.7 1.7 3.7 3.7-1.6 3.7-3.7 3.7" class="jp-icon3"/>
63
+ // Funnel copied verbatim from @jupyterlab/ui-components'
64
+ // `search/filter.svg` - the same image the file browser's filter
65
+ // toggle uses. The `class="jp-icon3"` lets JupyterLab's theme drive
66
+ // the fill, so the `fill="#FFF"` on the source path becomes effectively
67
+ // inert under the standard light/dark themes.
68
+ const filterSvgStr = `<svg xmlns="http://www.w3.org/2000/svg" width="16" viewBox="0 0 24 24">
69
+ <path fill="#FFF" d="M14 12v7.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0l-2.01-2.01a.99.99 0 0 1-.29-.83V12h-.03L4.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L14.03 12z" class="jp-icon3"/>
70
70
  </svg>`;
71
71
 
72
72
  export const filterIcon = new LabIcon({