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 renderClipboardIcon;
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
- renderClipboardIcon() {
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="M15.666 3.888A2.25 2.25 0 0013.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 01-.75.75H9.75a.75.75 0 01-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184 1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 01-2.25 2.25H6.75A2.25 2.25 0 014.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 011.927-.184" />
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("Copy session", e5.currentTarget)}
8248
+ @mouseenter=${(e5) => this.showTooltip("Send to Claude", e5.currentTarget)}
8249
8249
  @mouseleave=${() => this.hideTooltip()}
8250
- aria-label="Copy session ID to clipboard"
8251
- title="Copy session"
8250
+ aria-label="Send selections to Claude Code"
8251
+ title="Send to Claude"
8252
8252
  >
8253
- ${this.renderClipboardIcon()}
8253
+ ${this.renderSendIcon()}
8254
8254
  </button>
8255
8255
 
8256
8256
  <button
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-ai-annotator",
3
- "version": "1.16.0",
3
+ "version": "1.16.1",
4
4
  "description": "AI-powered element annotator for Vite - Pick elements and get instant AI code modifications",
5
5
  "type": "module",
6
6
  "main": "dist/vite-plugin.js",