@neuctra/authix 1.2.13 → 1.2.14

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.
@@ -2186,40 +2186,57 @@ class li {
2186
2186
  }
2187
2187
  // ================= APP DATA =================
2188
2188
  /**
2189
- * Get all app data items for the current app
2190
- * @param category optional filter by dataCategory
2189
+ * 📦 Get all app data items
2190
+ * Optional category filter
2191
+ *
2192
+ * Routes:
2193
+ * GET /api/app/:appId/app-data
2194
+ * GET /api/app/:appId/app-data/:category
2191
2195
  */
2192
2196
  async getAppData(e) {
2193
2197
  const n = this.appId;
2194
2198
  if (!n) throw new Error("getAppData: 'appId' is required");
2195
- const s = e ? `?category=${encodeURIComponent(e)}` : "";
2196
- return await this.request(
2197
- "GET",
2198
- `/app/${n}/data${s}`,
2199
- void 0,
2200
- {},
2201
- !1
2202
- // ✅ include credentials
2203
- );
2199
+ const s = e ? `/app/${encodeURIComponent(n)}/app-data/${encodeURIComponent(e)}` : `/app/${encodeURIComponent(n)}/app-data`;
2200
+ return await this.request("GET", s, void 0, {}, !1);
2204
2201
  }
2205
2202
  /**
2206
- * Get a single data item from app.appData[] by id
2203
+ * 👥 Get all users data
2204
+ * Optional category filter
2205
+ *
2206
+ * Routes:
2207
+ * GET /api/app/:appId/users-data
2208
+ * GET /api/app/:appId/users-data/:category
2209
+ */
2210
+ async getUsersData(e) {
2211
+ const n = this.appId;
2212
+ if (!n) throw new Error("getUsersData: 'appId' is required");
2213
+ const s = e ? `/app/${encodeURIComponent(n)}/users-data/${encodeURIComponent(e)}` : `/app/${encodeURIComponent(n)}/users-data`;
2214
+ return await this.request("GET", s, void 0, {}, !1);
2215
+ }
2216
+ /**
2217
+ * 🔍 Get single app data item by id
2218
+ *
2219
+ * Route:
2220
+ * GET /api/app/:appId/data/:itemId
2207
2221
  */
2208
2222
  async getSingleAppData(e) {
2209
2223
  const n = this.appId;
2210
2224
  if (!n) throw new Error("getSingleAppData: 'appId' is required");
2211
- if (!e.dataId)
2225
+ if (!e?.dataId)
2212
2226
  throw new Error("getSingleAppData: 'dataId' is required");
2213
2227
  return await this.request(
2214
2228
  "GET",
2215
- `/app/${n}/data/${e.dataId}`,
2229
+ `/app/${encodeURIComponent(n)}/data/${encodeURIComponent(e.dataId)}`,
2216
2230
  void 0,
2217
2231
  {},
2218
2232
  !1
2219
2233
  );
2220
2234
  }
2221
2235
  /**
2222
- * 🔍 Search app data items by dynamic keys (BODY based)
2236
+ * 🔍 Search app data by dynamic keys
2237
+ *
2238
+ * Route:
2239
+ * POST /api/app/:appId/data/searchByKeys
2223
2240
  */
2224
2241
  async searchAppDataByKeys(e) {
2225
2242
  const n = this.appId;
@@ -2228,14 +2245,17 @@ class li {
2228
2245
  throw new Error("searchAppDataByKeys: params object is required");
2229
2246
  return await this.request(
2230
2247
  "POST",
2231
- `/app/${encodeURIComponent(n)}/data/search/bykeys`,
2248
+ `/app/${encodeURIComponent(n)}/data/searchByKeys`,
2232
2249
  e,
2233
2250
  {},
2234
2251
  !1
2235
2252
  );
2236
2253
  }
2237
2254
  /**
2238
- * Add a new item to app.appData[] under a specific category
2255
+ * Add new app data item
2256
+ *
2257
+ * Route:
2258
+ * POST /api/app/:appId/data/:dataCategory
2239
2259
  */
2240
2260
  async addAppData(e) {
2241
2261
  const n = this.appId;
@@ -2247,38 +2267,47 @@ class li {
2247
2267
  throw new Error("addAppData: 'data' is required");
2248
2268
  return await this.request(
2249
2269
  "POST",
2250
- `/app/${n}/data/${encodeURIComponent(s)}`,
2270
+ `/app/${encodeURIComponent(n)}/data/${encodeURIComponent(s)}`,
2251
2271
  { item: i },
2252
2272
  {},
2253
2273
  !1
2254
2274
  );
2255
2275
  }
2256
2276
  /**
2257
- * Update an item in app.appData[] by id
2277
+ * ✏️ Update app data item
2278
+ *
2279
+ * Route:
2280
+ * PATCH /api/app/:appId/data/:itemId
2258
2281
  */
2259
2282
  async updateAppData(e) {
2260
2283
  const n = this.appId;
2261
2284
  if (!n) throw new Error("updateAppData: 'appId' is required");
2262
- if (!e.dataId) throw new Error("updateAppData: 'dataId' is required");
2263
- if (!e.data) throw new Error("updateAppData: 'data' is required");
2285
+ if (!e?.dataId)
2286
+ throw new Error("updateAppData: 'dataId' is required");
2287
+ if (!e?.data || typeof e.data != "object")
2288
+ throw new Error("updateAppData: 'data' is required");
2264
2289
  return await this.request(
2265
2290
  "PATCH",
2266
- `/app/${n}/data/${e.dataId}`,
2291
+ `/app/${encodeURIComponent(n)}/data/${encodeURIComponent(e.dataId)}`,
2267
2292
  e.data,
2268
2293
  {},
2269
2294
  !1
2270
2295
  );
2271
2296
  }
2272
2297
  /**
2273
- * Delete an item from app.appData[] by id
2298
+ * 🗑️ Delete app data item
2299
+ *
2300
+ * Route:
2301
+ * DELETE /api/app/:appId/data/:itemId
2274
2302
  */
2275
2303
  async deleteAppData(e) {
2276
2304
  const n = this.appId;
2277
2305
  if (!n) throw new Error("deleteAppData: 'appId' is required");
2278
- if (!e.dataId) throw new Error("deleteAppData: 'dataId' is required");
2306
+ if (!e?.dataId)
2307
+ throw new Error("deleteAppData: 'dataId' is required");
2279
2308
  return await this.request(
2280
2309
  "DELETE",
2281
- `/app/${n}/data/${e.dataId}`,
2310
+ `/app/${encodeURIComponent(n)}/data/${encodeURIComponent(e.dataId)}`,
2282
2311
  void 0,
2283
2312
  {},
2284
2313
  !1
@@ -1,9 +1,9 @@
1
- (function(ee,S){typeof exports=="object"&&typeof module<"u"?S(exports,require("react")):typeof define=="function"&&define.amd?define(["exports","react"],S):(ee=typeof globalThis<"u"?globalThis:ee||self,S(ee.NeuctraAuthix={},ee.React))})(this,(function(ee,S){"use strict";function lt(t,e){return function(){return t.apply(e,arguments)}}const{toString:sr}=Object.prototype,{getPrototypeOf:We}=Object,{iterator:Re,toStringTag:dt}=Symbol,_e=(t=>e=>{const n=sr.call(e);return t[n]||(t[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),ie=t=>(t=t.toLowerCase(),e=>_e(e)===t),ze=t=>e=>typeof e===t,{isArray:ge}=Array,ye=ze("undefined");function ve(t){return t!==null&&!ye(t)&&t.constructor!==null&&!ye(t.constructor)&&te(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const ct=ie("ArrayBuffer");function ir(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&ct(t.buffer),e}const or=ze("string"),te=ze("function"),ut=ze("number"),ke=t=>t!==null&&typeof t=="object",ar=t=>t===!0||t===!1,Ae=t=>{if(_e(t)!=="object")return!1;const e=We(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(dt in t)&&!(Re in t)},lr=t=>{if(!ke(t)||ve(t))return!1;try{return Object.keys(t).length===0&&Object.getPrototypeOf(t)===Object.prototype}catch{return!1}},dr=ie("Date"),cr=ie("File"),ur=ie("Blob"),pr=ie("FileList"),fr=t=>ke(t)&&te(t.pipe),xr=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||te(t.append)&&((e=_e(t))==="formdata"||e==="object"&&te(t.toString)&&t.toString()==="[object FormData]"))},hr=ie("URLSearchParams"),[mr,gr,yr,br]=["ReadableStream","Request","Response","Headers"].map(ie),wr=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Ee(t,e,{allOwnKeys:n=!1}={}){if(t===null||typeof t>"u")return;let s,i;if(typeof t!="object"&&(t=[t]),ge(t))for(s=0,i=t.length;s<i;s++)e.call(null,t[s],s,t);else{if(ve(t))return;const o=n?Object.getOwnPropertyNames(t):Object.keys(t),a=o.length;let d;for(s=0;s<a;s++)d=o[s],e.call(null,t[d],d,t)}}function pt(t,e){if(ve(t))return null;e=e.toLowerCase();const n=Object.keys(t);let s=n.length,i;for(;s-- >0;)if(i=n[s],e===i.toLowerCase())return i;return null}const fe=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,ft=t=>!ye(t)&&t!==fe;function Be(){const{caseless:t,skipUndefined:e}=ft(this)&&this||{},n={},s=(i,o)=>{const a=t&&pt(n,o)||o;Ae(n[a])&&Ae(i)?n[a]=Be(n[a],i):Ae(i)?n[a]=Be({},i):ge(i)?n[a]=i.slice():(!e||!ye(i))&&(n[a]=i)};for(let i=0,o=arguments.length;i<o;i++)arguments[i]&&Ee(arguments[i],s);return n}const Sr=(t,e,n,{allOwnKeys:s}={})=>(Ee(e,(i,o)=>{n&&te(i)?t[o]=lt(i,n):t[o]=i},{allOwnKeys:s}),t),jr=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),vr=(t,e,n,s)=>{t.prototype=Object.create(e.prototype,s),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},kr=(t,e,n,s)=>{let i,o,a;const d={};if(e=e||{},t==null)return e;do{for(i=Object.getOwnPropertyNames(t),o=i.length;o-- >0;)a=i[o],(!s||s(a,t,e))&&!d[a]&&(e[a]=t[a],d[a]=!0);t=n!==!1&&We(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},Er=(t,e,n)=>{t=String(t),(n===void 0||n>t.length)&&(n=t.length),n-=e.length;const s=t.indexOf(e,n);return s!==-1&&s===n},Cr=t=>{if(!t)return null;if(ge(t))return t;let e=t.length;if(!ut(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},Tr=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&We(Uint8Array)),Pr=(t,e)=>{const s=(t&&t[Re]).call(t);let i;for(;(i=s.next())&&!i.done;){const o=i.value;e.call(t,o[0],o[1])}},Ir=(t,e)=>{let n;const s=[];for(;(n=t.exec(e))!==null;)s.push(n);return s},Or=ie("HTMLFormElement"),Rr=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,s,i){return s.toUpperCase()+i}),xt=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),_r=ie("RegExp"),ht=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),s={};Ee(n,(i,o)=>{let a;(a=e(i,o,t))!==!1&&(s[o]=a||i)}),Object.defineProperties(t,s)},zr=t=>{ht(t,(e,n)=>{if(te(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const s=t[n];if(te(s)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Ar=(t,e)=>{const n={},s=i=>{i.forEach(o=>{n[o]=!0})};return ge(t)?s(t):s(String(t).split(e)),n},$r=()=>{},Nr=(t,e)=>t!=null&&Number.isFinite(t=+t)?t:e;function Ur(t){return!!(t&&te(t.append)&&t[dt]==="FormData"&&t[Re])}const Dr=t=>{const e=new Array(10),n=(s,i)=>{if(ke(s)){if(e.indexOf(s)>=0)return;if(ve(s))return s;if(!("toJSON"in s)){e[i]=s;const o=ge(s)?[]:{};return Ee(s,(a,d)=>{const c=n(a,i+1);!ye(c)&&(o[d]=c)}),e[i]=void 0,o}}return s};return n(t,0)},Lr=ie("AsyncFunction"),Fr=t=>t&&(ke(t)||te(t))&&te(t.then)&&te(t.catch),mt=((t,e)=>t?setImmediate:e?((n,s)=>(fe.addEventListener("message",({source:i,data:o})=>{i===fe&&o===n&&s.length&&s.shift()()},!1),i=>{s.push(i),fe.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",te(fe.postMessage)),qr=typeof queueMicrotask<"u"?queueMicrotask.bind(fe):typeof process<"u"&&process.nextTick||mt,p={isArray:ge,isArrayBuffer:ct,isBuffer:ve,isFormData:xr,isArrayBufferView:ir,isString:or,isNumber:ut,isBoolean:ar,isObject:ke,isPlainObject:Ae,isEmptyObject:lr,isReadableStream:mr,isRequest:gr,isResponse:yr,isHeaders:br,isUndefined:ye,isDate:dr,isFile:cr,isBlob:ur,isRegExp:_r,isFunction:te,isStream:fr,isURLSearchParams:hr,isTypedArray:Tr,isFileList:pr,forEach:Ee,merge:Be,extend:Sr,trim:wr,stripBOM:jr,inherits:vr,toFlatObject:kr,kindOf:_e,kindOfTest:ie,endsWith:Er,toArray:Cr,forEachEntry:Pr,matchAll:Ir,isHTMLForm:Or,hasOwnProperty:xt,hasOwnProp:xt,reduceDescriptors:ht,freezeMethods:zr,toObjectSet:Ar,toCamelCase:Rr,noop:$r,toFiniteNumber:Nr,findKey:pt,global:fe,isContextDefined:ft,isSpecCompliantForm:Ur,toJSONObject:Dr,isAsyncFn:Lr,isThenable:Fr,setImmediate:mt,asap:qr,isIterable:t=>t!=null&&te(t[Re])};function N(t,e,n,s,i){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),s&&(this.request=s),i&&(this.response=i,this.status=i.status?i.status:null)}p.inherits(N,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:p.toJSONObject(this.config),code:this.code,status:this.status}}});const gt=N.prototype,yt={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{yt[t]={value:t}}),Object.defineProperties(N,yt),Object.defineProperty(gt,"isAxiosError",{value:!0}),N.from=(t,e,n,s,i,o)=>{const a=Object.create(gt);p.toFlatObject(t,a,function(x){return x!==Error.prototype},f=>f!=="isAxiosError");const d=t&&t.message?t.message:"Error",c=e==null&&t?t.code:e;return N.call(a,d,c,n,s,i),t&&a.cause==null&&Object.defineProperty(a,"cause",{value:t,configurable:!0}),a.name=t&&t.name||"Error",o&&Object.assign(a,o),a};const Mr=null;function He(t){return p.isPlainObject(t)||p.isArray(t)}function bt(t){return p.endsWith(t,"[]")?t.slice(0,-2):t}function wt(t,e,n){return t?t.concat(e).map(function(i,o){return i=bt(i),!n&&o?"["+i+"]":i}).join(n?".":""):e}function Wr(t){return p.isArray(t)&&!t.some(He)}const Br=p.toFlatObject(p,{},null,function(e){return/^is[A-Z]/.test(e)});function $e(t,e,n){if(!p.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,n=p.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(w,h){return!p.isUndefined(h[w])});const s=n.metaTokens,i=n.visitor||x,o=n.dots,a=n.indexes,c=(n.Blob||typeof Blob<"u"&&Blob)&&p.isSpecCompliantForm(e);if(!p.isFunction(i))throw new TypeError("visitor must be a function");function f(u){if(u===null)return"";if(p.isDate(u))return u.toISOString();if(p.isBoolean(u))return u.toString();if(!c&&p.isBlob(u))throw new N("Blob is not supported. Use a Buffer instead.");return p.isArrayBuffer(u)||p.isTypedArray(u)?c&&typeof Blob=="function"?new Blob([u]):Buffer.from(u):u}function x(u,w,h){let O=u;if(u&&!h&&typeof u=="object"){if(p.endsWith(w,"{}"))w=s?w:w.slice(0,-2),u=JSON.stringify(u);else if(p.isArray(u)&&Wr(u)||(p.isFileList(u)||p.endsWith(w,"[]"))&&(O=p.toArray(u)))return w=bt(w),O.forEach(function(g,z){!(p.isUndefined(g)||g===null)&&e.append(a===!0?wt([w],z,o):a===null?w:w+"[]",f(g))}),!1}return He(u)?!0:(e.append(wt(h,w,o),f(u)),!1)}const y=[],E=Object.assign(Br,{defaultVisitor:x,convertValue:f,isVisitable:He});function C(u,w){if(!p.isUndefined(u)){if(y.indexOf(u)!==-1)throw Error("Circular reference detected in "+w.join("."));y.push(u),p.forEach(u,function(O,T){(!(p.isUndefined(O)||O===null)&&i.call(e,O,p.isString(T)?T.trim():T,w,E))===!0&&C(O,w?w.concat(T):[T])}),y.pop()}}if(!p.isObject(t))throw new TypeError("data must be an object");return C(t),e}function St(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(s){return e[s]})}function Ve(t,e){this._pairs=[],t&&$e(t,this,e)}const jt=Ve.prototype;jt.append=function(e,n){this._pairs.push([e,n])},jt.toString=function(e){const n=e?function(s){return e.call(this,s,St)}:St;return this._pairs.map(function(i){return n(i[0])+"="+n(i[1])},"").join("&")};function Hr(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function vt(t,e,n){if(!e)return t;const s=n&&n.encode||Hr;p.isFunction(n)&&(n={serialize:n});const i=n&&n.serialize;let o;if(i?o=i(e,n):o=p.isURLSearchParams(e)?e.toString():new Ve(e,n).toString(s),o){const a=t.indexOf("#");a!==-1&&(t=t.slice(0,a)),t+=(t.indexOf("?")===-1?"?":"&")+o}return t}class kt{constructor(){this.handlers=[]}use(e,n,s){return this.handlers.push({fulfilled:e,rejected:n,synchronous:s?s.synchronous:!1,runWhen:s?s.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){p.forEach(this.handlers,function(s){s!==null&&e(s)})}}const Et={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Vr={isBrowser:!0,classes:{URLSearchParams:typeof URLSearchParams<"u"?URLSearchParams:Ve,FormData:typeof FormData<"u"?FormData:null,Blob:typeof Blob<"u"?Blob:null},protocols:["http","https","file","blob","url","data"]},Ye=typeof window<"u"&&typeof document<"u",Je=typeof navigator=="object"&&navigator||void 0,Yr=Ye&&(!Je||["ReactNative","NativeScript","NS"].indexOf(Je.product)<0),Jr=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",Kr=Ye&&window.location.href||"http://localhost",Z={...Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Ye,hasStandardBrowserEnv:Yr,hasStandardBrowserWebWorkerEnv:Jr,navigator:Je,origin:Kr},Symbol.toStringTag,{value:"Module"})),...Vr};function Gr(t,e){return $e(t,new Z.classes.URLSearchParams,{visitor:function(n,s,i,o){return Z.isNode&&p.isBuffer(n)?(this.append(s,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)},...e})}function Xr(t){return p.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function Zr(t){const e={},n=Object.keys(t);let s;const i=n.length;let o;for(s=0;s<i;s++)o=n[s],e[o]=t[o];return e}function Ct(t){function e(n,s,i,o){let a=n[o++];if(a==="__proto__")return!0;const d=Number.isFinite(+a),c=o>=n.length;return a=!a&&p.isArray(i)?i.length:a,c?(p.hasOwnProp(i,a)?i[a]=[i[a],s]:i[a]=s,!d):((!i[a]||!p.isObject(i[a]))&&(i[a]=[]),e(n,s,i[a],o)&&p.isArray(i[a])&&(i[a]=Zr(i[a])),!d)}if(p.isFormData(t)&&p.isFunction(t.entries)){const n={};return p.forEachEntry(t,(s,i)=>{e(Xr(s),i,n,0)}),n}return null}function Qr(t,e,n){if(p.isString(t))try{return(e||JSON.parse)(t),p.trim(t)}catch(s){if(s.name!=="SyntaxError")throw s}return(n||JSON.stringify)(t)}const Ce={transitional:Et,adapter:["xhr","http","fetch"],transformRequest:[function(e,n){const s=n.getContentType()||"",i=s.indexOf("application/json")>-1,o=p.isObject(e);if(o&&p.isHTMLForm(e)&&(e=new FormData(e)),p.isFormData(e))return i?JSON.stringify(Ct(e)):e;if(p.isArrayBuffer(e)||p.isBuffer(e)||p.isStream(e)||p.isFile(e)||p.isBlob(e)||p.isReadableStream(e))return e;if(p.isArrayBufferView(e))return e.buffer;if(p.isURLSearchParams(e))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let d;if(o){if(s.indexOf("application/x-www-form-urlencoded")>-1)return Gr(e,this.formSerializer).toString();if((d=p.isFileList(e))||s.indexOf("multipart/form-data")>-1){const c=this.env&&this.env.FormData;return $e(d?{"files[]":e}:e,c&&new c,this.formSerializer)}}return o||i?(n.setContentType("application/json",!1),Qr(e)):e}],transformResponse:[function(e){const n=this.transitional||Ce.transitional,s=n&&n.forcedJSONParsing,i=this.responseType==="json";if(p.isResponse(e)||p.isReadableStream(e))return e;if(e&&p.isString(e)&&(s&&!this.responseType||i)){const a=!(n&&n.silentJSONParsing)&&i;try{return JSON.parse(e,this.parseReviver)}catch(d){if(a)throw d.name==="SyntaxError"?N.from(d,N.ERR_BAD_RESPONSE,this,null,this.response):d}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Z.classes.FormData,Blob:Z.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};p.forEach(["delete","get","head","post","put","patch"],t=>{Ce.headers[t]={}});const en=p.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),tn=t=>{const e={};let n,s,i;return t&&t.split(`
1
+ (function(ee,S){typeof exports=="object"&&typeof module<"u"?S(exports,require("react")):typeof define=="function"&&define.amd?define(["exports","react"],S):(ee=typeof globalThis<"u"?globalThis:ee||self,S(ee.NeuctraAuthix={},ee.React))})(this,(function(ee,S){"use strict";function lt(t,e){return function(){return t.apply(e,arguments)}}const{toString:sr}=Object.prototype,{getPrototypeOf:We}=Object,{iterator:Oe,toStringTag:dt}=Symbol,_e=(t=>e=>{const n=sr.call(e);return t[n]||(t[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),ie=t=>(t=t.toLowerCase(),e=>_e(e)===t),ze=t=>e=>typeof e===t,{isArray:ge}=Array,ye=ze("undefined");function ve(t){return t!==null&&!ye(t)&&t.constructor!==null&&!ye(t.constructor)&&te(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const ct=ie("ArrayBuffer");function ir(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&ct(t.buffer),e}const or=ze("string"),te=ze("function"),ut=ze("number"),Ee=t=>t!==null&&typeof t=="object",ar=t=>t===!0||t===!1,Ae=t=>{if(_e(t)!=="object")return!1;const e=We(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(dt in t)&&!(Oe in t)},lr=t=>{if(!Ee(t)||ve(t))return!1;try{return Object.keys(t).length===0&&Object.getPrototypeOf(t)===Object.prototype}catch{return!1}},dr=ie("Date"),cr=ie("File"),ur=ie("Blob"),pr=ie("FileList"),fr=t=>Ee(t)&&te(t.pipe),xr=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||te(t.append)&&((e=_e(t))==="formdata"||e==="object"&&te(t.toString)&&t.toString()==="[object FormData]"))},hr=ie("URLSearchParams"),[mr,gr,yr,br]=["ReadableStream","Request","Response","Headers"].map(ie),wr=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function ke(t,e,{allOwnKeys:n=!1}={}){if(t===null||typeof t>"u")return;let s,i;if(typeof t!="object"&&(t=[t]),ge(t))for(s=0,i=t.length;s<i;s++)e.call(null,t[s],s,t);else{if(ve(t))return;const o=n?Object.getOwnPropertyNames(t):Object.keys(t),a=o.length;let d;for(s=0;s<a;s++)d=o[s],e.call(null,t[d],d,t)}}function pt(t,e){if(ve(t))return null;e=e.toLowerCase();const n=Object.keys(t);let s=n.length,i;for(;s-- >0;)if(i=n[s],e===i.toLowerCase())return i;return null}const fe=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,ft=t=>!ye(t)&&t!==fe;function Be(){const{caseless:t,skipUndefined:e}=ft(this)&&this||{},n={},s=(i,o)=>{const a=t&&pt(n,o)||o;Ae(n[a])&&Ae(i)?n[a]=Be(n[a],i):Ae(i)?n[a]=Be({},i):ge(i)?n[a]=i.slice():(!e||!ye(i))&&(n[a]=i)};for(let i=0,o=arguments.length;i<o;i++)arguments[i]&&ke(arguments[i],s);return n}const Sr=(t,e,n,{allOwnKeys:s}={})=>(ke(e,(i,o)=>{n&&te(i)?t[o]=lt(i,n):t[o]=i},{allOwnKeys:s}),t),jr=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),vr=(t,e,n,s)=>{t.prototype=Object.create(e.prototype,s),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},Er=(t,e,n,s)=>{let i,o,a;const d={};if(e=e||{},t==null)return e;do{for(i=Object.getOwnPropertyNames(t),o=i.length;o-- >0;)a=i[o],(!s||s(a,t,e))&&!d[a]&&(e[a]=t[a],d[a]=!0);t=n!==!1&&We(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},kr=(t,e,n)=>{t=String(t),(n===void 0||n>t.length)&&(n=t.length),n-=e.length;const s=t.indexOf(e,n);return s!==-1&&s===n},Cr=t=>{if(!t)return null;if(ge(t))return t;let e=t.length;if(!ut(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},Tr=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&We(Uint8Array)),Pr=(t,e)=>{const s=(t&&t[Oe]).call(t);let i;for(;(i=s.next())&&!i.done;){const o=i.value;e.call(t,o[0],o[1])}},Ir=(t,e)=>{let n;const s=[];for(;(n=t.exec(e))!==null;)s.push(n);return s},Rr=ie("HTMLFormElement"),Or=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,s,i){return s.toUpperCase()+i}),xt=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),_r=ie("RegExp"),ht=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),s={};ke(n,(i,o)=>{let a;(a=e(i,o,t))!==!1&&(s[o]=a||i)}),Object.defineProperties(t,s)},zr=t=>{ht(t,(e,n)=>{if(te(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const s=t[n];if(te(s)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Ar=(t,e)=>{const n={},s=i=>{i.forEach(o=>{n[o]=!0})};return ge(t)?s(t):s(String(t).split(e)),n},$r=()=>{},Nr=(t,e)=>t!=null&&Number.isFinite(t=+t)?t:e;function Ur(t){return!!(t&&te(t.append)&&t[dt]==="FormData"&&t[Oe])}const Dr=t=>{const e=new Array(10),n=(s,i)=>{if(Ee(s)){if(e.indexOf(s)>=0)return;if(ve(s))return s;if(!("toJSON"in s)){e[i]=s;const o=ge(s)?[]:{};return ke(s,(a,d)=>{const c=n(a,i+1);!ye(c)&&(o[d]=c)}),e[i]=void 0,o}}return s};return n(t,0)},Lr=ie("AsyncFunction"),Fr=t=>t&&(Ee(t)||te(t))&&te(t.then)&&te(t.catch),mt=((t,e)=>t?setImmediate:e?((n,s)=>(fe.addEventListener("message",({source:i,data:o})=>{i===fe&&o===n&&s.length&&s.shift()()},!1),i=>{s.push(i),fe.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",te(fe.postMessage)),qr=typeof queueMicrotask<"u"?queueMicrotask.bind(fe):typeof process<"u"&&process.nextTick||mt,p={isArray:ge,isArrayBuffer:ct,isBuffer:ve,isFormData:xr,isArrayBufferView:ir,isString:or,isNumber:ut,isBoolean:ar,isObject:Ee,isPlainObject:Ae,isEmptyObject:lr,isReadableStream:mr,isRequest:gr,isResponse:yr,isHeaders:br,isUndefined:ye,isDate:dr,isFile:cr,isBlob:ur,isRegExp:_r,isFunction:te,isStream:fr,isURLSearchParams:hr,isTypedArray:Tr,isFileList:pr,forEach:ke,merge:Be,extend:Sr,trim:wr,stripBOM:jr,inherits:vr,toFlatObject:Er,kindOf:_e,kindOfTest:ie,endsWith:kr,toArray:Cr,forEachEntry:Pr,matchAll:Ir,isHTMLForm:Rr,hasOwnProperty:xt,hasOwnProp:xt,reduceDescriptors:ht,freezeMethods:zr,toObjectSet:Ar,toCamelCase:Or,noop:$r,toFiniteNumber:Nr,findKey:pt,global:fe,isContextDefined:ft,isSpecCompliantForm:Ur,toJSONObject:Dr,isAsyncFn:Lr,isThenable:Fr,setImmediate:mt,asap:qr,isIterable:t=>t!=null&&te(t[Oe])};function N(t,e,n,s,i){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),s&&(this.request=s),i&&(this.response=i,this.status=i.status?i.status:null)}p.inherits(N,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:p.toJSONObject(this.config),code:this.code,status:this.status}}});const gt=N.prototype,yt={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{yt[t]={value:t}}),Object.defineProperties(N,yt),Object.defineProperty(gt,"isAxiosError",{value:!0}),N.from=(t,e,n,s,i,o)=>{const a=Object.create(gt);p.toFlatObject(t,a,function(x){return x!==Error.prototype},f=>f!=="isAxiosError");const d=t&&t.message?t.message:"Error",c=e==null&&t?t.code:e;return N.call(a,d,c,n,s,i),t&&a.cause==null&&Object.defineProperty(a,"cause",{value:t,configurable:!0}),a.name=t&&t.name||"Error",o&&Object.assign(a,o),a};const Mr=null;function He(t){return p.isPlainObject(t)||p.isArray(t)}function bt(t){return p.endsWith(t,"[]")?t.slice(0,-2):t}function wt(t,e,n){return t?t.concat(e).map(function(i,o){return i=bt(i),!n&&o?"["+i+"]":i}).join(n?".":""):e}function Wr(t){return p.isArray(t)&&!t.some(He)}const Br=p.toFlatObject(p,{},null,function(e){return/^is[A-Z]/.test(e)});function $e(t,e,n){if(!p.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,n=p.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(w,h){return!p.isUndefined(h[w])});const s=n.metaTokens,i=n.visitor||x,o=n.dots,a=n.indexes,c=(n.Blob||typeof Blob<"u"&&Blob)&&p.isSpecCompliantForm(e);if(!p.isFunction(i))throw new TypeError("visitor must be a function");function f(u){if(u===null)return"";if(p.isDate(u))return u.toISOString();if(p.isBoolean(u))return u.toString();if(!c&&p.isBlob(u))throw new N("Blob is not supported. Use a Buffer instead.");return p.isArrayBuffer(u)||p.isTypedArray(u)?c&&typeof Blob=="function"?new Blob([u]):Buffer.from(u):u}function x(u,w,h){let R=u;if(u&&!h&&typeof u=="object"){if(p.endsWith(w,"{}"))w=s?w:w.slice(0,-2),u=JSON.stringify(u);else if(p.isArray(u)&&Wr(u)||(p.isFileList(u)||p.endsWith(w,"[]"))&&(R=p.toArray(u)))return w=bt(w),R.forEach(function(g,z){!(p.isUndefined(g)||g===null)&&e.append(a===!0?wt([w],z,o):a===null?w:w+"[]",f(g))}),!1}return He(u)?!0:(e.append(wt(h,w,o),f(u)),!1)}const y=[],k=Object.assign(Br,{defaultVisitor:x,convertValue:f,isVisitable:He});function C(u,w){if(!p.isUndefined(u)){if(y.indexOf(u)!==-1)throw Error("Circular reference detected in "+w.join("."));y.push(u),p.forEach(u,function(R,T){(!(p.isUndefined(R)||R===null)&&i.call(e,R,p.isString(T)?T.trim():T,w,k))===!0&&C(R,w?w.concat(T):[T])}),y.pop()}}if(!p.isObject(t))throw new TypeError("data must be an object");return C(t),e}function St(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(s){return e[s]})}function Ve(t,e){this._pairs=[],t&&$e(t,this,e)}const jt=Ve.prototype;jt.append=function(e,n){this._pairs.push([e,n])},jt.toString=function(e){const n=e?function(s){return e.call(this,s,St)}:St;return this._pairs.map(function(i){return n(i[0])+"="+n(i[1])},"").join("&")};function Hr(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function vt(t,e,n){if(!e)return t;const s=n&&n.encode||Hr;p.isFunction(n)&&(n={serialize:n});const i=n&&n.serialize;let o;if(i?o=i(e,n):o=p.isURLSearchParams(e)?e.toString():new Ve(e,n).toString(s),o){const a=t.indexOf("#");a!==-1&&(t=t.slice(0,a)),t+=(t.indexOf("?")===-1?"?":"&")+o}return t}class Et{constructor(){this.handlers=[]}use(e,n,s){return this.handlers.push({fulfilled:e,rejected:n,synchronous:s?s.synchronous:!1,runWhen:s?s.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){p.forEach(this.handlers,function(s){s!==null&&e(s)})}}const kt={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Vr={isBrowser:!0,classes:{URLSearchParams:typeof URLSearchParams<"u"?URLSearchParams:Ve,FormData:typeof FormData<"u"?FormData:null,Blob:typeof Blob<"u"?Blob:null},protocols:["http","https","file","blob","url","data"]},Ye=typeof window<"u"&&typeof document<"u",Je=typeof navigator=="object"&&navigator||void 0,Yr=Ye&&(!Je||["ReactNative","NativeScript","NS"].indexOf(Je.product)<0),Jr=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",Kr=Ye&&window.location.href||"http://localhost",Z={...Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Ye,hasStandardBrowserEnv:Yr,hasStandardBrowserWebWorkerEnv:Jr,navigator:Je,origin:Kr},Symbol.toStringTag,{value:"Module"})),...Vr};function Gr(t,e){return $e(t,new Z.classes.URLSearchParams,{visitor:function(n,s,i,o){return Z.isNode&&p.isBuffer(n)?(this.append(s,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)},...e})}function Xr(t){return p.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function Zr(t){const e={},n=Object.keys(t);let s;const i=n.length;let o;for(s=0;s<i;s++)o=n[s],e[o]=t[o];return e}function Ct(t){function e(n,s,i,o){let a=n[o++];if(a==="__proto__")return!0;const d=Number.isFinite(+a),c=o>=n.length;return a=!a&&p.isArray(i)?i.length:a,c?(p.hasOwnProp(i,a)?i[a]=[i[a],s]:i[a]=s,!d):((!i[a]||!p.isObject(i[a]))&&(i[a]=[]),e(n,s,i[a],o)&&p.isArray(i[a])&&(i[a]=Zr(i[a])),!d)}if(p.isFormData(t)&&p.isFunction(t.entries)){const n={};return p.forEachEntry(t,(s,i)=>{e(Xr(s),i,n,0)}),n}return null}function Qr(t,e,n){if(p.isString(t))try{return(e||JSON.parse)(t),p.trim(t)}catch(s){if(s.name!=="SyntaxError")throw s}return(n||JSON.stringify)(t)}const Ce={transitional:kt,adapter:["xhr","http","fetch"],transformRequest:[function(e,n){const s=n.getContentType()||"",i=s.indexOf("application/json")>-1,o=p.isObject(e);if(o&&p.isHTMLForm(e)&&(e=new FormData(e)),p.isFormData(e))return i?JSON.stringify(Ct(e)):e;if(p.isArrayBuffer(e)||p.isBuffer(e)||p.isStream(e)||p.isFile(e)||p.isBlob(e)||p.isReadableStream(e))return e;if(p.isArrayBufferView(e))return e.buffer;if(p.isURLSearchParams(e))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let d;if(o){if(s.indexOf("application/x-www-form-urlencoded")>-1)return Gr(e,this.formSerializer).toString();if((d=p.isFileList(e))||s.indexOf("multipart/form-data")>-1){const c=this.env&&this.env.FormData;return $e(d?{"files[]":e}:e,c&&new c,this.formSerializer)}}return o||i?(n.setContentType("application/json",!1),Qr(e)):e}],transformResponse:[function(e){const n=this.transitional||Ce.transitional,s=n&&n.forcedJSONParsing,i=this.responseType==="json";if(p.isResponse(e)||p.isReadableStream(e))return e;if(e&&p.isString(e)&&(s&&!this.responseType||i)){const a=!(n&&n.silentJSONParsing)&&i;try{return JSON.parse(e,this.parseReviver)}catch(d){if(a)throw d.name==="SyntaxError"?N.from(d,N.ERR_BAD_RESPONSE,this,null,this.response):d}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Z.classes.FormData,Blob:Z.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};p.forEach(["delete","get","head","post","put","patch"],t=>{Ce.headers[t]={}});const en=p.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),tn=t=>{const e={};let n,s,i;return t&&t.split(`
2
2
  `).forEach(function(a){i=a.indexOf(":"),n=a.substring(0,i).trim().toLowerCase(),s=a.substring(i+1).trim(),!(!n||e[n]&&en[n])&&(n==="set-cookie"?e[n]?e[n].push(s):e[n]=[s]:e[n]=e[n]?e[n]+", "+s:s)}),e},Tt=Symbol("internals");function Te(t){return t&&String(t).trim().toLowerCase()}function Ne(t){return t===!1||t==null?t:p.isArray(t)?t.map(Ne):String(t)}function rn(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let s;for(;s=n.exec(t);)e[s[1]]=s[2];return e}const nn=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function Ke(t,e,n,s,i){if(p.isFunction(s))return s.call(this,e,n);if(i&&(e=n),!!p.isString(e)){if(p.isString(s))return e.indexOf(s)!==-1;if(p.isRegExp(s))return s.test(e)}}function sn(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,n,s)=>n.toUpperCase()+s)}function on(t,e){const n=p.toCamelCase(" "+e);["get","set","has"].forEach(s=>{Object.defineProperty(t,s+n,{value:function(i,o,a){return this[s].call(this,e,i,o,a)},configurable:!0})})}let re=class{constructor(e){e&&this.set(e)}set(e,n,s){const i=this;function o(d,c,f){const x=Te(c);if(!x)throw new Error("header name must be a non-empty string");const y=p.findKey(i,x);(!y||i[y]===void 0||f===!0||f===void 0&&i[y]!==!1)&&(i[y||c]=Ne(d))}const a=(d,c)=>p.forEach(d,(f,x)=>o(f,x,c));if(p.isPlainObject(e)||e instanceof this.constructor)a(e,n);else if(p.isString(e)&&(e=e.trim())&&!nn(e))a(tn(e),n);else if(p.isObject(e)&&p.isIterable(e)){let d={},c,f;for(const x of e){if(!p.isArray(x))throw TypeError("Object iterator must return a key-value pair");d[f=x[0]]=(c=d[f])?p.isArray(c)?[...c,x[1]]:[c,x[1]]:x[1]}a(d,n)}else e!=null&&o(n,e,s);return this}get(e,n){if(e=Te(e),e){const s=p.findKey(this,e);if(s){const i=this[s];if(!n)return i;if(n===!0)return rn(i);if(p.isFunction(n))return n.call(this,i,s);if(p.isRegExp(n))return n.exec(i);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,n){if(e=Te(e),e){const s=p.findKey(this,e);return!!(s&&this[s]!==void 0&&(!n||Ke(this,this[s],s,n)))}return!1}delete(e,n){const s=this;let i=!1;function o(a){if(a=Te(a),a){const d=p.findKey(s,a);d&&(!n||Ke(s,s[d],d,n))&&(delete s[d],i=!0)}}return p.isArray(e)?e.forEach(o):o(e),i}clear(e){const n=Object.keys(this);let s=n.length,i=!1;for(;s--;){const o=n[s];(!e||Ke(this,this[o],o,e,!0))&&(delete this[o],i=!0)}return i}normalize(e){const n=this,s={};return p.forEach(this,(i,o)=>{const a=p.findKey(s,o);if(a){n[a]=Ne(i),delete n[o];return}const d=e?sn(o):String(o).trim();d!==o&&delete n[o],n[d]=Ne(i),s[d]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const n=Object.create(null);return p.forEach(this,(s,i)=>{s!=null&&s!==!1&&(n[i]=e&&p.isArray(s)?s.join(", "):s)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,n])=>e+": "+n).join(`
3
- `)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...n){const s=new this(e);return n.forEach(i=>s.set(i)),s}static accessor(e){const s=(this[Tt]=this[Tt]={accessors:{}}).accessors,i=this.prototype;function o(a){const d=Te(a);s[d]||(on(i,a),s[d]=!0)}return p.isArray(e)?e.forEach(o):o(e),this}};re.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),p.reduceDescriptors(re.prototype,({value:t},e)=>{let n=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(s){this[n]=s}}}),p.freezeMethods(re);function Ge(t,e){const n=this||Ce,s=e||n,i=re.from(s.headers);let o=s.data;return p.forEach(t,function(d){o=d.call(n,o,i.normalize(),e?e.status:void 0)}),i.normalize(),o}function Pt(t){return!!(t&&t.__CANCEL__)}function be(t,e,n){N.call(this,t??"canceled",N.ERR_CANCELED,e,n),this.name="CanceledError"}p.inherits(be,N,{__CANCEL__:!0});function It(t,e,n){const s=n.config.validateStatus;!n.status||!s||s(n.status)?t(n):e(new N("Request failed with status code "+n.status,[N.ERR_BAD_REQUEST,N.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function an(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}function ln(t,e){t=t||10;const n=new Array(t),s=new Array(t);let i=0,o=0,a;return e=e!==void 0?e:1e3,function(c){const f=Date.now(),x=s[o];a||(a=f),n[i]=c,s[i]=f;let y=o,E=0;for(;y!==i;)E+=n[y++],y=y%t;if(i=(i+1)%t,i===o&&(o=(o+1)%t),f-a<e)return;const C=x&&f-x;return C?Math.round(E*1e3/C):void 0}}function dn(t,e){let n=0,s=1e3/e,i,o;const a=(f,x=Date.now())=>{n=x,i=null,o&&(clearTimeout(o),o=null),t(...f)};return[(...f)=>{const x=Date.now(),y=x-n;y>=s?a(f,x):(i=f,o||(o=setTimeout(()=>{o=null,a(i)},s-y)))},()=>i&&a(i)]}const Ue=(t,e,n=3)=>{let s=0;const i=ln(50,250);return dn(o=>{const a=o.loaded,d=o.lengthComputable?o.total:void 0,c=a-s,f=i(c),x=a<=d;s=a;const y={loaded:a,total:d,progress:d?a/d:void 0,bytes:c,rate:f||void 0,estimated:f&&d&&x?(d-a)/f:void 0,event:o,lengthComputable:d!=null,[e?"download":"upload"]:!0};t(y)},n)},Ot=(t,e)=>{const n=t!=null;return[s=>e[0]({lengthComputable:n,total:t,loaded:s}),e[1]]},Rt=t=>(...e)=>p.asap(()=>t(...e)),cn=Z.hasStandardBrowserEnv?((t,e)=>n=>(n=new URL(n,Z.origin),t.protocol===n.protocol&&t.host===n.host&&(e||t.port===n.port)))(new URL(Z.origin),Z.navigator&&/(msie|trident)/i.test(Z.navigator.userAgent)):()=>!0,un=Z.hasStandardBrowserEnv?{write(t,e,n,s,i,o){const a=[t+"="+encodeURIComponent(e)];p.isNumber(n)&&a.push("expires="+new Date(n).toGMTString()),p.isString(s)&&a.push("path="+s),p.isString(i)&&a.push("domain="+i),o===!0&&a.push("secure"),document.cookie=a.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function pn(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function fn(t,e){return e?t.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):t}function _t(t,e,n){let s=!pn(e);return t&&(s||n==!1)?fn(t,e):e}const zt=t=>t instanceof re?{...t}:t;function xe(t,e){e=e||{};const n={};function s(f,x,y,E){return p.isPlainObject(f)&&p.isPlainObject(x)?p.merge.call({caseless:E},f,x):p.isPlainObject(x)?p.merge({},x):p.isArray(x)?x.slice():x}function i(f,x,y,E){if(p.isUndefined(x)){if(!p.isUndefined(f))return s(void 0,f,y,E)}else return s(f,x,y,E)}function o(f,x){if(!p.isUndefined(x))return s(void 0,x)}function a(f,x){if(p.isUndefined(x)){if(!p.isUndefined(f))return s(void 0,f)}else return s(void 0,x)}function d(f,x,y){if(y in e)return s(f,x);if(y in t)return s(void 0,f)}const c={url:o,method:o,data:o,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,withXSRFToken:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,beforeRedirect:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:d,headers:(f,x,y)=>i(zt(f),zt(x),y,!0)};return p.forEach(Object.keys({...t,...e}),function(x){const y=c[x]||i,E=y(t[x],e[x],x);p.isUndefined(E)&&y!==d||(n[x]=E)}),n}const At=t=>{const e=xe({},t);let{data:n,withXSRFToken:s,xsrfHeaderName:i,xsrfCookieName:o,headers:a,auth:d}=e;if(e.headers=a=re.from(a),e.url=vt(_t(e.baseURL,e.url,e.allowAbsoluteUrls),t.params,t.paramsSerializer),d&&a.set("Authorization","Basic "+btoa((d.username||"")+":"+(d.password?unescape(encodeURIComponent(d.password)):""))),p.isFormData(n)){if(Z.hasStandardBrowserEnv||Z.hasStandardBrowserWebWorkerEnv)a.setContentType(void 0);else if(p.isFunction(n.getHeaders)){const c=n.getHeaders(),f=["content-type","content-length"];Object.entries(c).forEach(([x,y])=>{f.includes(x.toLowerCase())&&a.set(x,y)})}}if(Z.hasStandardBrowserEnv&&(s&&p.isFunction(s)&&(s=s(e)),s||s!==!1&&cn(e.url))){const c=i&&o&&un.read(o);c&&a.set(i,c)}return e},xn=typeof XMLHttpRequest<"u"&&function(t){return new Promise(function(n,s){const i=At(t);let o=i.data;const a=re.from(i.headers).normalize();let{responseType:d,onUploadProgress:c,onDownloadProgress:f}=i,x,y,E,C,u;function w(){C&&C(),u&&u(),i.cancelToken&&i.cancelToken.unsubscribe(x),i.signal&&i.signal.removeEventListener("abort",x)}let h=new XMLHttpRequest;h.open(i.method.toUpperCase(),i.url,!0),h.timeout=i.timeout;function O(){if(!h)return;const g=re.from("getAllResponseHeaders"in h&&h.getAllResponseHeaders()),D={data:!d||d==="text"||d==="json"?h.responseText:h.response,status:h.status,statusText:h.statusText,headers:g,config:t,request:h};It(function(j){n(j),w()},function(j){s(j),w()},D),h=null}"onloadend"in h?h.onloadend=O:h.onreadystatechange=function(){!h||h.readyState!==4||h.status===0&&!(h.responseURL&&h.responseURL.indexOf("file:")===0)||setTimeout(O)},h.onabort=function(){h&&(s(new N("Request aborted",N.ECONNABORTED,t,h)),h=null)},h.onerror=function(z){const D=z&&z.message?z.message:"Network Error",b=new N(D,N.ERR_NETWORK,t,h);b.event=z||null,s(b),h=null},h.ontimeout=function(){let z=i.timeout?"timeout of "+i.timeout+"ms exceeded":"timeout exceeded";const D=i.transitional||Et;i.timeoutErrorMessage&&(z=i.timeoutErrorMessage),s(new N(z,D.clarifyTimeoutError?N.ETIMEDOUT:N.ECONNABORTED,t,h)),h=null},o===void 0&&a.setContentType(null),"setRequestHeader"in h&&p.forEach(a.toJSON(),function(z,D){h.setRequestHeader(D,z)}),p.isUndefined(i.withCredentials)||(h.withCredentials=!!i.withCredentials),d&&d!=="json"&&(h.responseType=i.responseType),f&&([E,u]=Ue(f,!0),h.addEventListener("progress",E)),c&&h.upload&&([y,C]=Ue(c),h.upload.addEventListener("progress",y),h.upload.addEventListener("loadend",C)),(i.cancelToken||i.signal)&&(x=g=>{h&&(s(!g||g.type?new be(null,t,h):g),h.abort(),h=null)},i.cancelToken&&i.cancelToken.subscribe(x),i.signal&&(i.signal.aborted?x():i.signal.addEventListener("abort",x)));const T=an(i.url);if(T&&Z.protocols.indexOf(T)===-1){s(new N("Unsupported protocol "+T+":",N.ERR_BAD_REQUEST,t));return}h.send(o||null)})},hn=(t,e)=>{const{length:n}=t=t?t.filter(Boolean):[];if(e||n){let s=new AbortController,i;const o=function(f){if(!i){i=!0,d();const x=f instanceof Error?f:this.reason;s.abort(x instanceof N?x:new be(x instanceof Error?x.message:x))}};let a=e&&setTimeout(()=>{a=null,o(new N(`timeout ${e} of ms exceeded`,N.ETIMEDOUT))},e);const d=()=>{t&&(a&&clearTimeout(a),a=null,t.forEach(f=>{f.unsubscribe?f.unsubscribe(o):f.removeEventListener("abort",o)}),t=null)};t.forEach(f=>f.addEventListener("abort",o));const{signal:c}=s;return c.unsubscribe=()=>p.asap(d),c}},mn=function*(t,e){let n=t.byteLength;if(n<e){yield t;return}let s=0,i;for(;s<n;)i=s+e,yield t.slice(s,i),s=i},gn=async function*(t,e){for await(const n of yn(t))yield*mn(n,e)},yn=async function*(t){if(t[Symbol.asyncIterator]){yield*t;return}const e=t.getReader();try{for(;;){const{done:n,value:s}=await e.read();if(n)break;yield s}}finally{await e.cancel()}},$t=(t,e,n,s)=>{const i=gn(t,e);let o=0,a,d=c=>{a||(a=!0,s&&s(c))};return new ReadableStream({async pull(c){try{const{done:f,value:x}=await i.next();if(f){d(),c.close();return}let y=x.byteLength;if(n){let E=o+=y;n(E)}c.enqueue(new Uint8Array(x))}catch(f){throw d(f),f}},cancel(c){return d(c),i.return()}},{highWaterMark:2})},Nt=64*1024,{isFunction:De}=p,bn=(({Request:t,Response:e})=>({Request:t,Response:e}))(p.global),{ReadableStream:Ut,TextEncoder:Dt}=p.global,Lt=(t,...e)=>{try{return!!t(...e)}catch{return!1}},wn=t=>{t=p.merge.call({skipUndefined:!0},bn,t);const{fetch:e,Request:n,Response:s}=t,i=e?De(e):typeof fetch=="function",o=De(n),a=De(s);if(!i)return!1;const d=i&&De(Ut),c=i&&(typeof Dt=="function"?(u=>w=>u.encode(w))(new Dt):async u=>new Uint8Array(await new n(u).arrayBuffer())),f=o&&d&&Lt(()=>{let u=!1;const w=new n(Z.origin,{body:new Ut,method:"POST",get duplex(){return u=!0,"half"}}).headers.has("Content-Type");return u&&!w}),x=a&&d&&Lt(()=>p.isReadableStream(new s("").body)),y={stream:x&&(u=>u.body)};i&&["text","arrayBuffer","blob","formData","stream"].forEach(u=>{!y[u]&&(y[u]=(w,h)=>{let O=w&&w[u];if(O)return O.call(w);throw new N(`Response type '${u}' is not supported`,N.ERR_NOT_SUPPORT,h)})});const E=async u=>{if(u==null)return 0;if(p.isBlob(u))return u.size;if(p.isSpecCompliantForm(u))return(await new n(Z.origin,{method:"POST",body:u}).arrayBuffer()).byteLength;if(p.isArrayBufferView(u)||p.isArrayBuffer(u))return u.byteLength;if(p.isURLSearchParams(u)&&(u=u+""),p.isString(u))return(await c(u)).byteLength},C=async(u,w)=>{const h=p.toFiniteNumber(u.getContentLength());return h??E(w)};return async u=>{let{url:w,method:h,data:O,signal:T,cancelToken:g,timeout:z,onDownloadProgress:D,onUploadProgress:b,responseType:j,headers:q,withCredentials:R="same-origin",fetchOptions:X}=At(u),W=e||fetch;j=j?(j+"").toLowerCase():"text";let I=hn([T,g&&g.toAbortSignal()],z),G=null;const P=I&&I.unsubscribe&&(()=>{I.unsubscribe()});let _;try{if(b&&f&&h!=="get"&&h!=="head"&&(_=await C(q,O))!==0){let l=new n(w,{method:"POST",body:O,duplex:"half"}),m;if(p.isFormData(O)&&(m=l.headers.get("content-type"))&&q.setContentType(m),l.body){const[k,U]=Ot(_,Ue(Rt(b)));O=$t(l.body,Nt,k,U)}}p.isString(R)||(R=R?"include":"omit");const M=o&&"credentials"in n.prototype,K={...X,signal:I,method:h.toUpperCase(),headers:q.normalize().toJSON(),body:O,duplex:"half",credentials:M?R:void 0};G=o&&new n(w,K);let H=await(o?W(G,X):W(w,K));const L=x&&(j==="stream"||j==="response");if(x&&(D||L&&P)){const l={};["status","statusText","headers"].forEach(ne=>{l[ne]=H[ne]});const m=p.toFiniteNumber(H.headers.get("content-length")),[k,U]=D&&Ot(m,Ue(Rt(D),!0))||[];H=new s($t(H.body,Nt,k,()=>{U&&U(),P&&P()}),l)}j=j||"text";let J=await y[p.findKey(y,j)||"text"](H,u);return!L&&P&&P(),await new Promise((l,m)=>{It(l,m,{data:J,headers:re.from(H.headers),status:H.status,statusText:H.statusText,config:u,request:G})})}catch(M){throw P&&P(),M&&M.name==="TypeError"&&/Load failed|fetch/i.test(M.message)?Object.assign(new N("Network Error",N.ERR_NETWORK,u,G),{cause:M.cause||M}):N.from(M,M&&M.code,u,G)}}},Sn=new Map,Ft=t=>{let e=t?t.env:{};const{fetch:n,Request:s,Response:i}=e,o=[s,i,n];let a=o.length,d=a,c,f,x=Sn;for(;d--;)c=o[d],f=x.get(c),f===void 0&&x.set(c,f=d?new Map:wn(e)),x=f;return f};Ft();const Xe={http:Mr,xhr:xn,fetch:{get:Ft}};p.forEach(Xe,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch{}Object.defineProperty(t,"adapterName",{value:e})}});const qt=t=>`- ${t}`,jn=t=>p.isFunction(t)||t===null||t===!1,Mt={getAdapter:(t,e)=>{t=p.isArray(t)?t:[t];const{length:n}=t;let s,i;const o={};for(let a=0;a<n;a++){s=t[a];let d;if(i=s,!jn(s)&&(i=Xe[(d=String(s)).toLowerCase()],i===void 0))throw new N(`Unknown adapter '${d}'`);if(i&&(p.isFunction(i)||(i=i.get(e))))break;o[d||"#"+a]=i}if(!i){const a=Object.entries(o).map(([c,f])=>`adapter ${c} `+(f===!1?"is not supported by the environment":"is not available in the build"));let d=n?a.length>1?`since :
3
+ `)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...n){const s=new this(e);return n.forEach(i=>s.set(i)),s}static accessor(e){const s=(this[Tt]=this[Tt]={accessors:{}}).accessors,i=this.prototype;function o(a){const d=Te(a);s[d]||(on(i,a),s[d]=!0)}return p.isArray(e)?e.forEach(o):o(e),this}};re.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),p.reduceDescriptors(re.prototype,({value:t},e)=>{let n=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(s){this[n]=s}}}),p.freezeMethods(re);function Ge(t,e){const n=this||Ce,s=e||n,i=re.from(s.headers);let o=s.data;return p.forEach(t,function(d){o=d.call(n,o,i.normalize(),e?e.status:void 0)}),i.normalize(),o}function Pt(t){return!!(t&&t.__CANCEL__)}function be(t,e,n){N.call(this,t??"canceled",N.ERR_CANCELED,e,n),this.name="CanceledError"}p.inherits(be,N,{__CANCEL__:!0});function It(t,e,n){const s=n.config.validateStatus;!n.status||!s||s(n.status)?t(n):e(new N("Request failed with status code "+n.status,[N.ERR_BAD_REQUEST,N.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function an(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}function ln(t,e){t=t||10;const n=new Array(t),s=new Array(t);let i=0,o=0,a;return e=e!==void 0?e:1e3,function(c){const f=Date.now(),x=s[o];a||(a=f),n[i]=c,s[i]=f;let y=o,k=0;for(;y!==i;)k+=n[y++],y=y%t;if(i=(i+1)%t,i===o&&(o=(o+1)%t),f-a<e)return;const C=x&&f-x;return C?Math.round(k*1e3/C):void 0}}function dn(t,e){let n=0,s=1e3/e,i,o;const a=(f,x=Date.now())=>{n=x,i=null,o&&(clearTimeout(o),o=null),t(...f)};return[(...f)=>{const x=Date.now(),y=x-n;y>=s?a(f,x):(i=f,o||(o=setTimeout(()=>{o=null,a(i)},s-y)))},()=>i&&a(i)]}const Ue=(t,e,n=3)=>{let s=0;const i=ln(50,250);return dn(o=>{const a=o.loaded,d=o.lengthComputable?o.total:void 0,c=a-s,f=i(c),x=a<=d;s=a;const y={loaded:a,total:d,progress:d?a/d:void 0,bytes:c,rate:f||void 0,estimated:f&&d&&x?(d-a)/f:void 0,event:o,lengthComputable:d!=null,[e?"download":"upload"]:!0};t(y)},n)},Rt=(t,e)=>{const n=t!=null;return[s=>e[0]({lengthComputable:n,total:t,loaded:s}),e[1]]},Ot=t=>(...e)=>p.asap(()=>t(...e)),cn=Z.hasStandardBrowserEnv?((t,e)=>n=>(n=new URL(n,Z.origin),t.protocol===n.protocol&&t.host===n.host&&(e||t.port===n.port)))(new URL(Z.origin),Z.navigator&&/(msie|trident)/i.test(Z.navigator.userAgent)):()=>!0,un=Z.hasStandardBrowserEnv?{write(t,e,n,s,i,o){const a=[t+"="+encodeURIComponent(e)];p.isNumber(n)&&a.push("expires="+new Date(n).toGMTString()),p.isString(s)&&a.push("path="+s),p.isString(i)&&a.push("domain="+i),o===!0&&a.push("secure"),document.cookie=a.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function pn(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function fn(t,e){return e?t.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):t}function _t(t,e,n){let s=!pn(e);return t&&(s||n==!1)?fn(t,e):e}const zt=t=>t instanceof re?{...t}:t;function xe(t,e){e=e||{};const n={};function s(f,x,y,k){return p.isPlainObject(f)&&p.isPlainObject(x)?p.merge.call({caseless:k},f,x):p.isPlainObject(x)?p.merge({},x):p.isArray(x)?x.slice():x}function i(f,x,y,k){if(p.isUndefined(x)){if(!p.isUndefined(f))return s(void 0,f,y,k)}else return s(f,x,y,k)}function o(f,x){if(!p.isUndefined(x))return s(void 0,x)}function a(f,x){if(p.isUndefined(x)){if(!p.isUndefined(f))return s(void 0,f)}else return s(void 0,x)}function d(f,x,y){if(y in e)return s(f,x);if(y in t)return s(void 0,f)}const c={url:o,method:o,data:o,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,withXSRFToken:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,beforeRedirect:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:d,headers:(f,x,y)=>i(zt(f),zt(x),y,!0)};return p.forEach(Object.keys({...t,...e}),function(x){const y=c[x]||i,k=y(t[x],e[x],x);p.isUndefined(k)&&y!==d||(n[x]=k)}),n}const At=t=>{const e=xe({},t);let{data:n,withXSRFToken:s,xsrfHeaderName:i,xsrfCookieName:o,headers:a,auth:d}=e;if(e.headers=a=re.from(a),e.url=vt(_t(e.baseURL,e.url,e.allowAbsoluteUrls),t.params,t.paramsSerializer),d&&a.set("Authorization","Basic "+btoa((d.username||"")+":"+(d.password?unescape(encodeURIComponent(d.password)):""))),p.isFormData(n)){if(Z.hasStandardBrowserEnv||Z.hasStandardBrowserWebWorkerEnv)a.setContentType(void 0);else if(p.isFunction(n.getHeaders)){const c=n.getHeaders(),f=["content-type","content-length"];Object.entries(c).forEach(([x,y])=>{f.includes(x.toLowerCase())&&a.set(x,y)})}}if(Z.hasStandardBrowserEnv&&(s&&p.isFunction(s)&&(s=s(e)),s||s!==!1&&cn(e.url))){const c=i&&o&&un.read(o);c&&a.set(i,c)}return e},xn=typeof XMLHttpRequest<"u"&&function(t){return new Promise(function(n,s){const i=At(t);let o=i.data;const a=re.from(i.headers).normalize();let{responseType:d,onUploadProgress:c,onDownloadProgress:f}=i,x,y,k,C,u;function w(){C&&C(),u&&u(),i.cancelToken&&i.cancelToken.unsubscribe(x),i.signal&&i.signal.removeEventListener("abort",x)}let h=new XMLHttpRequest;h.open(i.method.toUpperCase(),i.url,!0),h.timeout=i.timeout;function R(){if(!h)return;const g=re.from("getAllResponseHeaders"in h&&h.getAllResponseHeaders()),D={data:!d||d==="text"||d==="json"?h.responseText:h.response,status:h.status,statusText:h.statusText,headers:g,config:t,request:h};It(function(j){n(j),w()},function(j){s(j),w()},D),h=null}"onloadend"in h?h.onloadend=R:h.onreadystatechange=function(){!h||h.readyState!==4||h.status===0&&!(h.responseURL&&h.responseURL.indexOf("file:")===0)||setTimeout(R)},h.onabort=function(){h&&(s(new N("Request aborted",N.ECONNABORTED,t,h)),h=null)},h.onerror=function(z){const D=z&&z.message?z.message:"Network Error",b=new N(D,N.ERR_NETWORK,t,h);b.event=z||null,s(b),h=null},h.ontimeout=function(){let z=i.timeout?"timeout of "+i.timeout+"ms exceeded":"timeout exceeded";const D=i.transitional||kt;i.timeoutErrorMessage&&(z=i.timeoutErrorMessage),s(new N(z,D.clarifyTimeoutError?N.ETIMEDOUT:N.ECONNABORTED,t,h)),h=null},o===void 0&&a.setContentType(null),"setRequestHeader"in h&&p.forEach(a.toJSON(),function(z,D){h.setRequestHeader(D,z)}),p.isUndefined(i.withCredentials)||(h.withCredentials=!!i.withCredentials),d&&d!=="json"&&(h.responseType=i.responseType),f&&([k,u]=Ue(f,!0),h.addEventListener("progress",k)),c&&h.upload&&([y,C]=Ue(c),h.upload.addEventListener("progress",y),h.upload.addEventListener("loadend",C)),(i.cancelToken||i.signal)&&(x=g=>{h&&(s(!g||g.type?new be(null,t,h):g),h.abort(),h=null)},i.cancelToken&&i.cancelToken.subscribe(x),i.signal&&(i.signal.aborted?x():i.signal.addEventListener("abort",x)));const T=an(i.url);if(T&&Z.protocols.indexOf(T)===-1){s(new N("Unsupported protocol "+T+":",N.ERR_BAD_REQUEST,t));return}h.send(o||null)})},hn=(t,e)=>{const{length:n}=t=t?t.filter(Boolean):[];if(e||n){let s=new AbortController,i;const o=function(f){if(!i){i=!0,d();const x=f instanceof Error?f:this.reason;s.abort(x instanceof N?x:new be(x instanceof Error?x.message:x))}};let a=e&&setTimeout(()=>{a=null,o(new N(`timeout ${e} of ms exceeded`,N.ETIMEDOUT))},e);const d=()=>{t&&(a&&clearTimeout(a),a=null,t.forEach(f=>{f.unsubscribe?f.unsubscribe(o):f.removeEventListener("abort",o)}),t=null)};t.forEach(f=>f.addEventListener("abort",o));const{signal:c}=s;return c.unsubscribe=()=>p.asap(d),c}},mn=function*(t,e){let n=t.byteLength;if(n<e){yield t;return}let s=0,i;for(;s<n;)i=s+e,yield t.slice(s,i),s=i},gn=async function*(t,e){for await(const n of yn(t))yield*mn(n,e)},yn=async function*(t){if(t[Symbol.asyncIterator]){yield*t;return}const e=t.getReader();try{for(;;){const{done:n,value:s}=await e.read();if(n)break;yield s}}finally{await e.cancel()}},$t=(t,e,n,s)=>{const i=gn(t,e);let o=0,a,d=c=>{a||(a=!0,s&&s(c))};return new ReadableStream({async pull(c){try{const{done:f,value:x}=await i.next();if(f){d(),c.close();return}let y=x.byteLength;if(n){let k=o+=y;n(k)}c.enqueue(new Uint8Array(x))}catch(f){throw d(f),f}},cancel(c){return d(c),i.return()}},{highWaterMark:2})},Nt=64*1024,{isFunction:De}=p,bn=(({Request:t,Response:e})=>({Request:t,Response:e}))(p.global),{ReadableStream:Ut,TextEncoder:Dt}=p.global,Lt=(t,...e)=>{try{return!!t(...e)}catch{return!1}},wn=t=>{t=p.merge.call({skipUndefined:!0},bn,t);const{fetch:e,Request:n,Response:s}=t,i=e?De(e):typeof fetch=="function",o=De(n),a=De(s);if(!i)return!1;const d=i&&De(Ut),c=i&&(typeof Dt=="function"?(u=>w=>u.encode(w))(new Dt):async u=>new Uint8Array(await new n(u).arrayBuffer())),f=o&&d&&Lt(()=>{let u=!1;const w=new n(Z.origin,{body:new Ut,method:"POST",get duplex(){return u=!0,"half"}}).headers.has("Content-Type");return u&&!w}),x=a&&d&&Lt(()=>p.isReadableStream(new s("").body)),y={stream:x&&(u=>u.body)};i&&["text","arrayBuffer","blob","formData","stream"].forEach(u=>{!y[u]&&(y[u]=(w,h)=>{let R=w&&w[u];if(R)return R.call(w);throw new N(`Response type '${u}' is not supported`,N.ERR_NOT_SUPPORT,h)})});const k=async u=>{if(u==null)return 0;if(p.isBlob(u))return u.size;if(p.isSpecCompliantForm(u))return(await new n(Z.origin,{method:"POST",body:u}).arrayBuffer()).byteLength;if(p.isArrayBufferView(u)||p.isArrayBuffer(u))return u.byteLength;if(p.isURLSearchParams(u)&&(u=u+""),p.isString(u))return(await c(u)).byteLength},C=async(u,w)=>{const h=p.toFiniteNumber(u.getContentLength());return h??k(w)};return async u=>{let{url:w,method:h,data:R,signal:T,cancelToken:g,timeout:z,onDownloadProgress:D,onUploadProgress:b,responseType:j,headers:q,withCredentials:O="same-origin",fetchOptions:X}=At(u),W=e||fetch;j=j?(j+"").toLowerCase():"text";let I=hn([T,g&&g.toAbortSignal()],z),G=null;const P=I&&I.unsubscribe&&(()=>{I.unsubscribe()});let _;try{if(b&&f&&h!=="get"&&h!=="head"&&(_=await C(q,R))!==0){let l=new n(w,{method:"POST",body:R,duplex:"half"}),m;if(p.isFormData(R)&&(m=l.headers.get("content-type"))&&q.setContentType(m),l.body){const[E,U]=Rt(_,Ue(Ot(b)));R=$t(l.body,Nt,E,U)}}p.isString(O)||(O=O?"include":"omit");const M=o&&"credentials"in n.prototype,K={...X,signal:I,method:h.toUpperCase(),headers:q.normalize().toJSON(),body:R,duplex:"half",credentials:M?O:void 0};G=o&&new n(w,K);let H=await(o?W(G,X):W(w,K));const L=x&&(j==="stream"||j==="response");if(x&&(D||L&&P)){const l={};["status","statusText","headers"].forEach(ne=>{l[ne]=H[ne]});const m=p.toFiniteNumber(H.headers.get("content-length")),[E,U]=D&&Rt(m,Ue(Ot(D),!0))||[];H=new s($t(H.body,Nt,E,()=>{U&&U(),P&&P()}),l)}j=j||"text";let J=await y[p.findKey(y,j)||"text"](H,u);return!L&&P&&P(),await new Promise((l,m)=>{It(l,m,{data:J,headers:re.from(H.headers),status:H.status,statusText:H.statusText,config:u,request:G})})}catch(M){throw P&&P(),M&&M.name==="TypeError"&&/Load failed|fetch/i.test(M.message)?Object.assign(new N("Network Error",N.ERR_NETWORK,u,G),{cause:M.cause||M}):N.from(M,M&&M.code,u,G)}}},Sn=new Map,Ft=t=>{let e=t?t.env:{};const{fetch:n,Request:s,Response:i}=e,o=[s,i,n];let a=o.length,d=a,c,f,x=Sn;for(;d--;)c=o[d],f=x.get(c),f===void 0&&x.set(c,f=d?new Map:wn(e)),x=f;return f};Ft();const Xe={http:Mr,xhr:xn,fetch:{get:Ft}};p.forEach(Xe,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch{}Object.defineProperty(t,"adapterName",{value:e})}});const qt=t=>`- ${t}`,jn=t=>p.isFunction(t)||t===null||t===!1,Mt={getAdapter:(t,e)=>{t=p.isArray(t)?t:[t];const{length:n}=t;let s,i;const o={};for(let a=0;a<n;a++){s=t[a];let d;if(i=s,!jn(s)&&(i=Xe[(d=String(s)).toLowerCase()],i===void 0))throw new N(`Unknown adapter '${d}'`);if(i&&(p.isFunction(i)||(i=i.get(e))))break;o[d||"#"+a]=i}if(!i){const a=Object.entries(o).map(([c,f])=>`adapter ${c} `+(f===!1?"is not supported by the environment":"is not available in the build"));let d=n?a.length>1?`since :
4
4
  `+a.map(qt).join(`
5
- `):" "+qt(a[0]):"as no adapter specified";throw new N("There is no suitable adapter to dispatch the request "+d,"ERR_NOT_SUPPORT")}return i},adapters:Xe};function Ze(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new be(null,t)}function Wt(t){return Ze(t),t.headers=re.from(t.headers),t.data=Ge.call(t,t.transformRequest),["post","put","patch"].indexOf(t.method)!==-1&&t.headers.setContentType("application/x-www-form-urlencoded",!1),Mt.getAdapter(t.adapter||Ce.adapter,t)(t).then(function(s){return Ze(t),s.data=Ge.call(t,t.transformResponse,s),s.headers=re.from(s.headers),s},function(s){return Pt(s)||(Ze(t),s&&s.response&&(s.response.data=Ge.call(t,t.transformResponse,s.response),s.response.headers=re.from(s.response.headers))),Promise.reject(s)})}const Bt="1.12.2",Le={};["object","boolean","number","function","string","symbol"].forEach((t,e)=>{Le[t]=function(s){return typeof s===t||"a"+(e<1?"n ":" ")+t}});const Ht={};Le.transitional=function(e,n,s){function i(o,a){return"[Axios v"+Bt+"] Transitional option '"+o+"'"+a+(s?". "+s:"")}return(o,a,d)=>{if(e===!1)throw new N(i(a," has been removed"+(n?" in "+n:"")),N.ERR_DEPRECATED);return n&&!Ht[a]&&(Ht[a]=!0,console.warn(i(a," has been deprecated since v"+n+" and will be removed in the near future"))),e?e(o,a,d):!0}},Le.spelling=function(e){return(n,s)=>(console.warn(`${s} is likely a misspelling of ${e}`),!0)};function vn(t,e,n){if(typeof t!="object")throw new N("options must be an object",N.ERR_BAD_OPTION_VALUE);const s=Object.keys(t);let i=s.length;for(;i-- >0;){const o=s[i],a=e[o];if(a){const d=t[o],c=d===void 0||a(d,o,t);if(c!==!0)throw new N("option "+o+" must be "+c,N.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new N("Unknown option "+o,N.ERR_BAD_OPTION)}}const Fe={assertOptions:vn,validators:Le},ae=Fe.validators;let he=class{constructor(e){this.defaults=e||{},this.interceptors={request:new kt,response:new kt}}async request(e,n){try{return await this._request(e,n)}catch(s){if(s instanceof Error){let i={};Error.captureStackTrace?Error.captureStackTrace(i):i=new Error;const o=i.stack?i.stack.replace(/^.+\n/,""):"";try{s.stack?o&&!String(s.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(s.stack+=`
6
- `+o):s.stack=o}catch{}}throw s}}_request(e,n){typeof e=="string"?(n=n||{},n.url=e):n=e||{},n=xe(this.defaults,n);const{transitional:s,paramsSerializer:i,headers:o}=n;s!==void 0&&Fe.assertOptions(s,{silentJSONParsing:ae.transitional(ae.boolean),forcedJSONParsing:ae.transitional(ae.boolean),clarifyTimeoutError:ae.transitional(ae.boolean)},!1),i!=null&&(p.isFunction(i)?n.paramsSerializer={serialize:i}:Fe.assertOptions(i,{encode:ae.function,serialize:ae.function},!0)),n.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?n.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:n.allowAbsoluteUrls=!0),Fe.assertOptions(n,{baseUrl:ae.spelling("baseURL"),withXsrfToken:ae.spelling("withXSRFToken")},!0),n.method=(n.method||this.defaults.method||"get").toLowerCase();let a=o&&p.merge(o.common,o[n.method]);o&&p.forEach(["delete","get","head","post","put","patch","common"],u=>{delete o[u]}),n.headers=re.concat(a,o);const d=[];let c=!0;this.interceptors.request.forEach(function(w){typeof w.runWhen=="function"&&w.runWhen(n)===!1||(c=c&&w.synchronous,d.unshift(w.fulfilled,w.rejected))});const f=[];this.interceptors.response.forEach(function(w){f.push(w.fulfilled,w.rejected)});let x,y=0,E;if(!c){const u=[Wt.bind(this),void 0];for(u.unshift(...d),u.push(...f),E=u.length,x=Promise.resolve(n);y<E;)x=x.then(u[y++],u[y++]);return x}E=d.length;let C=n;for(;y<E;){const u=d[y++],w=d[y++];try{C=u(C)}catch(h){w.call(this,h);break}}try{x=Wt.call(this,C)}catch(u){return Promise.reject(u)}for(y=0,E=f.length;y<E;)x=x.then(f[y++],f[y++]);return x}getUri(e){e=xe(this.defaults,e);const n=_t(e.baseURL,e.url,e.allowAbsoluteUrls);return vt(n,e.params,e.paramsSerializer)}};p.forEach(["delete","get","head","options"],function(e){he.prototype[e]=function(n,s){return this.request(xe(s||{},{method:e,url:n,data:(s||{}).data}))}}),p.forEach(["post","put","patch"],function(e){function n(s){return function(o,a,d){return this.request(xe(d||{},{method:e,headers:s?{"Content-Type":"multipart/form-data"}:{},url:o,data:a}))}}he.prototype[e]=n(),he.prototype[e+"Form"]=n(!0)});let kn=class nr{constructor(e){if(typeof e!="function")throw new TypeError("executor must be a function.");let n;this.promise=new Promise(function(o){n=o});const s=this;this.promise.then(i=>{if(!s._listeners)return;let o=s._listeners.length;for(;o-- >0;)s._listeners[o](i);s._listeners=null}),this.promise.then=i=>{let o;const a=new Promise(d=>{s.subscribe(d),o=d}).then(i);return a.cancel=function(){s.unsubscribe(o)},a},e(function(o,a,d){s.reason||(s.reason=new be(o,a,d),n(s.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const n=this._listeners.indexOf(e);n!==-1&&this._listeners.splice(n,1)}toAbortSignal(){const e=new AbortController,n=s=>{e.abort(s)};return this.subscribe(n),e.signal.unsubscribe=()=>this.unsubscribe(n),e.signal}static source(){let e;return{token:new nr(function(i){e=i}),cancel:e}}};function En(t){return function(n){return t.apply(null,n)}}function Cn(t){return p.isObject(t)&&t.isAxiosError===!0}const Qe={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Qe).forEach(([t,e])=>{Qe[e]=t});function Vt(t){const e=new he(t),n=lt(he.prototype.request,e);return p.extend(n,he.prototype,e,{allOwnKeys:!0}),p.extend(n,e,null,{allOwnKeys:!0}),n.create=function(i){return Vt(xe(t,i))},n}const Y=Vt(Ce);Y.Axios=he,Y.CanceledError=be,Y.CancelToken=kn,Y.isCancel=Pt,Y.VERSION=Bt,Y.toFormData=$e,Y.AxiosError=N,Y.Cancel=Y.CanceledError,Y.all=function(e){return Promise.all(e)},Y.spread=En,Y.isAxiosError=Cn,Y.mergeConfig=xe,Y.AxiosHeaders=re,Y.formToJSON=t=>Ct(p.isHTMLForm(t)?new FormData(t):t),Y.getAdapter=Mt.getAdapter,Y.HttpStatusCode=Qe,Y.default=Y;const{Axios:xs,AxiosError:hs,CanceledError:ms,isCancel:gs,CancelToken:ys,VERSION:bs,all:ws,Cancel:Ss,isAxiosError:js,spread:vs,toFormData:ks,AxiosHeaders:Es,HttpStatusCode:Cs,formToJSON:Ts,getAdapter:Ps,mergeConfig:Is}=Y;class Tn{baseUrl;apiKey;appId;client;constructor(e){if(!e||!e.baseUrl)throw new Error("NeuctraAuthixClient: 'baseUrl' is required in config");this.baseUrl=e.baseUrl.replace(/\/$/,""),this.apiKey=e.apiKey||null,this.appId=e.appId||null,this.client=Y.create({baseURL:this.baseUrl,headers:{"Content-Type":"application/json",...this.apiKey?{"x-api-key":this.apiKey}:{}},timeout:3e4,withCredentials:!0})}async request(e,n,s,i={},o=!1){try{const a={...this.appId?{appId:this.appId}:{},...s||{}};return(await this.client.request({url:n,method:e,data:a,headers:i,withCredentials:o})).data}catch(a){throw Y.isAxiosError(a)?{message:a.response?.data?.message||a.message||"Request failed",status:a.response?.status??0}:{message:a.message||"Unexpected error occurred"}}}async signupUser(e){const{name:n,email:s,password:i}=e;if(!n||!s||!i)throw new Error("signup: 'name', 'email', and 'password' are required");return await this.request("POST","/users/signup",e,{},!0)}async loginUser(e){const{email:n,password:s}=e;if(!n||!s)throw new Error("login: 'email' and 'password' are required");try{return await this.request("POST","/users/login",{email:n,password:s},{},!0)}catch(i){throw new Error(i.message||"Login failed due to an unknown error")}}async logoutUser(){try{return(await this.request("POST","/users/logout",{},{},!0))?.success?(typeof window<"u"&&(document.cookie="a_s_b=; path=/; Max-Age=0; SameSite=Lax",window.location.protocol==="https:"&&(document.cookie="a_s_b=; path=/; Max-Age=0; SameSite=Lax; Secure"),window.location.reload()),{success:!0}):{success:!1}}catch(e){throw new Error(e?.message||"Logout failed due to an unknown error")}}async changePassword(e){const{userId:n,currentPassword:s,newPassword:i}=e;if(!n)throw new Error("changePassword: 'userId' is required");if(!s||!i)throw new Error("changePassword: both 'currentPassword' and 'newPassword' are required");return await this.request("PUT",`/users/change-password/${n}`,{currentPassword:s,newPassword:i},{},!0)}async requestEmailVerificationOTP(e){const{userId:n,email:s}=e;if(!n)throw{message:"requestEmailVerificationOTP: 'userId' is required",status:400};if(!s)throw{message:"requestEmailVerificationOTP: 'email' is required",status:400};try{return await this.request("POST",`/users/send-verify-otp/${encodeURIComponent(n)}`,{email:s},{},!0)}catch(i){throw console.error("requestEmailVerificationOTP Error:",i),{message:i?.message||"Failed to send verification OTP",status:i?.status||500}}}async verifyEmail(e){const{email:n,otp:s}=e;if(!n)throw new Error("verifyEmail: 'email' is required");if(!s)throw new Error("verifyEmail: 'otp' is required");try{return await this.request("POST","/users/verify-email",{email:n,otp:s},{},!0)}catch(i){throw{message:i.message||"Failed to verify email",status:i.status||500}}}async checkUserSession(){if(typeof window>"u")return{authenticated:!1};try{return await this.request("GET","/users/session",void 0,{},!0)}catch{return{authenticated:!1}}}async updateUser(e){const{userId:n}=e;if(!n)throw new Error("updateUser: 'userId' is required");return await this.request("PUT",`/users/update/${n}`,{...e},{},!0)}async deleteUser(e){const{userId:n}=e;if(!n)throw new Error("deleteUser: 'userId' is required");return await this.request("DELETE",`/users/delete/${n}`,{},{},!0)}async getUserProfile(e){const{userId:n}=e;if(!n)throw new Error("getProfile: 'userId' and 'appId' are required");try{return await this.request("POST","/users/profile",{userId:n},{},!0)}catch(s){throw{message:s.message||"Failed to fetch profile",status:s.status||500}}}async requestResetUserPasswordOTP(e){const{email:n}=e;if(!n)throw new Error("forgotPassword: 'email' is required");return await this.request("POST","/users/forgot-password",{email:n})}async resetUserPassword(e){const{email:n,otp:s,newPassword:i}=e;if(!n||!s||!i)throw new Error("resetPassword: 'email', 'otp' and 'newPassword' are required");return await this.request("POST","/users/reset-password",{email:n,otp:s,newPassword:i})}async checkIfUserExists(e){if(!e)throw new Error("checkUser: 'userId' is required");return await this.request("GET",`/users/check-user/${e}?appId=${this.appId}`)}async searchUserData(e){const{userId:n,...s}=e;if(!n)throw new Error("userId required");const i=new URLSearchParams(s).toString();return await this.request("GET",`/users/${n}/data/search?${i}`,void 0,{},!1)}async searchUserDataByKeys(e){const{userId:n,...s}=e;if(!n)throw new Error("searchUserDataByKeys: 'userId' is required");const i=new URLSearchParams(Object.entries(s).reduce((o,[a,d])=>(d!=null&&(o[a]=String(d)),o),{})).toString();return await this.request("GET",`/users/${n}/data/searchbyref?${i}`,void 0,{},!1)}async getUserData(e){const{userId:n}=e;if(!n)throw new Error("getUserData: 'userId' is required");return await this.request("GET",`/users/${n}/data`,void 0,{},!1)}async getSingleUserData(e){const{userId:n,dataId:s}=e;if(!n||!s)throw new Error("getSingleUserData: 'userId' and 'dataId' are required");return await this.request("GET",`/users/${n}/data/${s}`,void 0,{},!1)}async addUserData(e){const{userId:n,dataCategory:s,data:i}=e;if(!n)throw new Error("addUserData: 'userId' is required");if(!s)throw new Error("addUserData: 'dataCategory' is required");if(!i)throw new Error("addUserData: 'data' is required");return await this.request("POST",`/users/${n}/data`,{dataCategory:s,...i},{},!1)}async updateUserData(e){const{userId:n,dataId:s,data:i}=e;if(!n||!s)throw new Error("updateUserData: 'userId' and 'dataId' are required");if(!i)throw new Error("updateUserData: 'data' is required");return await this.request("PUT",`/users/${n}/data/${s}`,i,{},!1)}async deleteUserData(e){const{userId:n,dataId:s}=e;if(!n||!s)throw new Error("deleteUserData: 'userId' and 'dataId' are required");return await this.request("DELETE",`/users/${n}/data/${s}`,void 0,{},!1)}async searchAllUsersDataFromApp(e){const{dataCategory:n}=e,s=this.appId;if(!s)throw new Error("searchAllUsersDataFromApp: 'appId' is required");if(!n)throw new Error("searchAllUsersDataFromApp: 'category' is required");return await this.request("GET",`/users/app/${encodeURIComponent(s)}/category/${encodeURIComponent(n)}`,void 0,{},!1)}async getAppData(e){const n=this.appId;if(!n)throw new Error("getAppData: 'appId' is required");const s=e?`?category=${encodeURIComponent(e)}`:"";return await this.request("GET",`/app/${n}/data${s}`,void 0,{},!1)}async getSingleAppData(e){const n=this.appId;if(!n)throw new Error("getSingleAppData: 'appId' is required");if(!e.dataId)throw new Error("getSingleAppData: 'dataId' is required");return await this.request("GET",`/app/${n}/data/${e.dataId}`,void 0,{},!1)}async searchAppDataByKeys(e){const n=this.appId;if(!n)throw new Error("searchAppDataByKeys: 'appId' is required");if(!e||typeof e!="object")throw new Error("searchAppDataByKeys: params object is required");return await this.request("POST",`/app/${encodeURIComponent(n)}/data/search/bykeys`,e,{},!1)}async addAppData(e){const n=this.appId;if(!n)throw new Error("addAppData: 'appId' is required");const{dataCategory:s,data:i}=e;if(!s)throw new Error("addAppData: 'dataCategory' is required");if(!i||typeof i!="object")throw new Error("addAppData: 'data' is required");return await this.request("POST",`/app/${n}/data/${encodeURIComponent(s)}`,{item:i},{},!1)}async updateAppData(e){const n=this.appId;if(!n)throw new Error("updateAppData: 'appId' is required");if(!e.dataId)throw new Error("updateAppData: 'dataId' is required");if(!e.data)throw new Error("updateAppData: 'data' is required");return await this.request("PATCH",`/app/${n}/data/${e.dataId}`,e.data,{},!1)}async deleteAppData(e){const n=this.appId;if(!n)throw new Error("deleteAppData: 'appId' is required");if(!e.dataId)throw new Error("deleteAppData: 'dataId' is required");return await this.request("DELETE",`/app/${n}/data/${e.dataId}`,void 0,{},!1)}}var qe={exports:{}},Pe={};/**
5
+ `):" "+qt(a[0]):"as no adapter specified";throw new N("There is no suitable adapter to dispatch the request "+d,"ERR_NOT_SUPPORT")}return i},adapters:Xe};function Ze(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new be(null,t)}function Wt(t){return Ze(t),t.headers=re.from(t.headers),t.data=Ge.call(t,t.transformRequest),["post","put","patch"].indexOf(t.method)!==-1&&t.headers.setContentType("application/x-www-form-urlencoded",!1),Mt.getAdapter(t.adapter||Ce.adapter,t)(t).then(function(s){return Ze(t),s.data=Ge.call(t,t.transformResponse,s),s.headers=re.from(s.headers),s},function(s){return Pt(s)||(Ze(t),s&&s.response&&(s.response.data=Ge.call(t,t.transformResponse,s.response),s.response.headers=re.from(s.response.headers))),Promise.reject(s)})}const Bt="1.12.2",Le={};["object","boolean","number","function","string","symbol"].forEach((t,e)=>{Le[t]=function(s){return typeof s===t||"a"+(e<1?"n ":" ")+t}});const Ht={};Le.transitional=function(e,n,s){function i(o,a){return"[Axios v"+Bt+"] Transitional option '"+o+"'"+a+(s?". "+s:"")}return(o,a,d)=>{if(e===!1)throw new N(i(a," has been removed"+(n?" in "+n:"")),N.ERR_DEPRECATED);return n&&!Ht[a]&&(Ht[a]=!0,console.warn(i(a," has been deprecated since v"+n+" and will be removed in the near future"))),e?e(o,a,d):!0}},Le.spelling=function(e){return(n,s)=>(console.warn(`${s} is likely a misspelling of ${e}`),!0)};function vn(t,e,n){if(typeof t!="object")throw new N("options must be an object",N.ERR_BAD_OPTION_VALUE);const s=Object.keys(t);let i=s.length;for(;i-- >0;){const o=s[i],a=e[o];if(a){const d=t[o],c=d===void 0||a(d,o,t);if(c!==!0)throw new N("option "+o+" must be "+c,N.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new N("Unknown option "+o,N.ERR_BAD_OPTION)}}const Fe={assertOptions:vn,validators:Le},ae=Fe.validators;let he=class{constructor(e){this.defaults=e||{},this.interceptors={request:new Et,response:new Et}}async request(e,n){try{return await this._request(e,n)}catch(s){if(s instanceof Error){let i={};Error.captureStackTrace?Error.captureStackTrace(i):i=new Error;const o=i.stack?i.stack.replace(/^.+\n/,""):"";try{s.stack?o&&!String(s.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(s.stack+=`
6
+ `+o):s.stack=o}catch{}}throw s}}_request(e,n){typeof e=="string"?(n=n||{},n.url=e):n=e||{},n=xe(this.defaults,n);const{transitional:s,paramsSerializer:i,headers:o}=n;s!==void 0&&Fe.assertOptions(s,{silentJSONParsing:ae.transitional(ae.boolean),forcedJSONParsing:ae.transitional(ae.boolean),clarifyTimeoutError:ae.transitional(ae.boolean)},!1),i!=null&&(p.isFunction(i)?n.paramsSerializer={serialize:i}:Fe.assertOptions(i,{encode:ae.function,serialize:ae.function},!0)),n.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?n.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:n.allowAbsoluteUrls=!0),Fe.assertOptions(n,{baseUrl:ae.spelling("baseURL"),withXsrfToken:ae.spelling("withXSRFToken")},!0),n.method=(n.method||this.defaults.method||"get").toLowerCase();let a=o&&p.merge(o.common,o[n.method]);o&&p.forEach(["delete","get","head","post","put","patch","common"],u=>{delete o[u]}),n.headers=re.concat(a,o);const d=[];let c=!0;this.interceptors.request.forEach(function(w){typeof w.runWhen=="function"&&w.runWhen(n)===!1||(c=c&&w.synchronous,d.unshift(w.fulfilled,w.rejected))});const f=[];this.interceptors.response.forEach(function(w){f.push(w.fulfilled,w.rejected)});let x,y=0,k;if(!c){const u=[Wt.bind(this),void 0];for(u.unshift(...d),u.push(...f),k=u.length,x=Promise.resolve(n);y<k;)x=x.then(u[y++],u[y++]);return x}k=d.length;let C=n;for(;y<k;){const u=d[y++],w=d[y++];try{C=u(C)}catch(h){w.call(this,h);break}}try{x=Wt.call(this,C)}catch(u){return Promise.reject(u)}for(y=0,k=f.length;y<k;)x=x.then(f[y++],f[y++]);return x}getUri(e){e=xe(this.defaults,e);const n=_t(e.baseURL,e.url,e.allowAbsoluteUrls);return vt(n,e.params,e.paramsSerializer)}};p.forEach(["delete","get","head","options"],function(e){he.prototype[e]=function(n,s){return this.request(xe(s||{},{method:e,url:n,data:(s||{}).data}))}}),p.forEach(["post","put","patch"],function(e){function n(s){return function(o,a,d){return this.request(xe(d||{},{method:e,headers:s?{"Content-Type":"multipart/form-data"}:{},url:o,data:a}))}}he.prototype[e]=n(),he.prototype[e+"Form"]=n(!0)});let En=class nr{constructor(e){if(typeof e!="function")throw new TypeError("executor must be a function.");let n;this.promise=new Promise(function(o){n=o});const s=this;this.promise.then(i=>{if(!s._listeners)return;let o=s._listeners.length;for(;o-- >0;)s._listeners[o](i);s._listeners=null}),this.promise.then=i=>{let o;const a=new Promise(d=>{s.subscribe(d),o=d}).then(i);return a.cancel=function(){s.unsubscribe(o)},a},e(function(o,a,d){s.reason||(s.reason=new be(o,a,d),n(s.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const n=this._listeners.indexOf(e);n!==-1&&this._listeners.splice(n,1)}toAbortSignal(){const e=new AbortController,n=s=>{e.abort(s)};return this.subscribe(n),e.signal.unsubscribe=()=>this.unsubscribe(n),e.signal}static source(){let e;return{token:new nr(function(i){e=i}),cancel:e}}};function kn(t){return function(n){return t.apply(null,n)}}function Cn(t){return p.isObject(t)&&t.isAxiosError===!0}const Qe={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Qe).forEach(([t,e])=>{Qe[e]=t});function Vt(t){const e=new he(t),n=lt(he.prototype.request,e);return p.extend(n,he.prototype,e,{allOwnKeys:!0}),p.extend(n,e,null,{allOwnKeys:!0}),n.create=function(i){return Vt(xe(t,i))},n}const Y=Vt(Ce);Y.Axios=he,Y.CanceledError=be,Y.CancelToken=En,Y.isCancel=Pt,Y.VERSION=Bt,Y.toFormData=$e,Y.AxiosError=N,Y.Cancel=Y.CanceledError,Y.all=function(e){return Promise.all(e)},Y.spread=kn,Y.isAxiosError=Cn,Y.mergeConfig=xe,Y.AxiosHeaders=re,Y.formToJSON=t=>Ct(p.isHTMLForm(t)?new FormData(t):t),Y.getAdapter=Mt.getAdapter,Y.HttpStatusCode=Qe,Y.default=Y;const{Axios:xs,AxiosError:hs,CanceledError:ms,isCancel:gs,CancelToken:ys,VERSION:bs,all:ws,Cancel:Ss,isAxiosError:js,spread:vs,toFormData:Es,AxiosHeaders:ks,HttpStatusCode:Cs,formToJSON:Ts,getAdapter:Ps,mergeConfig:Is}=Y;class Tn{baseUrl;apiKey;appId;client;constructor(e){if(!e||!e.baseUrl)throw new Error("NeuctraAuthixClient: 'baseUrl' is required in config");this.baseUrl=e.baseUrl.replace(/\/$/,""),this.apiKey=e.apiKey||null,this.appId=e.appId||null,this.client=Y.create({baseURL:this.baseUrl,headers:{"Content-Type":"application/json",...this.apiKey?{"x-api-key":this.apiKey}:{}},timeout:3e4,withCredentials:!0})}async request(e,n,s,i={},o=!1){try{const a={...this.appId?{appId:this.appId}:{},...s||{}};return(await this.client.request({url:n,method:e,data:a,headers:i,withCredentials:o})).data}catch(a){throw Y.isAxiosError(a)?{message:a.response?.data?.message||a.message||"Request failed",status:a.response?.status??0}:{message:a.message||"Unexpected error occurred"}}}async signupUser(e){const{name:n,email:s,password:i}=e;if(!n||!s||!i)throw new Error("signup: 'name', 'email', and 'password' are required");return await this.request("POST","/users/signup",e,{},!0)}async loginUser(e){const{email:n,password:s}=e;if(!n||!s)throw new Error("login: 'email' and 'password' are required");try{return await this.request("POST","/users/login",{email:n,password:s},{},!0)}catch(i){throw new Error(i.message||"Login failed due to an unknown error")}}async logoutUser(){try{return(await this.request("POST","/users/logout",{},{},!0))?.success?(typeof window<"u"&&(document.cookie="a_s_b=; path=/; Max-Age=0; SameSite=Lax",window.location.protocol==="https:"&&(document.cookie="a_s_b=; path=/; Max-Age=0; SameSite=Lax; Secure"),window.location.reload()),{success:!0}):{success:!1}}catch(e){throw new Error(e?.message||"Logout failed due to an unknown error")}}async changePassword(e){const{userId:n,currentPassword:s,newPassword:i}=e;if(!n)throw new Error("changePassword: 'userId' is required");if(!s||!i)throw new Error("changePassword: both 'currentPassword' and 'newPassword' are required");return await this.request("PUT",`/users/change-password/${n}`,{currentPassword:s,newPassword:i},{},!0)}async requestEmailVerificationOTP(e){const{userId:n,email:s}=e;if(!n)throw{message:"requestEmailVerificationOTP: 'userId' is required",status:400};if(!s)throw{message:"requestEmailVerificationOTP: 'email' is required",status:400};try{return await this.request("POST",`/users/send-verify-otp/${encodeURIComponent(n)}`,{email:s},{},!0)}catch(i){throw console.error("requestEmailVerificationOTP Error:",i),{message:i?.message||"Failed to send verification OTP",status:i?.status||500}}}async verifyEmail(e){const{email:n,otp:s}=e;if(!n)throw new Error("verifyEmail: 'email' is required");if(!s)throw new Error("verifyEmail: 'otp' is required");try{return await this.request("POST","/users/verify-email",{email:n,otp:s},{},!0)}catch(i){throw{message:i.message||"Failed to verify email",status:i.status||500}}}async checkUserSession(){if(typeof window>"u")return{authenticated:!1};try{return await this.request("GET","/users/session",void 0,{},!0)}catch{return{authenticated:!1}}}async updateUser(e){const{userId:n}=e;if(!n)throw new Error("updateUser: 'userId' is required");return await this.request("PUT",`/users/update/${n}`,{...e},{},!0)}async deleteUser(e){const{userId:n}=e;if(!n)throw new Error("deleteUser: 'userId' is required");return await this.request("DELETE",`/users/delete/${n}`,{},{},!0)}async getUserProfile(e){const{userId:n}=e;if(!n)throw new Error("getProfile: 'userId' and 'appId' are required");try{return await this.request("POST","/users/profile",{userId:n},{},!0)}catch(s){throw{message:s.message||"Failed to fetch profile",status:s.status||500}}}async requestResetUserPasswordOTP(e){const{email:n}=e;if(!n)throw new Error("forgotPassword: 'email' is required");return await this.request("POST","/users/forgot-password",{email:n})}async resetUserPassword(e){const{email:n,otp:s,newPassword:i}=e;if(!n||!s||!i)throw new Error("resetPassword: 'email', 'otp' and 'newPassword' are required");return await this.request("POST","/users/reset-password",{email:n,otp:s,newPassword:i})}async checkIfUserExists(e){if(!e)throw new Error("checkUser: 'userId' is required");return await this.request("GET",`/users/check-user/${e}?appId=${this.appId}`)}async searchUserData(e){const{userId:n,...s}=e;if(!n)throw new Error("userId required");const i=new URLSearchParams(s).toString();return await this.request("GET",`/users/${n}/data/search?${i}`,void 0,{},!1)}async searchUserDataByKeys(e){const{userId:n,...s}=e;if(!n)throw new Error("searchUserDataByKeys: 'userId' is required");const i=new URLSearchParams(Object.entries(s).reduce((o,[a,d])=>(d!=null&&(o[a]=String(d)),o),{})).toString();return await this.request("GET",`/users/${n}/data/searchbyref?${i}`,void 0,{},!1)}async getUserData(e){const{userId:n}=e;if(!n)throw new Error("getUserData: 'userId' is required");return await this.request("GET",`/users/${n}/data`,void 0,{},!1)}async getSingleUserData(e){const{userId:n,dataId:s}=e;if(!n||!s)throw new Error("getSingleUserData: 'userId' and 'dataId' are required");return await this.request("GET",`/users/${n}/data/${s}`,void 0,{},!1)}async addUserData(e){const{userId:n,dataCategory:s,data:i}=e;if(!n)throw new Error("addUserData: 'userId' is required");if(!s)throw new Error("addUserData: 'dataCategory' is required");if(!i)throw new Error("addUserData: 'data' is required");return await this.request("POST",`/users/${n}/data`,{dataCategory:s,...i},{},!1)}async updateUserData(e){const{userId:n,dataId:s,data:i}=e;if(!n||!s)throw new Error("updateUserData: 'userId' and 'dataId' are required");if(!i)throw new Error("updateUserData: 'data' is required");return await this.request("PUT",`/users/${n}/data/${s}`,i,{},!1)}async deleteUserData(e){const{userId:n,dataId:s}=e;if(!n||!s)throw new Error("deleteUserData: 'userId' and 'dataId' are required");return await this.request("DELETE",`/users/${n}/data/${s}`,void 0,{},!1)}async searchAllUsersDataFromApp(e){const{dataCategory:n}=e,s=this.appId;if(!s)throw new Error("searchAllUsersDataFromApp: 'appId' is required");if(!n)throw new Error("searchAllUsersDataFromApp: 'category' is required");return await this.request("GET",`/users/app/${encodeURIComponent(s)}/category/${encodeURIComponent(n)}`,void 0,{},!1)}async getAppData(e){const n=this.appId;if(!n)throw new Error("getAppData: 'appId' is required");const s=e?`/app/${encodeURIComponent(n)}/app-data/${encodeURIComponent(e)}`:`/app/${encodeURIComponent(n)}/app-data`;return await this.request("GET",s,void 0,{},!1)}async getUsersData(e){const n=this.appId;if(!n)throw new Error("getUsersData: 'appId' is required");const s=e?`/app/${encodeURIComponent(n)}/users-data/${encodeURIComponent(e)}`:`/app/${encodeURIComponent(n)}/users-data`;return await this.request("GET",s,void 0,{},!1)}async getSingleAppData(e){const n=this.appId;if(!n)throw new Error("getSingleAppData: 'appId' is required");if(!e?.dataId)throw new Error("getSingleAppData: 'dataId' is required");return await this.request("GET",`/app/${encodeURIComponent(n)}/data/${encodeURIComponent(e.dataId)}`,void 0,{},!1)}async searchAppDataByKeys(e){const n=this.appId;if(!n)throw new Error("searchAppDataByKeys: 'appId' is required");if(!e||typeof e!="object")throw new Error("searchAppDataByKeys: params object is required");return await this.request("POST",`/app/${encodeURIComponent(n)}/data/searchByKeys`,e,{},!1)}async addAppData(e){const n=this.appId;if(!n)throw new Error("addAppData: 'appId' is required");const{dataCategory:s,data:i}=e;if(!s)throw new Error("addAppData: 'dataCategory' is required");if(!i||typeof i!="object")throw new Error("addAppData: 'data' is required");return await this.request("POST",`/app/${encodeURIComponent(n)}/data/${encodeURIComponent(s)}`,{item:i},{},!1)}async updateAppData(e){const n=this.appId;if(!n)throw new Error("updateAppData: 'appId' is required");if(!e?.dataId)throw new Error("updateAppData: 'dataId' is required");if(!e?.data||typeof e.data!="object")throw new Error("updateAppData: 'data' is required");return await this.request("PATCH",`/app/${encodeURIComponent(n)}/data/${encodeURIComponent(e.dataId)}`,e.data,{},!1)}async deleteAppData(e){const n=this.appId;if(!n)throw new Error("deleteAppData: 'appId' is required");if(!e?.dataId)throw new Error("deleteAppData: 'dataId' is required");return await this.request("DELETE",`/app/${encodeURIComponent(n)}/data/${encodeURIComponent(e.dataId)}`,void 0,{},!1)}}var qe={exports:{}},Pe={};/**
7
7
  * @license React
8
8
  * react-jsx-runtime.production.js
9
9
  *
@@ -19,17 +19,17 @@
19
19
  *
20
20
  * This source code is licensed under the MIT license found in the
21
21
  * LICENSE file in the root directory of this source tree.
22
- */var Jt;function In(){return Jt||(Jt=1,process.env.NODE_ENV!=="production"&&(function(){function t(l){if(l==null)return null;if(typeof l=="function")return l.$$typeof===W?null:l.displayName||l.name||null;if(typeof l=="string")return l;switch(l){case h:return"Fragment";case T:return"Profiler";case O:return"StrictMode";case b:return"Suspense";case j:return"SuspenseList";case X:return"Activity"}if(typeof l=="object")switch(typeof l.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),l.$$typeof){case w:return"Portal";case z:return l.displayName||"Context";case g:return(l._context.displayName||"Context")+".Consumer";case D:var m=l.render;return l=l.displayName,l||(l=m.displayName||m.name||"",l=l!==""?"ForwardRef("+l+")":"ForwardRef"),l;case q:return m=l.displayName||null,m!==null?m:t(l.type)||"Memo";case R:m=l._payload,l=l._init;try{return t(l(m))}catch{}}return null}function e(l){return""+l}function n(l){try{e(l);var m=!1}catch{m=!0}if(m){m=console;var k=m.error,U=typeof Symbol=="function"&&Symbol.toStringTag&&l[Symbol.toStringTag]||l.constructor.name||"Object";return k.call(m,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",U),e(l)}}function s(l){if(l===h)return"<>";if(typeof l=="object"&&l!==null&&l.$$typeof===R)return"<...>";try{var m=t(l);return m?"<"+m+">":"<...>"}catch{return"<...>"}}function i(){var l=I.A;return l===null?null:l.getOwner()}function o(){return Error("react-stack-top-frame")}function a(l){if(G.call(l,"key")){var m=Object.getOwnPropertyDescriptor(l,"key").get;if(m&&m.isReactWarning)return!1}return l.key!==void 0}function d(l,m){function k(){M||(M=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",m))}k.isReactWarning=!0,Object.defineProperty(l,"key",{get:k,configurable:!0})}function c(){var l=t(this.type);return K[l]||(K[l]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),l=this.props.ref,l!==void 0?l:null}function f(l,m,k,U,ne,le){var B=k.ref;return l={$$typeof:u,type:l,key:m,props:k,_owner:U},(B!==void 0?B:null)!==null?Object.defineProperty(l,"ref",{enumerable:!1,get:c}):Object.defineProperty(l,"ref",{enumerable:!1,value:null}),l._store={},Object.defineProperty(l._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(l,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(l,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:ne}),Object.defineProperty(l,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:le}),Object.freeze&&(Object.freeze(l.props),Object.freeze(l)),l}function x(l,m,k,U,ne,le){var B=m.children;if(B!==void 0)if(U)if(P(B)){for(U=0;U<B.length;U++)y(B[U]);Object.freeze&&Object.freeze(B)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else y(B);if(G.call(m,"key")){B=t(l);var de=Object.keys(m).filter(function(A){return A!=="key"});U=0<de.length?"{key: someKey, "+de.join(": ..., ")+": ...}":"{key: someKey}",J[B+U]||(de=0<de.length?"{"+de.join(": ..., ")+": ...}":"{}",console.error(`A props object containing a "key" prop is being spread into JSX:
22
+ */var Jt;function In(){return Jt||(Jt=1,process.env.NODE_ENV!=="production"&&(function(){function t(l){if(l==null)return null;if(typeof l=="function")return l.$$typeof===W?null:l.displayName||l.name||null;if(typeof l=="string")return l;switch(l){case h:return"Fragment";case T:return"Profiler";case R:return"StrictMode";case b:return"Suspense";case j:return"SuspenseList";case X:return"Activity"}if(typeof l=="object")switch(typeof l.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),l.$$typeof){case w:return"Portal";case z:return l.displayName||"Context";case g:return(l._context.displayName||"Context")+".Consumer";case D:var m=l.render;return l=l.displayName,l||(l=m.displayName||m.name||"",l=l!==""?"ForwardRef("+l+")":"ForwardRef"),l;case q:return m=l.displayName||null,m!==null?m:t(l.type)||"Memo";case O:m=l._payload,l=l._init;try{return t(l(m))}catch{}}return null}function e(l){return""+l}function n(l){try{e(l);var m=!1}catch{m=!0}if(m){m=console;var E=m.error,U=typeof Symbol=="function"&&Symbol.toStringTag&&l[Symbol.toStringTag]||l.constructor.name||"Object";return E.call(m,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",U),e(l)}}function s(l){if(l===h)return"<>";if(typeof l=="object"&&l!==null&&l.$$typeof===O)return"<...>";try{var m=t(l);return m?"<"+m+">":"<...>"}catch{return"<...>"}}function i(){var l=I.A;return l===null?null:l.getOwner()}function o(){return Error("react-stack-top-frame")}function a(l){if(G.call(l,"key")){var m=Object.getOwnPropertyDescriptor(l,"key").get;if(m&&m.isReactWarning)return!1}return l.key!==void 0}function d(l,m){function E(){M||(M=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",m))}E.isReactWarning=!0,Object.defineProperty(l,"key",{get:E,configurable:!0})}function c(){var l=t(this.type);return K[l]||(K[l]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),l=this.props.ref,l!==void 0?l:null}function f(l,m,E,U,ne,le){var B=E.ref;return l={$$typeof:u,type:l,key:m,props:E,_owner:U},(B!==void 0?B:null)!==null?Object.defineProperty(l,"ref",{enumerable:!1,get:c}):Object.defineProperty(l,"ref",{enumerable:!1,value:null}),l._store={},Object.defineProperty(l._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(l,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(l,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:ne}),Object.defineProperty(l,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:le}),Object.freeze&&(Object.freeze(l.props),Object.freeze(l)),l}function x(l,m,E,U,ne,le){var B=m.children;if(B!==void 0)if(U)if(P(B)){for(U=0;U<B.length;U++)y(B[U]);Object.freeze&&Object.freeze(B)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else y(B);if(G.call(m,"key")){B=t(l);var de=Object.keys(m).filter(function(A){return A!=="key"});U=0<de.length?"{key: someKey, "+de.join(": ..., ")+": ...}":"{key: someKey}",J[B+U]||(de=0<de.length?"{"+de.join(": ..., ")+": ...}":"{}",console.error(`A props object containing a "key" prop is being spread into JSX:
23
23
  let props = %s;
24
24
  <%s {...props} />
25
25
  React keys must be passed directly to JSX without using spread:
26
26
  let props = %s;
27
- <%s key={someKey} {...props} />`,U,B,de,B),J[B+U]=!0)}if(B=null,k!==void 0&&(n(k),B=""+k),a(m)&&(n(m.key),B=""+m.key),"key"in m){k={};for(var je in m)je!=="key"&&(k[je]=m[je])}else k=m;return B&&d(k,typeof l=="function"?l.displayName||l.name||"Unknown":l),f(l,B,k,i(),ne,le)}function y(l){E(l)?l._store&&(l._store.validated=1):typeof l=="object"&&l!==null&&l.$$typeof===R&&(l._payload.status==="fulfilled"?E(l._payload.value)&&l._payload.value._store&&(l._payload.value._store.validated=1):l._store&&(l._store.validated=1))}function E(l){return typeof l=="object"&&l!==null&&l.$$typeof===u}var C=S,u=Symbol.for("react.transitional.element"),w=Symbol.for("react.portal"),h=Symbol.for("react.fragment"),O=Symbol.for("react.strict_mode"),T=Symbol.for("react.profiler"),g=Symbol.for("react.consumer"),z=Symbol.for("react.context"),D=Symbol.for("react.forward_ref"),b=Symbol.for("react.suspense"),j=Symbol.for("react.suspense_list"),q=Symbol.for("react.memo"),R=Symbol.for("react.lazy"),X=Symbol.for("react.activity"),W=Symbol.for("react.client.reference"),I=C.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,G=Object.prototype.hasOwnProperty,P=Array.isArray,_=console.createTask?console.createTask:function(){return null};C={react_stack_bottom_frame:function(l){return l()}};var M,K={},H=C.react_stack_bottom_frame.bind(C,o)(),L=_(s(o)),J={};Ie.Fragment=h,Ie.jsx=function(l,m,k){var U=1e4>I.recentlyCreatedOwnerStacks++;return x(l,m,k,!1,U?Error("react-stack-top-frame"):H,U?_(s(l)):L)},Ie.jsxs=function(l,m,k){var U=1e4>I.recentlyCreatedOwnerStacks++;return x(l,m,k,!0,U?Error("react-stack-top-frame"):H,U?_(s(l)):L)}})()),Ie}var Kt;function On(){return Kt||(Kt=1,process.env.NODE_ENV==="production"?qe.exports=Pn():qe.exports=In()),qe.exports}var r=On();/**
27
+ <%s key={someKey} {...props} />`,U,B,de,B),J[B+U]=!0)}if(B=null,E!==void 0&&(n(E),B=""+E),a(m)&&(n(m.key),B=""+m.key),"key"in m){E={};for(var je in m)je!=="key"&&(E[je]=m[je])}else E=m;return B&&d(E,typeof l=="function"?l.displayName||l.name||"Unknown":l),f(l,B,E,i(),ne,le)}function y(l){k(l)?l._store&&(l._store.validated=1):typeof l=="object"&&l!==null&&l.$$typeof===O&&(l._payload.status==="fulfilled"?k(l._payload.value)&&l._payload.value._store&&(l._payload.value._store.validated=1):l._store&&(l._store.validated=1))}function k(l){return typeof l=="object"&&l!==null&&l.$$typeof===u}var C=S,u=Symbol.for("react.transitional.element"),w=Symbol.for("react.portal"),h=Symbol.for("react.fragment"),R=Symbol.for("react.strict_mode"),T=Symbol.for("react.profiler"),g=Symbol.for("react.consumer"),z=Symbol.for("react.context"),D=Symbol.for("react.forward_ref"),b=Symbol.for("react.suspense"),j=Symbol.for("react.suspense_list"),q=Symbol.for("react.memo"),O=Symbol.for("react.lazy"),X=Symbol.for("react.activity"),W=Symbol.for("react.client.reference"),I=C.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,G=Object.prototype.hasOwnProperty,P=Array.isArray,_=console.createTask?console.createTask:function(){return null};C={react_stack_bottom_frame:function(l){return l()}};var M,K={},H=C.react_stack_bottom_frame.bind(C,o)(),L=_(s(o)),J={};Ie.Fragment=h,Ie.jsx=function(l,m,E){var U=1e4>I.recentlyCreatedOwnerStacks++;return x(l,m,E,!1,U?Error("react-stack-top-frame"):H,U?_(s(l)):L)},Ie.jsxs=function(l,m,E){var U=1e4>I.recentlyCreatedOwnerStacks++;return x(l,m,E,!0,U?Error("react-stack-top-frame"):H,U?_(s(l)):L)}})()),Ie}var Kt;function Rn(){return Kt||(Kt=1,process.env.NODE_ENV==="production"?qe.exports=Pn():qe.exports=In()),qe.exports}var r=Rn();/**
28
28
  * @license lucide-react v0.544.0 - ISC
29
29
  *
30
30
  * This source code is licensed under the ISC license.
31
31
  * See the LICENSE file in the root directory of this source tree.
32
- */const Rn=t=>t.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),_n=t=>t.replace(/^([A-Z])|[\s-_]+(\w)/g,(e,n,s)=>s?s.toUpperCase():n.toLowerCase()),Gt=t=>{const e=_n(t);return e.charAt(0).toUpperCase()+e.slice(1)},Xt=(...t)=>t.filter((e,n,s)=>!!e&&e.trim()!==""&&s.indexOf(e)===n).join(" ").trim(),zn=t=>{for(const e in t)if(e.startsWith("aria-")||e==="role"||e==="title")return!0};/**
32
+ */const On=t=>t.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),_n=t=>t.replace(/^([A-Z])|[\s-_]+(\w)/g,(e,n,s)=>s?s.toUpperCase():n.toLowerCase()),Gt=t=>{const e=_n(t);return e.charAt(0).toUpperCase()+e.slice(1)},Xt=(...t)=>t.filter((e,n,s)=>!!e&&e.trim()!==""&&s.indexOf(e)===n).join(" ").trim(),zn=t=>{for(const e in t)if(e.startsWith("aria-")||e==="role"||e==="title")return!0};/**
33
33
  * @license lucide-react v0.544.0 - ISC
34
34
  *
35
35
  * This source code is licensed under the ISC license.
@@ -44,7 +44,7 @@ React keys must be passed directly to JSX without using spread:
44
44
  *
45
45
  * This source code is licensed under the ISC license.
46
46
  * See the LICENSE file in the root directory of this source tree.
47
- */const F=(t,e)=>{const n=S.forwardRef(({className:s,...i},o)=>S.createElement($n,{ref:o,iconNode:e,className:Xt(`lucide-${Rn(Gt(t))}`,`lucide-${t}`,s),...i}));return n.displayName=Gt(t),n};/**
47
+ */const F=(t,e)=>{const n=S.forwardRef(({className:s,...i},o)=>S.createElement($n,{ref:o,iconNode:e,className:Xt(`lucide-${On(Gt(t))}`,`lucide-${t}`,s),...i}));return n.displayName=Gt(t),n};/**
48
48
  * @license lucide-react v0.544.0 - ISC
49
49
  *
50
50
  * This source code is licensed under the ISC license.
@@ -204,12 +204,12 @@ React keys must be passed directly to JSX without using spread:
204
204
  *
205
205
  * This source code is licensed under the ISC license.
206
206
  * See the LICENSE file in the root directory of this source tree.
207
- */const Oe=F("x",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]),rr=S.createContext(null),Kn=({authix:t,children:e})=>r.jsx(rr.Provider,{value:t,children:e}),me=()=>{const t=S.useContext(rr);if(!t)throw new Error("useAuthix must be used inside <AuthixProvider />");return t},Gn=({logoUrl:t,logoLinkUrl:e,title:n="Create Your Account",subtitle:s="Join our platform today",primaryColor:i="#00C214",gradient:o="linear-gradient(135deg, #22c55e, #00C214)",darkMode:a=!0,showAvatar:d=!1,roles:c=[],showRoleSelector:f=!1,loginUrl:x,onSuccess:y,onError:E})=>{const C=me(),u={name:"",email:"",password:"",role:c.length?c[0]:"user",...d&&{avatarUrl:""}},[w,h]=S.useState(u),[O,T]=S.useState(!1),[g,z]=S.useState(!1),[D,b]=S.useState(null),[j,q]=S.useState({}),[R,X]=S.useState(!1),W=a?"#ffffff":"#111827",I=a?"#a1a1aa":"#6b7280",G=a?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.02)",P=a?"rgba(255,255,255,0.1)":"rgba(0,0,0,0.1)";S.useEffect(()=>{if(typeof window<"u"){const L=()=>X(window.innerWidth<768);return L(),window.addEventListener("resize",L),()=>window.removeEventListener("resize",L)}},[]);const _=L=>{const{name:J,value:l}=L.target;h(m=>({...m,[J]:l})),j[J]&&q(m=>({...m,[J]:void 0}))},M=()=>{const L={};return w.name.trim()||(L.name="Name is required"),w.email.trim()?/\S+@\S+\.\S+/.test(w.email)||(L.email="Invalid email address"):L.email="Email is required",w.password?w.password.length<6&&(L.password="Password must be at least 6 characters"):L.password="Password is required",q(L),Object.keys(L).length===0},K=async L=>{if(L.preventDefault(),!!M()){z(!0),b(null);try{const J={name:w.name,email:w.email,password:w.password,role:w.role,...w.avatarUrl?{avatarUrl:w.avatarUrl}:{}},l=await C.signupUser(J);l.success?(b({type:"success",text:l.message||"Account created successfully!"}),y?.(l.user)):(b({type:"error",text:l.message||"Signup failed"}),E?.(l))}catch(J){b({type:"error",text:J.message||"Signup failed. Please try again."}),E?.(J)}finally{z(!1)}}},H={width:"100%",padding:R?"10px 14px 10px 44px":"10px 16px 10px 44px",backgroundColor:G,border:`1px solid ${P}`,borderRadius:"10px",color:W,fontSize:"15px",outline:"none",transition:"all 0.2s ease",boxSizing:"border-box"};return r.jsxs("div",{style:{display:"flex",justifyContent:"center",alignItems:"center"},children:[r.jsxs("div",{style:{minWidth:R?"320px":"380px",width:"100%",maxWidth:R?"340px":"390px",display:"flex",flexDirection:"column",borderRadius:"10px",fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",backgroundColor:a?"#000000":"#ffffff",padding:R?"30px 24px":"20px 28px"},children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",marginBottom:"10px"},children:[t?r.jsx("a",{href:e||"/",target:"_self",rel:"noopener noreferrer",children:r.jsx("img",{src:t,alt:"Logo",style:{height:"50px",width:"50px",marginBottom:"10px"}})}):r.jsx(Se,{size:40,color:i,style:{marginBottom:"10px"}}),r.jsx("h2",{style:{fontSize:"24px",fontWeight:700,color:W,margin:0},children:n}),r.jsx("p",{style:{fontSize:"14px",color:I},children:s})]}),d&&w.avatarUrl&&r.jsx("div",{style:{display:"flex",justifyContent:"center",marginBottom:"16px"},children:r.jsx("img",{src:w.avatarUrl,alt:"Avatar Preview",style:{width:"60px",height:"60px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${i}30`},onError:L=>{const J=L.target;J.style.display="none"}})}),r.jsxs("form",{onSubmit:K,style:{display:"flex",flexDirection:"column",gap:"14px"},children:[f&&c&&c.length===2&&r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{style:{fontSize:"14px",fontWeight:500,color:W},children:"Select Role"}),r.jsxs("div",{style:{position:"relative",display:"flex",borderRadius:"10px",border:`1px solid ${P}`,backgroundColor:G,overflow:"hidden",cursor:"pointer",height:"42px"},children:[r.jsx("div",{style:{position:"absolute",top:0,left:0,width:"50%",height:"100%",backgroundColor:a?"#000000":"#ffffff",boxShadow:a?"0 1px 3px rgba(255,255,255,0.05)":"0 1px 3px rgba(0,0,0,0.1)",borderRadius:"10px",transition:"transform 0.3s ease, background-color 0.3s ease",transform:w.role===c[1]?"translateX(100%)":"translateX(0)",zIndex:0}}),r.jsx("button",{type:"button",onClick:()=>h(L=>({...L,role:c[0]})),style:{flex:1,zIndex:10,border:"none",background:"transparent",color:w.role===c[0]?i:a?"#9ca3af":"#6b7280",fontWeight:w.role===c[0]?600:500,fontSize:"14px",display:"flex",alignItems:"center",justifyContent:"center",transition:"color 0.2s ease"},children:c[0].charAt(0).toUpperCase()+c[0].slice(1)}),r.jsx("button",{type:"button",onClick:()=>h(L=>({...L,role:c[1]})),style:{flex:1,zIndex:10,border:"none",background:"transparent",color:w.role===c[1]?i:a?"#9ca3af":"#6b7280",fontWeight:w.role===c[1]?600:500,fontSize:"14px",display:"flex",alignItems:"center",justifyContent:"center",transition:"color 0.2s ease"},children:c[1].charAt(0).toUpperCase()+c[1].slice(1)})]})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"signup-name",style:{fontSize:"14px",fontWeight:500,color:W},children:"Full Name"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(Se,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:I}}),r.jsx("input",{id:"signup-name",type:"text",name:"name",placeholder:"Enter your full name",value:w.name,onChange:_,style:{...H,borderColor:j.name?"#ef4444":P}})]}),j.name&&r.jsx("span",{style:{color:"#ef4444",fontSize:"12px",marginTop:"2px"},children:j.name})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"signup-email",style:{fontSize:"14px",fontWeight:500,color:W},children:"Email Address"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(pe,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:I}}),r.jsx("input",{id:"signup-email",type:"email",name:"email",placeholder:"Enter your email address",value:w.email,onChange:_,style:{...H,borderColor:j.email?"#ef4444":P}})]}),j.email&&r.jsx("span",{style:{color:"#ef4444",fontSize:"12px",marginTop:"2px"},children:j.email})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"signup-password",style:{fontSize:"14px",fontWeight:500,color:W},children:"Password"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(we,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:I}}),r.jsx("input",{id:"signup-password",type:O?"text":"password",name:"password",placeholder:"Create a secure password",value:w.password,onChange:_,style:{...H,borderColor:j.password?"#ef4444":P}}),r.jsx("button",{type:"button",onClick:()=>T(!O),style:{position:"absolute",right:"14px",top:"50%",transform:"translateY(-50%)",background:"transparent",border:"none",color:I,cursor:"pointer",padding:"4px"},children:O?r.jsx(rt,{size:20}):r.jsx(nt,{size:20})})]}),j.password&&r.jsx("span",{style:{color:"#ef4444",fontSize:"12px",marginTop:"2px"},children:j.password})]}),d&&r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"signup-avatar",style:{fontSize:"14px",fontWeight:500,color:W},children:"Avatar URL (Optional)"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(Zt,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:I}}),r.jsx("input",{id:"signup-avatar",type:"url",name:"avatarUrl",placeholder:"Paste your avatar image URL",value:w.avatarUrl||"",onChange:_,style:H})]})]}),x&&r.jsx("div",{style:{display:"flex",justifyContent:"space-between",fontSize:"13px"},children:r.jsx("a",{href:x,style:{color:i,textDecoration:"none",fontWeight:500},children:"Already have an account?"})}),D&&r.jsxs("div",{style:{padding:"12px",borderRadius:"12px",fontSize:"12px",display:"flex",alignItems:"start",gap:"10px",backgroundColor:D.type==="success"?`${i}15`:"rgba(239,68,68,0.1)",border:D.type==="success"?`1px solid ${i}30`:"1px solid rgba(239,68,68,0.3)",color:D.type==="success"?i:"#ef4444"},children:[D.type==="success"?r.jsx(ce,{size:20}):r.jsx(oe,{size:20}),r.jsx("span",{children:D.text})]}),r.jsx("button",{type:"submit",disabled:g,style:{padding:"12px",background:o,color:"#fff",border:"none",borderRadius:"10px",fontSize:"14px",fontWeight:600,cursor:g?"not-allowed":"pointer",opacity:g?.7:1,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px"},children:g?r.jsxs(r.Fragment,{children:[r.jsx(Mn,{size:18,style:{animation:"spin 1s linear infinite"}}),"Creating Account..."]}):"Create Account"})]}),r.jsxs("div",{style:{textAlign:"center",fontSize:"12px",color:I,marginTop:"16px",padding:"0 4px"},children:["Secure authentication powered by"," ",r.jsx("span",{style:{color:i,fontWeight:600},children:"Neuctra Authix"})]})]}),r.jsx("style",{children:`
207
+ */const Re=F("x",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]),rr=S.createContext(null),Kn=({authix:t,children:e})=>r.jsx(rr.Provider,{value:t,children:e}),me=()=>{const t=S.useContext(rr);if(!t)throw new Error("useAuthix must be used inside <AuthixProvider />");return t},Gn=({logoUrl:t,logoLinkUrl:e,title:n="Create Your Account",subtitle:s="Join our platform today",primaryColor:i="#00C214",gradient:o="linear-gradient(135deg, #22c55e, #00C214)",darkMode:a=!0,showAvatar:d=!1,roles:c=[],showRoleSelector:f=!1,loginUrl:x,onSuccess:y,onError:k})=>{const C=me(),u={name:"",email:"",password:"",role:c.length?c[0]:"user",...d&&{avatarUrl:""}},[w,h]=S.useState(u),[R,T]=S.useState(!1),[g,z]=S.useState(!1),[D,b]=S.useState(null),[j,q]=S.useState({}),[O,X]=S.useState(!1),W=a?"#ffffff":"#111827",I=a?"#a1a1aa":"#6b7280",G=a?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.02)",P=a?"rgba(255,255,255,0.1)":"rgba(0,0,0,0.1)";S.useEffect(()=>{if(typeof window<"u"){const L=()=>X(window.innerWidth<768);return L(),window.addEventListener("resize",L),()=>window.removeEventListener("resize",L)}},[]);const _=L=>{const{name:J,value:l}=L.target;h(m=>({...m,[J]:l})),j[J]&&q(m=>({...m,[J]:void 0}))},M=()=>{const L={};return w.name.trim()||(L.name="Name is required"),w.email.trim()?/\S+@\S+\.\S+/.test(w.email)||(L.email="Invalid email address"):L.email="Email is required",w.password?w.password.length<6&&(L.password="Password must be at least 6 characters"):L.password="Password is required",q(L),Object.keys(L).length===0},K=async L=>{if(L.preventDefault(),!!M()){z(!0),b(null);try{const J={name:w.name,email:w.email,password:w.password,role:w.role,...w.avatarUrl?{avatarUrl:w.avatarUrl}:{}},l=await C.signupUser(J);l.success?(b({type:"success",text:l.message||"Account created successfully!"}),y?.(l.user)):(b({type:"error",text:l.message||"Signup failed"}),k?.(l))}catch(J){b({type:"error",text:J.message||"Signup failed. Please try again."}),k?.(J)}finally{z(!1)}}},H={width:"100%",padding:O?"10px 14px 10px 44px":"10px 16px 10px 44px",backgroundColor:G,border:`1px solid ${P}`,borderRadius:"10px",color:W,fontSize:"15px",outline:"none",transition:"all 0.2s ease",boxSizing:"border-box"};return r.jsxs("div",{style:{display:"flex",justifyContent:"center",alignItems:"center"},children:[r.jsxs("div",{style:{minWidth:O?"320px":"380px",width:"100%",maxWidth:O?"340px":"390px",display:"flex",flexDirection:"column",borderRadius:"10px",fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",backgroundColor:a?"#000000":"#ffffff",padding:O?"30px 24px":"20px 28px"},children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",marginBottom:"10px"},children:[t?r.jsx("a",{href:e||"/",target:"_self",rel:"noopener noreferrer",children:r.jsx("img",{src:t,alt:"Logo",style:{height:"50px",width:"50px",marginBottom:"10px"}})}):r.jsx(Se,{size:40,color:i,style:{marginBottom:"10px"}}),r.jsx("h2",{style:{fontSize:"24px",fontWeight:700,color:W,margin:0},children:n}),r.jsx("p",{style:{fontSize:"14px",color:I},children:s})]}),d&&w.avatarUrl&&r.jsx("div",{style:{display:"flex",justifyContent:"center",marginBottom:"16px"},children:r.jsx("img",{src:w.avatarUrl,alt:"Avatar Preview",style:{width:"60px",height:"60px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${i}30`},onError:L=>{const J=L.target;J.style.display="none"}})}),r.jsxs("form",{onSubmit:K,style:{display:"flex",flexDirection:"column",gap:"14px"},children:[f&&c&&c.length===2&&r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{style:{fontSize:"14px",fontWeight:500,color:W},children:"Select Role"}),r.jsxs("div",{style:{position:"relative",display:"flex",borderRadius:"10px",border:`1px solid ${P}`,backgroundColor:G,overflow:"hidden",cursor:"pointer",height:"42px"},children:[r.jsx("div",{style:{position:"absolute",top:0,left:0,width:"50%",height:"100%",backgroundColor:a?"#000000":"#ffffff",boxShadow:a?"0 1px 3px rgba(255,255,255,0.05)":"0 1px 3px rgba(0,0,0,0.1)",borderRadius:"10px",transition:"transform 0.3s ease, background-color 0.3s ease",transform:w.role===c[1]?"translateX(100%)":"translateX(0)",zIndex:0}}),r.jsx("button",{type:"button",onClick:()=>h(L=>({...L,role:c[0]})),style:{flex:1,zIndex:10,border:"none",background:"transparent",color:w.role===c[0]?i:a?"#9ca3af":"#6b7280",fontWeight:w.role===c[0]?600:500,fontSize:"14px",display:"flex",alignItems:"center",justifyContent:"center",transition:"color 0.2s ease"},children:c[0].charAt(0).toUpperCase()+c[0].slice(1)}),r.jsx("button",{type:"button",onClick:()=>h(L=>({...L,role:c[1]})),style:{flex:1,zIndex:10,border:"none",background:"transparent",color:w.role===c[1]?i:a?"#9ca3af":"#6b7280",fontWeight:w.role===c[1]?600:500,fontSize:"14px",display:"flex",alignItems:"center",justifyContent:"center",transition:"color 0.2s ease"},children:c[1].charAt(0).toUpperCase()+c[1].slice(1)})]})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"signup-name",style:{fontSize:"14px",fontWeight:500,color:W},children:"Full Name"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(Se,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:I}}),r.jsx("input",{id:"signup-name",type:"text",name:"name",placeholder:"Enter your full name",value:w.name,onChange:_,style:{...H,borderColor:j.name?"#ef4444":P}})]}),j.name&&r.jsx("span",{style:{color:"#ef4444",fontSize:"12px",marginTop:"2px"},children:j.name})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"signup-email",style:{fontSize:"14px",fontWeight:500,color:W},children:"Email Address"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(pe,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:I}}),r.jsx("input",{id:"signup-email",type:"email",name:"email",placeholder:"Enter your email address",value:w.email,onChange:_,style:{...H,borderColor:j.email?"#ef4444":P}})]}),j.email&&r.jsx("span",{style:{color:"#ef4444",fontSize:"12px",marginTop:"2px"},children:j.email})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"signup-password",style:{fontSize:"14px",fontWeight:500,color:W},children:"Password"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(we,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:I}}),r.jsx("input",{id:"signup-password",type:R?"text":"password",name:"password",placeholder:"Create a secure password",value:w.password,onChange:_,style:{...H,borderColor:j.password?"#ef4444":P}}),r.jsx("button",{type:"button",onClick:()=>T(!R),style:{position:"absolute",right:"14px",top:"50%",transform:"translateY(-50%)",background:"transparent",border:"none",color:I,cursor:"pointer",padding:"4px"},children:R?r.jsx(rt,{size:20}):r.jsx(nt,{size:20})})]}),j.password&&r.jsx("span",{style:{color:"#ef4444",fontSize:"12px",marginTop:"2px"},children:j.password})]}),d&&r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"signup-avatar",style:{fontSize:"14px",fontWeight:500,color:W},children:"Avatar URL (Optional)"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(Zt,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:I}}),r.jsx("input",{id:"signup-avatar",type:"url",name:"avatarUrl",placeholder:"Paste your avatar image URL",value:w.avatarUrl||"",onChange:_,style:H})]})]}),x&&r.jsx("div",{style:{display:"flex",justifyContent:"space-between",fontSize:"13px"},children:r.jsx("a",{href:x,style:{color:i,textDecoration:"none",fontWeight:500},children:"Already have an account?"})}),D&&r.jsxs("div",{style:{padding:"12px",borderRadius:"12px",fontSize:"12px",display:"flex",alignItems:"start",gap:"10px",backgroundColor:D.type==="success"?`${i}15`:"rgba(239,68,68,0.1)",border:D.type==="success"?`1px solid ${i}30`:"1px solid rgba(239,68,68,0.3)",color:D.type==="success"?i:"#ef4444"},children:[D.type==="success"?r.jsx(ce,{size:20}):r.jsx(oe,{size:20}),r.jsx("span",{children:D.text})]}),r.jsx("button",{type:"submit",disabled:g,style:{padding:"12px",background:o,color:"#fff",border:"none",borderRadius:"10px",fontSize:"14px",fontWeight:600,cursor:g?"not-allowed":"pointer",opacity:g?.7:1,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px"},children:g?r.jsxs(r.Fragment,{children:[r.jsx(Mn,{size:18,style:{animation:"spin 1s linear infinite"}}),"Creating Account..."]}):"Create Account"})]}),r.jsxs("div",{style:{textAlign:"center",fontSize:"12px",color:I,marginTop:"16px",padding:"0 4px"},children:["Secure authentication powered by"," ",r.jsx("span",{style:{color:i,fontWeight:600},children:"Neuctra Authix"})]})]}),r.jsx("style",{children:`
208
208
  @keyframes spin {
209
209
  from { transform: rotate(0deg); }
210
210
  to { transform: rotate(360deg); }
211
211
  }
212
- `})]})},Xn=({logoUrl:t,logoLinkUrl:e,title:n="Sign In to Your Account",subtitle:s="Welcome back! Please enter your details",primaryColor:i="#00C214",gradient:o="linear-gradient(135deg, #22c55e, #00C214)",darkMode:a=!0,signupUrl:d,onSuccess:c,onError:f})=>{const x=me(),[y,E]=S.useState("login"),[C,u]=S.useState(1),[w,h]=S.useState(!1),[O,T]=S.useState(!1),[g,z]=S.useState(null),[D,b]=S.useState(""),[j,q]=S.useState(""),[R,X]=S.useState({email:"",otp:"",newPassword:""}),[W,I]=S.useState(!1),G=a?"#ffffff":"#111827",P=a?"#a1a1aa":"#6b7280",_=a?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.02)",M=a?"rgba(255,255,255,0.1)":"rgba(0,0,0,0.1)";S.useEffect(()=>{if(typeof window<"u"){const m=()=>I(window.innerWidth<768);return m(),window.addEventListener("resize",m),()=>window.removeEventListener("resize",m)}},[]);const K=async m=>{m.preventDefault(),T(!0),z(null);try{const k=await x.loginUser({email:D,password:j}),{user:U}=k;if(!U)throw new Error(k.message||"Login failed");if(typeof document<"u"){const ne="a_s_b",le="true",B=new Date;B.setTime(B.getTime()+1440*60*1e3),document.cookie=`${ne}=${le}; path=/; expires=${B.toUTCString()}; SameSite=Lax`}z({type:"success",text:`Welcome ${U.name}`}),c?.(U),typeof window<"u"&&window.location.reload()}catch(k){const U=k.message||"Login failed";z({type:"error",text:U}),f?.(k)}finally{T(!1)}},H=m=>{X({...R,[m.target.name]:m.target.value})},L=async m=>{m.preventDefault(),T(!0),z(null);try{const k=await x.requestResetUserPasswordOTP({email:R.email});k.success?(u(2),z({type:"success",text:k.message||"OTP sent to your email"})):z({type:"error",text:k.message||"Failed to send OTP"})}catch(k){z({type:"error",text:k.message||"Something went wrong"})}finally{T(!1)}},J=async m=>{m.preventDefault(),T(!0),z(null);try{const k=await x.resetUserPassword({email:R.email,otp:R.otp,newPassword:R.newPassword});k.success?(z({type:"success",text:k.message||"Password reset successfully!"}),u(1),X({email:"",otp:"",newPassword:""}),E("login")):z({type:"error",text:k.message||"Reset failed"})}catch(k){z({type:"error",text:k.message||"Something went wrong"})}finally{T(!1)}},l={width:"100%",padding:W?"10px 14px 10px 44px":"10px 16px 10px 44px",backgroundColor:_,border:`1px solid ${M}`,borderRadius:"10px",color:G,fontSize:"15px",outline:"none",transition:"all 0.2s ease"};return r.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center"},children:r.jsxs("div",{style:{minWidth:W?"320px":"380px",maxWidth:W?"340px":"390px",width:"100%",display:"flex",flexDirection:"column",borderRadius:"10px",fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",backgroundColor:a?"#000000":"#ffffff",padding:W?"30px 24px":"18px 28px"},children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",marginBottom:"10px"},children:[t?r.jsx("a",{href:e||"/",target:"_self",rel:"noopener noreferrer",children:r.jsx("img",{src:t,alt:"Logo",style:{height:"50px",width:"50px",marginBottom:"10px"}})}):r.jsx(Se,{size:40,color:i,style:{marginBottom:"10px"}}),r.jsx("h2",{style:{fontSize:"24px",fontWeight:700,color:G,margin:0},children:y==="login"?n:C===1?"Forgot Password":"Reset Password"}),r.jsx("p",{style:{fontSize:"14px",color:P},children:y==="login"?s:"Follow the steps to reset your password"})]}),y==="login"&&r.jsxs("form",{onSubmit:K,style:{display:"flex",flexDirection:"column",gap:"14px"},children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"login-email",style:{fontSize:"14px",fontWeight:500,color:a?"#ffffff":"#000000"},children:"Email Address"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(pe,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:P}}),r.jsx("input",{id:"login-email",type:"email",placeholder:"Enter your email",value:D,onChange:m=>b(m.target.value),style:l})]})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"login-password",style:{fontSize:"14px",fontWeight:500,color:a?"#ffffff":"#000000"},children:"Password"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(we,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:P}}),r.jsx("input",{id:"login-password",type:w?"text":"password",placeholder:"Enter your password",value:j,onChange:m=>q(m.target.value),style:l}),r.jsx("button",{type:"button",onClick:()=>h(!w),style:{position:"absolute",right:"14px",padding:"4px",top:"50%",transform:"translateY(-50%)",background:"transparent",border:"none",color:P,cursor:"pointer"},children:w?r.jsx(rt,{size:20}):r.jsx(nt,{size:20})})]})]}),r.jsxs("div",{style:{display:"flex",justifyContent:"space-between",fontSize:"13px"},children:[d&&r.jsx("a",{href:d,style:{color:i,textDecoration:"none",fontWeight:500},children:"Create new account"}),r.jsx("button",{type:"button",onClick:()=>E("forgot"),style:{background:"none",border:"none",color:i,fontWeight:500,cursor:"pointer"},children:"Forgot password?"})]}),r.jsx("button",{type:"submit",disabled:O,style:{padding:"12px",background:o,color:"#fff",border:"none",borderRadius:"10px",fontSize:"14px",fontWeight:600},children:O?"Signing In...":"Sign In"})]}),y==="forgot"&&r.jsxs("form",{onSubmit:C===1?L:J,style:{display:"flex",flexDirection:"column",gap:"14px"},children:[C===1?r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"forgot-email",style:{fontSize:"14px",fontWeight:500,color:a?"#ffffff":"#000000"},children:"Email Address"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(pe,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:P}}),r.jsx("input",{id:"forgot-email",type:"email",name:"email",placeholder:"Enter your email",value:R.email,onChange:H,style:l})]})]}):r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"6px"},children:[r.jsx("label",{htmlFor:"otp",style:{fontSize:"14px",fontWeight:500,color:a?"#ffffff":"#000000"},children:"One-Time Password (OTP)"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(Qt,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:P}}),r.jsx("input",{id:"otp",type:"text",name:"otp",placeholder:"Enter OTP",value:R.otp,onChange:H,style:l})]})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"6px"},children:[r.jsx("label",{htmlFor:"newPassword",style:{fontSize:"14px",fontWeight:500,color:a?"#ffffff":"#000000"},children:"New Password"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(we,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:P}}),r.jsx("input",{id:"newPassword",type:"password",name:"newPassword",placeholder:"Enter new password",value:R.newPassword,onChange:H,style:l})]})]})]}),r.jsx("button",{type:"submit",disabled:O,style:{padding:"12px",background:o,color:"#fff",border:"none",fontSize:"14px",borderRadius:"10px",fontWeight:600},children:O?"Please wait...":C===1?"Send Reset OTP":"Reset Password"}),r.jsx("button",{type:"button",onClick:()=>{E("login"),u(1)},style:{background:"none",border:"none",fontSize:"14px",color:P,marginTop:"6px",cursor:"pointer"},children:"Back to Login"})]}),g&&r.jsxs("div",{style:{marginTop:"16px",padding:"12px",borderRadius:"12px",fontSize:"14px",display:"flex",alignItems:"center",gap:"10px",backgroundColor:g.type==="success"?`${i}15`:"rgba(239,68,68,0.1)",border:g.type==="success"?`1px solid ${i}30`:"1px solid rgba(239,68,68,0.3)",color:g.type==="success"?i:"#ef4444"},children:[g.type==="success"?r.jsx(ce,{size:20}):r.jsx(oe,{size:20}),r.jsx("span",{children:g.text})]}),r.jsxs("div",{style:{textAlign:"center",fontSize:"12px",color:P,marginTop:"16px",padding:"0 4px"},children:["Secure authentication powered by"," ",r.jsx("span",{style:{color:i,fontWeight:600},children:"Neuctra Authix"})]})]})})},Zn=({children:t,fallback:e=null})=>{const[n,s]=S.useState("loading");S.useEffect(()=>{const d=document.cookie.split(";").map(c=>c.trim()).find(c=>c.startsWith("a_s_b="))?.split("=")[1]==="true";s(d?"authenticated":"unauthenticated")},[]);const i=o=>typeof o=="function"?o():o;return n==="loading"?null:n==="unauthenticated"?i(e)??null:r.jsx(r.Fragment,{children:t})},Qn=({children:t,fallback:e=null})=>{const[n,s]=S.useState("loading");S.useEffect(()=>{const d=document.cookie.split(";").map(c=>c.trim()).find(c=>c.startsWith("a_s_b="))?.split("=")[1]==="true";s(d?"authenticated":"unauthenticated")},[]);const i=o=>typeof o=="function"?o():o;return n==="loading"?null:n==="authenticated"?i(e)??null:r.jsx(r.Fragment,{children:t})},es=({isOpen:t,onClose:e,onSuccess:n,onError:s,userId:i,colors:o})=>{const a=me(),[d,c]=S.useState(!1),[f,x]=S.useState(""),[y,E]=S.useState("warning"),[C,u]=S.useState(!1);if(S.useEffect(()=>{if(typeof window>"u")return;const g=()=>{u(window.innerWidth<640)};return g(),window.addEventListener("resize",g),()=>window.removeEventListener("resize",g)},[]),!t)return null;const w=async()=>{c(!0),E("processing");try{const g=await a.deleteUser({userId:i});g.success?(n(g.message||"Account deleted successfully"),E("success"),setTimeout(()=>{localStorage.removeItem("userInfo"),localStorage.removeItem("userToken"),window.location.href="/"},2e3)):(s(g.message||"Failed to delete account"),E("warning"))}catch(g){s(g.response?.data?.message||"Something went wrong"),E("warning")}finally{c(!1)}},h=f.toLowerCase()==="delete my account",O=g=>{g.target===g.currentTarget&&y!=="processing"&&y!=="success"&&e()},T=()=>{switch(y){case"warning":return r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",justifyContent:"space-between",marginBottom:"24px",gap:"16px"},children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",flex:1},children:[r.jsx("div",{style:{width:"40px",height:"40px",borderRadius:"12px",background:"linear-gradient(135deg, #ef4444, #dc2626)",display:"flex",alignItems:"center",justifyContent:"center",color:"white",flexShrink:0},children:r.jsx(Me,{size:20})}),r.jsx("div",{children:r.jsx("h3",{style:{color:o.textPrimary,margin:0,fontSize:"20px",fontWeight:700,lineHeight:"1.3"},children:"Delete Account"})})]}),r.jsx("button",{onClick:e,"aria-label":"Close modal",style:{background:"transparent",border:"none",color:o.textTertiary,cursor:"pointer",padding:"8px",borderRadius:"8px",width:"36px",height:"36px",display:"flex",alignItems:"center",justifyContent:"center",flexShrink:0,transition:"all 0.2s ease"},onMouseOver:g=>{g.currentTarget.style.backgroundColor=o.border,g.currentTarget.style.color=o.textPrimary},onMouseOut:g=>{g.currentTarget.style.backgroundColor="transparent",g.currentTarget.style.color=o.textTertiary},children:r.jsx(Oe,{size:20})})]}),r.jsxs("div",{style:{display:"flex",gap:"16px",padding:"20px",background:`${o.error}15`,border:`1px solid ${o.error}30`,borderRadius:"12px",marginBottom:"20px"},children:[r.jsx("div",{style:{color:o.error,flexShrink:0,display:"flex",alignItems:"flex-start"},children:r.jsx(tr,{size:24})}),r.jsxs("div",{style:{flex:1},children:[r.jsx("h4",{style:{color:o.textPrimary,margin:"0 0 12px 0",fontSize:"16px",fontWeight:600},children:"Before you proceed..."}),r.jsx("div",{style:{display:"flex",flexDirection:"column",gap:"10px"},children:[{icon:r.jsx(Dn,{size:16}),text:"All your data will be permanently deleted"},{icon:r.jsx(Jn,{size:16}),text:"This action cannot be reversed"},{icon:r.jsx(it,{size:16}),text:"You will lose access to all services"}].map((g,z)=>r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"10px",fontSize:"14px",color:o.textSecondary},children:[r.jsx("div",{style:{color:o.error,flexShrink:0},children:g.icon}),r.jsx("span",{children:g.text})]},z))})]})]}),r.jsxs("div",{style:{display:"flex",gap:"12px",flexDirection:C?"column-reverse":"row",justifyContent:"flex-end",alignItems:"stretch"},children:[r.jsx("button",{onClick:e,style:{padding:"10px 24px",borderRadius:"10px",border:`1.5px solid ${o.border}`,background:"transparent",color:o.textPrimary,fontSize:"14px",fontWeight:500,cursor:"pointer",flex:C?"none":1,minWidth:C?"100%":"120px",transition:"all 0.2s ease"},onMouseOver:g=>{g.currentTarget.style.backgroundColor=o.border,g.currentTarget.style.transform="translateY(-1px)"},onMouseOut:g=>{g.currentTarget.style.backgroundColor="transparent",g.currentTarget.style.transform="translateY(0)"},children:"Cancel"}),r.jsxs("button",{onClick:()=>E("confirmation"),style:{padding:"10px 24px",borderRadius:"10px",border:"none",background:"linear-gradient(135deg, #ef4444, #dc2626)",color:"white",fontSize:"14px",fontWeight:600,cursor:"pointer",flex:C?"none":1,minWidth:C?"100%":"140px",display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",transition:"all 0.2s ease",boxShadow:"0 4px 12px rgba(239, 68, 68, 0.4)"},onMouseOver:g=>{g.currentTarget.style.transform="translateY(-1px)",g.currentTarget.style.boxShadow="0 6px 20px rgba(239, 68, 68, 0.5)"},onMouseOut:g=>{g.currentTarget.style.transform="translateY(0)",g.currentTarget.style.boxShadow="0 4px 12px rgba(239, 68, 68, 0.4)"},children:[r.jsx(Me,{size:16}),"Continue to Delete"]})]})]});case"confirmation":return r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",marginBottom:"24px"},children:[r.jsx("div",{style:{width:"40px",height:"40px",borderRadius:"12px",background:"linear-gradient(135deg, #f59e0b, #d97706)",display:"flex",alignItems:"center",justifyContent:"center",color:"white",flexShrink:0},children:r.jsx(tr,{size:24})}),r.jsx("div",{style:{flex:1},children:r.jsx("h3",{style:{color:o.textPrimary,margin:0,fontSize:"20px",fontWeight:700,lineHeight:"1.3"},children:"Confirm Deletion"})})]}),r.jsxs("div",{style:{marginBottom:"24px"},children:[r.jsxs("p",{style:{color:o.textSecondary,marginBottom:"16px",fontSize:"14px",lineHeight:"1.5"},children:["Type"," ",r.jsx("strong",{style:{color:o.textPrimary},children:'"delete my account"'})," ","to confirm:"]}),r.jsx("input",{type:"text",value:f,onChange:g=>x(g.target.value),placeholder:"delete my account",style:{width:"100%",padding:"14px 16px",borderRadius:"10px",border:`2px solid ${h?o.success:o.error}`,backgroundColor:"transparent",color:o.textPrimary,fontSize:"15px",outline:"none",transition:"all 0.2s ease",boxSizing:"border-box"},onFocus:g=>{g.target.style.boxShadow=`0 0 0 3px ${o.accent}20`},onBlur:g=>{g.target.style.boxShadow="none"},autoFocus:!0}),h&&r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"8px",marginTop:"10px",color:o.success,fontSize:"14px",fontWeight:500},children:[r.jsx(tt,{size:16}),r.jsx("span",{children:"Confirmation accepted"})]})]}),r.jsxs("div",{style:{display:"flex",gap:"12px",flexDirection:"column-reverse",justifyContent:"flex-end",alignItems:"stretch"},children:[r.jsx("button",{onClick:()=>{E("warning"),x("")},style:{padding:"10px 24px",borderRadius:"10px",border:`1.5px solid ${o.border}`,background:"transparent",color:o.textPrimary,fontSize:"14px",fontWeight:500,cursor:"pointer",flex:C?"none":1,minWidth:C?"100%":"120px",transition:"all 0.2s ease"},onMouseOver:g=>{g.currentTarget.style.backgroundColor=o.border,g.currentTarget.style.transform="translateY(-1px)"},onMouseOut:g=>{g.currentTarget.style.backgroundColor="transparent",g.currentTarget.style.transform="translateY(0)"},children:"Go Back"}),r.jsxs("button",{onClick:w,disabled:!h||d,style:{padding:"10px 24px",borderRadius:"10px",border:"none",background:"linear-gradient(135deg, #ef4444, #dc2626)",color:"white",fontSize:"14px",fontWeight:600,cursor:!h||d?"not-allowed":"pointer",flex:C?"none":1,minWidth:C?"100%":"140px",opacity:!h||d?.6:1,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",transition:"all 0.2s ease",boxShadow:!h||d?"none":"0 4px 12px rgba(239, 68, 68, 0.4)"},onMouseOver:g=>{h&&!d&&(g.currentTarget.style.transform="translateY(-1px)",g.currentTarget.style.boxShadow="0 6px 20px rgba(239, 68, 68, 0.5)")},onMouseOut:g=>{h&&!d&&(g.currentTarget.style.transform="translateY(0)",g.currentTarget.style.boxShadow="0 4px 12px rgba(239, 68, 68, 0.4)")},children:[r.jsx(Me,{size:16}),"Yes, Delete My Account"]})]})]});case"processing":return r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",marginBottom:"24px"},children:[r.jsx("div",{style:{width:"40px",height:"40px",borderRadius:"12px",background:"linear-gradient(135deg, #6b7280, #4b5563)",display:"flex",alignItems:"center",justifyContent:"center",color:"white",flexShrink:0},children:r.jsx(se,{size:20,style:{animation:"spin 1s linear infinite"}})}),r.jsxs("div",{style:{flex:1},children:[r.jsx("h3",{style:{color:o.textPrimary,margin:0,fontSize:"20px",fontWeight:700,lineHeight:"1.3"},children:"Deleting Account"}),r.jsx("p",{style:{color:o.textTertiary,margin:"4px 0 0 0",fontSize:"14px",lineHeight:"1.4"},children:"Please wait while we process your request"})]})]}),r.jsx("div",{style:{marginBottom:"20px"},children:r.jsx("div",{style:{display:"flex",flexDirection:"column",gap:"12px"},children:[{text:"Removing your data",active:!0},{text:"Closing active sessions",active:!1},{text:"Finalizing deletion",active:!1}].map((g,z)=>r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",padding:"12px",borderRadius:"8px",transition:"all 0.2s ease",backgroundColor:g.active?`${o.accent}10`:"transparent"},children:[r.jsx("div",{style:{width:"8px",height:"8px",borderRadius:"50%",backgroundColor:g.active?o.accent:o.textTertiary,transition:"all 0.3s ease",boxShadow:g.active?`0 0 0 4px ${o.accent}20`:"none"}}),r.jsx("span",{style:{fontSize:"14px",color:g.active?o.textPrimary:o.textSecondary,fontWeight:g.active?500:400},children:g.text})]},z))})}),r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"10px",padding:"16px",background:`${o.accent}10`,borderRadius:"10px",fontSize:"14px",color:o.textSecondary},children:[r.jsx(er,{size:18,style:{color:o.accent,flexShrink:0}}),r.jsx("span",{children:"You will be redirected to the login page shortly"})]})]});case"success":return r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",marginBottom:"24px"},children:[r.jsx("div",{style:{width:"40px",height:"40px",borderRadius:"12px",background:"linear-gradient(135deg, #10b981, #059669)",display:"flex",alignItems:"center",justifyContent:"center",color:"white",flexShrink:0},children:r.jsx(tt,{size:20})}),r.jsxs("div",{style:{flex:1},children:[r.jsx("h3",{style:{color:o.textPrimary,margin:0,fontSize:"20px",fontWeight:700,lineHeight:"1.3"},children:"Account Deleted"}),r.jsx("p",{style:{color:o.textTertiary,margin:"4px 0 0 0",fontSize:"14px",lineHeight:"1.4"},children:"Your account has been successfully deleted"})]})]}),r.jsxs("div",{style:{textAlign:"center",padding:"20px",background:`${o.success}10`,border:`1px solid ${o.success}20`,borderRadius:"12px",marginBottom:"24px"},children:[r.jsx(tt,{size:48,style:{color:o.success,marginBottom:"12px",display:"block",margin:"0 auto 12px auto"}}),r.jsx("p",{style:{color:o.textPrimary,fontSize:"16px",fontWeight:600,margin:"0 0 8px 0"},children:"Goodbye!"}),r.jsx("p",{style:{color:o.textSecondary,fontSize:"14px",margin:0,lineHeight:"1.5"},children:"Your account and all associated data have been permanently removed from our systems."})]}),r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"10px",padding:"16px",background:`${o.accent}10`,borderRadius:"10px",fontSize:"14px",color:o.textSecondary,justifyContent:"center"},children:[r.jsx(se,{size:16,style:{animation:"spin 1s linear infinite",color:o.accent}}),r.jsx("span",{children:"Redirecting to login page..."})]})]})}};return r.jsxs("div",{style:{position:"fixed",inset:0,background:"rgba(0,0,0,0.8)",backdropFilter:"blur(8px)",display:"flex",alignItems:"center",justifyContent:"center",padding:"16px",zIndex:1e4,animation:"fadeIn 0.3s ease-out"},onClick:O,children:[r.jsx("div",{style:{backgroundColor:o.surface,border:`1px solid ${o.border}`,borderRadius:"20px",width:"100%",maxWidth:"480px",padding:"24px",boxShadow:"0 32px 64px rgba(0,0,0,0.4)",animation:"scaleIn 0.3s ease-out"},className:"delete-modal-container",children:T()}),r.jsx("style",{children:`
212
+ `})]})},Xn=({logoUrl:t,logoLinkUrl:e,title:n="Sign In to Your Account",subtitle:s="Welcome back! Please enter your details",primaryColor:i="#00C214",gradient:o="linear-gradient(135deg, #22c55e, #00C214)",darkMode:a=!0,signupUrl:d,onSuccess:c,onError:f})=>{const x=me(),[y,k]=S.useState("login"),[C,u]=S.useState(1),[w,h]=S.useState(!1),[R,T]=S.useState(!1),[g,z]=S.useState(null),[D,b]=S.useState(""),[j,q]=S.useState(""),[O,X]=S.useState({email:"",otp:"",newPassword:""}),[W,I]=S.useState(!1),G=a?"#ffffff":"#111827",P=a?"#a1a1aa":"#6b7280",_=a?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.02)",M=a?"rgba(255,255,255,0.1)":"rgba(0,0,0,0.1)";S.useEffect(()=>{if(typeof window<"u"){const m=()=>I(window.innerWidth<768);return m(),window.addEventListener("resize",m),()=>window.removeEventListener("resize",m)}},[]);const K=async m=>{m.preventDefault(),T(!0),z(null);try{const E=await x.loginUser({email:D,password:j}),{user:U}=E;if(!U)throw new Error(E.message||"Login failed");if(typeof document<"u"){const ne="a_s_b",le="true",B=new Date;B.setTime(B.getTime()+1440*60*1e3),document.cookie=`${ne}=${le}; path=/; expires=${B.toUTCString()}; SameSite=Lax`}z({type:"success",text:`Welcome ${U.name}`}),c?.(U),typeof window<"u"&&window.location.reload()}catch(E){const U=E.message||"Login failed";z({type:"error",text:U}),f?.(E)}finally{T(!1)}},H=m=>{X({...O,[m.target.name]:m.target.value})},L=async m=>{m.preventDefault(),T(!0),z(null);try{const E=await x.requestResetUserPasswordOTP({email:O.email});E.success?(u(2),z({type:"success",text:E.message||"OTP sent to your email"})):z({type:"error",text:E.message||"Failed to send OTP"})}catch(E){z({type:"error",text:E.message||"Something went wrong"})}finally{T(!1)}},J=async m=>{m.preventDefault(),T(!0),z(null);try{const E=await x.resetUserPassword({email:O.email,otp:O.otp,newPassword:O.newPassword});E.success?(z({type:"success",text:E.message||"Password reset successfully!"}),u(1),X({email:"",otp:"",newPassword:""}),k("login")):z({type:"error",text:E.message||"Reset failed"})}catch(E){z({type:"error",text:E.message||"Something went wrong"})}finally{T(!1)}},l={width:"100%",padding:W?"10px 14px 10px 44px":"10px 16px 10px 44px",backgroundColor:_,border:`1px solid ${M}`,borderRadius:"10px",color:G,fontSize:"15px",outline:"none",transition:"all 0.2s ease"};return r.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center"},children:r.jsxs("div",{style:{minWidth:W?"320px":"380px",maxWidth:W?"340px":"390px",width:"100%",display:"flex",flexDirection:"column",borderRadius:"10px",fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",backgroundColor:a?"#000000":"#ffffff",padding:W?"30px 24px":"18px 28px"},children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",marginBottom:"10px"},children:[t?r.jsx("a",{href:e||"/",target:"_self",rel:"noopener noreferrer",children:r.jsx("img",{src:t,alt:"Logo",style:{height:"50px",width:"50px",marginBottom:"10px"}})}):r.jsx(Se,{size:40,color:i,style:{marginBottom:"10px"}}),r.jsx("h2",{style:{fontSize:"24px",fontWeight:700,color:G,margin:0},children:y==="login"?n:C===1?"Forgot Password":"Reset Password"}),r.jsx("p",{style:{fontSize:"14px",color:P},children:y==="login"?s:"Follow the steps to reset your password"})]}),y==="login"&&r.jsxs("form",{onSubmit:K,style:{display:"flex",flexDirection:"column",gap:"14px"},children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"login-email",style:{fontSize:"14px",fontWeight:500,color:a?"#ffffff":"#000000"},children:"Email Address"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(pe,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:P}}),r.jsx("input",{id:"login-email",type:"email",placeholder:"Enter your email",value:D,onChange:m=>b(m.target.value),style:l})]})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"login-password",style:{fontSize:"14px",fontWeight:500,color:a?"#ffffff":"#000000"},children:"Password"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(we,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:P}}),r.jsx("input",{id:"login-password",type:w?"text":"password",placeholder:"Enter your password",value:j,onChange:m=>q(m.target.value),style:l}),r.jsx("button",{type:"button",onClick:()=>h(!w),style:{position:"absolute",right:"14px",padding:"4px",top:"50%",transform:"translateY(-50%)",background:"transparent",border:"none",color:P,cursor:"pointer"},children:w?r.jsx(rt,{size:20}):r.jsx(nt,{size:20})})]})]}),r.jsxs("div",{style:{display:"flex",justifyContent:"space-between",fontSize:"13px"},children:[d&&r.jsx("a",{href:d,style:{color:i,textDecoration:"none",fontWeight:500},children:"Create new account"}),r.jsx("button",{type:"button",onClick:()=>k("forgot"),style:{background:"none",border:"none",color:i,fontWeight:500,cursor:"pointer"},children:"Forgot password?"})]}),r.jsx("button",{type:"submit",disabled:R,style:{padding:"12px",background:o,color:"#fff",border:"none",borderRadius:"10px",fontSize:"14px",fontWeight:600},children:R?"Signing In...":"Sign In"})]}),y==="forgot"&&r.jsxs("form",{onSubmit:C===1?L:J,style:{display:"flex",flexDirection:"column",gap:"14px"},children:[C===1?r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"4px"},children:[r.jsx("label",{htmlFor:"forgot-email",style:{fontSize:"14px",fontWeight:500,color:a?"#ffffff":"#000000"},children:"Email Address"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(pe,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:P}}),r.jsx("input",{id:"forgot-email",type:"email",name:"email",placeholder:"Enter your email",value:O.email,onChange:H,style:l})]})]}):r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"6px"},children:[r.jsx("label",{htmlFor:"otp",style:{fontSize:"14px",fontWeight:500,color:a?"#ffffff":"#000000"},children:"One-Time Password (OTP)"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(Qt,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:P}}),r.jsx("input",{id:"otp",type:"text",name:"otp",placeholder:"Enter OTP",value:O.otp,onChange:H,style:l})]})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"6px"},children:[r.jsx("label",{htmlFor:"newPassword",style:{fontSize:"14px",fontWeight:500,color:a?"#ffffff":"#000000"},children:"New Password"}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx(we,{size:20,style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:P}}),r.jsx("input",{id:"newPassword",type:"password",name:"newPassword",placeholder:"Enter new password",value:O.newPassword,onChange:H,style:l})]})]})]}),r.jsx("button",{type:"submit",disabled:R,style:{padding:"12px",background:o,color:"#fff",border:"none",fontSize:"14px",borderRadius:"10px",fontWeight:600},children:R?"Please wait...":C===1?"Send Reset OTP":"Reset Password"}),r.jsx("button",{type:"button",onClick:()=>{k("login"),u(1)},style:{background:"none",border:"none",fontSize:"14px",color:P,marginTop:"6px",cursor:"pointer"},children:"Back to Login"})]}),g&&r.jsxs("div",{style:{marginTop:"16px",padding:"12px",borderRadius:"12px",fontSize:"14px",display:"flex",alignItems:"center",gap:"10px",backgroundColor:g.type==="success"?`${i}15`:"rgba(239,68,68,0.1)",border:g.type==="success"?`1px solid ${i}30`:"1px solid rgba(239,68,68,0.3)",color:g.type==="success"?i:"#ef4444"},children:[g.type==="success"?r.jsx(ce,{size:20}):r.jsx(oe,{size:20}),r.jsx("span",{children:g.text})]}),r.jsxs("div",{style:{textAlign:"center",fontSize:"12px",color:P,marginTop:"16px",padding:"0 4px"},children:["Secure authentication powered by"," ",r.jsx("span",{style:{color:i,fontWeight:600},children:"Neuctra Authix"})]})]})})},Zn=({children:t,fallback:e=null})=>{const[n,s]=S.useState("loading");S.useEffect(()=>{const d=document.cookie.split(";").map(c=>c.trim()).find(c=>c.startsWith("a_s_b="))?.split("=")[1]==="true";s(d?"authenticated":"unauthenticated")},[]);const i=o=>typeof o=="function"?o():o;return n==="loading"?null:n==="unauthenticated"?i(e)??null:r.jsx(r.Fragment,{children:t})},Qn=({children:t,fallback:e=null})=>{const[n,s]=S.useState("loading");S.useEffect(()=>{const d=document.cookie.split(";").map(c=>c.trim()).find(c=>c.startsWith("a_s_b="))?.split("=")[1]==="true";s(d?"authenticated":"unauthenticated")},[]);const i=o=>typeof o=="function"?o():o;return n==="loading"?null:n==="authenticated"?i(e)??null:r.jsx(r.Fragment,{children:t})},es=({isOpen:t,onClose:e,onSuccess:n,onError:s,userId:i,colors:o})=>{const a=me(),[d,c]=S.useState(!1),[f,x]=S.useState(""),[y,k]=S.useState("warning"),[C,u]=S.useState(!1);if(S.useEffect(()=>{if(typeof window>"u")return;const g=()=>{u(window.innerWidth<640)};return g(),window.addEventListener("resize",g),()=>window.removeEventListener("resize",g)},[]),!t)return null;const w=async()=>{c(!0),k("processing");try{const g=await a.deleteUser({userId:i});g.success?(n(g.message||"Account deleted successfully"),k("success"),setTimeout(()=>{localStorage.removeItem("userInfo"),localStorage.removeItem("userToken"),window.location.href="/"},2e3)):(s(g.message||"Failed to delete account"),k("warning"))}catch(g){s(g.response?.data?.message||"Something went wrong"),k("warning")}finally{c(!1)}},h=f.toLowerCase()==="delete my account",R=g=>{g.target===g.currentTarget&&y!=="processing"&&y!=="success"&&e()},T=()=>{switch(y){case"warning":return r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",justifyContent:"space-between",marginBottom:"24px",gap:"16px"},children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",flex:1},children:[r.jsx("div",{style:{width:"40px",height:"40px",borderRadius:"12px",background:"linear-gradient(135deg, #ef4444, #dc2626)",display:"flex",alignItems:"center",justifyContent:"center",color:"white",flexShrink:0},children:r.jsx(Me,{size:20})}),r.jsx("div",{children:r.jsx("h3",{style:{color:o.textPrimary,margin:0,fontSize:"20px",fontWeight:700,lineHeight:"1.3"},children:"Delete Account"})})]}),r.jsx("button",{onClick:e,"aria-label":"Close modal",style:{background:"transparent",border:"none",color:o.textTertiary,cursor:"pointer",padding:"8px",borderRadius:"8px",width:"36px",height:"36px",display:"flex",alignItems:"center",justifyContent:"center",flexShrink:0,transition:"all 0.2s ease"},onMouseOver:g=>{g.currentTarget.style.backgroundColor=o.border,g.currentTarget.style.color=o.textPrimary},onMouseOut:g=>{g.currentTarget.style.backgroundColor="transparent",g.currentTarget.style.color=o.textTertiary},children:r.jsx(Re,{size:20})})]}),r.jsxs("div",{style:{display:"flex",gap:"16px",padding:"20px",background:`${o.error}15`,border:`1px solid ${o.error}30`,borderRadius:"12px",marginBottom:"20px"},children:[r.jsx("div",{style:{color:o.error,flexShrink:0,display:"flex",alignItems:"flex-start"},children:r.jsx(tr,{size:24})}),r.jsxs("div",{style:{flex:1},children:[r.jsx("h4",{style:{color:o.textPrimary,margin:"0 0 12px 0",fontSize:"16px",fontWeight:600},children:"Before you proceed..."}),r.jsx("div",{style:{display:"flex",flexDirection:"column",gap:"10px"},children:[{icon:r.jsx(Dn,{size:16}),text:"All your data will be permanently deleted"},{icon:r.jsx(Jn,{size:16}),text:"This action cannot be reversed"},{icon:r.jsx(it,{size:16}),text:"You will lose access to all services"}].map((g,z)=>r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"10px",fontSize:"14px",color:o.textSecondary},children:[r.jsx("div",{style:{color:o.error,flexShrink:0},children:g.icon}),r.jsx("span",{children:g.text})]},z))})]})]}),r.jsxs("div",{style:{display:"flex",gap:"12px",flexDirection:C?"column-reverse":"row",justifyContent:"flex-end",alignItems:"stretch"},children:[r.jsx("button",{onClick:e,style:{padding:"10px 24px",borderRadius:"10px",border:`1.5px solid ${o.border}`,background:"transparent",color:o.textPrimary,fontSize:"14px",fontWeight:500,cursor:"pointer",flex:C?"none":1,minWidth:C?"100%":"120px",transition:"all 0.2s ease"},onMouseOver:g=>{g.currentTarget.style.backgroundColor=o.border,g.currentTarget.style.transform="translateY(-1px)"},onMouseOut:g=>{g.currentTarget.style.backgroundColor="transparent",g.currentTarget.style.transform="translateY(0)"},children:"Cancel"}),r.jsxs("button",{onClick:()=>k("confirmation"),style:{padding:"10px 24px",borderRadius:"10px",border:"none",background:"linear-gradient(135deg, #ef4444, #dc2626)",color:"white",fontSize:"14px",fontWeight:600,cursor:"pointer",flex:C?"none":1,minWidth:C?"100%":"140px",display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",transition:"all 0.2s ease",boxShadow:"0 4px 12px rgba(239, 68, 68, 0.4)"},onMouseOver:g=>{g.currentTarget.style.transform="translateY(-1px)",g.currentTarget.style.boxShadow="0 6px 20px rgba(239, 68, 68, 0.5)"},onMouseOut:g=>{g.currentTarget.style.transform="translateY(0)",g.currentTarget.style.boxShadow="0 4px 12px rgba(239, 68, 68, 0.4)"},children:[r.jsx(Me,{size:16}),"Continue to Delete"]})]})]});case"confirmation":return r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",marginBottom:"24px"},children:[r.jsx("div",{style:{width:"40px",height:"40px",borderRadius:"12px",background:"linear-gradient(135deg, #f59e0b, #d97706)",display:"flex",alignItems:"center",justifyContent:"center",color:"white",flexShrink:0},children:r.jsx(tr,{size:24})}),r.jsx("div",{style:{flex:1},children:r.jsx("h3",{style:{color:o.textPrimary,margin:0,fontSize:"20px",fontWeight:700,lineHeight:"1.3"},children:"Confirm Deletion"})})]}),r.jsxs("div",{style:{marginBottom:"24px"},children:[r.jsxs("p",{style:{color:o.textSecondary,marginBottom:"16px",fontSize:"14px",lineHeight:"1.5"},children:["Type"," ",r.jsx("strong",{style:{color:o.textPrimary},children:'"delete my account"'})," ","to confirm:"]}),r.jsx("input",{type:"text",value:f,onChange:g=>x(g.target.value),placeholder:"delete my account",style:{width:"100%",padding:"14px 16px",borderRadius:"10px",border:`2px solid ${h?o.success:o.error}`,backgroundColor:"transparent",color:o.textPrimary,fontSize:"15px",outline:"none",transition:"all 0.2s ease",boxSizing:"border-box"},onFocus:g=>{g.target.style.boxShadow=`0 0 0 3px ${o.accent}20`},onBlur:g=>{g.target.style.boxShadow="none"},autoFocus:!0}),h&&r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"8px",marginTop:"10px",color:o.success,fontSize:"14px",fontWeight:500},children:[r.jsx(tt,{size:16}),r.jsx("span",{children:"Confirmation accepted"})]})]}),r.jsxs("div",{style:{display:"flex",gap:"12px",flexDirection:"column-reverse",justifyContent:"flex-end",alignItems:"stretch"},children:[r.jsx("button",{onClick:()=>{k("warning"),x("")},style:{padding:"10px 24px",borderRadius:"10px",border:`1.5px solid ${o.border}`,background:"transparent",color:o.textPrimary,fontSize:"14px",fontWeight:500,cursor:"pointer",flex:C?"none":1,minWidth:C?"100%":"120px",transition:"all 0.2s ease"},onMouseOver:g=>{g.currentTarget.style.backgroundColor=o.border,g.currentTarget.style.transform="translateY(-1px)"},onMouseOut:g=>{g.currentTarget.style.backgroundColor="transparent",g.currentTarget.style.transform="translateY(0)"},children:"Go Back"}),r.jsxs("button",{onClick:w,disabled:!h||d,style:{padding:"10px 24px",borderRadius:"10px",border:"none",background:"linear-gradient(135deg, #ef4444, #dc2626)",color:"white",fontSize:"14px",fontWeight:600,cursor:!h||d?"not-allowed":"pointer",flex:C?"none":1,minWidth:C?"100%":"140px",opacity:!h||d?.6:1,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",transition:"all 0.2s ease",boxShadow:!h||d?"none":"0 4px 12px rgba(239, 68, 68, 0.4)"},onMouseOver:g=>{h&&!d&&(g.currentTarget.style.transform="translateY(-1px)",g.currentTarget.style.boxShadow="0 6px 20px rgba(239, 68, 68, 0.5)")},onMouseOut:g=>{h&&!d&&(g.currentTarget.style.transform="translateY(0)",g.currentTarget.style.boxShadow="0 4px 12px rgba(239, 68, 68, 0.4)")},children:[r.jsx(Me,{size:16}),"Yes, Delete My Account"]})]})]});case"processing":return r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",marginBottom:"24px"},children:[r.jsx("div",{style:{width:"40px",height:"40px",borderRadius:"12px",background:"linear-gradient(135deg, #6b7280, #4b5563)",display:"flex",alignItems:"center",justifyContent:"center",color:"white",flexShrink:0},children:r.jsx(se,{size:20,style:{animation:"spin 1s linear infinite"}})}),r.jsxs("div",{style:{flex:1},children:[r.jsx("h3",{style:{color:o.textPrimary,margin:0,fontSize:"20px",fontWeight:700,lineHeight:"1.3"},children:"Deleting Account"}),r.jsx("p",{style:{color:o.textTertiary,margin:"4px 0 0 0",fontSize:"14px",lineHeight:"1.4"},children:"Please wait while we process your request"})]})]}),r.jsx("div",{style:{marginBottom:"20px"},children:r.jsx("div",{style:{display:"flex",flexDirection:"column",gap:"12px"},children:[{text:"Removing your data",active:!0},{text:"Closing active sessions",active:!1},{text:"Finalizing deletion",active:!1}].map((g,z)=>r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",padding:"12px",borderRadius:"8px",transition:"all 0.2s ease",backgroundColor:g.active?`${o.accent}10`:"transparent"},children:[r.jsx("div",{style:{width:"8px",height:"8px",borderRadius:"50%",backgroundColor:g.active?o.accent:o.textTertiary,transition:"all 0.3s ease",boxShadow:g.active?`0 0 0 4px ${o.accent}20`:"none"}}),r.jsx("span",{style:{fontSize:"14px",color:g.active?o.textPrimary:o.textSecondary,fontWeight:g.active?500:400},children:g.text})]},z))})}),r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"10px",padding:"16px",background:`${o.accent}10`,borderRadius:"10px",fontSize:"14px",color:o.textSecondary},children:[r.jsx(er,{size:18,style:{color:o.accent,flexShrink:0}}),r.jsx("span",{children:"You will be redirected to the login page shortly"})]})]});case"success":return r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",marginBottom:"24px"},children:[r.jsx("div",{style:{width:"40px",height:"40px",borderRadius:"12px",background:"linear-gradient(135deg, #10b981, #059669)",display:"flex",alignItems:"center",justifyContent:"center",color:"white",flexShrink:0},children:r.jsx(tt,{size:20})}),r.jsxs("div",{style:{flex:1},children:[r.jsx("h3",{style:{color:o.textPrimary,margin:0,fontSize:"20px",fontWeight:700,lineHeight:"1.3"},children:"Account Deleted"}),r.jsx("p",{style:{color:o.textTertiary,margin:"4px 0 0 0",fontSize:"14px",lineHeight:"1.4"},children:"Your account has been successfully deleted"})]})]}),r.jsxs("div",{style:{textAlign:"center",padding:"20px",background:`${o.success}10`,border:`1px solid ${o.success}20`,borderRadius:"12px",marginBottom:"24px"},children:[r.jsx(tt,{size:48,style:{color:o.success,marginBottom:"12px",display:"block",margin:"0 auto 12px auto"}}),r.jsx("p",{style:{color:o.textPrimary,fontSize:"16px",fontWeight:600,margin:"0 0 8px 0"},children:"Goodbye!"}),r.jsx("p",{style:{color:o.textSecondary,fontSize:"14px",margin:0,lineHeight:"1.5"},children:"Your account and all associated data have been permanently removed from our systems."})]}),r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"10px",padding:"16px",background:`${o.accent}10`,borderRadius:"10px",fontSize:"14px",color:o.textSecondary,justifyContent:"center"},children:[r.jsx(se,{size:16,style:{animation:"spin 1s linear infinite",color:o.accent}}),r.jsx("span",{children:"Redirecting to login page..."})]})]})}};return r.jsxs("div",{style:{position:"fixed",inset:0,background:"rgba(0,0,0,0.8)",backdropFilter:"blur(8px)",display:"flex",alignItems:"center",justifyContent:"center",padding:"16px",zIndex:1e4,animation:"fadeIn 0.3s ease-out"},onClick:R,children:[r.jsx("div",{style:{backgroundColor:o.surface,border:`1px solid ${o.border}`,borderRadius:"20px",width:"100%",maxWidth:"480px",padding:"24px",boxShadow:"0 32px 64px rgba(0,0,0,0.4)",animation:"scaleIn 0.3s ease-out"},className:"delete-modal-container",children:T()}),r.jsx("style",{children:`
213
213
  @keyframes fadeIn {
214
214
  from { opacity: 0; }
215
215
  to { opacity: 1; }
@@ -263,7 +263,7 @@ React keys must be passed directly to JSX without using spread:
263
263
  animation: none !important;
264
264
  }
265
265
  }
266
- `})]})},ts=({isOpen:t,onClose:e,onUpdate:n,colors:s})=>{const[i,o]=S.useState(""),[a,d]=S.useState(!1),[c,f]=S.useState(!1),[x,y]=S.useState({isValid:!1,message:"",type:null});if(S.useEffect(()=>{if(typeof window>"u")return;const u=()=>{f(window.innerWidth<640)};return u(),window.addEventListener("resize",u),()=>window.removeEventListener("resize",u)},[]),S.useEffect(()=>{if(!i.trim()){y({isValid:!1,message:"",type:null});return}try{const u=new URL(i),w=/\.(jpg|jpeg|png|gif|webp|svg)$/i.test(u.pathname);y(w?{isValid:!0,message:"Valid image URL",type:"success"}:{isValid:!1,message:"URL should point to an image file",type:"warning"})}catch{y({isValid:!1,message:"Please enter a valid URL",type:"error"})}},[i]),!t)return null;const E=async()=>{if(!(!i||!x.isValid)){d(!0);try{await n(i)&&(o(""),e())}finally{d(!1)}}},C=u=>{u.target===u.currentTarget&&e()};return r.jsxs("div",{style:{position:"fixed",inset:0,background:"rgba(0,0,0,0.8)",backdropFilter:"blur(8px)",display:"flex",alignItems:"center",justifyContent:"center",padding:"16px",zIndex:1e3},onClick:C,children:[r.jsxs("div",{style:{backgroundColor:s.surface,border:`1px solid ${s.border}`,borderRadius:"20px",width:"100%",maxWidth:"480px",padding:"24px",boxShadow:"0 32px 64px rgba(0,0,0,0.4)",animation:"modalSlideIn 0.3s ease-out"},className:"avatar-modal-container",children:[r.jsxs("div",{style:{display:"flex",alignItems:"flex-start",justifyContent:"space-between",marginBottom:"24px",gap:"16px"},children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",flex:1},children:[r.jsx("div",{style:{width:"44px",height:"44px",borderRadius:"12px",background:`linear-gradient(135deg, ${s.accent}20, ${s.accent}40)`,display:"flex",alignItems:"center",justifyContent:"center",color:s.accent,flexShrink:0},children:r.jsx(et,{size:22})}),r.jsx("div",{children:r.jsx("h3",{style:{color:s.textPrimary,margin:0,fontSize:"20px",fontWeight:700,lineHeight:"1.3"},children:"Update Avatar"})})]}),r.jsx("button",{onClick:e,"aria-label":"Close avatar modal",style:{background:"transparent",border:"none",color:s.textTertiary,cursor:"pointer",padding:"8px",borderRadius:"8px",width:"36px",height:"36px",display:"flex",alignItems:"center",justifyContent:"center",flexShrink:0,transition:"all 0.2s ease"},onMouseOver:u=>{u.currentTarget.style.backgroundColor=s.border,u.currentTarget.style.color=s.textPrimary},onMouseOut:u=>{u.currentTarget.style.backgroundColor="transparent",u.currentTarget.style.color=s.textTertiary},children:r.jsx(Oe,{size:20})})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"20px"},children:[r.jsxs("div",{children:[r.jsxs("label",{htmlFor:"avatar-url",style:{display:"flex",marginBottom:"8px",color:s.textPrimary,fontSize:"14px",fontWeight:500,alignItems:"center",gap:"6px"},children:[r.jsx(qn,{size:16}),"Avatar URL"]}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx("input",{type:"url",id:"avatar-url",placeholder:"https://example.com/your-avatar.jpg",value:i,onChange:u=>o(u.target.value),style:{width:"100%",padding:"14px 16px",paddingLeft:"44px",borderRadius:"12px",border:`1.5px solid ${x.type==="error"?s.error:x.type==="success"?s.success:s.border}`,backgroundColor:"transparent",color:s.textPrimary,fontSize:"15px",outline:"none",transition:"all 0.2s ease",boxSizing:"border-box"},onFocus:u=>{u.target.style.borderColor=s.accent,u.target.style.boxShadow=`0 0 0 3px ${s.accent}20`},onBlur:u=>{u.target.style.borderColor=x.type==="error"?s.error:x.type==="success"?s.success:s.border,u.target.style.boxShadow="none"},disabled:a}),r.jsx("div",{style:{position:"absolute",left:"16px",top:"50%",transform:"translateY(-50%)",color:s.textTertiary},children:r.jsx(Zt,{size:18})})]}),x.message&&r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"6px",marginTop:"8px",fontSize:"13px",color:x.type==="success"?s.success:x.type==="error"?s.error:s.textTertiary},children:[x.type==="success"&&r.jsx(ce,{size:14}),x.type==="error"&&r.jsx(oe,{size:14}),x.type==="warning"&&r.jsx(oe,{size:14}),x.message]})]}),i&&x.type==="success"&&r.jsxs("div",{style:{padding:"16px",backgroundColor:`${s.success}10`,border:`1px solid ${s.success}20`,borderRadius:"12px",textAlign:"center"},children:[r.jsx("p",{style:{color:s.textSecondary,fontSize:"13px",fontWeight:500,margin:"0 0 12px 0"},children:"Preview"}),r.jsx("img",{src:i,alt:"Avatar preview",style:{width:"80px",height:"80px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${s.success}40`,margin:"0 auto"},onError:u=>{u.currentTarget.style.display="none"}})]})]}),r.jsxs("div",{style:{display:"flex",gap:"12px",flexDirection:c?"column-reverse":"row",justifyContent:"flex-end",alignItems:"stretch",marginTop:"24px"},children:[r.jsx("button",{onClick:e,disabled:a,style:{padding:"10px 24px",borderRadius:"10px",border:`1.5px solid ${s.border}`,background:"transparent",color:s.textPrimary,fontSize:"14px",fontWeight:500,cursor:a?"not-allowed":"pointer",flex:c?"none":1,minWidth:c?"100%":"120px",opacity:a?.6:1,transition:"all 0.2s ease"},onMouseOver:u=>{a||(u.currentTarget.style.backgroundColor=s.border,u.currentTarget.style.transform="translateY(-1px)")},onMouseOut:u=>{a||(u.currentTarget.style.backgroundColor="transparent",u.currentTarget.style.transform="translateY(0)")},children:"Cancel"}),r.jsx("button",{onClick:E,disabled:a||!x.isValid,style:{padding:"10px 24px",borderRadius:"10px",border:"none",background:`linear-gradient(135deg, ${s.accent}, ${s.accent}E6)`,color:"#fff",fontSize:"14px",fontWeight:600,cursor:a||!x.isValid?"not-allowed":"pointer",flex:c?"none":1,minWidth:c?"100%":"140px",opacity:a||!x.isValid?.6:1,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",transition:"all 0.2s ease",boxShadow:a||!x.isValid?"none":`0 4px 12px ${s.accent}40`},onMouseOver:u=>{!a&&x.isValid&&(u.currentTarget.style.transform="translateY(-1px)",u.currentTarget.style.boxShadow=`0 6px 20px ${s.accent}60`)},onMouseOut:u=>{!a&&x.isValid&&(u.currentTarget.style.transform="translateY(0)",u.currentTarget.style.boxShadow=`0 4px 12px ${s.accent}40`)},children:a?r.jsxs(r.Fragment,{children:[r.jsx(se,{size:16,style:{animation:"spin 1s linear infinite"}}),"Updating..."]}):r.jsxs(r.Fragment,{children:[r.jsx(et,{size:16}),"Update Avatar"]})})]})]}),r.jsx("style",{children:`
266
+ `})]})},ts=({isOpen:t,onClose:e,onUpdate:n,colors:s})=>{const[i,o]=S.useState(""),[a,d]=S.useState(!1),[c,f]=S.useState(!1),[x,y]=S.useState({isValid:!1,message:"",type:null});if(S.useEffect(()=>{if(typeof window>"u")return;const u=()=>{f(window.innerWidth<640)};return u(),window.addEventListener("resize",u),()=>window.removeEventListener("resize",u)},[]),S.useEffect(()=>{if(!i.trim()){y({isValid:!1,message:"",type:null});return}try{const u=new URL(i),w=/\.(jpg|jpeg|png|gif|webp|svg)$/i.test(u.pathname);y(w?{isValid:!0,message:"Valid image URL",type:"success"}:{isValid:!1,message:"URL should point to an image file",type:"warning"})}catch{y({isValid:!1,message:"Please enter a valid URL",type:"error"})}},[i]),!t)return null;const k=async()=>{if(!(!i||!x.isValid)){d(!0);try{await n(i)&&(o(""),e())}finally{d(!1)}}},C=u=>{u.target===u.currentTarget&&e()};return r.jsxs("div",{style:{position:"fixed",inset:0,background:"rgba(0,0,0,0.8)",backdropFilter:"blur(8px)",display:"flex",alignItems:"center",justifyContent:"center",padding:"16px",zIndex:1e3},onClick:C,children:[r.jsxs("div",{style:{backgroundColor:s.surface,border:`1px solid ${s.border}`,borderRadius:"20px",width:"100%",maxWidth:"480px",padding:"24px",boxShadow:"0 32px 64px rgba(0,0,0,0.4)",animation:"modalSlideIn 0.3s ease-out"},className:"avatar-modal-container",children:[r.jsxs("div",{style:{display:"flex",alignItems:"flex-start",justifyContent:"space-between",marginBottom:"24px",gap:"16px"},children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",flex:1},children:[r.jsx("div",{style:{width:"44px",height:"44px",borderRadius:"12px",background:`linear-gradient(135deg, ${s.accent}20, ${s.accent}40)`,display:"flex",alignItems:"center",justifyContent:"center",color:s.accent,flexShrink:0},children:r.jsx(et,{size:22})}),r.jsx("div",{children:r.jsx("h3",{style:{color:s.textPrimary,margin:0,fontSize:"20px",fontWeight:700,lineHeight:"1.3"},children:"Update Avatar"})})]}),r.jsx("button",{onClick:e,"aria-label":"Close avatar modal",style:{background:"transparent",border:"none",color:s.textTertiary,cursor:"pointer",padding:"8px",borderRadius:"8px",width:"36px",height:"36px",display:"flex",alignItems:"center",justifyContent:"center",flexShrink:0,transition:"all 0.2s ease"},onMouseOver:u=>{u.currentTarget.style.backgroundColor=s.border,u.currentTarget.style.color=s.textPrimary},onMouseOut:u=>{u.currentTarget.style.backgroundColor="transparent",u.currentTarget.style.color=s.textTertiary},children:r.jsx(Re,{size:20})})]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"20px"},children:[r.jsxs("div",{children:[r.jsxs("label",{htmlFor:"avatar-url",style:{display:"flex",marginBottom:"8px",color:s.textPrimary,fontSize:"14px",fontWeight:500,alignItems:"center",gap:"6px"},children:[r.jsx(qn,{size:16}),"Avatar URL"]}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx("input",{type:"url",id:"avatar-url",placeholder:"https://example.com/your-avatar.jpg",value:i,onChange:u=>o(u.target.value),style:{width:"100%",padding:"14px 16px",paddingLeft:"44px",borderRadius:"12px",border:`1.5px solid ${x.type==="error"?s.error:x.type==="success"?s.success:s.border}`,backgroundColor:"transparent",color:s.textPrimary,fontSize:"15px",outline:"none",transition:"all 0.2s ease",boxSizing:"border-box"},onFocus:u=>{u.target.style.borderColor=s.accent,u.target.style.boxShadow=`0 0 0 3px ${s.accent}20`},onBlur:u=>{u.target.style.borderColor=x.type==="error"?s.error:x.type==="success"?s.success:s.border,u.target.style.boxShadow="none"},disabled:a}),r.jsx("div",{style:{position:"absolute",left:"16px",top:"50%",transform:"translateY(-50%)",color:s.textTertiary},children:r.jsx(Zt,{size:18})})]}),x.message&&r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"6px",marginTop:"8px",fontSize:"13px",color:x.type==="success"?s.success:x.type==="error"?s.error:s.textTertiary},children:[x.type==="success"&&r.jsx(ce,{size:14}),x.type==="error"&&r.jsx(oe,{size:14}),x.type==="warning"&&r.jsx(oe,{size:14}),x.message]})]}),i&&x.type==="success"&&r.jsxs("div",{style:{padding:"16px",backgroundColor:`${s.success}10`,border:`1px solid ${s.success}20`,borderRadius:"12px",textAlign:"center"},children:[r.jsx("p",{style:{color:s.textSecondary,fontSize:"13px",fontWeight:500,margin:"0 0 12px 0"},children:"Preview"}),r.jsx("img",{src:i,alt:"Avatar preview",style:{width:"80px",height:"80px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${s.success}40`,margin:"0 auto"},onError:u=>{u.currentTarget.style.display="none"}})]})]}),r.jsxs("div",{style:{display:"flex",gap:"12px",flexDirection:c?"column-reverse":"row",justifyContent:"flex-end",alignItems:"stretch",marginTop:"24px"},children:[r.jsx("button",{onClick:e,disabled:a,style:{padding:"10px 24px",borderRadius:"10px",border:`1.5px solid ${s.border}`,background:"transparent",color:s.textPrimary,fontSize:"14px",fontWeight:500,cursor:a?"not-allowed":"pointer",flex:c?"none":1,minWidth:c?"100%":"120px",opacity:a?.6:1,transition:"all 0.2s ease"},onMouseOver:u=>{a||(u.currentTarget.style.backgroundColor=s.border,u.currentTarget.style.transform="translateY(-1px)")},onMouseOut:u=>{a||(u.currentTarget.style.backgroundColor="transparent",u.currentTarget.style.transform="translateY(0)")},children:"Cancel"}),r.jsx("button",{onClick:k,disabled:a||!x.isValid,style:{padding:"10px 24px",borderRadius:"10px",border:"none",background:`linear-gradient(135deg, ${s.accent}, ${s.accent}E6)`,color:"#fff",fontSize:"14px",fontWeight:600,cursor:a||!x.isValid?"not-allowed":"pointer",flex:c?"none":1,minWidth:c?"100%":"140px",opacity:a||!x.isValid?.6:1,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",transition:"all 0.2s ease",boxShadow:a||!x.isValid?"none":`0 4px 12px ${s.accent}40`},onMouseOver:u=>{!a&&x.isValid&&(u.currentTarget.style.transform="translateY(-1px)",u.currentTarget.style.boxShadow=`0 6px 20px ${s.accent}60`)},onMouseOut:u=>{!a&&x.isValid&&(u.currentTarget.style.transform="translateY(0)",u.currentTarget.style.boxShadow=`0 4px 12px ${s.accent}40`)},children:a?r.jsxs(r.Fragment,{children:[r.jsx(se,{size:16,style:{animation:"spin 1s linear infinite"}}),"Updating..."]}):r.jsxs(r.Fragment,{children:[r.jsx(et,{size:16}),"Update Avatar"]})})]})]}),r.jsx("style",{children:`
267
267
  @keyframes modalSlideIn {
268
268
  from {
269
269
  opacity: 0;
@@ -311,7 +311,7 @@ React keys must be passed directly to JSX without using spread:
311
311
  transition: none !important;
312
312
  }
313
313
  }
314
- `})]})},rs=({isOpen:t,onClose:e,onSuccess:n,onError:s,userId:i,colors:o})=>{const a=me(),[d,c]=S.useState({currentPassword:"",newPassword:"",confirmPassword:""}),[f,x]=S.useState({}),[y,E]=S.useState(!1),[C,u]=S.useState({currentPassword:!1,newPassword:!1,confirmPassword:!1}),[w,h]=S.useState(!1);if(S.useEffect(()=>{if(typeof window>"u")return;const b=()=>{h(window.innerWidth<640)};return b(),window.addEventListener("resize",b),()=>window.removeEventListener("resize",b)},[]),!t)return null;const O=b=>{const{name:j,value:q}=b.target;c(R=>({...R,[j]:q})),f[j]&&x(R=>({...R,[j]:""}))},T=b=>{u(j=>({...j,[b]:!j[b]}))},g=()=>{const b={};return d.currentPassword||(b.currentPassword="Current password is required"),d.newPassword?d.newPassword.length<6&&(b.newPassword="Password must be at least 6 characters"):b.newPassword="New password is required",d.newPassword!==d.confirmPassword&&(b.confirmPassword="Passwords do not match"),x(b),Object.keys(b).length===0},z=async b=>{if(b.preventDefault(),!!g()){E(!0);try{const{data:j}=await a.changePassword({currentPassword:d.currentPassword,newPassword:d.newPassword,userId:i});j.success?(n(j.message||"Password updated successfully"),c({currentPassword:"",newPassword:"",confirmPassword:""}),e()):s(j.message||"Failed to update password")}catch(j){s(j.response?.data?.message||"Something went wrong")}finally{E(!1)}}},D=[{field:"currentPassword",label:"Current Password",icon:r.jsx(st,{size:18})},{field:"newPassword",label:"New Password",icon:r.jsx(we,{size:18})},{field:"confirmPassword",label:"Confirm Password",icon:r.jsx(we,{size:18})}];return r.jsx("div",{style:{position:"fixed",inset:0,background:"rgba(0,0,0,0.7)",backdropFilter:"blur(6px)",display:"flex",alignItems:"center",justifyContent:"center",padding:"16px",zIndex:1e3},children:r.jsxs("div",{style:{backgroundColor:o.surface,border:`1px solid ${o.border}`,borderRadius:"16px",maxWidth:"440px",width:"100%",padding:"24px",boxShadow:"0 20px 60px rgba(0,0,0,0.4)",maxHeight:"90vh",overflowY:"auto"},className:"change-password-modal",children:[r.jsxs("div",{style:{display:"flex",justifyContent:"space-between",alignItems:"flex-start",marginBottom:"24px",gap:"12px"},children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",flex:1},children:[r.jsx("div",{style:{width:"40px",height:"40px",borderRadius:"10px",background:`linear-gradient(135deg, ${o.accent}20, ${o.accent}40)`,display:"flex",alignItems:"center",justifyContent:"center",color:o.accent,flexShrink:0},children:r.jsx(we,{size:20})}),r.jsx("div",{children:r.jsx("h3",{style:{color:o.textPrimary,margin:0,fontSize:"18px",fontWeight:600,lineHeight:"1.4"},children:"Change Password"})})]}),r.jsx("button",{onClick:e,"aria-label":"Close password change modal",style:{background:"transparent",border:"none",color:o.textTertiary,cursor:"pointer",padding:"8px",borderRadius:"8px",flexShrink:0,width:"36px",height:"36px",display:"flex",alignItems:"center",justifyContent:"center"},onMouseOver:b=>{b.currentTarget.style.backgroundColor=o.border,b.currentTarget.style.color=o.textPrimary},onMouseOut:b=>{b.currentTarget.style.backgroundColor="transparent",b.currentTarget.style.color=o.textTertiary},children:r.jsx(Oe,{size:20})})]}),r.jsxs("form",{onSubmit:z,children:[D.map(({field:b,label:j,icon:q})=>r.jsxs("div",{style:{marginBottom:"20px",position:"relative"},children:[r.jsx("label",{htmlFor:b,style:{display:"block",marginBottom:"8px",color:o.textPrimary,fontSize:"14px",fontWeight:500,lineHeight:"1.4"},children:j}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx("div",{style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:o.textTertiary,zIndex:2},children:q}),r.jsx("input",{type:C[b]?"text":"password",id:b,name:b,placeholder:`Enter ${j.toLowerCase()}`,value:d[b],onChange:O,style:{width:"100%",padding:"14px 48px 14px 44px",borderRadius:"10px",border:`1.5px solid ${f[b]?o.error:o.border}`,backgroundColor:"transparent",color:o.textPrimary,fontSize:"15px",outline:"none",transition:"all 0.2s ease",boxSizing:"border-box"},onFocus:R=>{R.target.style.borderColor=o.accent,R.target.style.boxShadow=`0 0 0 3px ${o.accent}20`},onBlur:R=>{R.target.style.borderColor=f[b]?o.error:o.border,R.target.style.boxShadow="none"}}),r.jsx("button",{type:"button",onClick:()=>T(b),style:{position:"absolute",right:"14px",top:"50%",transform:"translateY(-50%)",background:"transparent",border:"none",cursor:"pointer",color:o.textTertiary,padding:"4px",borderRadius:"4px",width:"32px",height:"32px",display:"flex",alignItems:"center",justifyContent:"center"},onMouseOver:R=>{R.currentTarget.style.backgroundColor=o.border,R.currentTarget.style.color=o.textPrimary},onMouseOut:R=>{R.currentTarget.style.backgroundColor="transparent",R.currentTarget.style.color=o.textTertiary},children:C[b]?r.jsx(rt,{size:18}):r.jsx(nt,{size:18})})]}),f[b]&&r.jsxs("div",{style:{fontSize:"13px",color:o.error,marginTop:"6px",display:"flex",alignItems:"center",gap:"6px"},children:[r.jsx("span",{style:{fontSize:"16px"},children:"⚠"}),f[b]]})]},b)),r.jsxs("div",{style:{display:"flex",gap:"12px",flexDirection:w?"column-reverse":"row",justifyContent:"flex-end",alignItems:"stretch"},children:[r.jsx("button",{type:"button",onClick:e,disabled:y,style:{padding:"14px 24px",borderRadius:"10px",border:`1.5px solid ${o.border}`,background:"transparent",color:o.textPrimary,fontSize:"14px",fontWeight:500,cursor:y?"not-allowed":"pointer",flex:w?"none":1,minWidth:w?"100%":"120px",opacity:y?.6:1,transition:"all 0.2s ease"},onMouseOver:b=>{y||(b.currentTarget.style.backgroundColor=o.border,b.currentTarget.style.transform="translateY(-1px)")},onMouseOut:b=>{y||(b.currentTarget.style.backgroundColor="transparent",b.currentTarget.style.transform="translateY(0)")},children:"Cancel"}),r.jsx("button",{type:"submit",disabled:y,style:{padding:"14px 24px",borderRadius:"10px",border:"none",background:`linear-gradient(135deg, ${o.accent}, ${o.accent}E6)`,color:"#fff",fontSize:"14px",fontWeight:600,cursor:y?"not-allowed":"pointer",flex:w?"none":1,minWidth:w?"100%":"140px",opacity:y?.8:1,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",transition:"all 0.2s ease",boxShadow:y?"none":`0 4px 12px ${o.accent}40`},onMouseOver:b=>{y||(b.currentTarget.style.transform="translateY(-1px)",b.currentTarget.style.boxShadow=`0 6px 20px ${o.accent}60`)},onMouseOut:b=>{y||(b.currentTarget.style.transform="translateY(0)",b.currentTarget.style.boxShadow=`0 4px 12px ${o.accent}40`)},children:y?r.jsxs(r.Fragment,{children:[r.jsx(se,{size:16,style:{animation:"spin 1s linear infinite"}}),"Updating..."]}):"Update Password"})]})]}),r.jsx("style",{children:`
314
+ `})]})},rs=({isOpen:t,onClose:e,onSuccess:n,onError:s,userId:i,colors:o})=>{const a=me(),[d,c]=S.useState({currentPassword:"",newPassword:"",confirmPassword:""}),[f,x]=S.useState({}),[y,k]=S.useState(!1),[C,u]=S.useState({currentPassword:!1,newPassword:!1,confirmPassword:!1}),[w,h]=S.useState(!1);if(S.useEffect(()=>{if(typeof window>"u")return;const b=()=>{h(window.innerWidth<640)};return b(),window.addEventListener("resize",b),()=>window.removeEventListener("resize",b)},[]),!t)return null;const R=b=>{const{name:j,value:q}=b.target;c(O=>({...O,[j]:q})),f[j]&&x(O=>({...O,[j]:""}))},T=b=>{u(j=>({...j,[b]:!j[b]}))},g=()=>{const b={};return d.currentPassword||(b.currentPassword="Current password is required"),d.newPassword?d.newPassword.length<6&&(b.newPassword="Password must be at least 6 characters"):b.newPassword="New password is required",d.newPassword!==d.confirmPassword&&(b.confirmPassword="Passwords do not match"),x(b),Object.keys(b).length===0},z=async b=>{if(b.preventDefault(),!!g()){k(!0);try{const{data:j}=await a.changePassword({currentPassword:d.currentPassword,newPassword:d.newPassword,userId:i});j.success?(n(j.message||"Password updated successfully"),c({currentPassword:"",newPassword:"",confirmPassword:""}),e()):s(j.message||"Failed to update password")}catch(j){s(j.response?.data?.message||"Something went wrong")}finally{k(!1)}}},D=[{field:"currentPassword",label:"Current Password",icon:r.jsx(st,{size:18})},{field:"newPassword",label:"New Password",icon:r.jsx(we,{size:18})},{field:"confirmPassword",label:"Confirm Password",icon:r.jsx(we,{size:18})}];return r.jsx("div",{style:{position:"fixed",inset:0,background:"rgba(0,0,0,0.7)",backdropFilter:"blur(6px)",display:"flex",alignItems:"center",justifyContent:"center",padding:"16px",zIndex:1e3},children:r.jsxs("div",{style:{backgroundColor:o.surface,border:`1px solid ${o.border}`,borderRadius:"16px",maxWidth:"440px",width:"100%",padding:"24px",boxShadow:"0 20px 60px rgba(0,0,0,0.4)",maxHeight:"90vh",overflowY:"auto"},className:"change-password-modal",children:[r.jsxs("div",{style:{display:"flex",justifyContent:"space-between",alignItems:"flex-start",marginBottom:"24px",gap:"12px"},children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",flex:1},children:[r.jsx("div",{style:{width:"40px",height:"40px",borderRadius:"10px",background:`linear-gradient(135deg, ${o.accent}20, ${o.accent}40)`,display:"flex",alignItems:"center",justifyContent:"center",color:o.accent,flexShrink:0},children:r.jsx(we,{size:20})}),r.jsx("div",{children:r.jsx("h3",{style:{color:o.textPrimary,margin:0,fontSize:"18px",fontWeight:600,lineHeight:"1.4"},children:"Change Password"})})]}),r.jsx("button",{onClick:e,"aria-label":"Close password change modal",style:{background:"transparent",border:"none",color:o.textTertiary,cursor:"pointer",padding:"8px",borderRadius:"8px",flexShrink:0,width:"36px",height:"36px",display:"flex",alignItems:"center",justifyContent:"center"},onMouseOver:b=>{b.currentTarget.style.backgroundColor=o.border,b.currentTarget.style.color=o.textPrimary},onMouseOut:b=>{b.currentTarget.style.backgroundColor="transparent",b.currentTarget.style.color=o.textTertiary},children:r.jsx(Re,{size:20})})]}),r.jsxs("form",{onSubmit:z,children:[D.map(({field:b,label:j,icon:q})=>r.jsxs("div",{style:{marginBottom:"20px",position:"relative"},children:[r.jsx("label",{htmlFor:b,style:{display:"block",marginBottom:"8px",color:o.textPrimary,fontSize:"14px",fontWeight:500,lineHeight:"1.4"},children:j}),r.jsxs("div",{style:{position:"relative"},children:[r.jsx("div",{style:{position:"absolute",left:"14px",top:"50%",transform:"translateY(-50%)",color:o.textTertiary,zIndex:2},children:q}),r.jsx("input",{type:C[b]?"text":"password",id:b,name:b,placeholder:`Enter ${j.toLowerCase()}`,value:d[b],onChange:R,style:{width:"100%",padding:"14px 48px 14px 44px",borderRadius:"10px",border:`1.5px solid ${f[b]?o.error:o.border}`,backgroundColor:"transparent",color:o.textPrimary,fontSize:"15px",outline:"none",transition:"all 0.2s ease",boxSizing:"border-box"},onFocus:O=>{O.target.style.borderColor=o.accent,O.target.style.boxShadow=`0 0 0 3px ${o.accent}20`},onBlur:O=>{O.target.style.borderColor=f[b]?o.error:o.border,O.target.style.boxShadow="none"}}),r.jsx("button",{type:"button",onClick:()=>T(b),style:{position:"absolute",right:"14px",top:"50%",transform:"translateY(-50%)",background:"transparent",border:"none",cursor:"pointer",color:o.textTertiary,padding:"4px",borderRadius:"4px",width:"32px",height:"32px",display:"flex",alignItems:"center",justifyContent:"center"},onMouseOver:O=>{O.currentTarget.style.backgroundColor=o.border,O.currentTarget.style.color=o.textPrimary},onMouseOut:O=>{O.currentTarget.style.backgroundColor="transparent",O.currentTarget.style.color=o.textTertiary},children:C[b]?r.jsx(rt,{size:18}):r.jsx(nt,{size:18})})]}),f[b]&&r.jsxs("div",{style:{fontSize:"13px",color:o.error,marginTop:"6px",display:"flex",alignItems:"center",gap:"6px"},children:[r.jsx("span",{style:{fontSize:"16px"},children:"⚠"}),f[b]]})]},b)),r.jsxs("div",{style:{display:"flex",gap:"12px",flexDirection:w?"column-reverse":"row",justifyContent:"flex-end",alignItems:"stretch"},children:[r.jsx("button",{type:"button",onClick:e,disabled:y,style:{padding:"14px 24px",borderRadius:"10px",border:`1.5px solid ${o.border}`,background:"transparent",color:o.textPrimary,fontSize:"14px",fontWeight:500,cursor:y?"not-allowed":"pointer",flex:w?"none":1,minWidth:w?"100%":"120px",opacity:y?.6:1,transition:"all 0.2s ease"},onMouseOver:b=>{y||(b.currentTarget.style.backgroundColor=o.border,b.currentTarget.style.transform="translateY(-1px)")},onMouseOut:b=>{y||(b.currentTarget.style.backgroundColor="transparent",b.currentTarget.style.transform="translateY(0)")},children:"Cancel"}),r.jsx("button",{type:"submit",disabled:y,style:{padding:"14px 24px",borderRadius:"10px",border:"none",background:`linear-gradient(135deg, ${o.accent}, ${o.accent}E6)`,color:"#fff",fontSize:"14px",fontWeight:600,cursor:y?"not-allowed":"pointer",flex:w?"none":1,minWidth:w?"100%":"140px",opacity:y?.8:1,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",transition:"all 0.2s ease",boxShadow:y?"none":`0 4px 12px ${o.accent}40`},onMouseOver:b=>{y||(b.currentTarget.style.transform="translateY(-1px)",b.currentTarget.style.boxShadow=`0 6px 20px ${o.accent}60`)},onMouseOut:b=>{y||(b.currentTarget.style.transform="translateY(0)",b.currentTarget.style.boxShadow=`0 4px 12px ${o.accent}40`)},children:y?r.jsxs(r.Fragment,{children:[r.jsx(se,{size:16,style:{animation:"spin 1s linear infinite"}}),"Updating..."]}):"Update Password"})]})]}),r.jsx("style",{children:`
315
315
  @keyframes spin {
316
316
  from { transform: rotate(0deg); }
317
317
  to { transform: rotate(360deg); }
@@ -349,7 +349,7 @@ React keys must be passed directly to JSX without using spread:
349
349
  padding: 16px 12px;
350
350
  }
351
351
  }
352
- `})]})})},ns=({isOpen:t,onClose:e,onVerify:n,onSendOTP:s,verifyFormData:i,setVerifyFormData:o,otpSent:a,verifying:d,user:c,colors:f,darkMode:x})=>{if(!t)return null;const y=()=>{e(),o({email:c?.email||"",otp:""})};return r.jsxs("div",{className:"modal-overlay",style:{backgroundColor:x?"rgba(0, 0, 0, 0.8)":"rgba(0, 0, 0, 0.5)"},children:[r.jsxs("div",{className:"verify-email-modal",style:{backgroundColor:f.surface,border:`1px solid ${f.border}`},children:[r.jsxs("div",{className:"modal-header",children:[r.jsx("h3",{style:{color:f.textPrimary},children:"Verify Your Email"}),r.jsx("button",{onClick:y,className:"close-btn",style:{color:f.textTertiary},"aria-label":"Close verification modal",children:r.jsx(Oe,{size:20,"aria-hidden":"true"})})]}),r.jsxs("form",{className:"verify-form",onSubmit:n,children:[r.jsxs("div",{className:"form-group",children:[r.jsx("label",{style:{color:f.textSecondary},children:"Email"}),r.jsxs("div",{className:"input-container",children:[r.jsx(pe,{size:18,style:{color:f.textTertiary},"aria-hidden":"true"}),r.jsx("input",{type:"email",value:i.email,onChange:E=>o(C=>({...C,email:E.target.value})),placeholder:"Enter your email",style:{backgroundColor:f.surfaceLight,color:f.textPrimary,borderColor:f.border},required:!0,"aria-required":"true","aria-label":"Email address"})]})]}),a&&r.jsxs("div",{className:"form-group",children:[r.jsx("label",{style:{color:f.textSecondary},children:"OTP"}),r.jsxs("div",{className:"input-container",children:[r.jsx(Qt,{size:18,style:{color:f.textTertiary},"aria-hidden":"true"}),r.jsx("input",{type:"text",value:i.otp,onChange:E=>o(C=>({...C,otp:E.target.value})),placeholder:"Enter OTP",style:{backgroundColor:f.surfaceLight,color:f.textPrimary,borderColor:f.border},required:!0,"aria-required":"true","aria-label":"One-time password"})]})]}),r.jsx("div",{className:"modal-actions",children:a?r.jsxs("button",{type:"submit",disabled:d,className:"btn-primary",style:{background:`linear-gradient(to right, ${f.accent}, ${f.accentHover})`,opacity:d?.7:1},"aria-label":d?"Verifying email":"Verify email",children:[d?r.jsx(se,{size:16,className:"spinner","aria-hidden":"true"}):r.jsx(ce,{size:16,"aria-hidden":"true"}),d?"Verifying...":"Verify Email"]}):r.jsxs("button",{type:"button",onClick:s,disabled:d,className:"btn-primary",style:{background:`linear-gradient(to right, ${f.accent}, ${f.accentHover})`,opacity:d?.7:1},"aria-label":d?"Sending OTP":"Send OTP",children:[d?r.jsx(se,{size:16,className:"spinner","aria-hidden":"true"}):r.jsx(ot,{size:16,"aria-hidden":"true"}),d?"Sending...":"Send OTP"]})})]})]}),r.jsx("style",{children:`
352
+ `})]})})},ns=({isOpen:t,onClose:e,onVerify:n,onSendOTP:s,verifyFormData:i,setVerifyFormData:o,otpSent:a,verifying:d,user:c,colors:f,darkMode:x})=>{if(!t)return null;const y=()=>{e(),o({email:c?.email||"",otp:""})};return r.jsxs("div",{className:"modal-overlay",style:{backgroundColor:x?"rgba(0, 0, 0, 0.8)":"rgba(0, 0, 0, 0.5)"},children:[r.jsxs("div",{className:"verify-email-modal",style:{backgroundColor:f.surface,border:`1px solid ${f.border}`},children:[r.jsxs("div",{className:"modal-header",children:[r.jsx("h3",{style:{color:f.textPrimary},children:"Verify Your Email"}),r.jsx("button",{onClick:y,className:"close-btn",style:{color:f.textTertiary},"aria-label":"Close verification modal",children:r.jsx(Re,{size:20,"aria-hidden":"true"})})]}),r.jsxs("form",{className:"verify-form",onSubmit:n,children:[r.jsxs("div",{className:"form-group",children:[r.jsx("label",{style:{color:f.textSecondary},children:"Email"}),r.jsxs("div",{className:"input-container",children:[r.jsx(pe,{size:18,style:{color:f.textTertiary},"aria-hidden":"true"}),r.jsx("input",{type:"email",value:i.email,onChange:k=>o(C=>({...C,email:k.target.value})),placeholder:"Enter your email",style:{backgroundColor:f.surfaceLight,color:f.textPrimary,borderColor:f.border},required:!0,"aria-required":"true","aria-label":"Email address"})]})]}),a&&r.jsxs("div",{className:"form-group",children:[r.jsx("label",{style:{color:f.textSecondary},children:"OTP"}),r.jsxs("div",{className:"input-container",children:[r.jsx(Qt,{size:18,style:{color:f.textTertiary},"aria-hidden":"true"}),r.jsx("input",{type:"text",value:i.otp,onChange:k=>o(C=>({...C,otp:k.target.value})),placeholder:"Enter OTP",style:{backgroundColor:f.surfaceLight,color:f.textPrimary,borderColor:f.border},required:!0,"aria-required":"true","aria-label":"One-time password"})]})]}),r.jsx("div",{className:"modal-actions",children:a?r.jsxs("button",{type:"submit",disabled:d,className:"btn-primary",style:{background:`linear-gradient(to right, ${f.accent}, ${f.accentHover})`,opacity:d?.7:1},"aria-label":d?"Verifying email":"Verify email",children:[d?r.jsx(se,{size:16,className:"spinner","aria-hidden":"true"}):r.jsx(ce,{size:16,"aria-hidden":"true"}),d?"Verifying...":"Verify Email"]}):r.jsxs("button",{type:"button",onClick:s,disabled:d,className:"btn-primary",style:{background:`linear-gradient(to right, ${f.accent}, ${f.accentHover})`,opacity:d?.7:1},"aria-label":d?"Sending OTP":"Send OTP",children:[d?r.jsx(se,{size:16,className:"spinner","aria-hidden":"true"}):r.jsx(ot,{size:16,"aria-hidden":"true"}),d?"Sending...":"Send OTP"]})})]})]}),r.jsx("style",{children:`
353
353
  .modal-overlay {
354
354
  position: fixed;
355
355
  top: 0;
@@ -496,7 +496,7 @@ React keys must be passed directly to JSX without using spread:
496
496
  animation: none;
497
497
  }
498
498
  }
499
- `})]})},ss=({darkMode:t=!0,homeUrl:e,onLogout:n,onVerify:s,primaryColor:i="#00C212"})=>{const o=me(),[a,d]=S.useState(null),[c,f]=S.useState(),[x,y]=S.useState(!0),[E,C]=S.useState(!1),[u,w]=S.useState(!1),[h,O]=S.useState(!1),[T,g]=S.useState(!1),[z,D]=S.useState(!1),[b,j]=S.useState(!1),[q,R]=S.useState(!1),[X,W]=S.useState(!1),[I,G]=S.useState(null),[P,_]=S.useState(!1),[M,K]=S.useState({email:"",otp:""}),[H,L]=S.useState(!1),[J,l]=S.useState(!1);S.useEffect(()=>{if(typeof window<"u"){const v=()=>d(window.innerWidth);return v(),window.addEventListener("resize",v),()=>window.removeEventListener("resize",v)}},[]);const m=(v,$)=>{G({type:v,message:$}),setTimeout(()=>G(null),3e3)},k=()=>{W(!0);const v=setTimeout(()=>{R(!1),W(!1)},150);return()=>clearTimeout(v)};S.useEffect(()=>{const v=$=>{const V=document.querySelector(".dropdown-container");V&&!V.contains($.target)&&k()};return q&&document.addEventListener("mousedown",v),()=>{document.removeEventListener("mousedown",v)}},[q]);const U=async()=>{if(!M.email||!/\S+@\S+\.\S+/.test(M.email)){m("error","Please enter a valid email");return}if(!c?.id){m("error","User not found. Cannot send OTP.");return}try{l(!0);const v=await o.requestEmailVerificationOTP({userId:c.id,email:M.email}),$=v?.data?.success??v?.success,V=v?.data?.message??v?.message;$?(m("success",V||"OTP sent to email!"),L(!0)):m("error",V||"Failed to send OTP")}catch(v){const $=v?.response?.data?.message||v?.message||"Server error";m("error",$)}finally{l(!1)}},ne=async v=>{if(v.preventDefault(),!M.email||!M.otp){m("error","Please fill in all fields");return}if(!c){m("error","User not found");return}try{l(!0);const $=await o.verifyEmail({email:M.email,otp:M.otp}),V=$?.data?.success??$?.success,Q=$?.data?.message??$?.message;if(V){m("success",Q||"Email verified!");const ue={...c,isVerified:!0};f(ue),typeof s=="function"&&s(ue),K({email:ue.email,otp:""}),L(!1),j?.(!1)}else m("error",Q||"Verification failed")}catch($){const V=$?.response?.data?.message||$?.message||"Something went wrong";m("error",V)}finally{l(!1)}},le=async v=>{if(!c)return!1;try{const $=await o.updateUser({userId:c.id,avatarUrl:v});if($?.success){const V={...c,...$.user,avatarUrl:v};return f(V),m("success","Avatar updated successfully!"),!0}return m("error",$?.message||"Failed to update avatar"),!1}catch($){return console.error("Avatar update error:",$),m("error","Failed to update avatar"),!1}},B=async()=>{if(c){w(!0);try{const v=c.email,$=await o.updateUser({userId:c.id,...c});if($.success&&$.user){const V=$.user.email!==v,Q={...c,...$.user,isVerified:V?!1:c.isVerified};f(Q),localStorage.setItem("userInfo",JSON.stringify(Q)),m("success",V?"Email updated. Please verify your new email.":"Profile updated successfully"),C(!1)}else m("error",$.message||"Update failed")}catch(v){console.error(v),m("error","Update failed")}finally{w(!1)}}},de=async v=>{try{const $=await o.checkIfUserExists(v);$?.success===!0&&$?.exists===!1&&(console.warn("❌ User does not exist on server. Clearing session..."),localStorage.removeItem("userInfo"),f(null))}catch($){console.error("⚠️ User validation request failed:",$)}};S.useEffect(()=>{(async()=>{try{y(!0);const $=await o.checkUserSession();if($.user?.id){const V=$.user.id,Q=await o.getUserProfile({userId:V});if(Q.user){const ue=Q.user;f(ue),de(V)}else f(null),localStorage.removeItem("userInfo")}else f(null),localStorage.removeItem("userInfo")}catch($){console.error("User init failed:",$),f(null),localStorage.removeItem("userInfo")}finally{y(!1)}})()},[]),S.useEffect(()=>{c?.email&&K(v=>({...v,email:c.email}))},[c?.email]);const je=(v,$)=>{let V=parseInt(v.replace("#",""),16),Q=(V>>16)+$,ue=(V>>8&255)+$,at=(V&255)+$;return Q=Math.min(255,Math.max(0,Q)),ue=Math.min(255,Math.max(0,ue)),at=Math.min(255,Math.max(0,at)),`#${(at|ue<<8|Q<<16).toString(16).padStart(6,"0")}`},A=t?{background:"#000000",surface:"#09090b",surfaceLight:"#27272a",surfaceLighter:"#3f3f46",textPrimary:"#ffffff",textSecondary:"#d4d4d8",textTertiary:"#a1a1aa",accent:i,accentHover:je(i,-15),success:"#10b981",error:"#ef4444",border:"#27272a",warning:"#f59e0b"}:{background:"#ffffff",surface:"#fafafa",surfaceLight:"#f4f4f5",surfaceLighter:"#e4e4e7",textPrimary:"#18181b",textSecondary:"#52525b",textTertiary:"#71717a",accent:i,accentHover:je(i,-15),success:"#10b981",error:"#ef4444",border:"#e4e4e7",warning:"#d97706"};if(x)return r.jsx("div",{style:{width:"100%",minHeight:"400px",display:"flex",alignItems:"center",justifyContent:"center",color:A.textPrimary,fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, sans-serif"},children:r.jsxs("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",gap:"16px",textAlign:"center"},children:[r.jsx(se,{size:40,color:A.accent,style:{animation:"spin 1s linear infinite"},"aria-hidden":"true"}),r.jsx("p",{style:{color:A.textTertiary,margin:0},children:"Loading your profile..."})]})});if(!c)return r.jsx("div",{style:{width:"100%",minHeight:"400px",display:"flex",alignItems:"center",justifyContent:"center",color:A.textPrimary,fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, sans-serif"},children:r.jsxs("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",gap:"12px",textAlign:"center"},children:[r.jsx(oe,{size:40,color:A.error,"aria-hidden":"true"}),r.jsx("p",{style:{color:A.textTertiary,margin:0},children:"No profile found. Please log in again."})]})});const as=[{label:"Full Name",value:c.name,name:"name",type:"text",icon:Se},{label:"Email Address",value:c.email,name:"email",type:"email",icon:pe},{label:"Phone Number",value:c.phone||"Not set",name:"phone",type:"tel",icon:Hn},{label:"Address",value:c.address||"Not provided",name:"address",type:"text",icon:Wn}];return r.jsxs("div",{style:{width:"100%",display:"flex",alignItems:"center",justifyContent:"center",color:A.textPrimary,fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, sans-serif",lineHeight:1.5,minHeight:"80vh"},children:[I&&r.jsxs("div",{style:{position:"fixed",top:"20px",right:"20px",padding:"12px 24px",borderRadius:"12px",boxShadow:"0 25px 50px -12px rgba(0, 0, 0, 0.25)",backdropFilter:"blur(8px)",border:"1px solid",zIndex:1e3,display:"flex",alignItems:"center",gap:"8px",fontSize:"12px",fontWeight:500,maxWidth:"400px",animation:"slideIn 0.3s ease-out",...I.type==="success"?{backgroundColor:t?"rgba(16, 185, 129, 0.1)":"rgba(16, 185, 129, 0.05)",borderColor:t?"rgba(16, 185, 129, 0.3)":"rgba(16, 185, 129, 0.2)",color:t?"#34d399":"#059669"}:{backgroundColor:t?"rgba(239, 68, 68, 0.1)":"rgba(239, 68, 68, 0.05)",borderColor:t?"rgba(239, 68, 68, 0.3)":"rgba(239, 68, 68, 0.2)",color:t?"#f87171":"#dc2626"}},role:"alert","aria-live":"polite",children:[I.type==="success"?r.jsx(ce,{size:20,"aria-hidden":"true"}):r.jsx(oe,{size:20,"aria-hidden":"true"}),I.message]}),r.jsx("div",{style:{maxWidth:"1200px",margin:"0 auto",width:"100%",boxSizing:"border-box"},children:r.jsxs("div",{style:{display:"grid",gap:"24px",gridTemplateColumns:"1fr",...a&&window.innerWidth>=1024&&{gridTemplateColumns:"1fr 2fr",gap:"10px"},...a&&window.innerWidth>=768&&a&&window.innerWidth<1024&&{gap:"10px"},...a&&window.innerWidth>=600&&a&&window.innerWidth<768&&{gap:"28px"}},children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"6px",height:"100%"},children:[r.jsxs("section",{style:{backgroundColor:A.surface,borderRadius:"16px",position:"relative",padding:"24px",boxShadow:"0 1px 3px rgba(0, 0, 0, 0.1)",textAlign:"center",display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",flex:1,minHeight:"300px"},children:[e&&r.jsx("a",{href:e||"/",target:"_self",rel:"noopener noreferrer",style:{position:"absolute",top:"18px",left:"18px"},children:r.jsx(Fn,{size:20,style:{color:t?"#ffffff":"#000000"}})}),r.jsxs("div",{style:{position:"relative",display:"inline-block",marginBottom:"16px"},children:[r.jsx("img",{src:c.avatarUrl||`https://api.dicebear.com/9.x/initials/svg?seed=${encodeURIComponent(c.name)}`,alt:`Profile avatar of ${c.name}`,style:{width:"128px",height:"128px",borderRadius:"50%",objectFit:"cover",boxShadow:"0 10px 25px -5px rgba(0, 0, 0, 0.3)",border:`3px solid ${A.border}`},width:128,height:128,loading:"eager"}),r.jsx("button",{onClick:()=>O(!0),style:{position:"absolute",bottom:"8px",right:"8px",backgroundColor:A.accent,color:"white",padding:"8px",borderRadius:"50%",border:"none",cursor:"pointer",transition:"all 0.2s ease",display:"flex",alignItems:"center",justifyContent:"center",width:"32px",height:"32px"},"aria-label":"Change profile picture",children:r.jsx(et,{size:16,"aria-hidden":"true"})})]}),r.jsx("h2",{style:{fontSize:"24px",fontWeight:600,margin:"0 0 4px 0",color:A.textPrimary},children:c.name}),r.jsx("p",{style:{color:A.textTertiary,margin:"0 0 8px 0"},children:c.email}),r.jsxs("div",{style:{backgroundColor:c.isVerified?t?"rgba(16, 185, 129, 0.1)":"rgba(16, 185, 129, 0.05)":t?"rgba(245, 158, 11, 0.1)":"rgba(245, 158, 11, 0.05)",color:c.isVerified?A.success:A.warning,border:`1px solid ${c.isVerified?t?"rgba(16, 185, 129, 0.3)":"rgba(16, 185, 129, 0.2)":t?"rgba(245, 158, 11, 0.3)":"rgba(245, 158, 11, 0.2)"}`,padding:"6px 12px",borderRadius:"20px",fontSize:"12px",fontWeight:500,display:"inline-flex",alignItems:"center",gap:"6px",marginTop:"8px"},children:[c.isVerified?r.jsx(ce,{size:16,"aria-hidden":"true"}):r.jsx(oe,{size:16,"aria-hidden":"true"}),c.isVerified?"Email Verified":"Not Verified"]})]}),r.jsx("nav",{style:{display:"flex",flexDirection:"column",gap:"6px"},children:E?r.jsxs(r.Fragment,{children:[r.jsxs("button",{onClick:()=>C(!1),style:{backgroundColor:A.surfaceLight,border:`1px solid ${A.border}`,color:A.textPrimary,padding:"10px 20px",borderRadius:"6px",borderStyle:"solid",cursor:"pointer",transition:"all 0.2s ease",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",textDecoration:"none",minHeight:"36px",flex:a&&window.innerWidth<1024?"1":"auto"},children:[r.jsx(Oe,{size:16,"aria-hidden":"true"}),"Cancel"]}),r.jsxs("button",{onClick:B,disabled:u,style:{background:`linear-gradient(to right, ${A.accent}, ${A.accentHover})`,opacity:u?.7:1,color:"white",padding:"10px 20px",borderRadius:"6px",border:"none",cursor:u?"not-allowed":"pointer",transition:"all 0.2s ease",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",textDecoration:"none",minHeight:"36px",flex:a&&window.innerWidth<1024?"1":"auto"},children:[u?r.jsx(se,{size:16,style:{animation:"spin 1s linear infinite"},"aria-hidden":"true"}):r.jsx(Vn,{size:16,"aria-hidden":"true"}),u?"Saving...":"Save Changes"]})]}):r.jsxs(r.Fragment,{children:[r.jsxs("button",{onClick:()=>C(!0),style:{background:`linear-gradient(to right, ${A.accent}, ${A.accentHover})`,color:"white",padding:"10px 20px",borderRadius:"6px",border:"none",cursor:"pointer",transition:"all 0.2s ease",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",textDecoration:"none",minHeight:"36px",flex:a&&window.innerWidth<1024?"1":"auto"},children:[r.jsx(Bn,{size:16,"aria-hidden":"true"}),"Edit Profile"]}),!c.isVerified&&r.jsxs("button",{onClick:()=>j(!0),disabled:P,style:{background:"linear-gradient(to right, #fbbf24, #f59e0b)",color:"white",padding:"10px 20px",borderRadius:"6px",border:"none",cursor:P?"not-allowed":"pointer",transition:"all 0.2s ease",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",minHeight:"36px",opacity:P?.7:1,flex:a&&window.innerWidth<1024?"1":"auto"},children:[P?r.jsx(se,{size:14,style:{animation:"spin 1s linear infinite"},"aria-hidden":"true"}):r.jsx(ot,{size:14,"aria-hidden":"true"}),P?"Sending...":"Verify Email"]}),r.jsxs("div",{style:{position:"relative"},children:[r.jsxs("button",{style:{backgroundColor:A.surfaceLight,color:A.textPrimary,padding:"10px 20px",borderRadius:"6px",border:"none",cursor:"pointer",transition:"all 0.2s ease",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",textDecoration:"none",minHeight:"36px",width:"100%",boxSizing:"border-box"},onClick:()=>R(!q),children:[r.jsx(Ln,{size:16,"aria-hidden":"true"}),"More Actions"]}),q&&r.jsxs("div",{className:`dropdown-container ${X?"closing":""}`,style:{position:"absolute",bottom:"100%",left:0,right:0,backgroundColor:A.surface,border:`1px solid ${A.border}`,borderRadius:"12px 12px 0 0",boxShadow:"0 -8px 24px rgba(0, 0, 0, 0.25)",zIndex:200,marginBottom:"6px",overflow:"hidden",animation:`${X?"drawerSlideDown":"drawerSlideUp"} 0.25s ease-out forwards`},children:[r.jsxs("button",{onClick:()=>{g(!0),k()},style:{width:"100%",padding:"14px 18px",backgroundColor:"transparent",border:"none",color:A.textPrimary,cursor:"pointer",transition:"all 0.2s ease",fontSize:"13px",fontWeight:500,display:"flex",alignItems:"center",gap:"8px",textAlign:"left"},onMouseEnter:v=>v.currentTarget.style.backgroundColor=A.surfaceLight,onMouseLeave:v=>v.currentTarget.style.backgroundColor="transparent",children:[r.jsx(st,{size:14,"aria-hidden":"true"}),"Change Password"]}),n&&r.jsxs("button",{onClick:()=>{n(),k()},style:{width:"100%",padding:"14px 18px",backgroundColor:"transparent",border:"none",color:t?"#fca5a5":"#dc2626",cursor:"pointer",transition:"all 0.2s ease",fontSize:"13px",fontWeight:500,display:"flex",alignItems:"center",gap:"8px",textAlign:"left"},onMouseEnter:v=>{v.currentTarget.style.backgroundColor=t?"rgba(239, 68, 68, 0.1)":"rgba(239, 68, 68, 0.05)"},onMouseLeave:v=>v.currentTarget.style.backgroundColor="transparent",children:[r.jsx(it,{size:14,"aria-hidden":"true"}),"Logout"]}),r.jsxs("button",{onClick:()=>{D(!0),k()},style:{width:"100%",padding:"14px 18px",backgroundColor:"transparent",border:"none",color:"#ef4444",cursor:"pointer",transition:"all 0.2s ease",fontSize:"13px",fontWeight:600,display:"flex",alignItems:"center",gap:"8px",textAlign:"left"},onMouseEnter:v=>{v.currentTarget.style.backgroundColor=t?"rgba(239, 68, 68, 0.1)":"rgba(239, 68, 68, 0.05)"},onMouseLeave:v=>v.currentTarget.style.backgroundColor="transparent",children:[r.jsx(Me,{size:14,"aria-hidden":"true"}),"Delete Account"]})]})]})]})})]}),r.jsxs("div",{style:{minWidth:0,display:"flex",flexDirection:"column",gap:"12px"},children:[r.jsxs("section",{style:{backgroundColor:A.surface,borderRadius:"16px",padding:"24px",boxShadow:"0 1px 3px rgba(0, 0, 0, 0.1)"},children:[r.jsxs("h2",{style:{fontSize:"20px",fontWeight:600,margin:"0 0 24px 0",color:A.textSecondary,display:"flex",alignItems:"center",gap:"8px"},children:[r.jsx(Se,{size:20,"aria-hidden":"true"}),"Personal Information"]}),r.jsx("div",{style:{display:"grid",gap:"20px",gridTemplateColumns:"1fr",...a&&window.innerWidth>=600&&{gridTemplateColumns:"1fr 1fr",gap:"20px"}},children:as.map(v=>{const $=v.icon;return r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"8px"},children:[r.jsxs("label",{style:{color:A.textTertiary,fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",gap:"8px"},children:[r.jsx($,{size:16,"aria-hidden":"true"}),v.label]}),E?r.jsx("input",{type:v.type,name:v.name,value:c[v.name],onChange:V=>f(Q=>Q&&{...Q,[V.target.name]:V.target.value}),style:{padding:"12px",borderRadius:"8px",border:`1px solid ${i}`,backgroundColor:"transparent",color:A.textPrimary,fontSize:"12px",outline:"none",transition:"border-color 0.2s ease",minHeight:"44px",width:"100%",boxSizing:"border-box"},placeholder:`Enter ${v.label.toLowerCase()}`,"aria-label":v.label}):r.jsx("div",{style:{padding:"12px",borderRadius:"8px",border:"1px solid transparent",fontSize:"12px",minHeight:"44px",display:"flex",alignItems:"center",boxSizing:"border-box",color:A.textPrimary,backgroundColor:t?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.05)"},children:v.value})]},v.name)})})]}),r.jsxs("section",{style:{backgroundColor:A.surface,borderRadius:"16px",padding:"30px 24px",boxShadow:"0 1px 3px rgba(0, 0, 0, 0.1)"},children:[r.jsxs("h2",{style:{fontSize:"20px",fontWeight:600,margin:"0 0 24px 0",color:A.textSecondary,display:"flex",alignItems:"center",gap:"8px"},children:[r.jsx(er,{size:20,"aria-hidden":"true"}),"Security Status"]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"16px"},children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",justifyContent:"space-between",padding:"12px 0"},children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",color:A.textSecondary},children:[r.jsx(pe,{size:16,"aria-hidden":"true"}),r.jsx("span",{children:"Email Verification"})]}),r.jsx("div",{style:{padding:"6px 12px",borderRadius:"8px",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",gap:"6px",...c.isVerified?{backgroundColor:t?"rgba(16, 185, 129, 0.1)":"rgba(16, 185, 129, 0.05)",color:A.success,border:`1px solid ${t?"rgba(16, 185, 129, 0.3)":"rgba(16, 185, 129, 0.2)"}`}:{backgroundColor:t?"rgba(245, 158, 11, 0.1)":"rgba(245, 158, 11, 0.05)",color:A.warning,border:`1px solid ${t?"rgba(245, 158, 11, 0.3)":"rgba(245, 158, 11, 0.2)"}`}},children:c.isVerified?r.jsxs(r.Fragment,{children:[r.jsx(ce,{size:16,"aria-hidden":"true"}),"Verified"]}):r.jsxs(r.Fragment,{children:[r.jsx(oe,{size:16,"aria-hidden":"true"}),"Not Verified"]})})]}),!c.isVerified&&r.jsx("div",{style:{padding:"12px",borderRadius:"8px",backgroundColor:t?"rgba(100, 100, 100, 0.1)":"rgba(0, 0, 0, 0.05)"},children:r.jsx("p",{style:{color:A.textTertiary,fontSize:"12px",margin:0},children:"Verify your email to unlock all features and enhance your account security."})})]})]})]})]})}),r.jsx(ts,{isOpen:h,onClose:()=>{O(!1)},onUpdate:le,colors:A}),r.jsx(rs,{userId:c.id,isOpen:T,onClose:()=>g(!1),onSuccess:v=>m("success",v),onError:v=>m("error",v),colors:A}),r.jsx(es,{userId:c.id,isOpen:z,onClose:()=>D(!1),onSuccess:v=>m("success",v),onError:v=>m("error",v),colors:A}),r.jsx(ns,{isOpen:b,onClose:()=>{j(!1),L(!1),K({email:c?.email||"",otp:""})},onVerify:ne,onSendOTP:U,verifyFormData:M,setVerifyFormData:K,otpSent:H,verifying:J,user:c,colors:A,darkMode:t}),r.jsx("style",{children:`
499
+ `})]})},ss=({darkMode:t=!0,homeUrl:e,onLogout:n,onVerify:s,primaryColor:i="#00C212"})=>{const o=me(),[a,d]=S.useState(null),[c,f]=S.useState(),[x,y]=S.useState(!0),[k,C]=S.useState(!1),[u,w]=S.useState(!1),[h,R]=S.useState(!1),[T,g]=S.useState(!1),[z,D]=S.useState(!1),[b,j]=S.useState(!1),[q,O]=S.useState(!1),[X,W]=S.useState(!1),[I,G]=S.useState(null),[P,_]=S.useState(!1),[M,K]=S.useState({email:"",otp:""}),[H,L]=S.useState(!1),[J,l]=S.useState(!1);S.useEffect(()=>{if(typeof window<"u"){const v=()=>d(window.innerWidth);return v(),window.addEventListener("resize",v),()=>window.removeEventListener("resize",v)}},[]);const m=(v,$)=>{G({type:v,message:$}),setTimeout(()=>G(null),3e3)},E=()=>{W(!0);const v=setTimeout(()=>{O(!1),W(!1)},150);return()=>clearTimeout(v)};S.useEffect(()=>{const v=$=>{const V=document.querySelector(".dropdown-container");V&&!V.contains($.target)&&E()};return q&&document.addEventListener("mousedown",v),()=>{document.removeEventListener("mousedown",v)}},[q]);const U=async()=>{if(!M.email||!/\S+@\S+\.\S+/.test(M.email)){m("error","Please enter a valid email");return}if(!c?.id){m("error","User not found. Cannot send OTP.");return}try{l(!0);const v=await o.requestEmailVerificationOTP({userId:c.id,email:M.email}),$=v?.data?.success??v?.success,V=v?.data?.message??v?.message;$?(m("success",V||"OTP sent to email!"),L(!0)):m("error",V||"Failed to send OTP")}catch(v){const $=v?.response?.data?.message||v?.message||"Server error";m("error",$)}finally{l(!1)}},ne=async v=>{if(v.preventDefault(),!M.email||!M.otp){m("error","Please fill in all fields");return}if(!c){m("error","User not found");return}try{l(!0);const $=await o.verifyEmail({email:M.email,otp:M.otp}),V=$?.data?.success??$?.success,Q=$?.data?.message??$?.message;if(V){m("success",Q||"Email verified!");const ue={...c,isVerified:!0};f(ue),typeof s=="function"&&s(ue),K({email:ue.email,otp:""}),L(!1),j?.(!1)}else m("error",Q||"Verification failed")}catch($){const V=$?.response?.data?.message||$?.message||"Something went wrong";m("error",V)}finally{l(!1)}},le=async v=>{if(!c)return!1;try{const $=await o.updateUser({userId:c.id,avatarUrl:v});if($?.success){const V={...c,...$.user,avatarUrl:v};return f(V),m("success","Avatar updated successfully!"),!0}return m("error",$?.message||"Failed to update avatar"),!1}catch($){return console.error("Avatar update error:",$),m("error","Failed to update avatar"),!1}},B=async()=>{if(c){w(!0);try{const v=c.email,$=await o.updateUser({userId:c.id,...c});if($.success&&$.user){const V=$.user.email!==v,Q={...c,...$.user,isVerified:V?!1:c.isVerified};f(Q),localStorage.setItem("userInfo",JSON.stringify(Q)),m("success",V?"Email updated. Please verify your new email.":"Profile updated successfully"),C(!1)}else m("error",$.message||"Update failed")}catch(v){console.error(v),m("error","Update failed")}finally{w(!1)}}},de=async v=>{try{const $=await o.checkIfUserExists(v);$?.success===!0&&$?.exists===!1&&(console.warn("❌ User does not exist on server. Clearing session..."),localStorage.removeItem("userInfo"),f(null))}catch($){console.error("⚠️ User validation request failed:",$)}};S.useEffect(()=>{(async()=>{try{y(!0);const $=await o.checkUserSession();if($.user?.id){const V=$.user.id,Q=await o.getUserProfile({userId:V});if(Q.user){const ue=Q.user;f(ue),de(V)}else f(null),localStorage.removeItem("userInfo")}else f(null),localStorage.removeItem("userInfo")}catch($){console.error("User init failed:",$),f(null),localStorage.removeItem("userInfo")}finally{y(!1)}})()},[]),S.useEffect(()=>{c?.email&&K(v=>({...v,email:c.email}))},[c?.email]);const je=(v,$)=>{let V=parseInt(v.replace("#",""),16),Q=(V>>16)+$,ue=(V>>8&255)+$,at=(V&255)+$;return Q=Math.min(255,Math.max(0,Q)),ue=Math.min(255,Math.max(0,ue)),at=Math.min(255,Math.max(0,at)),`#${(at|ue<<8|Q<<16).toString(16).padStart(6,"0")}`},A=t?{background:"#000000",surface:"#09090b",surfaceLight:"#27272a",surfaceLighter:"#3f3f46",textPrimary:"#ffffff",textSecondary:"#d4d4d8",textTertiary:"#a1a1aa",accent:i,accentHover:je(i,-15),success:"#10b981",error:"#ef4444",border:"#27272a",warning:"#f59e0b"}:{background:"#ffffff",surface:"#fafafa",surfaceLight:"#f4f4f5",surfaceLighter:"#e4e4e7",textPrimary:"#18181b",textSecondary:"#52525b",textTertiary:"#71717a",accent:i,accentHover:je(i,-15),success:"#10b981",error:"#ef4444",border:"#e4e4e7",warning:"#d97706"};if(x)return r.jsx("div",{style:{width:"100%",minHeight:"400px",display:"flex",alignItems:"center",justifyContent:"center",color:A.textPrimary,fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, sans-serif"},children:r.jsxs("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",gap:"16px",textAlign:"center"},children:[r.jsx(se,{size:40,color:A.accent,style:{animation:"spin 1s linear infinite"},"aria-hidden":"true"}),r.jsx("p",{style:{color:A.textTertiary,margin:0},children:"Loading your profile..."})]})});if(!c)return r.jsx("div",{style:{width:"100%",minHeight:"400px",display:"flex",alignItems:"center",justifyContent:"center",color:A.textPrimary,fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, sans-serif"},children:r.jsxs("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",gap:"12px",textAlign:"center"},children:[r.jsx(oe,{size:40,color:A.error,"aria-hidden":"true"}),r.jsx("p",{style:{color:A.textTertiary,margin:0},children:"No profile found. Please log in again."})]})});const as=[{label:"Full Name",value:c.name,name:"name",type:"text",icon:Se},{label:"Email Address",value:c.email,name:"email",type:"email",icon:pe},{label:"Phone Number",value:c.phone||"Not set",name:"phone",type:"tel",icon:Hn},{label:"Address",value:c.address||"Not provided",name:"address",type:"text",icon:Wn}];return r.jsxs("div",{style:{width:"100%",display:"flex",alignItems:"center",justifyContent:"center",color:A.textPrimary,fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, sans-serif",lineHeight:1.5,minHeight:"80vh"},children:[I&&r.jsxs("div",{style:{position:"fixed",top:"20px",right:"20px",padding:"12px 24px",borderRadius:"12px",boxShadow:"0 25px 50px -12px rgba(0, 0, 0, 0.25)",backdropFilter:"blur(8px)",border:"1px solid",zIndex:1e3,display:"flex",alignItems:"center",gap:"8px",fontSize:"12px",fontWeight:500,maxWidth:"400px",animation:"slideIn 0.3s ease-out",...I.type==="success"?{backgroundColor:t?"rgba(16, 185, 129, 0.1)":"rgba(16, 185, 129, 0.05)",borderColor:t?"rgba(16, 185, 129, 0.3)":"rgba(16, 185, 129, 0.2)",color:t?"#34d399":"#059669"}:{backgroundColor:t?"rgba(239, 68, 68, 0.1)":"rgba(239, 68, 68, 0.05)",borderColor:t?"rgba(239, 68, 68, 0.3)":"rgba(239, 68, 68, 0.2)",color:t?"#f87171":"#dc2626"}},role:"alert","aria-live":"polite",children:[I.type==="success"?r.jsx(ce,{size:20,"aria-hidden":"true"}):r.jsx(oe,{size:20,"aria-hidden":"true"}),I.message]}),r.jsx("div",{style:{maxWidth:"1200px",margin:"0 auto",width:"100%",boxSizing:"border-box"},children:r.jsxs("div",{style:{display:"grid",gap:"24px",gridTemplateColumns:"1fr",...a&&window.innerWidth>=1024&&{gridTemplateColumns:"1fr 2fr",gap:"10px"},...a&&window.innerWidth>=768&&a&&window.innerWidth<1024&&{gap:"10px"},...a&&window.innerWidth>=600&&a&&window.innerWidth<768&&{gap:"28px"}},children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"6px",height:"100%"},children:[r.jsxs("section",{style:{backgroundColor:A.surface,borderRadius:"16px",position:"relative",padding:"24px",boxShadow:"0 1px 3px rgba(0, 0, 0, 0.1)",textAlign:"center",display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",flex:1,minHeight:"300px"},children:[e&&r.jsx("a",{href:e||"/",target:"_self",rel:"noopener noreferrer",style:{position:"absolute",top:"18px",left:"18px"},children:r.jsx(Fn,{size:20,style:{color:t?"#ffffff":"#000000"}})}),r.jsxs("div",{style:{position:"relative",display:"inline-block",marginBottom:"16px"},children:[r.jsx("img",{src:c.avatarUrl||`https://api.dicebear.com/9.x/initials/svg?seed=${encodeURIComponent(c.name)}`,alt:`Profile avatar of ${c.name}`,style:{width:"128px",height:"128px",borderRadius:"50%",objectFit:"cover",boxShadow:"0 10px 25px -5px rgba(0, 0, 0, 0.3)",border:`3px solid ${A.border}`},width:128,height:128,loading:"eager"}),r.jsx("button",{onClick:()=>R(!0),style:{position:"absolute",bottom:"8px",right:"8px",backgroundColor:A.accent,color:"white",padding:"8px",borderRadius:"50%",border:"none",cursor:"pointer",transition:"all 0.2s ease",display:"flex",alignItems:"center",justifyContent:"center",width:"32px",height:"32px"},"aria-label":"Change profile picture",children:r.jsx(et,{size:16,"aria-hidden":"true"})})]}),r.jsx("h2",{style:{fontSize:"24px",fontWeight:600,margin:"0 0 4px 0",color:A.textPrimary},children:c.name}),r.jsx("p",{style:{color:A.textTertiary,margin:"0 0 8px 0"},children:c.email}),r.jsxs("div",{style:{backgroundColor:c.isVerified?t?"rgba(16, 185, 129, 0.1)":"rgba(16, 185, 129, 0.05)":t?"rgba(245, 158, 11, 0.1)":"rgba(245, 158, 11, 0.05)",color:c.isVerified?A.success:A.warning,border:`1px solid ${c.isVerified?t?"rgba(16, 185, 129, 0.3)":"rgba(16, 185, 129, 0.2)":t?"rgba(245, 158, 11, 0.3)":"rgba(245, 158, 11, 0.2)"}`,padding:"6px 12px",borderRadius:"20px",fontSize:"12px",fontWeight:500,display:"inline-flex",alignItems:"center",gap:"6px",marginTop:"8px"},children:[c.isVerified?r.jsx(ce,{size:16,"aria-hidden":"true"}):r.jsx(oe,{size:16,"aria-hidden":"true"}),c.isVerified?"Email Verified":"Not Verified"]})]}),r.jsx("nav",{style:{display:"flex",flexDirection:"column",gap:"6px"},children:k?r.jsxs(r.Fragment,{children:[r.jsxs("button",{onClick:()=>C(!1),style:{backgroundColor:A.surfaceLight,border:`1px solid ${A.border}`,color:A.textPrimary,padding:"10px 20px",borderRadius:"6px",borderStyle:"solid",cursor:"pointer",transition:"all 0.2s ease",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",textDecoration:"none",minHeight:"36px",flex:a&&window.innerWidth<1024?"1":"auto"},children:[r.jsx(Re,{size:16,"aria-hidden":"true"}),"Cancel"]}),r.jsxs("button",{onClick:B,disabled:u,style:{background:`linear-gradient(to right, ${A.accent}, ${A.accentHover})`,opacity:u?.7:1,color:"white",padding:"10px 20px",borderRadius:"6px",border:"none",cursor:u?"not-allowed":"pointer",transition:"all 0.2s ease",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",textDecoration:"none",minHeight:"36px",flex:a&&window.innerWidth<1024?"1":"auto"},children:[u?r.jsx(se,{size:16,style:{animation:"spin 1s linear infinite"},"aria-hidden":"true"}):r.jsx(Vn,{size:16,"aria-hidden":"true"}),u?"Saving...":"Save Changes"]})]}):r.jsxs(r.Fragment,{children:[r.jsxs("button",{onClick:()=>C(!0),style:{background:`linear-gradient(to right, ${A.accent}, ${A.accentHover})`,color:"white",padding:"10px 20px",borderRadius:"6px",border:"none",cursor:"pointer",transition:"all 0.2s ease",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",textDecoration:"none",minHeight:"36px",flex:a&&window.innerWidth<1024?"1":"auto"},children:[r.jsx(Bn,{size:16,"aria-hidden":"true"}),"Edit Profile"]}),!c.isVerified&&r.jsxs("button",{onClick:()=>j(!0),disabled:P,style:{background:"linear-gradient(to right, #fbbf24, #f59e0b)",color:"white",padding:"10px 20px",borderRadius:"6px",border:"none",cursor:P?"not-allowed":"pointer",transition:"all 0.2s ease",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",minHeight:"36px",opacity:P?.7:1,flex:a&&window.innerWidth<1024?"1":"auto"},children:[P?r.jsx(se,{size:14,style:{animation:"spin 1s linear infinite"},"aria-hidden":"true"}):r.jsx(ot,{size:14,"aria-hidden":"true"}),P?"Sending...":"Verify Email"]}),r.jsxs("div",{style:{position:"relative"},children:[r.jsxs("button",{style:{backgroundColor:A.surfaceLight,color:A.textPrimary,padding:"10px 20px",borderRadius:"6px",border:"none",cursor:"pointer",transition:"all 0.2s ease",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",textDecoration:"none",minHeight:"36px",width:"100%",boxSizing:"border-box"},onClick:()=>O(!q),children:[r.jsx(Ln,{size:16,"aria-hidden":"true"}),"More Actions"]}),q&&r.jsxs("div",{className:`dropdown-container ${X?"closing":""}`,style:{position:"absolute",bottom:"100%",left:0,right:0,backgroundColor:A.surface,border:`1px solid ${A.border}`,borderRadius:"12px 12px 0 0",boxShadow:"0 -8px 24px rgba(0, 0, 0, 0.25)",zIndex:200,marginBottom:"6px",overflow:"hidden",animation:`${X?"drawerSlideDown":"drawerSlideUp"} 0.25s ease-out forwards`},children:[r.jsxs("button",{onClick:()=>{g(!0),E()},style:{width:"100%",padding:"14px 18px",backgroundColor:"transparent",border:"none",color:A.textPrimary,cursor:"pointer",transition:"all 0.2s ease",fontSize:"13px",fontWeight:500,display:"flex",alignItems:"center",gap:"8px",textAlign:"left"},onMouseEnter:v=>v.currentTarget.style.backgroundColor=A.surfaceLight,onMouseLeave:v=>v.currentTarget.style.backgroundColor="transparent",children:[r.jsx(st,{size:14,"aria-hidden":"true"}),"Change Password"]}),n&&r.jsxs("button",{onClick:()=>{n(),E()},style:{width:"100%",padding:"14px 18px",backgroundColor:"transparent",border:"none",color:t?"#fca5a5":"#dc2626",cursor:"pointer",transition:"all 0.2s ease",fontSize:"13px",fontWeight:500,display:"flex",alignItems:"center",gap:"8px",textAlign:"left"},onMouseEnter:v=>{v.currentTarget.style.backgroundColor=t?"rgba(239, 68, 68, 0.1)":"rgba(239, 68, 68, 0.05)"},onMouseLeave:v=>v.currentTarget.style.backgroundColor="transparent",children:[r.jsx(it,{size:14,"aria-hidden":"true"}),"Logout"]}),r.jsxs("button",{onClick:()=>{D(!0),E()},style:{width:"100%",padding:"14px 18px",backgroundColor:"transparent",border:"none",color:"#ef4444",cursor:"pointer",transition:"all 0.2s ease",fontSize:"13px",fontWeight:600,display:"flex",alignItems:"center",gap:"8px",textAlign:"left"},onMouseEnter:v=>{v.currentTarget.style.backgroundColor=t?"rgba(239, 68, 68, 0.1)":"rgba(239, 68, 68, 0.05)"},onMouseLeave:v=>v.currentTarget.style.backgroundColor="transparent",children:[r.jsx(Me,{size:14,"aria-hidden":"true"}),"Delete Account"]})]})]})]})})]}),r.jsxs("div",{style:{minWidth:0,display:"flex",flexDirection:"column",gap:"12px"},children:[r.jsxs("section",{style:{backgroundColor:A.surface,borderRadius:"16px",padding:"24px",boxShadow:"0 1px 3px rgba(0, 0, 0, 0.1)"},children:[r.jsxs("h2",{style:{fontSize:"20px",fontWeight:600,margin:"0 0 24px 0",color:A.textSecondary,display:"flex",alignItems:"center",gap:"8px"},children:[r.jsx(Se,{size:20,"aria-hidden":"true"}),"Personal Information"]}),r.jsx("div",{style:{display:"grid",gap:"20px",gridTemplateColumns:"1fr",...a&&window.innerWidth>=600&&{gridTemplateColumns:"1fr 1fr",gap:"20px"}},children:as.map(v=>{const $=v.icon;return r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"8px"},children:[r.jsxs("label",{style:{color:A.textTertiary,fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",gap:"8px"},children:[r.jsx($,{size:16,"aria-hidden":"true"}),v.label]}),k?r.jsx("input",{type:v.type,name:v.name,value:c[v.name],onChange:V=>f(Q=>Q&&{...Q,[V.target.name]:V.target.value}),style:{padding:"12px",borderRadius:"8px",border:`1px solid ${i}`,backgroundColor:"transparent",color:A.textPrimary,fontSize:"12px",outline:"none",transition:"border-color 0.2s ease",minHeight:"44px",width:"100%",boxSizing:"border-box"},placeholder:`Enter ${v.label.toLowerCase()}`,"aria-label":v.label}):r.jsx("div",{style:{padding:"12px",borderRadius:"8px",border:"1px solid transparent",fontSize:"12px",minHeight:"44px",display:"flex",alignItems:"center",boxSizing:"border-box",color:A.textPrimary,backgroundColor:t?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.05)"},children:v.value})]},v.name)})})]}),r.jsxs("section",{style:{backgroundColor:A.surface,borderRadius:"16px",padding:"30px 24px",boxShadow:"0 1px 3px rgba(0, 0, 0, 0.1)"},children:[r.jsxs("h2",{style:{fontSize:"20px",fontWeight:600,margin:"0 0 24px 0",color:A.textSecondary,display:"flex",alignItems:"center",gap:"8px"},children:[r.jsx(er,{size:20,"aria-hidden":"true"}),"Security Status"]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:"16px"},children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",justifyContent:"space-between",padding:"12px 0"},children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"12px",color:A.textSecondary},children:[r.jsx(pe,{size:16,"aria-hidden":"true"}),r.jsx("span",{children:"Email Verification"})]}),r.jsx("div",{style:{padding:"6px 12px",borderRadius:"8px",fontSize:"12px",fontWeight:500,display:"flex",alignItems:"center",gap:"6px",...c.isVerified?{backgroundColor:t?"rgba(16, 185, 129, 0.1)":"rgba(16, 185, 129, 0.05)",color:A.success,border:`1px solid ${t?"rgba(16, 185, 129, 0.3)":"rgba(16, 185, 129, 0.2)"}`}:{backgroundColor:t?"rgba(245, 158, 11, 0.1)":"rgba(245, 158, 11, 0.05)",color:A.warning,border:`1px solid ${t?"rgba(245, 158, 11, 0.3)":"rgba(245, 158, 11, 0.2)"}`}},children:c.isVerified?r.jsxs(r.Fragment,{children:[r.jsx(ce,{size:16,"aria-hidden":"true"}),"Verified"]}):r.jsxs(r.Fragment,{children:[r.jsx(oe,{size:16,"aria-hidden":"true"}),"Not Verified"]})})]}),!c.isVerified&&r.jsx("div",{style:{padding:"12px",borderRadius:"8px",backgroundColor:t?"rgba(100, 100, 100, 0.1)":"rgba(0, 0, 0, 0.05)"},children:r.jsx("p",{style:{color:A.textTertiary,fontSize:"12px",margin:0},children:"Verify your email to unlock all features and enhance your account security."})})]})]})]})]})}),r.jsx(ts,{isOpen:h,onClose:()=>{R(!1)},onUpdate:le,colors:A}),r.jsx(rs,{userId:c.id,isOpen:T,onClose:()=>g(!1),onSuccess:v=>m("success",v),onError:v=>m("error",v),colors:A}),r.jsx(es,{userId:c.id,isOpen:z,onClose:()=>D(!1),onSuccess:v=>m("success",v),onError:v=>m("error",v),colors:A}),r.jsx(ns,{isOpen:b,onClose:()=>{j(!1),L(!1),K({email:c?.email||"",otp:""})},onVerify:ne,onSendOTP:U,verifyFormData:M,setVerifyFormData:K,otpSent:H,verifying:J,user:c,colors:A,darkMode:t}),r.jsx("style",{children:`
500
500
  @keyframes slideIn {
501
501
  from {
502
502
  transform: translateX(100%);
@@ -584,8 +584,8 @@ React keys must be passed directly to JSX without using spread:
584
584
  transition-duration: 0.01ms !important;
585
585
  }
586
586
  }
587
- `})]})},is=({darkMode:t=!0,primaryColor:e="#3b82f6",onLogout:n,varient:s="classic",propUser:i,className:o="",profileUrl:a,settingsUrl:d,showProfileMenuItem:c=!0,showSettingsMenuItem:f=!0,showViewProfileMenuItem:x=!0,profileLabel:y="My Profile",settingsLabel:E="Settings",viewProfileLabel:C="View Profile",logoutLabel:u="Sign Out"})=>{const w=me(),[h,O]=S.useState(!1),[T,g]=S.useState(null),[z,D]=S.useState(!0),[b,j]=S.useState(null),q=S.useRef(null),R=S.useRef(null),[X,W]=S.useState(!1),[I,G]=S.useState(!1);S.useEffect(()=>{if(typeof window>"u")return;const l=()=>{G(window.innerWidth<768)};return l(),window.addEventListener("resize",l),()=>window.removeEventListener("resize",l)},[]),S.useEffect(()=>{let l=!0;return(async()=>{try{if(D(!0),j(null),i){if(!i.id||!i.name||!i.email)throw new Error("Invalid user data provided");l&&g(i);return}const k=await w.checkUserSession();if(!l)return;if(!k?.authenticated||!k.user){g(null);return}const U={id:k.user.id,email:k.user.email,name:k.user.email.split("@")[0]};g(U)}catch(k){console.error("User initialization failed:",k),l&&(g(null),j(k.message||"Failed to load user"))}finally{l&&D(!1)}})(),()=>{l=!1}},[i,w]),S.useEffect(()=>{if(typeof window>"u")return;const l=()=>{if(!h||!R.current)return;const m=R.current.getBoundingClientRect(),k=window.innerWidth,U=window.innerHeight,ne=280,le=k-m.right,B=m.left;U-m.bottom;const de=le>=ne||le>B;W(de)};return l(),window.addEventListener("resize",l),()=>window.removeEventListener("resize",l)},[h]),S.useEffect(()=>{if(typeof window>"u"||typeof document>"u")return;const l=U=>{q.current&&!q.current.contains(U.target)&&!R.current?.contains(U.target)&&O(!1)},m=U=>{U.key==="Escape"&&O(!1)},k=()=>{h&&O(!1)};return h&&(document.addEventListener("mousedown",l),document.addEventListener("keydown",m),window.addEventListener("scroll",k)),()=>{document.removeEventListener("mousedown",l),document.removeEventListener("keydown",m),window.removeEventListener("scroll",k)}},[h]);const P=t?{surface:"#000000",surfaceElevated:"#000000",surfaceHover:"#262626",border:"#262626",borderLight:"#404040",textPrimary:"#ffffff",textSecondary:"#a3a3a3",textTertiary:"#737373",accent:e,accentHover:`${e}e6`,error:"#ef4444"}:{surface:"#ffffff",surfaceElevated:"#fafafa",surfaceHover:"#f5f5f5",border:"#e5e5e5",borderLight:"#f0f0f0",textPrimary:"#171717",textSecondary:"#525252",textTertiary:"#a3a3a3",accent:e,accentHover:`${e}e6`,error:"#ef4444"},_={wrapper:{position:"relative",display:"inline-block"},avatarButton:{display:"flex",alignItems:"center",gap:I?"6px":"8px",padding:I?"6px 10px 6px 6px":"8px 12px 8px 8px",borderRadius:"24px",backgroundColor:P.surface,cursor:"pointer",transition:"all 0.2s cubic-bezier(0.4, 0, 0.2, 1)",minWidth:I?"auto":"140px",maxWidth:I?"200px":"none",outline:"none"},avatarImage:{width:I?"28px":"32px",height:I?"28px":"32px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${P.borderLight}`,flexShrink:0},userInfo:{display:"flex",flexDirection:"column",alignItems:"flex-start",flex:1,minWidth:0,overflow:"hidden"},userName:{fontSize:I?"13px":"14px",fontWeight:600,color:P.textPrimary,lineHeight:"1.2",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",maxWidth:I?"80px":"120px"},userEmail:{fontSize:I?"11px":"12px",color:P.textTertiary,lineHeight:"1.2",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",maxWidth:I?"80px":"120px"},chevron:{transition:"transform 0.2s ease",transform:h?"rotate(180deg)":"rotate(0deg)",color:P.textTertiary,flexShrink:0},dropdown:{position:"absolute",top:"100%",marginTop:"8px",[X?"left":"right"]:"0",backgroundColor:P.surfaceElevated,border:`1px solid ${P.border}`,borderRadius:"12px",boxShadow:"0 20px 40px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.1)",width:"min(280px, 90vw)",maxWidth:"calc(100vw - 20px)",padding:"6px 6px 16px 6px",zIndex:1e3,fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",opacity:h?1:0,pointerEvents:h?"auto":"none",transition:"all 0.2s cubic-bezier(0.4, 0, 0.2, 1)",transform:h?"translateY(0) scale(1)":"translateY(-8px) scale(0.95)",overflow:"hidden"},dropdownSection:{padding:I?"10px 12px":"0px 16px","&:last-child":{borderBottom:"none"}},userSection:{display:"flex",alignItems:"center",gap:I?"10px":"12px",padding:I?"14px":"16px"},dropdownAvatar:{width:I?"40px":"48px",height:I?"40px":"48px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${P.borderLight}`,flexShrink:0},dropdownUserInfo:{display:"flex",flexDirection:"column",flex:1,minWidth:0},dropdownUserName:{fontSize:I?"15px":"16px",fontWeight:600,color:P.textPrimary,lineHeight:"1.2",marginBottom:"2px",overflow:"hidden",textOverflow:"ellipsis"},dropdownUserEmail:{fontSize:I?"13px":"14px",color:P.textSecondary,lineHeight:"1.2",overflow:"hidden",textOverflow:"ellipsis"},menuItem:{display:"flex",alignItems:"center",gap:I?"10px":"12px",padding:I?"10px 12px":"12px 16px",borderRadius:"8px",cursor:"pointer",transition:"all 0.15s ease",color:P.textPrimary,textDecoration:"none",border:"none",background:"none",width:"100%",fontSize:I?"13px":"14px",textAlign:"left",outline:"none"},menuItemText:{flex:1},icon:{width:I?"16px":"18px",height:I?"16px":"18px",color:P.textSecondary,flexShrink:0},logoutButton:{display:"flex",alignItems:"center",gap:I?"10px":"12px",padding:I?"10px 12px":"12px 16px",borderRadius:"8px",cursor:"pointer",transition:"all 0.15s ease",background:"none",border:"none",width:"100%",fontSize:I?"13px":"14px",color:P.error,textAlign:"left",outline:"none"},errorState:{padding:I?"16px 12px":"20px 16px",textAlign:"center",color:P.textSecondary,fontSize:I?"13px":"14px",display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",flexDirection:"column"},retryButton:{marginTop:"8px",padding:"8px 16px",backgroundColor:P.accent,color:"#ffffff",border:"none",borderRadius:"6px",cursor:"pointer",fontSize:"12px",fontWeight:500,transition:"background-color 0.2s ease"},loadingContainer:{display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",gap:"12px",padding:"16px"},loadingSkeleton:{display:"flex",alignItems:"center",gap:"10px",width:"100%"},skeletonAvatar:{width:"36px",height:"36px",borderRadius:"50%",backgroundColor:"#e5e7eb",animation:"pulse 1.5s infinite ease-in-out"},skeletonTextBlock:{flex:1,display:"flex",flexDirection:"column",gap:"6px"},skeletonLineShort:{width:"40%",height:"10px",borderRadius:"6px",backgroundColor:"#e5e7eb",animation:"pulse 1.5s infinite ease-in-out"},skeletonLineLong:{width:"70%",height:"10px",borderRadius:"6px",backgroundColor:"#e5e7eb",animation:"pulse 1.5s infinite ease-in-out"}},M=async()=>{j(null),D(!0);try{if(i){if(!i.id||!i.name||!i.email)throw new Error("Invalid user data provided");g(i);return}const l=await w.checkUserSession();if(!l?.authenticated||!l.user){g(null),j("User is not authenticated");return}const m={id:l.user.id,email:l.user.email,name:l.user.email.split("@")[0]};g(m)}catch(l){console.error("Retry failed:",l),g(null),j(l.message||"Failed to reload user")}finally{D(!1)}},K=(l,m)=>{(l.key==="Enter"||l.key===" ")&&(l.preventDefault(),m())},H=()=>a||T?.profileUrl,L=()=>{const l=H();l&&window.open(l,"_self","noopener,noreferrer")},J=()=>{d&&window.open(d,"_self","noopener,noreferrer")};return r.jsxs("div",{style:_.wrapper,ref:q,className:o,role:"menu","aria-label":"User menu",children:[s==="classic"?r.jsx("div",{ref:R,onClick:()=>O(l=>!l),onKeyDown:l=>K(l,()=>O(m=>!m)),tabIndex:0,role:"button","aria-haspopup":"true","aria-expanded":h,"aria-label":"Toggle user menu",children:T?.avatarUrl?r.jsx("img",{src:T.avatarUrl,alt:`${T?.name||"User"}'s avatar`,style:{width:I?"34px":"36px",height:I?"34px":"36px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${P.borderLight}`,flexShrink:0},loading:"lazy",onError:l=>{const m=l.target;m.onerror=null,m.src=`https://api.dicebear.com/9.x/initials/svg?seed=${encodeURIComponent(T?.name||"User")}`}}):r.jsx("img",{src:`https://api.dicebear.com/9.x/initials/svg?seed=${encodeURIComponent(T?.name||"User")}`,alt:"Default user avatar",style:{width:I?"34px":"40px",height:I?"34px":"40px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${P.borderLight}`,flexShrink:0},loading:"lazy"})}):r.jsxs("div",{ref:R,style:_.avatarButton,onClick:()=>O(l=>!l),onKeyDown:l=>K(l,()=>O(m=>!m)),tabIndex:0,role:"button","aria-haspopup":"true","aria-expanded":h,"aria-label":"Toggle user menu",onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.surfaceHover,l.currentTarget.style.boxShadow="0 4px 12px rgba(0,0,0,0.15)"},onMouseOut:l=>{l.currentTarget.style.backgroundColor=P.surface,l.currentTarget.style.boxShadow="none"},onBlur:l=>{l.currentTarget.style.outline="none"},children:[T?.avatarUrl?r.jsx("img",{src:T.avatarUrl,alt:`${T.name}'s avatar`,style:_.avatarImage,loading:"lazy",onError:l=>{const m=l.target;m.src="https://api.dicebear.com/9.x/glass/svg?seed=Kingston"}}):r.jsx("img",{src:"https://api.dicebear.com/9.x/glass/svg?seed=Kingston",alt:"Default user avatar",style:_.avatarImage,loading:"lazy"}),!I&&r.jsxs("div",{style:_.userInfo,children:[r.jsx("div",{style:_.userName,title:T?.name,children:T?.name||"Guest"}),T?.email&&r.jsx("div",{style:_.userEmail,title:T.email,children:T.email})]}),r.jsx(Un,{size:I?14:16,style:_.chevron,"aria-hidden":"true"})]}),h&&r.jsx("div",{style:_.dropdown,role:"menu","aria-label":"User options",children:z?r.jsxs("div",{style:_.loadingContainer,role:"status","aria-live":"polite",children:[r.jsx(se,{size:18,className:"animate-spin",style:{color:P.textSecondary},"aria-hidden":"true"}),r.jsxs("div",{style:_.loadingSkeleton,children:[r.jsx("div",{style:_.skeletonAvatar}),r.jsxs("div",{style:_.skeletonTextBlock,children:[r.jsx("div",{style:_.skeletonLineShort}),r.jsx("div",{style:_.skeletonLineLong})]})]})]}):T?r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:_.userSection,children:[T?.avatarUrl?r.jsx("img",{src:T.avatarUrl,alt:`${T.name}'s profile picture`,style:_.dropdownAvatar,loading:"lazy",onError:l=>{const m=l.target;m.src=`https://api.dicebear.com/9.x/initials/svg?seed=${T.name}`}}):r.jsx("img",{src:`https://api.dicebear.com/9.x/initials/svg?seed=${T.name}`,alt:`${T.name}'s default avatar`,style:_.dropdownAvatar,loading:"lazy"}),r.jsxs("div",{style:_.dropdownUserInfo,children:[r.jsx("div",{style:_.dropdownUserName,title:T.name,children:T.name}),r.jsx("div",{style:_.dropdownUserEmail,title:T.email,children:T.email})]})]}),r.jsxs("div",{style:_.dropdownSection,children:[c&&H()&&r.jsxs("button",{style:_.menuItem,onClick:L,onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.surfaceHover},onMouseOut:l=>{l.currentTarget.style.backgroundColor="transparent"},onKeyDown:l=>K(l,L),role:"menuitem",tabIndex:0,children:[r.jsx(Se,{style:_.icon,"aria-hidden":"true"}),r.jsx("span",{style:_.menuItemText,children:y})]}),f&&d&&r.jsxs("button",{style:_.menuItem,onClick:J,onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.surfaceHover},onMouseOut:l=>{l.currentTarget.style.backgroundColor="transparent"},onKeyDown:l=>K(l,J),role:"menuitem",tabIndex:0,children:[r.jsx(Yn,{style:_.icon,"aria-hidden":"true"}),r.jsx("span",{style:_.menuItemText,children:E})]}),x&&T.profileUrl&&r.jsxs("a",{href:T.profileUrl,target:"_self",rel:"noopener noreferrer",style:_.menuItem,onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.surfaceHover},onMouseOut:l=>{l.currentTarget.style.backgroundColor="transparent"},role:"menuitem",tabIndex:0,children:[r.jsx(pe,{style:_.icon,"aria-hidden":"true"}),r.jsx("span",{style:_.menuItemText,children:C})]})]}),r.jsx("div",{style:_.dropdownSection,children:r.jsxs("button",{style:_.logoutButton,onClick:n,onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.surfaceHover},onMouseOut:l=>{l.currentTarget.style.backgroundColor="transparent"},onKeyDown:l=>K(l,n),role:"menuitem",tabIndex:0,children:[r.jsx(it,{style:{..._.icon,color:P.error},"aria-hidden":"true"}),r.jsx("span",{style:_.menuItemText,children:u})]})})]}):r.jsxs("div",{style:_.errorState,role:"alert",children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"8px"},children:[r.jsx(oe,{size:16,"aria-hidden":"true"}),r.jsx("span",{children:b||"Not signed in"})]}),b&&b!=="Not signed in"&&r.jsx("button",{style:_.retryButton,onClick:M,onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.accentHover},onMouseOut:l=>{l.currentTarget.style.backgroundColor=P.accent},children:"Try Again"})]})}),r.jsx("style",{children:`@keyframes pulse {
587
+ `})]})},is=({darkMode:t=!0,primaryColor:e="#3b82f6",onLogout:n,varient:s="classic",propUser:i,className:o="",profileUrl:a,settingsUrl:d,showProfileMenuItem:c=!0,showSettingsMenuItem:f=!0,showViewProfileMenuItem:x=!0,profileLabel:y="My Profile",settingsLabel:k="Settings",viewProfileLabel:C="View Profile",logoutLabel:u="Sign Out"})=>{const w=me(),[h,R]=S.useState(!1),[T,g]=S.useState(null),[z,D]=S.useState(!0),[b,j]=S.useState(null),q=S.useRef(null),O=S.useRef(null),[X,W]=S.useState(!1),[I,G]=S.useState(!1);S.useEffect(()=>{if(typeof window>"u")return;const l=()=>{G(window.innerWidth<768)};return l(),window.addEventListener("resize",l),()=>window.removeEventListener("resize",l)},[]),S.useEffect(()=>{let l=!0;return(async()=>{try{if(D(!0),j(null),i){if(!i.id||!i.name||!i.email)throw new Error("Invalid user data provided");l&&g(i);return}const E=await w.checkUserSession();if(!l)return;if(!E?.authenticated||!E.user){g(null);return}const U={id:E.user.id,email:E.user.email,name:E.user.email.split("@")[0]};g(U)}catch(E){console.error("User initialization failed:",E),l&&(g(null),j(E.message||"Failed to load user"))}finally{l&&D(!1)}})(),()=>{l=!1}},[i,w]),S.useEffect(()=>{if(typeof window>"u")return;const l=()=>{if(!h||!O.current)return;const m=O.current.getBoundingClientRect(),E=window.innerWidth,U=window.innerHeight,ne=280,le=E-m.right,B=m.left;U-m.bottom;const de=le>=ne||le>B;W(de)};return l(),window.addEventListener("resize",l),()=>window.removeEventListener("resize",l)},[h]),S.useEffect(()=>{if(typeof window>"u"||typeof document>"u")return;const l=U=>{q.current&&!q.current.contains(U.target)&&!O.current?.contains(U.target)&&R(!1)},m=U=>{U.key==="Escape"&&R(!1)},E=()=>{h&&R(!1)};return h&&(document.addEventListener("mousedown",l),document.addEventListener("keydown",m),window.addEventListener("scroll",E)),()=>{document.removeEventListener("mousedown",l),document.removeEventListener("keydown",m),window.removeEventListener("scroll",E)}},[h]);const P=t?{surface:"#000000",surfaceElevated:"#000000",surfaceHover:"#262626",border:"#262626",borderLight:"#404040",textPrimary:"#ffffff",textSecondary:"#a3a3a3",textTertiary:"#737373",accent:e,accentHover:`${e}e6`,error:"#ef4444"}:{surface:"#ffffff",surfaceElevated:"#fafafa",surfaceHover:"#f5f5f5",border:"#e5e5e5",borderLight:"#f0f0f0",textPrimary:"#171717",textSecondary:"#525252",textTertiary:"#a3a3a3",accent:e,accentHover:`${e}e6`,error:"#ef4444"},_={wrapper:{position:"relative",display:"inline-block"},avatarButton:{display:"flex",alignItems:"center",gap:I?"6px":"8px",padding:I?"6px 10px 6px 6px":"8px 12px 8px 8px",borderRadius:"24px",backgroundColor:P.surface,cursor:"pointer",transition:"all 0.2s cubic-bezier(0.4, 0, 0.2, 1)",minWidth:I?"auto":"140px",maxWidth:I?"200px":"none",outline:"none"},avatarImage:{width:I?"28px":"32px",height:I?"28px":"32px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${P.borderLight}`,flexShrink:0},userInfo:{display:"flex",flexDirection:"column",alignItems:"flex-start",flex:1,minWidth:0,overflow:"hidden"},userName:{fontSize:I?"13px":"14px",fontWeight:600,color:P.textPrimary,lineHeight:"1.2",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",maxWidth:I?"80px":"120px"},userEmail:{fontSize:I?"11px":"12px",color:P.textTertiary,lineHeight:"1.2",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",maxWidth:I?"80px":"120px"},chevron:{transition:"transform 0.2s ease",transform:h?"rotate(180deg)":"rotate(0deg)",color:P.textTertiary,flexShrink:0},dropdown:{position:"absolute",top:"100%",marginTop:"8px",[X?"left":"right"]:"0",backgroundColor:P.surfaceElevated,border:`1px solid ${P.border}`,borderRadius:"12px",boxShadow:"0 20px 40px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.1)",width:"min(280px, 90vw)",maxWidth:"calc(100vw - 20px)",padding:"6px 6px 16px 6px",zIndex:1e3,fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",opacity:h?1:0,pointerEvents:h?"auto":"none",transition:"all 0.2s cubic-bezier(0.4, 0, 0.2, 1)",transform:h?"translateY(0) scale(1)":"translateY(-8px) scale(0.95)",overflow:"hidden"},dropdownSection:{padding:I?"10px 12px":"0px 16px","&:last-child":{borderBottom:"none"}},userSection:{display:"flex",alignItems:"center",gap:I?"10px":"12px",padding:I?"14px":"16px"},dropdownAvatar:{width:I?"40px":"48px",height:I?"40px":"48px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${P.borderLight}`,flexShrink:0},dropdownUserInfo:{display:"flex",flexDirection:"column",flex:1,minWidth:0},dropdownUserName:{fontSize:I?"15px":"16px",fontWeight:600,color:P.textPrimary,lineHeight:"1.2",marginBottom:"2px",overflow:"hidden",textOverflow:"ellipsis"},dropdownUserEmail:{fontSize:I?"13px":"14px",color:P.textSecondary,lineHeight:"1.2",overflow:"hidden",textOverflow:"ellipsis"},menuItem:{display:"flex",alignItems:"center",gap:I?"10px":"12px",padding:I?"10px 12px":"12px 16px",borderRadius:"8px",cursor:"pointer",transition:"all 0.15s ease",color:P.textPrimary,textDecoration:"none",border:"none",background:"none",width:"100%",fontSize:I?"13px":"14px",textAlign:"left",outline:"none"},menuItemText:{flex:1},icon:{width:I?"16px":"18px",height:I?"16px":"18px",color:P.textSecondary,flexShrink:0},logoutButton:{display:"flex",alignItems:"center",gap:I?"10px":"12px",padding:I?"10px 12px":"12px 16px",borderRadius:"8px",cursor:"pointer",transition:"all 0.15s ease",background:"none",border:"none",width:"100%",fontSize:I?"13px":"14px",color:P.error,textAlign:"left",outline:"none"},errorState:{padding:I?"16px 12px":"20px 16px",textAlign:"center",color:P.textSecondary,fontSize:I?"13px":"14px",display:"flex",alignItems:"center",justifyContent:"center",gap:"8px",flexDirection:"column"},retryButton:{marginTop:"8px",padding:"8px 16px",backgroundColor:P.accent,color:"#ffffff",border:"none",borderRadius:"6px",cursor:"pointer",fontSize:"12px",fontWeight:500,transition:"background-color 0.2s ease"},loadingContainer:{display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",gap:"12px",padding:"16px"},loadingSkeleton:{display:"flex",alignItems:"center",gap:"10px",width:"100%"},skeletonAvatar:{width:"36px",height:"36px",borderRadius:"50%",backgroundColor:"#e5e7eb",animation:"pulse 1.5s infinite ease-in-out"},skeletonTextBlock:{flex:1,display:"flex",flexDirection:"column",gap:"6px"},skeletonLineShort:{width:"40%",height:"10px",borderRadius:"6px",backgroundColor:"#e5e7eb",animation:"pulse 1.5s infinite ease-in-out"},skeletonLineLong:{width:"70%",height:"10px",borderRadius:"6px",backgroundColor:"#e5e7eb",animation:"pulse 1.5s infinite ease-in-out"}},M=async()=>{j(null),D(!0);try{if(i){if(!i.id||!i.name||!i.email)throw new Error("Invalid user data provided");g(i);return}const l=await w.checkUserSession();if(!l?.authenticated||!l.user){g(null),j("User is not authenticated");return}const m={id:l.user.id,email:l.user.email,name:l.user.email.split("@")[0]};g(m)}catch(l){console.error("Retry failed:",l),g(null),j(l.message||"Failed to reload user")}finally{D(!1)}},K=(l,m)=>{(l.key==="Enter"||l.key===" ")&&(l.preventDefault(),m())},H=()=>a||T?.profileUrl,L=()=>{const l=H();l&&window.open(l,"_self","noopener,noreferrer")},J=()=>{d&&window.open(d,"_self","noopener,noreferrer")};return r.jsxs("div",{style:_.wrapper,ref:q,className:o,role:"menu","aria-label":"User menu",children:[s==="classic"?r.jsx("div",{ref:O,onClick:()=>R(l=>!l),onKeyDown:l=>K(l,()=>R(m=>!m)),tabIndex:0,role:"button","aria-haspopup":"true","aria-expanded":h,"aria-label":"Toggle user menu",children:T?.avatarUrl?r.jsx("img",{src:T.avatarUrl,alt:`${T?.name||"User"}'s avatar`,style:{width:I?"34px":"36px",height:I?"34px":"36px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${P.borderLight}`,flexShrink:0},loading:"lazy",onError:l=>{const m=l.target;m.onerror=null,m.src=`https://api.dicebear.com/9.x/initials/svg?seed=${encodeURIComponent(T?.name||"User")}`}}):r.jsx("img",{src:`https://api.dicebear.com/9.x/initials/svg?seed=${encodeURIComponent(T?.name||"User")}`,alt:"Default user avatar",style:{width:I?"34px":"40px",height:I?"34px":"40px",borderRadius:"50%",objectFit:"cover",border:`2px solid ${P.borderLight}`,flexShrink:0},loading:"lazy"})}):r.jsxs("div",{ref:O,style:_.avatarButton,onClick:()=>R(l=>!l),onKeyDown:l=>K(l,()=>R(m=>!m)),tabIndex:0,role:"button","aria-haspopup":"true","aria-expanded":h,"aria-label":"Toggle user menu",onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.surfaceHover,l.currentTarget.style.boxShadow="0 4px 12px rgba(0,0,0,0.15)"},onMouseOut:l=>{l.currentTarget.style.backgroundColor=P.surface,l.currentTarget.style.boxShadow="none"},onBlur:l=>{l.currentTarget.style.outline="none"},children:[T?.avatarUrl?r.jsx("img",{src:T.avatarUrl,alt:`${T.name}'s avatar`,style:_.avatarImage,loading:"lazy",onError:l=>{const m=l.target;m.src="https://api.dicebear.com/9.x/glass/svg?seed=Kingston"}}):r.jsx("img",{src:"https://api.dicebear.com/9.x/glass/svg?seed=Kingston",alt:"Default user avatar",style:_.avatarImage,loading:"lazy"}),!I&&r.jsxs("div",{style:_.userInfo,children:[r.jsx("div",{style:_.userName,title:T?.name,children:T?.name||"Guest"}),T?.email&&r.jsx("div",{style:_.userEmail,title:T.email,children:T.email})]}),r.jsx(Un,{size:I?14:16,style:_.chevron,"aria-hidden":"true"})]}),h&&r.jsx("div",{style:_.dropdown,role:"menu","aria-label":"User options",children:z?r.jsxs("div",{style:_.loadingContainer,role:"status","aria-live":"polite",children:[r.jsx(se,{size:18,className:"animate-spin",style:{color:P.textSecondary},"aria-hidden":"true"}),r.jsxs("div",{style:_.loadingSkeleton,children:[r.jsx("div",{style:_.skeletonAvatar}),r.jsxs("div",{style:_.skeletonTextBlock,children:[r.jsx("div",{style:_.skeletonLineShort}),r.jsx("div",{style:_.skeletonLineLong})]})]})]}):T?r.jsxs(r.Fragment,{children:[r.jsxs("div",{style:_.userSection,children:[T?.avatarUrl?r.jsx("img",{src:T.avatarUrl,alt:`${T.name}'s profile picture`,style:_.dropdownAvatar,loading:"lazy",onError:l=>{const m=l.target;m.src=`https://api.dicebear.com/9.x/initials/svg?seed=${T.name}`}}):r.jsx("img",{src:`https://api.dicebear.com/9.x/initials/svg?seed=${T.name}`,alt:`${T.name}'s default avatar`,style:_.dropdownAvatar,loading:"lazy"}),r.jsxs("div",{style:_.dropdownUserInfo,children:[r.jsx("div",{style:_.dropdownUserName,title:T.name,children:T.name}),r.jsx("div",{style:_.dropdownUserEmail,title:T.email,children:T.email})]})]}),r.jsxs("div",{style:_.dropdownSection,children:[c&&H()&&r.jsxs("button",{style:_.menuItem,onClick:L,onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.surfaceHover},onMouseOut:l=>{l.currentTarget.style.backgroundColor="transparent"},onKeyDown:l=>K(l,L),role:"menuitem",tabIndex:0,children:[r.jsx(Se,{style:_.icon,"aria-hidden":"true"}),r.jsx("span",{style:_.menuItemText,children:y})]}),f&&d&&r.jsxs("button",{style:_.menuItem,onClick:J,onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.surfaceHover},onMouseOut:l=>{l.currentTarget.style.backgroundColor="transparent"},onKeyDown:l=>K(l,J),role:"menuitem",tabIndex:0,children:[r.jsx(Yn,{style:_.icon,"aria-hidden":"true"}),r.jsx("span",{style:_.menuItemText,children:k})]}),x&&T.profileUrl&&r.jsxs("a",{href:T.profileUrl,target:"_self",rel:"noopener noreferrer",style:_.menuItem,onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.surfaceHover},onMouseOut:l=>{l.currentTarget.style.backgroundColor="transparent"},role:"menuitem",tabIndex:0,children:[r.jsx(pe,{style:_.icon,"aria-hidden":"true"}),r.jsx("span",{style:_.menuItemText,children:C})]})]}),r.jsx("div",{style:_.dropdownSection,children:r.jsxs("button",{style:_.logoutButton,onClick:n,onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.surfaceHover},onMouseOut:l=>{l.currentTarget.style.backgroundColor="transparent"},onKeyDown:l=>K(l,n),role:"menuitem",tabIndex:0,children:[r.jsx(it,{style:{..._.icon,color:P.error},"aria-hidden":"true"}),r.jsx("span",{style:_.menuItemText,children:u})]})})]}):r.jsxs("div",{style:_.errorState,role:"alert",children:[r.jsxs("div",{style:{display:"flex",alignItems:"center",gap:"8px"},children:[r.jsx(oe,{size:16,"aria-hidden":"true"}),r.jsx("span",{children:b||"Not signed in"})]}),b&&b!=="Not signed in"&&r.jsx("button",{style:_.retryButton,onClick:M,onMouseOver:l=>{l.currentTarget.style.backgroundColor=P.accentHover},onMouseOut:l=>{l.currentTarget.style.backgroundColor=P.accent},children:"Try Again"})]})}),r.jsx("style",{children:`@keyframes pulse {
588
588
  0% { opacity: 1; }
589
589
  50% { opacity: 0.5; }
590
590
  100% { opacity: 1; }
591
- }`})]})},os=({user:t,darkMode:e=!0,primaryColor:n="#00C212",onVerify:s})=>{const i=me();if(!t)return r.jsxs("div",{style:{width:"100%",maxWidth:400,padding:24,borderRadius:12,backgroundColor:e?"#000000":"#f4f4f5",color:e?"#fff":"#18181b",textAlign:"center",display:"flex",flexDirection:"column",alignItems:"center",gap:5},children:[r.jsx(oe,{size:24,style:{marginBottom:8}}),r.jsx("p",{style:{margin:0},children:"User data is required to verify email."})]});const[o,a]=S.useState(!1),[d,c]=S.useState({email:t?.email||"",otp:""}),[f,x]=S.useState(!1),[y,E]=S.useState(!1),[C,u]=S.useState(null);S.useEffect(()=>{if(typeof window<"u"){const b=()=>a(window.innerWidth<768);return b(),window.addEventListener("resize",b),()=>window.removeEventListener("resize",b)}},[]);const w=(b,j)=>{let q=parseInt(b.replace("#",""),16),R=(q>>16)+j,X=(q>>8&255)+j,W=(q&255)+j;return R=Math.min(255,Math.max(0,R)),X=Math.min(255,Math.max(0,X)),W=Math.min(255,Math.max(0,W)),`#${(W|X<<8|R<<16).toString(16).padStart(6,"0")}`},h=e?{surface:"#000000",textPrimary:"#ffffff",textSecondary:"#d4d4d8",textTertiary:"#a1a1aa",border:"#27272a",accent:n,accentHover:w(n,-15),success:w(n,0),warning:"#f59e0b"}:{surface:"#fafafa",textPrimary:"#18181b",textSecondary:"#52525b",textTertiary:"#71717a",border:"#e4e4e7",accent:n,accentHover:w(n,-15),success:w(n,0),warning:"#d97706"};S.useEffect(()=>{t?.email&&c(b=>({...b,email:t.email}))},[t?.email]);const O=(b,j)=>{u({type:b,message:j}),setTimeout(()=>u(null),3e3)},T=async()=>{if(!d.email||!/\S+@\S+\.\S+/.test(d.email)){O("error","Please enter a valid email");return}if(!t?.id){O("error","User ID missing");return}try{E(!0);const b=await i.requestEmailVerificationOTP({userId:t.id,email:d.email});if(console.log("Send OTP response:",b),b.success||b.data?.success){const j=b.message||b.data?.message||"OTP sent!";O("success",j),x(!0)}else{const j=b.message||b.data?.message||"Failed to send OTP";O("error",j)}}catch(b){console.error("Send OTP error:",b),O("error",b.message||"Server error")}finally{E(!1)}},g=async b=>{if(b.preventDefault(),!d.email||!d.otp){O("error","Please fill in all fields");return}try{E(!0);const j=await i.verifyEmail({email:d.email,otp:d.otp});if(j.success){const q={...t,isVerified:!0};s?.(q),O("success",j.message||"Email verified!"),x(!1),c({email:t.email,otp:""})}else O("error",j.message||"Verification failed")}catch(j){O("error",j.message||"Server error")}finally{E(!1)}},z={width:"100%",padding:"12px 12px 12px 40px",borderRadius:8,border:`1px solid ${h.border}`,backgroundColor:e?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.02)",color:h.textPrimary,fontSize:14,outline:"none"},D=(b=!1)=>({flex:1,padding:12,borderRadius:8,color:"#fff",fontWeight:500,cursor:b?"not-allowed":"pointer",background:`linear-gradient(to right, ${h.accent}, ${h.accentHover})`,opacity:b?.7:1,display:"flex",alignItems:"center",justifyContent:"center",gap:8,fontSize:14,border:"none"});return r.jsxs("form",{onSubmit:g,style:{width:"100%",maxWidth:o?"340px":"400px",display:"flex",flexDirection:"column",gap:20,backgroundColor:h.surface,padding:24,borderRadius:10,border:`1px solid ${h.border}`,boxShadow:e?"0 6px 24px rgba(0,0,0,0.4)":"0 6px 24px rgba(0,0,0,0.08)"},children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",gap:8},children:[r.jsx(Nn,{size:32,color:h.accent}),r.jsx("h2",{style:{margin:0,fontSize:20,fontWeight:600,color:h.textPrimary},children:"Verify Your Email"}),r.jsx("p",{style:{margin:0,fontSize:13,color:h.textSecondary,textAlign:"center"},children:"Enter your email and OTP to confirm your account"})]}),C&&r.jsxs("div",{style:{padding:"12px 20px",borderRadius:12,fontSize:13,fontWeight:500,color:C.type==="success"?h.success:h.warning,border:`1px solid ${C.type==="success"?h.success:h.warning}`,backgroundColor:C.type==="success"?`${h.success}20`:`${h.warning}20`,display:"flex",alignItems:"center",gap:8},children:[C.type==="success"?r.jsx(ce,{size:16}):r.jsx(oe,{size:16}),C.message]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:4},children:[r.jsxs("div",{style:{position:"relative",display:"flex",alignItems:"center"},children:[r.jsx(pe,{size:18,style:{position:"absolute",left:12,color:h.textTertiary,pointerEvents:"none"}}),r.jsx("input",{type:"email",value:d.email,onChange:b=>c(j=>({...j,email:b.target.value})),placeholder:"Enter your email",style:{...z,paddingLeft:40,height:40,borderRadius:8,boxShadow:e?"0 2px 6px rgba(0,0,0,0.3)":"0 2px 6px rgba(0,0,0,0.08)"},required:!0})]}),r.jsx("small",{style:{fontSize:11,color:h.textTertiary,marginTop:2},children:"We'll send a verification code to this email"})]}),f&&r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:4},children:[r.jsxs("div",{style:{position:"relative",display:"flex",alignItems:"center"},children:[r.jsx(st,{size:18,style:{position:"absolute",left:12,color:h.textTertiary,pointerEvents:"none"}}),r.jsx("input",{type:"text",value:d.otp,onChange:b=>c(j=>({...j,otp:b.target.value})),placeholder:"Enter OTP",style:{...z,paddingLeft:40,height:40,borderRadius:8,boxShadow:e?"0 2px 6px rgba(0,0,0,0.3)":"0 2px 6px rgba(0,0,0,0.08)"},required:!0})]}),r.jsx("small",{style:{fontSize:11,color:h.textTertiary,marginTop:2},children:"Check your inbox for the 6-digit code"})]}),r.jsx("div",{style:{display:"flex",gap:12},children:f?r.jsxs("button",{type:"submit",disabled:y,style:{...D(y),borderRadius:12,padding:"12px 16px",fontSize:14},children:[y?r.jsx(se,{size:16,className:"spinner"}):r.jsx(ce,{size:16}),y?"Verifying...":"Verify Email"]}):r.jsxs("button",{type:"button",onClick:T,disabled:y||!t?.id,style:{...D(y),borderRadius:12,padding:"12px 16px",fontSize:14},children:[y?r.jsx(se,{size:16,className:"spinner"}):r.jsx(ot,{size:16}),y?"Sending...":"Send OTP"]})})]})};ee.AuthixProvider=Kn,ee.NeuctraAuthix=Tn,ee.ReactEmailVerification=os,ee.ReactSignedIn=Zn,ee.ReactSignedOut=Qn,ee.ReactUserButton=is,ee.ReactUserLogin=Xn,ee.ReactUserProfile=ss,ee.ReactUserSignUp=Gn,Object.defineProperty(ee,Symbol.toStringTag,{value:"Module"})}));
591
+ }`})]})},os=({user:t,darkMode:e=!0,primaryColor:n="#00C212",onVerify:s})=>{const i=me();if(!t)return r.jsxs("div",{style:{width:"100%",maxWidth:400,padding:24,borderRadius:12,backgroundColor:e?"#000000":"#f4f4f5",color:e?"#fff":"#18181b",textAlign:"center",display:"flex",flexDirection:"column",alignItems:"center",gap:5},children:[r.jsx(oe,{size:24,style:{marginBottom:8}}),r.jsx("p",{style:{margin:0},children:"User data is required to verify email."})]});const[o,a]=S.useState(!1),[d,c]=S.useState({email:t?.email||"",otp:""}),[f,x]=S.useState(!1),[y,k]=S.useState(!1),[C,u]=S.useState(null);S.useEffect(()=>{if(typeof window<"u"){const b=()=>a(window.innerWidth<768);return b(),window.addEventListener("resize",b),()=>window.removeEventListener("resize",b)}},[]);const w=(b,j)=>{let q=parseInt(b.replace("#",""),16),O=(q>>16)+j,X=(q>>8&255)+j,W=(q&255)+j;return O=Math.min(255,Math.max(0,O)),X=Math.min(255,Math.max(0,X)),W=Math.min(255,Math.max(0,W)),`#${(W|X<<8|O<<16).toString(16).padStart(6,"0")}`},h=e?{surface:"#000000",textPrimary:"#ffffff",textSecondary:"#d4d4d8",textTertiary:"#a1a1aa",border:"#27272a",accent:n,accentHover:w(n,-15),success:w(n,0),warning:"#f59e0b"}:{surface:"#fafafa",textPrimary:"#18181b",textSecondary:"#52525b",textTertiary:"#71717a",border:"#e4e4e7",accent:n,accentHover:w(n,-15),success:w(n,0),warning:"#d97706"};S.useEffect(()=>{t?.email&&c(b=>({...b,email:t.email}))},[t?.email]);const R=(b,j)=>{u({type:b,message:j}),setTimeout(()=>u(null),3e3)},T=async()=>{if(!d.email||!/\S+@\S+\.\S+/.test(d.email)){R("error","Please enter a valid email");return}if(!t?.id){R("error","User ID missing");return}try{k(!0);const b=await i.requestEmailVerificationOTP({userId:t.id,email:d.email});if(console.log("Send OTP response:",b),b.success||b.data?.success){const j=b.message||b.data?.message||"OTP sent!";R("success",j),x(!0)}else{const j=b.message||b.data?.message||"Failed to send OTP";R("error",j)}}catch(b){console.error("Send OTP error:",b),R("error",b.message||"Server error")}finally{k(!1)}},g=async b=>{if(b.preventDefault(),!d.email||!d.otp){R("error","Please fill in all fields");return}try{k(!0);const j=await i.verifyEmail({email:d.email,otp:d.otp});if(j.success){const q={...t,isVerified:!0};s?.(q),R("success",j.message||"Email verified!"),x(!1),c({email:t.email,otp:""})}else R("error",j.message||"Verification failed")}catch(j){R("error",j.message||"Server error")}finally{k(!1)}},z={width:"100%",padding:"12px 12px 12px 40px",borderRadius:8,border:`1px solid ${h.border}`,backgroundColor:e?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.02)",color:h.textPrimary,fontSize:14,outline:"none"},D=(b=!1)=>({flex:1,padding:12,borderRadius:8,color:"#fff",fontWeight:500,cursor:b?"not-allowed":"pointer",background:`linear-gradient(to right, ${h.accent}, ${h.accentHover})`,opacity:b?.7:1,display:"flex",alignItems:"center",justifyContent:"center",gap:8,fontSize:14,border:"none"});return r.jsxs("form",{onSubmit:g,style:{width:"100%",maxWidth:o?"340px":"400px",display:"flex",flexDirection:"column",gap:20,backgroundColor:h.surface,padding:24,borderRadius:10,border:`1px solid ${h.border}`,boxShadow:e?"0 6px 24px rgba(0,0,0,0.4)":"0 6px 24px rgba(0,0,0,0.08)"},children:[r.jsxs("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",gap:8},children:[r.jsx(Nn,{size:32,color:h.accent}),r.jsx("h2",{style:{margin:0,fontSize:20,fontWeight:600,color:h.textPrimary},children:"Verify Your Email"}),r.jsx("p",{style:{margin:0,fontSize:13,color:h.textSecondary,textAlign:"center"},children:"Enter your email and OTP to confirm your account"})]}),C&&r.jsxs("div",{style:{padding:"12px 20px",borderRadius:12,fontSize:13,fontWeight:500,color:C.type==="success"?h.success:h.warning,border:`1px solid ${C.type==="success"?h.success:h.warning}`,backgroundColor:C.type==="success"?`${h.success}20`:`${h.warning}20`,display:"flex",alignItems:"center",gap:8},children:[C.type==="success"?r.jsx(ce,{size:16}):r.jsx(oe,{size:16}),C.message]}),r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:4},children:[r.jsxs("div",{style:{position:"relative",display:"flex",alignItems:"center"},children:[r.jsx(pe,{size:18,style:{position:"absolute",left:12,color:h.textTertiary,pointerEvents:"none"}}),r.jsx("input",{type:"email",value:d.email,onChange:b=>c(j=>({...j,email:b.target.value})),placeholder:"Enter your email",style:{...z,paddingLeft:40,height:40,borderRadius:8,boxShadow:e?"0 2px 6px rgba(0,0,0,0.3)":"0 2px 6px rgba(0,0,0,0.08)"},required:!0})]}),r.jsx("small",{style:{fontSize:11,color:h.textTertiary,marginTop:2},children:"We'll send a verification code to this email"})]}),f&&r.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:4},children:[r.jsxs("div",{style:{position:"relative",display:"flex",alignItems:"center"},children:[r.jsx(st,{size:18,style:{position:"absolute",left:12,color:h.textTertiary,pointerEvents:"none"}}),r.jsx("input",{type:"text",value:d.otp,onChange:b=>c(j=>({...j,otp:b.target.value})),placeholder:"Enter OTP",style:{...z,paddingLeft:40,height:40,borderRadius:8,boxShadow:e?"0 2px 6px rgba(0,0,0,0.3)":"0 2px 6px rgba(0,0,0,0.08)"},required:!0})]}),r.jsx("small",{style:{fontSize:11,color:h.textTertiary,marginTop:2},children:"Check your inbox for the 6-digit code"})]}),r.jsx("div",{style:{display:"flex",gap:12},children:f?r.jsxs("button",{type:"submit",disabled:y,style:{...D(y),borderRadius:12,padding:"12px 16px",fontSize:14},children:[y?r.jsx(se,{size:16,className:"spinner"}):r.jsx(ce,{size:16}),y?"Verifying...":"Verify Email"]}):r.jsxs("button",{type:"button",onClick:T,disabled:y||!t?.id,style:{...D(y),borderRadius:12,padding:"12px 16px",fontSize:14},children:[y?r.jsx(se,{size:16,className:"spinner"}):r.jsx(ot,{size:16}),y?"Sending...":"Send OTP"]})})]})};ee.AuthixProvider=Kn,ee.NeuctraAuthix=Tn,ee.ReactEmailVerification=os,ee.ReactSignedIn=Zn,ee.ReactSignedOut=Qn,ee.ReactUserButton=is,ee.ReactUserLogin=Xn,ee.ReactUserProfile=ss,ee.ReactUserSignUp=Gn,Object.defineProperty(ee,Symbol.toStringTag,{value:"Module"})}));
@@ -155,38 +155,64 @@ export declare class NeuctraAuthix {
155
155
  */
156
156
  searchAllUsersDataFromApp(params: SearchAllUsersDataFromAppParams): Promise<any>;
157
157
  /**
158
- * Get all app data items for the current app
159
- * @param category optional filter by dataCategory
158
+ * 📦 Get all app data items
159
+ * Optional category filter
160
+ *
161
+ * Routes:
162
+ * GET /api/app/:appId/app-data
163
+ * GET /api/app/:appId/app-data/:category
160
164
  */
161
165
  getAppData(category?: string): Promise<AppDataItem[]>;
162
166
  /**
163
- * Get a single data item from app.appData[] by id
167
+ * 👥 Get all users data
168
+ * Optional category filter
169
+ *
170
+ * Routes:
171
+ * GET /api/app/:appId/users-data
172
+ * GET /api/app/:appId/users-data/:category
173
+ */
174
+ getUsersData(category?: string): Promise<AppDataItem[]>;
175
+ /**
176
+ * 🔍 Get single app data item by id
177
+ *
178
+ * Route:
179
+ * GET /api/app/:appId/data/:itemId
164
180
  */
165
181
  getSingleAppData(params: {
166
182
  dataId: string;
167
183
  }): Promise<AppDataItem>;
168
184
  /**
169
- * 🔍 Search app data items by dynamic keys (BODY based)
185
+ * 🔍 Search app data by dynamic keys
186
+ *
187
+ * Route:
188
+ * POST /api/app/:appId/data/searchByKeys
170
189
  */
171
- searchAppDataByKeys(params: {
172
- [key: string]: any;
173
- }): Promise<AppDataItem[]>;
190
+ searchAppDataByKeys(params: Record<string, any>): Promise<AppDataItem[]>;
174
191
  /**
175
- * Add a new item to app.appData[] under a specific category
192
+ * Add new app data item
193
+ *
194
+ * Route:
195
+ * POST /api/app/:appId/data/:dataCategory
176
196
  */
177
197
  addAppData(params: {
178
198
  dataCategory: string;
179
199
  data: Record<string, any>;
180
200
  }): Promise<AppDataItem>;
181
201
  /**
182
- * Update an item in app.appData[] by id
202
+ * ✏️ Update app data item
203
+ *
204
+ * Route:
205
+ * PATCH /api/app/:appId/data/:itemId
183
206
  */
184
207
  updateAppData(params: {
185
208
  dataId: string;
186
209
  data: Record<string, any>;
187
210
  }): Promise<AppDataItem>;
188
211
  /**
189
- * Delete an item from app.appData[] by id
212
+ * 🗑️ Delete app data item
213
+ *
214
+ * Route:
215
+ * DELETE /api/app/:appId/data/:itemId
190
216
  */
191
217
  deleteAppData(params: {
192
218
  dataId: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,iBAAiB,EACjB,WAAW,EACX,oBAAoB,EACpB,oBAAoB,EACpB,iBAAiB,EACjB,oBAAoB,EACpB,gBAAgB,EAEhB,uBAAuB,EACvB,iBAAiB,EACjB,WAAW,EACX,mBAAmB,EACnB,+BAA+B,EAC/B,YAAY,EACZ,oBAAoB,EACpB,gBAAgB,EACjB,MAAM,iBAAiB,CAAC;AAEzB;;GAEG;AACH,qBAAa,aAAa;IACxB,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,MAAM,CAAgB;IAC9B,OAAO,CAAC,KAAK,CAAgB;IAC7B,OAAO,CAAC,MAAM,CAAgB;IAE9B;;;OAGG;gBACS,MAAM,EAAE,mBAAmB;IAoBvC;;;;;;OAMG;YACW,OAAO;IAqCrB;;;OAGG;IACG,UAAU,CAAC,MAAM,EAAE,YAAY;IASrC;;;OAGG;IACG,SAAS,CAAC,MAAM,EAAE,WAAW;IAqBnC;;;OAGG;IACG,UAAU,IAAI,OAAO,CAAC;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE,CAAC;IAmCjD;;;OAGG;IACG,cAAc,CAAC,MAAM,EAAE,oBAAoB;IAmBjD;;;OAGG;IACG,2BAA2B,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE;IAsC3E;;;OAGG;IACG,WAAW,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE;IAsBxD;;;OAGG;IACG,gBAAgB,IAAI,OAAO,CAAC,oBAAoB,CAAC;IAoBvD;;;OAGG;IACG,UAAU,CAAC,MAAM,EAAE,gBAAgB;IAazC;;;OAGG;IACG,UAAU,CAAC,MAAM,EAAE,gBAAgB;IAazC;;;OAGG;IACG,cAAc,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE;IAqB/C;;;OAGG;IACG,2BAA2B,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;IAS3D;;;OAGG;IACG,iBAAiB,CAAC,MAAM,EAAE;QAC9B,KAAK,EAAE,MAAM,CAAC;QACd,GAAG,EAAE,MAAM,CAAC;QACZ,WAAW,EAAE,MAAM,CAAC;KACrB;IAeD;;;;OAIG;IACG,iBAAiB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAa7D,cAAc,CAAC,MAAM,EAAE;QAC3B,MAAM,EAAE,MAAM,CAAC;QACf,QAAQ,EAAE,MAAM,CAAC;QACjB,EAAE,CAAC,EAAE,MAAM,CAAC;QACZ,CAAC,CAAC,EAAE,MAAM,CAAC;KACZ;IAeD;;;;;;;;;;OAUG;IACG,oBAAoB,CAAC,MAAM,EAAE;QACjC,MAAM,EAAE,MAAM,CAAC;QACf,CAAC,CAAC,EAAE,MAAM,CAAC;QACX,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACpB;IA4BD;;;OAGG;IACG,WAAW,CAAC,MAAM,EAAE,iBAAiB;IAa3C;;;OAGG;IACG,iBAAiB,CAAC,MAAM,EAAE,uBAAuB;IAcvD;;;OAGG;IACG,WAAW,CAAC,MAAM,EAAE,iBAAiB;IAoB3C;;;OAGG;IACG,cAAc,CAAC,MAAM,EAAE,oBAAoB;IAejD;;;OAGG;IACG,cAAc,CAAC,MAAM,EAAE,oBAAoB;IAcjD;;;OAGG;IACG,yBAAyB,CAAC,MAAM,EAAE,+BAA+B;IAmBvE;;;OAGG;IACG,UAAU,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC;IAe3D;;OAEG;IACG,gBAAgB,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,WAAW,CAAC;IAexE;;OAEG;IACG,mBAAmB,CAAC,MAAM,EAAE;QAChC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACpB,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC;IAgB1B;;OAEG;IACG,UAAU,CAAC,MAAM,EAAE;QACvB,YAAY,EAAE,MAAM,CAAC;QACrB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KAC3B,GAAG,OAAO,CAAC,WAAW,CAAC;IAmBxB;;OAEG;IACG,aAAa,CAAC,MAAM,EAAE;QAC1B,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KAC3B,GAAG,OAAO,CAAC,WAAW,CAAC;IAexB;;OAEG;IACG,aAAa,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,WAAW,CAAC;CAatE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,iBAAiB,EACjB,WAAW,EACX,oBAAoB,EACpB,oBAAoB,EACpB,iBAAiB,EACjB,oBAAoB,EACpB,gBAAgB,EAEhB,uBAAuB,EACvB,iBAAiB,EACjB,WAAW,EACX,mBAAmB,EACnB,+BAA+B,EAC/B,YAAY,EACZ,oBAAoB,EACpB,gBAAgB,EACjB,MAAM,iBAAiB,CAAC;AAEzB;;GAEG;AACH,qBAAa,aAAa;IACxB,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,MAAM,CAAgB;IAC9B,OAAO,CAAC,KAAK,CAAgB;IAC7B,OAAO,CAAC,MAAM,CAAgB;IAE9B;;;OAGG;gBACS,MAAM,EAAE,mBAAmB;IAoBvC;;;;;;OAMG;YACW,OAAO;IAqCrB;;;OAGG;IACG,UAAU,CAAC,MAAM,EAAE,YAAY;IASrC;;;OAGG;IACG,SAAS,CAAC,MAAM,EAAE,WAAW;IAqBnC;;;OAGG;IACG,UAAU,IAAI,OAAO,CAAC;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE,CAAC;IAmCjD;;;OAGG;IACG,cAAc,CAAC,MAAM,EAAE,oBAAoB;IAmBjD;;;OAGG;IACG,2BAA2B,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE;IAsC3E;;;OAGG;IACG,WAAW,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE;IAsBxD;;;OAGG;IACG,gBAAgB,IAAI,OAAO,CAAC,oBAAoB,CAAC;IAoBvD;;;OAGG;IACG,UAAU,CAAC,MAAM,EAAE,gBAAgB;IAazC;;;OAGG;IACG,UAAU,CAAC,MAAM,EAAE,gBAAgB;IAazC;;;OAGG;IACG,cAAc,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE;IAqB/C;;;OAGG;IACG,2BAA2B,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;IAS3D;;;OAGG;IACG,iBAAiB,CAAC,MAAM,EAAE;QAC9B,KAAK,EAAE,MAAM,CAAC;QACd,GAAG,EAAE,MAAM,CAAC;QACZ,WAAW,EAAE,MAAM,CAAC;KACrB;IAeD;;;;OAIG;IACG,iBAAiB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAa7D,cAAc,CAAC,MAAM,EAAE;QAC3B,MAAM,EAAE,MAAM,CAAC;QACf,QAAQ,EAAE,MAAM,CAAC;QACjB,EAAE,CAAC,EAAE,MAAM,CAAC;QACZ,CAAC,CAAC,EAAE,MAAM,CAAC;KACZ;IAeD;;;;;;;;;;OAUG;IACG,oBAAoB,CAAC,MAAM,EAAE;QACjC,MAAM,EAAE,MAAM,CAAC;QACf,CAAC,CAAC,EAAE,MAAM,CAAC;QACX,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACpB;IA4BD;;;OAGG;IACG,WAAW,CAAC,MAAM,EAAE,iBAAiB;IAa3C;;;OAGG;IACG,iBAAiB,CAAC,MAAM,EAAE,uBAAuB;IAcvD;;;OAGG;IACG,WAAW,CAAC,MAAM,EAAE,iBAAiB;IAoB3C;;;OAGG;IACG,cAAc,CAAC,MAAM,EAAE,oBAAoB;IAejD;;;OAGG;IACG,cAAc,CAAC,MAAM,EAAE,oBAAoB;IAcjD;;;OAGG;IACG,yBAAyB,CAAC,MAAM,EAAE,+BAA+B;IAmBvE;;;;;;;OAOG;IACG,UAAU,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC;IAY3D;;;;;;;OAOG;IACG,YAAY,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC;IAY7D;;;;;OAKG;IACG,gBAAgB,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,WAAW,CAAC;IAiBxE;;;;;OAKG;IACG,mBAAmB,CACvB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAC1B,OAAO,CAAC,WAAW,EAAE,CAAC;IAkBzB;;;;;OAKG;IACG,UAAU,CAAC,MAAM,EAAE;QACvB,YAAY,EAAE,MAAM,CAAC;QACrB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KAC3B,GAAG,OAAO,CAAC,WAAW,CAAC;IAwBxB;;;;;OAKG;IACG,aAAa,CAAC,MAAM,EAAE;QAC1B,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KAC3B,GAAG,OAAO,CAAC,WAAW,CAAC;IAsBxB;;;;;OAKG;IACG,aAAa,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,WAAW,CAAC;CAiBtE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuctra/authix",
3
- "version": "1.2.13",
3
+ "version": "1.2.14",
4
4
  "description": "Universal authentication SDK and UI components for React (v16–v19) with TailwindCSS.",
5
5
  "author": "Taha Asif",
6
6
  "license": "MIT",