@solfacil/girassol 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/extensions.json +2 -1
- package/.vscode/settings.json +9 -0
- package/README.md +1 -1
- package/cli/src/commands/create:component.ts +91 -0
- package/cli/src/commands/generate:plugin.ts +1 -1
- package/cli/src/commands/generate:types.ts +1 -1
- package/cli/src/commands/girassol.ts +1 -1
- package/cli/src/extensions/cli-extension.ts +1 -1
- package/cli/src/templates/components/component.spec.ts.ejs +20 -0
- package/cli/src/templates/components/component.stories.mdx.ejs +74 -0
- package/cli/src/templates/components/component.vue.ejs +23 -0
- package/cli/src/templates/components/index.ts.ejs +10 -0
- package/dist/girassol.es.js +979 -131
- package/dist/girassol.umd.js +5 -5
- package/dist/style.css +1 -1
- package/dist/theme/solfacil/colors.d.ts +2 -2
- package/dist/theme/solfacil/index.d.ts +2 -0
- package/dist/theme/solfacil/utilities.d.ts +2 -0
- package/dist/types/components/dropdown/Dropdown.vue.d.ts +75 -0
- package/dist/types/components/dropdown/dropdown.spec.d.ts +1 -0
- package/dist/types/components/dropdown/index.d.ts +2 -0
- package/dist/types/components/forms/button/Button.vue.d.ts +4 -4
- package/dist/types/components/forms/checkbox/CheckboxGroup.vue.d.ts +1 -1
- package/dist/types/components/forms/checkbox/checkbox-type.d.ts +2 -2
- package/dist/types/components/forms/checkbox/index.d.ts +1 -1
- package/dist/types/components/forms/input/index.d.ts +1 -1
- package/dist/types/components/forms/radio/RadioGroup.vue.d.ts +1 -1
- package/dist/types/components/forms/radio/index.d.ts +1 -1
- package/dist/types/components/forms/radio/radio-type.d.ts +2 -2
- package/dist/types/components/forms/switch/index.d.ts +1 -1
- package/dist/types/components/forms/textarea/Textarea.vue.d.ts +50 -0
- package/dist/types/components/forms/textarea/index.d.ts +2 -0
- package/dist/types/components/forms/textarea/textarea.spec.d.ts +1 -0
- package/dist/types/components/forms/textfield/Textfield.vue.d.ts +1 -1
- package/dist/types/components/forms/textfield/index.d.ts +1 -1
- package/dist/types/composables/use-toast/Toast.vue.d.ts +66 -0
- package/dist/types/composables/use-toast/index.d.ts +9 -0
- package/dist/types/composables/use-toast/types.d.ts +23 -0
- package/dist/types/composables/use-toast/use-toast.spec.d.ts +1 -0
- package/dist/types/composables/use-toast/useTimer.d.ts +9 -0
- package/dist/types/composables/use-toast/useTransition.d.ts +57 -0
- package/dist/types/index.d.ts +4 -1
- package/dist/vite.config.d.ts +1 -1
- package/package.json +62 -31
- package/theme/solfacil/borders.ts +2 -2
- package/theme/solfacil/colors.ts +4 -4
- package/theme/solfacil/effects.ts +3 -3
- package/theme/solfacil/index.ts +4 -2
- package/theme/solfacil/miscs.ts +2 -2
- package/theme/solfacil/spacing.ts +1 -1
- package/theme/solfacil/typography.ts +2 -2
- package/theme/solfacil/utilities.ts +71 -3
- package/vite.config.ts +17 -5
- package/windi.config.ts +5 -3
package/dist/girassol.umd.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
(function(
|
|
2
|
-
${
|
|
3
|
-
${
|
|
4
|
-
${
|
|
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
|
+
var Rt=Object.defineProperty,Ht=Object.defineProperties;var Ft=Object.getOwnPropertyDescriptors;var te=Object.getOwnPropertySymbols;var Kt=Object.prototype.hasOwnProperty,Gt=Object.prototype.propertyIsEnumerable;var ne=(u,e,y)=>e in u?Rt(u,e,{enumerable:!0,configurable:!0,writable:!0,value:y}):u[e]=y,M=(u,e)=>{for(var y in e||(e={}))Kt.call(e,y)&&ne(u,y,e[y]);if(te)for(var y of te(e))Gt.call(e,y)&&ne(u,y,e[y]);return u},q=(u,e)=>Ht(u,Ft(e));(function(u,e){typeof exports=="object"&&typeof module!="undefined"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(u=typeof globalThis!="undefined"?globalThis:u||self,e(u.girassol={},u.Vue))})(this,function(u,e){"use strict";var y="";const le=["data-testid"],oe={class:"icon -left"},ie={class:"icon -right"},D=e.defineComponent({props:{variant:{default:"primary"},dense:{type:Boolean,default:!1},invert:{type:Boolean,default:!1},id:null},setup(t){function l(r,a){return r?a:""}const n=e.useSlots(),o=e.computed(()=>!!(n!=null&&n.default)&&(!!(n!=null&&n["icon-right"])||!!(n!=null&&n["icon-left"]))),i=e.computed(()=>!(n!=null&&n.default)&&(!!(n!=null&&n["icon-right"])||!!(n!=null&&n["icon-left"])));return(r,a)=>(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(i),"-only-icon")}
|
|
5
|
+
`]),type:"button"},[e.createElementVNode("div",oe,[e.renderSlot(r.$slots,"icon-left")]),e.renderSlot(r.$slots,"default"),e.createElementVNode("div",ie,[e.renderSlot(r.$slots,"icon-right")])],10,le))}});D.install=t=>{t.component("SolButton",D)};var Ut="";const ae=["id","data-testid","value"],S=e.defineComponent({props:{id:null,modelValue:null,invert:{type:Boolean},error:{type:Boolean}},emits:["update:modelValue"],setup(t,{emit:l}){function n({target:o}){const{value:i}=o;l("update:modelValue",i)}return(o,i)=>(e.openBlock(),e.createElementBlock("input",{id:`input-${t.id}`,"data-testid":`input-${t.id}`,value:t.modelValue,class:e.normalizeClass(["sol-input-core",{"-invert":t.invert,"-error":t.error}]),onInput:n},null,42,ae))}});S.install=t=>{t.component("SolInput",S)};var Yt="";const re=["id","data-testid"],de=["for"],ce={class:"container-input"},se=["id"],me=["id"],E=e.defineComponent({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:a=>{l("update:modelValue",a)}});function i(a,d){return!!a&&!d}function r(a,d){return d?`error-${n.id}`:i(a,d)?`hint-${n.id}`:null}return(a,d)=>{var c;return e.openBlock(),e.createElementBlock("div",{id:`textfield-${t.id}`,"data-testid":`textfield-${t.id}`,class:e.normalizeClass([[`${(c=a.$props.class)!=null?c:""}`,{"-invert":t.invert}],"sol-textfield-core"])},[e.renderSlot(a.$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,de)):e.createCommentVNode("",!0)]),e.createElementVNode("div",ce,[e.renderSlot(a.$slots,"default",{},()=>[e.createVNode(S,e.mergeProps(a.$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":r(t.hint,t.error)}),null,16,["id","modelValue","data-testid","class","invert","aria-invalid","aria-describedby"])]),e.renderSlot(a.$slots,"icon")]),i(t.hint,t.error)?(e.openBlock(),e.createElementBlock("span",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,se)):t.error?(e.openBlock(),e.createElementBlock("span",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,me)):e.createCommentVNode("",!0)],10,re)}}}),ue={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},he=[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 fe(t,l){return e.openBlock(),e.createElementBlock("svg",ue,he)}var $e={name:"mi-eye",render:fe};const ge={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},ye=[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 be(t,l){return e.openBlock(),e.createElementBlock("svg",ge,ye)}var ke={name:"mi-eye-off",render:be};const we=["aria-label"],P=e.defineComponent({props:{id:{default:""},label:{default:"Sua senha"}},setup(t){const l=e.ref(!1),n=e.computed(()=>l.value?"text":"password");return(o,i)=>(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:i[0]||(i[0]=r=>l.value=!l.value)},[e.withDirectives(e.createVNode(e.unref($e),{"aria-hidden":"true"},null,512),[[e.vShow,l.value]]),e.withDirectives(e.createVNode(e.unref(ke),{"aria-hidden":"true"},null,512),[[e.vShow,!l.value]])],8,we)]),_:1},8,["id","type","label"]))}});E.install=t=>{t.component("SolTextfield",E)},P.install=t=>{t.component("SolTextfieldPassword",P)};var Wt="";const Be=["id","data-testid"],Se=["for"],Ce={class:"container-textarea"},Ve=["id","data-testid","invert","aria-invalid","aria-describedby"],pe=["id"],Ee=["id"],I=e.defineComponent({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:a=>{l("update:modelValue",a)}});function i(a,d){return!!a&&!d}function r(a,d){return d?`error-${n.id}`:i(a,d)?`hint-${n.id}`:null}return(a,d)=>{var c;return e.openBlock(),e.createElementBlock("div",{id:`textarea-${t.id}`,"data-testid":`textarea-${t.id}`,class:e.normalizeClass([[`${(c=a.$props.class)!=null?c:""}`,{"-invert":t.invert}],"sol-textarea-core"])},[e.renderSlot(a.$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",Ce,[e.renderSlot(a.$slots,"default",{},()=>[e.withDirectives(e.createElementVNode("textarea",e.mergeProps(a.$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":r(t.hint,t.error)}),null,16,Ve),[[e.vModelText,e.unref(o)]])])]),i(t.hint,t.error)?(e.openBlock(),e.createElementBlock("span",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,pe)):t.error?(e.openBlock(),e.createElementBlock("span",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,Ee)):e.createCommentVNode("",!0)],10,Be)}}});I.install=t=>{t.component("SolTextarea",I)};var Jt="";const Ne=["id","data-testid","checked","value","name"],xe=["for"],N=e.defineComponent({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]=i=>l("change",t.value))}),null,16,Ne),e.createElementVNode("label",{class:"label",for:`radio-${t.name}-${t.id}`},e.toDisplayString(t.label),9,xe)],2))}});var Qt="";const ze=["aria-labelledby"],Te=["id","data-testid"],Me=["id"],De=["id"],L=e.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(t,{emit:l}){const n=t;function o(d,c){return!!d&&!c}function i(d,c){return c?`error-${n.id}`:o(d,c)?`hint-${n.id}`:null}function r(d){return(n==null?void 0:n.modelValue)===d}function a(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,Te)]),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,m)=>{var $;return e.openBlock(),e.createElementBlock("li",{key:m},[e.createVNode(N,e.mergeProps(d.$attrs,{id:($=s==null?void 0:s.id)!=null?$:`${s.value}`,class:["radio",{"mb-micro":t.direction==="column","mr-micro":t.direction==="row"}],name:s.name,value:s.value,label:s.label,checked:r(s.value),"aria-invalid":!!t.error,"aria-describedby":i(t.hint,t.error),onChange:k=>a(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,Me)):t.error?(e.openBlock(),e.createElementBlock("p",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,De)):e.createCommentVNode("",!0)],8,ze))}});N.install=t=>{t.component("SolRadio",N)},L.install=t=>{t.component("SolRadioGroup",L)};var Xt="";const Pe=["id","data-testid","checked","value","name"],Ie=["for"],x=e.defineComponent({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]=i=>l("change",t.value))}),null,16,Pe),e.createElementVNode("label",{class:"label",for:`checkbox-${t.name}-${t.id}`},e.toDisplayString(t.label),9,Ie)],2))}});var Zt="";const Le=["aria-labelledby"],Ae=["id","data-testid"],Oe=["id"],Re=["id"],A=e.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(t,{emit:l}){const n=t;function o(c,s){return!!c&&!s}function i(c,s){return s?`error-${n.id}`:o(c,s)?`hint-${n.id}`:null}function r(c){var s;return(s=n==null?void 0:n.modelValue)==null?void 0:s.includes(c)}function a(c){return Array.isArray(n==null?void 0:n.modelValue)?[...n.modelValue,c]:[c]}function d(c){var m;l("change",c.value);const s=r(c.value)?(m=n.modelValue)==null?void 0:m.filter($=>$!==c.value):a(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,Ae)]),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,(m,$)=>{var k;return e.openBlock(),e.createElementBlock("li",{key:$},[e.createVNode(x,e.mergeProps(c.$attrs,{id:(k=m==null?void 0:m.id)!=null?k:`${m.value}`,class:["checkbox",{"mb-micro":t.direction==="column","mr-micro":t.direction==="row"}],label:m.label,name:m.name,value:m.value,checked:r(m.value),"aria-invalid":!!t.error,"aria-describedby":i(t.hint,t.error),onChange:V=>d(m)}),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,Oe)):t.error?(e.openBlock(),e.createElementBlock("p",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,Re)):e.createCommentVNode("",!0)],8,Le))}});x.install=t=>{t.component("SolCheckbox",x)},A.install=t=>{t.component("SolCheckboxGroup",A)};var vt="";const He=["id","for","data-testid"],Fe={class:"switch-container"},Ke=["id","aria-checked","aria-labelledby","data-testid","checked","value","name"],Ge=e.createElementVNode("span",{class:"ellipse"},null,-1),O=e.defineComponent({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,He),e.createElementVNode("div",Fe,[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]=i=>l("change",t.value))}),null,16,Ke),Ge])],2))}});O.install=t=>{t.component("SolSwitch",O)};function Ue(t){return e.getCurrentScope()?(e.onScopeDispose(t),!0):!1}const z=typeof window!="undefined",Ye=t=>typeof t=="string",K=()=>{};function R(t){var l;const n=e.unref(t);return(l=n==null?void 0:n.$el)!=null?l:n}const W=z?window:void 0;z&&window.document,z&&window.navigator,z&&window.location;function J(...t){let l,n,o,i;if(Ye(t[0])?([n,o,i]=t,l=W):[l,n,o,i]=t,!l)return K;let r=K;const a=e.watch(()=>R(l),c=>{r(),c&&(c.addEventListener(n,o,i),r=()=>{c.removeEventListener(n,o,i),r=K})},{immediate:!0,flush:"post"}),d=()=>{a(),r()};return Ue(d),d}function je(t,l,n={}){const{window:o=W,ignore:i,capture:r=!0}=n;if(!o)return;const a=e.ref(!0),c=[J(o,"click",m=>{const $=R(t),k=m.composedPath();!$||$===m.target||k.includes($)||!a.value||i&&i.length>0&&i.some(V=>{const B=R(V);return B&&(m.target===B||k.includes(B))})||l(m)},{passive:!0,capture:r}),J(o,"pointerdown",m=>{const $=R(t);a.value=!!$&&!m.composedPath().includes($)},{passive:!0})];return()=>c.forEach(m=>m())}const G=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},U="__vueuse_ssr_handlers__";G[U]=G[U]||{},G[U];var Q,X;z&&(window==null?void 0:window.navigator)&&((Q=window==null?void 0:window.navigator)==null?void 0:Q.platform)&&/iP(ad|hone|od)/.test((X=window==null?void 0:window.navigator)==null?void 0:X.platform);const qe={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},We=[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 Je(t,l){return e.openBlock(),e.createElementBlock("svg",qe,We)}var Qe={name:"mi-search",render:Je},en="";const Xe=["data-testid"],Ze=["id","disabled","data-testid","aria-expanded","aria-controls","aria-activedescendant","onClick","onKeyup"],ve={class:"dropdown-container"},_e=["id","data-testid","aria-labelledby"],et=["id","data-testid","selected","aria-selected","onClick","onKeyup"],tt={key:0,class:"no-data"},nt=e.createTextVNode(" Sem dados "),H=e.defineComponent({props:{id: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(),i=e.ref(!1),r=e.ref(""),a=e.ref(""),d=e.computed(()=>{var h;return n.fetchOnSearch?n.options:(h=n.options)==null?void 0:h.filter(f=>typeof f=="string"?f.includes(a.value):f.name.includes(a.value))}),c=e.computed(()=>Array.isArray(n.selected)?n.selected.join(", ").trim():n.selected);je(o,()=>{i.value&&$()});function s(){n.disabled||(i.value?$():m())}function m(){i.value=!0}function $(){At(),l("closeDropdown")}function k(h){const f=new Set(n.selected);return f.has(h)?f.delete(h):f.add(h),[...f]}function V(h){const f=typeof h=="string"?h:h.value,g=n.isMultipleSelect?k(f):f;l("update:selected",g),n.closeOnSelect&&!n.isMultipleSelect&&$()}function B(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 w=e.ref(0);function Lt({key:h,code:f}){const g=b=>{const Ot=b!=null?b:w.value;b&&(w.value=b),setTimeout(()=>{const ee=o.value.children[1].lastChild.children[Ot];r.value=ee.id,ee.focus()},0)},p=()=>{var b;n.searchable&&(w.value=0,(b=o.value.children[1].firstChild.firstElementChild)==null||b.focus())};switch(f){case"ArrowUp":return w.value>0&&(w.value-=1),g();case"ArrowDown":return i.value?(w.value<d.value.length-1&&(w.value+=1),g()):(m(),g(0));case"Home":return g(0);case"End":return g(n.options.length-1);case"Escape":return $();default:!["Enter","NumpadEnter","Space"].includes(f)&&p()}}function At(){i.value=!1,w.value=0,a.value=""}function F(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:Lt},[e.createElementVNode("button",{id:`toggle-dropdown-${t.id}`,role:"combobox",disabled:t.disabled,"data-testid":`toggle-dropdown-${t.id}`,class:"button-toggle-dropdown toggle-dropdown","aria-haspopup":"listbox","aria-expanded":i.value,"aria-controls":`dropdown-list-${t.id}`,"aria-activedescendant":r.value,onClick:e.withModifiers(s,["stop"]),onKeyup:e.withKeys(s,["space"])},[e.renderSlot(h.$slots,"toggle-dropdown",{toggle:{open:m,close:$,toggleDropdown:s},selectedSanitized:e.unref(c),selected:t.selected},()=>[e.createTextVNode(e.toDisplayString(e.unref(c)||"Selecione"),1)])],40,Ze),e.withDirectives(e.createElementVNode("div",ve,[t.searchable?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["search-container",{"-loading":t.loading}])},[e.renderSlot(h.$slots,"search",{filter:a.value},()=>[e.createVNode(S,{id:`search-dropdown-${t.id}`,modelValue:a.value,"onUpdate:modelValue":f[0]||(f[0]=g=>a.value=g),"data-testid":`search-dropdown-${t.id}`,role:"searchbox",class:"search","aria-autocomplete":"list",placeholder:t.searchPlaceholder,"aria-expanded":i.value,"aria-haspopup":"listbox","aria-controls":`dropdown-list-${t.id}`,"aria-activedescendant":r.value,"aria-label":`Pesquisar dentro da lista ${t.id}`,onClick:f[1]||(f[1]=e.withModifiers(()=>{},["stop"])),onInput:f[2]||(f[2]=g=>{var p;return l("search",(p=g.target)==null?void 0:p.value)})},null,8,["id","modelValue","data-testid","placeholder","aria-expanded","aria-controls","aria-activedescendant","aria-label"]),e.createVNode(e.unref(Qe),{"aria-hidden":"true",class:"icon"})])],2)):e.createCommentVNode("",!0),e.createElementVNode("ul",{id:`dropdown-list-${t.id}`,"data-testid":`dropdown-list-${t.id}`,role:"listbox",tabindex:"-1","aria-labelledby":`toggle-dropdown-${t.id}`,class:"dropdown-list-core"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(d),(g,p)=>(e.openBlock(),e.createElementBlock("li",{id:`option-${t.id}-${F(g,"value")}`,key:p,"data-testid":`option-${t.id}-${F(g,"value")}`,role:"option",tabindex:"-1",class:"dropdown-item",selected:B(g),"aria-selected":B(g),onClick:b=>V(g),onKeyup:[e.withKeys(b=>V(g),["enter"]),e.withKeys(b=>V(g),["space"])]},[e.renderSlot(h.$slots,"default",{text:F(g,"name"),option:g,isSelect:B},()=>[e.createTextVNode(e.toDisplayString(F(g,"name")),1)])],40,et))),128)),e.unref(d).length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("li",tt,[e.renderSlot(h.$slots,"no-data",{},()=>[nt])]))],8,_e)],512),[[e.vShow,i.value]])],40,Xe))}});H.install=t=>{t.component("SolDropdown",H)};var tn="",nn="",ln="",on="";const Z=12,C={type:"success",timeout:5e3,showIcon:!0,showCloseButton:!0,position:"top-right",hideProgressBar:!1},lt={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},ot=[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 it(t,l){return e.openBlock(),e.createElementBlock("svg",lt,ot)}var at={name:"mi-circle-check",render:it};const rt={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},dt=[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 ct(t,l){return e.openBlock(),e.createElementBlock("svg",rt,dt)}var st={name:"mi-circle-error",render:ct};const mt={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},ut=[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 ht(t,l){return e.openBlock(),e.createElementBlock("svg",mt,ut)}var ft={name:"mi-circle-warning",render:ht};const $t={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},gt=[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 yt(t,l){return e.openBlock(),e.createElementBlock("svg",$t,gt)}var bt={name:"mi-close",render:yt};function kt(t,l){const n=e.reactive({id:null,intervalId:null,startTime:0,remaining:l}),o=e.ref(100);function i(){clearInterval(n.intervalId),clearTimeout(n.id),n.remaining-=Date.now()-n.startTime}function r(){n.startTime=Date.now(),clearTimeout(n.id),n.intervalId=setInterval(()=>{o.value--},l/100-5),n.id=setTimeout(t,n.remaining)}function a(){clearInterval(n.intervalId),clearTimeout(n.id),o.value=100}return e.onMounted(()=>{l<=0}),e.onUnmounted(()=>{a()}),{start:r,stop:i,clear:a,progress:o}}function wt(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 v=(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))(v||{}),sn="";const Bt=["id","data-testid"],St={class:"content-wrapper"},Ct={key:0,class:"icon-container","aria-hidden":"true"},Vt={class:"content"},pt={key:0,class:"description"},Et=["data-testid"],Nt=e.defineComponent({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:i}=kt(()=>{var s;(s=l.onCloseHandler)==null||s.call(l)},l.timeout),{stylePosition:r}=wt(()=>({offset:l.offset,position:l.position})),a=e.computed(()=>l.title&&l.description);function d(){l.timeout>0&&o()}function c(){n()}return e.onMounted(()=>{n()}),(s,m)=>(e.openBlock(),e.createBlock(e.Transition,{name:e.unref(v)[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(r)),class:e.normalizeClass(["sol-toast-core",[`-${t.type}`,{"-multiline":e.unref(a)}]]),onKeyup:m[1]||(m[1]=e.withKeys((...$)=>t.onCloseHandler&&t.onCloseHandler(...$),["esc"])),onMouseenter:d,onMouseleave:c,onFocusin:d,onFocusout:c},[e.createElementVNode("section",St,[t.showIcon?(e.openBlock(),e.createElementBlock("div",Ct,[e.renderSlot(s.$slots,"icon-status",{type:t.type},()=>[t.type==="success"?(e.openBlock(),e.createBlock(e.unref(at),{key:0,class:"icon"})):e.createCommentVNode("",!0),t.type==="info"?(e.openBlock(),e.createBlock(e.unref(ft),{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",Vt,[e.createElementVNode("p",{class:e.normalizeClass(["title",{"-multiline":e.unref(a)}])},[e.renderSlot(s.$slots,"title",{},()=>[e.createTextVNode(e.toDisplayString(t.title),1)])],2),t.description?(e.openBlock(),e.createElementBlock("p",pt,[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(a)}]),"data-testid":`toast-close-button-${t.type}-${t.id}`,"aria-label":"close notification",onClick:m[0]||(m[0]=(...$)=>t.onCloseHandler&&t.onCloseHandler(...$))},[e.createVNode(e.unref(bt),{class:"icon"})],10,Et),t.hideProgressBar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",{key:0,class:"progressbar","aria-hidden":"true",style:e.normalizeStyle({width:`${e.unref(i)}%`})},null,4))],46,Bt)):e.createCommentVNode("",!0)]),_:3},8,["name"]))}}),T={"top-left":[],"top-right":[],"top-center":[],"bottom-left":[],"bottom-right":[],"bottom-center":[]};function xt(){let t=0;function l(){Object.entries(T).forEach(([o,i])=>{i.length&&i.forEach(r=>{var d;const a=(d=r.toastVNode.props)==null?void 0:d.id;Y(a,o)})})}return{createToast:(o,i)=>{const r=t++,a=i?zt(i):C;return i!=null&&i.showOneToast&&l(),Tt(r,a,typeof o=="string"?{title:o}:o),{close:()=>Y(r,a.position)}},clearAllToasts:l}}function zt(t){const l=q(M(M({},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 Tt(t,l,n){setTimeout(()=>{const o=Dt(l,T,Z),i=document.createElement("div");document.body.appendChild(i);const r=e.createVNode(Nt,Mt(l,t,o,Y,n));e.render(r,i),T[l.position].push({toastVNode:r,container:i}),r.component&&(r.component.props.visible=!0)},1)}function Mt(t,l,n,o,i){return q(M(M({},t),i),{id:l,offset:n,visible:!1,onCloseHandler(){o(l,t.position?t.position:"top-right")}})}function Dt(t,l,n){if(!t.position)throw new Error("no position");return l[t.position].reduce((o,{toastVNode:i})=>(o+=i.el.offsetHeight+n||0,o),n)}function Pt(t,l,n,o){for(let i=t;i<l.length;i++){const{toastVNode:r}=l[i];if(!r.el)return;const a=n.split("-")[0]||"top",d=parseInt(r.el.style[a],10)-o-Z;if(!r.component)return;r.component.props.offset=d}}function Y(t,l){var c;const n=T[l],o=n.findIndex(({toastVNode:s})=>{var m;return t===((m=s==null?void 0:s.props)==null?void 0:m.id)});if(o===-1)return;const{container:i,toastVNode:r}=n[o],a=(c=r==null?void 0:r.el)==null?void 0:c.offsetHeight;if(T[l].splice(o,1),Pt(o,n,l,a),!r.component)return;const d=r.component.props;d.visible=!1,d.onClose&&d.onClose(),setTimeout(()=>{e.render(null,i),document.body.removeChild(i)},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:D,SolInput:S,SolTextarea:I,SolTextfield:E,SolTextfieldPassword:P,SolRadio:N,SolRadioGroup:L,SolCheckbox:x,SolCheckboxGroup:A,SolSwitch:O,SolDropdown:H};function It(t){for(const l in j)t.component(l,j[l])}const _=[];for(const t in j)_.push(t);u.SolButton=D,u.SolCheckbox=x,u.SolCheckboxGroup=A,u.SolDropdown=H,u.SolInput=S,u.SolRadio=N,u.SolRadioGroup=L,u.SolSwitch=O,u.SolTextarea=I,u.SolTextfield=E,u.SolTextfieldPassword=P,u.componentsNames=_,u.install=It,u.useToast=xt,Object.defineProperties(u,{__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}.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-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}.sol-dropdown-core{position:relative}.sol-dropdown-core>.button-toggle-dropdown{min-height:3rem;scroll-margin-top:14rem}.sol-dropdown-core>.button-toggle-dropdown:disabled{cursor:not-allowed}.sol-dropdown-core>.button-toggle-dropdown:is(:focus,:focus-visible,:focus-within,:active){--tw-border-opacity: 1;border-color:rgba(255,205,112,var(--tw-border-opacity));box-shadow:0 0 0 2px #ffba4732;outline:rgb(227,109,18)}.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;max-width:25rem;min-width:12.5rem;overflow:hidden;padding-top:.5rem;padding-bottom:.5rem;box-shadow:1px 1px 6px 1px #21212132;z-index:4}.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);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}.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}.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)}*,: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-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-neutral-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(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}.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-base{font-family:Lato,sans-serif}.font-highlight{font-family:Rubik}.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-6{height:1.5rem}.h-full{height:100%}.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%}.max-w-100{max-width:25rem}.min-h-14{min-height:3.5rem}.min-w-50{min-width:12.5rem}.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}.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-2xs{padding-left:1rem}.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-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}.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}.\<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%)}@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;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}.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
|
-
|
|
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,6 @@ 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;
|
|
10
12
|
};
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
id: string;
|
|
3
|
+
disabled?: boolean | undefined;
|
|
4
|
+
loading?: boolean | undefined;
|
|
5
|
+
searchable?: boolean | undefined;
|
|
6
|
+
closeOnSelect?: boolean | undefined;
|
|
7
|
+
fetchOnSearch?: boolean | undefined;
|
|
8
|
+
isMultipleSelect?: boolean | undefined;
|
|
9
|
+
searchPlaceholder?: string | undefined;
|
|
10
|
+
selected?: string | string[] | undefined;
|
|
11
|
+
options: (string | {
|
|
12
|
+
name: string;
|
|
13
|
+
value: string;
|
|
14
|
+
})[];
|
|
15
|
+
}>, {
|
|
16
|
+
loading: boolean;
|
|
17
|
+
closeOnSelect: boolean;
|
|
18
|
+
fetchOnSearch: boolean;
|
|
19
|
+
searchable: boolean;
|
|
20
|
+
options: () => never[];
|
|
21
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
|
+
closeDropdown: () => void;
|
|
23
|
+
} & {
|
|
24
|
+
search: (value: string) => void;
|
|
25
|
+
} & {
|
|
26
|
+
"update:selected": (value: string | string[]) => void;
|
|
27
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
28
|
+
id: string;
|
|
29
|
+
disabled?: boolean | undefined;
|
|
30
|
+
loading?: boolean | undefined;
|
|
31
|
+
searchable?: boolean | undefined;
|
|
32
|
+
closeOnSelect?: boolean | undefined;
|
|
33
|
+
fetchOnSearch?: boolean | undefined;
|
|
34
|
+
isMultipleSelect?: boolean | undefined;
|
|
35
|
+
searchPlaceholder?: string | undefined;
|
|
36
|
+
selected?: string | string[] | undefined;
|
|
37
|
+
options: (string | {
|
|
38
|
+
name: string;
|
|
39
|
+
value: string;
|
|
40
|
+
})[];
|
|
41
|
+
}>, {
|
|
42
|
+
loading: boolean;
|
|
43
|
+
closeOnSelect: boolean;
|
|
44
|
+
fetchOnSearch: boolean;
|
|
45
|
+
searchable: boolean;
|
|
46
|
+
options: () => never[];
|
|
47
|
+
}>>> & {
|
|
48
|
+
onSearch?: ((value: string) => any) | undefined;
|
|
49
|
+
onCloseDropdown?: (() => any) | undefined;
|
|
50
|
+
"onUpdate:selected"?: ((value: string | string[]) => any) | undefined;
|
|
51
|
+
}, {
|
|
52
|
+
loading: boolean;
|
|
53
|
+
searchable: boolean;
|
|
54
|
+
closeOnSelect: boolean;
|
|
55
|
+
fetchOnSearch: boolean;
|
|
56
|
+
options: (string | {
|
|
57
|
+
name: string;
|
|
58
|
+
value: string;
|
|
59
|
+
})[];
|
|
60
|
+
}>;
|
|
61
|
+
export default _default;
|
|
62
|
+
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
63
|
+
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
64
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
65
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
66
|
+
} : {
|
|
67
|
+
type: import('vue').PropType<T[K]>;
|
|
68
|
+
required: true;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
declare type __VLS_WithDefaults<P, D> = {
|
|
72
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
73
|
+
default: D[K];
|
|
74
|
+
} : P[K];
|
|
75
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
variant?: "
|
|
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?: "
|
|
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: "flat" | "primary" | "secondary";
|
|
22
|
+
dense: boolean;
|
|
23
23
|
}>;
|
|
24
24
|
export default _default;
|
|
25
25
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -28,8 +28,8 @@ 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
34
|
hideTitle: boolean;
|
|
35
35
|
direction: "row" | "column";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare type CheckboxValue = string | number;
|
|
2
|
-
export
|
|
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,2 +1,2 @@
|
|
|
1
1
|
import SolInput from './Input.vue';
|
|
2
|
-
export { SolInput };
|
|
2
|
+
export { SolInput, };
|
|
@@ -28,8 +28,8 @@ 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
34
|
hideTitle: boolean;
|
|
35
35
|
direction: "row" | "column";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare type RadioValue = string | number | boolean;
|
|
2
|
-
export
|
|
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
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import SolSwitch from './Switch.vue';
|
|
2
|
-
export { SolSwitch };
|
|
2
|
+
export { SolSwitch, };
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
id: string;
|
|
3
|
+
class?: string | undefined;
|
|
4
|
+
modelValue?: string | undefined;
|
|
5
|
+
label?: string | undefined;
|
|
6
|
+
hint?: string | undefined;
|
|
7
|
+
invert?: boolean | undefined;
|
|
8
|
+
resize?: "both" | "horizontal" | "vertical" | "none" | undefined;
|
|
9
|
+
error?: string | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
modelValue: string;
|
|
12
|
+
label: string;
|
|
13
|
+
resize: string;
|
|
14
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
"update:modelValue": (event: string) => void;
|
|
16
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
17
|
+
id: string;
|
|
18
|
+
class?: string | undefined;
|
|
19
|
+
modelValue?: string | undefined;
|
|
20
|
+
label?: string | undefined;
|
|
21
|
+
hint?: string | undefined;
|
|
22
|
+
invert?: boolean | undefined;
|
|
23
|
+
resize?: "both" | "horizontal" | "vertical" | "none" | undefined;
|
|
24
|
+
error?: string | undefined;
|
|
25
|
+
}>, {
|
|
26
|
+
modelValue: string;
|
|
27
|
+
label: string;
|
|
28
|
+
resize: string;
|
|
29
|
+
}>>> & {
|
|
30
|
+
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
31
|
+
}, {
|
|
32
|
+
modelValue: string;
|
|
33
|
+
label: string;
|
|
34
|
+
resize: "both" | "horizontal" | "vertical" | "none";
|
|
35
|
+
}>;
|
|
36
|
+
export default _default;
|
|
37
|
+
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
38
|
+
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
39
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
40
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
41
|
+
} : {
|
|
42
|
+
type: import('vue').PropType<T[K]>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
declare type __VLS_WithDefaults<P, D> = {
|
|
47
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
48
|
+
default: D[K];
|
|
49
|
+
} : P[K];
|
|
50
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -25,8 +25,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
25
25
|
}>>> & {
|
|
26
26
|
"onUpdate:modelValue"?: ((event: string) => any) | undefined;
|
|
27
27
|
}, {
|
|
28
|
-
label: string;
|
|
29
28
|
modelValue: string;
|
|
29
|
+
label: string;
|
|
30
30
|
}>;
|
|
31
31
|
export default _default;
|
|
32
32
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|