This commit is contained in:
2025-07-14 17:26:57 +00:00
parent 95e92a5533
commit 193b1f5234
6 changed files with 409 additions and 10 deletions

View File

@@ -260,11 +260,7 @@ export class SioButton extends DeesElement {
return;
}
// Dispatch a custom event with any data
this.dispatchEvent(new CustomEvent('click', {
detail: { originalEvent: event },
bubbles: true,
composed: true
}));
// Let the native click bubble normally
// Don't dispatch a custom event to avoid double-triggering
}
}