vite-plugin-ai-annotator 1.16.0 → 1.16.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.
|
@@ -72,7 +72,7 @@ export declare class AnnotatorToolbar extends LitElement {
|
|
|
72
72
|
private renderTrashIcon;
|
|
73
73
|
private renderCloseIcon;
|
|
74
74
|
private renderHelpIcon;
|
|
75
|
-
private
|
|
75
|
+
private renderSendIcon;
|
|
76
76
|
private showToast;
|
|
77
77
|
private showTooltip;
|
|
78
78
|
private hideTooltip;
|
|
@@ -8119,9 +8119,9 @@
|
|
|
8119
8119
|
<path stroke-linecap="round" stroke-linejoin="round" d="M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9 5.25h.008v.008H12v-.008z" />
|
|
8120
8120
|
</svg>`;
|
|
8121
8121
|
}
|
|
8122
|
-
|
|
8122
|
+
renderSendIcon() {
|
|
8123
8123
|
return x`<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
|
|
8124
|
-
<path stroke-linecap="round" stroke-linejoin="round" d="
|
|
8124
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M6 12L3.269 3.126A59.768 59.768 0 0121.485 12 59.77 59.77 0 013.27 20.876L5.999 12zm0 0h7.5" />
|
|
8125
8125
|
</svg>`;
|
|
8126
8126
|
}
|
|
8127
8127
|
showToast(message) {
|
|
@@ -8245,12 +8245,12 @@
|
|
|
8245
8245
|
<button
|
|
8246
8246
|
class="toolbar-btn"
|
|
8247
8247
|
@click=${this.copySessionId}
|
|
8248
|
-
@mouseenter=${(e5) => this.showTooltip("
|
|
8248
|
+
@mouseenter=${(e5) => this.showTooltip("Send to Claude", e5.currentTarget)}
|
|
8249
8249
|
@mouseleave=${() => this.hideTooltip()}
|
|
8250
|
-
aria-label="
|
|
8251
|
-
title="
|
|
8250
|
+
aria-label="Send selections to Claude Code"
|
|
8251
|
+
title="Send to Claude"
|
|
8252
8252
|
>
|
|
8253
|
-
${this.
|
|
8253
|
+
${this.renderSendIcon()}
|
|
8254
8254
|
</button>
|
|
8255
8255
|
|
|
8256
8256
|
<button
|
package/package.json
CHANGED