umwd-components 0.1.436 → 0.1.438
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node_modules/base64-js/index.js +1 -1
- package/dist/node_modules/ieee754/index.js +1 -1
- package/dist/src/components/auth/SigninForm.js +1 -1
- package/dist/src/data/services/auth-service.js +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/auth/SigninForm.tsx +5 -0
- package/src/data/services/auth-service.ts +12 -6
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
* @copyright Jelle Paulus
|
|
4
4
|
* @license MIT
|
|
5
5
|
*/
|
|
6
|
-
import{__exports as r}from"../../_virtual/
|
|
6
|
+
import{__exports as r}from"../../_virtual/index7.js";var t;function e(){if(t)return r;t=1,r.byteLength=function(r){var t=i(r),e=t[0],n=t[1];return 3*(e+n)/4-n},r.toByteArray=function(r){var t,e,a=i(r),u=a[0],h=a[1],c=new o(function(r,t,e){return 3*(t+e)/4-e}(0,u,h)),f=0,d=h>0?u-4:u;for(e=0;e<d;e+=4)t=n[r.charCodeAt(e)]<<18|n[r.charCodeAt(e+1)]<<12|n[r.charCodeAt(e+2)]<<6|n[r.charCodeAt(e+3)],c[f++]=t>>16&255,c[f++]=t>>8&255,c[f++]=255&t;2===h&&(t=n[r.charCodeAt(e)]<<2|n[r.charCodeAt(e+1)]>>4,c[f++]=255&t);1===h&&(t=n[r.charCodeAt(e)]<<10|n[r.charCodeAt(e+1)]<<4|n[r.charCodeAt(e+2)]>>2,c[f++]=t>>8&255,c[f++]=255&t);return c},r.fromByteArray=function(r){for(var t,n=r.length,o=n%3,a=[],u=16383,i=0,c=n-o;i<c;i+=u)a.push(h(r,i,i+u>c?c:i+u));1===o?(t=r[n-1],a.push(e[t>>2]+e[t<<4&63]+"==")):2===o&&(t=(r[n-2]<<8)+r[n-1],a.push(e[t>>10]+e[t>>4&63]+e[t<<2&63]+"="));return a.join("")};for(var e=[],n=[],o="undefined"!=typeof Uint8Array?Uint8Array:Array,a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",u=0;u<64;++u)e[u]=a[u],n[a.charCodeAt(u)]=u;function i(r){var t=r.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var e=r.indexOf("=");return-1===e&&(e=t),[e,e===t?0:4-e%4]}function h(r,t,n){for(var o,a,u=[],i=t;i<n;i+=3)o=(r[i]<<16&16711680)+(r[i+1]<<8&65280)+(255&r[i+2]),u.push(e[(a=o)>>18&63]+e[a>>12&63]+e[a>>6&63]+e[63&a]);return u.join("")}return n["-".charCodeAt(0)]=62,n["_".charCodeAt(0)]=63,r}export{e as __require};
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* @copyright Jelle Paulus
|
|
4
4
|
* @license MIT
|
|
5
5
|
*/
|
|
6
|
-
import{__exports as a}from"../../_virtual/
|
|
6
|
+
import{__exports as a}from"../../_virtual/index8.js";
|
|
7
7
|
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */var t;function o(){return t||(t=1,a.read=function(a,t,o,r,h){var M,e,i=8*h-r-1,p=(1<<i)-1,f=p>>1,n=-7,w=o?h-1:0,s=o?-1:1,u=a[t+w];for(w+=s,M=u&(1<<-n)-1,u>>=-n,n+=i;n>0;M=256*M+a[t+w],w+=s,n-=8);for(e=M&(1<<-n)-1,M>>=-n,n+=r;n>0;e=256*e+a[t+w],w+=s,n-=8);if(0===M)M=1-f;else{if(M===p)return e?NaN:1/0*(u?-1:1);e+=Math.pow(2,r),M-=f}return(u?-1:1)*e*Math.pow(2,M-r)},a.write=function(a,t,o,r,h,M){var e,i,p,f=8*M-h-1,n=(1<<f)-1,w=n>>1,s=23===h?Math.pow(2,-24)-Math.pow(2,-77):0,u=r?0:M-1,N=r?1:-1,_=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(i=isNaN(t)?1:0,e=n):(e=Math.floor(Math.log(t)/Math.LN2),t*(p=Math.pow(2,-e))<1&&(e--,p*=2),(t+=e+w>=1?s/p:s*Math.pow(2,1-w))*p>=2&&(e++,p/=2),e+w>=n?(i=0,e=n):e+w>=1?(i=(t*p-1)*Math.pow(2,h),e+=w):(i=t*Math.pow(2,w-1)*Math.pow(2,h),e=0));h>=8;a[o+u]=255&i,u+=N,i/=256,h-=8);for(e=e<<h|i,f+=h;f>0;a[o+u]=255&e,u+=N,e/=256,f-=8);a[o+u-N]|=128*_}),a}export{o as __require};
|
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
* @copyright Jelle Paulus
|
|
5
5
|
* @license MIT
|
|
6
6
|
*/
|
|
7
|
-
import{__read as r,__assign as e}from"../../../node_modules/tslib/tslib.es6.js";import t from"react";import o from"next/link";import{useFormState as i}from"react-dom";import{loginUserAction as a}from"../../data/actions/auth-actions.js";import{setOpacity as l}from"../../lib/utils.js";import n from"@mui/material/CardHeader";import m from"@mui/material/CardContent";import d from"@mui/material/CardActions";import s from"@mui/material/Card";import u from"@mui/material/TextField";import p from"@mui/material/Stack";import c from"@mui/material/Container";import
|
|
7
|
+
import{__read as r,__assign as e}from"../../../node_modules/tslib/tslib.es6.js";import t from"react";import o from"next/link";import{useFormState as i}from"react-dom";import{loginUserAction as a}from"../../data/actions/auth-actions.js";import{setOpacity as l}from"../../lib/utils.js";import n from"@mui/material/CardHeader";import m from"@mui/material/CardContent";import d from"@mui/material/CardActions";import s from"@mui/material/Card";import u from"@mui/material/TextField";import p from"@mui/material/Stack";import c from"@mui/material/Container";import v from"@mui/material/Typography";import{SubmitButton as f}from"../SubmitButton.js";import{StrapiErrors as E}from"../StrapiErrors.js";import{useTheme as g}from"@mui/material/styles";var b={zodErrors:null,strapiErrors:null,data:null,message:null};function x(x){var y,h,w,C,S=x.data,j=S.title,k=void 0===j?"Sign In":j,z=S.subtitle,T=void 0===z?"Enter your details to sign in to your account":z,_=S.maxWidth,F=void 0===_?"lg":_,I=S.sx,W=void 0===I?{}:I,A=S.glass,B=void 0!==A&&A,D=S.registration_url,H=void 0===D?"/signup":D,L=S.redirect_url,P=void 0===L?"/":L,R=S.forgot_password_url,U=void 0===R?"/forgot-password":R,q=r(i(a,b),2),G=q[0],J=q[1],K=g();return t.createElement(c,{maxWidth:F||"lg",sx:e({my:1},W)},t.createElement("form",{action:J},t.createElement("input",{type:"hidden",name:"redirect",value:P}),t.createElement(s,{sx:{backdropFilter:"blur(3px)",backgroundColor:l(K.palette.background.paper,B?.1:1),border:B?"1px solid rgba(255, 255, 255, 0.15)":"none"}},t.createElement(n,{title:k,subheader:T}),t.createElement(m,null,t.createElement(p,{spacing:2},t.createElement(u,{id:"identifier",name:"identifier",label:"identifier",variant:"outlined",error:null!=(null===(y=null==G?void 0:G.zodErrors)||void 0===y?void 0:y.identifier),helperText:null===(h=null==G?void 0:G.zodErrors)||void 0===h?void 0:h.identifier}),t.createElement(u,{id:"password",name:"password",label:"password",type:"password",variant:"outlined",error:null!=(null===(w=null==G?void 0:G.zodErrors)||void 0===w?void 0:w.password),helperText:null===(C=null==G?void 0:G.zodErrors)||void 0===C?void 0:C.password}))),t.createElement(d,null,t.createElement(f,{text:"Sign In",loadingText:"Loading"}),t.createElement(E,{error:null==G?void 0:G.strapiErrors})),G.message&&t.createElement(v,{sx:{pt:2},variant:"body2",color:"error"},G.message)),t.createElement(v,{sx:{pt:2},variant:"body2"},"Don't have an account?"),t.createElement(o,{href:H},"Sign Up"),t.createElement(v,{sx:{pt:2},variant:"body2"},"Forgot your password?"),t.createElement(o,{href:U},"Reset Password")))}export{x as default};
|
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
* @copyright Jelle Paulus
|
|
5
5
|
* @license MIT
|
|
6
6
|
*/
|
|
7
|
-
import{__awaiter as e,__generator as r,__assign as
|
|
7
|
+
import{__awaiter as e,__generator as r,__assign as n}from"../../../node_modules/tslib/tslib.es6.js";import{getStrapiURL as t}from"../../lib/utils.js";var s=t();function o(t){return e(this,void 0,void 0,(function(){var e,o,a;return r(this,(function(r){switch(r.label){case 0:e=new URL("/api/auth/local/register",s),r.label=1;case 1:return r.trys.push([1,5,,6]),[4,fetch(e,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n({},t)),cache:"no-cache"})];case 2:return(o=r.sent()).ok?[3,4]:[4,o.json()];case 3:return[2,{error:r.sent()}];case 4:return[2,o.json()];case 5:return a=r.sent(),console.error("Registration Service Error:",a),[2,{error:a instanceof Error?a.message:"Unknown error"}];case 6:return[2]}}))}))}function a(t){return e(this,void 0,void 0,(function(){var e,o,a;return r(this,(function(r){switch(r.label){case 0:e=new URL("/api/auth/local",s),r.label=1;case 1:return r.trys.push([1,5,,6]),[4,fetch(e,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n({},t)),cache:"no-cache"})];case 2:return(o=r.sent()).ok?[3,4]:[4,o.json()];case 3:return[2,{error:r.sent()}];case 4:return[2,o.json()];case 5:return a=r.sent(),console.error("Login Service Error:",a),[2,{error:a instanceof Error?a.message:"Unknown error"}];case 6:return[2]}}))}))}function c(n){return e(this,void 0,void 0,(function(){var e,t;return r(this,(function(r){switch(r.label){case 0:e=new URL("/api/auth/forgot-password",s),r.label=1;case 1:return r.trys.push([1,4,,5]),[4,fetch(e,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)})];case 2:return[4,r.sent().json()];case 3:return[2,r.sent()];case 4:return t=r.sent(),console.error("Error in forgotPasswordService:",t),[2,null];case 5:return[2]}}))}))}function i(n){return e(this,void 0,void 0,(function(){var e,t;return r(this,(function(r){switch(r.label){case 0:e=new URL("/api/auth/reset-password",s),r.label=1;case 1:return r.trys.push([1,4,,5]),[4,fetch(e,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)})];case 2:return[4,r.sent().json()];case 3:return[2,r.sent()];case 4:return t=r.sent(),console.error("Error in resetPasswordService:",t),[2,null];case 5:return[2]}}))}))}export{c as forgotPasswordService,a as loginUserService,o as registerUserService,i as resetPasswordService};
|