@solfacil/girassol 0.1.3 → 0.1.7

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.
Files changed (62) hide show
  1. package/.vscode/extensions.json +4 -2
  2. package/.vscode/settings.json +9 -0
  3. package/README.md +1 -1
  4. package/cli/package.json +2 -12
  5. package/cli/src/commands/create:component.ts +91 -0
  6. package/cli/src/commands/generate:plugin.ts +1 -1
  7. package/cli/src/commands/generate:types.ts +1 -1
  8. package/cli/src/commands/girassol.ts +1 -1
  9. package/cli/src/extensions/cli-extension.ts +1 -1
  10. package/cli/src/templates/components/component.spec.ts.ejs +20 -0
  11. package/cli/src/templates/components/component.stories.mdx.ejs +74 -0
  12. package/cli/src/templates/components/component.vue.ejs +23 -0
  13. package/cli/src/templates/components/index.ts.ejs +10 -0
  14. package/cli/yarn.lock +31 -2860
  15. package/dist/girassol.es.js +1119 -136
  16. package/dist/girassol.umd.js +5 -5
  17. package/dist/style.css +1 -1
  18. package/dist/theme/solfacil/colors.d.ts +2 -2
  19. package/dist/theme/solfacil/index.d.ts +3 -0
  20. package/dist/theme/solfacil/utilities.d.ts +3 -0
  21. package/dist/types/components/dropdown/Dropdown.vue.d.ts +77 -0
  22. package/dist/types/components/dropdown/dropdown.spec.d.ts +1 -0
  23. package/dist/types/components/dropdown/index.d.ts +2 -0
  24. package/dist/types/components/forms/button/Button.vue.d.ts +4 -4
  25. package/dist/types/components/forms/checkbox/CheckboxGroup.vue.d.ts +2 -2
  26. package/dist/types/components/forms/checkbox/checkbox-type.d.ts +2 -2
  27. package/dist/types/components/forms/checkbox/index.d.ts +1 -1
  28. package/dist/types/components/forms/input/Input.vue.d.ts +3 -1
  29. package/dist/types/components/forms/input/index.d.ts +1 -1
  30. package/dist/types/components/forms/radio/RadioGroup.vue.d.ts +2 -2
  31. package/dist/types/components/forms/radio/index.d.ts +1 -1
  32. package/dist/types/components/forms/radio/radio-type.d.ts +2 -2
  33. package/dist/types/components/forms/select/Select.vue.d.ts +53 -0
  34. package/dist/types/components/forms/select/index.d.ts +2 -0
  35. package/dist/types/components/forms/select/select.spec.d.ts +1 -0
  36. package/dist/types/components/forms/switch/index.d.ts +1 -1
  37. package/dist/types/components/forms/textarea/Textarea.vue.d.ts +50 -0
  38. package/dist/types/components/forms/textarea/index.d.ts +2 -0
  39. package/dist/types/components/forms/textarea/textarea.spec.d.ts +1 -0
  40. package/dist/types/components/forms/textfield/Textfield.vue.d.ts +5 -5
  41. package/dist/types/components/forms/textfield/index.d.ts +1 -1
  42. package/dist/types/composables/use-toast/Toast.vue.d.ts +66 -0
  43. package/dist/types/composables/use-toast/index.d.ts +9 -0
  44. package/dist/types/composables/use-toast/types.d.ts +23 -0
  45. package/dist/types/composables/use-toast/use-toast.spec.d.ts +1 -0
  46. package/dist/types/composables/use-toast/useTimer.d.ts +9 -0
  47. package/dist/types/composables/use-toast/useTransition.d.ts +57 -0
  48. package/dist/types/index.d.ts +5 -1
  49. package/dist/vite.config.d.ts +1 -1
  50. package/dist/windi.config.d.ts +1 -1
  51. package/package.json +67 -35
  52. package/theme/solfacil/borders.ts +2 -2
  53. package/theme/solfacil/colors.ts +4 -4
  54. package/theme/solfacil/effects.ts +3 -3
  55. package/theme/solfacil/index.ts +5 -2
  56. package/theme/solfacil/miscs.ts +2 -2
  57. package/theme/solfacil/spacing.ts +1 -1
  58. package/theme/solfacil/typography.ts +2 -2
  59. package/theme/solfacil/utilities.ts +88 -3
  60. package/vite.config.ts +16 -4
  61. package/windi.config.ts +7 -4
  62. package/cli/__tests__/cli-integration.test.ts +0 -29
@@ -1,5 +1,5 @@
1
- (function(c,t){typeof exports=="object"&&typeof module!="undefined"?t(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],t):(c=typeof globalThis!="undefined"?globalThis:c||self,t(c.girassol={},c.Vue))})(this,function(c,t){"use strict";var de="";const N=["data-testid"],x={class:"icon -left"},z={class:"icon -right"},k=t.defineComponent({props:{variant:{default:"primary"},dense:{type:Boolean,default:!1},invert:{type:Boolean,default:!1},id:null},setup(e){function n(u,r){return u?r:""}const l=t.useSlots(),i=t.computed(()=>!!(l==null?void 0:l.default)&&(!!(l==null?void 0:l["icon-right"])||!!(l==null?void 0:l["icon-left"]))),s=t.computed(()=>!(l==null?void 0:l.default)&&(!!(l==null?void 0:l["icon-right"])||!!(l==null?void 0:l["icon-left"])));return(u,r)=>(t.openBlock(),t.createElementBlock("button",{"data-testid":`button-${e.id}`,class:t.normalizeClass(["sol-button-core",`-${e.variant}
2
- ${n(e.dense,"-dense")} ${n(e.invert,"-invert")}
3
- ${n(t.unref(i),"-has-icon")}
4
- ${n(t.unref(s),"-only-icon")}
5
- `]),type:"button"},[t.createElementVNode("div",x,[t.renderSlot(u.$slots,"icon-left")]),t.renderSlot(u.$slots,"default"),t.createElementVNode("div",z,[t.renderSlot(u.$slots,"icon-right")])],10,N))}});k.install=e=>{e.component("SolButton",k)};var ce="";const D=["id","data-testid","value"],f=t.defineComponent({props:{id:null,modelValue:null,invert:{type:Boolean},error:{type:Boolean}},emits:["update:modelValue"],setup(e,{emit:n}){function l({target:i}){const{value:s}=i;n("update:modelValue",s)}return(i,s)=>(t.openBlock(),t.createElementBlock("input",{id:`input-${e.id}`,"data-testid":`input-${e.id}`,value:e.modelValue,class:t.normalizeClass(["sol-input-core",{"-invert":e.invert,"-error":e.error}]),onInput:l},null,42,D))}});f.install=e=>{e.component("SolInput",f)};var re="";const T=["id","data-testid"],M=["for"],R={class:"container-input"},I=["id"],P=["id"],$=t.defineComponent({props:{id:null,class:null,modelValue:{default:""},label:{default:"label"},hint:null,invert:{type:Boolean},error:null},emits:["update:modelValue"],setup(e,{emit:n}){const l=e,i=t.computed({get:()=>l.modelValue,set:r=>{n("update:modelValue",r)}});function s(r,o){return!!r&&!o}function u(r,o){return o?`error-${l.id}`:s(r,o)?`hint-${l.id}`:null}return(r,o)=>{var a;return t.openBlock(),t.createElementBlock("div",{id:`textfield-${e.id}`,"data-testid":`textfield-${e.id}`,class:t.normalizeClass([[`${(a=r.$props.class)!=null?a:""}`,{"-invert":e.invert}],"sol-textfield-core"])},[t.renderSlot(r.$slots,"label",{},()=>[e.label?(t.openBlock(),t.createElementBlock("label",{key:0,for:`input-${e.id}`,class:"label"},[t.createElementVNode("span",null,t.toDisplayString(e.label),1)],8,M)):t.createCommentVNode("",!0)]),t.createElementVNode("div",R,[t.renderSlot(r.$slots,"default",{},()=>[t.createVNode(f,t.mergeProps(r.$attrs,{modelValue:t.unref(i),"onUpdate:modelValue":o[0]||(o[0]=d=>t.isRef(i)?i.value=d:null),id:e.id,"data-testid":`input-${e.id}`,class:[e.error&&"-error","input"],invert:e.invert,"aria-invalid":!!e.error,"aria-describedby":u(e.hint,e.error)}),null,16,["modelValue","id","data-testid","class","invert","aria-invalid","aria-describedby"])]),t.renderSlot(r.$slots,"icon")]),s(e.hint,e.error)?(t.openBlock(),t.createElementBlock("span",{key:0,id:`hint-${e.id}`,class:"hint"},t.toDisplayString(e.hint),9,I)):e.error?(t.openBlock(),t.createElementBlock("span",{key:1,id:`error-${e.id}`,class:"error"},t.toDisplayString(e.error),9,P)):t.createCommentVNode("",!0)],10,T)}}}),G={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},L=[t.createElementVNode("g",{fill:"currentColor"},[t.createElementVNode("path",{d:"M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0z"}),t.createElementVNode("path",{d:"M21.894 11.553C19.736 7.236 15.904 5 12 5c-3.903 0-7.736 2.236-9.894 6.553a1 1 0 0 0 0 .894C4.264 16.764 8.096 19 12 19c3.903 0 7.736-2.236 9.894-6.553a1 1 0 0 0 0-.894zM12 17c-2.969 0-6.002-1.62-7.87-5C5.998 8.62 9.03 7 12 7c2.969 0 6.002 1.62 7.87 5c-1.868 3.38-4.901 5-7.87 5z"})],-1)];function A(e,n){return t.openBlock(),t.createElementBlock("svg",G,L)}var F={name:"mi-eye",render:A};const H={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},U=[t.createElementVNode("path",{fill:"currentColor",d:"M4.707 3.293a1 1 0 0 0-1.414 1.414l2.424 2.424c-1.43 1.076-2.678 2.554-3.611 4.422a1 1 0 0 0 0 .894C4.264 16.764 8.096 19 12 19c1.555 0 3.1-.355 4.53-1.055l2.763 2.762a1 1 0 0 0 1.414-1.414l-16-16zm10.307 13.135c-.98.383-2 .572-3.014.572c-2.969 0-6.002-1.62-7.87-5c.817-1.479 1.858-2.62 3.018-3.437l2.144 2.144a3 3 0 0 0 4.001 4.001l1.72 1.72zm3.538-2.532c.483-.556.926-1.187 1.318-1.896c-1.868-3.38-4.9-5-7.87-5c-.112 0-.224.002-.336.007L9.879 5.223A10.215 10.215 0 0 1 12 5c3.903 0 7.736 2.236 9.894 6.553a1 1 0 0 1 0 .894a13.106 13.106 0 0 1-1.925 2.865l-1.417-1.416z"},null,-1)];function O(e,n){return t.openBlock(),t.createElementBlock("svg",H,U)}var j={name:"mi-eye-off",render:O};const q=["aria-label"],g=t.defineComponent({props:{id:{default:""},label:{default:"Sua senha"}},setup(e){const n=t.ref(!1),l=t.computed(()=>n.value?"text":"password");return(i,s)=>(t.openBlock(),t.createBlock($,{id:e.id,required:"",type:t.unref(l),label:e.label,placeholder:"Insira sua senha"},{icon:t.withCtx(()=>[t.createElementVNode("button",{type:"button","data-testid":"toggle-type-password","aria-label":n.value?"Hide password":"Show password",onClick:s[0]||(s[0]=u=>n.value=!n.value)},[t.withDirectives(t.createVNode(t.unref(F),{"aria-hidden":"true"},null,512),[[t.vShow,n.value]]),t.withDirectives(t.createVNode(t.unref(j),{"aria-hidden":"true"},null,512),[[t.vShow,!n.value]])],8,q)]),_:1},8,["id","type","label"]))}});$.install=e=>{e.component("SolTextfield",$)},g.install=e=>{e.component("SolTextfieldPassword",g)};var ue="";const Y=["id","data-testid","checked","value","name"],W=["for"],b=t.defineComponent({props:{id:null,name:null,value:null,label:null,checked:null,class:null},emits:["change"],setup(e,{emit:n}){return(l,i)=>(t.openBlock(),t.createElementBlock("div",{class:t.normalizeClass(["sol-radio-core",e.class])},[t.createElementVNode("input",t.mergeProps(l.$attrs,{type:"radio",class:"radio",id:`radio-${e.name}-${e.id}`,"data-testid":`radio-${e.name}-${e.id}`,checked:e.checked,value:e.value,name:e.name,onChange:i[0]||(i[0]=s=>n("change",e.value))}),null,16,Y),t.createElementVNode("label",{class:"label",for:`radio-${e.name}-${e.id}`},t.toDisplayString(e.label),9,W)],2))}});var he="";const J=["aria-labelledby"],K=["id","data-testid"],Q=["id"],X=["id"],B=t.defineComponent({props:{id:null,title:null,hideTitle:{type:Boolean,default:!1},hint:null,error:null,radios:null,modelValue:null,direction:{default:"row"}},emits:["change","update:modelValue"],setup(e,{emit:n}){const l=e;function i(o,a){return!!o&&!a}function s(o,a){return a?`error-${l.id}`:i(o,a)?`hint-${l.id}`:null}function u(o){return(l==null?void 0:l.modelValue)===o}function r(o){n("change",o.value),n("update:modelValue",o.value)}return(o,a)=>(t.openBlock(),t.createElementBlock("fieldset",{class:"sol-radio-group-core","aria-labelledby":`radio-group-title-${e.id}`},[t.renderSlot(o.$slots,"title",{id:`radio-group-title-${e.id}`},()=>[t.createElementVNode("legend",{class:t.normalizeClass(["title",{"sr-only":e.hideTitle}]),id:`radio-group-title-${e.id}`,"data-testid":`radio-group-title-${e.id}`},t.toDisplayString(e.title),11,K)]),t.createElementVNode("ul",{class:t.normalizeClass(["container-radios",{"flex-col":e.direction==="column"}])},[t.renderSlot(o.$slots,"default",{radios:e.radios,direction:e.direction},()=>[(t.openBlock(!0),t.createElementBlock(t.Fragment,null,t.renderList(e.radios,(d,m)=>{var h;return t.openBlock(),t.createElementBlock("li",{key:m},[t.createVNode(b,t.mergeProps(o.$attrs,{class:["radio",{"mb-micro":e.direction==="column","mr-micro":e.direction==="row"}],id:(h=d==null?void 0:d.id)!=null?h:`${d.value}`,name:d.name,value:d.value,label:d.label,checked:u(d.value),"aria-invalid":!!e.error,"aria-describedby":s(e.hint,e.error),onChange:w=>r(d)}),null,16,["class","id","name","value","label","checked","aria-invalid","aria-describedby","onChange"])])}),128))])],2),i(e.hint,e.error)?(t.openBlock(),t.createElementBlock("p",{key:0,id:`hint-${e.id}`,class:"hint"},t.toDisplayString(e.hint),9,Q)):e.error?(t.openBlock(),t.createElementBlock("p",{key:1,id:`error-${e.id}`,class:"error"},t.toDisplayString(e.error),9,X)):t.createCommentVNode("",!0)],8,J))}});b.install=e=>{e.component("SolRadio",b)},B.install=e=>{e.component("SolRadioGroup",B)};var fe="";const Z=["id","data-testid","checked","value","name"],v=["for"],y=t.defineComponent({props:{id:null,name:null,value:null,label:null,checked:null,class:null},emits:["change"],setup(e,{emit:n}){return(l,i)=>(t.openBlock(),t.createElementBlock("div",{class:t.normalizeClass(["sol-checkbox-core",e.class])},[t.createElementVNode("input",t.mergeProps(l.$attrs,{type:"checkbox",class:"checkbox",id:`checkbox-${e.name}-${e.id}`,"data-testid":`checkbox-${e.name}-${e.id}`,checked:e.checked,value:e.value,name:e.name,onChange:i[0]||(i[0]=s=>n("change",e.value))}),null,16,Z),t.createElementVNode("label",{class:"label",for:`checkbox-${e.name}-${e.id}`},t.toDisplayString(e.label),9,v)],2))}});var $e="";const p=["aria-labelledby"],_=["id","data-testid"],ee=["id"],te=["id"],S=t.defineComponent({props:{id:null,title:null,hideTitle:{type:Boolean,default:!1},hint:null,error:null,checkboxes:null,modelValue:null,direction:{default:"row"}},emits:["change","update:modelValue"],setup(e,{emit:n}){const l=e;function i(a,d){return!!a&&!d}function s(a,d){return d?`error-${l.id}`:i(a,d)?`hint-${l.id}`:null}function u(a){var d;return(d=l==null?void 0:l.modelValue)==null?void 0:d.includes(a)}function r(a){return Array.isArray(l==null?void 0:l.modelValue)?[...l.modelValue,a]:[a]}function o(a){var m;n("change",a.value);const d=u(a.value)?(m=l.modelValue)==null?void 0:m.filter(h=>h!==a.value):r(a.value);n("update:modelValue",d)}return(a,d)=>(t.openBlock(),t.createElementBlock("fieldset",{role:"group",class:"sol-checkbox-group-core","aria-labelledby":`checkbox-group-title-${e.id}`},[t.renderSlot(a.$slots,"title",{id:`checkbox-group-title-${e.id}`},()=>[t.createElementVNode("legend",{class:t.normalizeClass(["title",{"sr-only":e.hideTitle}]),id:`checkbox-group-title-${e.id}`,"data-testid":`checkbox-group-title-${e.id}`},t.toDisplayString(e.title),11,_)]),t.createElementVNode("ul",{class:t.normalizeClass(["container-checkboxes",{"flex-col":e.direction==="column"}])},[t.renderSlot(a.$slots,"default",{checkboxes:e.checkboxes,direction:e.direction},()=>[(t.openBlock(!0),t.createElementBlock(t.Fragment,null,t.renderList(e.checkboxes,(m,h)=>{var w;return t.openBlock(),t.createElementBlock("li",{key:h},[t.createVNode(y,t.mergeProps(a.$attrs,{class:["checkbox",{"mb-micro":e.direction==="column","mr-micro":e.direction==="row"}],id:(w=m==null?void 0:m.id)!=null?w:`${m.value}`,label:m.label,name:m.name,value:m.value,checked:u(m.value),"aria-invalid":!!e.error,"aria-describedby":s(e.hint,e.error),onChange:Se=>o(m)}),null,16,["class","id","label","name","value","checked","aria-invalid","aria-describedby","onChange"])])}),128))])],2),i(e.hint,e.error)?(t.openBlock(),t.createElementBlock("p",{key:0,id:`hint-${e.id}`,class:"hint"},t.toDisplayString(e.hint),9,ee)):e.error?(t.openBlock(),t.createElementBlock("p",{key:1,id:`error-${e.id}`,class:"error"},t.toDisplayString(e.error),9,te)):t.createCommentVNode("",!0)],8,p))}});y.install=e=>{e.component("SolCheckbox",y)},S.install=e=>{e.component("SolCheckboxGroup",S)};var be="";const le=["for","id","data-testid"],ne={class:"switch-container"},ae=["id","aria-labelledby","data-testid","checked","value","name"],ie=t.createElementVNode("span",{class:"ellipse"},null,-1),V=t.defineComponent({props:{id:null,name:null,value:null,label:null,checked:{type:Boolean},class:null,hideLabel:{type:Boolean},horizontalLabel:{type:Boolean}},emits:["change"],setup(e,{emit:n}){return(l,i)=>(t.openBlock(),t.createElementBlock("div",{class:t.normalizeClass(["sol-switch-core",[l.$props.class,{"-horizontal":e.horizontalLabel}]])},[t.createElementVNode("label",{class:t.normalizeClass(["label",{"mb-1":!e.horizontalLabel,"sr-only":e.hideLabel}]),for:`switch-${e.name}-${e.id}`,id:`switch-label-${e.name}-${e.id}`,"data-testid":`switch-label-${e.name}-${e.id}`},t.toDisplayString(e.label),11,le),t.createElementVNode("div",ne,[t.createElementVNode("input",t.mergeProps(l.$attrs,{type:"checkbox",class:"switch",role:"switch",id:`switch-${e.name}-${e.id}`,"aria-labelledby":`switch-label-${e.name}-${e.id}`,"data-testid":`switch-${e.name}-${e.id}`,checked:e.checked,value:e.value,name:e.name,onChange:i[0]||(i[0]=s=>n("change",e.value))}),null,16,ae),ie])],2))}});V.install=e=>{e.component("SolSwitch",V)};var ye="",ke="",ge="",Be="";console.log("%c\u{1F33B}[Girassol]\u{1F33B}","padding: 8px;background: #212121;color: gold; font-family: 'Fira code'; font-weight: bold; font-size: 1.2rem");const C={SolButton:k,SolInput:f,SolTextfield:$,SolTextfieldPassword:g,SolRadio:b,SolRadioGroup:B,SolCheckbox:y,SolCheckboxGroup:S,SolSwitch:V};function oe(e){for(const n in C)e.component(n,C[n])}const E=[];for(const e in C)E.push(e);c.SolButton=k,c.SolCheckbox=y,c.SolCheckboxGroup=S,c.SolInput=f,c.SolRadio=b,c.SolRadioGroup=B,c.SolSwitch=V,c.SolTextfield=$,c.SolTextfieldPassword=g,c.componentsNames=E,c.install=oe,Object.defineProperty(c,"__esModule",{value:!0}),c[Symbol.toStringTag]="Module"});
1
+ (function(m,e){typeof exports=="object"&&typeof module!="undefined"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(m=typeof globalThis!="undefined"?globalThis:m||self,e(m.girassol={},m.Vue))})(this,function(m,e){"use strict";var qt=Object.defineProperty,Jt=Object.defineProperties;var Qt=Object.getOwnPropertyDescriptors;var le=Object.getOwnPropertySymbols;var Xt=Object.prototype.hasOwnProperty,Zt=Object.prototype.propertyIsEnumerable;var oe=(m,e,w)=>e in m?qt(m,e,{enumerable:!0,configurable:!0,writable:!0,value:w}):m[e]=w,D=(m,e)=>{for(var w in e||(e={}))Xt.call(e,w)&&oe(m,w,e[w]);if(le)for(var w of le(e))Zt.call(e,w)&&oe(m,w,e[w]);return m},Q=(m,e)=>Jt(m,Qt(e));var w="";const ae=["data-testid"],ie={class:"icon -left"},re={class:"icon -right"},P=e.defineComponent({name:"Button",props:{variant:{default:"primary"},dense:{type:Boolean,default:!1},invert:{type:Boolean,default:!1},id:null},setup(t){function l(i,r){return i?r:""}const n=e.useSlots(),o=e.computed(()=>!!(n!=null&&n.default)&&(!!(n!=null&&n["icon-right"])||!!(n!=null&&n["icon-left"]))),a=e.computed(()=>!(n!=null&&n.default)&&(!!(n!=null&&n["icon-right"])||!!(n!=null&&n["icon-left"])));return(i,r)=>(e.openBlock(),e.createElementBlock("button",{"data-testid":`button-${t.id}`,class:e.normalizeClass(["sol-button-core",`-${t.variant}
2
+ ${l(t.dense,"-dense")} ${l(t.invert,"-invert")}
3
+ ${l(e.unref(o),"-has-icon")}
4
+ ${l(e.unref(a),"-only-icon")}
5
+ `]),type:"button"},[e.createElementVNode("div",ie,[e.renderSlot(i.$slots,"icon-left")]),e.renderSlot(i.$slots,"default"),e.createElementVNode("div",re,[e.renderSlot(i.$slots,"icon-right")])],10,ae))}});P.install=t=>{t.component("SolButton",P)};var vt="";const de=["id","data-testid","value"],p=e.defineComponent({name:"Input",props:{id:null,modelValue:null,invert:{type:Boolean},error:{type:Boolean}},emits:["update:modelValue"],setup(t,{expose:l,emit:n}){function o({target:i}){var r;n("update:modelValue",(r=i==null?void 0:i.value)!=null?r:"")}const a=e.ref("");return l({input:a}),(i,r)=>(e.openBlock(),e.createElementBlock("input",{id:`input-${t.id}`,ref_key:"input",ref:a,"data-testid":`input-${t.id}`,value:t.modelValue,class:e.normalizeClass(["sol-input-core",{"-invert":t.invert,"-error":t.error}]),onInput:o},null,42,de))}});p.install=t=>{t.component("SolInput",p)};var _t="";const ce=["id","data-testid"],se=["for"],me={class:"container-input"},he=["id"],ue=["id"],E=e.defineComponent({name:"Textfield",props:{id:null,class:null,modelValue:{default:""},label:{default:"label"},hint:null,invert:{type:Boolean},error:null},emits:["update:modelValue"],setup(t,{emit:l}){const n=t,o=e.computed({get:()=>n.modelValue,set:r=>{l("update:modelValue",r)}});function a(r,d){return!!r&&!d}function i(r,d){return d?`error-${n.id}`:a(r,d)?`hint-${n.id}`:null}return(r,d)=>{var c;return e.openBlock(),e.createElementBlock("div",{id:`textfield-${t.id}`,"data-testid":`textfield-${t.id}`,class:e.normalizeClass([[`${(c=r.$props.class)!=null?c:""}`,{"-invert":t.invert}],"sol-textfield-core"])},[e.renderSlot(r.$slots,"label",{},()=>[t.label?(e.openBlock(),e.createElementBlock("label",{key:0,for:`input-${t.id}`,class:"label"},[e.createElementVNode("span",null,e.toDisplayString(t.label),1)],8,se)):e.createCommentVNode("",!0)]),e.createElementVNode("div",me,[e.renderSlot(r.$slots,"default",{},()=>[e.createVNode(p,e.mergeProps(r.$attrs,{id:t.id,modelValue:e.unref(o),"onUpdate:modelValue":d[0]||(d[0]=s=>e.isRef(o)?o.value=s:null),"data-testid":`input-${t.id}`,class:[t.error&&"-error","input"],invert:t.invert,"aria-invalid":!!t.error,"aria-describedby":i(t.hint,t.error)}),null,16,["id","modelValue","data-testid","class","invert","aria-invalid","aria-describedby"])]),e.renderSlot(r.$slots,"icon")]),a(t.hint,t.error)?(e.openBlock(),e.createElementBlock("span",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,he)):t.error?(e.openBlock(),e.createElementBlock("span",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,ue)):e.createCommentVNode("",!0)],10,ce)}}}),fe={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},$e=[e.createElementVNode("g",{fill:"currentColor"},[e.createElementVNode("path",{d:"M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0z"}),e.createElementVNode("path",{d:"M21.894 11.553C19.736 7.236 15.904 5 12 5c-3.903 0-7.736 2.236-9.894 6.553a1 1 0 0 0 0 .894C4.264 16.764 8.096 19 12 19c3.903 0 7.736-2.236 9.894-6.553a1 1 0 0 0 0-.894zM12 17c-2.969 0-6.002-1.62-7.87-5C5.998 8.62 9.03 7 12 7c2.969 0 6.002 1.62 7.87 5c-1.868 3.38-4.901 5-7.87 5z"})],-1)];function be(t,l){return e.openBlock(),e.createElementBlock("svg",fe,$e)}var ge={name:"mi-eye",render:be};const ye={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},ke=[e.createElementVNode("path",{fill:"currentColor",d:"M4.707 3.293a1 1 0 0 0-1.414 1.414l2.424 2.424c-1.43 1.076-2.678 2.554-3.611 4.422a1 1 0 0 0 0 .894C4.264 16.764 8.096 19 12 19c1.555 0 3.1-.355 4.53-1.055l2.763 2.762a1 1 0 0 0 1.414-1.414l-16-16zm10.307 13.135c-.98.383-2 .572-3.014.572c-2.969 0-6.002-1.62-7.87-5c.817-1.479 1.858-2.62 3.018-3.437l2.144 2.144a3 3 0 0 0 4.001 4.001l1.72 1.72zm3.538-2.532c.483-.556.926-1.187 1.318-1.896c-1.868-3.38-4.9-5-7.87-5c-.112 0-.224.002-.336.007L9.879 5.223A10.215 10.215 0 0 1 12 5c3.903 0 7.736 2.236 9.894 6.553a1 1 0 0 1 0 .894a13.106 13.106 0 0 1-1.925 2.865l-1.417-1.416z"},null,-1)];function we(t,l){return e.openBlock(),e.createElementBlock("svg",ye,ke)}var Be={name:"mi-eye-off",render:we};const Se=["aria-label"],I=e.defineComponent({name:"TextfieldPassword",props:{id:{default:""},label:{default:"Sua senha"}},setup(t){const l=e.ref(!1),n=e.computed(()=>l.value?"text":"password");return(o,a)=>(e.openBlock(),e.createBlock(E,{id:t.id,required:"",type:e.unref(n),label:t.label,placeholder:"Insira sua senha"},{icon:e.withCtx(()=>[e.createElementVNode("button",{type:"button","data-testid":"toggle-type-password","aria-label":l.value?"Hide password":"Show password",onClick:a[0]||(a[0]=i=>l.value=!l.value)},[e.withDirectives(e.createVNode(e.unref(ge),{"aria-hidden":"true"},null,512),[[e.vShow,l.value]]),e.withDirectives(e.createVNode(e.unref(Be),{"aria-hidden":"true"},null,512),[[e.vShow,!l.value]])],8,Se)]),_:1},8,["id","type","label"]))}});E.install=t=>{t.component("SolTextfield",E)},I.install=t=>{t.component("SolTextfieldPassword",I)};var nn="";const pe=["id","data-testid"],Ce=["for"],Ve={class:"container-textarea"},Ee=["id","data-testid","invert","aria-invalid","aria-describedby"],Ne=["id"],xe=["id"],L=e.defineComponent({name:"Textarea",props:{id:null,class:null,modelValue:{default:""},label:{default:"label"},hint:null,invert:{type:Boolean},resize:{default:"both"},error:null},emits:["update:modelValue"],setup(t,{emit:l}){const n=t,o=e.computed({get:()=>n.modelValue,set:r=>{l("update:modelValue",r)}});function a(r,d){return!!r&&!d}function i(r,d){return d?`error-${n.id}`:a(r,d)?`hint-${n.id}`:null}return(r,d)=>{var c;return e.openBlock(),e.createElementBlock("div",{id:`textarea-${t.id}`,"data-testid":`textarea-${t.id}`,class:e.normalizeClass([[`${(c=r.$props.class)!=null?c:""}`,{"-invert":t.invert}],"sol-textarea-core"])},[e.renderSlot(r.$slots,"label",{},()=>[t.label?(e.openBlock(),e.createElementBlock("label",{key:0,for:`input-${t.id}`,class:"label"},[e.createElementVNode("span",null,e.toDisplayString(t.label),1)],8,Ce)):e.createCommentVNode("",!0)]),e.createElementVNode("div",Ve,[e.renderSlot(r.$slots,"default",{},()=>[e.withDirectives(e.createElementVNode("textarea",e.mergeProps(r.$attrs,{id:`input-${t.id}`,"onUpdate:modelValue":d[0]||(d[0]=s=>e.isRef(o)?o.value=s:null),"data-testid":`input-${t.id}`,class:[t.error&&"-error","textarea"],invert:t.invert,style:{resize:t.resize},"aria-invalid":!!t.error,"aria-describedby":i(t.hint,t.error)}),null,16,Ee),[[e.vModelText,e.unref(o)]])])]),a(t.hint,t.error)?(e.openBlock(),e.createElementBlock("span",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,Ne)):t.error?(e.openBlock(),e.createElementBlock("span",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,xe)):e.createCommentVNode("",!0)],10,pe)}}});L.install=t=>{t.component("SolTextarea",L)};var ln="";const ze=["id","data-testid","checked","value","name"],Te=["for"],N=e.defineComponent({name:"Radio",props:{id:null,name:null,value:null,label:null,checked:null,class:null},emits:["change"],setup(t,{emit:l}){return(n,o)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sol-radio-core",n.$props.class])},[e.createElementVNode("input",e.mergeProps(n.$attrs,{id:`radio-${t.name}-${t.id}`,type:"radio",class:"radio","data-testid":`radio-${t.name}-${t.id}`,checked:t.checked,value:t.value,name:t.name,onChange:o[0]||(o[0]=a=>l("change",t.value))}),null,16,ze),e.createElementVNode("label",{class:"label",for:`radio-${t.name}-${t.id}`},e.toDisplayString(t.label),9,Te)],2))}});var on="";const Me=["aria-labelledby"],De=["id","data-testid"],Pe=["id"],Ie=["id"],A=e.defineComponent({name:"RadioGroup",props:{id:null,title:null,hideTitle:{type:Boolean,default:!1},hint:null,error:null,radios:null,modelValue:null,direction:{default:"row"}},emits:["change","update:modelValue"],setup(t,{emit:l}){const n=t;function o(d,c){return!!d&&!c}function a(d,c){return c?`error-${n.id}`:o(d,c)?`hint-${n.id}`:null}function i(d){return(n==null?void 0:n.modelValue)===d}function r(d){l("change",d.value),l("update:modelValue",d.value)}return(d,c)=>(e.openBlock(),e.createElementBlock("fieldset",{class:"sol-radio-group-core","aria-labelledby":`radio-group-title-${t.id}`},[e.renderSlot(d.$slots,"title",{id:`radio-group-title-${t.id}`},()=>[e.createElementVNode("legend",{id:`radio-group-title-${t.id}`,class:e.normalizeClass(["title",{"sr-only":t.hideTitle}]),"data-testid":`radio-group-title-${t.id}`},e.toDisplayString(t.title),11,De)]),e.createElementVNode("ul",{class:e.normalizeClass(["container-radios",{"flex-col":t.direction==="column"}])},[e.renderSlot(d.$slots,"default",{radios:t.radios,direction:t.direction},()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.radios,(s,u)=>{var b;return e.openBlock(),e.createElementBlock("li",{key:u},[e.createVNode(N,e.mergeProps(d.$attrs,{id:(b=s==null?void 0:s.id)!=null?b:`${s.value}`,class:["radio",{"mb-micro":t.direction==="column","mr-micro":t.direction==="row"}],name:s.name,value:s.value,label:s.label,checked:i(s.value),"aria-invalid":!!t.error,"aria-describedby":a(t.hint,t.error),onChange:g=>r(s)}),null,16,["id","class","name","value","label","checked","aria-invalid","aria-describedby","onChange"])])}),128))])],2),o(t.hint,t.error)?(e.openBlock(),e.createElementBlock("p",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,Pe)):t.error?(e.openBlock(),e.createElementBlock("p",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,Ie)):e.createCommentVNode("",!0)],8,Me))}});N.install=t=>{t.component("SolRadio",N)},A.install=t=>{t.component("SolRadioGroup",A)};var an="";const Le=["id","data-testid","checked","value","name"],Ae=["for"],x=e.defineComponent({name:"Checkbox",props:{id:null,name:null,value:null,label:null,checked:null,class:null},emits:["change"],setup(t,{emit:l}){return(n,o)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sol-checkbox-core",n.$props.class])},[e.createElementVNode("input",e.mergeProps(n.$attrs,{id:`checkbox-${t.name}-${t.id}`,type:"checkbox",class:"checkbox","data-testid":`checkbox-${t.name}-${t.id}`,checked:t.checked,value:t.value,name:t.name,onChange:o[0]||(o[0]=a=>l("change",t.value))}),null,16,Le),e.createElementVNode("label",{class:"label",for:`checkbox-${t.name}-${t.id}`},e.toDisplayString(t.label),9,Ae)],2))}});var rn="";const Oe=["aria-labelledby"],Re=["id","data-testid"],He=["id"],Fe=["id"],O=e.defineComponent({name:"CheckboxGroup",props:{id:null,title:null,hideTitle:{type:Boolean,default:!1},hint:null,error:null,checkboxes:null,modelValue:null,direction:{default:"row"}},emits:["change","update:modelValue"],setup(t,{emit:l}){const n=t;function o(c,s){return!!c&&!s}function a(c,s){return s?`error-${n.id}`:o(c,s)?`hint-${n.id}`:null}function i(c){var s;return(s=n==null?void 0:n.modelValue)==null?void 0:s.includes(c)}function r(c){return Array.isArray(n==null?void 0:n.modelValue)?[...n.modelValue,c]:[c]}function d(c){var u;l("change",c.value);const s=i(c.value)?(u=n.modelValue)==null?void 0:u.filter(b=>b!==c.value):r(c.value);l("update:modelValue",s)}return(c,s)=>(e.openBlock(),e.createElementBlock("fieldset",{class:"sol-checkbox-group-core","aria-labelledby":`checkbox-group-title-${t.id}`},[e.renderSlot(c.$slots,"title",{id:`checkbox-group-title-${t.id}`},()=>[e.createElementVNode("legend",{id:`checkbox-group-title-${t.id}`,class:e.normalizeClass(["title",{"sr-only":t.hideTitle}]),"data-testid":`checkbox-group-title-${t.id}`},e.toDisplayString(t.title),11,Re)]),e.createElementVNode("ul",{class:e.normalizeClass(["container-checkboxes",{"flex-col":t.direction==="column"}])},[e.renderSlot(c.$slots,"default",{checkboxes:t.checkboxes,direction:t.direction},()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.checkboxes,(u,b)=>{var g;return e.openBlock(),e.createElementBlock("li",{key:b},[e.createVNode(x,e.mergeProps(c.$attrs,{id:(g=u==null?void 0:u.id)!=null?g:`${u.value}`,class:["checkbox",{"mb-micro":t.direction==="column","mr-micro":t.direction==="row"}],label:u.label,name:u.name,value:u.value,checked:i(u.value),"aria-invalid":!!t.error,"aria-describedby":a(t.hint,t.error),onChange:S=>d(u)}),null,16,["id","class","label","name","value","checked","aria-invalid","aria-describedby","onChange"])])}),128))])],2),o(t.hint,t.error)?(e.openBlock(),e.createElementBlock("p",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,He)):t.error?(e.openBlock(),e.createElementBlock("p",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,Fe)):e.createCommentVNode("",!0)],8,Oe))}});x.install=t=>{t.component("SolCheckbox",x)},O.install=t=>{t.component("SolCheckboxGroup",O)};var dn="";const Ge=["id","for","data-testid"],Ue={class:"switch-container"},Ke=["id","aria-checked","aria-labelledby","data-testid","checked","value","name"],Ye=e.createElementVNode("span",{class:"ellipse"},null,-1),R=e.defineComponent({name:"Switch",props:{id:null,name:null,value:null,label:null,checked:{type:Boolean},class:null,hideLabel:{type:Boolean},horizontalLabel:{type:Boolean}},emits:["change"],setup(t,{emit:l}){return(n,o)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sol-switch-core",[n.$props.class,{"-horizontal":t.horizontalLabel}]])},[e.createElementVNode("label",{id:`switch-label-${t.name}-${t.id}`,class:e.normalizeClass(["label",{"mb-1":!t.horizontalLabel,"sr-only":t.hideLabel}]),for:`switch-${t.name}-${t.id}`,"data-testid":`switch-label-${t.name}-${t.id}`},e.toDisplayString(t.label),11,Ge),e.createElementVNode("div",Ue,[e.createElementVNode("input",e.mergeProps(n.$attrs,{id:`switch-${t.name}-${t.id}`,type:"checkbox",class:"switch",role:"switch","aria-checked":t.checked,"aria-labelledby":`switch-label-${t.name}-${t.id}`,"data-testid":`switch-${t.name}-${t.id}`,checked:t.checked,value:t.value,name:t.name,onChange:o[0]||(o[0]=a=>l("change",t.value))}),null,16,Ke),Ye])],2))}});R.install=t=>{t.component("SolSwitch",R)};function je(t){return e.getCurrentScope()?(e.onScopeDispose(t),!0):!1}var X;const z=typeof window!="undefined",We=t=>typeof t=="string",K=()=>{};z&&((X=window==null?void 0:window.navigator)==null?void 0:X.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function H(t){var l;const n=e.unref(t);return(l=n==null?void 0:n.$el)!=null?l:n}const Z=z?window:void 0;z&&window.document,z&&window.navigator,z&&window.location;function Y(...t){let l,n,o,a;if(We(t[0])?([n,o,a]=t,l=Z):[l,n,o,a]=t,!l)return K;let i=K;const r=e.watch(()=>H(l),c=>{i(),c&&(c.addEventListener(n,o,a),i=()=>{c.removeEventListener(n,o,a),i=K})},{immediate:!0,flush:"post"}),d=()=>{r(),i()};return je(d),d}function qe(t,l,n={}){const{window:o=Z,ignore:a,capture:i=!0}=n;if(!o)return;const r=e.ref(!0);let d;const c=b=>{o.clearTimeout(d);const g=H(t),S=b.composedPath();!g||g===b.target||S.includes(g)||!r.value||a&&a.length>0&&a.some(B=>{const y=H(B);return y&&(b.target===y||S.includes(y))})||l(b)},s=[Y(o,"click",c,{passive:!0,capture:i}),Y(o,"pointerdown",b=>{const g=H(t);r.value=!!g&&!b.composedPath().includes(g)},{passive:!0}),Y(o,"pointerup",b=>{d=o.setTimeout(()=>c(b),50)},{passive:!0})];return()=>s.forEach(b=>b())}const j=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},W="__vueuse_ssr_handlers__";j[W]=j[W]||{},j[W];const Je={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},Qe=[e.createElementVNode("path",{fill:"currentColor",d:"M10 4a6 6 0 1 0 0 12a6 6 0 0 0 0-12zm-8 6a8 8 0 1 1 14.32 4.906l5.387 5.387a1 1 0 0 1-1.414 1.414l-5.387-5.387A8 8 0 0 1 2 10z"},null,-1)];function Xe(t,l){return e.openBlock(),e.createElementBlock("svg",Je,Qe)}var Ze={name:"mi-search",render:Xe},sn="";const ve=["data-testid"],_e=["id","for"],et=["id","disabled","data-testid","aria-expanded","aria-labelledby","aria-controls","onClick"],tt={class:"dropdown-container"},nt=["id","data-testid","aria-multiselectable","aria-labelledby"],lt=["id","data-testid","selected","aria-selected","onClick","onKeyup"],ot={key:0,class:"no-data"},at=e.createTextVNode(" Sem dados "),T=e.defineComponent({name:"Dropdown",props:{id:null,label:null,disabled:{type:Boolean},loading:{type:Boolean,default:!1},searchable:{type:Boolean,default:!1},closeOnSelect:{type:Boolean,default:!0},fetchOnSearch:{type:Boolean,default:!1},isMultipleSelect:{type:Boolean},searchPlaceholder:null,selected:null,options:{default:()=>[]}},emits:["closeDropdown","search","update:selected"],setup(t,{emit:l}){const n=t,o=e.ref(),a=e.ref(!1),i=e.ref(""),r=e.computed(()=>{var h;return n.fetchOnSearch?n.options:(h=n.options)==null?void 0:h.filter(f=>typeof f=="string"?f.includes(i.value):f.name.includes(i.value))}),d=e.computed(()=>Array.isArray(n.selected)?n.selected.join(", ").trim():n.selected);qe(o,()=>{a.value&&u()});function c(){n.disabled||(a.value?u():s())}function s(){a.value=!0}function u(){Wt(),l("closeDropdown")}function b(h){const f=new Set(n.selected);return f.has(h)?f.delete(h):f.add(h),[...f]}function g(h){const f=typeof h=="string"?h:h.value,$=n.isMultipleSelect?b(f):f;l("update:selected",$),n.closeOnSelect&&!n.isMultipleSelect&&u()}function S(h){return Array.isArray(n.selected)?typeof h=="string"?n.selected.includes(h):n.selected.includes(h.value):typeof h=="string"?h===n.selected:h.value===n.selected}const B=e.reactive({list:void 0,search:void 0}),y=e.reactive({id:"",index:0});function jt({code:h}){const f=k=>{const U=k!=null?k:y.index;k!==void 0&&(y.index=k),setTimeout(()=>{var te,ne;const V=(te=B.list)==null?void 0:te.children[U];y.id=(ne=V==null?void 0:V.id)!=null?ne:"",V==null||V.focus()},0)},$=()=>{var k;n.searchable&&(y.index=0,(k=B==null?void 0:B.search)==null||k.focus())};switch(h){case"ArrowUp":return y.index>0&&(y.index-=1),f();case"ArrowDown":return a.value?(y.index<r.value.length-1&&(y.index+=1),f()):(s(),f(0));case"Home":return f(0);case"End":return f(n.options.length-1);case"Escape":return u();default:!["Enter","NumpadEnter","Space"].includes(h)&&$()}}function Wt(){a.value=!1,y.index=0,i.value=""}function G(h,f){return typeof h=="string"?h:h[f!=null?f:"value"]}return(h,f)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"el",ref:o,class:"sol-dropdown-core","data-testid":`dropdown-${t.id}`,onKeydownPassive:jt},[e.renderSlot(h.$slots,"label",{},()=>[t.label?(e.openBlock(),e.createElementBlock("label",{key:0,id:`label-dropdown-${t.id}`,class:e.normalizeClass(["label",{"-disabled":t.disabled}]),for:`toggle-dropdown-${t.id}`},e.toDisplayString(t.label),11,_e)):e.createCommentVNode("",!0)]),e.createElementVNode("button",{id:`toggle-dropdown-${t.id}`,disabled:t.disabled,"data-testid":`toggle-dropdown-${t.id}`,class:"button-toggle-dropdown toggle-dropdown","aria-haspopup":"listbox","aria-expanded":a.value,"aria-labelledby":`label-dropdown-${t.id}`,"aria-controls":`dropdown-list-${t.id}`,onClick:e.withModifiers(c,["stop"])},[e.renderSlot(h.$slots,"toggle-dropdown",{toggle:{open:s,close:u,toggleDropdown:c},isOpen:a.value,selectedSanitized:e.unref(d),selected:t.selected},()=>[e.createTextVNode(e.toDisplayString(e.unref(d)||"Selecione"),1)])],8,et),e.createVNode(e.Transition,{mode:"out-in",name:"dropdown"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",tt,[t.searchable?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["search-container",{"-loading":t.loading}])},[e.renderSlot(h.$slots,"search",{filter:i.value},()=>[e.createVNode(p,{id:`search-dropdown-${t.id}`,ref:$=>B.search=$==null?void 0:$.input,modelValue:i.value,"onUpdate:modelValue":f[0]||(f[0]=$=>i.value=$),"data-testid":`search-dropdown-${t.id}`,role:"combobox",class:"search","aria-autocomplete":"list",placeholder:t.searchPlaceholder,"aria-expanded":a.value,"aria-haspopup":"listbox","aria-owns":`dropdown-list-${t.id}`,"aria-controls":`dropdown-list-${t.id}`,"aria-activedescendant":y.id,"aria-labelledby":`label-dropdown-${t.id}`,onClick:f[1]||(f[1]=e.withModifiers(()=>{},["stop"])),onInput:f[2]||(f[2]=$=>{var k;return l("search",(k=$.target)==null?void 0:k.value)})},null,8,["id","modelValue","data-testid","placeholder","aria-expanded","aria-owns","aria-controls","aria-activedescendant","aria-labelledby"]),e.createVNode(e.unref(Ze),{"aria-hidden":"true",class:"icon"})])],2)):e.createCommentVNode("",!0),e.createElementVNode("ul",{id:`dropdown-list-${t.id}`,ref:$=>B.list=$,"data-testid":`dropdown-list-${t.id}`,role:"listbox",tabindex:"-1","aria-multiselectable":t.isMultipleSelect,"aria-labelledby":`label-dropdown-${t.id}`,class:"dropdown-list-core"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(r),($,k)=>(e.openBlock(),e.createElementBlock("li",{id:`option-${t.id}-${G($,"value")}`,key:k,"data-testid":`option-${t.id}-${G($,"value")}`,role:"option",tabindex:"-1",class:"dropdown-item",style:e.normalizeStyle(`--item: ${k+1}`),selected:S($),"aria-selected":S($),onClick:U=>g($),onKeyup:[e.withKeys(U=>g($),["enter"]),e.withKeys(U=>g($),["space"])]},[e.renderSlot(h.$slots,"default",{text:G($,"name"),option:$,isSelect:S},()=>[e.createTextVNode(e.toDisplayString(G($,"name")),1)])],44,lt))),128)),e.unref(r).length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("li",ot,[e.renderSlot(h.$slots,"no-data",{},()=>[at])]))],8,nt)],512),[[e.vShow,a.value]])]),_:3})],40,ve))}});T.install=t=>{t.component("SolDropdown",T)};const it={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},rt=[e.createElementVNode("path",{fill:"currentColor",d:"m17 10l-5 6l-5-6h10z"},null,-1)];function dt(t,l){return e.openBlock(),e.createElementBlock("svg",it,rt)}var ct={name:"mi-caret-down",render:dt},hn="";const st={class:"select"},mt={key:2,class:"placeholder-inline"},ht={class:"error"},F=e.defineComponent({name:"Select",props:{id:null,options:null,label:{default:"Label"},disabled:{type:Boolean},multiple:{type:Boolean},modelValue:null,error:null,fetchOnApi:{type:Boolean},placeholder:{default:"Selecione"},searchPlaceholder:null,searchable:{type:Boolean}},emits:["update:modelValue"],setup(t,{emit:l}){return(n,o)=>(e.openBlock(),e.createBlock(T,{id:`select-${t.id}`,selected:t.modelValue,label:t.label,disabled:t.disabled,"fetch-on-search":t.fetchOnApi,"is-multiple-select":t.multiple,class:"sol-select-core","search-placeholder":t.searchPlaceholder,searchable:t.searchable,options:t.options,"onUpdate:selected":o[1]||(o[1]=a=>l("update:modelValue",a))},{"toggle-dropdown":e.withCtx(({selected:a,isOpen:i})=>[e.createElementVNode("div",{class:e.normalizeClass(["select-container",{"-disabled":t.disabled,"-error":t.error}])},[e.createElementVNode("div",st,[t.multiple&&a.length?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(a,(r,d)=>(e.openBlock(),e.createElementBlock("span",{key:d,class:"tag",onClick:o[0]||(o[0]=e.withModifiers(()=>{},["stop"]))},e.toDisplayString(r),1))),128)):a.length?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(a),1)],64)):(e.openBlock(),e.createElementBlock("span",mt,e.toDisplayString(t.placeholder),1))]),e.createVNode(e.unref(ct),{class:e.normalizeClass(["icon",{"-open":i}])},null,8,["class"])],2),e.createElementVNode("span",ht,e.toDisplayString(t.error),1)]),_:1},8,["id","selected","label","disabled","fetch-on-search","is-multiple-select","search-placeholder","searchable","options"]))}});F.install=t=>{t.component("SolSelect",F)};var un="",fn="",$n="",bn="";const v=12,C={type:"success",timeout:5e3,showIcon:!0,showCloseButton:!0,position:"top-right",hideProgressBar:!1};function ut(t,l){const n=e.reactive({id:null,intervalId:null,startTime:0,remaining:l}),o=e.ref(100);function a(){clearInterval(n.intervalId),clearTimeout(n.id),n.remaining-=Date.now()-n.startTime}function i(){n.startTime=Date.now(),clearTimeout(n.id),n.intervalId=setInterval(()=>{o.value--},l/100-5),n.id=setTimeout(t,n.remaining)}function r(){clearInterval(n.intervalId),clearTimeout(n.id),o.value=100}return e.onMounted(()=>{if(l<=0)return!1}),e.onUnmounted(()=>{r()}),{start:i,stop:a,clear:r,progress:o}}function ft(t){return{stylePosition:e.computed(()=>{const{position:n,offset:o}=t();switch(n){case"top-left":return{left:"0",top:`${o}px`};case"bottom-left":return{left:"0",bottom:`${o}px`};case"bottom-right":return{right:"0",bottom:`${o}px`};case"top-center":return{top:`${o}px`,left:"0",right:"0",marginRight:"auto",marginLeft:"auto"};case"bottom-center":return{bottom:`${o}px`,left:"0",right:"0",marginRight:"auto",marginLeft:"auto"};default:return{right:"0",top:`${o}px`}}})}}var _=(t=>(t["top-left"]="bounce-left",t["top-right"]="bounce-right",t["top-center"]="bounce-down",t["bottom-left"]="bounce-left",t["bottom-center"]="bounce-up",t["bottom-right"]="bounce-right",t))(_||{});const $t={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},bt=[e.createElementVNode("path",{fill:"currentColor",d:"M12 4a8 8 0 1 0 0 16a8 8 0 0 0 0-16zM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12zm14.664-3.247a1 1 0 0 1 .083 1.411l-5.333 6a1 1 0 0 1-1.495 0l-2.666-3a1 1 0 0 1 1.494-1.328l1.92 2.159l4.586-5.16a1 1 0 0 1 1.411-.082z"},null,-1)];function gt(t,l){return e.openBlock(),e.createElementBlock("svg",$t,bt)}var yt={name:"mi-circle-check",render:gt};const kt={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},wt=[e.createElementVNode("path",{fill:"currentColor",d:"M12 4a8 8 0 1 0 0 16a8 8 0 0 0 0-16zM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12zm5.793-4.207a1 1 0 0 1 1.414 0L12 10.586l2.793-2.793a1 1 0 1 1 1.414 1.414L13.414 12l2.793 2.793a1 1 0 0 1-1.414 1.414L12 13.414l-2.793 2.793a1 1 0 0 1-1.414-1.414L10.586 12L7.793 9.207a1 1 0 0 1 0-1.414z"},null,-1)];function Bt(t,l){return e.openBlock(),e.createElementBlock("svg",kt,wt)}var St={name:"mi-circle-error",render:Bt};const pt={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},Ct=[e.createElementVNode("g",{fill:"currentColor"},[e.createElementVNode("path",{d:"M12 4a8 8 0 1 0 0 16a8 8 0 0 0 0-16zM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12z"}),e.createElementVNode("path",{d:"M12 14a1 1 0 0 1-1-1V7a1 1 0 1 1 2 0v6a1 1 0 0 1-1 1zm-1.5 2.5a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0z"})],-1)];function Vt(t,l){return e.openBlock(),e.createElementBlock("svg",pt,Ct)}var Et={name:"mi-circle-warning",render:Vt};const Nt={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},xt=[e.createElementVNode("path",{fill:"currentColor",d:"M5.293 5.293a1 1 0 0 1 1.414 0L12 10.586l5.293-5.293a1 1 0 1 1 1.414 1.414L13.414 12l5.293 5.293a1 1 0 0 1-1.414 1.414L12 13.414l-5.293 5.293a1 1 0 0 1-1.414-1.414L10.586 12L5.293 6.707a1 1 0 0 1 0-1.414z"},null,-1)];function zt(t,l){return e.openBlock(),e.createElementBlock("svg",Nt,xt)}var Tt={name:"mi-close",render:zt},Bn="";const Mt=["id","data-testid"],Dt={class:"content-wrapper"},Pt={key:0,class:"icon-container","aria-hidden":"true"},It={class:"content"},Lt={key:0,class:"description"},At=["data-testid"],Ot=e.defineComponent({name:"Toast",props:{id:null,type:{default:C.type},visible:{type:Boolean,default:!1},title:null,description:null,timeout:null,hideProgressBar:{type:Boolean,default:C.hideProgressBar},showIcon:{type:Boolean,default:C.showIcon},offset:{default:0},onClose:null,onCloseHandler:null,position:{default:C.position}},setup(t){const l=t,{start:n,stop:o,progress:a}=ut(()=>{var s;(s=l.onCloseHandler)==null||s.call(l)},l.timeout),{stylePosition:i}=ft(()=>({offset:l.offset,position:l.position})),r=e.computed(()=>l.title&&l.description);function d(){l.timeout>0&&o()}function c(){n()}return e.onMounted(()=>{n()}),(s,u)=>(e.openBlock(),e.createBlock(e.Transition,{name:e.unref(_)[t.position],type:"animation"},{default:e.withCtx(()=>[t.visible?(e.openBlock(),e.createElementBlock("div",{key:0,id:`toast-${t.type}-${t.id}`,role:"status","data-testid":`toast-${t.type}-${t.id}`,style:e.normalizeStyle(e.unref(i)),class:e.normalizeClass(["sol-toast-core",[`-${t.type}`,{"-multiline":e.unref(r)}]]),onKeyup:u[1]||(u[1]=e.withKeys((...b)=>t.onCloseHandler&&t.onCloseHandler(...b),["esc"])),onMouseenter:d,onMouseleave:c,onFocusin:d,onFocusout:c},[e.createElementVNode("section",Dt,[t.showIcon?(e.openBlock(),e.createElementBlock("div",Pt,[e.renderSlot(s.$slots,"icon-status",{type:t.type},()=>[t.type==="success"?(e.openBlock(),e.createBlock(e.unref(yt),{key:0,class:"icon"})):e.createCommentVNode("",!0),t.type==="info"?(e.openBlock(),e.createBlock(e.unref(Et),{key:1,class:"icon"})):e.createCommentVNode("",!0),t.type==="danger"?(e.openBlock(),e.createBlock(e.unref(St),{key:2,class:"icon"})):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0),e.createElementVNode("div",It,[e.createElementVNode("p",{class:e.normalizeClass(["title",{"-multiline":e.unref(r)}])},[e.renderSlot(s.$slots,"title",{},()=>[e.createTextVNode(e.toDisplayString(t.title),1)])],2),t.description?(e.openBlock(),e.createElementBlock("p",Lt,[e.renderSlot(s.$slots,"description",{},()=>[e.createTextVNode(e.toDisplayString(t.description),1)])])):e.createCommentVNode("",!0)])]),e.createElementVNode("button",{type:"button",class:e.normalizeClass(["close",{"-multiline":e.unref(r)}]),"data-testid":`toast-close-button-${t.type}-${t.id}`,"aria-label":"close notification",onClick:u[0]||(u[0]=(...b)=>t.onCloseHandler&&t.onCloseHandler(...b))},[e.createVNode(e.unref(Tt),{class:"icon"})],10,At),t.hideProgressBar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",{key:0,class:"progressbar","aria-hidden":"true",style:e.normalizeStyle({width:`${e.unref(a)}%`})},null,4))],46,Mt)):e.createCommentVNode("",!0)]),_:3},8,["name"]))}}),M={"top-left":[],"top-right":[],"top-center":[],"bottom-left":[],"bottom-right":[],"bottom-center":[]};function Rt(){let t=0;function l(){Object.entries(M).forEach(([o,a])=>{a.length&&a.forEach(i=>{var d;const r=(d=i.toastVNode.props)==null?void 0:d.id;q(r,o)})})}return{createToast:(o,a)=>{const i=t++,r=a?Ht(a):C;return a!=null&&a.showOneToast&&l(),Ft(i,r,typeof o=="string"?{title:o}:o),{close:()=>q(i,r.position)}},clearAllToasts:l}}function Ht(t){const l=Q(D(D({},C),t),{showIcon:t.showIcon});return l.hideProgressBar=!!(l.timeout&&(l==null?void 0:l.timeout)<=0),t.hideProgressBar&&(l.hideProgressBar=t.hideProgressBar),l}function Ft(t,l,n){setTimeout(()=>{const o=Ut(l,M,v),a=document.createElement("div");document.body.appendChild(a);const i=e.createVNode(Ot,Gt(l,t,o,q,n));e.render(i,a),M[l.position].push({toastVNode:i,container:a}),i.component&&(i.component.props.visible=!0)},1)}function Gt(t,l,n,o,a){return Q(D(D({},t),a),{id:l,offset:n,visible:!1,onCloseHandler(){o(l,t.position?t.position:"top-right")}})}function Ut(t,l,n){if(!t.position)throw new Error("no position");return l[t.position].reduce((o,{toastVNode:a})=>(o+=a.el.offsetHeight+n||0,o),n)}function Kt(t,l,n,o){for(let a=t;a<l.length;a++){const{toastVNode:i}=l[a];if(!i.el)return;const r=n.split("-")[0]||"top",d=parseInt(i.el.style[r],10)-o-v;if(!i.component)return;i.component.props.offset=d}}function q(t,l){var c;const n=M[l],o=n.findIndex(({toastVNode:s})=>{var u;return t===((u=s==null?void 0:s.props)==null?void 0:u.id)});if(o===-1)return;const{container:a,toastVNode:i}=n[o],r=(c=i==null?void 0:i.el)==null?void 0:c.offsetHeight;if(M[l].splice(o,1),Kt(o,n,l,r),!i.component)return;const d=i.component.props;d.visible=!1,d.onClose&&d.onClose(),setTimeout(()=>{e.render(null,a),document.body.removeChild(a)},1e3)}console.log("%c\u{1F33B}[Girassol]\u{1F33B}","padding: 8px;background: #212121;color: gold; font-family: 'Fira code'; font-weight: bold; font-size: 1.2rem");const J={SolButton:P,SolInput:p,SolTextarea:L,SolTextfield:E,SolTextfieldPassword:I,SolRadio:N,SolRadioGroup:A,SolCheckbox:x,SolCheckboxGroup:O,SolSwitch:R,SolDropdown:T,SolSelect:F};function Yt(t){for(const l in J)t.component(l,J[l])}const ee=[];for(const t in J)ee.push(t);m.SolButton=P,m.SolCheckbox=x,m.SolCheckboxGroup=O,m.SolDropdown=T,m.SolInput=p,m.SolRadio=N,m.SolRadioGroup=A,m.SolSelect=F,m.SolSwitch=R,m.SolTextarea=L,m.SolTextfield=E,m.SolTextfieldPassword=I,m.componentsNames=ee,m.install=Yt,m.useToast=Rt,Object.defineProperties(m,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .sol-button-core{border-radius:.5rem;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;font-family:Rubik;font-weight:500;font-size:.875rem;line-height:1.15;padding:.75rem 1.5rem;width:fit-content;min-width:40px;transition:filter .15s ease}.sol-button-core.-has-icon{padding-left:1rem;padding-right:1rem}.sol-button-core.-only-icon{padding:.5rem}.sol-button-core:not(.-only-icon)>.icon:empty{display:none}.sol-button-core:not(.-only-icon)>.icon.-left{margin-right:.5rem}.sol-button-core:not(.-only-icon)>.icon.-right{margin-left:.5rem}.sol-button-core:focus-visible{outline:4px solid #292929}.sol-button-core.-block{width:100%}.sol-button-core.-dense{padding:.5rem 1rem}.sol-button-core.-primary{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-button-core.-primary:hover{--tw-outline-opacity: 1;outline-color:rgba(143,143,143,var(--tw-outline-opacity));outline-width:2px;outline-style:solid}.sol-button-core.-primary:active{filter:brightness(1.2) drop-shadow(0px 3px 2px rgba(33,33,34,.5647058824))}.sol-button-core.-primary.-invert{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-button-core.-primary.-invert:hover{--tw-bg-opacity: .8;--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity));--tw-outline-opacity: 1;outline-color:rgba(82,82,82,var(--tw-outline-opacity))}.sol-button-core.-primary.-invert:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(143,143,143,var(--tw-outline-opacity))}.sol-button-core.-secondary{background-color:transparent;--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));border-width:1px;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-button-core.-secondary:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-secondary.-invert{--tw-border-opacity: 1;border-color:rgba(255,255,255,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-button-core.-secondary.-invert:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-secondary.-invert:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(255,255,255,var(--tw-outline-opacity));outline-width:200px}.sol-button-core.-flat{background-color:transparent}.sol-button-core.-flat:hover{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity))}.sol-button-core.-flat.-invert{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-button-core.-flat.-invert:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-flat.-invert:focus{outline-color:#fff}.sol-button-core:disabled{cursor:not-allowed;filter:brightness(.8) grayscale(1)}.sol-input-core{--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity));border-radius:.5rem;border-width:2px;cursor:pointer;font-family:Rubik;font-size:.875rem;max-height:2.5rem;padding:.75rem;--tw-caret-opacity: 1;caret-color:rgba(255,176,31,var(--tw-caret-opacity));--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-input-core:focus-visible{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));outline:3px solid #292929;outline-offset:0px}.sol-input-core.-invert{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-input-core.-invert:focus-visible{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));outline:3px solid #ffffff;outline-offset:0px}.sol-input-core.-invert:not(:placeholder-shown):invalid,.sol-input-core.-invert.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-input-core.-invert:disabled{--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity));border-color:transparent}.sol-input-core:not(:placeholder-shown):invalid,.sol-input-core.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-input-core:not(:placeholder-shown):invalid:focus-visible,.sol-input-core.-error:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(255,37,31,var(--tw-outline-opacity))}.sol-input-core:disabled{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity));cursor:not-allowed}.sol-textfield-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.sol-textfield-core.-invert>.label,.sol-textfield-core.-invert>.hint{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-textfield-core:is([required=true],[required=""])>.label:after{position:absolute;top:30%;right:0px;content:"*"}.sol-textfield-core>.label{font-family:Rubik;font-weight:400;font-size:.875rem;line-height:1.15;margin-bottom:.25rem;position:relative;text-align:left;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-textfield-core>.container-input{position:relative}.sol-textfield-core>.container-input>.input{width:100%;scroll-margin-top:14rem}.sol-textfield-core>.container-input>.input~*{position:absolute;top:calc(50% - 8px);right:12px}.sol-textfield-core>.hint,.sol-textfield-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-textfield-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-textfield-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-radio-core{border-radius:.25rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.sol-radio-core:focus-within{outline:3px solid #292929;outline-offset:0px}.sol-radio-core>.radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));border-radius:100%;border-style:solid;border-width:2px;cursor:pointer;height:1rem;margin-right:.5rem;width:1rem}.sol-radio-core>.radio:checked{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-radio-core>.radio:disabled{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));cursor:not-allowed}.sol-radio-core>.radio:disabled~.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-radio-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-radio-group-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;text-align:left}.sol-radio-group-core>.title{margin-bottom:.75rem}.sol-radio-group-core>.container-radios{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.sol-radio-group-core>.container-radios>.radio{width:-webkit-min-content;width:-moz-min-content;width:min-content}.sol-radio-group-core>.hint,.sol-radio-group-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-radio-group-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-radio-group-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-checkbox-core{border-radius:.25rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.sol-checkbox-core:focus-within{outline:3px solid #292929;outline-offset:0px}.sol-checkbox-core:hover>.checkbox:not(:checked){--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-checkbox-core:hover>.checkbox:checked:before{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-checkbox-core>.checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));border-radius:.25rem;border-width:2px;display:-ms-grid;display:grid;place-content:center;height:1rem;margin-right:.5rem;width:1rem}.sol-checkbox-core>.checkbox:before{content:"";transform:scale(0);clip-path:polygon(14% 44%,0 65%,50% 100%,100% 16%,80% 0%,43% 62%);--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity));height:.5rem;width:.5rem;-webkit-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);-o-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;-o-transition-duration:.15s;transition-duration:.15s}.sol-checkbox-core>.checkbox:checked:before{transform:scale(1)}.sol-checkbox-core>.checkbox:checked{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity))}.sol-checkbox-core>.checkbox:disabled{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));cursor:not-allowed}.sol-checkbox-core>.checkbox:disabled~.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-checkbox-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-checkbox-group-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;text-align:left}.sol-checkbox-group-core>.title{font-weight:700;margin-bottom:.75rem}.sol-checkbox-group-core>.container-checkboxes{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.sol-checkbox-group-core>.container-checkboxes>.checkbox{width:-webkit-min-content;width:-moz-min-content;width:min-content}.sol-checkbox-group-core>.hint,.sol-checkbox-group-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-checkbox-group-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-checkbox-group-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-switch-core{border-radius:1rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.sol-switch-core[disabled=""]>.label,.sol-switch-core[disabled=true]>.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-switch-core[disabled=""]>.switch-container,.sol-switch-core[disabled=true]>.switch-container{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));--tw-border-opacity: .16}.sol-switch-core.-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;width:100%}.sol-switch-core:focus-within>.switch-container{outline:3px solid #292929;outline-offset:0px}.sol-switch-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-switch-core>.switch-container{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));border-radius:1rem;border-width:2px;height:1.5rem;overflow:hidden;position:relative;width:3rem}.sol-switch-core>.switch-container:hover>.switch:checked~.ellipse{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.switch{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;height:100%;width:100%;transition:.2s background-color}.sol-switch-core>.switch-container>.switch:checked{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.switch:checked~.ellipse{transform:translate(140%)}.sol-switch-core>.switch-container>.switch[disabled=""],.sol-switch-core>.switch-container>.switch[disabled=true]{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));cursor:not-allowed}.sol-switch-core>.switch-container>.switch[disabled=""]~.ellipse,.sol-switch-core>.switch-container>.switch[disabled=true]~.ellipse{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.ellipse{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity));border-radius:.5rem;display:inline-block;height:1rem;pointer-events:none;position:absolute;top:11.111111%;left:.25rem;width:1rem;transition:.2s transform,.15s background-color}*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}*{--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgba(59, 130, 246, 1);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}::moz-focus-inner{border-style:none;padding:0}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}button,input{font-family:inherit;font-size:100%;line-height:1.15;margin:0;padding:0;line-height:inherit;color:inherit}button{text-transform:none;background-color:transparent;background-image:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button,[role=button]{cursor:pointer}code{font-size:1em;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}fieldset{margin:0;padding:0}html{-webkit-text-size-adjust:100%;font-family:Lato,sans-serif;line-height:1.5}h2,h3,h4{font-size:inherit;font-weight:inherit}img{border-style:solid;max-width:100%;height:auto}input::placeholder{opacity:1;color:#a1a1aa}input::webkit-input-placeholder{opacity:1;color:#a1a1aa}input::-moz-placeholder{opacity:1;color:#a1a1aa}input:-ms-input-placeholder{opacity:1;color:#a1a1aa}input::-ms-input-placeholder{opacity:1;color:#a1a1aa}img,svg{display:block;vertical-align:middle}legend{padding:0}p,h2,h3,h4,dl{margin:0}strong{font-weight:bolder}small{font-size:80%}table{text-indent:0;border-color:inherit;border-collapse:collapse}ul{list-style:none;margin:0;padding:0}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.bg-brand-primary-pure{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.bg-neutrals-low-medium{--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-neutrals-high-light{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-brand-primary-light{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity))}.bg-neutrals-high-pure{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.bg-neutrals-high-medium{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity))}.bg-neutrals-low-pure{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity))}.bg-brand-primary-medium{--tw-bg-opacity: 1;background-color:rgba(255,205,112,var(--tw-bg-opacity))}.bg-neutrals-low-light{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.bg-feedback-positive-medium{--tw-bg-opacity: 1;background-color:rgba(238,251,246,var(--tw-bg-opacity))}.bg-feedback-positive-light{--tw-bg-opacity: 1;background-color:rgba(138,229,191,var(--tw-bg-opacity))}.bg-feedback-positive-pure{--tw-bg-opacity: 1;background-color:rgba(71,215,154,var(--tw-bg-opacity))}.bg-feedback-informative-light{--tw-bg-opacity: 1;background-color:rgba(235,248,255,var(--tw-bg-opacity))}.bg-feedback-informative-medium{--tw-bg-opacity: 1;background-color:rgba(112,203,255,var(--tw-bg-opacity))}.bg-feedback-negative-pure{--tw-bg-opacity: 1;background-color:rgba(255,37,31,var(--tw-bg-opacity))}.bg-feedback-informative-pure{--tw-bg-opacity: 1;background-color:rgba(31,174,255,var(--tw-bg-opacity))}.bg-feedback-negative-light{--tw-bg-opacity: 1;background-color:rgba(255,235,235,var(--tw-bg-opacity))}.bg-feedback-negative-medium{--tw-bg-opacity: 1;background-color:rgba(255,116,112,var(--tw-bg-opacity))}.border-neutrals-high-light{--tw-border-opacity: 1;border-color:rgba(255,255,255,var(--tw-border-opacity))}.border-neutrals-low-pure{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity))}.border-neutrals-low-light{--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity))}.border-neutrals-low-medium{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity))}.border-neutrals-high-pure{--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity))}.rounded-md{border-radius:.5rem}.rounded-sm{border-radius:.25rem}.rounded-fully{border-radius:100%}.rounded-lg{border-radius:1rem}.rounded-none{border-radius:0}.rounded-half{border-radius:50%}.rounded-full{border-radius:40rem}.border-solid{border-style:solid}.border-a-xs{border-width:1px}.border-sm,.border-2,.border-a-sm{border-width:2px}.border-a-md{border-width:4px}.border-a-lg{border-width:8px}.border-t-md{border-top-width:4px}.border-r-md{border-right-width:4px}.border-b-md{border-bottom-width:4px}.border-l-md{border-left-width:4px}.border-y-md{border-top-width:4px;border-bottom-width:4px}.border-x-md{border-left-width:4px;border-right-width:4px}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.inline-block{display:inline-block}.flex{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.grid{display:-ms-grid;display:grid}.hidden{display:none}.flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.flex-col{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.place-items-center{place-items:center}.place-content-center{place-content:center}.items-start{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.items-center{-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.font-highlight{font-family:Rubik}.font-code{font-family:Roboto Slab,"serif"}.font-medium{font-weight:500}.font-regular{font-weight:400}.h-4{height:1rem}.h-2{height:.5rem}.h-6{height:1.5rem}.h-full{height:100%}.h-40{height:10rem}.h-60{height:15rem}.h-24{height:6rem}.text-3xs{font-size:.875rem}.text-micro{font-size:.75rem}.text-sm{font-size:1.5rem}.text-xs{font-size:1.25rem}.text-2xs{font-size:1rem}.text-md{font-size:2rem}.text-lg{font-size:2.5rem}.text-xl{font-size:3rem}.text-2xl{font-size:3.5rem}.text-3xl{font-size:4rem}.text-mega{font-size:4.5rem}.text-giga{font-size:5.5rem}.leading-xs{line-height:1.15}.leading-md{line-height:1.33}.leading-default{line-height:1}.leading-sm{line-height:1.2}.leading-lg{line-height:1.5}.leading-xl{line-height:1.7}.mx-2{margin-left:.5rem;margin-right:.5rem}.mr-micro{margin-right:.5rem}.mb-micro{margin-bottom:.5rem}.mb-3xs{margin-bottom:.75rem}.mt-nano{margin-top:.25rem}.mb-1,.mb-nano{margin-bottom:.25rem}.mb-6{margin-bottom:1.5rem}.mb-4{margin-bottom:1rem}.mb-0{margin-bottom:0}.ml-4{margin-left:1rem}.max-h-10{max-height:2.5rem}.outline-solid-neutrals-high-light{--tw-outline-opacity: 1;outline-color:rgba(255,255,255,var(--tw-outline-opacity))}.py-3xs{padding-top:.75rem;padding-bottom:.75rem}.px-xs{padding-left:1.5rem;padding-right:1.5rem}.px-micro{padding-left:.5rem;padding-right:.5rem}.py-micro{padding-top:.5rem;padding-bottom:.5rem}.px-3xs{padding-left:.75rem;padding-right:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.pr-micro{padding-right:.5rem}.absolute{position:absolute}.relative{position:relative}.top-2\/18{top:11.111111%}.left-1{left:.25rem}.top-3\/10{top:30%}.shadow-soft{--tw-shadow: 0px 8px 16px rgba(41, 41, 41, .08);--tw-shadow-colored: 0px 8px 16px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-medium{--tw-shadow: 0px 12px 24px rgba(41, 41, 41, .16);--tw-shadow-colored: 0px 12px 24px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-large{--tw-shadow: 0px 16px 64px rgba(41, 41, 41, .24);--tw-shadow-colored: 0px 16px 64px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.text-left{text-align:left}.text-neutrals-low-pure{--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.text-neutrals-low-medium{--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.text-neutrals-low-light{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.uppercase{text-transform:uppercase}.tracking-md{letter-spacing:.04rem}.tracking-default{letter-spacing:normal}.tracking-sm{letter-spacing:.16rem}.w-fit-content{width:fit-content}.w-4{width:1rem}.w-2{width:.5rem}.w-12{width:3rem}.w-full{width:100%}.w-60{width:15rem}.gap-4{grid-gap:1rem;gap:1rem}.gap-3{grid-gap:.75rem;gap:.75rem}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.transition-transform{-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);-o-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;-o-transition-duration:.15s;transition-duration:.15s}.filter{--tw-blur: var(--tw-empty, );--tw-brightness: var(--tw-empty, );--tw-contrast: var(--tw-empty, );--tw-grayscale: var(--tw-empty, );--tw-hue-rotate: var(--tw-empty, );--tw-invert: var(--tw-empty, );--tw-saturate: var(--tw-empty, );--tw-sepia: var(--tw-empty, );--tw-drop-shadow: var(--tw-empty, );-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.invert,.-invert,.invert\]{--tw-invert: invert(100%)}@media (min-width: 768px){.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Regular.ttf);font-weight:400}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Bold.ttf);font-weight:700}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Medium.ttf);font-weight:500}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Regular.ttf);font-weight:400}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Bold.ttf);font-weight:700}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Medium.ttf);font-weight:500}@font-face{font-family:Roboto Slab;src:url(fonts/roboto-slab/RobotoSlab.ttf)}
1
+ .sol-button-core{border-radius:.5rem;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;font-family:Rubik;font-weight:500;font-size:.875rem;line-height:1.15;padding:.75rem 1.5rem;width:fit-content;min-width:40px;transition:filter .15s ease}.sol-button-core.-has-icon{padding-left:1rem;padding-right:1rem}.sol-button-core.-only-icon{padding:.5rem}.sol-button-core:not(.-only-icon)>.icon:empty{display:none}.sol-button-core:not(.-only-icon)>.icon.-left{margin-right:.5rem}.sol-button-core:not(.-only-icon)>.icon.-right{margin-left:.5rem}.sol-button-core:focus-visible{outline:4px solid #292929}.sol-button-core.-block{width:100%}.sol-button-core.-dense{padding:.5rem 1rem}.sol-button-core.-primary{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-button-core.-primary:hover{--tw-outline-opacity: 1;outline-color:rgba(143,143,143,var(--tw-outline-opacity));outline-width:2px;outline-style:solid}.sol-button-core.-primary:active{filter:brightness(1.2) drop-shadow(0px 3px 2px rgba(33,33,34,.5647058824))}.sol-button-core.-primary.-invert{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-button-core.-primary.-invert:hover{--tw-bg-opacity: .8;--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity));--tw-outline-opacity: 1;outline-color:rgba(82,82,82,var(--tw-outline-opacity))}.sol-button-core.-primary.-invert:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(143,143,143,var(--tw-outline-opacity))}.sol-button-core.-secondary{background-color:transparent;--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));border-width:1px;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-button-core.-secondary:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-secondary.-invert{--tw-border-opacity: 1;border-color:rgba(255,255,255,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-button-core.-secondary.-invert:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-secondary.-invert:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(255,255,255,var(--tw-outline-opacity));outline-width:200px}.sol-button-core.-flat{background-color:transparent;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-button-core.-flat:hover{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity))}.sol-button-core.-flat.-invert{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-button-core.-flat.-invert:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-flat.-invert:focus{outline-color:#fff}.sol-button-core:disabled{cursor:not-allowed;filter:brightness(.8) grayscale(1)}.sol-input-core{--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity));border-radius:.5rem;border-width:2px;cursor:pointer;font-family:Rubik;font-size:.875rem;max-height:2.5rem;padding:.75rem;--tw-caret-opacity: 1;caret-color:rgba(255,176,31,var(--tw-caret-opacity));--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-input-core::placeholder{color:#8f8f8f!important;font-size:undefined!important;font-family:undefined!important;line-height:undefined!important}.sol-input-core:focus-visible{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));outline:3px solid #292929;outline-offset:0px}.sol-input-core.-invert{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-input-core.-invert:focus-visible{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));outline:3px solid #ffffff;outline-offset:0px}.sol-input-core.-invert:not(:placeholder-shown):invalid,.sol-input-core.-invert.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-input-core.-invert:disabled{--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity));border-color:transparent}.sol-input-core:not(:placeholder-shown):invalid,.sol-input-core.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-input-core:not(:placeholder-shown):invalid:focus-visible,.sol-input-core.-error:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(255,37,31,var(--tw-outline-opacity))}.sol-input-core:disabled{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity));cursor:not-allowed}.sol-textfield-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.sol-textfield-core.-invert>.label,.sol-textfield-core.-invert>.hint{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-textfield-core:is([required=true],[required=""])>.label:after{position:absolute;top:30%;right:0px;content:"*"}.sol-textfield-core>.label{font-family:Rubik;font-weight:400;font-size:.875rem;line-height:1.15;margin-bottom:.25rem;position:relative;text-align:left;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-textfield-core>.container-input{position:relative}.sol-textfield-core>.container-input>.input{width:100%;scroll-margin-top:14rem}.sol-textfield-core>.container-input>.input~*{position:absolute;top:calc(50% - 8px);right:12px}.sol-textfield-core>.hint,.sol-textfield-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-textfield-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-textfield-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-textarea-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.sol-textarea-core.-invert>.label,.sol-textarea-core.-invert>.hint{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-textarea-core:is([required=true],[required=""])>.label:after{position:absolute;top:30%;right:0px;content:"*"}.sol-textarea-core>.label{font-family:Rubik;font-weight:400;font-size:.875rem;line-height:1.15;margin-bottom:.25rem;position:relative;text-align:left;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-textarea-core>.container-textarea{position:relative}.sol-textarea-core>.container-textarea>.textarea{--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity));border-radius:.5rem;border-width:2px;cursor:pointer;font-family:Rubik;height:100%;font-size:.875rem;max-width:100%;padding:.75rem;--tw-caret-opacity: 1;caret-color:rgba(255,176,31,var(--tw-caret-opacity));--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity));scroll-margin-top:14rem}.sol-textarea-core>.container-textarea>.textarea.-invert{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-textarea-core>.container-textarea>.textarea.-invert:focus-visible{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));outline:3px solid #ffffff;outline-offset:0px}.sol-textarea-core>.container-textarea>.textarea.-invert:not(:placeholder-shown):invalid,.sol-textarea-core>.container-textarea>.textarea.-invert.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-textarea-core>.container-textarea>.textarea.-invert:disabled{--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity));border-color:transparent}.sol-textarea-core>.container-textarea>.textarea:not(:placeholder-shown):invalid,.sol-textarea-core>.container-textarea>.textarea.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-textarea-core>.container-textarea>.textarea:not(:placeholder-shown):invalid:focus-visible,.sol-textarea-core>.container-textarea>.textarea.-error:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(255,37,31,var(--tw-outline-opacity))}.sol-textarea-core>.container-textarea>.textarea:disabled{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity));cursor:not-allowed}.sol-textarea-core>.hint,.sol-textarea-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-textarea-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-textarea-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-radio-core{border-radius:.25rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.sol-radio-core:focus-within{outline:3px solid #292929;outline-offset:0px}.sol-radio-core>.radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));border-radius:100%;border-style:solid;border-width:2px;cursor:pointer;height:1rem;margin-right:.5rem;width:1rem}.sol-radio-core>.radio:checked{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-radio-core>.radio:disabled{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));cursor:not-allowed}.sol-radio-core>.radio:disabled~.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-radio-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-radio-group-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;text-align:left}.sol-radio-group-core>.title{margin-bottom:.75rem}.sol-radio-group-core>.container-radios{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.sol-radio-group-core>.container-radios>.radio{width:-webkit-min-content;width:-moz-min-content;width:min-content}.sol-radio-group-core>.hint,.sol-radio-group-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-radio-group-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-radio-group-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-checkbox-core{border-radius:.25rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.sol-checkbox-core:focus-within{outline:3px solid #292929;outline-offset:0px}.sol-checkbox-core:hover>.checkbox:not(:checked){--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-checkbox-core:hover>.checkbox:checked:before{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-checkbox-core>.checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));border-radius:.25rem;border-width:2px;display:-ms-grid;display:grid;place-content:center;height:1rem;margin-right:.5rem;width:1rem}.sol-checkbox-core>.checkbox:before{content:"";transform:scale(0);clip-path:polygon(14% 44%,0 65%,50% 100%,100% 16%,80% 0%,43% 62%);--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity));height:.5rem;width:.5rem;-webkit-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);-o-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;-o-transition-duration:.15s;transition-duration:.15s}.sol-checkbox-core>.checkbox:checked:before{transform:scale(1)}.sol-checkbox-core>.checkbox:checked{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity))}.sol-checkbox-core>.checkbox:disabled{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));cursor:not-allowed}.sol-checkbox-core>.checkbox:disabled~.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-checkbox-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-checkbox-group-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;text-align:left}.sol-checkbox-group-core>.title{font-weight:700;margin-bottom:.75rem}.sol-checkbox-group-core>.container-checkboxes{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.sol-checkbox-group-core>.container-checkboxes>.checkbox{width:-webkit-min-content;width:-moz-min-content;width:min-content}.sol-checkbox-group-core>.hint,.sol-checkbox-group-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-checkbox-group-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-checkbox-group-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-switch-core{border-radius:1rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.sol-switch-core[disabled=""]>.label,.sol-switch-core[disabled=true]>.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-switch-core[disabled=""]>.switch-container,.sol-switch-core[disabled=true]>.switch-container{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));--tw-border-opacity: .16}.sol-switch-core.-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;width:100%}.sol-switch-core:focus-within>.switch-container{outline:3px solid #292929;outline-offset:0px}.sol-switch-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-switch-core>.switch-container{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));border-radius:1rem;border-width:2px;height:1.5rem;overflow:hidden;position:relative;width:3rem}.sol-switch-core>.switch-container:hover>.switch:checked~.ellipse{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.switch{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;height:100%;width:100%;transition:.2s background-color}.sol-switch-core>.switch-container>.switch:checked{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.switch:checked~.ellipse{transform:translate(140%)}.sol-switch-core>.switch-container>.switch[disabled=""],.sol-switch-core>.switch-container>.switch[disabled=true]{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));cursor:not-allowed}.sol-switch-core>.switch-container>.switch[disabled=""]~.ellipse,.sol-switch-core>.switch-container>.switch[disabled=true]~.ellipse{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.ellipse{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity));border-radius:.5rem;display:inline-block;height:1rem;pointer-events:none;position:absolute;top:11.111111%;left:.25rem;width:1rem;transition:.2s transform,.15s background-color}.dropdown-leave-from,.dropdown-enter-to{transform:rotateX(0)}.dropdown-leave-to,.dropdown-enter-from{transform:rotateX(-90deg)}@keyframes dropdown-item{0%{transform:rotateX(-90deg)}to{transform:rotateX(0)}}.sol-dropdown-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;position:relative}.sol-dropdown-core:focus-within>.button-toggle-dropdown>*{outline:3px solid #292929;outline-offset:0px;box-shadow:0 0 0 2px #ffba4732}.sol-dropdown-core>.button-toggle-dropdown{min-height:2rem;scroll-margin-top:14rem}.sol-dropdown-core>.button-toggle-dropdown:disabled{cursor:not-allowed}.sol-dropdown-core>.label{font-family:Rubik;font-size:.875rem;line-height:1.15;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity));margin-bottom:.25rem}.sol-dropdown-core>.label.-disabled{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-dropdown-core>.dropdown-container{position:absolute;top:100%;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));border-radius:.25rem;margin-top:.5rem;min-width:12.5rem;overflow:hidden;padding-top:.5rem;padding-bottom:.5rem;width:100%;box-shadow:1px 1px 6px 1px #21212132;z-index:1;transform-origin:top center;transition:transform .2s ease-in;will-change:transform}.sol-dropdown-core>.dropdown-container>.search-container{margin-left:.5rem;margin-right:.5rem;position:relative}.sol-dropdown-core>.dropdown-container>.search-container.-loading:before{content:"";animation:loading 1.5s ease-out infinite;background:linear-gradient(90deg,#ffb600,#ffcd70,#ffb600);transform-origin:left;transform:scaleX(0);will-change:transform;display:inline-block;position:absolute;bottom:0px;height:.25rem;width:100%}@keyframes loading{0%{transform:scaleX(0) translate(0)}40%{transform:scaleX(1)}to{transform:scaleX(1) translate(110%)}}.sol-dropdown-core>.dropdown-container>.search-container>.search{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));margin-bottom:.5rem;margin-bottom:1.5rem;width:100%}.sol-dropdown-core>.dropdown-container>.search-container>.icon{pointer-events:none;position:absolute;right:.5rem;top:10px}.sol-dropdown-core>.dropdown-container>.dropdown-list-core{max-height:240px;overflow-y:auto;padding-left:.5rem;padding-right:.5rem;width:100%;scrollbar-width:thin;scroll-behavior:smooth}.sol-dropdown-core>.dropdown-container>.dropdown-list-core::-webkit-scrollbar{width:.25rem}.sol-dropdown-core>.dropdown-container>.dropdown-list-core::-webkit-scrollbar-track{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.sol-dropdown-core>.dropdown-container>.dropdown-list-core::-webkit-scrollbar-thumb{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.no-data{font-family:Lato,sans-serif;font-size:.875rem;line-height:1.15;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;cursor:pointer;height:2rem;margin-bottom:.5rem;padding-left:.5rem;padding-right:.5rem;width:100%;font-family:Lato,sans-serif;font-size:.875rem;line-height:1.15;transition:border-radius .12s ease-in;transform:rotateX(-90deg);animation:dropdown-item .3s forwards cubic-bezier(.175,.885,.32,1.275);animation-delay:calc(.2s + var(--item, 2) * 50ms)}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item:hover,.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item:focus{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity));border-radius:.5rem}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item[selected=true]{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity));--tw-border-opacity: 1;border-bottom-color:rgba(255,176,31,var(--tw-border-opacity));border-bottom-width:1px}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item[selected=true]:hover,.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item[selected=true]:focus{filter:saturate(2.5)}.sol-select-core>.toggle-dropdown{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;max-width:20rem}.sol-select-core>.toggle-dropdown>.select-container{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;position:relative;height:100%;min-width:200px;padding-left:.75rem;padding-right:.75rem;width:100%;cursor:pointer;overflow:hidden;--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity));border-radius:.5rem;border-width:2px;font-family:Rubik;font-size:.875rem}.sol-select-core>.toggle-dropdown>.select-container.-disabled{--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity));cursor:not-allowed}.sol-select-core>.toggle-dropdown>.select-container.-disabled>.icon{--tw-text-opacity: 1;color:rgba(224,224,224,var(--tw-text-opacity))}.sol-select-core>.toggle-dropdown>.select-container.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-select-core>.toggle-dropdown>.select-container>.select{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;height:100%;margin-right:1rem;min-height:2.25rem;gap:4px}.sol-select-core>.toggle-dropdown>.select-container>.select:not(:empty){padding-top:.25rem;padding-bottom:.25rem}.sol-select-core>.toggle-dropdown>.select-container>.select>.tag{border-radius:.25rem;padding:.25rem;width:fit-content;--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity));font-family:Rubik;font-size:.75rem}.sol-select-core>.toggle-dropdown>.select-container>.select>.tag:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-select-core>.toggle-dropdown>.select-container>.icon{position:absolute;right:12px;transition:transform .35s}.sol-select-core>.toggle-dropdown>.select-container>.icon.-open{transform-origin:center;transform:rotate3d(0,0,1,180deg)}.sol-select-core>.toggle-dropdown>.select-container~.error{display:inline-block;margin-top:.25rem;padding-left:.25rem;width:100%;font-size:.75rem;text-align:left;--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity));outline:none}.sol-select-core>.toggle-dropdown>.select-container~.error:empty{display:none}*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}*{--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgba(59, 130, 246, 1);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}::moz-focus-inner{border-style:none;padding:0}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}button,input,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;padding:0;line-height:inherit;color:inherit}button{text-transform:none;background-color:transparent;background-image:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button,[role=button]{cursor:pointer}code{font-size:1em;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}fieldset{margin:0;padding:0}html{-webkit-text-size-adjust:100%;font-family:Lato,sans-serif;line-height:1.5}h2,h3,h4{font-size:inherit;font-weight:inherit}img{border-style:solid;max-width:100%;height:auto}input::placeholder{opacity:1;color:#a1a1aa}input::webkit-input-placeholder{opacity:1;color:#a1a1aa}input::-moz-placeholder{opacity:1;color:#a1a1aa}input:-ms-input-placeholder{opacity:1;color:#a1a1aa}input::-ms-input-placeholder{opacity:1;color:#a1a1aa}img,svg{display:block;vertical-align:middle}legend{padding:0}p,h2,h3,h4,dl{margin:0}strong{font-weight:bolder}small{font-size:80%}table{text-indent:0;border-color:inherit;border-collapse:collapse}textarea{resize:vertical}textarea::placeholder{opacity:1;color:#a1a1aa}textarea::webkit-input-placeholder{opacity:1;color:#a1a1aa}textarea::-moz-placeholder{opacity:1;color:#a1a1aa}textarea:-ms-input-placeholder{opacity:1;color:#a1a1aa}textarea::-ms-input-placeholder{opacity:1;color:#a1a1aa}ul{list-style:none;margin:0;padding:0}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.bg-brand-primary-light{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity))}.bg-brand-primary-pure{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.bg-neutral-low-medium{--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-neutral-high-light{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-neutral-high-pure{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.bg-neutral-high-medium{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity))}.bg-neutral-low-light{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.bg-neutral-low-pure{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity))}.bg-brand-primary-medium{--tw-bg-opacity: 1;background-color:rgba(255,205,112,var(--tw-bg-opacity))}.bg-feedback-positive-medium{--tw-bg-opacity: 1;background-color:rgba(138,229,191,var(--tw-bg-opacity))}.bg-feedback-positive-light{--tw-bg-opacity: 1;background-color:rgba(238,251,246,var(--tw-bg-opacity))}.bg-feedback-positive-pure{--tw-bg-opacity: 1;background-color:rgba(71,215,154,var(--tw-bg-opacity))}.bg-feedback-informative-light{--tw-bg-opacity: 1;background-color:rgba(235,248,255,var(--tw-bg-opacity))}.bg-feedback-informative-medium{--tw-bg-opacity: 1;background-color:rgba(112,203,255,var(--tw-bg-opacity))}.bg-feedback-negative-pure{--tw-bg-opacity: 1;background-color:rgba(255,37,31,var(--tw-bg-opacity))}.bg-feedback-informative-pure{--tw-bg-opacity: 1;background-color:rgba(31,174,255,var(--tw-bg-opacity))}.bg-feedback-negative-light{--tw-bg-opacity: 1;background-color:rgba(255,235,235,var(--tw-bg-opacity))}.bg-feedback-negative-medium{--tw-bg-opacity: 1;background-color:rgba(255,116,112,var(--tw-bg-opacity))}.border-neutral-high-light{--tw-border-opacity: 1;border-color:rgba(255,255,255,var(--tw-border-opacity))}.border-neutral-low-pure{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity))}.border-neutral-low-light{--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity))}.border-neutral-low-medium{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity))}.border-neutral-high-pure{--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity))}.border-b-brand-primary-pure{--tw-border-opacity: 1;border-bottom-color:rgba(255,176,31,var(--tw-border-opacity))}.rounded-sm{border-radius:.25rem}.rounded-md{border-radius:.5rem}.rounded-fully{border-radius:100%}.rounded-lg{border-radius:1rem}.rounded-none{border-radius:0}.rounded-half{border-radius:50%}.rounded-full{border-radius:40rem}.border-solid{border-style:solid}.border-a-xs{border-width:1px}.border-sm,.border-2,.border-a-sm{border-width:2px}.border-a-md{border-width:4px}.border-a-lg{border-width:8px}.border-t-md{border-top-width:4px}.border-r-md{border-right-width:4px}.border-b-md{border-bottom-width:4px}.border-l-md{border-left-width:4px}.border-y-md{border-top-width:4px;border-bottom-width:4px}.border-x-md{border-left-width:4px;border-right-width:4px}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.inline-block{display:inline-block}.flex{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.grid{display:-ms-grid;display:grid}.hidden{display:none}.flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.flex-col{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.flex-wrap{-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.place-items-center{place-items:center}.place-content-center{place-content:center}.items-start{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.items-center{-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.font-highlight{font-family:Rubik}.font-base{font-family:Lato,sans-serif}.font-code{font-family:Roboto Slab,"serif"}.font-medium{font-weight:500}.font-regular{font-weight:400}.h-8{height:2rem}.h-4{height:1rem}.h-2{height:.5rem}.h-full{height:100%}.h-6{height:1.5rem}.h-1{height:.25rem}.h-40{height:10rem}.h-60{height:15rem}.h-24{height:6rem}.text-3xs{font-size:.875rem}.text-micro{font-size:.75rem}.text-2xs{font-size:1rem}.text-xs{font-size:1.25rem}.text-sm{font-size:1.5rem}.text-md{font-size:2rem}.text-lg{font-size:2.5rem}.text-xl{font-size:3rem}.text-2xl{font-size:3.5rem}.text-3xl{font-size:4rem}.text-mega{font-size:4.5rem}.text-giga{font-size:5.5rem}.leading-xs{line-height:1.15}.leading-md{line-height:1.33}.leading-default{line-height:1}.leading-sm{line-height:1.2}.leading-lg{line-height:1.5}.leading-xl{line-height:1.7}.mx-4{margin-left:1rem;margin-right:1rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mt-micro{margin-top:.5rem}.mb-micro{margin-bottom:.5rem}.mb-xs{margin-bottom:1.5rem}.mr-micro{margin-right:.5rem}.mb-3xs{margin-bottom:.75rem}.mt-nano{margin-top:.25rem}.mb-1,.mb-nano{margin-bottom:.25rem}.mb-6{margin-bottom:1.5rem}.mb-4{margin-bottom:1rem}.mb-0{margin-bottom:0}.ml-4{margin-left:1rem}.max-h-10{max-height:2.5rem}.max-h-240px{max-height:240px}.max-h-200{max-height:50rem}.max-w-full{max-width:100%}.min-h-9{min-height:2.25rem}.min-h-14{min-height:3.5rem}.min-w-50{min-width:12.5rem}.min-w-200px{min-width:200px}.outline-solid-neutral-high-light{--tw-outline-opacity: 1;outline-color:rgba(255,255,255,var(--tw-outline-opacity))}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.py-micro{padding-top:.5rem;padding-bottom:.5rem}.px-micro{padding-left:.5rem;padding-right:.5rem}.py-3xs{padding-top:.75rem;padding-bottom:.75rem}.px-xs{padding-left:1.5rem;padding-right:1.5rem}.px-3xs{padding-left:.75rem;padding-right:.75rem}.px-nano{padding-left:.25rem;padding-right:.25rem}.py-nano{padding-top:.25rem;padding-bottom:.25rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.pr-micro{padding-right:.5rem}.pl-nano{padding-left:.25rem}.pl-2xs{padding-left:1rem}.caret-brand-primary-pure{--tw-caret-opacity: 1;caret-color:rgba(255,176,31,var(--tw-caret-opacity))}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.right-2{right:.5rem}.top-2\/18{top:11.111111%}.left-1{left:.25rem}.top-3\/10{top:30%}.resize{resize:both}.shadow-soft{--tw-shadow: 0px 8px 16px rgba(41, 41, 41, .08);--tw-shadow-colored: 0px 8px 16px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-medium{--tw-shadow: 0px 12px 24px rgba(41, 41, 41, .16);--tw-shadow-colored: 0px 12px 24px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-large{--tw-shadow: 0px 16px 64px rgba(41, 41, 41, .24);--tw-shadow-colored: 0px 16px 64px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.text-left{text-align:left}.text-neutral-low-pure{--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.text-neutral-low-medium{--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.text-neutral-high-pure{--tw-text-opacity: 1;color:rgba(224,224,224,var(--tw-text-opacity))}.text-feedback-negative-pure{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.text-neutral-low-light{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.uppercase{text-transform:uppercase}.text-stroke-neutral-high-light{--tw-text-stroke-opacity: 1;-webkit-text-stroke-color:rgba(255,255,255,var(--tw-text-stroke-opacity))}.content-wrapper{content:"wrapper"}.tracking-md{letter-spacing:.04rem}.tracking-default{letter-spacing:normal}.tracking-sm{letter-spacing:.16rem}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.visible{visibility:visible}.break-words{overflow-wrap:break-word}.w-full{width:100%}.w-fit-content{width:fit-content}.w-4{width:1rem}.w-2{width:.5rem}.w-12{width:3rem}.w-60{width:15rem}.w-82{width:20.5rem}.z-80{z-index:80}.gap-4{grid-gap:1rem;gap:1rem}.gap-3{grid-gap:.75rem;gap:.75rem}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.transform{--tw-translate-x: 0;--tw-translate-y: 0;--tw-translate-z: 0;--tw-rotate: 0;--tw-rotate-x: 0;--tw-rotate-y: 0;--tw-rotate-z: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-scale-z: 1;-webkit-transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotateZ(var(--tw-rotate-z)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z));-ms-transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotateZ(var(--tw-rotate-z)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z));transform:translate(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotate(var(--tw-rotate-z)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z))}.transition-transform{-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);-o-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;-o-transition-duration:.15s;transition-duration:.15s}.\<transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform,filter,backdrop-filter;-o-transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,-webkit-box-shadow,transform,-webkit-transform,filter,backdrop-filter;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);-o-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;-o-transition-duration:.15s;transition-duration:.15s}.ease-out{-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);-o-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1)}.filter{--tw-blur: var(--tw-empty, );--tw-brightness: var(--tw-empty, );--tw-contrast: var(--tw-empty, );--tw-grayscale: var(--tw-empty, );--tw-hue-rotate: var(--tw-empty, );--tw-invert: var(--tw-empty, );--tw-saturate: var(--tw-empty, );--tw-sepia: var(--tw-empty, );--tw-drop-shadow: var(--tw-empty, );-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.invert,.-invert,.invert\]{--tw-invert: invert(100%)}.placeholder::placeholder{color:#8f8f8f!important;font-size:undefined!important;font-family:undefined!important;line-height:undefined!important}.placeholder-inline{color:#8f8f8f!important;font-size:undefined!important;font-family:undefined!important;line-height:undefined!important}@media (min-width: 768px){.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Regular.ttf);font-weight:400}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Bold.ttf);font-weight:700}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Medium.ttf);font-weight:500}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Regular.ttf);font-weight:400}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Bold.ttf);font-weight:700}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Medium.ttf);font-weight:500}@font-face{font-family:Roboto Slab;src:url(fonts/roboto-slab/RobotoSlab.ttf)}.bounce-right-enter-active{animation:bounceInRight .7s}.bounce-right-leave-active{animation:bounceOutLeft .7s}.bounce-left-enter-active{animation:bounceInLeft .7s}.bounce-left-leave-active{animation:bounceOutRight .7s}.bounce-down-enter-active{animation:bounceInDown .7s}.bounce-down-leave-active{animation:bounceOutUp .7s}.bounce-up-enter-active{animation:bounceInUp .7s}.bounce-up-leave-active{animation:bounceOutDown .7s}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-2000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(2000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.sol-toast-core{border-radius:.5rem;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;margin-left:1rem;margin-right:1rem;max-height:50rem;min-height:3.5rem;overflow:hidden;padding:.5rem .5rem .5rem 1rem;position:fixed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow-wrap:break-word;width:20.5rem;z-index:80;touch-action:none;transition:top .3s ease-out .5s,bottom .3s ease-out .5s}.sol-toast-core.-multiline{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;padding-top:1rem;padding-bottom:1rem}.sol-toast-core.-multiline>.content-wrapper{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.sol-toast-core.-multiline>.content-wrapper>.content>.title{font-weight:500;font-size:1rem;line-height:1.5}.sol-toast-core.-multiline>.close>.icon{font-size:1rem}.sol-toast-core>.content-wrapper{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.sol-toast-core>.content-wrapper>.icon-container{margin-right:.75rem}.sol-toast-core>.content-wrapper>.icon-container>.icon{font-size:1.25rem}.sol-toast-core>.content-wrapper>.content{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;line-height:1.2;--tw-text-stroke-opacity: 1;-webkit-text-stroke-color:rgba(255,255,255,var(--tw-text-stroke-opacity))}.sol-toast-core>.content-wrapper>.content>.title{font-family:Rubik;font-weight:400;font-size:.875rem;margin-bottom:.25rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity));overflow:hidden;line-clamp:4;-webkit-line-clamp:4;display:-webkit-box;-webkit-box-orient:vertical}.sol-toast-core>.content-wrapper>.content>.description{font-size:.875rem;margin-bottom:.5rem;overflow:hidden;line-clamp:3;-webkit-line-clamp:3;display:-webkit-box;-webkit-box-orient:vertical}.sol-toast-core>.close{cursor:pointer;padding-left:.75rem;padding-right:.75rem}.sol-toast-core>.close>.icon{font-size:1.25rem}.sol-toast-core>.progressbar{height:.25rem;position:absolute;bottom:0px;z-index:30;transition:all linear .2s;background-color:#fff9;margin-left:-12px;will-change:width}.sol-toast-core.-success{--tw-bg-opacity: 1;background-color:rgba(138,229,191,var(--tw-bg-opacity))}.sol-toast-core.-info{--tw-bg-opacity: 1;background-color:rgba(112,203,255,var(--tw-bg-opacity))}.sol-toast-core.-danger{--tw-bg-opacity: 1;background-color:rgba(255,116,112,var(--tw-bg-opacity))}
@@ -6,7 +6,7 @@ declare const _default: {
6
6
  pure: string;
7
7
  };
8
8
  };
9
- neutrals: {
9
+ neutral: {
10
10
  low: {
11
11
  light: string;
12
12
  medium: string;
@@ -20,8 +20,8 @@ declare const _default: {
20
20
  };
21
21
  feedback: {
22
22
  positive: {
23
- medium: string;
24
23
  light: string;
24
+ medium: string;
25
25
  pure: string;
26
26
  };
27
27
  informative: {
@@ -7,4 +7,7 @@ import misc from './miscs';
7
7
  export { colors, typography, spacing, borders, effects, misc, };
8
8
  export declare const utilities: {
9
9
  outlinesForFocus: import("windicss/types/interfaces").PluginOutput;
10
+ maxLines: import("windicss/types/interfaces").PluginOutput;
11
+ debug: import("windicss/types/interfaces").PluginOutput;
12
+ placeholder: import("windicss/types/interfaces").PluginOutput;
10
13
  };
@@ -1 +1,4 @@
1
1
  export declare const outlinesForFocus: import("windicss/types/interfaces").PluginOutput;
2
+ export declare const maxLines: import("windicss/types/interfaces").PluginOutput;
3
+ export declare const debug: import("windicss/types/interfaces").PluginOutput;
4
+ export declare const placeholder: import("windicss/types/interfaces").PluginOutput;
@@ -0,0 +1,77 @@
1
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ id: string;
3
+ label?: string | undefined;
4
+ disabled?: boolean | undefined;
5
+ loading?: boolean | undefined;
6
+ searchable?: boolean | undefined;
7
+ closeOnSelect?: boolean | undefined;
8
+ fetchOnSearch?: boolean | undefined;
9
+ isMultipleSelect?: boolean | undefined;
10
+ searchPlaceholder?: string | undefined;
11
+ selected?: string | string[] | undefined;
12
+ options: (string | {
13
+ name: string;
14
+ value: string;
15
+ })[];
16
+ }>, {
17
+ loading: boolean;
18
+ closeOnSelect: boolean;
19
+ fetchOnSearch: boolean;
20
+ searchable: boolean;
21
+ options: () => never[];
22
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23
+ closeDropdown: () => void;
24
+ } & {
25
+ search: (value: string) => void;
26
+ } & {
27
+ "update:selected": (value: string | string[]) => void;
28
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
29
+ id: string;
30
+ label?: string | undefined;
31
+ disabled?: boolean | undefined;
32
+ loading?: boolean | undefined;
33
+ searchable?: boolean | undefined;
34
+ closeOnSelect?: boolean | undefined;
35
+ fetchOnSearch?: boolean | undefined;
36
+ isMultipleSelect?: boolean | undefined;
37
+ searchPlaceholder?: string | undefined;
38
+ selected?: string | string[] | undefined;
39
+ options: (string | {
40
+ name: string;
41
+ value: string;
42
+ })[];
43
+ }>, {
44
+ loading: boolean;
45
+ closeOnSelect: boolean;
46
+ fetchOnSearch: boolean;
47
+ searchable: boolean;
48
+ options: () => never[];
49
+ }>>> & {
50
+ onSearch?: ((value: string) => any) | undefined;
51
+ onCloseDropdown?: (() => any) | undefined;
52
+ "onUpdate:selected"?: ((value: string | string[]) => any) | undefined;
53
+ }, {
54
+ loading: boolean;
55
+ searchable: boolean;
56
+ closeOnSelect: boolean;
57
+ fetchOnSearch: boolean;
58
+ options: (string | {
59
+ name: string;
60
+ value: string;
61
+ })[];
62
+ }>;
63
+ export default _default;
64
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
65
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
66
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
67
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
68
+ } : {
69
+ type: import('vue').PropType<T[K]>;
70
+ required: true;
71
+ };
72
+ };
73
+ declare type __VLS_WithDefaults<P, D> = {
74
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
75
+ default: D[K];
76
+ } : P[K];
77
+ };
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -0,0 +1,2 @@
1
+ import SolDropdown from './Dropdown.vue';
2
+ export { SolDropdown, };
@@ -1,5 +1,5 @@
1
1
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- variant?: "primary" | "secondary" | "flat" | undefined;
2
+ variant?: "flat" | "primary" | "secondary" | undefined;
3
3
  dense?: boolean | undefined;
4
4
  invert?: boolean | undefined;
5
5
  id: string;
@@ -8,7 +8,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
8
8
  dense: boolean;
9
9
  invert: boolean;
10
10
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
11
- variant?: "primary" | "secondary" | "flat" | undefined;
11
+ variant?: "flat" | "primary" | "secondary" | undefined;
12
12
  dense?: boolean | undefined;
13
13
  invert?: boolean | undefined;
14
14
  id: string;
@@ -17,9 +17,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
17
17
  dense: boolean;
18
18
  invert: boolean;
19
19
  }>>>, {
20
- variant: "primary" | "secondary" | "flat";
21
- dense: boolean;
22
20
  invert: boolean;
21
+ variant: 'primary' | 'secondary' | 'flat';
22
+ dense: boolean;
23
23
  }>;
24
24
  export default _default;
25
25
  declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -28,11 +28,11 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
28
28
  direction: string;
29
29
  hideTitle: boolean;
30
30
  }>>> & {
31
- onChange?: ((value: import("./checkbox-type").CheckboxValue) => any) | undefined;
32
31
  "onUpdate:modelValue"?: ((a: any) => any) | undefined;
32
+ onChange?: ((value: import("./checkbox-type").CheckboxValue) => any) | undefined;
33
33
  }, {
34
+ direction: 'row' | 'column';
34
35
  hideTitle: boolean;
35
- direction: "row" | "column";
36
36
  }>;
37
37
  export default _default;
38
38
  declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,9 +1,9 @@
1
1
  export declare type CheckboxValue = string | number;
2
- export declare type Checkbox = {
2
+ export interface Checkbox {
3
3
  id?: string;
4
4
  name: string;
5
5
  value: CheckboxValue;
6
6
  label: string;
7
7
  checked?: boolean;
8
8
  class?: string | Record<string, boolean>;
9
- };
9
+ }
@@ -1,3 +1,3 @@
1
1
  import SolCheckbox from './Checkbox.vue';
2
2
  import SolCheckboxGroup from './CheckboxGroup.vue';
3
- export { SolCheckbox, SolCheckboxGroup };
3
+ export { SolCheckbox, SolCheckboxGroup, };
@@ -3,7 +3,9 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
3
3
  modelValue: string | number;
4
4
  invert?: boolean | undefined;
5
5
  error?: boolean | undefined;
6
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ }>, {
7
+ input: import("vue").Ref<string>;
8
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
9
  "update:modelValue": (event: string) => void;
8
10
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
11
  id: string;
@@ -1,2 +1,2 @@
1
1
  import SolInput from './Input.vue';
2
- export { SolInput };
2
+ export { SolInput, };
@@ -28,11 +28,11 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
28
28
  direction: string;
29
29
  hideTitle: boolean;
30
30
  }>>> & {
31
- onChange?: ((value: import("./radio-type").RadioValue) => any) | undefined;
32
31
  "onUpdate:modelValue"?: ((value: import("./radio-type").RadioValue) => any) | undefined;
32
+ onChange?: ((value: import("./radio-type").RadioValue) => any) | undefined;
33
33
  }, {
34
+ direction: 'row' | 'column';
34
35
  hideTitle: boolean;
35
- direction: "row" | "column";
36
36
  }>;
37
37
  export default _default;
38
38
  declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,3 +1,3 @@
1
1
  import SolRadio from './Radio.vue';
2
2
  import SolRadioGroup from './RadioGroup.vue';
3
- export { SolRadio, SolRadioGroup };
3
+ export { SolRadio, SolRadioGroup, };
@@ -1,9 +1,9 @@
1
1
  export declare type RadioValue = string | number | boolean;
2
- export declare type Radio = {
2
+ export interface Radio {
3
3
  id?: string;
4
4
  name: string;
5
5
  value: RadioValue;
6
6
  label: string;
7
7
  checked?: boolean;
8
8
  class?: string | Record<string, boolean>;
9
- };
9
+ }
@@ -0,0 +1,53 @@
1
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ id: string;
3
+ options: any;
4
+ label: string;
5
+ disabled?: boolean | undefined;
6
+ multiple?: boolean | undefined;
7
+ modelValue: string | string[];
8
+ error?: string | undefined;
9
+ fetchOnApi?: boolean | undefined;
10
+ placeholder?: string | undefined;
11
+ searchPlaceholder?: string | undefined;
12
+ searchable?: boolean | undefined;
13
+ }>, {
14
+ label: string;
15
+ placeholder: string;
16
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17
+ "update:modelValue": (value: string | string[]) => void;
18
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
19
+ id: string;
20
+ options: any;
21
+ label: string;
22
+ disabled?: boolean | undefined;
23
+ multiple?: boolean | undefined;
24
+ modelValue: string | string[];
25
+ error?: string | undefined;
26
+ fetchOnApi?: boolean | undefined;
27
+ placeholder?: string | undefined;
28
+ searchPlaceholder?: string | undefined;
29
+ searchable?: boolean | undefined;
30
+ }>, {
31
+ label: string;
32
+ placeholder: string;
33
+ }>>> & {
34
+ "onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined;
35
+ }, {
36
+ label: string;
37
+ placeholder: string;
38
+ }>;
39
+ export default _default;
40
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
41
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
42
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
43
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
44
+ } : {
45
+ type: import('vue').PropType<T[K]>;
46
+ required: true;
47
+ };
48
+ };
49
+ declare type __VLS_WithDefaults<P, D> = {
50
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
51
+ default: D[K];
52
+ } : P[K];
53
+ };
@@ -0,0 +1,2 @@
1
+ import SolSelect from './Select.vue';
2
+ export { SolSelect, };
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -1,2 +1,2 @@
1
1
  import SolSwitch from './Switch.vue';
2
- export { SolSwitch };
2
+ export { SolSwitch, };