@s_mart/telas-de-acesso 3.1.1 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +8 -7
- package/dist/index.js +14 -14
- package/dist/index.mjs +10 -10
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
1
2
|
import { UseFormReturn, FieldValues } from 'react-hook-form';
|
|
2
3
|
|
|
3
4
|
interface TemplateTelaBaseProps {
|
|
@@ -36,7 +37,7 @@ interface TemplateTelaBaseProps {
|
|
|
36
37
|
ilustracao?: React.ImgHTMLAttributes<HTMLImageElement>['src'] | React.ReactNode;
|
|
37
38
|
}
|
|
38
39
|
|
|
39
|
-
declare function TemplateTelaBase({ children, whatsapp, textoChamativo, style, paperStyle, ilustracao, }: TemplateTelaBaseProps): JSX.Element;
|
|
40
|
+
declare function TemplateTelaBase({ children, whatsapp, textoChamativo, style, paperStyle, ilustracao, }: TemplateTelaBaseProps): react_jsx_runtime.JSX.Element;
|
|
40
41
|
|
|
41
42
|
interface TelaCadastroProps extends Omit<TemplateTelaBaseProps, 'children'> {
|
|
42
43
|
email: string;
|
|
@@ -64,7 +65,7 @@ interface TelaCadastroProps extends Omit<TemplateTelaBaseProps, 'children'> {
|
|
|
64
65
|
linkTermosDeUso?: string;
|
|
65
66
|
}
|
|
66
67
|
|
|
67
|
-
declare function TelaCadastro({ logo, nomeSistema, onSubmit, linkTermosDeUso, email, nome, ...rest }: TelaCadastroProps): JSX.Element;
|
|
68
|
+
declare function TelaCadastro({ logo, nomeSistema, onSubmit, linkTermosDeUso, email, nome, ...rest }: TelaCadastroProps): react_jsx_runtime.JSX.Element;
|
|
68
69
|
|
|
69
70
|
interface TelaLoginFormValues {
|
|
70
71
|
email: string;
|
|
@@ -104,7 +105,7 @@ interface TelaLoginProps extends Omit<TemplateTelaBaseProps, 'children'> {
|
|
|
104
105
|
onEsqueciMinhaSenha?: () => void;
|
|
105
106
|
}
|
|
106
107
|
|
|
107
|
-
declare function TelaLogin({ logo, initialValues, onSubmit, onEsqueciMinhaSenha, errorLabel, ...rest }: TelaLoginProps): JSX.Element;
|
|
108
|
+
declare function TelaLogin({ logo, initialValues, onSubmit, onEsqueciMinhaSenha, errorLabel, ...rest }: TelaLoginProps): react_jsx_runtime.JSX.Element;
|
|
108
109
|
|
|
109
110
|
interface TelaConviteExpiradoProps extends Omit<TemplateTelaBaseProps, 'children' | 'whatsapp'> {
|
|
110
111
|
/**
|
|
@@ -122,7 +123,7 @@ interface TelaConviteExpiradoProps extends Omit<TemplateTelaBaseProps, 'children
|
|
|
122
123
|
onPrecisoDeAjuda: () => void;
|
|
123
124
|
}
|
|
124
125
|
|
|
125
|
-
declare function TelaConviteExpirado({ logo, onPrecisoDeAjuda, onRealizarAcesso, ...rest }: TelaConviteExpiradoProps): JSX.Element;
|
|
126
|
+
declare function TelaConviteExpirado({ logo, onPrecisoDeAjuda, onRealizarAcesso, ...rest }: TelaConviteExpiradoProps): react_jsx_runtime.JSX.Element;
|
|
126
127
|
|
|
127
128
|
interface TelaInstrucoesEnviadasProps extends Omit<TemplateTelaBaseProps, 'children'> {
|
|
128
129
|
/**
|
|
@@ -136,7 +137,7 @@ interface TelaInstrucoesEnviadasProps extends Omit<TemplateTelaBaseProps, 'child
|
|
|
136
137
|
onVoltarParaLogin: () => void;
|
|
137
138
|
}
|
|
138
139
|
|
|
139
|
-
declare function TelaInstrucoesEnviadas({ logo, onVoltarParaLogin, ...rest }: TelaInstrucoesEnviadasProps): JSX.Element;
|
|
140
|
+
declare function TelaInstrucoesEnviadas({ logo, onVoltarParaLogin, ...rest }: TelaInstrucoesEnviadasProps): react_jsx_runtime.JSX.Element;
|
|
140
141
|
|
|
141
142
|
interface TelaNovaSenhaProps extends Omit<TemplateTelaBaseProps, 'children'> {
|
|
142
143
|
/**
|
|
@@ -150,7 +151,7 @@ interface TelaNovaSenhaProps extends Omit<TemplateTelaBaseProps, 'children'> {
|
|
|
150
151
|
onTrocarMinhaSenha: (data: any, methods: UseFormReturn<FieldValues, any>) => void;
|
|
151
152
|
}
|
|
152
153
|
|
|
153
|
-
declare function TelaNovaSenha({ logo, onTrocarMinhaSenha, ...rest }: TelaNovaSenhaProps): JSX.Element;
|
|
154
|
+
declare function TelaNovaSenha({ logo, onTrocarMinhaSenha, ...rest }: TelaNovaSenhaProps): react_jsx_runtime.JSX.Element;
|
|
154
155
|
|
|
155
156
|
interface EsqueceuSenhaFormValues {
|
|
156
157
|
email: string;
|
|
@@ -171,6 +172,6 @@ interface TelaEsqueceuSenhaProps extends Omit<TemplateTelaBaseProps, 'children'>
|
|
|
171
172
|
onVoltarParaLogin: () => void;
|
|
172
173
|
}
|
|
173
174
|
|
|
174
|
-
declare function TelaEsqueceuSenha({ logo, onVoltarParaLogin, onConfirmar, ...rest }: TelaEsqueceuSenhaProps): JSX.Element;
|
|
175
|
+
declare function TelaEsqueceuSenha({ logo, onVoltarParaLogin, onConfirmar, ...rest }: TelaEsqueceuSenhaProps): react_jsx_runtime.JSX.Element;
|
|
175
176
|
|
|
176
177
|
export { TelaCadastro, TelaCadastroProps, TelaConviteExpirado, TelaConviteExpiradoProps, TelaEsqueceuSenha, TelaEsqueceuSenhaProps, TelaInstrucoesEnviadas, TelaInstrucoesEnviadasProps, TelaLogin, TelaLoginProps, TelaNovaSenha, TelaNovaSenhaProps, TemplateTelaBase, TemplateTelaBaseProps };
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";var H2=Object.create;var e1=Object.defineProperty,b2=Object.defineProperties,V2=Object.getOwnPropertyDescriptor,x2=Object.getOwnPropertyDescriptors,S2=Object.getOwnPropertyNames,s1=Object.getOwnPropertySymbols,L2=Object.getPrototypeOf,A1=Object.prototype.hasOwnProperty,U1=Object.prototype.propertyIsEnumerable;var W1=(e,a,r)=>a in e?e1(e,a,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[a]=r,S=(e,a)=>{for(var r in a||(a={}))A1.call(a,r)&&W1(e,r,a[r]);if(s1)for(var r of s1(a))U1.call(a,r)&&W1(e,r,a[r]);return e},E=(e,a)=>b2(e,x2(a));var k=(e,a)=>{var r={};for(var i in e)A1.call(e,i)&&a.indexOf(i)<0&&(r[i]=e[i]);if(e!=null&&s1)for(var i of s1(e))a.indexOf(i)<0&&U1.call(e,i)&&(r[i]=e[i]);return r};var h1=(e,a)=>()=>(a||e((a={exports:{}}).exports,a),a.exports),E2=(e,a)=>{for(var r in a)e1(e,r,{get:a[r],enumerable:!0})},Y1=(e,a,r,i)=>{if(a&&typeof a=="object"||typeof a=="function")for(let n of S2(a))!A1.call(e,n)&&n!==r&&e1(e,n,{get:()=>a[n],enumerable:!(i=V2(a,n))||i.enumerable});return e};var C=(e,a,r)=>(r=e!=null?H2(L2(e)):{},Y1(a||!e||!e.__esModule?e1(r,"default",{value:e,enumerable:!0}):r,e)),k2=e=>Y1(e1({},"__esModule",{value:!0}),e);var s0=h1(h=>{"use strict";var y=typeof Symbol=="function"&&Symbol.for,$1=y?Symbol.for("react.element"):60103,D1=y?Symbol.for("react.portal"):60106,u1=y?Symbol.for("react.fragment"):60107,p1=y?Symbol.for("react.strict_mode"):60108,f1=y?Symbol.for("react.profiler"):60114,Z1=y?Symbol.for("react.provider"):60109,g1=y?Symbol.for("react.context"):60110,R1=y?Symbol.for("react.async_mode"):60111,y1=y?Symbol.for("react.concurrent_mode"):60111,M1=y?Symbol.for("react.forward_ref"):60112,C1=y?Symbol.for("react.suspense"):60113,B2=y?Symbol.for("react.suspense_list"):60120,H1=y?Symbol.for("react.memo"):60115,b1=y?Symbol.for("react.lazy"):60116,q2=y?Symbol.for("react.block"):60121,z2=y?Symbol.for("react.fundamental"):60117,j2=y?Symbol.for("react.responder"):60118,W2=y?Symbol.for("react.scope"):60119;function L(e){if(typeof e=="object"&&e!==null){var a=e.$$typeof;switch(a){case $1:switch(e=e.type,e){case R1:case y1:case u1:case f1:case p1:case C1:return e;default:switch(e=e&&e.$$typeof,e){case g1:case M1:case b1:case H1:case Z1:return e;default:return a}}case D1:return a}}}function o0(e){return L(e)===y1}h.AsyncMode=R1;h.ConcurrentMode=y1;h.ContextConsumer=g1;h.ContextProvider=Z1;h.Element=$1;h.ForwardRef=M1;h.Fragment=u1;h.Lazy=b1;h.Memo=H1;h.Portal=D1;h.Profiler=f1;h.StrictMode=p1;h.Suspense=C1;h.isAsyncMode=function(e){return o0(e)||L(e)===R1};h.isConcurrentMode=o0;h.isContextConsumer=function(e){return L(e)===g1};h.isContextProvider=function(e){return L(e)===Z1};h.isElement=function(e){return typeof e=="object"&&e!==null&&e.$$typeof===$1};h.isForwardRef=function(e){return L(e)===M1};h.isFragment=function(e){return L(e)===u1};h.isLazy=function(e){return L(e)===b1};h.isMemo=function(e){return L(e)===H1};h.isPortal=function(e){return L(e)===D1};h.isProfiler=function(e){return L(e)===f1};h.isStrictMode=function(e){return L(e)===p1};h.isSuspense=function(e){return L(e)===C1};h.isValidElementType=function(e){return typeof e=="string"||typeof e=="function"||e===u1||e===y1||e===f1||e===p1||e===C1||e===B2||typeof e=="object"&&e!==null&&(e.$$typeof===b1||e.$$typeof===H1||e.$$typeof===Z1||e.$$typeof===g1||e.$$typeof===M1||e.$$typeof===z2||e.$$typeof===j2||e.$$typeof===W2||e.$$typeof===q2)};h.typeOf=L});var h0=h1(d=>{"use strict";process.env.NODE_ENV!=="production"&&function(){"use strict";var e=typeof Symbol=="function"&&Symbol.for,a=e?Symbol.for("react.element"):60103,r=e?Symbol.for("react.portal"):60106,i=e?Symbol.for("react.fragment"):60107,n=e?Symbol.for("react.strict_mode"):60108,l=e?Symbol.for("react.profiler"):60114,s=e?Symbol.for("react.provider"):60109,v=e?Symbol.for("react.context"):60110,m=e?Symbol.for("react.async_mode"):60111,p=e?Symbol.for("react.concurrent_mode"):60111,Z=e?Symbol.for("react.forward_ref"):60112,A=e?Symbol.for("react.suspense"):60113,
|
|
1
|
+
"use strict";var H2=Object.create;var e1=Object.defineProperty,b2=Object.defineProperties,V2=Object.getOwnPropertyDescriptor,x2=Object.getOwnPropertyDescriptors,S2=Object.getOwnPropertyNames,s1=Object.getOwnPropertySymbols,L2=Object.getPrototypeOf,A1=Object.prototype.hasOwnProperty,U1=Object.prototype.propertyIsEnumerable;var W1=(e,a,r)=>a in e?e1(e,a,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[a]=r,S=(e,a)=>{for(var r in a||(a={}))A1.call(a,r)&&W1(e,r,a[r]);if(s1)for(var r of s1(a))U1.call(a,r)&&W1(e,r,a[r]);return e},E=(e,a)=>b2(e,x2(a));var k=(e,a)=>{var r={};for(var i in e)A1.call(e,i)&&a.indexOf(i)<0&&(r[i]=e[i]);if(e!=null&&s1)for(var i of s1(e))a.indexOf(i)<0&&U1.call(e,i)&&(r[i]=e[i]);return r};var h1=(e,a)=>()=>(a||e((a={exports:{}}).exports,a),a.exports),E2=(e,a)=>{for(var r in a)e1(e,r,{get:a[r],enumerable:!0})},Y1=(e,a,r,i)=>{if(a&&typeof a=="object"||typeof a=="function")for(let n of S2(a))!A1.call(e,n)&&n!==r&&e1(e,n,{get:()=>a[n],enumerable:!(i=V2(a,n))||i.enumerable});return e};var C=(e,a,r)=>(r=e!=null?H2(L2(e)):{},Y1(a||!e||!e.__esModule?e1(r,"default",{value:e,enumerable:!0}):r,e)),k2=e=>Y1(e1({},"__esModule",{value:!0}),e);var s0=h1(h=>{"use strict";var y=typeof Symbol=="function"&&Symbol.for,$1=y?Symbol.for("react.element"):60103,D1=y?Symbol.for("react.portal"):60106,u1=y?Symbol.for("react.fragment"):60107,p1=y?Symbol.for("react.strict_mode"):60108,f1=y?Symbol.for("react.profiler"):60114,Z1=y?Symbol.for("react.provider"):60109,g1=y?Symbol.for("react.context"):60110,R1=y?Symbol.for("react.async_mode"):60111,y1=y?Symbol.for("react.concurrent_mode"):60111,M1=y?Symbol.for("react.forward_ref"):60112,C1=y?Symbol.for("react.suspense"):60113,B2=y?Symbol.for("react.suspense_list"):60120,H1=y?Symbol.for("react.memo"):60115,b1=y?Symbol.for("react.lazy"):60116,q2=y?Symbol.for("react.block"):60121,z2=y?Symbol.for("react.fundamental"):60117,j2=y?Symbol.for("react.responder"):60118,W2=y?Symbol.for("react.scope"):60119;function L(e){if(typeof e=="object"&&e!==null){var a=e.$$typeof;switch(a){case $1:switch(e=e.type,e){case R1:case y1:case u1:case f1:case p1:case C1:return e;default:switch(e=e&&e.$$typeof,e){case g1:case M1:case b1:case H1:case Z1:return e;default:return a}}case D1:return a}}}function o0(e){return L(e)===y1}h.AsyncMode=R1;h.ConcurrentMode=y1;h.ContextConsumer=g1;h.ContextProvider=Z1;h.Element=$1;h.ForwardRef=M1;h.Fragment=u1;h.Lazy=b1;h.Memo=H1;h.Portal=D1;h.Profiler=f1;h.StrictMode=p1;h.Suspense=C1;h.isAsyncMode=function(e){return o0(e)||L(e)===R1};h.isConcurrentMode=o0;h.isContextConsumer=function(e){return L(e)===g1};h.isContextProvider=function(e){return L(e)===Z1};h.isElement=function(e){return typeof e=="object"&&e!==null&&e.$$typeof===$1};h.isForwardRef=function(e){return L(e)===M1};h.isFragment=function(e){return L(e)===u1};h.isLazy=function(e){return L(e)===b1};h.isMemo=function(e){return L(e)===H1};h.isPortal=function(e){return L(e)===D1};h.isProfiler=function(e){return L(e)===f1};h.isStrictMode=function(e){return L(e)===p1};h.isSuspense=function(e){return L(e)===C1};h.isValidElementType=function(e){return typeof e=="string"||typeof e=="function"||e===u1||e===y1||e===f1||e===p1||e===C1||e===B2||typeof e=="object"&&e!==null&&(e.$$typeof===b1||e.$$typeof===H1||e.$$typeof===Z1||e.$$typeof===g1||e.$$typeof===M1||e.$$typeof===z2||e.$$typeof===j2||e.$$typeof===W2||e.$$typeof===q2)};h.typeOf=L});var h0=h1(d=>{"use strict";process.env.NODE_ENV!=="production"&&function(){"use strict";var e=typeof Symbol=="function"&&Symbol.for,a=e?Symbol.for("react.element"):60103,r=e?Symbol.for("react.portal"):60106,i=e?Symbol.for("react.fragment"):60107,n=e?Symbol.for("react.strict_mode"):60108,l=e?Symbol.for("react.profiler"):60114,s=e?Symbol.for("react.provider"):60109,v=e?Symbol.for("react.context"):60110,m=e?Symbol.for("react.async_mode"):60111,p=e?Symbol.for("react.concurrent_mode"):60111,Z=e?Symbol.for("react.forward_ref"):60112,A=e?Symbol.for("react.suspense"):60113,K=e?Symbol.for("react.suspense_list"):60120,O=e?Symbol.for("react.memo"):60115,V=e?Symbol.for("react.lazy"):60116,i1=e?Symbol.for("react.block"):60121,c1=e?Symbol.for("react.fundamental"):60117,t1=e?Symbol.for("react.responder"):60118,l1=e?Symbol.for("react.scope"):60119;function K0(t){return typeof t=="string"||typeof t=="function"||t===i||t===p||t===l||t===n||t===A||t===K||typeof t=="object"&&t!==null&&(t.$$typeof===V||t.$$typeof===O||t.$$typeof===s||t.$$typeof===v||t.$$typeof===Z||t.$$typeof===c1||t.$$typeof===t1||t.$$typeof===l1||t.$$typeof===i1)}function x(t){if(typeof t=="object"&&t!==null){var w1=t.$$typeof;switch(w1){case a:var o1=t.type;switch(o1){case m:case p:case i:case l:case n:case A:return o1;default:var j1=o1&&o1.$$typeof;switch(j1){case v:case Z:case V:case O:case s:return j1;default:return w1}}case r:return w1}}}var Q0=m,G0=p,J0=v,e2=s,a2=a,r2=Z,n2=i,i2=V,c2=O,t2=r,l2=l,o2=n,s2=A,q1=!1;function h2(t){return q1||(q1=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),z1(t)||x(t)===m}function z1(t){return x(t)===p}function d2(t){return x(t)===v}function v2(t){return x(t)===s}function m2(t){return typeof t=="object"&&t!==null&&t.$$typeof===a}function u2(t){return x(t)===Z}function p2(t){return x(t)===i}function f2(t){return x(t)===V}function Z2(t){return x(t)===O}function g2(t){return x(t)===r}function y2(t){return x(t)===l}function M2(t){return x(t)===n}function C2(t){return x(t)===A}d.AsyncMode=Q0,d.ConcurrentMode=G0,d.ContextConsumer=J0,d.ContextProvider=e2,d.Element=a2,d.ForwardRef=r2,d.Fragment=n2,d.Lazy=i2,d.Memo=c2,d.Portal=t2,d.Profiler=l2,d.StrictMode=o2,d.Suspense=s2,d.isAsyncMode=h2,d.isConcurrentMode=z1,d.isContextConsumer=d2,d.isContextProvider=v2,d.isElement=m2,d.isForwardRef=u2,d.isFragment=p2,d.isLazy=f2,d.isMemo=Z2,d.isPortal=g2,d.isProfiler=y2,d.isStrictMode=M2,d.isSuspense=C2,d.isValidElementType=K0,d.typeOf=x}()});var d0=h1((_3,O1)=>{"use strict";process.env.NODE_ENV==="production"?O1.exports=s0():O1.exports=h0()});var g0=h1((I3,Z0)=>{"use strict";var F1=d0(),U2={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},Y2={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},X2={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},p0={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},_1={};_1[F1.ForwardRef]=X2;_1[F1.Memo]=p0;function v0(e){return F1.isMemo(e)?p0:_1[e.$$typeof]||U2}var K2=Object.defineProperty,Q2=Object.getOwnPropertyNames,m0=Object.getOwnPropertySymbols,G2=Object.getOwnPropertyDescriptor,J2=Object.getPrototypeOf,u0=Object.prototype;function f0(e,a,r){if(typeof a!="string"){if(u0){var i=J2(a);i&&i!==u0&&f0(e,i,r)}var n=Q2(a);m0&&(n=n.concat(m0(a)));for(var l=v0(e),s=v0(a),v=0;v<n.length;++v){var m=n[v];if(!Y2[m]&&!(r&&r[m])&&!(s&&s[m])&&!(l&&l[m])){var p=G2(a,m);try{K2(e,m,p)}catch(Z){}}}}return e}Z0.exports=f0});var p3={};E2(p3,{TelaCadastro:()=>l0,TelaConviteExpirado:()=>$0,TelaEsqueceuSenha:()=>X0,TelaInstrucoesEnviadas:()=>O0,TelaLogin:()=>w0,TelaNovaSenha:()=>j0,TemplateTelaBase:()=>b});module.exports=k2(p3);var v1=require("@s_mart/core"),e0=require("@s_mart/masks");var I={description:"m37.5 11.3-19 19.4-7-7.2a.9.9 0 0 0-1.2 0l-2 2.1c-.4.4-.4 1 0 1.3l9.6 9.8c.3.4.9.4 1.2 0l21.6-22.1c.4-.3.4-1 0-1.3l-2-2a.9.9 0 0 0-1.2 0Z",id:"line-check-regular"};var d1={description:"M35.2 12.7a15.9 15.9 0 0 0-25 19.1L8 40l8.4-2.2a16 16 0 0 0 23.6-14 16 16 0 0 0-4.8-11.1ZM24 37a13 13 0 0 1-6.7-1.9l-.5-.3-5 1.3 1.3-4.8-.3-.5a13.2 13.2 0 0 1 20.5-16.3c2.5 2.4 4 5.7 4 9.3C37.3 31 31.3 37 24 37Zm7.2-10-2.7-1c-.4-.1-.6-.2-.9.2l-1.2 1.5c-.3.3-.5.3-.9.1-2.3-1.1-3.9-2-5.4-4.7-.4-.7.4-.6 1.2-2.1v-.7c-.2-.2-1-2.2-1.3-3-.3-.7-.6-.6-.9-.6h-.7c-.3 0-.7 0-1 .4-.4.4-1.5 1.4-1.5 3.3 0 2 1.5 3.9 1.6 4.1.2.3 2.8 4.3 6.8 6 2.5 1.1 3.5 1.2 4.8 1 .7 0 2.3-1 2.6-1.9.4-.9.4-1.7.3-1.9l-.8-.4Z",id:"line-whatsapp-regular"};var c=e=>`${e/16}rem`;var Q=C(require("@emotion/styled"));var T2=Object.defineProperty,w2=(e,a)=>{for(var r in a)T2(e,r,{get:a[r],enumerable:!0})},f={};w2(f,{blue:()=>P2,green:()=>O2,neutral:()=>N2,red:()=>D2,yellow:()=>_2});var A2={75:"#AFD2FF",100:"#689DCB",300:"#045BA8",500:"#132C70"},P2=A2,$2={75:"#FEBCAC",100:"#F5917F",300:"#EF4829",500:"#BD2601"},D2=$2,R2={75:"#D6EEBC",100:"#A5D770",300:"#49BF00",500:"#518133"},O2=R2,F2={75:"#FDEFB3",100:"#FFE380",300:"#FFAB00",500:"#C56C00"},_2=F2,I2={0:"#FFFFFF",10:"#FBFBFB",20:"#F4F5F7",30:"#EEEEEE",40:"#DBDBDB",50:"#CACACA",100:"#8B8B8B",500:"#555555",600:"#464646",800:"#2E2E2E",900:"#262626"},N2=I2;var X1=Q.default.div`
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-direction: column;
|
|
4
4
|
align-items: center;
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
@media (max-height: 600px) {
|
|
19
19
|
justify-content: flex-start;
|
|
20
20
|
}
|
|
21
|
-
`,
|
|
21
|
+
`,K1=Q.default.div`
|
|
22
22
|
position: absolute;
|
|
23
23
|
left: 0;
|
|
24
24
|
bottom: 32px;
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
color: ${f.green[300]};
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
|
-
`;var D=require("react/jsx-runtime");function b({children:e,whatsapp:a,textoChamativo:r,style:i,paperStyle:n,ilustracao:l}){return(0,D.jsxs)(
|
|
102
|
+
`;var D=require("react/jsx-runtime");function b({children:e,whatsapp:a,textoChamativo:r,style:i,paperStyle:n,ilustracao:l}){return(0,D.jsxs)(X1,{style:i,children:[r&&(0,D.jsx)(Q1,{children:r}),l&&(0,D.jsx)(K1,{children:typeof l=="string"?(0,D.jsx)("img",{src:l,alt:"Logo do sistema"}):l}),(0,D.jsx)(G1,{style:n,children:e}),a&&(0,D.jsxs)(J1,{onClick:()=>{window.open(`https://api.whatsapp.com/send?phone=${a}`)},style:{marginBottom:16},children:[(0,D.jsxs)(v1.Typography,{variant:"bodyXS",children:["Com d\xFAvidas? ",e0.telefone.format(a.slice(2))]}),(0,D.jsx)(v1.LIcon,{icon:d1,size:"20px",removeMargin:!0})]})]})}var T=require("@s_mart/core"),F=require("@s_mart/form"),P1=require("@s_mart/rules");var z=C(require("@emotion/styled"));var a0=z.default.div`
|
|
103
103
|
display: grid;
|
|
104
104
|
gap: ${c(32)};
|
|
105
105
|
`,r0=z.default.header`
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
color: ${f.green[300]};
|
|
150
150
|
border-color: ${f.green[300]};
|
|
151
151
|
`}}
|
|
152
|
-
`;function t0(){let e=n=>n?n.match(/[a-z]/i):!1,a=n=>n?n.match(/[0-9]/i):!1,r=n=>n?n.length>=6:!1;return{senhaContemLetra:e,senhaContemNumero:a,senhaContemMinimoDe6Caracteres:r,desabilitarBotaoDeCadastro:n=>!n.email||!n.senha||!n.confirmarSenha||!n.termosDeUso||!e(n.senha)||!a(n.senha)||!r(n.senha)}}var o=require("react/jsx-runtime");function l0(v){var m=v,{logo:e,nomeSistema:a,onSubmit:r,linkTermosDeUso:i,email:n,nome:l}=m,s=k(m,["logo","nomeSistema","onSubmit","linkTermosDeUso","email","nome"]);let{senhaContemLetra:p,senhaContemNumero:Z,senhaContemMinimoDe6Caracteres:A,desabilitarBotaoDeCadastro:
|
|
152
|
+
`;function t0(){let e=n=>n?n.match(/[a-z]/i):!1,a=n=>n?n.match(/[0-9]/i):!1,r=n=>n?n.length>=6:!1;return{senhaContemLetra:e,senhaContemNumero:a,senhaContemMinimoDe6Caracteres:r,desabilitarBotaoDeCadastro:n=>!n.email||!n.senha||!n.confirmarSenha||!n.termosDeUso||!e(n.senha)||!a(n.senha)||!r(n.senha)}}var o=require("react/jsx-runtime");function l0(v){var m=v,{logo:e,nomeSistema:a,onSubmit:r,linkTermosDeUso:i,email:n,nome:l}=m,s=k(m,["logo","nomeSistema","onSubmit","linkTermosDeUso","email","nome"]);let{senhaContemLetra:p,senhaContemNumero:Z,senhaContemMinimoDe6Caracteres:A,desabilitarBotaoDeCadastro:K}=t0(),O=typeof e=="string"?(0,o.jsx)("img",{src:e,alt:"Logo do sistema"}):e;return(0,o.jsx)(b,E(S({},s),{children:(0,o.jsxs)(a0,{children:[(0,o.jsxs)(r0,{children:[e&&(0,o.jsx)("div",{children:O}),(0,o.jsxs)(T.Typography,{variant:"titleSM",children:["Vamos cadastrar uma senha de acesso ao ",a,"."]})]}),(0,o.jsx)(F.Form,{onSubmit:r,defaultValues:{email:n,nome:l,termosDeUso:!1},children:({watch:V})=>{let i1=p(V("senha")),c1=Z(V("senha")),t1=A(V("senha"));return(0,o.jsxs)(n0,{children:[(0,o.jsx)(F.TextField,{name:"email",label:"E-mail de acesso",required:!0,disabled:!0}),(0,o.jsx)(F.TextField,{name:"nome",label:"Nome completo",required:!0,rules:P1.required}),(0,o.jsxs)(i0,{children:[(0,o.jsxs)("div",{children:[(0,o.jsx)(F.TextField,{type:"password",name:"senha",label:"Senha de acesso",required:!0,rules:P1.required}),(0,o.jsx)(F.TextField,{type:"password",name:"confirmarSenha",label:"Confirme sua senha",required:!0,rules:{validate:l1=>{if(!l1)return"Campo obrigat\xF3rio";if(l1!==V("senha"))return"As senhas devem ser iguais"}}})]}),(0,o.jsxs)("div",{children:[(0,o.jsx)(T.Typography,{variant:"bodyXS",children:"Sua senha precisa conter:"}),(0,o.jsxs)(c0,{children:[(0,o.jsxs)(m1,{checked:!!i1,children:[i1&&(0,o.jsx)(T.LIcon,{icon:I,size:"16px",removeMargin:!0}),(0,o.jsx)(T.Typography,{variant:"bodyXS",children:"Uma letra"})]}),(0,o.jsxs)(m1,{checked:!!c1,children:[c1&&(0,o.jsx)(T.LIcon,{icon:I,size:"16px",removeMargin:!0}),(0,o.jsx)(T.Typography,{variant:"bodyXS",children:"Um n\xFAmero"})]}),(0,o.jsxs)(m1,{checked:!!t1,children:[t1&&(0,o.jsx)(T.LIcon,{icon:I,size:"16px",removeMargin:!0}),(0,o.jsx)(T.Typography,{variant:"bodyXS",children:"M\xEDnimo de 6 caracteres"})]})]})]})]}),(0,o.jsx)("div",{children:(0,o.jsx)(F.Checkbox,{name:"termosDeUso",label:(0,o.jsxs)("div",{style:{display:"flex",gap:4},children:[(0,o.jsx)("span",{children:"Li e aceito os"}),(0,o.jsx)("a",{href:i,target:"_blank",style:{color:"var(--color-primary)"},rel:"noreferrer",children:"termos de uso"})]})})}),(0,o.jsx)("div",{children:(0,o.jsx)(T.Button,{type:"submit",fullWidth:!0,disabled:K(V()),children:"Concluir meu cadastro"})})]})}})]})}))}var T0=require("react"),W=require("@s_mart/core"),U=require("@s_mart/form"),Y=require("@s_mart/rules");var V1=require("react");var n3=C(require("react"),1);var R=C(require("react")),e3=require("react-dom");var a3=C(g0());var r3="SnackbarContent",q3={root:r3+"-root"};var _="SnackbarItem",z3={contentRoot:_+"-contentRoot",lessPadding:_+"-lessPadding",variantSuccess:_+"-variantSuccess",variantError:_+"-variantError",variantInfo:_+"-variantInfo",variantWarning:_+"-variantWarning",message:_+"-message",action:_+"-action",wrappedRoot:_+"-wrappedRoot"};var j="SnackbarContainer",j3={root:j+"-root",rootDense:j+"-rootDense",top:j+"-top",bottom:j+"-bottom",left:j+"-left",right:j+"-right",center:j+"-center"};var W3=process.env.NODE_ENV!=="production";var x1=C(require("@emotion/styled"),1);var M0=C(require("@emotion/styled"),1),N=require("@emotion/react");var i3=require("react/jsx-runtime"),C0=require("react/jsx-runtime"),I1=require("react/jsx-runtime"),H0=require("react"),S1=C(require("react"),1),ne=require("@emotion/styled"),V0=require("@emotion/react"),x0=C(require("react"),1),P=C(require("react"),1);var y0=()=>{let[e,a]=(0,V1.useState)(!1);return(0,V1.useEffect)(()=>{let r=i=>{i.key==="CapsLock"&&a(i.getModifierState("CapsLock"))};return window.addEventListener("keydown",r),()=>{window.removeEventListener("keydown",r)}},[]),e};var G3=x1.default.div`
|
|
153
153
|
display: flex;
|
|
154
154
|
align-items: center;
|
|
155
155
|
justify-content: space-between;
|
|
@@ -265,17 +265,17 @@
|
|
|
265
265
|
display: grid;
|
|
266
266
|
text-align: center;
|
|
267
267
|
gap: ${c(16)};
|
|
268
|
-
`;var $=require("react/jsx-runtime");function O0(i){var n=i,{logo:e,onVoltarParaLogin:a}=n,r=k(n,["logo","onVoltarParaLogin"]);let l=typeof e=="string"?(0,$.jsx)("img",{src:e,alt:"Logo do sistema"}):e,s=B("(max-width: 500px)");return(0,$.jsx)(b,E(S({},r),{paperStyle:{maxWidth:s?void 0:456,width:s?"90%":void 0},children:(0,$.jsxs)(D0,{children:[(0,$.jsxs)("div",{style:{display:"flex",flexDirection:"column",gap:24},children:[(0,$.jsx)(R0,{children:e&&(0,$.jsx)("div",{children:l})}),(0,$.jsx)(r1.Typography,{variant:"titleMD",textAlign:"center",children:"Instru\xE7\xF5es enviadas"}),(0,$.jsx)(r1.Typography,{variant:"bodySM",textAlign:"center",children:"Enviamos ao seu e-mail de acesso as instru\xE7\xF5es para criar uma nova senha. Verifique sua caixa de entrada e de Spam."})]}),(0,$.jsx)(r1.Button,{fullWidth:!0,onClick:a,children:"Voltar para login"})]})}))}var w=require("@s_mart/core"),n1=require("@s_mart/form"),z0=require("@s_mart/rules");var
|
|
268
|
+
`;var $=require("react/jsx-runtime");function O0(i){var n=i,{logo:e,onVoltarParaLogin:a}=n,r=k(n,["logo","onVoltarParaLogin"]);let l=typeof e=="string"?(0,$.jsx)("img",{src:e,alt:"Logo do sistema"}):e,s=B("(max-width: 500px)");return(0,$.jsx)(b,E(S({},r),{paperStyle:{maxWidth:s?void 0:456,width:s?"90%":void 0},children:(0,$.jsxs)(D0,{children:[(0,$.jsxs)("div",{style:{display:"flex",flexDirection:"column",gap:24},children:[(0,$.jsx)(R0,{children:e&&(0,$.jsx)("div",{children:l})}),(0,$.jsx)(r1.Typography,{variant:"titleMD",textAlign:"center",children:"Instru\xE7\xF5es enviadas"}),(0,$.jsx)(r1.Typography,{variant:"bodySM",textAlign:"center",children:"Enviamos ao seu e-mail de acesso as instru\xE7\xF5es para criar uma nova senha. Verifique sua caixa de entrada e de Spam."})]}),(0,$.jsx)(r1.Button,{fullWidth:!0,onClick:a,children:"Voltar para login"})]})}))}var w=require("@s_mart/core"),n1=require("@s_mart/form"),z0=require("@s_mart/rules");var X=C(require("@emotion/styled"));var F0=X.default.div`
|
|
269
269
|
display: grid;
|
|
270
270
|
gap: ${c(32)};
|
|
271
|
-
`,
|
|
271
|
+
`,_0=X.default.header`
|
|
272
272
|
display: grid;
|
|
273
273
|
text-align: center;
|
|
274
274
|
gap: ${c(16)};
|
|
275
|
-
`,
|
|
275
|
+
`,I0=X.default.div`
|
|
276
276
|
display: grid;
|
|
277
277
|
gap: ${c(32)};
|
|
278
|
-
`,N0=
|
|
278
|
+
`,N0=X.default.div`
|
|
279
279
|
display: grid;
|
|
280
280
|
gap: ${c(4)};
|
|
281
281
|
|
|
@@ -294,11 +294,11 @@
|
|
|
294
294
|
display: grid;
|
|
295
295
|
gap: ${c(4)};
|
|
296
296
|
}
|
|
297
|
-
`,B0=
|
|
297
|
+
`,B0=X.default.div`
|
|
298
298
|
display: flex;
|
|
299
299
|
flex-wrap: wrap;
|
|
300
300
|
gap: ${c(8)};
|
|
301
|
-
`,E1=
|
|
301
|
+
`,E1=X.default.div`
|
|
302
302
|
display: flex;
|
|
303
303
|
align-items: center;
|
|
304
304
|
gap: ${c(4)};
|
|
@@ -315,7 +315,7 @@
|
|
|
315
315
|
color: ${f.green[300]};
|
|
316
316
|
border-color: ${f.green[300]};
|
|
317
317
|
`}}
|
|
318
|
-
`;function q0(){let e=n=>n?n.match(/[a-z]/i):!1,a=n=>n?n.match(/[0-9]/i):!1,r=n=>n?n.length>=6:!1;return{senhaContemLetra:e,senhaContemNumero:a,senhaContemMinimoDe6Caracteres:r,desabilitarBotaoDeCadastro:n=>!n.senha||!n.confirmarSenha||!e(n.senha)||!a(n.senha)||!r(n.senha)}}var u=require("react/jsx-runtime");function j0(i){var n=i,{logo:e,onTrocarMinhaSenha:a}=n,r=k(n,["logo","onTrocarMinhaSenha"]);let{senhaContemLetra:l,senhaContemNumero:s,senhaContemMinimoDe6Caracteres:v,desabilitarBotaoDeCadastro:m}=q0(),p=typeof e=="string"?(0,u.jsx)("img",{src:e,alt:"Logo do sistema"}):e;return(0,u.jsx)(b,E(S({},r),{children:(0,u.jsxs)(F0,{children:[(0,u.jsxs)(
|
|
318
|
+
`;function q0(){let e=n=>n?n.match(/[a-z]/i):!1,a=n=>n?n.match(/[0-9]/i):!1,r=n=>n?n.length>=6:!1;return{senhaContemLetra:e,senhaContemNumero:a,senhaContemMinimoDe6Caracteres:r,desabilitarBotaoDeCadastro:n=>!n.senha||!n.confirmarSenha||!e(n.senha)||!a(n.senha)||!r(n.senha)}}var u=require("react/jsx-runtime");function j0(i){var n=i,{logo:e,onTrocarMinhaSenha:a}=n,r=k(n,["logo","onTrocarMinhaSenha"]);let{senhaContemLetra:l,senhaContemNumero:s,senhaContemMinimoDe6Caracteres:v,desabilitarBotaoDeCadastro:m}=q0(),p=typeof e=="string"?(0,u.jsx)("img",{src:e,alt:"Logo do sistema"}):e;return(0,u.jsx)(b,E(S({},r),{children:(0,u.jsxs)(F0,{children:[(0,u.jsxs)(_0,{children:[e&&(0,u.jsx)("div",{children:p}),(0,u.jsx)(w.Typography,{variant:"titleSM",children:"Vamos cadastrar uma nova senha de acesso."})]}),(0,u.jsx)(n1.Form,{onSubmit:a,children:({watch:Z})=>{let A=l(Z("senha")),K=s(Z("senha")),O=v(Z("senha"));return(0,u.jsxs)(I0,{children:[(0,u.jsxs)(N0,{children:[(0,u.jsxs)("div",{children:[(0,u.jsx)(n1.TextField,{type:"password",name:"senha",label:"Senha de acesso",required:!0,rules:z0.required}),(0,u.jsx)(n1.TextField,{type:"password",name:"confirmarSenha",label:"Confirme sua senha",required:!0,rules:{validate:V=>{if(!V)return"Campo obrigat\xF3rio";if(V!==Z("senha"))return"As senhas devem ser iguais"}}})]}),(0,u.jsxs)("div",{children:[(0,u.jsx)(w.Typography,{variant:"bodyXS",children:"Sua senha precisa conter:"}),(0,u.jsxs)(B0,{children:[(0,u.jsxs)(E1,{checked:!!A,children:[A&&(0,u.jsx)(w.LIcon,{icon:I,size:"16px",removeMargin:!0}),(0,u.jsx)(w.Typography,{variant:"bodyXS",children:"Uma letra"})]}),(0,u.jsxs)(E1,{checked:!!K,children:[K&&(0,u.jsx)(w.LIcon,{icon:I,size:"16px",removeMargin:!0}),(0,u.jsx)(w.Typography,{variant:"bodyXS",children:"Um n\xFAmero"})]}),(0,u.jsxs)(E1,{checked:!!O,children:[O&&(0,u.jsx)(w.LIcon,{icon:I,size:"16px",removeMargin:!0}),(0,u.jsx)(w.Typography,{variant:"bodyXS",children:"M\xEDnimo de 6 caracteres"})]})]})]})]}),(0,u.jsx)("div",{children:(0,u.jsx)(w.Button,{type:"submit",fullWidth:!0,disabled:m(Z()),children:"Trocar minha senha"})})]})}})]})}))}var G=require("@s_mart/core");var k1=C(require("@emotion/styled"));var W0=k1.default.div`
|
|
319
319
|
display: grid;
|
|
320
320
|
gap: ${c(32)};
|
|
321
321
|
|
|
@@ -335,12 +335,12 @@
|
|
|
335
335
|
display: grid;
|
|
336
336
|
gap: ${c(16)};
|
|
337
337
|
}
|
|
338
|
-
`;var T1=require("@s_mart/form"),J=require("@s_mart/rules");var M=require("react/jsx-runtime");function
|
|
338
|
+
`;var T1=require("@s_mart/form"),J=require("@s_mart/rules");var M=require("react/jsx-runtime");function X0(n){var l=n,{logo:e,onVoltarParaLogin:a,onConfirmar:r}=l,i=k(l,["logo","onVoltarParaLogin","onConfirmar"]);let s=typeof e=="string"?(0,M.jsx)("img",{src:e,alt:"Logo do sistema"}):e,v=B("(max-width: 500px)");return(0,M.jsx)(b,E(S({},i),{paperStyle:{minWidth:v?void 0:456,width:v?"90%":void 0},children:(0,M.jsxs)(W0,{children:[(0,M.jsxs)("div",{style:{display:"flex",flexDirection:"column",gap:24},children:[(0,M.jsx)(U0,{children:e&&(0,M.jsx)("div",{children:s})}),(0,M.jsx)(G.Typography,{variant:"titleMD",textAlign:"center",children:"Esqueceu a senha?"}),(0,M.jsx)(G.Typography,{variant:"bodySM",textAlign:"center",children:"Informe seu e-mail de acesso para receber instru\xE7\xF5es e criar uma nova senha."})]}),(0,M.jsx)(T1.Form,{onSubmit:r,children:(0,M.jsxs)(Y0,{children:[(0,M.jsx)("div",{children:(0,M.jsx)(T1.TextField,{name:"email",label:"E-mail de acesso",required:!0,rules:(0,J.composeValidators)([J.required,J.email]),type:"email"})}),(0,M.jsxs)("div",{children:[(0,M.jsx)(G.Button,{fullWidth:!0,type:"submit",children:"Confirmar"}),(0,M.jsx)(G.Button,{fullWidth:!0,onClick:a,variant:"neutral",children:"Voltar para login"})]})]})})]})}))}0&&(module.exports={TelaCadastro,TelaConviteExpirado,TelaEsqueceuSenha,TelaInstrucoesEnviadas,TelaLogin,TelaNovaSenha,TemplateTelaBase});
|
|
339
339
|
/*! Bundled license information:
|
|
340
340
|
|
|
341
341
|
@mui/styled-engine/index.js:
|
|
342
342
|
(**
|
|
343
|
-
* @mui/styled-engine v5.
|
|
343
|
+
* @mui/styled-engine v5.14.6
|
|
344
344
|
*
|
|
345
345
|
* @license MIT
|
|
346
346
|
* This source code is licensed under the MIT license found in the
|
|
@@ -349,7 +349,7 @@
|
|
|
349
349
|
|
|
350
350
|
@mui/material/index.js:
|
|
351
351
|
(**
|
|
352
|
-
* @mui/material v5.
|
|
352
|
+
* @mui/material v5.14.6
|
|
353
353
|
*
|
|
354
354
|
* @license MIT
|
|
355
355
|
* This source code is licensed under the MIT license found in the
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var v2=Object.create;var M1=Object.defineProperty,m2=Object.defineProperties,u2=Object.getOwnPropertyDescriptor,p2=Object.getOwnPropertyDescriptors,f2=Object.getOwnPropertyNames,a1=Object.getOwnPropertySymbols,Z2=Object.getPrototypeOf,C1=Object.prototype.hasOwnProperty,F1=Object.prototype.propertyIsEnumerable;var O1=(e,a,r)=>a in e?M1(e,a,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[a]=r,C=(e,a)=>{for(var r in a||(a={}))C1.call(a,r)&&O1(e,r,a[r]);if(a1)for(var r of a1(a))F1.call(a,r)&&O1(e,r,a[r]);return e},V=(e,a)=>m2(e,p2(a));var x=(e,a)=>{var r={};for(var i in e)C1.call(e,i)&&a.indexOf(i)<0&&(r[i]=e[i]);if(e!=null&&a1)for(var i of a1(e))a.indexOf(i)<0&&F1.call(e,i)&&(r[i]=e[i]);return r};var r1=(e,a)=>()=>(a||e((a={exports:{}}).exports,a),a.exports);var g2=(e,a,r,i)=>{if(a&&typeof a=="object"||typeof a=="function")for(let n of f2(a))!C1.call(e,n)&&n!==r&&M1(e,n,{get:()=>a[n],enumerable:!(i=u2(a,n))||i.enumerable});return e};var y2=(e,a,r)=>(r=e!=null?v2(Z2(e)):{},g2(a||!e||!e.__esModule?M1(r,"default",{value:e,enumerable:!0}):r,e));var G1=r1(s=>{"use strict";var Z=typeof Symbol=="function"&&Symbol.for,V1=Z?Symbol.for("react.element"):60103,x1=Z?Symbol.for("react.portal"):60106,t1=Z?Symbol.for("react.fragment"):60107,l1=Z?Symbol.for("react.strict_mode"):60108,o1=Z?Symbol.for("react.profiler"):60114,s1=Z?Symbol.for("react.provider"):60109,h1=Z?Symbol.for("react.context"):60110,S1=Z?Symbol.for("react.async_mode"):60111,d1=Z?Symbol.for("react.concurrent_mode"):60111,v1=Z?Symbol.for("react.forward_ref"):60112,m1=Z?Symbol.for("react.suspense"):60113,
|
|
1
|
+
var v2=Object.create;var M1=Object.defineProperty,m2=Object.defineProperties,u2=Object.getOwnPropertyDescriptor,p2=Object.getOwnPropertyDescriptors,f2=Object.getOwnPropertyNames,a1=Object.getOwnPropertySymbols,Z2=Object.getPrototypeOf,C1=Object.prototype.hasOwnProperty,F1=Object.prototype.propertyIsEnumerable;var O1=(e,a,r)=>a in e?M1(e,a,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[a]=r,C=(e,a)=>{for(var r in a||(a={}))C1.call(a,r)&&O1(e,r,a[r]);if(a1)for(var r of a1(a))F1.call(a,r)&&O1(e,r,a[r]);return e},V=(e,a)=>m2(e,p2(a));var x=(e,a)=>{var r={};for(var i in e)C1.call(e,i)&&a.indexOf(i)<0&&(r[i]=e[i]);if(e!=null&&a1)for(var i of a1(e))a.indexOf(i)<0&&F1.call(e,i)&&(r[i]=e[i]);return r};var r1=(e,a)=>()=>(a||e((a={exports:{}}).exports,a),a.exports);var g2=(e,a,r,i)=>{if(a&&typeof a=="object"||typeof a=="function")for(let n of f2(a))!C1.call(e,n)&&n!==r&&M1(e,n,{get:()=>a[n],enumerable:!(i=u2(a,n))||i.enumerable});return e};var y2=(e,a,r)=>(r=e!=null?v2(Z2(e)):{},g2(a||!e||!e.__esModule?M1(r,"default",{value:e,enumerable:!0}):r,e));var G1=r1(s=>{"use strict";var Z=typeof Symbol=="function"&&Symbol.for,V1=Z?Symbol.for("react.element"):60103,x1=Z?Symbol.for("react.portal"):60106,t1=Z?Symbol.for("react.fragment"):60107,l1=Z?Symbol.for("react.strict_mode"):60108,o1=Z?Symbol.for("react.profiler"):60114,s1=Z?Symbol.for("react.provider"):60109,h1=Z?Symbol.for("react.context"):60110,S1=Z?Symbol.for("react.async_mode"):60111,d1=Z?Symbol.for("react.concurrent_mode"):60111,v1=Z?Symbol.for("react.forward_ref"):60112,m1=Z?Symbol.for("react.suspense"):60113,_2=Z?Symbol.for("react.suspense_list"):60120,u1=Z?Symbol.for("react.memo"):60115,p1=Z?Symbol.for("react.lazy"):60116,I2=Z?Symbol.for("react.block"):60121,N2=Z?Symbol.for("react.fundamental"):60117,B2=Z?Symbol.for("react.responder"):60118,q2=Z?Symbol.for("react.scope"):60119;function b(e){if(typeof e=="object"&&e!==null){var a=e.$$typeof;switch(a){case V1:switch(e=e.type,e){case S1:case d1:case t1:case o1:case l1:case m1:return e;default:switch(e=e&&e.$$typeof,e){case h1:case v1:case p1:case u1:case s1:return e;default:return a}}case x1:return a}}}function Q1(e){return b(e)===d1}s.AsyncMode=S1;s.ConcurrentMode=d1;s.ContextConsumer=h1;s.ContextProvider=s1;s.Element=V1;s.ForwardRef=v1;s.Fragment=t1;s.Lazy=p1;s.Memo=u1;s.Portal=x1;s.Profiler=o1;s.StrictMode=l1;s.Suspense=m1;s.isAsyncMode=function(e){return Q1(e)||b(e)===S1};s.isConcurrentMode=Q1;s.isContextConsumer=function(e){return b(e)===h1};s.isContextProvider=function(e){return b(e)===s1};s.isElement=function(e){return typeof e=="object"&&e!==null&&e.$$typeof===V1};s.isForwardRef=function(e){return b(e)===v1};s.isFragment=function(e){return b(e)===t1};s.isLazy=function(e){return b(e)===p1};s.isMemo=function(e){return b(e)===u1};s.isPortal=function(e){return b(e)===x1};s.isProfiler=function(e){return b(e)===o1};s.isStrictMode=function(e){return b(e)===l1};s.isSuspense=function(e){return b(e)===m1};s.isValidElementType=function(e){return typeof e=="string"||typeof e=="function"||e===t1||e===d1||e===o1||e===l1||e===m1||e===_2||typeof e=="object"&&e!==null&&(e.$$typeof===p1||e.$$typeof===u1||e.$$typeof===s1||e.$$typeof===h1||e.$$typeof===v1||e.$$typeof===N2||e.$$typeof===B2||e.$$typeof===q2||e.$$typeof===I2)};s.typeOf=b});var J1=r1(h=>{"use strict";process.env.NODE_ENV!=="production"&&function(){"use strict";var e=typeof Symbol=="function"&&Symbol.for,a=e?Symbol.for("react.element"):60103,r=e?Symbol.for("react.portal"):60106,i=e?Symbol.for("react.fragment"):60107,n=e?Symbol.for("react.strict_mode"):60108,l=e?Symbol.for("react.profiler"):60114,o=e?Symbol.for("react.provider"):60109,d=e?Symbol.for("react.context"):60110,v=e?Symbol.for("react.async_mode"):60111,m=e?Symbol.for("react.concurrent_mode"):60111,f=e?Symbol.for("react.forward_ref"):60112,E=e?Symbol.for("react.suspense"):60113,I=e?Symbol.for("react.suspense_list"):60120,A=e?Symbol.for("react.memo"):60115,y=e?Symbol.for("react.lazy"):60116,K=e?Symbol.for("react.block"):60121,Q=e?Symbol.for("react.fundamental"):60117,G=e?Symbol.for("react.responder"):60118,J=e?Symbol.for("react.scope"):60119;function I0(t){return typeof t=="string"||typeof t=="function"||t===i||t===m||t===l||t===n||t===E||t===I||typeof t=="object"&&t!==null&&(t.$$typeof===y||t.$$typeof===A||t.$$typeof===o||t.$$typeof===d||t.$$typeof===f||t.$$typeof===Q||t.$$typeof===G||t.$$typeof===J||t.$$typeof===K)}function M(t){if(typeof t=="object"&&t!==null){var y1=t.$$typeof;switch(y1){case a:var e1=t.type;switch(e1){case v:case m:case i:case l:case n:case E:return e1;default:var R1=e1&&e1.$$typeof;switch(R1){case d:case f:case y:case A:case o:return R1;default:return y1}}case r:return y1}}}var N0=v,B0=m,q0=d,z0=o,j0=a,W0=f,U0=i,Y0=y,X0=A,K0=r,Q0=l,G0=n,J0=E,$1=!1;function e2(t){return $1||($1=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),D1(t)||M(t)===v}function D1(t){return M(t)===m}function a2(t){return M(t)===d}function r2(t){return M(t)===o}function n2(t){return typeof t=="object"&&t!==null&&t.$$typeof===a}function i2(t){return M(t)===f}function c2(t){return M(t)===i}function t2(t){return M(t)===y}function l2(t){return M(t)===A}function o2(t){return M(t)===r}function s2(t){return M(t)===l}function h2(t){return M(t)===n}function d2(t){return M(t)===E}h.AsyncMode=N0,h.ConcurrentMode=B0,h.ContextConsumer=q0,h.ContextProvider=z0,h.Element=j0,h.ForwardRef=W0,h.Fragment=U0,h.Lazy=Y0,h.Memo=X0,h.Portal=K0,h.Profiler=Q0,h.StrictMode=G0,h.Suspense=J0,h.isAsyncMode=e2,h.isConcurrentMode=D1,h.isContextConsumer=a2,h.isContextProvider=r2,h.isElement=n2,h.isForwardRef=i2,h.isFragment=c2,h.isLazy=t2,h.isMemo=l2,h.isPortal=o2,h.isProfiler=s2,h.isStrictMode=h2,h.isSuspense=d2,h.isValidElementType=I0,h.typeOf=M}()});var e0=r1((me,L1)=>{"use strict";process.env.NODE_ENV==="production"?L1.exports=G1():L1.exports=J1()});var l0=r1((ue,t0)=>{"use strict";var E1=e0(),z2={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},j2={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},W2={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},i0={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},k1={};k1[E1.ForwardRef]=W2;k1[E1.Memo]=i0;function a0(e){return E1.isMemo(e)?i0:k1[e.$$typeof]||z2}var U2=Object.defineProperty,Y2=Object.getOwnPropertyNames,r0=Object.getOwnPropertySymbols,X2=Object.getOwnPropertyDescriptor,K2=Object.getPrototypeOf,n0=Object.prototype;function c0(e,a,r){if(typeof a!="string"){if(n0){var i=K2(a);i&&i!==n0&&c0(e,i,r)}var n=Y2(a);r0&&(n=n.concat(r0(a)));for(var l=a0(e),o=a0(a),d=0;d<n.length;++d){var v=n[d];if(!j2[v]&&!(r&&r[v])&&!(o&&o[v])&&!(l&&l[v])){var m=X2(a,v);try{U2(e,v,m)}catch(f){}}}}return e}t0.exports=c0});import{LIcon as A2,Typography as P2}from"@s_mart/core";import{telefone as $2}from"@s_mart/masks";var $={description:"m37.5 11.3-19 19.4-7-7.2a.9.9 0 0 0-1.2 0l-2 2.1c-.4.4-.4 1 0 1.3l9.6 9.8c.3.4.9.4 1.2 0l21.6-22.1c.4-.3.4-1 0-1.3l-2-2a.9.9 0 0 0-1.2 0Z",id:"line-check-regular"};var n1={description:"M35.2 12.7a15.9 15.9 0 0 0-25 19.1L8 40l8.4-2.2a16 16 0 0 0 23.6-14 16 16 0 0 0-4.8-11.1ZM24 37a13 13 0 0 1-6.7-1.9l-.5-.3-5 1.3 1.3-4.8-.3-.5a13.2 13.2 0 0 1 20.5-16.3c2.5 2.4 4 5.7 4 9.3C37.3 31 31.3 37 24 37Zm7.2-10-2.7-1c-.4-.1-.6-.2-.9.2l-1.2 1.5c-.3.3-.5.3-.9.1-2.3-1.1-3.9-2-5.4-4.7-.4-.7.4-.6 1.2-2.1v-.7c-.2-.2-1-2.2-1.3-3-.3-.7-.6-.6-.9-.6h-.7c-.3 0-.7 0-1 .4-.4.4-1.5 1.4-1.5 3.3 0 2 1.5 3.9 1.6 4.1.2.3 2.8 4.3 6.8 6 2.5 1.1 3.5 1.2 4.8 1 .7 0 2.3-1 2.6-1.9.4-.9.4-1.7.3-1.9l-.8-.4Z",id:"line-whatsapp-regular"};var c=e=>`${e/16}rem`;import q from"@emotion/styled";var M2=Object.defineProperty,C2=(e,a)=>{for(var r in a)M2(e,r,{get:a[r],enumerable:!0})},u={};C2(u,{blue:()=>b2,green:()=>L2,neutral:()=>w2,red:()=>x2,yellow:()=>k2});var H2={75:"#AFD2FF",100:"#689DCB",300:"#045BA8",500:"#132C70"},b2=H2,V2={75:"#FEBCAC",100:"#F5917F",300:"#EF4829",500:"#BD2601"},x2=V2,S2={75:"#D6EEBC",100:"#A5D770",300:"#49BF00",500:"#518133"},L2=S2,E2={75:"#FDEFB3",100:"#FFE380",300:"#FFAB00",500:"#C56C00"},k2=E2,T2={0:"#FFFFFF",10:"#FBFBFB",20:"#F4F5F7",30:"#EEEEEE",40:"#DBDBDB",50:"#CACACA",100:"#8B8B8B",500:"#555555",600:"#464646",800:"#2E2E2E",900:"#262626"},w2=T2;var _1=q.div`
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-direction: column;
|
|
4
4
|
align-items: center;
|
|
@@ -18,7 +18,7 @@ var v2=Object.create;var M1=Object.defineProperty,m2=Object.defineProperties,u2=
|
|
|
18
18
|
@media (max-height: 600px) {
|
|
19
19
|
justify-content: flex-start;
|
|
20
20
|
}
|
|
21
|
-
`,
|
|
21
|
+
`,I1=q.div`
|
|
22
22
|
position: absolute;
|
|
23
23
|
left: 0;
|
|
24
24
|
bottom: 32px;
|
|
@@ -99,7 +99,7 @@ var v2=Object.create;var M1=Object.defineProperty,m2=Object.defineProperties,u2=
|
|
|
99
99
|
color: ${u.green[300]};
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
|
-
`;import{jsx as z,jsxs as H1}from"react/jsx-runtime";function H({children:e,whatsapp:a,textoChamativo:r,style:i,paperStyle:n,ilustracao:l}){return H1(
|
|
102
|
+
`;import{jsx as z,jsxs as H1}from"react/jsx-runtime";function H({children:e,whatsapp:a,textoChamativo:r,style:i,paperStyle:n,ilustracao:l}){return H1(_1,{style:i,children:[r&&z(N1,{children:r}),l&&z(I1,{children:typeof l=="string"?z("img",{src:l,alt:"Logo do sistema"}):l}),z(B1,{style:n,children:e}),a&&H1(q1,{onClick:()=>{window.open(`https://api.whatsapp.com/send?phone=${a}`)},style:{marginBottom:16},children:[H1(P2,{variant:"bodyXS",children:["Com d\xFAvidas? ",$2.format(a.slice(2))]}),z(A2,{icon:n1,size:"20px",removeMargin:!0})]})]})}import{Button as D2,LIcon as b1,Typography as j}from"@s_mart/core";import{Checkbox as R2,Form as O2,TextField as c1}from"@s_mart/form";import{required as K1}from"@s_mart/rules";import N from"@emotion/styled";var z1=N.div`
|
|
103
103
|
display: grid;
|
|
104
104
|
gap: ${c(32)};
|
|
105
105
|
`,j1=N.header`
|
|
@@ -149,7 +149,7 @@ var v2=Object.create;var M1=Object.defineProperty,m2=Object.defineProperties,u2=
|
|
|
149
149
|
color: ${u.green[300]};
|
|
150
150
|
border-color: ${u.green[300]};
|
|
151
151
|
`}}
|
|
152
|
-
`;function
|
|
152
|
+
`;function X1(){let e=n=>n?n.match(/[a-z]/i):!1,a=n=>n?n.match(/[0-9]/i):!1,r=n=>n?n.length>=6:!1;return{senhaContemLetra:e,senhaContemNumero:a,senhaContemMinimoDe6Caracteres:r,desabilitarBotaoDeCadastro:n=>!n.email||!n.senha||!n.confirmarSenha||!n.termosDeUso||!e(n.senha)||!a(n.senha)||!r(n.senha)}}import{jsx as p,jsxs as S}from"react/jsx-runtime";function F2(d){var v=d,{logo:e,nomeSistema:a,onSubmit:r,linkTermosDeUso:i,email:n,nome:l}=v,o=x(v,["logo","nomeSistema","onSubmit","linkTermosDeUso","email","nome"]);let{senhaContemLetra:m,senhaContemNumero:f,senhaContemMinimoDe6Caracteres:E,desabilitarBotaoDeCadastro:I}=X1(),A=typeof e=="string"?p("img",{src:e,alt:"Logo do sistema"}):e;return p(H,V(C({},o),{children:S(z1,{children:[S(j1,{children:[e&&p("div",{children:A}),S(j,{variant:"titleSM",children:["Vamos cadastrar uma senha de acesso ao ",a,"."]})]}),p(O2,{onSubmit:r,defaultValues:{email:n,nome:l,termosDeUso:!1},children:({watch:y})=>{let K=m(y("senha")),Q=f(y("senha")),G=E(y("senha"));return S(W1,{children:[p(c1,{name:"email",label:"E-mail de acesso",required:!0,disabled:!0}),p(c1,{name:"nome",label:"Nome completo",required:!0,rules:K1}),S(U1,{children:[S("div",{children:[p(c1,{type:"password",name:"senha",label:"Senha de acesso",required:!0,rules:K1}),p(c1,{type:"password",name:"confirmarSenha",label:"Confirme sua senha",required:!0,rules:{validate:J=>{if(!J)return"Campo obrigat\xF3rio";if(J!==y("senha"))return"As senhas devem ser iguais"}}})]}),S("div",{children:[p(j,{variant:"bodyXS",children:"Sua senha precisa conter:"}),S(Y1,{children:[S(i1,{checked:!!K,children:[K&&p(b1,{icon:$,size:"16px",removeMargin:!0}),p(j,{variant:"bodyXS",children:"Uma letra"})]}),S(i1,{checked:!!Q,children:[Q&&p(b1,{icon:$,size:"16px",removeMargin:!0}),p(j,{variant:"bodyXS",children:"Um n\xFAmero"})]}),S(i1,{checked:!!G,children:[G&&p(b1,{icon:$,size:"16px",removeMargin:!0}),p(j,{variant:"bodyXS",children:"M\xEDnimo de 6 caracteres"})]})]})]})]}),p("div",{children:p(R2,{name:"termosDeUso",label:S("div",{style:{display:"flex",gap:4},children:[p("span",{children:"Li e aceito os"}),p("a",{href:i,target:"_blank",style:{color:"var(--color-primary)"},rel:"noreferrer",children:"termos de uso"})]})})}),p("div",{children:p(D2,{type:"submit",fullWidth:!0,disabled:I(y()),children:"Concluir meu cadastro"})})]})}})]})}))}import{useMemo as m3}from"react";import{Button as p0,Indicator as u3,Typography as p3}from"@s_mart/core";import{Checkbox as f3,Form as Z3,TextField as f0}from"@s_mart/form";import{composeValidators as g3,required as Z0,email as y3}from"@s_mart/rules";import{useEffect as J2,useState as e3}from"react";import Fe from"react";import Ze,{forwardRef as ge,useRef as ye,useCallback as Me,useLayoutEffect as Ce,useEffect as He,createElement as be,useState as Ve,Component as xe,useContext as Se}from"react";import{createPortal as Ee}from"react-dom";var Q2=y2(l0());var G2="SnackbarContent",Te={root:G2+"-root"};var P="SnackbarItem",we={contentRoot:P+"-contentRoot",lessPadding:P+"-lessPadding",variantSuccess:P+"-variantSuccess",variantError:P+"-variantError",variantInfo:P+"-variantInfo",variantWarning:P+"-variantWarning",message:P+"-message",action:P+"-action",wrappedRoot:P+"-wrappedRoot"};var O="SnackbarContainer",Ae={root:O+"-root",rootDense:O+"-rootDense",top:O+"-top",bottom:O+"-bottom",left:O+"-left",right:O+"-right",center:O+"-center"};var Pe=process.env.NODE_ENV!=="production";import T1 from"@emotion/styled";import a3 from"@emotion/styled";import{css as F}from"@emotion/react";import{jsx as Qe}from"react/jsx-runtime";import{Fragment as Je,jsx as e4}from"react/jsx-runtime";import{Fragment as r4,jsx as n4,jsxs as i4}from"react/jsx-runtime";import{useEffect as t4,useRef as l4}from"react";import*as f1 from"react";import"@emotion/styled";import{ThemeContext as i3}from"@emotion/react";import*as h0 from"react";import*as k from"react";var o0=()=>{let[e,a]=e3(!1);return J2(()=>{let r=i=>{i.key==="CapsLock"&&a(i.getModifierState("CapsLock"))};return window.addEventListener("keydown",r),()=>{window.removeEventListener("keydown",r)}},[]),e};var qe=T1.div`
|
|
153
153
|
display: flex;
|
|
154
154
|
align-items: center;
|
|
155
155
|
justify-content: space-between;
|
|
@@ -180,7 +180,7 @@ var v2=Object.create;var M1=Object.defineProperty,m2=Object.defineProperties,u2=
|
|
|
180
180
|
`,je=T1.div`
|
|
181
181
|
cursor: pointer;
|
|
182
182
|
align-self: flex-start;
|
|
183
|
-
`,
|
|
183
|
+
`,Xe=a3.i`
|
|
184
184
|
align-self: center;
|
|
185
185
|
display: inline-flex;
|
|
186
186
|
color: ${({color:e})=>e};
|
|
@@ -265,7 +265,7 @@ var v2=Object.create;var M1=Object.defineProperty,m2=Object.defineProperties,u2=
|
|
|
265
265
|
display: grid;
|
|
266
266
|
text-align: center;
|
|
267
267
|
gap: ${c(16)};
|
|
268
|
-
`;import{jsx as
|
|
268
|
+
`;import{jsx as _,jsxs as L0}from"react/jsx-runtime";function V3(i){var n=i,{logo:e,onVoltarParaLogin:a}=n,r=x(n,["logo","onVoltarParaLogin"]);let l=typeof e=="string"?_("img",{src:e,alt:"Logo do sistema"}):e,o=D("(max-width: 500px)");return _(H,V(C({},r),{paperStyle:{maxWidth:o?void 0:456,width:o?"90%":void 0},children:L0(V0,{children:[L0("div",{style:{display:"flex",flexDirection:"column",gap:24},children:[_(x0,{children:e&&_("div",{children:l})}),_(S0,{variant:"titleMD",textAlign:"center",children:"Instru\xE7\xF5es enviadas"}),_(S0,{variant:"bodySM",textAlign:"center",children:"Enviamos ao seu e-mail de acesso as instru\xE7\xF5es para criar uma nova senha. Verifique sua caixa de entrada e de Spam."})]}),_(b3,{fullWidth:!0,onClick:a,children:"Voltar para login"})]})}))}import{Button as x3,LIcon as A1,Typography as X}from"@s_mart/core";import{Form as S3,TextField as $0}from"@s_mart/form";import{required as L3}from"@s_mart/rules";import B from"@emotion/styled";var E0=B.div`
|
|
269
269
|
display: grid;
|
|
270
270
|
gap: ${c(32)};
|
|
271
271
|
`,k0=B.header`
|
|
@@ -315,7 +315,7 @@ var v2=Object.create;var M1=Object.defineProperty,m2=Object.defineProperties,u2=
|
|
|
315
315
|
color: ${u.green[300]};
|
|
316
316
|
border-color: ${u.green[300]};
|
|
317
317
|
`}}
|
|
318
|
-
`;function P0(){let e=n=>n?n.match(/[a-z]/i):!1,a=n=>n?n.match(/[0-9]/i):!1,r=n=>n?n.length>=6:!1;return{senhaContemLetra:e,senhaContemNumero:a,senhaContemMinimoDe6Caracteres:r,desabilitarBotaoDeCadastro:n=>!n.senha||!n.confirmarSenha||!e(n.senha)||!a(n.senha)||!r(n.senha)}}import{jsx as g,jsxs as w}from"react/jsx-runtime";function E3(i){var n=i,{logo:e,onTrocarMinhaSenha:a}=n,r=x(n,["logo","onTrocarMinhaSenha"]);let{senhaContemLetra:l,senhaContemNumero:o,senhaContemMinimoDe6Caracteres:d,desabilitarBotaoDeCadastro:v}=P0(),m=typeof e=="string"?g("img",{src:e,alt:"Logo do sistema"}):e;return g(H,V(C({},r),{children:w(E0,{children:[w(k0,{children:[e&&g("div",{children:m}),g(
|
|
318
|
+
`;function P0(){let e=n=>n?n.match(/[a-z]/i):!1,a=n=>n?n.match(/[0-9]/i):!1,r=n=>n?n.length>=6:!1;return{senhaContemLetra:e,senhaContemNumero:a,senhaContemMinimoDe6Caracteres:r,desabilitarBotaoDeCadastro:n=>!n.senha||!n.confirmarSenha||!e(n.senha)||!a(n.senha)||!r(n.senha)}}import{jsx as g,jsxs as w}from"react/jsx-runtime";function E3(i){var n=i,{logo:e,onTrocarMinhaSenha:a}=n,r=x(n,["logo","onTrocarMinhaSenha"]);let{senhaContemLetra:l,senhaContemNumero:o,senhaContemMinimoDe6Caracteres:d,desabilitarBotaoDeCadastro:v}=P0(),m=typeof e=="string"?g("img",{src:e,alt:"Logo do sistema"}):e;return g(H,V(C({},r),{children:w(E0,{children:[w(k0,{children:[e&&g("div",{children:m}),g(X,{variant:"titleSM",children:"Vamos cadastrar uma nova senha de acesso."})]}),g(S3,{onSubmit:a,children:({watch:f})=>{let E=l(f("senha")),I=o(f("senha")),A=d(f("senha"));return w(T0,{children:[w(w0,{children:[w("div",{children:[g($0,{type:"password",name:"senha",label:"Senha de acesso",required:!0,rules:L3}),g($0,{type:"password",name:"confirmarSenha",label:"Confirme sua senha",required:!0,rules:{validate:y=>{if(!y)return"Campo obrigat\xF3rio";if(y!==f("senha"))return"As senhas devem ser iguais"}}})]}),w("div",{children:[g(X,{variant:"bodyXS",children:"Sua senha precisa conter:"}),w(A0,{children:[w(Z1,{checked:!!E,children:[E&&g(A1,{icon:$,size:"16px",removeMargin:!0}),g(X,{variant:"bodyXS",children:"Uma letra"})]}),w(Z1,{checked:!!I,children:[I&&g(A1,{icon:$,size:"16px",removeMargin:!0}),g(X,{variant:"bodyXS",children:"Um n\xFAmero"})]}),w(Z1,{checked:!!A,children:[A&&g(A1,{icon:$,size:"16px",removeMargin:!0}),g(X,{variant:"bodyXS",children:"M\xEDnimo de 6 caracteres"})]})]})]})]}),g("div",{children:g(x3,{type:"submit",fullWidth:!0,disabled:v(f()),children:"Trocar minha senha"})})]})}})]})}))}import{Button as F0,Typography as _0}from"@s_mart/core";import P1 from"@emotion/styled";var D0=P1.div`
|
|
319
319
|
display: grid;
|
|
320
320
|
gap: ${c(32)};
|
|
321
321
|
|
|
@@ -335,12 +335,12 @@ var v2=Object.create;var M1=Object.defineProperty,m2=Object.defineProperties,u2=
|
|
|
335
335
|
display: grid;
|
|
336
336
|
gap: ${c(16)};
|
|
337
337
|
}
|
|
338
|
-
`;import{Form as k3,TextField as T3}from"@s_mart/form";import{composeValidators as w3,email as A3,required as P3}from"@s_mart/rules";import{jsx as T,jsxs as g1}from"react/jsx-runtime";function $3(n){var l=n,{logo:e,onVoltarParaLogin:a,onConfirmar:r}=l,i=x(l,["logo","onVoltarParaLogin","onConfirmar"]);let o=typeof e=="string"?T("img",{src:e,alt:"Logo do sistema"}):e,d=D("(max-width: 500px)");return T(H,V(C({},i),{paperStyle:{minWidth:d?void 0:456,width:d?"90%":void 0},children:g1(D0,{children:[g1("div",{style:{display:"flex",flexDirection:"column",gap:24},children:[T(R0,{children:e&&T("div",{children:o})}),T(
|
|
338
|
+
`;import{Form as k3,TextField as T3}from"@s_mart/form";import{composeValidators as w3,email as A3,required as P3}from"@s_mart/rules";import{jsx as T,jsxs as g1}from"react/jsx-runtime";function $3(n){var l=n,{logo:e,onVoltarParaLogin:a,onConfirmar:r}=l,i=x(l,["logo","onVoltarParaLogin","onConfirmar"]);let o=typeof e=="string"?T("img",{src:e,alt:"Logo do sistema"}):e,d=D("(max-width: 500px)");return T(H,V(C({},i),{paperStyle:{minWidth:d?void 0:456,width:d?"90%":void 0},children:g1(D0,{children:[g1("div",{style:{display:"flex",flexDirection:"column",gap:24},children:[T(R0,{children:e&&T("div",{children:o})}),T(_0,{variant:"titleMD",textAlign:"center",children:"Esqueceu a senha?"}),T(_0,{variant:"bodySM",textAlign:"center",children:"Informe seu e-mail de acesso para receber instru\xE7\xF5es e criar uma nova senha."})]}),T(k3,{onSubmit:r,children:g1(O0,{children:[T("div",{children:T(T3,{name:"email",label:"E-mail de acesso",required:!0,rules:w3([P3,A3]),type:"email"})}),g1("div",{children:[T(F0,{fullWidth:!0,type:"submit",children:"Confirmar"}),T(F0,{fullWidth:!0,onClick:a,variant:"neutral",children:"Voltar para login"})]})]})})]})}))}export{F2 as TelaCadastro,H3 as TelaConviteExpirado,$3 as TelaEsqueceuSenha,V3 as TelaInstrucoesEnviadas,M3 as TelaLogin,E3 as TelaNovaSenha,H as TemplateTelaBase};
|
|
339
339
|
/*! Bundled license information:
|
|
340
340
|
|
|
341
341
|
@mui/styled-engine/index.js:
|
|
342
342
|
(**
|
|
343
|
-
* @mui/styled-engine v5.
|
|
343
|
+
* @mui/styled-engine v5.14.6
|
|
344
344
|
*
|
|
345
345
|
* @license MIT
|
|
346
346
|
* This source code is licensed under the MIT license found in the
|
|
@@ -349,7 +349,7 @@ var v2=Object.create;var M1=Object.defineProperty,m2=Object.defineProperties,u2=
|
|
|
349
349
|
|
|
350
350
|
@mui/material/index.js:
|
|
351
351
|
(**
|
|
352
|
-
* @mui/material v5.
|
|
352
|
+
* @mui/material v5.14.6
|
|
353
353
|
*
|
|
354
354
|
* @license MIT
|
|
355
355
|
* This source code is licensed under the MIT license found in the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@s_mart/telas-de-acesso",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"tsup": "^6.7.0",
|
|
19
|
-
"typescript": "^5.
|
|
20
|
-
"@types/react": "18.2.
|
|
19
|
+
"typescript": "^5.2.2",
|
|
20
|
+
"@types/react": "^18.2.21",
|
|
21
21
|
"@types/react-dom": "18.2.4",
|
|
22
22
|
"@s_mart/core": "*",
|
|
23
23
|
"@s_mart/form": "*",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"react": ">=18.2.0",
|
|
29
29
|
"react-dom": ">=18.2.0",
|
|
30
30
|
"react-hook-form": ">=7.36.1",
|
|
31
|
-
"typescript": ">=5.
|
|
31
|
+
"typescript": ">=5.2.2",
|
|
32
32
|
"@types/react": ">=18.2.5",
|
|
33
|
-
"@types/react-dom": ">=18.2.
|
|
33
|
+
"@types/react-dom": ">=18.2.7",
|
|
34
34
|
"@emotion/react": ">=11.10.8",
|
|
35
35
|
"@emotion/styled": ">=11.10.8",
|
|
36
36
|
"@s_mart/core": "*",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"@s_mart/masks": "*"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@s_mart/eslint": "*",
|
|
42
41
|
"@s_mart/tsconfig": "*",
|
|
43
|
-
"eslint": "^8.
|
|
42
|
+
"eslint": "^8.47.0",
|
|
43
|
+
"eslint-config-s_mart": "*"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|