@albionlabs/chat-widget 0.2.1 → 0.2.3

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.
@@ -56,11 +56,11 @@
56
56
  }
57
57
  });
58
58
 
59
- // Auto-trigger SIWE when wallet appears and not authed
59
+ // Auto-trigger SIWE when wallet appears, not authed, and widget is open
60
60
  $effect(() => {
61
61
  const provider = $walletProvider;
62
62
  const authenticated = $auth.authenticated;
63
- if (provider && !authenticated && !signingIn && !siweDismissed) {
63
+ if (provider && !authenticated && !signingIn && !siweDismissed && isOpen) {
64
64
  handleSiweLogin();
65
65
  }
66
66
  });
@@ -222,6 +222,7 @@
222
222
  flex-direction: column;
223
223
  align-items: flex-end;
224
224
  gap: 0.75rem;
225
+ pointer-events: none;
225
226
  }
226
227
 
227
228
  .floating-container.bottom-right {
@@ -256,7 +257,7 @@
256
257
  .chat-panel.open {
257
258
  transform: scale(1) translateY(0);
258
259
  opacity: 1;
259
- pointer-events: auto;
260
+ pointer-events: auto !important;
260
261
  }
261
262
 
262
263
  .panel-header {
@@ -407,6 +408,7 @@
407
408
  position: relative;
408
409
  transition: transform 0.15s ease, box-shadow 0.15s ease;
409
410
  flex-shrink: 0;
411
+ pointer-events: auto;
410
412
  }
411
413
 
412
414
  .chat-bubble-btn:hover {
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const WIDGET_VERSION = "0.2.1";
1
+ export declare const WIDGET_VERSION = "0.2.3";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const WIDGET_VERSION = '0.2.1';
1
+ export const WIDGET_VERSION = '0.2.3';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@albionlabs/chat-widget",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",