jupyterlab_claude_code_extension 1.0.34 → 1.0.38
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 +0 -6
- package/package.json +1 -1
- package/src/widget.ts +4 -8
package/lib/widget.js
CHANGED
|
@@ -635,12 +635,6 @@ export class ClaudeCodeSessionsWidget extends Widget {
|
|
|
635
635
|
if (s.remote_control) {
|
|
636
636
|
lines.push('Remote control: active');
|
|
637
637
|
}
|
|
638
|
-
if (s.first_prompt) {
|
|
639
|
-
const trimmed = s.first_prompt.length > 100
|
|
640
|
-
? `${s.first_prompt.slice(0, 100)}...`
|
|
641
|
-
: s.first_prompt;
|
|
642
|
-
lines.push(`First prompt: ${trimmed}`);
|
|
643
|
-
}
|
|
644
638
|
if (s.session_id) {
|
|
645
639
|
lines.push(`Session id: ${s.session_id}`);
|
|
646
640
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jupyterlab_claude_code_extension",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.38",
|
|
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
|
@@ -669,7 +669,10 @@ export class ClaudeCodeSessionsWidget extends Widget {
|
|
|
669
669
|
this._bodyEl.appendChild(section);
|
|
670
670
|
}
|
|
671
671
|
|
|
672
|
-
private _renderRow(
|
|
672
|
+
private _renderRow(
|
|
673
|
+
session: ISession,
|
|
674
|
+
sectionKey: SectionKey
|
|
675
|
+
): HTMLDivElement {
|
|
673
676
|
const row = document.createElement('div');
|
|
674
677
|
row.className = 'jp-ClaudeSessionsPanel-row';
|
|
675
678
|
row.title = this._buildRowTooltip(session);
|
|
@@ -748,13 +751,6 @@ export class ClaudeCodeSessionsWidget extends Widget {
|
|
|
748
751
|
if (s.remote_control) {
|
|
749
752
|
lines.push('Remote control: active');
|
|
750
753
|
}
|
|
751
|
-
if (s.first_prompt) {
|
|
752
|
-
const trimmed =
|
|
753
|
-
s.first_prompt.length > 100
|
|
754
|
-
? `${s.first_prompt.slice(0, 100)}...`
|
|
755
|
-
: s.first_prompt;
|
|
756
|
-
lines.push(`First prompt: ${trimmed}`);
|
|
757
|
-
}
|
|
758
754
|
if (s.session_id) {
|
|
759
755
|
lines.push(`Session id: ${s.session_id}`);
|
|
760
756
|
}
|