@s_mart/form 3.2.2 → 3.3.1

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 CHANGED
@@ -1,16 +1,23 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { FieldValues, UseFormProps, UseFormReturn, ControllerProps, UseControllerProps } from 'react-hook-form';
2
+ import * as react_hook_form from 'react-hook-form';
3
+ import { FieldValues, UseFormReturn, FormProviderProps, UseFormProps, ControllerProps, UseControllerProps } from 'react-hook-form';
3
4
  import { z } from 'zod';
4
5
  import * as react from 'react';
5
6
  import { TextFieldProps as TextFieldProps$1, SelectProps as SelectProps$1, AutocompleteProps as AutocompleteProps$1, CheckboxProps as CheckboxProps$1, SwitchProps as SwitchProps$1, RadioProps as RadioProps$1, RadioGroupProps as RadioGroupProps$1, SliderProps as SliderProps$1 } from '@mui/material';
6
7
  import { DatePickerProps as DatePickerProps$1, TimePickerProps as TimePickerProps$1 } from '@mui/x-date-pickers';
7
8
 
8
- interface IFormProps<T extends FieldValues> extends Omit<UseFormProps, 'resolver'> {
9
- onSubmit: (data: T, methods: UseFormReturn<T>) => void;
9
+ interface IFormProps<T extends FieldValues> extends IUseFormProps<T> {
10
10
  children: ((methods: UseFormReturn<T> & {
11
11
  onSubmit: (e?: React.FormEvent | undefined) => Promise<void>;
12
12
  }) => React.ReactNode) | React.ReactNode;
13
13
  style?: React.HTMLAttributes<HTMLFormElement>['style'];
14
+ }
15
+ interface IFormProviderProps extends FormProviderProps<any> {
16
+ style?: React.HTMLAttributes<HTMLFormElement>['style'];
17
+ onSubmit: (e?: React.BaseSyntheticEvent) => void;
18
+ }
19
+ interface IUseFormProps<TValues extends FieldValues> extends Omit<UseFormProps<TValues>, 'resolver'> {
20
+ onSubmit: (data: TValues, methods: UseFormReturn<TValues>) => void;
14
21
  /**
15
22
  * Prop que faz com que o formulário não atualize ao mudar o defaultValue
16
23
  */
@@ -18,7 +25,28 @@ interface IFormProps<T extends FieldValues> extends Omit<UseFormProps, 'resolver
18
25
  schema?: z.ZodObject<any> | z.ZodEffects<z.ZodObject<any>>;
19
26
  }
20
27
 
21
- declare function Form({ children, onSubmit, style, disableDefaultValuesUpdate, ...rest }: IFormProps<any>): react_jsx_runtime.JSX.Element;
28
+ declare function Form({ children, style, ...useFormProps }: IFormProps<any>): react_jsx_runtime.JSX.Element;
29
+
30
+ declare const useForm: <TValues extends FieldValues>({ disableDefaultValuesUpdate, onSubmit, ...rest }: IUseFormProps<TValues>) => {
31
+ onSubmit: (e?: react.BaseSyntheticEvent<object, any, any> | undefined) => Promise<void>;
32
+ watch: react_hook_form.UseFormWatch<TValues>;
33
+ getValues: react_hook_form.UseFormGetValues<TValues>;
34
+ getFieldState: react_hook_form.UseFormGetFieldState<TValues>;
35
+ setError: react_hook_form.UseFormSetError<TValues>;
36
+ clearErrors: react_hook_form.UseFormClearErrors<TValues>;
37
+ setValue: react_hook_form.UseFormSetValue<TValues>;
38
+ trigger: react_hook_form.UseFormTrigger<TValues>;
39
+ formState: react_hook_form.FormState<TValues>;
40
+ resetField: react_hook_form.UseFormResetField<TValues>;
41
+ reset: react_hook_form.UseFormReset<TValues>;
42
+ handleSubmit: react_hook_form.UseFormHandleSubmit<TValues>;
43
+ unregister: react_hook_form.UseFormUnregister<TValues>;
44
+ control: react_hook_form.Control<TValues, any>;
45
+ register: react_hook_form.UseFormRegister<TValues>;
46
+ setFocus: react_hook_form.UseFormSetFocus<TValues>;
47
+ };
48
+
49
+ declare const FormProvider: ({ children, style, onSubmit, ...methods }: IFormProviderProps) => react_jsx_runtime.JSX.Element;
22
50
 
23
51
  type ControllerTextField = Omit<ControllerProps, 'render' | 'control'>;
24
52
  type Masks = 'cpf' | 'cnpj' | 'cpfCnpj' | 'cep' | 'telefone' | 'decimal' | 'decimal3' | 'decimal4' | 'decimal5' | 'porcentagem' | 'porcentagem0' | 'nome' | 'numero' | 'numeroPontuacao' | 'placa' | 'valor';
@@ -444,4 +472,4 @@ type AutocompleteProps<T = any> = Omit<UseControllerProps, 'control'> & Omit<Aut
444
472
 
445
473
  declare const _default: react.MemoExoticComponent<({ name, defaultValue, rules, shouldUnregister, label, required, noOptionsText, placeholder, onInputChange, onChange, ...rest }: AutocompleteProps) => react_jsx_runtime.JSX.Element>;
446
474
 
447
- export { _default as Autocomplete, AutocompleteProps, Checkbox, CheckboxProps, _default$3 as Creatable, CreatableOption, CreatableProps, _default$2 as DatePicker, DatePickerProps, FooterProps, Form, IFormProps, RadioButton, RadioGroup, RadioGroupProps, RadioProps, _default$4 as Searchable, SearchableOption, SearchableProps, _default$5 as Select, SelectOption, SelectProps, Slider, SliderProps, Switch, SwitchProps, _default$6 as TextField, TextFieldProps, _default$1 as TimePicker, TimePickerProps };
475
+ export { _default as Autocomplete, AutocompleteProps, Checkbox, CheckboxProps, _default$3 as Creatable, CreatableOption, CreatableProps, _default$2 as DatePicker, DatePickerProps, FooterProps, Form, FormProvider, IFormProps, IFormProviderProps, IUseFormProps, RadioButton, RadioGroup, RadioGroupProps, RadioProps, _default$4 as Searchable, SearchableOption, SearchableProps, _default$5 as Select, SelectOption, SelectProps, Slider, SliderProps, Switch, SwitchProps, _default$6 as TextField, TextFieldProps, _default$1 as TimePicker, TimePickerProps, useForm };
package/dist/index.js CHANGED
@@ -1,8 +1,8 @@
1
- "use strict";var I0=Object.create;var o1=Object.defineProperty,q0=Object.defineProperties,$0=Object.getOwnPropertyDescriptor,z0=Object.getOwnPropertyDescriptors,U0=Object.getOwnPropertyNames,Z1=Object.getOwnPropertySymbols,O0=Object.getPrototypeOf,E1=Object.prototype.hasOwnProperty,O1=Object.prototype.propertyIsEnumerable;var U1=(c,l,i)=>l in c?o1(c,l,{enumerable:!0,configurable:!0,writable:!0,value:i}):c[l]=i,a=(c,l)=>{for(var i in l||(l={}))E1.call(l,i)&&U1(c,i,l[i]);if(Z1)for(var i of Z1(l))O1.call(l,i)&&U1(c,i,l[i]);return c},t=(c,l)=>q0(c,z0(l));var g=(c,l)=>{var i={};for(var r in c)E1.call(c,r)&&l.indexOf(r)<0&&(i[r]=c[r]);if(c!=null&&Z1)for(var r of Z1(c))l.indexOf(r)<0&&O1.call(c,r)&&(i[r]=c[r]);return i};var _0=(c,l)=>{for(var i in l)o1(c,i,{get:l[i],enumerable:!0})},_1=(c,l,i,r)=>{if(l&&typeof l=="object"||typeof l=="function")for(let o of U0(l))!E1.call(c,o)&&o!==i&&o1(c,o,{get:()=>l[o],enumerable:!(r=$0(l,o))||r.enumerable});return c};var p1=(c,l,i)=>(i=c!=null?I0(O0(c)):{},_1(l||!c||!c.__esModule?o1(i,"default",{value:c,enumerable:!0}):i,c)),N0=c=>_1(o1({},"__esModule",{value:!0}),c);var d2={};_0(d2,{Autocomplete:()=>D0,Checkbox:()=>h0,Creatable:()=>s0,DatePicker:()=>F0,Form:()=>W1,RadioButton:()=>m0,RadioGroup:()=>v0,Searchable:()=>a0,Select:()=>i0,Slider:()=>p0,Switch:()=>d0,TextField:()=>e0,TimePicker:()=>E0});module.exports=N0(d2);var N1=require("react"),u1=require("react-hook-form"),j1=require("@hookform/resolvers/zod");var G1=require("react/jsx-runtime");function j0(x){var h=x,{children:c,onSubmit:l,style:i,disableDefaultValuesUpdate:r}=h,o=g(h,["children","onSubmit","style","disableDefaultValuesUpdate"]);let s=(0,u1.useForm)(t(a({},o),{resolver:o.schema&&(0,j1.zodResolver)(o.schema)}));(0,N1.useEffect)(()=>{r||s.reset(o.defaultValues)},[o.defaultValues,s.reset]);let m=()=>typeof c=="function"?c(t(a({},s),{onSubmit:s.handleSubmit(n=>l(n,s))})):c;return(0,G1.jsx)(u1.FormProvider,t(a({},s),{children:(0,G1.jsx)("form",{onSubmit:n=>{n.preventDefault(),n.stopPropagation(),s.handleSubmit(d=>l(d,s))()},style:i,children:m()})}))}var W1=j0;var f1=require("react"),M1=require("react-hook-form"),j=require("@mui/material");var Y1={description:"M39 23.1a17 17 0 0 0-15-10c-6.5.1-12.4 4-15.2 10V25a17 17 0 0 0 15 10A17 17 0 0 0 39 25c.5-.7.5-1.3.2-1.8Zm-15 9a8 8 0 0 1-7.6-8.5c.2-4.2 3.5-7.8 7.6-7.8a8 8 0 0 1 7.6 8.4c-.1 4.3-3.5 7.9-7.6 7.9Zm0-13.5-1.3.1c.7 1.1.6 2.6-.3 3.7-1 .9-2.3.9-3.4.1-.4 2.2.3 4.7 2.1 6a4.9 4.9 0 0 0 6-.2c1.6-1.4 2.4-4 1.6-6.1a4.9 4.9 0 0 0-4.7-3.6Z",id:"line-eye-solid"},K1={description:"M24 31.7c-4 0-7.4-3.1-7.7-7.1l-5.6-4.4c-.8 1-1.4 2-2 3a1.7 1.7 0 0 0 0 1.6 17.2 17.2 0 0 0 19.5 9l-2.8-2.2-1.4.1ZM40.9 35l-6-4.6c1.8-1.5 3.3-3.4 4.4-5.5a1.7 1.7 0 0 0 0-1.6c-3-5.7-8.7-9.5-15.3-9.5-2.8 0-5.5.7-8 2l-6.8-5.3a.9.9 0 0 0-1.2.2L7 12a.9.9 0 0 0 .1 1.2l31.7 24.5a.9.9 0 0 0 1.2-.2l1-1.3a.9.9 0 0 0-.1-1.2Zm-10-7.7-2-1.6a5 5 0 0 0-6.3-6.6 2.5 2.5 0 0 1 .4 2l-3.9-3a7.7 7.7 0 0 1 10.4.5 7.7 7.7 0 0 1 1.5 8.7Z",id:"line-eye-slash-solid"};var N={description:"M24 8a16 16 0 0 0 0 32 16 16 0 0 0 0-32Zm0 7.1c1.5 0 2.7 1.2 2.7 2.7 0 1.6-1.2 2.7-2.7 2.7a2.6 2.6 0 0 1-2.7-2.7c0-1.5 1.2-2.7 2.7-2.7Zm3.6 16.4c0 .4-.4.8-.8.8h-5.6a.7.7 0 0 1-.8-.8v-1.6c0-.4.3-.7.8-.7h.7V25h-.7a.7.7 0 0 1-.8-.7v-1.6c0-.4.3-.8.8-.8h4c.5 0 .9.4.9.8v6.5h.7c.4 0 .8.3.8.7v1.6Z",id:"line-info-circle-solid"};var Q1={description:"m25.5 17 5.5 5.5-12 12-4.9.5a1 1 0 0 1-1-1.1l.5-5L25.5 17Zm8.9-.8-2.6-2.6a2 2 0 0 0-2.9 0L26.5 16l5.5 5.5 2.4-2.4a2 2 0 0 0 0-3Z",id:"line-pen-solid"};var D1={description:"M35.8 21.8h-9.6v-9.6c0-.6-.6-1.1-1.1-1.1h-2.2a1 1 0 0 0-1 1v9.7h-9.7c-.6 0-1.1.6-1.1 1.1v2.2c0 .6.5 1 1 1h9.7v9.7c0 .6.5 1.1 1.1 1.1h2.2c.5 0 1-.5 1-1v-9.7h9.7c.6 0 1.1-.5 1.1-1.1v-2.2c0-.5-.5-1-1-1Z",id:"line-plus-solid"};var X=p1(require("@s_mart/masks"));var B1=require("@mui/material"),J1=require("@s_mart/utils"),r1=require("react/jsx-runtime"),b=({label:c,required:l,regular:i})=>(0,r1.jsxs)("span",{style:{display:"flex",alignItems:"center",gap:(0,J1.toRem)(2)},children:[(0,r1.jsx)(B1.Typography,{variant:"caption",fontWeight:i?400:700,style:{display:"flex",alignItems:"center"},children:c}),l&&(0,r1.jsx)(B1.Typography,{variant:"caption",fontWeight:900,color:"error",children:"*"})]});var X1=require("react-hook-form"),c0=require("@s_mart/core");var E=(c,l)=>{var i,r,o,x,h;if(c[l])return c[l];if(l.includes("[")){let[s,m]=l.split("["),[n,d]=m.split("].");return(r=(i=c[s])==null?void 0:i[n])==null?void 0:r[d]}if(l.includes(".")){let[s,m,n]=l.split(".");return n?(h=(x=c[s])==null?void 0:x[m])==null?void 0:h[n]:(o=c[s])==null?void 0:o[m]}};var l0=require("react/jsx-runtime"),w=({name:c})=>{var r;let l=(0,X1.useFormContext)(),i=E((r=l==null?void 0:l.formState)==null?void 0:r.errors,c);return i?(0,l0.jsx)(c0.Indicator,{severity:"error",children:i==null?void 0:i.message}):null};var n1=require("@s_mart/core");var D=require("react/jsx-runtime"),W0=C=>{var k=C,{name:c,rules:l,defaultValue:i,shouldUnregister:r,label:o,required:x,mask:h,variant:s="outlined",info:m,parse:n,format:d,onInputChange:f}=k,M=g(k,["name","rules","defaultValue","shouldUnregister","label","required","mask","variant","info","parse","format","onInputChange"]);let F=(0,M1.useFormContext)();if(!F)throw new Error("Para usar o <TextField /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let[v,u]=(0,f1.useState)(!1),P=H=>{var e;let V=H;return d&&(V=d(H)),h?(e=X==null?void 0:X[h])==null?void 0:e.format(V):V},Z=H=>{var e;let V=H;return n&&(V=n(H)),h?(e=X==null?void 0:X[h])==null?void 0:e.parse(V):V},S=H=>{if(!H||h!=="porcentagem")return;H==null||H.stopPropagation();let V=(H==null?void 0:H.target).value;if(V){let e=String(V);if(e.length>0){let T=e.indexOf("%");T>-1&&(H.currentTarget.selectionEnd=T)}}},G=E(F.formState.errors,c);return(0,D.jsx)(M1.Controller,{control:F.control,name:c,rules:l,defaultValue:i,shouldUnregister:r,render:({field:{value:H,onChange:V,ref:e}})=>(0,D.jsxs)(j.Grid,{display:"flex",flexDirection:"column",children:[(0,D.jsxs)("div",{style:{display:"flex"},children:[o&&(0,D.jsx)(j.Grid,{item:!0,children:(0,D.jsx)(b,{label:o,required:x})}),m&&(0,D.jsx)(j.Grid,{item:!0,children:(0,D.jsx)(n1.Tooltip,{title:m,placement:"top",children:(0,D.jsx)("div",{style:{width:"fit-content"},children:(0,D.jsx)(n1.LIcon,{icon:N,color:"#757575"})})})})]}),(0,D.jsx)(j.TextField,t(a({variant:s,defaultValue:i,value:P(H||""),onChange:T=>{var a1;let v1=Z((a1=T==null?void 0:T.target)==null?void 0:a1.value);V(v1),f==null||f(v1,F.watch())},error:!!G},M),{type:M.type==="password"?v?"text":"password":M.type,autoComplete:M.autoComplete||"off",InputProps:a({onKeyDown:S,inputRef:e,endAdornment:M.type==="password"&&(0,D.jsx)(j.InputAdornment,{position:"end",onClick:()=>u(!v),style:{cursor:"pointer"},children:(0,D.jsx)(n1.LIcon,{icon:v?Y1:K1,size:"24px",removeMargin:!0})})},M.InputProps)}),c),(0,D.jsx)(w,{name:c})]})})},e0=(0,f1.memo)(W0);var H1=require("react"),V1=require("react-hook-form"),c1=require("@s_mart/core"),B=require("@mui/material");var L=require("react/jsx-runtime"),Y0=k=>{var F=k,{name:c,rules:l,defaultValue:i,shouldUnregister:r,label:o,required:x,options:h,placeholder:s,disableOnChangeForm:m=!1,multiple:n,info:d,footer:f,onChange:M}=F,C=g(F,["name","rules","defaultValue","shouldUnregister","label","required","options","placeholder","disableOnChangeForm","multiple","info","footer","onChange"]);let v=(0,V1.useFormContext)(),{palette:u}=(0,B.useTheme)(),[P,Z]=(0,H1.useState)(!1);if(!v)throw new Error("Para usar o <Select /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let S=E(v.formState.errors,c);return console.warn=()=>{},(0,L.jsx)(V1.Controller,{control:v.control,name:c,rules:l,defaultValue:i,shouldUnregister:r,render:({field:{value:G,onChange:H,ref:V}})=>(0,L.jsxs)(B.Grid,{display:"flex",flexDirection:"column",children:[(0,L.jsxs)("div",{style:{display:"flex"},children:[o&&(0,L.jsx)(B.Grid,{item:!0,children:(0,L.jsx)(b,{label:o,required:x})}),d&&(0,L.jsx)(B.Grid,{item:!0,children:(0,L.jsx)(c1.Tooltip,{title:d,placement:"top",children:(0,L.jsx)("div",{style:{width:"fit-content"},children:(0,L.jsx)(c1.LIcon,{icon:N,color:"#757575"})})})})]}),(0,L.jsxs)(B.Select,t(a({open:P,onOpen:()=>Z(!0),onClose:()=>Z(!1),displayEmpty:!!s,variant:"outlined",autoComplete:"off",value:G?G||"":n?[]:"",renderValue:e=>{if(e.label)return e.label;if(s)return(0,L.jsx)("p",{style:{color:u.grey[400]},children:s})},multiple:n,onChange:e=>{!m&&H(e.target.value),M&&M(e.target.value,v.watch())},error:!!S,size:C.size||"medium",inputRef:V},C),{children:[s&&(0,L.jsx)(B.MenuItem,{disabled:!0,value:"",children:(0,L.jsx)("p",{style:{color:u.grey[400]},children:s})}),h==null?void 0:h.map((e,T)=>(0,L.jsx)(B.MenuItem,{value:e,children:(0,L.jsxs)(B.Grid,{container:!0,direction:"column",children:[(0,L.jsx)(B.Grid,{item:!0,children:e.label}),e.afterLabel&&(0,L.jsx)(B.Grid,{item:!0,children:e.afterLabel})]})},T)),f&&[(0,L.jsx)(B.Grid,{px:2,py:1,children:(0,L.jsx)(c1.Divider,{})},"footer-divider"),(0,L.jsx)("div",{children:f({closeSelect:()=>Z(!1)})},"footer-content")]]}),c),(0,L.jsx)(w,{name:c})]})})},i0=(0,H1.memo)(Y0);var y1=require("react"),x1=require("react-hook-form"),Q=require("@s_mart/core");var I=require("@mui/material");var p=require("react/jsx-runtime"),R1=require("react"),K0=v=>{var u=v,{name:c,rules:l,defaultValue:i,shouldUnregister:r,label:o,required:x,options:h,textFieldProps:s,noOptionsText:m,footer:n,multiple:d,info:f,placeholder:M,onChange:C,onInputChange:k}=u,F=g(u,["name","rules","defaultValue","shouldUnregister","label","required","options","textFieldProps","noOptionsText","footer","multiple","info","placeholder","onChange","onInputChange"]);let P=(0,x1.useFormContext)();if(!P)throw new Error("Para usar o <Searchable /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let Z=E(P.formState.errors,c);return console.warn=()=>{},(0,p.jsx)(x1.Controller,{control:P.control,name:c,rules:l,defaultValue:i,shouldUnregister:r,render:({field:{onChange:S,value:G,ref:H}})=>(0,p.jsxs)(I.Grid,{display:"flex",flexDirection:"column",children:[(0,p.jsxs)("div",{style:{display:"flex"},children:[o&&(0,p.jsx)(I.Grid,{item:!0,children:(0,p.jsx)(b,{label:o,required:x})}),f&&(0,p.jsx)(I.Grid,{item:!0,children:(0,p.jsx)(Q.Tooltip,{title:f,placement:"top",children:(0,p.jsx)("div",{style:{width:"fit-content"},children:(0,p.jsx)(Q.LIcon,{icon:N,color:"#757575"})})})})]}),(0,p.jsx)(I.Autocomplete,t(a({onChange:(V,e)=>{S(e),C==null||C(e,P.watch())},onInputChange:(V,e,T)=>{T==="input"&&setTimeout(()=>{k==null||k(e,P.watch())},0)},value:G||(d?[]:null),options:h,multiple:d,noOptionsText:(0,p.jsxs)(p.Fragment,{children:[m||"Nenhum resultado encontrado",n?(0,p.jsxs)(p.Fragment,{children:[(0,p.jsx)(I.Grid,{py:1,children:(0,p.jsx)(Q.Divider,{})}),n]}):null]}),isOptionEqualToValue:(V,e)=>typeof V=="string"&&typeof e=="string"?V===e:typeof V=="object"&&typeof e=="object"?V.value===e.value:!1,renderOption:(V,e)=>typeof e=="object"?(0,R1.createElement)("li",t(a({},V),{key:e.key||e.value}),(0,p.jsxs)(I.Grid,{container:!0,direction:"column",children:[(0,p.jsx)(I.Grid,{item:!0,children:e.label}),e.afterLabel&&(0,p.jsx)(I.Grid,{item:!0,children:e.afterLabel})]})):(0,R1.createElement)("li",t(a({},V),{key:e}),e),ListboxComponent:(0,y1.forwardRef)(function(e,T){return(0,p.jsxs)(p.Fragment,{children:[(0,p.jsx)("ul",t(a({},e),{ref:T})),!!n&&(0,p.jsx)("div",t(a({},e),{children:(0,p.jsxs)(p.Fragment,{children:[(0,p.jsx)(I.Grid,{px:2,py:1,children:(0,p.jsx)(Q.Divider,{})}),n]})}),"searchable-footer")]})})},F),{renderInput:V=>(0,p.jsx)(I.TextField,t(a(a({error:!!Z,placeholder:M},V),s),{inputRef:H}))}),c),(0,p.jsx)(w,{name:c})]})})},a0=(0,y1.memo)(K0);var t0=require("react"),g1=require("react-hook-form"),q=require("@mui/material");var t1=require("@s_mart/utils"),o0=p1(require("@emotion/styled")),I1=require("@emotion/react"),r0=I1.css`
1
+ "use strict";var u2=Object.create;var g1=Object.defineProperty,f2=Object.defineProperties,M2=Object.getOwnPropertyDescriptor,H2=Object.getOwnPropertyDescriptors,V2=Object.getOwnPropertyNames,S1=Object.getOwnPropertySymbols,y2=Object.getPrototypeOf,Q1=Object.prototype.hasOwnProperty,v0=Object.prototype.propertyIsEnumerable;var m0=(e,c,o)=>c in e?g1(e,c,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[c]=o,n=(e,c)=>{for(var o in c||(c={}))Q1.call(c,o)&&m0(e,o,c[o]);if(S1)for(var o of S1(c))v0.call(c,o)&&m0(e,o,c[o]);return e},u=(e,c)=>f2(e,H2(c));var k=(e,c)=>{var o={};for(var s in e)Q1.call(e,s)&&c.indexOf(s)<0&&(o[s]=e[s]);if(e!=null&&S1)for(var s of S1(e))c.indexOf(s)<0&&v0.call(e,s)&&(o[s]=e[s]);return o};var p0=(e,c)=>()=>(c||e((c={exports:{}}).exports,c),c.exports),g2=(e,c)=>{for(var o in c)g1(e,o,{get:c[o],enumerable:!0})},Z0=(e,c,o,s)=>{if(c&&typeof c=="object"||typeof c=="function")for(let r of V2(c))!Q1.call(e,r)&&r!==o&&g1(e,r,{get:()=>c[r],enumerable:!(s=M2(c,r))||s.enumerable});return e};var p1=(e,c,o)=>(o=e!=null?u2(y2(e)):{},Z0(c||!e||!e.__esModule?g1(o,"default",{value:e,enumerable:!0}):o,e)),x2=e=>Z0(g1({},"__esModule",{value:!0}),e);var q0=p0((t0,n0)=>{(function(e,c){typeof t0=="object"&&typeof n0!="undefined"?n0.exports=c():typeof define=="function"&&define.amd?define(c):(e=typeof globalThis!="undefined"?globalThis:e||self).dayjs=c()})(t0,function(){"use strict";var e=1e3,c=6e4,o=36e5,s="millisecond",r="second",p="minute",v="hour",H="day",L="week",h="month",g="quarter",V="year",x="date",A="Invalid Date",D=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,$=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,b={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(m){var a=["th","st","nd","rd"],i=m%100;return"["+m+(a[(i-20)%10]||a[i]||a[0])+"]"}},F=function(m,a,i){var Z=String(m);return!Z||Z.length>=a?m:""+Array(a+1-Z.length).join(i)+m},_={s:F,z:function(m){var a=-m.utcOffset(),i=Math.abs(a),Z=Math.floor(i/60),t=i%60;return(a<=0?"+":"-")+F(Z,2,"0")+":"+F(t,2,"0")},m:function m(a,i){if(a.date()<i.date())return-m(i,a);var Z=12*(i.year()-a.year())+(i.month()-a.month()),t=a.clone().add(Z,h),M=i-t<0,f=a.clone().add(Z+(M?-1:1),h);return+(-(Z+(i-t)/(M?t-f:f-t))||0)},a:function(m){return m<0?Math.ceil(m)||0:Math.floor(m)},p:function(m){return{M:h,y:V,w:L,d:H,D:x,h:v,m:p,s:r,ms:s,Q:g}[m]||String(m||"").toLowerCase().replace(/s$/,"")},u:function(m){return m===void 0}},y="en",T={};T[y]=b;var q=function(m){return m instanceof B},C=function m(a,i,Z){var t;if(!a)return y;if(typeof a=="string"){var M=a.toLowerCase();T[M]&&(t=M),i&&(T[M]=i,t=M);var f=a.split("-");if(!t&&f.length>1)return m(f[0])}else{var S=a.name;T[S]=a,t=S}return!Z&&t&&(y=t),t||!Z&&y},d=function(m,a){if(q(m))return m.clone();var i=typeof a=="object"?a:{};return i.date=m,i.args=arguments,new B(i)},l=_;l.l=C,l.i=q,l.w=function(m,a){return d(m,{locale:a.$L,utc:a.$u,x:a.$x,$offset:a.$offset})};var B=function(){function m(i){this.$L=C(i.locale,null,!0),this.parse(i)}var a=m.prototype;return a.parse=function(i){this.$d=function(Z){var t=Z.date,M=Z.utc;if(t===null)return new Date(NaN);if(l.u(t))return new Date;if(t instanceof Date)return new Date(t);if(typeof t=="string"&&!/Z$/i.test(t)){var f=t.match(D);if(f){var S=f[2]-1||0,R=(f[7]||"0").substring(0,3);return M?new Date(Date.UTC(f[1],S,f[3]||1,f[4]||0,f[5]||0,f[6]||0,R)):new Date(f[1],S,f[3]||1,f[4]||0,f[5]||0,f[6]||0,R)}}return new Date(t)}(i),this.$x=i.x||{},this.init()},a.init=function(){var i=this.$d;this.$y=i.getFullYear(),this.$M=i.getMonth(),this.$D=i.getDate(),this.$W=i.getDay(),this.$H=i.getHours(),this.$m=i.getMinutes(),this.$s=i.getSeconds(),this.$ms=i.getMilliseconds()},a.$utils=function(){return l},a.isValid=function(){return this.$d.toString()!==A},a.isSame=function(i,Z){var t=d(i);return this.startOf(Z)<=t&&t<=this.endOf(Z)},a.isAfter=function(i,Z){return d(i)<this.startOf(Z)},a.isBefore=function(i,Z){return this.endOf(Z)<d(i)},a.$g=function(i,Z,t){return l.u(i)?this[Z]:this.set(t,i)},a.unix=function(){return Math.floor(this.valueOf()/1e3)},a.valueOf=function(){return this.$d.getTime()},a.startOf=function(i,Z){var t=this,M=!!l.u(Z)||Z,f=l.p(i),S=function(v1,N){var a1=l.w(t.$u?Date.UTC(t.$y,N,v1):new Date(t.$y,N,v1),t);return M?a1:a1.endOf(H)},R=function(v1,N){return l.w(t.toDate()[v1].apply(t.toDate("s"),(M?[0,0,0,0]:[23,59,59,999]).slice(N)),t)},G=this.$W,U=this.$M,l1=this.$D,e1="set"+(this.$u?"UTC":"");switch(f){case V:return M?S(1,0):S(31,11);case h:return M?S(1,U):S(0,U+1);case L:var V1=this.$locale().weekStart||0,y1=(G<V1?G+7:G)-V1;return S(M?l1-y1:l1+(6-y1),U);case H:case x:return R(e1+"Hours",0);case v:return R(e1+"Minutes",1);case p:return R(e1+"Seconds",2);case r:return R(e1+"Milliseconds",3);default:return this.clone()}},a.endOf=function(i){return this.startOf(i,!1)},a.$set=function(i,Z){var t,M=l.p(i),f="set"+(this.$u?"UTC":""),S=(t={},t[H]=f+"Date",t[x]=f+"Date",t[h]=f+"Month",t[V]=f+"FullYear",t[v]=f+"Hours",t[p]=f+"Minutes",t[r]=f+"Seconds",t[s]=f+"Milliseconds",t)[M],R=M===H?this.$D+(Z-this.$W):Z;if(M===h||M===V){var G=this.clone().set(x,1);G.$d[S](R),G.init(),this.$d=G.set(x,Math.min(this.$D,G.daysInMonth())).$d}else S&&this.$d[S](R);return this.init(),this},a.set=function(i,Z){return this.clone().$set(i,Z)},a.get=function(i){return this[l.p(i)]()},a.add=function(i,Z){var t,M=this;i=Number(i);var f=l.p(Z),S=function(U){var l1=d(M);return l.w(l1.date(l1.date()+Math.round(U*i)),M)};if(f===h)return this.set(h,this.$M+i);if(f===V)return this.set(V,this.$y+i);if(f===H)return S(1);if(f===L)return S(7);var R=(t={},t[p]=c,t[v]=o,t[r]=e,t)[f]||1,G=this.$d.getTime()+i*R;return l.w(G,this)},a.subtract=function(i,Z){return this.add(-1*i,Z)},a.format=function(i){var Z=this,t=this.$locale();if(!this.isValid())return t.invalidDate||A;var M=i||"YYYY-MM-DDTHH:mm:ssZ",f=l.z(this),S=this.$H,R=this.$m,G=this.$M,U=t.weekdays,l1=t.months,e1=function(N,a1,K1,w1){return N&&(N[a1]||N(Z,M))||K1[a1].slice(0,w1)},V1=function(N){return l.s(S%12||12,N,"0")},y1=t.meridiem||function(N,a1,K1){var w1=N<12?"AM":"PM";return K1?w1.toLowerCase():w1},v1={YY:String(this.$y).slice(-2),YYYY:this.$y,M:G+1,MM:l.s(G+1,2,"0"),MMM:e1(t.monthsShort,G,l1,3),MMMM:e1(l1,G),D:this.$D,DD:l.s(this.$D,2,"0"),d:String(this.$W),dd:e1(t.weekdaysMin,this.$W,U,2),ddd:e1(t.weekdaysShort,this.$W,U,3),dddd:U[this.$W],H:String(S),HH:l.s(S,2,"0"),h:V1(1),hh:V1(2),a:y1(S,R,!0),A:y1(S,R,!1),m:String(R),mm:l.s(R,2,"0"),s:String(this.$s),ss:l.s(this.$s,2,"0"),SSS:l.s(this.$ms,3,"0"),Z:f};return M.replace($,function(N,a1){return a1||v1[N]||f.replace(":","")})},a.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},a.diff=function(i,Z,t){var M,f=l.p(Z),S=d(i),R=(S.utcOffset()-this.utcOffset())*c,G=this-S,U=l.m(this,S);return U=(M={},M[V]=U/12,M[h]=U,M[g]=U/3,M[L]=(G-R)/6048e5,M[H]=(G-R)/864e5,M[v]=G/o,M[p]=G/c,M[r]=G/e,M)[f]||G,t?U:l.a(U)},a.daysInMonth=function(){return this.endOf(h).$D},a.$locale=function(){return T[this.$L]},a.locale=function(i,Z){if(!i)return this.$L;var t=this.clone(),M=C(i,Z,!0);return M&&(t.$L=M),t},a.clone=function(){return l.w(this.$d,this)},a.toDate=function(){return new Date(this.valueOf())},a.toJSON=function(){return this.isValid()?this.toISOString():null},a.toISOString=function(){return this.$d.toISOString()},a.toString=function(){return this.$d.toUTCString()},m}(),h1=B.prototype;return d.prototype=h1,[["$ms",s],["$s",r],["$m",p],["$H",v],["$W",H],["$M",h],["$y",V],["$D",x]].forEach(function(m){h1[m[1]]=function(a){return this.$g(a,m[0],m[1])}}),d.extend=function(m,a){return m.$i||(m(a,B,d),m.$i=!0),d},d.locale=C,d.isDayjs=q,d.unix=function(m){return d(1e3*m)},d.en=T[y],d.Ls=T,d.p={},d})});var d0=p0((s0,h0)=>{(function(e,c){typeof s0=="object"&&typeof h0!="undefined"?h0.exports=c(q0()):typeof define=="function"&&define.amd?define(["dayjs"],c):(e=typeof globalThis!="undefined"?globalThis:e||self).dayjs_locale_pt_br=c(e.dayjs)})(s0,function(e){"use strict";function c(r){return r&&typeof r=="object"&&"default"in r?r:{default:r}}var o=c(e),s={name:"pt-br",weekdays:"domingo_segunda-feira_ter\xE7a-feira_quarta-feira_quinta-feira_sexta-feira_s\xE1bado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_s\xE1b".split("_"),weekdaysMin:"Do_2\xAA_3\xAA_4\xAA_5\xAA_6\xAA_S\xE1".split("_"),months:"janeiro_fevereiro_mar\xE7o_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),ordinal:function(r){return r+"\xBA"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [\xE0s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [\xE0s] HH:mm"},relativeTime:{future:"em %s",past:"h\xE1 %s",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um m\xEAs",MM:"%d meses",y:"um ano",yy:"%d anos"}};return o.default.locale(s,null,!0),s})});var U2={};g2(U2,{Autocomplete:()=>p2,Checkbox:()=>E0,Creatable:()=>_0,DatePicker:()=>e2,Form:()=>V0,FormProvider:()=>A1,RadioButton:()=>I0,RadioGroup:()=>B0,Searchable:()=>S0,Select:()=>w0,Slider:()=>O0,Switch:()=>G0,TextField:()=>k0,TimePicker:()=>m2,useForm:()=>$1});module.exports=x2(U2);var u0=require("react-hook-form");var X1=require("react/jsx-runtime"),L2=r=>{var p=r,{children:e,style:c,onSubmit:o}=p,s=k(p,["children","style","onSubmit"]);return(0,X1.jsx)(u0.FormProvider,u(n({},s),{children:(0,X1.jsx)("form",{onSubmit:v=>{v.preventDefault(),v.stopPropagation(),o(v)},style:c,children:e})}))},A1=L2;var f0=require("react"),M0=require("react-hook-form"),H0=require("@hookform/resolvers/zod");var F2=s=>{var r=s,{disableDefaultValuesUpdate:e,onSubmit:c}=r,o=k(r,["disableDefaultValuesUpdate","onSubmit"]);let p=(0,M0.useForm)(u(n({},o),{resolver:o.schema&&(0,H0.zodResolver)(o.schema)}));return(0,f0.useEffect)(()=>{e||p.reset(o.defaultValues)},[o.defaultValues,p.reset]),u(n({},p),{onSubmit:p.handleSubmit(v=>c(v,p))})},$1=F2;var y0=require("react/jsx-runtime");function b2(s){var r=s,{children:e,style:c}=r,o=k(r,["children","style"]);let p=$1(o);return(0,y0.jsx)(A1,u(n({},p),{style:c,children:typeof e=="function"?e(p):e}))}var V0=b2;var T1=require("react"),D1=require("react-hook-form"),r1=require("@mui/material");var g0={description:"M39 23.1a17 17 0 0 0-15-10c-6.5.1-12.4 4-15.2 10V25a17 17 0 0 0 15 10A17 17 0 0 0 39 25c.5-.7.5-1.3.2-1.8Zm-15 9a8 8 0 0 1-7.6-8.5c.2-4.2 3.5-7.8 7.6-7.8a8 8 0 0 1 7.6 8.4c-.1 4.3-3.5 7.9-7.6 7.9Zm0-13.5-1.3.1c.7 1.1.6 2.6-.3 3.7-1 .9-2.3.9-3.4.1-.4 2.2.3 4.7 2.1 6a4.9 4.9 0 0 0 6-.2c1.6-1.4 2.4-4 1.6-6.1a4.9 4.9 0 0 0-4.7-3.6Z",id:"line-eye-solid"},x0={description:"M24 31.7c-4 0-7.4-3.1-7.7-7.1l-5.6-4.4c-.8 1-1.4 2-2 3a1.7 1.7 0 0 0 0 1.6 17.2 17.2 0 0 0 19.5 9l-2.8-2.2-1.4.1ZM40.9 35l-6-4.6c1.8-1.5 3.3-3.4 4.4-5.5a1.7 1.7 0 0 0 0-1.6c-3-5.7-8.7-9.5-15.3-9.5-2.8 0-5.5.7-8 2l-6.8-5.3a.9.9 0 0 0-1.2.2L7 12a.9.9 0 0 0 .1 1.2l31.7 24.5a.9.9 0 0 0 1.2-.2l1-1.3a.9.9 0 0 0-.1-1.2Zm-10-7.7-2-1.6a5 5 0 0 0-6.3-6.6 2.5 2.5 0 0 1 .4 2l-3.9-3a7.7 7.7 0 0 1 10.4.5 7.7 7.7 0 0 1 1.5 8.7Z",id:"line-eye-slash-solid"};var o1={description:"M24 8a16 16 0 0 0 0 32 16 16 0 0 0 0-32Zm0 7.1c1.5 0 2.7 1.2 2.7 2.7 0 1.6-1.2 2.7-2.7 2.7a2.6 2.6 0 0 1-2.7-2.7c0-1.5 1.2-2.7 2.7-2.7Zm3.6 16.4c0 .4-.4.8-.8.8h-5.6a.7.7 0 0 1-.8-.8v-1.6c0-.4.3-.7.8-.7h.7V25h-.7a.7.7 0 0 1-.8-.7v-1.6c0-.4.3-.8.8-.8h4c.5 0 .9.4.9.8v6.5h.7c.4 0 .8.3.8.7v1.6Z",id:"line-info-circle-solid"};var L0={description:"m25.5 17 5.5 5.5-12 12-4.9.5a1 1 0 0 1-1-1.1l.5-5L25.5 17Zm8.9-.8-2.6-2.6a2 2 0 0 0-2.9 0L26.5 16l5.5 5.5 2.4-2.4a2 2 0 0 0 0-3Z",id:"line-pen-solid"};var e0={description:"M35.8 21.8h-9.6v-9.6c0-.6-.6-1.1-1.1-1.1h-2.2a1 1 0 0 0-1 1v9.7h-9.7c-.6 0-1.1.6-1.1 1.1v2.2c0 .6.5 1 1 1h9.7v9.7c0 .6.5 1.1 1.1 1.1h2.2c.5 0 1-.5 1-1v-9.7h9.7c.6 0 1.1-.5 1.1-1.1v-2.2c0-.5-.5-1-1-1Z",id:"line-plus-solid"};var Z1=p1(require("@s_mart/masks"));var c0=require("@mui/material"),F0=require("@s_mart/utils"),x1=require("react/jsx-runtime"),I=({label:e,required:c,regular:o})=>(0,x1.jsxs)("span",{style:{display:"flex",alignItems:"center",gap:(0,F0.toRem)(2)},children:[(0,x1.jsx)(c0.Typography,{variant:"caption",fontWeight:o?400:700,style:{display:"flex",alignItems:"center"},children:e}),c&&(0,x1.jsx)(c0.Typography,{variant:"caption",fontWeight:900,color:"error",children:"*"})]});var b0=require("react-hook-form"),C0=require("@s_mart/core");var z=(e,c)=>{var o,s,r,p,v;if(e[c])return e[c];if(c.includes("[")){let[H,L]=c.split("["),[h,g]=L.split("].");return(s=(o=e[H])==null?void 0:o[h])==null?void 0:s[g]}if(c.includes(".")){let[H,L,h]=c.split(".");return h?(v=(p=e[H])==null?void 0:p[L])==null?void 0:v[h]:(r=e[H])==null?void 0:r[L]}};var P0=require("react/jsx-runtime"),O=({name:e})=>{var s;let c=(0,b0.useFormContext)(),o=z((s=c==null?void 0:c.formState)==null?void 0:s.errors,e);return o?(0,P0.jsx)(C0.Indicator,{severity:"error",children:o==null?void 0:o.message}):null};var L1=require("@s_mart/core");var Y=require("react/jsx-runtime"),C2=A=>{var D=A,{name:e,rules:c,defaultValue:o,shouldUnregister:s,label:r,required:p,mask:v,variant:H="outlined",info:L,parse:h,format:g,onInputChange:V}=D,x=k(D,["name","rules","defaultValue","shouldUnregister","label","required","mask","variant","info","parse","format","onInputChange"]);let $=(0,D1.useFormContext)();if(!$)throw new Error("Para usar o <TextField /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let[b,F]=(0,T1.useState)(!1),_=C=>{var l;let d=C;return g&&(d=g(C)),v?(l=Z1==null?void 0:Z1[v])==null?void 0:l.format(d):d},y=C=>{var l;let d=C;return h&&(d=h(C)),v?(l=Z1==null?void 0:Z1[v])==null?void 0:l.parse(d):d},T=C=>{if(!C||v!=="porcentagem")return;C==null||C.stopPropagation();let d=(C==null?void 0:C.target).value;if(d){let l=String(d);if(l.length>0){let B=l.indexOf("%");B>-1&&(C.currentTarget.selectionEnd=B)}}},q=z($.formState.errors,e);return(0,Y.jsx)(D1.Controller,{control:$.control,name:e,rules:c,defaultValue:o,shouldUnregister:s,render:({field:{value:C,onChange:d,ref:l}})=>(0,Y.jsxs)(r1.Grid,{display:"flex",flexDirection:"column",children:[(0,Y.jsxs)("div",{style:{display:"flex"},children:[r&&(0,Y.jsx)(r1.Grid,{item:!0,children:(0,Y.jsx)(I,{label:r,required:p})}),L&&(0,Y.jsx)(r1.Grid,{item:!0,children:(0,Y.jsx)(L1.Tooltip,{title:L,placement:"top",children:(0,Y.jsx)("div",{style:{width:"fit-content"},children:(0,Y.jsx)(L1.LIcon,{icon:o1,color:"#757575"})})})})]}),(0,Y.jsx)(r1.TextField,u(n({variant:H,defaultValue:o,value:_(C||""),onChange:B=>{var m;let h1=y((m=B==null?void 0:B.target)==null?void 0:m.value);d(h1),V==null||V(h1,$.watch())},error:!!q},x),{type:x.type==="password"?b?"text":"password":x.type,autoComplete:x.autoComplete||"off",InputProps:n({onKeyDown:T,inputRef:l,endAdornment:x.type==="password"&&(0,Y.jsx)(r1.InputAdornment,{position:"end",onClick:()=>F(!b),style:{cursor:"pointer"},children:(0,Y.jsx)(L1.LIcon,{icon:b?g0:x0,size:"24px",removeMargin:!0})})},x.InputProps)}),e),(0,Y.jsx)(O,{name:e})]})})},k0=(0,T1.memo)(C2);var _1=require("react"),E1=require("react-hook-form"),u1=require("@s_mart/core"),j=require("@mui/material");var E=require("react/jsx-runtime"),P2=D=>{var $=D,{name:e,rules:c,defaultValue:o,shouldUnregister:s,label:r,required:p,options:v,placeholder:H,disableOnChangeForm:L=!1,multiple:h,info:g,footer:V,onChange:x}=$,A=k($,["name","rules","defaultValue","shouldUnregister","label","required","options","placeholder","disableOnChangeForm","multiple","info","footer","onChange"]);let b=(0,E1.useFormContext)(),{palette:F}=(0,j.useTheme)(),[_,y]=(0,_1.useState)(!1);if(!b)throw new Error("Para usar o <Select /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let T=z(b.formState.errors,e);return console.warn=()=>{},(0,E.jsx)(E1.Controller,{control:b.control,name:e,rules:c,defaultValue:o,shouldUnregister:s,render:({field:{value:q,onChange:C,ref:d}})=>(0,E.jsxs)(j.Grid,{display:"flex",flexDirection:"column",children:[(0,E.jsxs)("div",{style:{display:"flex"},children:[r&&(0,E.jsx)(j.Grid,{item:!0,children:(0,E.jsx)(I,{label:r,required:p})}),g&&(0,E.jsx)(j.Grid,{item:!0,children:(0,E.jsx)(u1.Tooltip,{title:g,placement:"top",children:(0,E.jsx)("div",{style:{width:"fit-content"},children:(0,E.jsx)(u1.LIcon,{icon:o1,color:"#757575"})})})})]}),(0,E.jsxs)(j.Select,u(n({open:_,onOpen:()=>y(!0),onClose:()=>y(!1),displayEmpty:!!H,variant:"outlined",autoComplete:"off",value:q?q||"":h?[]:"",renderValue:l=>{if(l.label)return l.label;if(H)return(0,E.jsx)("p",{style:{color:F.grey[400]},children:H})},multiple:h,onChange:l=>{!L&&C(l.target.value),x&&x(l.target.value,b.watch())},error:!!T,size:A.size||"medium",inputRef:d},A),{children:[H&&(0,E.jsx)(j.MenuItem,{disabled:!0,value:"",children:(0,E.jsx)("p",{style:{color:F.grey[400]},children:H})}),v==null?void 0:v.map((l,B)=>(0,E.jsx)(j.MenuItem,{value:l,children:(0,E.jsxs)(j.Grid,{container:!0,direction:"column",children:[(0,E.jsx)(j.Grid,{item:!0,children:l.label}),l.afterLabel&&(0,E.jsx)(j.Grid,{item:!0,children:l.afterLabel})]})},B)),V&&[(0,E.jsx)(j.Grid,{px:2,py:1,children:(0,E.jsx)(u1.Divider,{})},"footer-divider"),(0,E.jsx)("div",{children:V({closeSelect:()=>y(!1)})},"footer-content")]]}),e),(0,E.jsx)(O,{name:e})]})})},w0=(0,_1.memo)(P2);var G1=require("react"),I1=require("react-hook-form"),d1=require("@s_mart/core");var W=require("@mui/material");var P=require("react/jsx-runtime"),i0=require("react"),k2=b=>{var F=b,{name:e,rules:c,defaultValue:o,shouldUnregister:s,label:r,required:p,options:v,textFieldProps:H,noOptionsText:L,footer:h,multiple:g,info:V,placeholder:x,onChange:A,onInputChange:D}=F,$=k(F,["name","rules","defaultValue","shouldUnregister","label","required","options","textFieldProps","noOptionsText","footer","multiple","info","placeholder","onChange","onInputChange"]);let _=(0,I1.useFormContext)();if(!_)throw new Error("Para usar o <Searchable /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let y=z(_.formState.errors,e);return console.warn=()=>{},(0,P.jsx)(I1.Controller,{control:_.control,name:e,rules:c,defaultValue:o,shouldUnregister:s,render:({field:{onChange:T,value:q,ref:C}})=>(0,P.jsxs)(W.Grid,{display:"flex",flexDirection:"column",children:[(0,P.jsxs)("div",{style:{display:"flex"},children:[r&&(0,P.jsx)(W.Grid,{item:!0,children:(0,P.jsx)(I,{label:r,required:p})}),V&&(0,P.jsx)(W.Grid,{item:!0,children:(0,P.jsx)(d1.Tooltip,{title:V,placement:"top",children:(0,P.jsx)("div",{style:{width:"fit-content"},children:(0,P.jsx)(d1.LIcon,{icon:o1,color:"#757575"})})})})]}),(0,P.jsx)(W.Autocomplete,u(n({onChange:(d,l)=>{T(l),A==null||A(l,_.watch())},onInputChange:(d,l,B)=>{B==="input"&&setTimeout(()=>{D==null||D(l,_.watch())},0)},value:q||(g?[]:null),options:v,multiple:g,noOptionsText:(0,P.jsxs)(P.Fragment,{children:[L||"Nenhum resultado encontrado",h?(0,P.jsxs)(P.Fragment,{children:[(0,P.jsx)(W.Grid,{py:1,children:(0,P.jsx)(d1.Divider,{})}),h]}):null]}),isOptionEqualToValue:(d,l)=>typeof d=="string"&&typeof l=="string"?d===l:typeof d=="object"&&typeof l=="object"?d.value===l.value:!1,renderOption:(d,l)=>typeof l=="object"?(0,i0.createElement)("li",u(n({},d),{key:l.key||l.value}),(0,P.jsxs)(W.Grid,{container:!0,direction:"column",children:[(0,P.jsx)(W.Grid,{item:!0,children:l.label}),l.afterLabel&&(0,P.jsx)(W.Grid,{item:!0,children:l.afterLabel})]})):(0,i0.createElement)("li",u(n({},d),{key:l}),l),ListboxComponent:(0,G1.forwardRef)(function(l,B){return(0,P.jsxs)(P.Fragment,{children:[(0,P.jsx)("ul",u(n({},l),{ref:B})),!!h&&(0,P.jsx)("div",u(n({},l),{children:(0,P.jsxs)(P.Fragment,{children:[(0,P.jsx)(W.Grid,{px:2,py:1,children:(0,P.jsx)(d1.Divider,{})}),h]})}),"searchable-footer")]})})},$),{renderInput:d=>(0,P.jsx)(W.TextField,u(n(n({error:!!y,placeholder:x},d),H),{inputRef:C}))}),e),(0,P.jsx)(O,{name:e})]})})},S0=(0,G1.memo)(k2);var D0=require("react"),B1=require("react-hook-form"),J=require("@mui/material");var F1=require("@s_mart/utils"),A0=p1(require("@emotion/styled")),l0=require("@emotion/react"),$0=l0.css`
2
2
  display: flex;
3
3
  align-items: center;
4
4
  justify-content: center;
5
- `,Q0=c=>I1.css`
5
+ `,w2=e=>l0.css`
6
6
  .MuiAutocomplete-endAdornment {
7
7
  position: relative;
8
8
  right: 0;
@@ -10,63 +10,63 @@
10
10
 
11
11
  .creatable,
12
12
  .editable {
13
- ${r0}
13
+ ${$0}
14
14
 
15
15
  .divider {
16
16
  width: 1px;
17
- height: ${(0,t1.toRem)(20)};
18
- background-color: ${c.palette.grey[400]};
17
+ height: ${(0,F1.toRem)(20)};
18
+ background-color: ${e.palette.grey[400]};
19
19
  }
20
20
 
21
21
  .button {
22
22
  display: flex;
23
23
  justify-content: center;
24
24
  align-items: center;
25
- color: ${c.palette.grey[600]};
25
+ color: ${e.palette.grey[600]};
26
26
  border-radius: 50%;
27
27
 
28
- margin: 0 ${(0,t1.toRem)(6)};
29
- width: ${(0,t1.toRem)(28)};
30
- height: ${(0,t1.toRem)(28)};
28
+ margin: 0 ${(0,F1.toRem)(6)};
29
+ width: ${(0,F1.toRem)(28)};
30
+ height: ${(0,F1.toRem)(28)};
31
31
 
32
32
  &:hover {
33
33
  cursor: pointer;
34
- background-color: ${c.palette.grey[100]};
34
+ background-color: ${e.palette.grey[100]};
35
35
  transition: background-color 0.2s ease-in-out;
36
36
  }
37
37
  }
38
38
  }
39
- `,n0=o0.default.div`
39
+ `,T0=A0.default.div`
40
40
  display: flex;
41
41
 
42
42
  div.endAdornments {
43
43
  position: absolute;
44
44
  right: 0;
45
45
 
46
- ${r0}
46
+ ${$0}
47
47
  }
48
48
 
49
- ${({hideAddButton:c,theme:l})=>!c&&Q0(l)}
50
- `;var O=require("@s_mart/core");var F1=require("lodash"),q1=require("@s_mart/utils");var y=require("react/jsx-runtime"),$1=require("react"),J0=P=>{var Z=P,{name:c,rules:l,defaultValue:i,shouldUnregister:r,label:o,required:x,options:h,editable:s,onEditOption:m,onCreateOption:n,textFieldProps:d,hideAddButton:f,multiple:M,info:C,onChange:k,onInputChange:F,placeholder:v}=Z,u=g(Z,["name","rules","defaultValue","shouldUnregister","label","required","options","editable","onEditOption","onCreateOption","textFieldProps","hideAddButton","multiple","info","onChange","onInputChange","placeholder"]);let S=(0,g1.useFormContext)();if(!S)throw new Error("Para usar o <Creatable /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let G=E(S.formState.errors,c);console.warn=()=>{};let H=e=>{n?n(e):console.error("onCreateOption n\xE3o foi definido")},V=e=>{m?m(e):console.error("onEditOption n\xE3o foi definido")};return(0,y.jsx)(g1.Controller,{control:S.control,name:c,rules:l,defaultValue:i,shouldUnregister:r,render:({field:{value:e,onChange:T,ref:v1}})=>{let a1=(e==null?void 0:e.label)||(e==null?void 0:e.value)||e;return(0,y.jsxs)(q.Grid,{display:"flex",flexDirection:"column",children:[(0,y.jsxs)("div",{style:{display:"flex"},children:[o&&(0,y.jsx)(q.Grid,{item:!0,children:(0,y.jsx)(b,{label:o,required:x})}),C&&(0,y.jsx)(q.Grid,{item:!0,children:(0,y.jsx)(O.Tooltip,{title:C,placement:"top",children:(0,y.jsx)("div",{style:{width:"fit-content"},children:(0,y.jsx)(O.LIcon,{icon:N,color:"#757575"})})})})]}),(0,y.jsx)(n0,{hideAddButton:f,children:(0,y.jsx)(q.Autocomplete,t(a({fullWidth:!0,onChange:(R,A)=>{T(A),k==null||k(A,S.watch())},onInputChange:(R,A,R0)=>{R0==="input"&&(T(A),setTimeout(()=>{F==null||F(A,S.watch())},0))},options:h,value:e||(M?[]:null),multiple:M,noOptionsText:(0,y.jsxs)(O.Button,{sx:{justifyContent:"flex-start",padding:`${(0,q1.toRem)(6)} ${(0,q1.toRem)(-16)}`,margin:0},fullWidth:!0,onClick:()=>H(e),variant:"text",startIcon:(0,y.jsx)(O.LIcon,{icon:D1}),children:["Adicionar ",a1&&`"${a1}"`]}),isOptionEqualToValue:(R,A)=>A?typeof R=="string"&&typeof A=="string"?R===A:typeof R=="object"&&typeof A=="object"?R.value===A.value:typeof R=="object"&&typeof A=="string":!1,renderOption:(R,A)=>typeof A=="object"?(0,$1.createElement)("li",t(a({},R),{key:A.key||A.value}),(0,y.jsxs)(q.Grid,{container:!0,direction:"column",children:[(0,y.jsx)(q.Grid,{item:!0,children:A.label}),A.afterLabel&&(0,y.jsx)(q.Grid,{item:!0,children:A.afterLabel})]})):(0,$1.createElement)("li",t(a({},R),{key:A}),A)},u),{renderInput:R=>(0,y.jsx)(q.TextField,a(t(a({placeholder:v},R),{error:!!G,onChange:T,InputProps:t(a({},R.InputProps),{inputRef:v1,endAdornment:f?void 0:(0,y.jsxs)("div",{className:"endAdornments",children:[R.InputProps.endAdornment,s&&(0,F1.isObject)(e)&&!(0,F1.isEmpty)(e)?(0,y.jsxs)("div",{className:"editable",children:[(0,y.jsx)("div",{className:"divider"}),(0,y.jsx)("div",{className:"button",onClick:()=>V(e),children:(0,y.jsx)(O.LIcon,{icon:Q1,size:"24px",removeMargin:!0})})]}):null,(0,y.jsxs)("div",{className:"creatable",children:[(0,y.jsx)("div",{className:"divider"}),(0,y.jsx)("div",{className:"button",onClick:()=>H(e),children:(0,y.jsx)(O.LIcon,{icon:D1,size:"24px",removeMargin:!0})})]})]})})}),d))}),c)}),(0,y.jsx)(w,{name:c})]})}})},s0=(0,t0.memo)(J0);var L1=require("react-hook-form"),l1=require("@mui/material");var W=require("react/jsx-runtime"),X0=m=>{var n=m,{name:c,rules:l,defaultValue:i,shouldUnregister:r,label:o,labelPlacement:x,required:h}=n,s=g(n,["name","rules","defaultValue","shouldUnregister","label","labelPlacement","required"]);let d=(0,L1.useFormContext)();if(!d)throw new Error("Para usar o <Checkbox /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return(0,W.jsx)(L1.Controller,{control:d.control,name:c,rules:l,defaultValue:i,shouldUnregister:r,render:({field:{value:f,onChange:M}})=>(0,W.jsxs)(l1.Grid,{display:"flex",flexDirection:"column",children:[(0,W.jsx)(l1.FormControlLabel,{control:(0,W.jsx)(l1.Checkbox,a({checked:!!f,value:f!=null?f:"",defaultValue:f,onChange:M},s),c),label:(0,W.jsx)(b,{label:o,required:h,regular:!0}),labelPlacement:x||"end"}),(0,W.jsx)(w,{name:c})]})})},h0=X0;var C1=require("react-hook-form"),e1=require("@mui/material");var Y=require("react/jsx-runtime"),c2=s=>{var m=s,{name:c,rules:l,defaultValue:i,shouldUnregister:r,label:o,labelPlacement:x}=m,h=g(m,["name","rules","defaultValue","shouldUnregister","label","labelPlacement"]);let n=(0,C1.useFormContext)();if(!n)throw new Error("Para usar o <Switch /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return(0,Y.jsx)(C1.Controller,{control:n.control,name:c,rules:l,defaultValue:i,shouldUnregister:r,render:({field:{value:d,onChange:f}})=>(0,Y.jsxs)(e1.Grid,{display:"flex",flexDirection:"column",children:[(0,Y.jsx)(e1.FormControlLabel,{control:(0,Y.jsx)(e1.Switch,a({value:d!=null?d:"",checked:d!=null?d:!1,defaultValue:d,onChange:f},h),c),label:(0,Y.jsx)(b,{label:o}),labelPlacement:x||"end"}),(0,Y.jsx)(w,{name:c})]})})},d0=c2;var i1=require("@mui/material");var s1=require("react/jsx-runtime"),l2=r=>{var o=r,{label:c,labelPlacement:l}=o,i=g(o,["label","labelPlacement"]);return(0,s1.jsx)(i1.Grid,{display:"flex",flexDirection:"column",children:(0,s1.jsx)(i1.FormControlLabel,{control:(0,s1.jsx)(i1.Radio,a({},i)),label:(0,s1.jsx)(b,{label:c}),labelPlacement:l||"end"})})},m0=l2;var b1=require("react-hook-form"),k1=require("@mui/material");var J=require("react/jsx-runtime"),e2=n=>{var d=n,{name:c,rules:l,defaultValue:i,shouldUnregister:r,label:o,required:x,children:h,orientation:s="row"}=d,m=g(d,["name","rules","defaultValue","shouldUnregister","label","required","children","orientation"]);let f=(0,b1.useFormContext)();if(!f)throw new Error("Para usar o <RadioGroup /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return(0,J.jsx)(b1.Controller,{control:f.control,name:c,rules:l,defaultValue:i,shouldUnregister:r,render:({field:{value:M,onChange:C}})=>(0,J.jsxs)(k1.Grid,{display:"flex",flexDirection:"column",children:[o&&(0,J.jsx)(b,{label:o,required:x}),(0,J.jsx)(k1.RadioGroup,t(a({value:M||"",onChange:C,name:c},m),{style:{display:"flex",flexDirection:s},children:h}),c),(0,J.jsx)(w,{name:c})]})})},v0=e2;var P1=require("react-hook-form"),Z0=require("@mui/material");var z1=require("react/jsx-runtime"),i2=x=>{var h=x,{name:c,rules:l,defaultValue:i,shouldUnregister:r}=h,o=g(h,["name","rules","defaultValue","shouldUnregister"]);let s=(0,P1.useFormContext)();if(!s)throw new Error("Para usar o <Slider /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return(0,z1.jsx)(P1.Controller,{control:s.control,name:c,rules:l,defaultValue:i,shouldUnregister:r,render:({field:{value:m,onChange:n}})=>(0,z1.jsx)(Z0.Slider,a({value:m||(o==null?void 0:o.min)||0,onChange:n,valueLabelDisplay:"auto"},o),c)})},p0=i2;var M0=require("react"),A1=require("react-hook-form"),H0=require("@s_mart/core"),h1=require("@s_mart/rules"),V0=require("@mui/material"),y0=require("@mui/x-date-pickers/DatePicker"),x0=require("@mui/x-date-pickers/AdapterDayjs"),g0=require("@mui/x-date-pickers/LocalizationProvider");var $=require("@s_mart/utils"),u0=p1(require("@emotion/styled")),a2=c=>{switch(c){case"small":return(0,$.toRem)(16);default:case"medium":return(0,$.toRem)(20);case"large":return(0,$.toRem)(24)}},o2=c=>{switch(c){case"small":return`${(0,$.toRem)(2)} ${(0,$.toRem)(8)}`;default:case"medium":return`${(0,$.toRem)(6)} ${(0,$.toRem)(8)}`;case"large":return`${(0,$.toRem)(10)}`}},f0=u0.default.div`
49
+ ${({hideAddButton:e,theme:c})=>!e&&w2(c)}
50
+ `;var c1=require("@s_mart/core");var R1=require("lodash"),a0=require("@s_mart/utils");var w=require("react/jsx-runtime"),o0=require("react"),S2=_=>{var y=_,{name:e,rules:c,defaultValue:o,shouldUnregister:s,label:r,required:p,options:v,editable:H,onEditOption:L,onCreateOption:h,textFieldProps:g,hideAddButton:V,multiple:x,info:A,onChange:D,onInputChange:$,placeholder:b}=y,F=k(y,["name","rules","defaultValue","shouldUnregister","label","required","options","editable","onEditOption","onCreateOption","textFieldProps","hideAddButton","multiple","info","onChange","onInputChange","placeholder"]);let T=(0,B1.useFormContext)();if(!T)throw new Error("Para usar o <Creatable /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let q=z(T.formState.errors,e);console.warn=()=>{};let C=l=>{h?h(l):console.error("onCreateOption n\xE3o foi definido")},d=l=>{L?L(l):console.error("onEditOption n\xE3o foi definido")};return(0,w.jsx)(B1.Controller,{control:T.control,name:e,rules:c,defaultValue:o,shouldUnregister:s,render:({field:{value:l,onChange:B,ref:h1}})=>{let m=(l==null?void 0:l.label)||(l==null?void 0:l.value)||l;return(0,w.jsxs)(J.Grid,{display:"flex",flexDirection:"column",children:[(0,w.jsxs)("div",{style:{display:"flex"},children:[r&&(0,w.jsx)(J.Grid,{item:!0,children:(0,w.jsx)(I,{label:r,required:p})}),A&&(0,w.jsx)(J.Grid,{item:!0,children:(0,w.jsx)(c1.Tooltip,{title:A,placement:"top",children:(0,w.jsx)("div",{style:{width:"fit-content"},children:(0,w.jsx)(c1.LIcon,{icon:o1,color:"#757575"})})})})]}),(0,w.jsx)(T0,{hideAddButton:V,children:(0,w.jsx)(J.Autocomplete,u(n({fullWidth:!0,onChange:(a,i)=>{B(i),D==null||D(i,T.watch())},onInputChange:(a,i,Z)=>{Z==="input"&&(B(i),setTimeout(()=>{$==null||$(i,T.watch())},0))},options:v,value:l||(x?[]:null),multiple:x,noOptionsText:(0,w.jsxs)(c1.Button,{sx:{justifyContent:"flex-start",padding:`${(0,a0.toRem)(6)} ${(0,a0.toRem)(-16)}`,margin:0},fullWidth:!0,onClick:()=>C(l),variant:"text",startIcon:(0,w.jsx)(c1.LIcon,{icon:e0}),children:["Adicionar ",m&&`"${m}"`]}),isOptionEqualToValue:(a,i)=>i?typeof a=="string"&&typeof i=="string"?a===i:typeof a=="object"&&typeof i=="object"?a.value===i.value:typeof a=="object"&&typeof i=="string":!1,renderOption:(a,i)=>typeof i=="object"?(0,o0.createElement)("li",u(n({},a),{key:i.key||i.value}),(0,w.jsxs)(J.Grid,{container:!0,direction:"column",children:[(0,w.jsx)(J.Grid,{item:!0,children:i.label}),i.afterLabel&&(0,w.jsx)(J.Grid,{item:!0,children:i.afterLabel})]})):(0,o0.createElement)("li",u(n({},a),{key:i}),i)},F),{renderInput:a=>(0,w.jsx)(J.TextField,n(u(n({placeholder:b},a),{error:!!q,onChange:B,InputProps:u(n({},a.InputProps),{inputRef:h1,endAdornment:V?void 0:(0,w.jsxs)("div",{className:"endAdornments",children:[a.InputProps.endAdornment,H&&(0,R1.isObject)(l)&&!(0,R1.isEmpty)(l)?(0,w.jsxs)("div",{className:"editable",children:[(0,w.jsx)("div",{className:"divider"}),(0,w.jsx)("div",{className:"button",onClick:()=>d(l),children:(0,w.jsx)(c1.LIcon,{icon:L0,size:"24px",removeMargin:!0})})]}):null,(0,w.jsxs)("div",{className:"creatable",children:[(0,w.jsx)("div",{className:"divider"}),(0,w.jsx)("div",{className:"button",onClick:()=>C(l),children:(0,w.jsx)(c1.LIcon,{icon:e0,size:"24px",removeMargin:!0})})]})]})})}),g))}),e)}),(0,w.jsx)(O,{name:e})]})}})},_0=(0,D0.memo)(S2);var O1=require("react-hook-form"),f1=require("@mui/material");var t1=require("react/jsx-runtime"),A2=L=>{var h=L,{name:e,rules:c,defaultValue:o,shouldUnregister:s,label:r,labelPlacement:p,required:v}=h,H=k(h,["name","rules","defaultValue","shouldUnregister","label","labelPlacement","required"]);let g=(0,O1.useFormContext)();if(!g)throw new Error("Para usar o <Checkbox /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return(0,t1.jsx)(O1.Controller,{control:g.control,name:e,rules:c,defaultValue:o,shouldUnregister:s,render:({field:{value:V,onChange:x}})=>(0,t1.jsxs)(f1.Grid,{display:"flex",flexDirection:"column",children:[(0,t1.jsx)(f1.FormControlLabel,{control:(0,t1.jsx)(f1.Checkbox,n({checked:!!V,value:V!=null?V:"",defaultValue:V,onChange:x},H),e),label:(0,t1.jsx)(I,{label:r,required:v,regular:!0}),labelPlacement:p||"end"}),(0,t1.jsx)(O,{name:e})]})})},E0=A2;var q1=require("react-hook-form"),M1=require("@mui/material");var n1=require("react/jsx-runtime"),$2=H=>{var L=H,{name:e,rules:c,defaultValue:o,shouldUnregister:s,label:r,labelPlacement:p}=L,v=k(L,["name","rules","defaultValue","shouldUnregister","label","labelPlacement"]);let h=(0,q1.useFormContext)();if(!h)throw new Error("Para usar o <Switch /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return(0,n1.jsx)(q1.Controller,{control:h.control,name:e,rules:c,defaultValue:o,shouldUnregister:s,render:({field:{value:g,onChange:V}})=>(0,n1.jsxs)(M1.Grid,{display:"flex",flexDirection:"column",children:[(0,n1.jsx)(M1.FormControlLabel,{control:(0,n1.jsx)(M1.Switch,n({value:g!=null?g:"",checked:g!=null?g:!1,defaultValue:g,onChange:V},v),e),label:(0,n1.jsx)(I,{label:r}),labelPlacement:p||"end"}),(0,n1.jsx)(O,{name:e})]})})},G0=$2;var H1=require("@mui/material");var b1=require("react/jsx-runtime"),T2=s=>{var r=s,{label:e,labelPlacement:c}=r,o=k(r,["label","labelPlacement"]);return(0,b1.jsx)(H1.Grid,{display:"flex",flexDirection:"column",children:(0,b1.jsx)(H1.FormControlLabel,{control:(0,b1.jsx)(H1.Radio,n({},o)),label:(0,b1.jsx)(I,{label:e}),labelPlacement:c||"end"})})},I0=T2;var U1=require("react-hook-form"),z1=require("@mui/material");var m1=require("react/jsx-runtime"),D2=h=>{var g=h,{name:e,rules:c,defaultValue:o,shouldUnregister:s,label:r,required:p,children:v,orientation:H="row"}=g,L=k(g,["name","rules","defaultValue","shouldUnregister","label","required","children","orientation"]);let V=(0,U1.useFormContext)();if(!V)throw new Error("Para usar o <RadioGroup /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return(0,m1.jsx)(U1.Controller,{control:V.control,name:e,rules:c,defaultValue:o,shouldUnregister:s,render:({field:{value:x,onChange:A}})=>(0,m1.jsxs)(z1.Grid,{display:"flex",flexDirection:"column",children:[r&&(0,m1.jsx)(I,{label:r,required:p}),(0,m1.jsx)(z1.RadioGroup,u(n({value:x||"",onChange:A,name:e},L),{style:{display:"flex",flexDirection:H},children:v}),e),(0,m1.jsx)(O,{name:e})]})})},B0=D2;var Y1=require("react-hook-form"),R0=require("@mui/material");var r0=require("react/jsx-runtime"),_2=p=>{var v=p,{name:e,rules:c,defaultValue:o,shouldUnregister:s}=v,r=k(v,["name","rules","defaultValue","shouldUnregister"]);let H=(0,Y1.useFormContext)();if(!H)throw new Error("Para usar o <Slider /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return(0,r0.jsx)(Y1.Controller,{control:H.control,name:e,rules:c,defaultValue:o,shouldUnregister:s,render:({field:{value:L,onChange:h}})=>(0,r0.jsx)(R0.Slider,n({value:L||(r==null?void 0:r.min)||0,onChange:h,valueLabelDisplay:"auto"},r),e)})},O0=_2;var Y0=require("react"),j1=require("react-hook-form"),j0=require("@s_mart/core"),C1=require("@s_mart/rules"),N0=require("@mui/material"),W0=require("@mui/x-date-pickers/DatePicker"),J0=require("@mui/x-date-pickers/AdapterDayjs"),K0=require("@mui/x-date-pickers/LocalizationProvider"),Q0=require("@mui/x-date-pickers/locales/ptBR"),X0=p1(d0());var K=require("@s_mart/utils"),U0=p1(require("@emotion/styled")),E2=e=>{switch(e){case"small":return(0,K.toRem)(16);default:case"medium":return(0,K.toRem)(20);case"large":return(0,K.toRem)(24)}},G2=e=>{switch(e){case"small":return`${(0,K.toRem)(2)} ${(0,K.toRem)(8)}`;default:case"medium":return`${(0,K.toRem)(6)} ${(0,K.toRem)(8)}`;case"large":return`${(0,K.toRem)(10)}`}},z0=U0.default.div`
51
51
  > div > button {
52
- padding: ${({size:c})=>o2(c)};
53
- border-radius: 0 ${(0,$.toRem)(4)} ${(0,$.toRem)(4)} 0;
52
+ padding: ${({size:e})=>G2(e)};
53
+ border-radius: 0 ${(0,K.toRem)(4)} ${(0,K.toRem)(4)} 0;
54
54
 
55
55
  margin: 0px -13px 0px 0px;
56
56
 
57
57
  svg {
58
- width: ${({size:c})=>a2(c)};
58
+ width: ${({size:e})=>E2(e)};
59
59
  }
60
60
  }
61
- `;var K=require("react/jsx-runtime"),L0=require("react"),r2=d=>{var f=d,{rules:c,name:l,defaultValue:i,shouldUnregister:r,datePickerProps:o,label:x,required:h,placeholder:s,disabled:m}=f,n=g(f,["rules","name","defaultValue","shouldUnregister","datePickerProps","label","required","placeholder","disabled"]);let M=(0,A1.useFormContext)();if(!M)throw new Error("Para usar o <DataPicker /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let C=E(M.formState.errors,l),k=(o==null?void 0:o.format)||"DD/MM/YYYY",F=c?(0,h1.composeValidators)([(0,h1.date)(k),c]):(0,h1.date)(k);return(0,K.jsx)(g0.LocalizationProvider,{dateAdapter:x0.AdapterDayjs,children:(0,K.jsx)(A1.Controller,{control:M.control,name:l,rules:F,defaultValue:i,shouldUnregister:r,render:({field:{value:v,onChange:u,ref:P}})=>(0,K.jsxs)(H0.Grid,{display:"flex",flexDirection:"column",children:[x&&(0,K.jsx)(b,{label:x,required:h}),(0,L0.createElement)(y0.DatePicker,t(a({},o),{key:l,value:v!=null?v:null,format:k,onChange:u,disabled:m,slots:{textField:V0.TextField},slotProps:{textField:Z=>{var S,G;return t(a(t(a({variant:"outlined"},Z),{error:!!C}),n),{inputProps:t(a({},Z.inputProps),{placeholder:s||((S=Z.inputProps)==null?void 0:S.placeholder)}),InputProps:t(a({},Z.InputProps),{inputRef(H){P(H),typeof Z.inputRef=="function"&&Z.inputRef(H)},endAdornment:(0,K.jsx)(f0,{size:n.size,children:(G=Z.InputProps)==null?void 0:G.endAdornment})})})}}})),(0,K.jsx)(w,{name:l})]})})})},F0=(0,M0.memo)(r2);var k0=require("react"),w1=require("react-hook-form"),P0=require("@s_mart/core"),d1=require("@s_mart/rules"),A0=require("@mui/material"),w0=require("@mui/x-date-pickers/TimePicker"),S0=require("@mui/x-date-pickers/AdapterDayjs"),T0=require("@mui/x-date-pickers/LocalizationProvider");var z=require("@s_mart/utils"),C0=p1(require("@emotion/styled")),n2=c=>{switch(c){case"small":return(0,z.toRem)(16);default:case"medium":return(0,z.toRem)(20);case"large":return(0,z.toRem)(24)}},t2=c=>{switch(c){case"small":return`${(0,z.toRem)(2)} ${(0,z.toRem)(8)}`;default:case"medium":return`${(0,z.toRem)(6)} ${(0,z.toRem)(8)}`;case"large":return`${(0,z.toRem)(10)}`}},b0=C0.default.div`
61
+ `;var s1=require("react/jsx-runtime"),c2=require("react"),I2=g=>{var V=g,{rules:e,name:c,defaultValue:o,shouldUnregister:s,datePickerProps:r,label:p,required:v,placeholder:H,disabled:L}=V,h=k(V,["rules","name","defaultValue","shouldUnregister","datePickerProps","label","required","placeholder","disabled"]);let x=(0,j1.useFormContext)();if(!x)throw new Error("Para usar o <DataPicker /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let A=z(x.formState.errors,c),D=(r==null?void 0:r.format)||"DD/MM/YYYY",$=e?(0,C1.composeValidators)([(0,C1.date)(D),e]):(0,C1.date)(D);return(0,s1.jsx)(K0.LocalizationProvider,{dateAdapter:J0.AdapterDayjs,adapterLocale:X0.default,localeText:Q0.ptBR.components.MuiLocalizationProvider.defaultProps.localeText,children:(0,s1.jsx)(j1.Controller,{control:x.control,name:c,rules:$,defaultValue:o,shouldUnregister:s,render:({field:{value:b,onChange:F,ref:_}})=>(0,s1.jsxs)(j0.Grid,{display:"flex",flexDirection:"column",children:[p&&(0,s1.jsx)(I,{label:p,required:v}),(0,c2.createElement)(W0.DatePicker,u(n({},r),{key:c,value:b!=null?b:null,format:D,onChange:F,disabled:L,slots:{textField:N0.TextField},slotProps:{textField:y=>{var T,q;return u(n(u(n({variant:"outlined"},y),{error:!!A}),h),{inputProps:u(n({},y.inputProps),{placeholder:H||((T=y.inputProps)==null?void 0:T.placeholder)}),InputProps:u(n({},y.InputProps),{inputRef(C){_(C),typeof y.inputRef=="function"&&y.inputRef(C)},endAdornment:(0,s1.jsx)(z0,{size:h.size,children:(q=y.InputProps)==null?void 0:q.endAdornment})})})}}})),(0,s1.jsx)(O,{name:c})]})})})},e2=(0,Y0.memo)(I2);var a2=require("react"),N1=require("react-hook-form"),o2=require("@s_mart/core"),P1=require("@s_mart/rules"),r2=require("@mui/material"),t2=require("@mui/x-date-pickers/TimePicker"),n2=require("@mui/x-date-pickers/AdapterDayjs"),s2=require("@mui/x-date-pickers/LocalizationProvider"),h2=require("@mui/x-date-pickers/locales/ptBR"),d2=p1(d0());var Q=require("@s_mart/utils"),i2=p1(require("@emotion/styled")),B2=e=>{switch(e){case"small":return(0,Q.toRem)(16);default:case"medium":return(0,Q.toRem)(20);case"large":return(0,Q.toRem)(24)}},R2=e=>{switch(e){case"small":return`${(0,Q.toRem)(2)} ${(0,Q.toRem)(8)}`;default:case"medium":return`${(0,Q.toRem)(6)} ${(0,Q.toRem)(8)}`;case"large":return`${(0,Q.toRem)(10)}`}},l2=i2.default.div`
62
62
  > div > button {
63
- padding: ${({size:c})=>t2(c)};
64
- border-radius: 0 ${(0,z.toRem)(4)} ${(0,z.toRem)(4)} 0;
63
+ padding: ${({size:e})=>R2(e)};
64
+ border-radius: 0 ${(0,Q.toRem)(4)} ${(0,Q.toRem)(4)} 0;
65
65
 
66
66
  margin: 0px -13px 0px 0px;
67
67
 
68
68
  svg {
69
- width: ${({size:c})=>n2(c)};
69
+ width: ${({size:e})=>B2(e)};
70
70
  }
71
71
  }
72
- `;var _=require("react/jsx-runtime"),s2=d=>{var f=d,{rules:c,defaultValue:l,shouldUnregister:i,name:r,required:o,label:x,timePickerProps:h,placeholder:s,disabled:m}=f,n=g(f,["rules","defaultValue","shouldUnregister","name","required","label","timePickerProps","placeholder","disabled"]);let M=(0,w1.useFormContext)();if(!M)throw new Error("Para usar o <TimePicker /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let C=E(M.formState.errors,r),k=(h==null?void 0:h.format)||"HH:mm",F=c?(0,d1.composeValidators)([(0,d1.time)(k),c]):(0,d1.time)(k);return(0,_.jsx)(T0.LocalizationProvider,{dateAdapter:S0.AdapterDayjs,children:(0,_.jsx)(w1.Controller,{control:M.control,name:r,rules:F,defaultValue:l,shouldUnregister:i,render:({field:{value:v,onChange:u,ref:P}})=>(0,_.jsxs)(P0.Grid,{display:"flex",flexDirection:"column",children:[x&&(0,_.jsx)(b,{label:x,required:o}),(0,_.jsx)(w0.TimePicker,t(a({ampm:!1,format:k,value:v!=null?v:null,onChange:u,disabled:m},h),{slots:{textField:A0.TextField},slotProps:{textField:Z=>{var S,G;return t(a(t(a({variant:"outlined"},Z),{error:!!C}),n),{inputProps:t(a({},Z.inputProps),{placeholder:s||((S=Z.inputProps)==null?void 0:S.placeholder)}),InputProps:t(a({},Z.InputProps),{inputRef(H){P(H),typeof Z.inputRef=="function"&&Z.inputRef(H)},endAdornment:(0,_.jsx)(b0,{size:n.size,children:(G=Z.InputProps)==null?void 0:G.endAdornment})})})}}}),r),(0,_.jsx)(w,{name:r})]})})})},E0=(0,k0.memo)(s2);var G0=require("react"),S1=require("react-hook-form"),T1=require("@mui/material"),m1=require("@s_mart/core");var U=require("react/jsx-runtime"),B0=require("react"),h2=f=>{var M=f,{name:c,defaultValue:l,rules:i,shouldUnregister:r,label:o,required:x,noOptionsText:h,placeholder:s,onInputChange:m,onChange:n}=M,d=g(M,["name","defaultValue","rules","shouldUnregister","label","required","noOptionsText","placeholder","onInputChange","onChange"]);let C=(0,S1.useFormContext)();if(!C)throw new Error("Para usar o <Autocomplete /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let k=E(C.formState.errors,c);return console.warn=()=>{},(0,U.jsx)(S1.Controller,{name:c,control:C.control,defaultValue:l,rules:i,shouldUnregister:r,render:({field:F})=>(0,U.jsxs)(m1.Grid,{display:"flex",flexDirection:"column",children:[o&&(0,U.jsx)(b,{label:o,required:x}),(0,U.jsx)(T1.Autocomplete,t(a({onChange:(v,u)=>{F.onChange(u),n==null||n(u,C.watch())},onInputChange:(v,u,P)=>{P==="input"&&(F.onChange(u),setTimeout(()=>{m==null||m(u,C.watch())},0))},isOptionEqualToValue:(v,u)=>v.value===u.value,renderOption:(v,u)=>(0,B0.createElement)("li",t(a({},v),{key:u.key||u.value,onClick:P=>{var Z;(Z=v.onClick)==null||Z.call(v,P),F.onChange(u)}}),(0,U.jsxs)(m1.Grid,{container:!0,direction:"column",children:[(0,U.jsx)(m1.Grid,{item:!0,children:u.label}),u.afterLabel&&(0,U.jsx)(m1.Grid,{item:!0,children:u.afterLabel})]})),value:F.value||null,noOptionsText:h||"Nenhuma op\xE7\xE3o encontrada"},d),{renderInput:v=>{var u,P,Z;return(0,U.jsx)(T1.TextField,t(a(a({placeholder:s},v),d.textFieldProps),{error:!!k,InputProps:t(a(a({},v.InputProps),(u=d.textFieldProps)==null?void 0:u.InputProps),{inputRef:F.ref,inputProps:a(a({},v.inputProps),(Z=(P=d.textFieldProps)==null?void 0:P.InputProps)==null?void 0:Z.inputProps)})}))}}),c),(0,U.jsx)(w,{name:c})]})})},D0=(0,G0.memo)(h2);0&&(module.exports={Autocomplete,Checkbox,Creatable,DatePicker,Form,RadioButton,RadioGroup,Searchable,Select,Slider,Switch,TextField,TimePicker});
72
+ `;var i1=require("react/jsx-runtime"),O2=g=>{var V=g,{rules:e,defaultValue:c,shouldUnregister:o,name:s,required:r,label:p,timePickerProps:v,placeholder:H,disabled:L}=V,h=k(V,["rules","defaultValue","shouldUnregister","name","required","label","timePickerProps","placeholder","disabled"]);let x=(0,N1.useFormContext)();if(!x)throw new Error("Para usar o <TimePicker /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let A=z(x.formState.errors,s),D=(v==null?void 0:v.format)||"HH:mm",$=e?(0,P1.composeValidators)([(0,P1.time)(D),e]):(0,P1.time)(D);return(0,i1.jsx)(s2.LocalizationProvider,{dateAdapter:n2.AdapterDayjs,adapterLocale:d2.default,localeText:h2.ptBR.components.MuiLocalizationProvider.defaultProps.localeText,children:(0,i1.jsx)(N1.Controller,{control:x.control,name:s,rules:$,defaultValue:c,shouldUnregister:o,render:({field:{value:b,onChange:F,ref:_}})=>(0,i1.jsxs)(o2.Grid,{display:"flex",flexDirection:"column",children:[p&&(0,i1.jsx)(I,{label:p,required:r}),(0,i1.jsx)(t2.TimePicker,u(n({ampm:!1,format:D,value:b!=null?b:null,onChange:F,disabled:L},v),{slots:{textField:r2.TextField},slotProps:{textField:y=>{var T,q;return u(n(u(n({variant:"outlined"},y),{error:!!A}),h),{inputProps:u(n({},y.inputProps),{placeholder:H||((T=y.inputProps)==null?void 0:T.placeholder)}),InputProps:u(n({},y.InputProps),{inputRef(C){_(C),typeof y.inputRef=="function"&&y.inputRef(C)},endAdornment:(0,i1.jsx)(l2,{size:h.size,children:(q=y.InputProps)==null?void 0:q.endAdornment})})})}}}),s),(0,i1.jsx)(O,{name:s})]})})})},m2=(0,a2.memo)(O2);var v2=require("react"),W1=require("react-hook-form"),J1=require("@mui/material"),k1=require("@s_mart/core");var X=require("react/jsx-runtime"),Z2=require("react"),q2=V=>{var x=V,{name:e,defaultValue:c,rules:o,shouldUnregister:s,label:r,required:p,noOptionsText:v,placeholder:H,onInputChange:L,onChange:h}=x,g=k(x,["name","defaultValue","rules","shouldUnregister","label","required","noOptionsText","placeholder","onInputChange","onChange"]);let A=(0,W1.useFormContext)();if(!A)throw new Error("Para usar o <Autocomplete /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let D=z(A.formState.errors,e);return console.warn=()=>{},(0,X.jsx)(W1.Controller,{name:e,control:A.control,defaultValue:c,rules:o,shouldUnregister:s,render:({field:$})=>(0,X.jsxs)(k1.Grid,{display:"flex",flexDirection:"column",children:[r&&(0,X.jsx)(I,{label:r,required:p}),(0,X.jsx)(J1.Autocomplete,u(n({onChange:(b,F)=>{$.onChange(F),h==null||h(F,A.watch())},onInputChange:(b,F,_)=>{_==="input"&&($.onChange(F),setTimeout(()=>{L==null||L(F,A.watch())},0))},isOptionEqualToValue:(b,F)=>b.value===F.value,renderOption:(b,F)=>(0,Z2.createElement)("li",u(n({},b),{key:F.key||F.value,onClick:_=>{var y;(y=b.onClick)==null||y.call(b,_),$.onChange(F)}}),(0,X.jsxs)(k1.Grid,{container:!0,direction:"column",children:[(0,X.jsx)(k1.Grid,{item:!0,children:F.label}),F.afterLabel&&(0,X.jsx)(k1.Grid,{item:!0,children:F.afterLabel})]})),value:$.value||null,noOptionsText:v||"Nenhuma op\xE7\xE3o encontrada"},g),{renderInput:b=>{var F,_,y;return(0,X.jsx)(J1.TextField,u(n(n({placeholder:H},b),g.textFieldProps),{error:!!D,InputProps:u(n(n({},b.InputProps),(F=g.textFieldProps)==null?void 0:F.InputProps),{inputRef:$.ref,inputProps:n(n({},b.inputProps),(y=(_=g.textFieldProps)==null?void 0:_.InputProps)==null?void 0:y.inputProps)})}))}}),e),(0,X.jsx)(O,{name:e})]})})},p2=(0,v2.memo)(q2);0&&(module.exports={Autocomplete,Checkbox,Creatable,DatePicker,Form,FormProvider,RadioButton,RadioGroup,Searchable,Select,Slider,Switch,TextField,TimePicker,useForm});
package/dist/index.mjs CHANGED
@@ -1,8 +1,8 @@
1
- var D1=Object.defineProperty,B1=Object.defineProperties;var R1=Object.getOwnPropertyDescriptors;var c1=Object.getOwnPropertySymbols;var d1=Object.prototype.hasOwnProperty,m1=Object.prototype.propertyIsEnumerable;var h1=(c,e,a)=>e in c?D1(c,e,{enumerable:!0,configurable:!0,writable:!0,value:a}):c[e]=a,i=(c,e)=>{for(var a in e||(e={}))d1.call(e,a)&&h1(c,a,e[a]);if(c1)for(var a of c1(e))m1.call(e,a)&&h1(c,a,e[a]);return c},t=(c,e)=>B1(c,R1(e));var y=(c,e)=>{var a={};for(var r in c)d1.call(c,r)&&e.indexOf(r)<0&&(a[r]=c[r]);if(c!=null&&c1)for(var r of c1(c))e.indexOf(r)<0&&m1.call(c,r)&&(a[r]=c[r]);return a};import{useEffect as I1}from"react";import{FormProvider as q1,useForm as $1}from"react-hook-form";import{zodResolver as z1}from"@hookform/resolvers/zod";import{jsx as v1}from"react/jsx-runtime";function U1(V){var h=V,{children:c,onSubmit:e,style:a,disableDefaultValuesUpdate:r}=h,o=y(h,["children","onSubmit","style","disableDefaultValuesUpdate"]);let s=$1(t(i({},o),{resolver:o.schema&&z1(o.schema)}));I1(()=>{r||s.reset(o.defaultValues)},[o.defaultValues,s.reset]);let m=()=>typeof c=="function"?c(t(i({},s),{onSubmit:s.handleSubmit(n=>e(n,s))})):c;return v1(q1,t(i({},s),{children:v1("form",{onSubmit:n=>{n.preventDefault(),n.stopPropagation(),s.handleSubmit(d=>e(d,s))()},style:a,children:m()})}))}var O1=U1;import{memo as K1,useState as Q1}from"react";import{Controller as J1,useFormContext as X1}from"react-hook-form";import{Grid as s1,InputAdornment as c0,TextField as l0}from"@mui/material";var Z1={description:"M39 23.1a17 17 0 0 0-15-10c-6.5.1-12.4 4-15.2 10V25a17 17 0 0 0 15 10A17 17 0 0 0 39 25c.5-.7.5-1.3.2-1.8Zm-15 9a8 8 0 0 1-7.6-8.5c.2-4.2 3.5-7.8 7.6-7.8a8 8 0 0 1 7.6 8.4c-.1 4.3-3.5 7.9-7.6 7.9Zm0-13.5-1.3.1c.7 1.1.6 2.6-.3 3.7-1 .9-2.3.9-3.4.1-.4 2.2.3 4.7 2.1 6a4.9 4.9 0 0 0 6-.2c1.6-1.4 2.4-4 1.6-6.1a4.9 4.9 0 0 0-4.7-3.6Z",id:"line-eye-solid"},p1={description:"M24 31.7c-4 0-7.4-3.1-7.7-7.1l-5.6-4.4c-.8 1-1.4 2-2 3a1.7 1.7 0 0 0 0 1.6 17.2 17.2 0 0 0 19.5 9l-2.8-2.2-1.4.1ZM40.9 35l-6-4.6c1.8-1.5 3.3-3.4 4.4-5.5a1.7 1.7 0 0 0 0-1.6c-3-5.7-8.7-9.5-15.3-9.5-2.8 0-5.5.7-8 2l-6.8-5.3a.9.9 0 0 0-1.2.2L7 12a.9.9 0 0 0 .1 1.2l31.7 24.5a.9.9 0 0 0 1.2-.2l1-1.3a.9.9 0 0 0-.1-1.2Zm-10-7.7-2-1.6a5 5 0 0 0-6.3-6.6 2.5 2.5 0 0 1 .4 2l-3.9-3a7.7 7.7 0 0 1 10.4.5 7.7 7.7 0 0 1 1.5 8.7Z",id:"line-eye-slash-solid"};var q={description:"M24 8a16 16 0 0 0 0 32 16 16 0 0 0 0-32Zm0 7.1c1.5 0 2.7 1.2 2.7 2.7 0 1.6-1.2 2.7-2.7 2.7a2.6 2.6 0 0 1-2.7-2.7c0-1.5 1.2-2.7 2.7-2.7Zm3.6 16.4c0 .4-.4.8-.8.8h-5.6a.7.7 0 0 1-.8-.8v-1.6c0-.4.3-.7.8-.7h.7V25h-.7a.7.7 0 0 1-.8-.7v-1.6c0-.4.3-.8.8-.8h4c.5 0 .9.4.9.8v6.5h.7c.4 0 .8.3.8.7v1.6Z",id:"line-info-circle-solid"};var u1={description:"m25.5 17 5.5 5.5-12 12-4.9.5a1 1 0 0 1-1-1.1l.5-5L25.5 17Zm8.9-.8-2.6-2.6a2 2 0 0 0-2.9 0L26.5 16l5.5 5.5 2.4-2.4a2 2 0 0 0 0-3Z",id:"line-pen-solid"};var t1={description:"M35.8 21.8h-9.6v-9.6c0-.6-.6-1.1-1.1-1.1h-2.2a1 1 0 0 0-1 1v9.7h-9.7c-.6 0-1.1.6-1.1 1.1v2.2c0 .6.5 1 1 1h9.7v9.7c0 .6.5 1.1 1.1 1.1h2.2c.5 0 1-.5 1-1v-9.7h9.7c.6 0 1.1-.5 1.1-1.1v-2.2c0-.5-.5-1-1-1Z",id:"line-plus-solid"};import*as N from"@s_mart/masks";import{Typography as f1}from"@mui/material";import{toRem as _1}from"@s_mart/utils";import{jsx as M1,jsxs as N1}from"react/jsx-runtime";var F=({label:c,required:e,regular:a})=>N1("span",{style:{display:"flex",alignItems:"center",gap:_1(2)},children:[M1(f1,{variant:"caption",fontWeight:a?400:700,style:{display:"flex",alignItems:"center"},children:c}),e&&M1(f1,{variant:"caption",fontWeight:900,color:"error",children:"*"})]});import{useFormContext as j1}from"react-hook-form";import{Indicator as W1}from"@s_mart/core";var E=(c,e)=>{var a,r,o,V,h;if(c[e])return c[e];if(e.includes("[")){let[s,m]=e.split("["),[n,d]=m.split("].");return(r=(a=c[s])==null?void 0:a[n])==null?void 0:r[d]}if(e.includes(".")){let[s,m,n]=e.split(".");return n?(h=(V=c[s])==null?void 0:V[m])==null?void 0:h[n]:(o=c[s])==null?void 0:o[m]}};import{jsx as Y1}from"react/jsx-runtime";var k=({name:c})=>{var r;let e=j1(),a=E((r=e==null?void 0:e.formState)==null?void 0:r.errors,c);return a?Y1(W1,{severity:"error",children:a==null?void 0:a.message}):null};import{LIcon as H1,Tooltip as e0}from"@s_mart/core";import{jsx as B,jsxs as V1}from"react/jsx-runtime";var i0=g=>{var L=g,{name:c,rules:e,defaultValue:a,shouldUnregister:r,label:o,required:V,mask:h,variant:s="outlined",info:m,parse:n,format:d,onInputChange:u}=L,f=y(L,["name","rules","defaultValue","shouldUnregister","label","required","mask","variant","info","parse","format","onInputChange"]);let x=X1();if(!x)throw new Error("Para usar o <TextField /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let[v,p]=Q1(!1),C=M=>{var l;let H=M;return d&&(H=d(M)),h?(l=N==null?void 0:N[h])==null?void 0:l.format(H):H},Z=M=>{var l;let H=M;return n&&(H=n(M)),h?(l=N==null?void 0:N[h])==null?void 0:l.parse(H):H},w=M=>{if(!M||h!=="porcentagem")return;M==null||M.stopPropagation();let H=(M==null?void 0:M.target).value;if(H){let l=String(H);if(l.length>0){let T=l.indexOf("%");T>-1&&(M.currentTarget.selectionEnd=T)}}},G=E(x.formState.errors,c);return B(J1,{control:x.control,name:c,rules:e,defaultValue:a,shouldUnregister:r,render:({field:{value:M,onChange:H,ref:l}})=>V1(s1,{display:"flex",flexDirection:"column",children:[V1("div",{style:{display:"flex"},children:[o&&B(s1,{item:!0,children:B(F,{label:o,required:V})}),m&&B(s1,{item:!0,children:B(e0,{title:m,placement:"top",children:B("div",{style:{width:"fit-content"},children:B(H1,{icon:q,color:"#757575"})})})})]}),B(l0,t(i({variant:s,defaultValue:a,value:C(M||""),onChange:T=>{var Y;let X=Z((Y=T==null?void 0:T.target)==null?void 0:Y.value);H(X),u==null||u(X,x.watch())},error:!!G},f),{type:f.type==="password"?v?"text":"password":f.type,autoComplete:f.autoComplete||"off",InputProps:i({onKeyDown:w,inputRef:l,endAdornment:f.type==="password"&&B(c0,{position:"end",onClick:()=>p(!v),style:{cursor:"pointer"},children:B(H1,{icon:v?Z1:p1,size:"24px",removeMargin:!0})})},f.InputProps)}),c),B(k,{name:c})]})})},a0=K1(i0);import{memo as o0,useState as r0}from"react";import{Controller as n0,useFormContext as t0}from"react-hook-form";import{Divider as s0,LIcon as h0,Tooltip as d0}from"@s_mart/core";import{Grid as z,Select as m0,MenuItem as y1,useTheme as v0}from"@mui/material";import{jsx as S,jsxs as l1}from"react/jsx-runtime";var Z0=L=>{var x=L,{name:c,rules:e,defaultValue:a,shouldUnregister:r,label:o,required:V,options:h,placeholder:s,disableOnChangeForm:m=!1,multiple:n,info:d,footer:u,onChange:f}=x,g=y(x,["name","rules","defaultValue","shouldUnregister","label","required","options","placeholder","disableOnChangeForm","multiple","info","footer","onChange"]);let v=t0(),{palette:p}=v0(),[C,Z]=r0(!1);if(!v)throw new Error("Para usar o <Select /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let w=E(v.formState.errors,c);return console.warn=()=>{},S(n0,{control:v.control,name:c,rules:e,defaultValue:a,shouldUnregister:r,render:({field:{value:G,onChange:M,ref:H}})=>l1(z,{display:"flex",flexDirection:"column",children:[l1("div",{style:{display:"flex"},children:[o&&S(z,{item:!0,children:S(F,{label:o,required:V})}),d&&S(z,{item:!0,children:S(d0,{title:d,placement:"top",children:S("div",{style:{width:"fit-content"},children:S(h0,{icon:q,color:"#757575"})})})})]}),l1(m0,t(i({open:C,onOpen:()=>Z(!0),onClose:()=>Z(!1),displayEmpty:!!s,variant:"outlined",autoComplete:"off",value:G?G||"":n?[]:"",renderValue:l=>{if(l.label)return l.label;if(s)return S("p",{style:{color:p.grey[400]},children:s})},multiple:n,onChange:l=>{!m&&M(l.target.value),f&&f(l.target.value,v.watch())},error:!!w,size:g.size||"medium",inputRef:H},g),{children:[s&&S(y1,{disabled:!0,value:"",children:S("p",{style:{color:p.grey[400]},children:s})}),h==null?void 0:h.map((l,T)=>S(y1,{value:l,children:l1(z,{container:!0,direction:"column",children:[S(z,{item:!0,children:l.label}),l.afterLabel&&S(z,{item:!0,children:l.afterLabel})]})},T)),u&&[S(z,{px:2,py:1,children:S(s0,{})},"footer-divider"),S("div",{children:u({closeSelect:()=>Z(!1)})},"footer-content")]]}),c),S(k,{name:c})]})})},p0=o0(Z0);import{forwardRef as u0,memo as f0}from"react";import{Controller as M0,useFormContext as H0}from"react-hook-form";import{Divider as x1,LIcon as V0,Tooltip as y0}from"@s_mart/core";import{Grid as $,Autocomplete as x0,TextField as g0}from"@mui/material";import{Fragment as e1,jsx as A,jsxs as U}from"react/jsx-runtime";import{createElement as g1}from"react";var F0=v=>{var p=v,{name:c,rules:e,defaultValue:a,shouldUnregister:r,label:o,required:V,options:h,textFieldProps:s,noOptionsText:m,footer:n,multiple:d,info:u,placeholder:f,onChange:g,onInputChange:L}=p,x=y(p,["name","rules","defaultValue","shouldUnregister","label","required","options","textFieldProps","noOptionsText","footer","multiple","info","placeholder","onChange","onInputChange"]);let C=H0();if(!C)throw new Error("Para usar o <Searchable /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let Z=E(C.formState.errors,c);return console.warn=()=>{},A(M0,{control:C.control,name:c,rules:e,defaultValue:a,shouldUnregister:r,render:({field:{onChange:w,value:G,ref:M}})=>U($,{display:"flex",flexDirection:"column",children:[U("div",{style:{display:"flex"},children:[o&&A($,{item:!0,children:A(F,{label:o,required:V})}),u&&A($,{item:!0,children:A(y0,{title:u,placement:"top",children:A("div",{style:{width:"fit-content"},children:A(V0,{icon:q,color:"#757575"})})})})]}),A(x0,t(i({onChange:(H,l)=>{w(l),g==null||g(l,C.watch())},onInputChange:(H,l,T)=>{T==="input"&&setTimeout(()=>{L==null||L(l,C.watch())},0)},value:G||(d?[]:null),options:h,multiple:d,noOptionsText:U(e1,{children:[m||"Nenhum resultado encontrado",n?U(e1,{children:[A($,{py:1,children:A(x1,{})}),n]}):null]}),isOptionEqualToValue:(H,l)=>typeof H=="string"&&typeof l=="string"?H===l:typeof H=="object"&&typeof l=="object"?H.value===l.value:!1,renderOption:(H,l)=>typeof l=="object"?g1("li",t(i({},H),{key:l.key||l.value}),U($,{container:!0,direction:"column",children:[A($,{item:!0,children:l.label}),l.afterLabel&&A($,{item:!0,children:l.afterLabel})]})):g1("li",t(i({},H),{key:l}),l),ListboxComponent:u0(function(l,T){return U(e1,{children:[A("ul",t(i({},l),{ref:T})),!!n&&A("div",t(i({},l),{children:U(e1,{children:[A($,{px:2,py:1,children:A(x1,{})}),n]})}),"searchable-footer")]})})},x),{renderInput:H=>A(g0,t(i(i({error:!!Z,placeholder:f},H),s),{inputRef:M}))}),c),A(k,{name:c})]})})},L0=f0(F0);import{memo as k0}from"react";import{Controller as P0,useFormContext as A0}from"react-hook-form";import{Grid as j,Autocomplete as w0,TextField as S0}from"@mui/material";import{toRem as i1}from"@s_mart/utils";import C0 from"@emotion/styled";import{css as F1}from"@emotion/react";var L1=F1`
1
+ var d0=Object.create;var F1=Object.defineProperty,m0=Object.defineProperties,v0=Object.getOwnPropertyDescriptor,p0=Object.getOwnPropertyDescriptors,Z0=Object.getOwnPropertyNames,u1=Object.getOwnPropertySymbols,u0=Object.getPrototypeOf,b1=Object.prototype.hasOwnProperty,E1=Object.prototype.propertyIsEnumerable;var _1=(e,i,o)=>i in e?F1(e,i,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[i]=o,n=(e,i)=>{for(var o in i||(i={}))b1.call(i,o)&&_1(e,o,i[o]);if(u1)for(var o of u1(i))E1.call(i,o)&&_1(e,o,i[o]);return e},u=(e,i)=>m0(e,p0(i));var P=(e,i)=>{var o={};for(var s in e)b1.call(e,s)&&i.indexOf(s)<0&&(o[s]=e[s]);if(e!=null&&u1)for(var s of u1(e))i.indexOf(s)<0&&E1.call(e,s)&&(o[s]=e[s]);return o};var G1=(e,i)=>()=>(i||e((i={exports:{}}).exports,i),i.exports);var f0=(e,i,o,s)=>{if(i&&typeof i=="object"||typeof i=="function")for(let r of Z0(i))!b1.call(e,r)&&r!==o&&F1(e,r,{get:()=>i[r],enumerable:!(s=v0(i,r))||s.enumerable});return e};var I1=(e,i,o)=>(o=e!=null?d0(u0(e)):{},f0(i||!e||!e.__esModule?F1(o,"default",{value:e,enumerable:!0}):o,e));var l0=G1((S1,A1)=>{(function(e,i){typeof S1=="object"&&typeof A1!="undefined"?A1.exports=i():typeof define=="function"&&define.amd?define(i):(e=typeof globalThis!="undefined"?globalThis:e||self).dayjs=i()})(S1,function(){"use strict";var e=1e3,i=6e4,o=36e5,s="millisecond",r="second",p="minute",v="hour",H="day",L="week",h="month",g="quarter",V="year",x="date",w="Invalid Date",$=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,S=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,b={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(m){var a=["th","st","nd","rd"],c=m%100;return"["+m+(a[(c-20)%10]||a[c]||a[0])+"]"}},F=function(m,a,c){var Z=String(m);return!Z||Z.length>=a?m:""+Array(a+1-Z.length).join(c)+m},T={s:F,z:function(m){var a=-m.utcOffset(),c=Math.abs(a),Z=Math.floor(c/60),t=c%60;return(a<=0?"+":"-")+F(Z,2,"0")+":"+F(t,2,"0")},m:function m(a,c){if(a.date()<c.date())return-m(c,a);var Z=12*(c.year()-a.year())+(c.month()-a.month()),t=a.clone().add(Z,h),M=c-t<0,f=a.clone().add(Z+(M?-1:1),h);return+(-(Z+(c-t)/(M?t-f:f-t))||0)},a:function(m){return m<0?Math.ceil(m)||0:Math.floor(m)},p:function(m){return{M:h,y:V,w:L,d:H,D:x,h:v,m:p,s:r,ms:s,Q:g}[m]||String(m||"").toLowerCase().replace(/s$/,"")},u:function(m){return m===void 0}},y="en",A={};A[y]=b;var R=function(m){return m instanceof E},C=function m(a,c,Z){var t;if(!a)return y;if(typeof a=="string"){var M=a.toLowerCase();A[M]&&(t=M),c&&(A[M]=c,t=M);var f=a.split("-");if(!t&&f.length>1)return m(f[0])}else{var k=a.name;A[k]=a,t=k}return!Z&&t&&(y=t),t||!Z&&y},d=function(m,a){if(R(m))return m.clone();var c=typeof a=="object"?a:{};return c.date=m,c.args=arguments,new E(c)},l=T;l.l=C,l.i=R,l.w=function(m,a){return d(m,{locale:a.$L,utc:a.$u,x:a.$x,$offset:a.$offset})};var E=function(){function m(c){this.$L=C(c.locale,null,!0),this.parse(c)}var a=m.prototype;return a.parse=function(c){this.$d=function(Z){var t=Z.date,M=Z.utc;if(t===null)return new Date(NaN);if(l.u(t))return new Date;if(t instanceof Date)return new Date(t);if(typeof t=="string"&&!/Z$/i.test(t)){var f=t.match($);if(f){var k=f[2]-1||0,G=(f[7]||"0").substring(0,3);return M?new Date(Date.UTC(f[1],k,f[3]||1,f[4]||0,f[5]||0,f[6]||0,G)):new Date(f[1],k,f[3]||1,f[4]||0,f[5]||0,f[6]||0,G)}}return new Date(t)}(c),this.$x=c.x||{},this.init()},a.init=function(){var c=this.$d;this.$y=c.getFullYear(),this.$M=c.getMonth(),this.$D=c.getDate(),this.$W=c.getDay(),this.$H=c.getHours(),this.$m=c.getMinutes(),this.$s=c.getSeconds(),this.$ms=c.getMilliseconds()},a.$utils=function(){return l},a.isValid=function(){return this.$d.toString()!==w},a.isSame=function(c,Z){var t=d(c);return this.startOf(Z)<=t&&t<=this.endOf(Z)},a.isAfter=function(c,Z){return d(c)<this.startOf(Z)},a.isBefore=function(c,Z){return this.endOf(Z)<d(c)},a.$g=function(c,Z,t){return l.u(c)?this[Z]:this.set(t,c)},a.unix=function(){return Math.floor(this.valueOf()/1e3)},a.valueOf=function(){return this.$d.getTime()},a.startOf=function(c,Z){var t=this,M=!!l.u(Z)||Z,f=l.p(c),k=function(r1,Y){var Q=l.w(t.$u?Date.UTC(t.$y,Y,r1):new Date(t.$y,Y,r1),t);return M?Q:Q.endOf(H)},G=function(r1,Y){return l.w(t.toDate()[r1].apply(t.toDate("s"),(M?[0,0,0,0]:[23,59,59,999]).slice(Y)),t)},D=this.$W,U=this.$M,K=this.$D,J="set"+(this.$u?"UTC":"");switch(f){case V:return M?k(1,0):k(31,11);case h:return M?k(1,U):k(0,U+1);case L:var h1=this.$locale().weekStart||0,d1=(D<h1?D+7:D)-h1;return k(M?K-d1:K+(6-d1),U);case H:case x:return G(J+"Hours",0);case v:return G(J+"Minutes",1);case p:return G(J+"Seconds",2);case r:return G(J+"Milliseconds",3);default:return this.clone()}},a.endOf=function(c){return this.startOf(c,!1)},a.$set=function(c,Z){var t,M=l.p(c),f="set"+(this.$u?"UTC":""),k=(t={},t[H]=f+"Date",t[x]=f+"Date",t[h]=f+"Month",t[V]=f+"FullYear",t[v]=f+"Hours",t[p]=f+"Minutes",t[r]=f+"Seconds",t[s]=f+"Milliseconds",t)[M],G=M===H?this.$D+(Z-this.$W):Z;if(M===h||M===V){var D=this.clone().set(x,1);D.$d[k](G),D.init(),this.$d=D.set(x,Math.min(this.$D,D.daysInMonth())).$d}else k&&this.$d[k](G);return this.init(),this},a.set=function(c,Z){return this.clone().$set(c,Z)},a.get=function(c){return this[l.p(c)]()},a.add=function(c,Z){var t,M=this;c=Number(c);var f=l.p(Z),k=function(U){var K=d(M);return l.w(K.date(K.date()+Math.round(U*c)),M)};if(f===h)return this.set(h,this.$M+c);if(f===V)return this.set(V,this.$y+c);if(f===H)return k(1);if(f===L)return k(7);var G=(t={},t[p]=i,t[v]=o,t[r]=e,t)[f]||1,D=this.$d.getTime()+c*G;return l.w(D,this)},a.subtract=function(c,Z){return this.add(-1*c,Z)},a.format=function(c){var Z=this,t=this.$locale();if(!this.isValid())return t.invalidDate||w;var M=c||"YYYY-MM-DDTHH:mm:ssZ",f=l.z(this),k=this.$H,G=this.$m,D=this.$M,U=t.weekdays,K=t.months,J=function(Y,Q,L1,Z1){return Y&&(Y[Q]||Y(Z,M))||L1[Q].slice(0,Z1)},h1=function(Y){return l.s(k%12||12,Y,"0")},d1=t.meridiem||function(Y,Q,L1){var Z1=Y<12?"AM":"PM";return L1?Z1.toLowerCase():Z1},r1={YY:String(this.$y).slice(-2),YYYY:this.$y,M:D+1,MM:l.s(D+1,2,"0"),MMM:J(t.monthsShort,D,K,3),MMMM:J(K,D),D:this.$D,DD:l.s(this.$D,2,"0"),d:String(this.$W),dd:J(t.weekdaysMin,this.$W,U,2),ddd:J(t.weekdaysShort,this.$W,U,3),dddd:U[this.$W],H:String(k),HH:l.s(k,2,"0"),h:h1(1),hh:h1(2),a:d1(k,G,!0),A:d1(k,G,!1),m:String(G),mm:l.s(G,2,"0"),s:String(this.$s),ss:l.s(this.$s,2,"0"),SSS:l.s(this.$ms,3,"0"),Z:f};return M.replace(S,function(Y,Q){return Q||r1[Y]||f.replace(":","")})},a.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},a.diff=function(c,Z,t){var M,f=l.p(Z),k=d(c),G=(k.utcOffset()-this.utcOffset())*i,D=this-k,U=l.m(this,k);return U=(M={},M[V]=U/12,M[h]=U,M[g]=U/3,M[L]=(D-G)/6048e5,M[H]=(D-G)/864e5,M[v]=D/o,M[p]=D/i,M[r]=D/e,M)[f]||D,t?U:l.a(U)},a.daysInMonth=function(){return this.endOf(h).$D},a.$locale=function(){return A[this.$L]},a.locale=function(c,Z){if(!c)return this.$L;var t=this.clone(),M=C(c,Z,!0);return M&&(t.$L=M),t},a.clone=function(){return l.w(this.$d,this)},a.toDate=function(){return new Date(this.valueOf())},a.toJSON=function(){return this.isValid()?this.toISOString():null},a.toISOString=function(){return this.$d.toISOString()},a.toString=function(){return this.$d.toUTCString()},m}(),c1=E.prototype;return d.prototype=c1,[["$ms",s],["$s",r],["$m",p],["$H",v],["$W",H],["$M",h],["$y",V],["$D",x]].forEach(function(m){c1[m[1]]=function(a){return this.$g(a,m[0],m[1])}}),d.extend=function(m,a){return m.$i||(m(a,E,d),m.$i=!0),d},d.locale=C,d.isDayjs=R,d.unix=function(m){return d(1e3*m)},d.en=A[y],d.Ls=A,d.p={},d})});var D1=G1(($1,T1)=>{(function(e,i){typeof $1=="object"&&typeof T1!="undefined"?T1.exports=i(l0()):typeof define=="function"&&define.amd?define(["dayjs"],i):(e=typeof globalThis!="undefined"?globalThis:e||self).dayjs_locale_pt_br=i(e.dayjs)})($1,function(e){"use strict";function i(r){return r&&typeof r=="object"&&"default"in r?r:{default:r}}var o=i(e),s={name:"pt-br",weekdays:"domingo_segunda-feira_ter\xE7a-feira_quarta-feira_quinta-feira_sexta-feira_s\xE1bado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_s\xE1b".split("_"),weekdaysMin:"Do_2\xAA_3\xAA_4\xAA_5\xAA_6\xAA_S\xE1".split("_"),months:"janeiro_fevereiro_mar\xE7o_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),ordinal:function(r){return r+"\xBA"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [\xE0s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [\xE0s] HH:mm"},relativeTime:{future:"em %s",past:"h\xE1 %s",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um m\xEAs",MM:"%d meses",y:"um ano",yy:"%d anos"}};return o.default.locale(s,null,!0),s})});import{FormProvider as M0}from"react-hook-form";import{jsx as B1}from"react/jsx-runtime";var H0=r=>{var p=r,{children:e,style:i,onSubmit:o}=p,s=P(p,["children","style","onSubmit"]);return B1(M0,u(n({},s),{children:B1("form",{onSubmit:v=>{v.preventDefault(),v.stopPropagation(),o(v)},style:i,children:e})}))},C1=H0;import{useEffect as V0}from"react";import{useForm as y0}from"react-hook-form";import{zodResolver as g0}from"@hookform/resolvers/zod";var x0=s=>{var r=s,{disableDefaultValuesUpdate:e,onSubmit:i}=r,o=P(r,["disableDefaultValuesUpdate","onSubmit"]);let p=y0(u(n({},o),{resolver:o.schema&&g0(o.schema)}));return V0(()=>{e||p.reset(o.defaultValues)},[o.defaultValues,p.reset]),u(n({},p),{onSubmit:p.handleSubmit(v=>i(v,p))})},P1=x0;import{jsx as b0}from"react/jsx-runtime";function L0(s){var r=s,{children:e,style:i}=r,o=P(r,["children","style"]);let p=P1(o);return b0(C1,u(n({},p),{style:i,children:typeof e=="function"?e(p):e}))}var F0=L0;import{memo as A0,useState as $0}from"react";import{Controller as T0,useFormContext as D0}from"react-hook-form";import{Grid as w1,InputAdornment as _0,TextField as E0}from"@mui/material";var R1={description:"M39 23.1a17 17 0 0 0-15-10c-6.5.1-12.4 4-15.2 10V25a17 17 0 0 0 15 10A17 17 0 0 0 39 25c.5-.7.5-1.3.2-1.8Zm-15 9a8 8 0 0 1-7.6-8.5c.2-4.2 3.5-7.8 7.6-7.8a8 8 0 0 1 7.6 8.4c-.1 4.3-3.5 7.9-7.6 7.9Zm0-13.5-1.3.1c.7 1.1.6 2.6-.3 3.7-1 .9-2.3.9-3.4.1-.4 2.2.3 4.7 2.1 6a4.9 4.9 0 0 0 6-.2c1.6-1.4 2.4-4 1.6-6.1a4.9 4.9 0 0 0-4.7-3.6Z",id:"line-eye-solid"},O1={description:"M24 31.7c-4 0-7.4-3.1-7.7-7.1l-5.6-4.4c-.8 1-1.4 2-2 3a1.7 1.7 0 0 0 0 1.6 17.2 17.2 0 0 0 19.5 9l-2.8-2.2-1.4.1ZM40.9 35l-6-4.6c1.8-1.5 3.3-3.4 4.4-5.5a1.7 1.7 0 0 0 0-1.6c-3-5.7-8.7-9.5-15.3-9.5-2.8 0-5.5.7-8 2l-6.8-5.3a.9.9 0 0 0-1.2.2L7 12a.9.9 0 0 0 .1 1.2l31.7 24.5a.9.9 0 0 0 1.2-.2l1-1.3a.9.9 0 0 0-.1-1.2Zm-10-7.7-2-1.6a5 5 0 0 0-6.3-6.6 2.5 2.5 0 0 1 .4 2l-3.9-3a7.7 7.7 0 0 1 10.4.5 7.7 7.7 0 0 1 1.5 8.7Z",id:"line-eye-slash-solid"};var X={description:"M24 8a16 16 0 0 0 0 32 16 16 0 0 0 0-32Zm0 7.1c1.5 0 2.7 1.2 2.7 2.7 0 1.6-1.2 2.7-2.7 2.7a2.6 2.6 0 0 1-2.7-2.7c0-1.5 1.2-2.7 2.7-2.7Zm3.6 16.4c0 .4-.4.8-.8.8h-5.6a.7.7 0 0 1-.8-.8v-1.6c0-.4.3-.7.8-.7h.7V25h-.7a.7.7 0 0 1-.8-.7v-1.6c0-.4.3-.8.8-.8h4c.5 0 .9.4.9.8v6.5h.7c.4 0 .8.3.8.7v1.6Z",id:"line-info-circle-solid"};var q1={description:"m25.5 17 5.5 5.5-12 12-4.9.5a1 1 0 0 1-1-1.1l.5-5L25.5 17Zm8.9-.8-2.6-2.6a2 2 0 0 0-2.9 0L26.5 16l5.5 5.5 2.4-2.4a2 2 0 0 0 0-3Z",id:"line-pen-solid"};var k1={description:"M35.8 21.8h-9.6v-9.6c0-.6-.6-1.1-1.1-1.1h-2.2a1 1 0 0 0-1 1v9.7h-9.7c-.6 0-1.1.6-1.1 1.1v2.2c0 .6.5 1 1 1h9.7v9.7c0 .6.5 1.1 1.1 1.1h2.2c.5 0 1-.5 1-1v-9.7h9.7c.6 0 1.1-.5 1.1-1.1v-2.2c0-.5-.5-1-1-1Z",id:"line-plus-solid"};import*as t1 from"@s_mart/masks";import{Typography as U1}from"@mui/material";import{toRem as C0}from"@s_mart/utils";import{jsx as z1,jsxs as P0}from"react/jsx-runtime";var _=({label:e,required:i,regular:o})=>P0("span",{style:{display:"flex",alignItems:"center",gap:C0(2)},children:[z1(U1,{variant:"caption",fontWeight:o?400:700,style:{display:"flex",alignItems:"center"},children:e}),i&&z1(U1,{variant:"caption",fontWeight:900,color:"error",children:"*"})]});import{useFormContext as k0}from"react-hook-form";import{Indicator as w0}from"@s_mart/core";var z=(e,i)=>{var o,s,r,p,v;if(e[i])return e[i];if(i.includes("[")){let[H,L]=i.split("["),[h,g]=L.split("].");return(s=(o=e[H])==null?void 0:o[h])==null?void 0:s[g]}if(i.includes(".")){let[H,L,h]=i.split(".");return h?(v=(p=e[H])==null?void 0:p[L])==null?void 0:v[h]:(r=e[H])==null?void 0:r[L]}};import{jsx as S0}from"react/jsx-runtime";var I=({name:e})=>{var s;let i=k0(),o=z((s=i==null?void 0:i.formState)==null?void 0:s.errors,e);return o?S0(w0,{severity:"error",children:o==null?void 0:o.message}):null};import{LIcon as Y1,Tooltip as G0}from"@s_mart/core";import{jsx as j,jsxs as j1}from"react/jsx-runtime";var I0=w=>{var $=w,{name:e,rules:i,defaultValue:o,shouldUnregister:s,label:r,required:p,mask:v,variant:H="outlined",info:L,parse:h,format:g,onInputChange:V}=$,x=P($,["name","rules","defaultValue","shouldUnregister","label","required","mask","variant","info","parse","format","onInputChange"]);let S=D0();if(!S)throw new Error("Para usar o <TextField /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let[b,F]=$0(!1),T=C=>{var l;let d=C;return g&&(d=g(C)),v?(l=t1==null?void 0:t1[v])==null?void 0:l.format(d):d},y=C=>{var l;let d=C;return h&&(d=h(C)),v?(l=t1==null?void 0:t1[v])==null?void 0:l.parse(d):d},A=C=>{if(!C||v!=="porcentagem")return;C==null||C.stopPropagation();let d=(C==null?void 0:C.target).value;if(d){let l=String(d);if(l.length>0){let E=l.indexOf("%");E>-1&&(C.currentTarget.selectionEnd=E)}}},R=z(S.formState.errors,e);return j(T0,{control:S.control,name:e,rules:i,defaultValue:o,shouldUnregister:s,render:({field:{value:C,onChange:d,ref:l}})=>j1(w1,{display:"flex",flexDirection:"column",children:[j1("div",{style:{display:"flex"},children:[r&&j(w1,{item:!0,children:j(_,{label:r,required:p})}),L&&j(w1,{item:!0,children:j(G0,{title:L,placement:"top",children:j("div",{style:{width:"fit-content"},children:j(Y1,{icon:X,color:"#757575"})})})})]}),j(E0,u(n({variant:H,defaultValue:o,value:T(C||""),onChange:E=>{var m;let c1=y((m=E==null?void 0:E.target)==null?void 0:m.value);d(c1),V==null||V(c1,S.watch())},error:!!R},x),{type:x.type==="password"?b?"text":"password":x.type,autoComplete:x.autoComplete||"off",InputProps:n({onKeyDown:A,inputRef:l,endAdornment:x.type==="password"&&j(_0,{position:"end",onClick:()=>F(!b),style:{cursor:"pointer"},children:j(Y1,{icon:b?R1:O1,size:"24px",removeMargin:!0})})},x.InputProps)}),e),j(I,{name:e})]})})},B0=A0(I0);import{memo as R0,useState as O0}from"react";import{Controller as q0,useFormContext as U0}from"react-hook-form";import{Divider as z0,LIcon as Y0,Tooltip as j0}from"@s_mart/core";import{Grid as i1,Select as N0,MenuItem as N1,useTheme as W0}from"@mui/material";import{jsx as q,jsxs as f1}from"react/jsx-runtime";var J0=$=>{var S=$,{name:e,rules:i,defaultValue:o,shouldUnregister:s,label:r,required:p,options:v,placeholder:H,disableOnChangeForm:L=!1,multiple:h,info:g,footer:V,onChange:x}=S,w=P(S,["name","rules","defaultValue","shouldUnregister","label","required","options","placeholder","disableOnChangeForm","multiple","info","footer","onChange"]);let b=U0(),{palette:F}=W0(),[T,y]=O0(!1);if(!b)throw new Error("Para usar o <Select /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let A=z(b.formState.errors,e);return console.warn=()=>{},q(q0,{control:b.control,name:e,rules:i,defaultValue:o,shouldUnregister:s,render:({field:{value:R,onChange:C,ref:d}})=>f1(i1,{display:"flex",flexDirection:"column",children:[f1("div",{style:{display:"flex"},children:[r&&q(i1,{item:!0,children:q(_,{label:r,required:p})}),g&&q(i1,{item:!0,children:q(j0,{title:g,placement:"top",children:q("div",{style:{width:"fit-content"},children:q(Y0,{icon:X,color:"#757575"})})})})]}),f1(N0,u(n({open:T,onOpen:()=>y(!0),onClose:()=>y(!1),displayEmpty:!!H,variant:"outlined",autoComplete:"off",value:R?R||"":h?[]:"",renderValue:l=>{if(l.label)return l.label;if(H)return q("p",{style:{color:F.grey[400]},children:H})},multiple:h,onChange:l=>{!L&&C(l.target.value),x&&x(l.target.value,b.watch())},error:!!A,size:w.size||"medium",inputRef:d},w),{children:[H&&q(N1,{disabled:!0,value:"",children:q("p",{style:{color:F.grey[400]},children:H})}),v==null?void 0:v.map((l,E)=>q(N1,{value:l,children:f1(i1,{container:!0,direction:"column",children:[q(i1,{item:!0,children:l.label}),l.afterLabel&&q(i1,{item:!0,children:l.afterLabel})]})},E)),V&&[q(i1,{px:2,py:1,children:q(z0,{})},"footer-divider"),q("div",{children:V({closeSelect:()=>y(!1)})},"footer-content")]]}),e),q(I,{name:e})]})})},K0=R0(J0);import{forwardRef as Q0,memo as X0}from"react";import{Controller as e2,useFormContext as c2}from"react-hook-form";import{Divider as W1,LIcon as i2,Tooltip as l2}from"@s_mart/core";import{Grid as e1,Autocomplete as a2,TextField as o2}from"@mui/material";import{Fragment as M1,jsx as O,jsxs as l1}from"react/jsx-runtime";import{createElement as J1}from"react";var r2=b=>{var F=b,{name:e,rules:i,defaultValue:o,shouldUnregister:s,label:r,required:p,options:v,textFieldProps:H,noOptionsText:L,footer:h,multiple:g,info:V,placeholder:x,onChange:w,onInputChange:$}=F,S=P(F,["name","rules","defaultValue","shouldUnregister","label","required","options","textFieldProps","noOptionsText","footer","multiple","info","placeholder","onChange","onInputChange"]);let T=c2();if(!T)throw new Error("Para usar o <Searchable /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let y=z(T.formState.errors,e);return console.warn=()=>{},O(e2,{control:T.control,name:e,rules:i,defaultValue:o,shouldUnregister:s,render:({field:{onChange:A,value:R,ref:C}})=>l1(e1,{display:"flex",flexDirection:"column",children:[l1("div",{style:{display:"flex"},children:[r&&O(e1,{item:!0,children:O(_,{label:r,required:p})}),V&&O(e1,{item:!0,children:O(l2,{title:V,placement:"top",children:O("div",{style:{width:"fit-content"},children:O(i2,{icon:X,color:"#757575"})})})})]}),O(a2,u(n({onChange:(d,l)=>{A(l),w==null||w(l,T.watch())},onInputChange:(d,l,E)=>{E==="input"&&setTimeout(()=>{$==null||$(l,T.watch())},0)},value:R||(g?[]:null),options:v,multiple:g,noOptionsText:l1(M1,{children:[L||"Nenhum resultado encontrado",h?l1(M1,{children:[O(e1,{py:1,children:O(W1,{})}),h]}):null]}),isOptionEqualToValue:(d,l)=>typeof d=="string"&&typeof l=="string"?d===l:typeof d=="object"&&typeof l=="object"?d.value===l.value:!1,renderOption:(d,l)=>typeof l=="object"?J1("li",u(n({},d),{key:l.key||l.value}),l1(e1,{container:!0,direction:"column",children:[O(e1,{item:!0,children:l.label}),l.afterLabel&&O(e1,{item:!0,children:l.afterLabel})]})):J1("li",u(n({},d),{key:l}),l),ListboxComponent:Q0(function(l,E){return l1(M1,{children:[O("ul",u(n({},l),{ref:E})),!!h&&O("div",u(n({},l),{children:l1(M1,{children:[O(e1,{px:2,py:1,children:O(W1,{})}),h]})}),"searchable-footer")]})})},S),{renderInput:d=>O(o2,u(n(n({error:!!y,placeholder:x},d),H),{inputRef:C}))}),e),O(I,{name:e})]})})},t2=X0(r2);import{memo as h2}from"react";import{Controller as d2,useFormContext as m2}from"react-hook-form";import{Grid as n1,Autocomplete as v2,TextField as p2}from"@mui/material";import{toRem as H1}from"@s_mart/utils";import n2 from"@emotion/styled";import{css as K1}from"@emotion/react";var Q1=K1`
2
2
  display: flex;
3
3
  align-items: center;
4
4
  justify-content: center;
5
- `,b0=c=>F1`
5
+ `,s2=e=>K1`
6
6
  .MuiAutocomplete-endAdornment {
7
7
  position: relative;
8
8
  right: 0;
@@ -10,63 +10,63 @@ var D1=Object.defineProperty,B1=Object.defineProperties;var R1=Object.getOwnProp
10
10
 
11
11
  .creatable,
12
12
  .editable {
13
- ${L1}
13
+ ${Q1}
14
14
 
15
15
  .divider {
16
16
  width: 1px;
17
- height: ${i1(20)};
18
- background-color: ${c.palette.grey[400]};
17
+ height: ${H1(20)};
18
+ background-color: ${e.palette.grey[400]};
19
19
  }
20
20
 
21
21
  .button {
22
22
  display: flex;
23
23
  justify-content: center;
24
24
  align-items: center;
25
- color: ${c.palette.grey[600]};
25
+ color: ${e.palette.grey[600]};
26
26
  border-radius: 50%;
27
27
 
28
- margin: 0 ${i1(6)};
29
- width: ${i1(28)};
30
- height: ${i1(28)};
28
+ margin: 0 ${H1(6)};
29
+ width: ${H1(28)};
30
+ height: ${H1(28)};
31
31
 
32
32
  &:hover {
33
33
  cursor: pointer;
34
- background-color: ${c.palette.grey[100]};
34
+ background-color: ${e.palette.grey[100]};
35
35
  transition: background-color 0.2s ease-in-out;
36
36
  }
37
37
  }
38
38
  }
39
- `,C1=C0.div`
39
+ `,X1=n2.div`
40
40
  display: flex;
41
41
 
42
42
  div.endAdornments {
43
43
  position: absolute;
44
44
  right: 0;
45
45
 
46
- ${L1}
46
+ ${Q1}
47
47
  }
48
48
 
49
- ${({hideAddButton:c,theme:e})=>!c&&b0(e)}
50
- `;import{LIcon as a1,Tooltip as T0,Button as E0}from"@s_mart/core";import{isObject as G0,isEmpty as D0}from"lodash";import{toRem as b1}from"@s_mart/utils";import{jsx as P,jsxs as O}from"react/jsx-runtime";import{createElement as k1}from"react";var B0=C=>{var Z=C,{name:c,rules:e,defaultValue:a,shouldUnregister:r,label:o,required:V,options:h,editable:s,onEditOption:m,onCreateOption:n,textFieldProps:d,hideAddButton:u,multiple:f,info:g,onChange:L,onInputChange:x,placeholder:v}=Z,p=y(Z,["name","rules","defaultValue","shouldUnregister","label","required","options","editable","onEditOption","onCreateOption","textFieldProps","hideAddButton","multiple","info","onChange","onInputChange","placeholder"]);let w=A0();if(!w)throw new Error("Para usar o <Creatable /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let G=E(w.formState.errors,c);console.warn=()=>{};let M=l=>{n?n(l):console.error("onCreateOption n\xE3o foi definido")},H=l=>{m?m(l):console.error("onEditOption n\xE3o foi definido")};return P(P0,{control:w.control,name:c,rules:e,defaultValue:a,shouldUnregister:r,render:({field:{value:l,onChange:T,ref:X}})=>{let Y=(l==null?void 0:l.label)||(l==null?void 0:l.value)||l;return O(j,{display:"flex",flexDirection:"column",children:[O("div",{style:{display:"flex"},children:[o&&P(j,{item:!0,children:P(F,{label:o,required:V})}),g&&P(j,{item:!0,children:P(T0,{title:g,placement:"top",children:P("div",{style:{width:"fit-content"},children:P(a1,{icon:q,color:"#757575"})})})})]}),P(C1,{hideAddButton:u,children:P(w0,t(i({fullWidth:!0,onChange:(D,b)=>{T(b),L==null||L(b,w.watch())},onInputChange:(D,b,G1)=>{G1==="input"&&(T(b),setTimeout(()=>{x==null||x(b,w.watch())},0))},options:h,value:l||(f?[]:null),multiple:f,noOptionsText:O(E0,{sx:{justifyContent:"flex-start",padding:`${b1(6)} ${b1(-16)}`,margin:0},fullWidth:!0,onClick:()=>M(l),variant:"text",startIcon:P(a1,{icon:t1}),children:["Adicionar ",Y&&`"${Y}"`]}),isOptionEqualToValue:(D,b)=>b?typeof D=="string"&&typeof b=="string"?D===b:typeof D=="object"&&typeof b=="object"?D.value===b.value:typeof D=="object"&&typeof b=="string":!1,renderOption:(D,b)=>typeof b=="object"?k1("li",t(i({},D),{key:b.key||b.value}),O(j,{container:!0,direction:"column",children:[P(j,{item:!0,children:b.label}),b.afterLabel&&P(j,{item:!0,children:b.afterLabel})]})):k1("li",t(i({},D),{key:b}),b)},p),{renderInput:D=>P(S0,i(t(i({placeholder:v},D),{error:!!G,onChange:T,InputProps:t(i({},D.InputProps),{inputRef:X,endAdornment:u?void 0:O("div",{className:"endAdornments",children:[D.InputProps.endAdornment,s&&G0(l)&&!D0(l)?O("div",{className:"editable",children:[P("div",{className:"divider"}),P("div",{className:"button",onClick:()=>H(l),children:P(a1,{icon:u1,size:"24px",removeMargin:!0})})]}):null,O("div",{className:"creatable",children:[P("div",{className:"divider"}),P("div",{className:"button",onClick:()=>M(l),children:P(a1,{icon:t1,size:"24px",removeMargin:!0})})]})]})})}),d))}),c)}),P(k,{name:c})]})}})},R0=k0(B0);import{Controller as I0,useFormContext as q0}from"react-hook-form";import{Grid as $0,Checkbox as z0,FormControlLabel as U0}from"@mui/material";import{jsx as K,jsxs as N0}from"react/jsx-runtime";var O0=m=>{var n=m,{name:c,rules:e,defaultValue:a,shouldUnregister:r,label:o,labelPlacement:V,required:h}=n,s=y(n,["name","rules","defaultValue","shouldUnregister","label","labelPlacement","required"]);let d=q0();if(!d)throw new Error("Para usar o <Checkbox /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return K(I0,{control:d.control,name:c,rules:e,defaultValue:a,shouldUnregister:r,render:({field:{value:u,onChange:f}})=>N0($0,{display:"flex",flexDirection:"column",children:[K(U0,{control:K(z0,i({checked:!!u,value:u!=null?u:"",defaultValue:u,onChange:f},s),c),label:K(F,{label:o,required:h,regular:!0}),labelPlacement:V||"end"}),K(k,{name:c})]})})},_0=O0;import{Controller as j0,useFormContext as W0}from"react-hook-form";import{Grid as Y0,Switch as K0,FormControlLabel as Q0}from"@mui/material";import{jsx as Q,jsxs as c2}from"react/jsx-runtime";var J0=s=>{var m=s,{name:c,rules:e,defaultValue:a,shouldUnregister:r,label:o,labelPlacement:V}=m,h=y(m,["name","rules","defaultValue","shouldUnregister","label","labelPlacement"]);let n=W0();if(!n)throw new Error("Para usar o <Switch /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return Q(j0,{control:n.control,name:c,rules:e,defaultValue:a,shouldUnregister:r,render:({field:{value:d,onChange:u}})=>c2(Y0,{display:"flex",flexDirection:"column",children:[Q(Q0,{control:Q(K0,i({value:d!=null?d:"",checked:d!=null?d:!1,defaultValue:d,onChange:u},h),c),label:Q(F,{label:o}),labelPlacement:V||"end"}),Q(k,{name:c})]})})},X0=J0;import{Grid as l2,Radio as e2,FormControlLabel as i2}from"@mui/material";import{jsx as o1}from"react/jsx-runtime";var a2=r=>{var o=r,{label:c,labelPlacement:e}=o,a=y(o,["label","labelPlacement"]);return o1(l2,{display:"flex",flexDirection:"column",children:o1(i2,{control:o1(e2,i({},a)),label:o1(F,{label:c}),labelPlacement:e||"end"})})},o2=a2;import{Controller as r2,useFormContext as n2}from"react-hook-form";import{Grid as t2,RadioGroup as s2}from"@mui/material";import{jsx as r1,jsxs as m2}from"react/jsx-runtime";var h2=n=>{var d=n,{name:c,rules:e,defaultValue:a,shouldUnregister:r,label:o,required:V,children:h,orientation:s="row"}=d,m=y(d,["name","rules","defaultValue","shouldUnregister","label","required","children","orientation"]);let u=n2();if(!u)throw new Error("Para usar o <RadioGroup /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return r1(r2,{control:u.control,name:c,rules:e,defaultValue:a,shouldUnregister:r,render:({field:{value:f,onChange:g}})=>m2(t2,{display:"flex",flexDirection:"column",children:[o&&r1(F,{label:o,required:V}),r1(s2,t(i({value:f||"",onChange:g,name:c},m),{style:{display:"flex",flexDirection:s},children:h}),c),r1(k,{name:c})]})})},d2=h2;import{Controller as v2,useFormContext as Z2}from"react-hook-form";import{Slider as p2}from"@mui/material";import{jsx as P1}from"react/jsx-runtime";var u2=V=>{var h=V,{name:c,rules:e,defaultValue:a,shouldUnregister:r}=h,o=y(h,["name","rules","defaultValue","shouldUnregister"]);let s=Z2();if(!s)throw new Error("Para usar o <Slider /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return P1(v2,{control:s.control,name:c,rules:e,defaultValue:a,shouldUnregister:r,render:({field:{value:m,onChange:n}})=>P1(p2,i({value:m||(o==null?void 0:o.min)||0,onChange:n,valueLabelDisplay:"auto"},o),c)})},f2=u2;import{memo as y2}from"react";import{Controller as x2,useFormContext as g2}from"react-hook-form";import{Grid as F2}from"@s_mart/core";import{composeValidators as L2,date as w1}from"@s_mart/rules";import{TextField as C2}from"@mui/material";import{DatePicker as b2}from"@mui/x-date-pickers/DatePicker";import{AdapterDayjs as k2}from"@mui/x-date-pickers/AdapterDayjs";import{LocalizationProvider as P2}from"@mui/x-date-pickers/LocalizationProvider";import{toRem as R}from"@s_mart/utils";import M2 from"@emotion/styled";var H2=c=>{switch(c){case"small":return R(16);default:case"medium":return R(20);case"large":return R(24)}},V2=c=>{switch(c){case"small":return`${R(2)} ${R(8)}`;default:case"medium":return`${R(6)} ${R(8)}`;case"large":return`${R(10)}`}},A1=M2.div`
49
+ ${({hideAddButton:e,theme:i})=>!e&&s2(i)}
50
+ `;import{LIcon as V1,Tooltip as Z2,Button as u2}from"@s_mart/core";import{isObject as f2,isEmpty as M2}from"lodash";import{toRem as e0}from"@s_mart/utils";import{jsx as B,jsxs as a1}from"react/jsx-runtime";import{createElement as c0}from"react";var H2=T=>{var y=T,{name:e,rules:i,defaultValue:o,shouldUnregister:s,label:r,required:p,options:v,editable:H,onEditOption:L,onCreateOption:h,textFieldProps:g,hideAddButton:V,multiple:x,info:w,onChange:$,onInputChange:S,placeholder:b}=y,F=P(y,["name","rules","defaultValue","shouldUnregister","label","required","options","editable","onEditOption","onCreateOption","textFieldProps","hideAddButton","multiple","info","onChange","onInputChange","placeholder"]);let A=m2();if(!A)throw new Error("Para usar o <Creatable /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let R=z(A.formState.errors,e);console.warn=()=>{};let C=l=>{h?h(l):console.error("onCreateOption n\xE3o foi definido")},d=l=>{L?L(l):console.error("onEditOption n\xE3o foi definido")};return B(d2,{control:A.control,name:e,rules:i,defaultValue:o,shouldUnregister:s,render:({field:{value:l,onChange:E,ref:c1}})=>{let m=(l==null?void 0:l.label)||(l==null?void 0:l.value)||l;return a1(n1,{display:"flex",flexDirection:"column",children:[a1("div",{style:{display:"flex"},children:[r&&B(n1,{item:!0,children:B(_,{label:r,required:p})}),w&&B(n1,{item:!0,children:B(Z2,{title:w,placement:"top",children:B("div",{style:{width:"fit-content"},children:B(V1,{icon:X,color:"#757575"})})})})]}),B(X1,{hideAddButton:V,children:B(v2,u(n({fullWidth:!0,onChange:(a,c)=>{E(c),$==null||$(c,A.watch())},onInputChange:(a,c,Z)=>{Z==="input"&&(E(c),setTimeout(()=>{S==null||S(c,A.watch())},0))},options:v,value:l||(x?[]:null),multiple:x,noOptionsText:a1(u2,{sx:{justifyContent:"flex-start",padding:`${e0(6)} ${e0(-16)}`,margin:0},fullWidth:!0,onClick:()=>C(l),variant:"text",startIcon:B(V1,{icon:k1}),children:["Adicionar ",m&&`"${m}"`]}),isOptionEqualToValue:(a,c)=>c?typeof a=="string"&&typeof c=="string"?a===c:typeof a=="object"&&typeof c=="object"?a.value===c.value:typeof a=="object"&&typeof c=="string":!1,renderOption:(a,c)=>typeof c=="object"?c0("li",u(n({},a),{key:c.key||c.value}),a1(n1,{container:!0,direction:"column",children:[B(n1,{item:!0,children:c.label}),c.afterLabel&&B(n1,{item:!0,children:c.afterLabel})]})):c0("li",u(n({},a),{key:c}),c)},F),{renderInput:a=>B(p2,n(u(n({placeholder:b},a),{error:!!R,onChange:E,InputProps:u(n({},a.InputProps),{inputRef:c1,endAdornment:V?void 0:a1("div",{className:"endAdornments",children:[a.InputProps.endAdornment,H&&f2(l)&&!M2(l)?a1("div",{className:"editable",children:[B("div",{className:"divider"}),B("div",{className:"button",onClick:()=>d(l),children:B(V1,{icon:q1,size:"24px",removeMargin:!0})})]}):null,a1("div",{className:"creatable",children:[B("div",{className:"divider"}),B("div",{className:"button",onClick:()=>C(l),children:B(V1,{icon:k1,size:"24px",removeMargin:!0})})]})]})})}),g))}),e)}),B(I,{name:e})]})}})},V2=h2(H2);import{Controller as y2,useFormContext as g2}from"react-hook-form";import{Grid as x2,Checkbox as L2,FormControlLabel as F2}from"@mui/material";import{jsx as m1,jsxs as P2}from"react/jsx-runtime";var b2=L=>{var h=L,{name:e,rules:i,defaultValue:o,shouldUnregister:s,label:r,labelPlacement:p,required:v}=h,H=P(h,["name","rules","defaultValue","shouldUnregister","label","labelPlacement","required"]);let g=g2();if(!g)throw new Error("Para usar o <Checkbox /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return m1(y2,{control:g.control,name:e,rules:i,defaultValue:o,shouldUnregister:s,render:({field:{value:V,onChange:x}})=>P2(x2,{display:"flex",flexDirection:"column",children:[m1(F2,{control:m1(L2,n({checked:!!V,value:V!=null?V:"",defaultValue:V,onChange:x},H),e),label:m1(_,{label:r,required:v,regular:!0}),labelPlacement:p||"end"}),m1(I,{name:e})]})})},C2=b2;import{Controller as k2,useFormContext as w2}from"react-hook-form";import{Grid as S2,Switch as A2,FormControlLabel as $2}from"@mui/material";import{jsx as v1,jsxs as _2}from"react/jsx-runtime";var T2=H=>{var L=H,{name:e,rules:i,defaultValue:o,shouldUnregister:s,label:r,labelPlacement:p}=L,v=P(L,["name","rules","defaultValue","shouldUnregister","label","labelPlacement"]);let h=w2();if(!h)throw new Error("Para usar o <Switch /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return v1(k2,{control:h.control,name:e,rules:i,defaultValue:o,shouldUnregister:s,render:({field:{value:g,onChange:V}})=>_2(S2,{display:"flex",flexDirection:"column",children:[v1($2,{control:v1(A2,n({value:g!=null?g:"",checked:g!=null?g:!1,defaultValue:g,onChange:V},v),e),label:v1(_,{label:r}),labelPlacement:p||"end"}),v1(I,{name:e})]})})},D2=T2;import{Grid as E2,Radio as G2,FormControlLabel as I2}from"@mui/material";import{jsx as y1}from"react/jsx-runtime";var B2=s=>{var r=s,{label:e,labelPlacement:i}=r,o=P(r,["label","labelPlacement"]);return y1(E2,{display:"flex",flexDirection:"column",children:y1(I2,{control:y1(G2,n({},o)),label:y1(_,{label:e}),labelPlacement:i||"end"})})},R2=B2;import{Controller as O2,useFormContext as q2}from"react-hook-form";import{Grid as U2,RadioGroup as z2}from"@mui/material";import{jsx as g1,jsxs as N2}from"react/jsx-runtime";var Y2=h=>{var g=h,{name:e,rules:i,defaultValue:o,shouldUnregister:s,label:r,required:p,children:v,orientation:H="row"}=g,L=P(g,["name","rules","defaultValue","shouldUnregister","label","required","children","orientation"]);let V=q2();if(!V)throw new Error("Para usar o <RadioGroup /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return g1(O2,{control:V.control,name:e,rules:i,defaultValue:o,shouldUnregister:s,render:({field:{value:x,onChange:w}})=>N2(U2,{display:"flex",flexDirection:"column",children:[r&&g1(_,{label:r,required:p}),g1(z2,u(n({value:x||"",onChange:w,name:e},L),{style:{display:"flex",flexDirection:H},children:v}),e),g1(I,{name:e})]})})},j2=Y2;import{Controller as W2,useFormContext as J2}from"react-hook-form";import{Slider as K2}from"@mui/material";import{jsx as i0}from"react/jsx-runtime";var Q2=p=>{var v=p,{name:e,rules:i,defaultValue:o,shouldUnregister:s}=v,r=P(v,["name","rules","defaultValue","shouldUnregister"]);let H=J2();if(!H)throw new Error("Para usar o <Slider /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");return i0(W2,{control:H.control,name:e,rules:i,defaultValue:o,shouldUnregister:s,render:({field:{value:L,onChange:h}})=>i0(K2,n({value:L||(r==null?void 0:r.min)||0,onChange:h,valueLabelDisplay:"auto"},r),e)})},X2=Q2;var r0=I1(D1());import{memo as l3}from"react";import{Controller as a3,useFormContext as o3}from"react-hook-form";import{Grid as r3}from"@s_mart/core";import{composeValidators as t3,date as o0}from"@s_mart/rules";import{TextField as n3}from"@mui/material";import{DatePicker as s3}from"@mui/x-date-pickers/DatePicker";import{AdapterDayjs as h3}from"@mui/x-date-pickers/AdapterDayjs";import{LocalizationProvider as d3}from"@mui/x-date-pickers/LocalizationProvider";import{ptBR as m3}from"@mui/x-date-pickers/locales/ptBR";import{toRem as N}from"@s_mart/utils";import e3 from"@emotion/styled";var c3=e=>{switch(e){case"small":return N(16);default:case"medium":return N(20);case"large":return N(24)}},i3=e=>{switch(e){case"small":return`${N(2)} ${N(8)}`;default:case"medium":return`${N(6)} ${N(8)}`;case"large":return`${N(10)}`}},a0=e3.div`
51
51
  > div > button {
52
- padding: ${({size:c})=>V2(c)};
53
- border-radius: 0 ${R(4)} ${R(4)} 0;
52
+ padding: ${({size:e})=>i3(e)};
53
+ border-radius: 0 ${N(4)} ${N(4)} 0;
54
54
 
55
55
  margin: 0px -13px 0px 0px;
56
56
 
57
57
  svg {
58
- width: ${({size:c})=>H2(c)};
58
+ width: ${({size:e})=>c3(e)};
59
59
  }
60
60
  }
61
- `;import{jsx as J,jsxs as T2}from"react/jsx-runtime";import{createElement as S2}from"react";var A2=d=>{var u=d,{rules:c,name:e,defaultValue:a,shouldUnregister:r,datePickerProps:o,label:V,required:h,placeholder:s,disabled:m}=u,n=y(u,["rules","name","defaultValue","shouldUnregister","datePickerProps","label","required","placeholder","disabled"]);let f=g2();if(!f)throw new Error("Para usar o <DataPicker /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let g=E(f.formState.errors,e),L=(o==null?void 0:o.format)||"DD/MM/YYYY",x=c?L2([w1(L),c]):w1(L);return J(P2,{dateAdapter:k2,children:J(x2,{control:f.control,name:e,rules:x,defaultValue:a,shouldUnregister:r,render:({field:{value:v,onChange:p,ref:C}})=>T2(F2,{display:"flex",flexDirection:"column",children:[V&&J(F,{label:V,required:h}),S2(b2,t(i({},o),{key:e,value:v!=null?v:null,format:L,onChange:p,disabled:m,slots:{textField:C2},slotProps:{textField:Z=>{var w,G;return t(i(t(i({variant:"outlined"},Z),{error:!!g}),n),{inputProps:t(i({},Z.inputProps),{placeholder:s||((w=Z.inputProps)==null?void 0:w.placeholder)}),InputProps:t(i({},Z.InputProps),{inputRef(M){C(M),typeof Z.inputRef=="function"&&Z.inputRef(M)},endAdornment:J(A1,{size:n.size,children:(G=Z.InputProps)==null?void 0:G.endAdornment})})})}}})),J(k,{name:e})]})})})},w2=y2(A2);import{memo as B2}from"react";import{Controller as R2,useFormContext as I2}from"react-hook-form";import{Grid as q2}from"@s_mart/core";import{composeValidators as $2,time as T1}from"@s_mart/rules";import{TextField as z2}from"@mui/material";import{TimePicker as U2}from"@mui/x-date-pickers/TimePicker";import{AdapterDayjs as O2}from"@mui/x-date-pickers/AdapterDayjs";import{LocalizationProvider as _2}from"@mui/x-date-pickers/LocalizationProvider";import{toRem as I}from"@s_mart/utils";import E2 from"@emotion/styled";var G2=c=>{switch(c){case"small":return I(16);default:case"medium":return I(20);case"large":return I(24)}},D2=c=>{switch(c){case"small":return`${I(2)} ${I(8)}`;default:case"medium":return`${I(6)} ${I(8)}`;case"large":return`${I(10)}`}},S1=E2.div`
61
+ `;import{jsx as p1,jsxs as u3}from"react/jsx-runtime";import{createElement as Z3}from"react";var v3=g=>{var V=g,{rules:e,name:i,defaultValue:o,shouldUnregister:s,datePickerProps:r,label:p,required:v,placeholder:H,disabled:L}=V,h=P(V,["rules","name","defaultValue","shouldUnregister","datePickerProps","label","required","placeholder","disabled"]);let x=o3();if(!x)throw new Error("Para usar o <DataPicker /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let w=z(x.formState.errors,i),$=(r==null?void 0:r.format)||"DD/MM/YYYY",S=e?t3([o0($),e]):o0($);return p1(d3,{dateAdapter:h3,adapterLocale:r0.default,localeText:m3.components.MuiLocalizationProvider.defaultProps.localeText,children:p1(a3,{control:x.control,name:i,rules:S,defaultValue:o,shouldUnregister:s,render:({field:{value:b,onChange:F,ref:T}})=>u3(r3,{display:"flex",flexDirection:"column",children:[p&&p1(_,{label:p,required:v}),Z3(s3,u(n({},r),{key:i,value:b!=null?b:null,format:$,onChange:F,disabled:L,slots:{textField:n3},slotProps:{textField:y=>{var A,R;return u(n(u(n({variant:"outlined"},y),{error:!!w}),h),{inputProps:u(n({},y.inputProps),{placeholder:H||((A=y.inputProps)==null?void 0:A.placeholder)}),InputProps:u(n({},y.InputProps),{inputRef(C){T(C),typeof y.inputRef=="function"&&y.inputRef(C)},endAdornment:p1(a0,{size:h.size,children:(R=y.InputProps)==null?void 0:R.endAdornment})})})}}})),p1(I,{name:i})]})})})},p3=l3(v3);var s0=I1(D1());import{memo as V3}from"react";import{Controller as y3,useFormContext as g3}from"react-hook-form";import{Grid as x3}from"@s_mart/core";import{composeValidators as L3,time as n0}from"@s_mart/rules";import{TextField as F3}from"@mui/material";import{TimePicker as b3}from"@mui/x-date-pickers/TimePicker";import{AdapterDayjs as C3}from"@mui/x-date-pickers/AdapterDayjs";import{LocalizationProvider as P3}from"@mui/x-date-pickers/LocalizationProvider";import{ptBR as k3}from"@mui/x-date-pickers/locales/ptBR";import{toRem as W}from"@s_mart/utils";import f3 from"@emotion/styled";var M3=e=>{switch(e){case"small":return W(16);default:case"medium":return W(20);case"large":return W(24)}},H3=e=>{switch(e){case"small":return`${W(2)} ${W(8)}`;default:case"medium":return`${W(6)} ${W(8)}`;case"large":return`${W(10)}`}},t0=f3.div`
62
62
  > div > button {
63
- padding: ${({size:c})=>D2(c)};
64
- border-radius: 0 ${I(4)} ${I(4)} 0;
63
+ padding: ${({size:e})=>H3(e)};
64
+ border-radius: 0 ${W(4)} ${W(4)} 0;
65
65
 
66
66
  margin: 0px -13px 0px 0px;
67
67
 
68
68
  svg {
69
- width: ${({size:c})=>G2(c)};
69
+ width: ${({size:e})=>M3(e)};
70
70
  }
71
71
  }
72
- `;import{jsx as W,jsxs as W2}from"react/jsx-runtime";var N2=d=>{var u=d,{rules:c,defaultValue:e,shouldUnregister:a,name:r,required:o,label:V,timePickerProps:h,placeholder:s,disabled:m}=u,n=y(u,["rules","defaultValue","shouldUnregister","name","required","label","timePickerProps","placeholder","disabled"]);let f=I2();if(!f)throw new Error("Para usar o <TimePicker /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let g=E(f.formState.errors,r),L=(h==null?void 0:h.format)||"HH:mm",x=c?$2([T1(L),c]):T1(L);return W(_2,{dateAdapter:O2,children:W(R2,{control:f.control,name:r,rules:x,defaultValue:e,shouldUnregister:a,render:({field:{value:v,onChange:p,ref:C}})=>W2(q2,{display:"flex",flexDirection:"column",children:[V&&W(F,{label:V,required:o}),W(U2,t(i({ampm:!1,format:L,value:v!=null?v:null,onChange:p,disabled:m},h),{slots:{textField:z2},slotProps:{textField:Z=>{var w,G;return t(i(t(i({variant:"outlined"},Z),{error:!!g}),n),{inputProps:t(i({},Z.inputProps),{placeholder:s||((w=Z.inputProps)==null?void 0:w.placeholder)}),InputProps:t(i({},Z.InputProps),{inputRef(M){C(M),typeof Z.inputRef=="function"&&Z.inputRef(M)},endAdornment:W(S1,{size:n.size,children:(G=Z.InputProps)==null?void 0:G.endAdornment})})})}}}),r),W(k,{name:r})]})})})},j2=B2(N2);import{memo as Y2}from"react";import{Controller as K2,useFormContext as Q2}from"react-hook-form";import{Autocomplete as J2,TextField as X2}from"@mui/material";import{Grid as n1}from"@s_mart/core";import{jsx as _,jsxs as E1}from"react/jsx-runtime";import{createElement as e3}from"react";var c3=u=>{var f=u,{name:c,defaultValue:e,rules:a,shouldUnregister:r,label:o,required:V,noOptionsText:h,placeholder:s,onInputChange:m,onChange:n}=f,d=y(f,["name","defaultValue","rules","shouldUnregister","label","required","noOptionsText","placeholder","onInputChange","onChange"]);let g=Q2();if(!g)throw new Error("Para usar o <Autocomplete /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let L=E(g.formState.errors,c);return console.warn=()=>{},_(K2,{name:c,control:g.control,defaultValue:e,rules:a,shouldUnregister:r,render:({field:x})=>E1(n1,{display:"flex",flexDirection:"column",children:[o&&_(F,{label:o,required:V}),_(J2,t(i({onChange:(v,p)=>{x.onChange(p),n==null||n(p,g.watch())},onInputChange:(v,p,C)=>{C==="input"&&(x.onChange(p),setTimeout(()=>{m==null||m(p,g.watch())},0))},isOptionEqualToValue:(v,p)=>v.value===p.value,renderOption:(v,p)=>e3("li",t(i({},v),{key:p.key||p.value,onClick:C=>{var Z;(Z=v.onClick)==null||Z.call(v,C),x.onChange(p)}}),E1(n1,{container:!0,direction:"column",children:[_(n1,{item:!0,children:p.label}),p.afterLabel&&_(n1,{item:!0,children:p.afterLabel})]})),value:x.value||null,noOptionsText:h||"Nenhuma op\xE7\xE3o encontrada"},d),{renderInput:v=>{var p,C,Z;return _(X2,t(i(i({placeholder:s},v),d.textFieldProps),{error:!!L,InputProps:t(i(i({},v.InputProps),(p=d.textFieldProps)==null?void 0:p.InputProps),{inputRef:x.ref,inputProps:i(i({},v.inputProps),(Z=(C=d.textFieldProps)==null?void 0:C.InputProps)==null?void 0:Z.inputProps)})}))}}),c),_(k,{name:c})]})})},l3=Y2(c3);export{l3 as Autocomplete,_0 as Checkbox,R0 as Creatable,w2 as DatePicker,O1 as Form,o2 as RadioButton,d2 as RadioGroup,L0 as Searchable,p0 as Select,f2 as Slider,X0 as Switch,a0 as TextField,j2 as TimePicker};
72
+ `;import{jsx as s1,jsxs as A3}from"react/jsx-runtime";var w3=g=>{var V=g,{rules:e,defaultValue:i,shouldUnregister:o,name:s,required:r,label:p,timePickerProps:v,placeholder:H,disabled:L}=V,h=P(V,["rules","defaultValue","shouldUnregister","name","required","label","timePickerProps","placeholder","disabled"]);let x=g3();if(!x)throw new Error("Para usar o <TimePicker /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let w=z(x.formState.errors,s),$=(v==null?void 0:v.format)||"HH:mm",S=e?L3([n0($),e]):n0($);return s1(P3,{dateAdapter:C3,adapterLocale:s0.default,localeText:k3.components.MuiLocalizationProvider.defaultProps.localeText,children:s1(y3,{control:x.control,name:s,rules:S,defaultValue:i,shouldUnregister:o,render:({field:{value:b,onChange:F,ref:T}})=>A3(x3,{display:"flex",flexDirection:"column",children:[p&&s1(_,{label:p,required:r}),s1(b3,u(n({ampm:!1,format:$,value:b!=null?b:null,onChange:F,disabled:L},v),{slots:{textField:F3},slotProps:{textField:y=>{var A,R;return u(n(u(n({variant:"outlined"},y),{error:!!w}),h),{inputProps:u(n({},y.inputProps),{placeholder:H||((A=y.inputProps)==null?void 0:A.placeholder)}),InputProps:u(n({},y.InputProps),{inputRef(C){T(C),typeof y.inputRef=="function"&&y.inputRef(C)},endAdornment:s1(t0,{size:h.size,children:(R=y.InputProps)==null?void 0:R.endAdornment})})})}}}),s),s1(I,{name:s})]})})})},S3=V3(w3);import{memo as $3}from"react";import{Controller as T3,useFormContext as D3}from"react-hook-form";import{Autocomplete as _3,TextField as E3}from"@mui/material";import{Grid as x1}from"@s_mart/core";import{jsx as o1,jsxs as h0}from"react/jsx-runtime";import{createElement as B3}from"react";var G3=V=>{var x=V,{name:e,defaultValue:i,rules:o,shouldUnregister:s,label:r,required:p,noOptionsText:v,placeholder:H,onInputChange:L,onChange:h}=x,g=P(x,["name","defaultValue","rules","shouldUnregister","label","required","noOptionsText","placeholder","onInputChange","onChange"]);let w=D3();if(!w)throw new Error("Para usar o <Autocomplete /> \xE9 necess\xE1rio que ele esteja dentro de um <Form />");let $=z(w.formState.errors,e);return console.warn=()=>{},o1(T3,{name:e,control:w.control,defaultValue:i,rules:o,shouldUnregister:s,render:({field:S})=>h0(x1,{display:"flex",flexDirection:"column",children:[r&&o1(_,{label:r,required:p}),o1(_3,u(n({onChange:(b,F)=>{S.onChange(F),h==null||h(F,w.watch())},onInputChange:(b,F,T)=>{T==="input"&&(S.onChange(F),setTimeout(()=>{L==null||L(F,w.watch())},0))},isOptionEqualToValue:(b,F)=>b.value===F.value,renderOption:(b,F)=>B3("li",u(n({},b),{key:F.key||F.value,onClick:T=>{var y;(y=b.onClick)==null||y.call(b,T),S.onChange(F)}}),h0(x1,{container:!0,direction:"column",children:[o1(x1,{item:!0,children:F.label}),F.afterLabel&&o1(x1,{item:!0,children:F.afterLabel})]})),value:S.value||null,noOptionsText:v||"Nenhuma op\xE7\xE3o encontrada"},g),{renderInput:b=>{var F,T,y;return o1(E3,u(n(n({placeholder:H},b),g.textFieldProps),{error:!!$,InputProps:u(n(n({},b.InputProps),(F=g.textFieldProps)==null?void 0:F.InputProps),{inputRef:S.ref,inputProps:n(n({},b.inputProps),(y=(T=g.textFieldProps)==null?void 0:T.InputProps)==null?void 0:y.inputProps)})}))}}),e),o1(I,{name:e})]})})},I3=$3(G3);export{I3 as Autocomplete,C2 as Checkbox,V2 as Creatable,p3 as DatePicker,F0 as Form,C1 as FormProvider,R2 as RadioButton,j2 as RadioGroup,t2 as Searchable,K0 as Select,X2 as Slider,D2 as Switch,B0 as TextField,S3 as TimePicker,P1 as useForm};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@s_mart/form",
3
- "version": "3.2.2",
3
+ "version": "3.3.1",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",