@retinalabsllc/zairusjs 9.0.40 → 9.0.50

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/dist/index.d.mts CHANGED
@@ -113,6 +113,12 @@ interface MobileNavItem {
113
113
  }
114
114
  interface MobileNavProps {
115
115
  items: MobileNavItem[];
116
+ web3Address?: string;
117
+ web3Avatar?: string;
118
+ userInitials?: string;
119
+ unreadCount?: number;
120
+ onOpenNotifications?: () => void;
121
+ onLogout?: () => Promise<void>;
116
122
  }
117
123
  declare const MobileNav: React.FC<MobileNavProps>;
118
124
 
package/dist/index.d.ts CHANGED
@@ -113,6 +113,12 @@ interface MobileNavItem {
113
113
  }
114
114
  interface MobileNavProps {
115
115
  items: MobileNavItem[];
116
+ web3Address?: string;
117
+ web3Avatar?: string;
118
+ userInitials?: string;
119
+ unreadCount?: number;
120
+ onOpenNotifications?: () => void;
121
+ onLogout?: () => Promise<void>;
116
122
  }
117
123
  declare const MobileNav: React.FC<MobileNavProps>;
118
124