@solfacil/girassol 0.1.8 → 0.1.9

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/README.md CHANGED
@@ -2,9 +2,52 @@
2
2
  <img src="http://girassol.solfacil.tech/public/girassol.svg" />
3
3
  </div>
4
4
 
5
- Girassol design system
6
- # Documentação
7
- <a href="http://girassol.solfacil.tech/?path=/docs/introdu%C3%A7%C3%A3o-introdu%C3%A7%C3%A3o--page" target="_blank">Storybook</a>
5
+
6
+ ![Dev](https://github.com/solfacil/girassol/actions/workflows/dev.yml/badge.svg)
7
+
8
+ ![Release](https://github.com/solfacil/girassol/actions/workflows/release.yml/badge.svg)
9
+
10
+ ![Production](https://github.com/solfacil/girassol/actions/workflows/production.yml/badge.svg)
11
+
12
+ [![Figma](https://img.shields.io/badge/figma-%23F24E1E.svg?style=for-the-badge&logo=figma&logoColor=white)](https://www.figma.com/files/project/36537446/Girassol-DS?fuid=1062384639428950233)
13
+
14
+
15
+
16
+ # <a href="http://girassol.solfacil.tech/?path=/docs/introdu%C3%A7%C3%A3o-introdu%C3%A7%C3%A3o--page" target="_blank">Documentação</a>
17
+
18
+ <div style="flex">
19
+ <a href="https://npm.im/@solfacil/girassol" target="_blank">
20
+ <img src="https://img.shields.io/npm/v/@solfacil/girassol.svg" />
21
+ </a>
22
+
23
+ <a href="https://npm.im/@solfacil/girassol" target="_blank">
24
+ <img src="https://img.shields.io/npm/types/@solfacil/girassol.svg" />
25
+ </a>
26
+
27
+ <a href="https://npm.im/@solfacil/girassol" target="_blank">
28
+ <img src="https://badgen.net/badge/node/v16.14/74b758?icon=npm" />
29
+ </a>
30
+
31
+ <a href="https://npm.im/@solfacil/girassol" target="_blank">
32
+ <img src="https://badgen.net/badge/typescript/v4.6.3/1081c2?icon=typescript" />
33
+ </a>
34
+
35
+ <a href="https://npm.im/@solfacil/girassol" target="_blank">
36
+ <img src="https://badgen.net/badge/vue.js/v3.2.36/42b883" />
37
+ </a>
38
+
39
+ <a href="https://bundlephobia.com/result?p=@solfacil/girassol" target="_blank">
40
+ <img src="https://badgen.net/bundlephobia/min/@solfacil/girassol" />
41
+ </a>
42
+
43
+ <a href="https://bundlephobia.com/result?p=@solfacil/girassol" target="_blank">
44
+ <img src="https://badgen.net/bundlephobia/minzip/@solfacil/girassol" />
45
+ </a>
46
+
47
+ <a href="https://bundlephobia.com/result?p=@solfacil/girassol" target="_blank">
48
+ <img src="https://badgen.net/bundlephobia/tree-shaking/@solfacil/girassol" />
49
+ </a>
50
+ </div>
8
51
 
9
52
  # Instalação
10
53
 
@@ -773,7 +773,7 @@ var IconSearch = { name: "mi-search", render: render$5 };
773
773
  var Dropdown_vue_vue_type_style_index_0_lang = "";
774
774
  const _hoisted_1$8 = ["data-testid"];
775
775
  const _hoisted_2$8 = ["id", "for"];
776
- const _hoisted_3$8 = ["id", "disabled", "data-testid", "aria-expanded", "aria-labelledby", "aria-controls", "onClick"];
776
+ const _hoisted_3$8 = ["id", "disabled", "data-testid", "aria-expanded", "aria-labelledby", "aria-label", "aria-controls", "onClick"];
777
777
  const _hoisted_4$1 = { class: "dropdown-container" };
778
778
  const _hoisted_5$1 = ["id", "data-testid", "aria-multiselectable", "aria-labelledby"];
779
779
  const _hoisted_6$1 = ["id", "data-testid", "selected", "aria-selected", "onClick", "onKeyup"];
@@ -787,6 +787,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
787
787
  props: {
788
788
  id: null,
789
789
  label: null,
790
+ ariaLabel: null,
791
+ smallerWidth: { type: Boolean },
790
792
  disabled: { type: Boolean },
791
793
  loading: { type: Boolean, default: false },
792
794
  searchable: { type: Boolean, default: false },
@@ -904,17 +906,16 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
904
906
  return openBlock(), createElementBlock("div", {
905
907
  ref_key: "el",
906
908
  ref: el,
907
- class: "sol-dropdown-core",
909
+ class: normalizeClass(["sol-dropdown-core", { "-smaller": __props.smallerWidth }]),
908
910
  "data-testid": `dropdown-${__props.id}`,
909
911
  onKeydownPassive: navigation
910
912
  }, [
911
913
  renderSlot(_ctx.$slots, "label", {}, () => [
912
- __props.label ? (openBlock(), createElementBlock("label", {
913
- key: 0,
914
+ createElementVNode("label", {
914
915
  id: `label-dropdown-${__props.id}`,
915
- class: normalizeClass(["label", { "-disabled": __props.disabled }]),
916
+ class: normalizeClass(["label", { "-disabled": __props.disabled, "sr-only": __props.ariaLabel }]),
916
917
  for: `toggle-dropdown-${__props.id}`
917
- }, toDisplayString(__props.label), 11, _hoisted_2$8)) : createCommentVNode("", true)
918
+ }, toDisplayString(__props.label || __props.ariaLabel), 11, _hoisted_2$8)
918
919
  ]),
919
920
  createElementVNode("button", {
920
921
  id: `toggle-dropdown-${__props.id}`,
@@ -924,6 +925,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
924
925
  "aria-haspopup": "listbox",
925
926
  "aria-expanded": isDropdownOpen.value,
926
927
  "aria-labelledby": `label-dropdown-${__props.id}`,
928
+ "aria-label": __props.ariaLabel,
927
929
  "aria-controls": `dropdown-list-${__props.id}`,
928
930
  onClick: withModifiers(toggleDropdown, ["stop"])
929
931
  }, [
@@ -1025,7 +1027,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
1025
1027
  ]),
1026
1028
  _: 3
1027
1029
  })
1028
- ], 40, _hoisted_1$8);
1030
+ ], 42, _hoisted_1$8);
1029
1031
  };
1030
1032
  }
1031
1033
  });
@@ -1144,7 +1146,9 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
1144
1146
  props: {
1145
1147
  id: null,
1146
1148
  options: null,
1147
- label: { default: "Label" },
1149
+ label: null,
1150
+ ariaLabel: null,
1151
+ smallerWidth: { type: Boolean },
1148
1152
  disabled: { type: Boolean },
1149
1153
  multiple: { type: Boolean },
1150
1154
  modelValue: null,
@@ -1161,6 +1165,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
1161
1165
  id: `select-${__props.id}`,
1162
1166
  selected: __props.modelValue,
1163
1167
  label: __props.label,
1168
+ "aria-label": __props.ariaLabel,
1169
+ "smaller-width": __props.smallerWidth,
1164
1170
  disabled: __props.disabled,
1165
1171
  "fetch-on-search": __props.fetchOnApi,
1166
1172
  "is-multiple-select": __props.multiple,
@@ -1175,7 +1181,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
1175
1181
  class: normalizeClass(["select-container", { "-disabled": __props.disabled, "-error": __props.error }])
1176
1182
  }, [
1177
1183
  createElementVNode("div", _hoisted_1$4, [
1178
- __props.multiple && selected.length ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(selected, (item, index) => {
1184
+ __props.multiple && (selected == null ? void 0 : selected.length) ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(selected, (item, index) => {
1179
1185
  return openBlock(), createBlock(_sfc_main$2, {
1180
1186
  id: item,
1181
1187
  key: index,
@@ -1183,7 +1189,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
1183
1189
  onClick: withModifiers(($event) => select(item), ["stop"]),
1184
1190
  onClose: ($event) => select(item)
1185
1191
  }, null, 8, ["id", "label", "onClick", "onClose"]);
1186
- }), 128)) : selected.length ? (openBlock(), createElementBlock(Fragment, { key: 1 }, [
1192
+ }), 128)) : (selected == null ? void 0 : selected.length) ? (openBlock(), createElementBlock(Fragment, { key: 1 }, [
1187
1193
  createTextVNode(toDisplayString(selected), 1)
1188
1194
  ], 64)) : (openBlock(), createElementBlock("span", _hoisted_2$4, toDisplayString(__props.placeholder), 1))
1189
1195
  ]),
@@ -1194,7 +1200,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
1194
1200
  createElementVNode("span", _hoisted_3$4, toDisplayString(__props.error), 1)
1195
1201
  ]),
1196
1202
  _: 1
1197
- }, 8, ["id", "selected", "label", "disabled", "fetch-on-search", "is-multiple-select", "search-placeholder", "searchable", "options"]);
1203
+ }, 8, ["id", "selected", "label", "aria-label", "smaller-width", "disabled", "fetch-on-search", "is-multiple-select", "search-placeholder", "searchable", "options"]);
1198
1204
  };
1199
1205
  }
1200
1206
  });
@@ -1,5 +1,5 @@
1
- (function(m,e){typeof exports=="object"&&typeof module!="undefined"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(m=typeof globalThis!="undefined"?globalThis:m||self,e(m.girassol={},m.Vue))})(this,function(m,e){"use strict";var vt=Object.defineProperty,_t=Object.defineProperties;var en=Object.getOwnPropertyDescriptors;var ie=Object.getOwnPropertySymbols;var tn=Object.prototype.hasOwnProperty,nn=Object.prototype.propertyIsEnumerable;var re=(m,e,w)=>e in m?vt(m,e,{enumerable:!0,configurable:!0,writable:!0,value:w}):m[e]=w,P=(m,e)=>{for(var w in e||(e={}))tn.call(e,w)&&re(m,w,e[w]);if(ie)for(var w of ie(e))nn.call(e,w)&&re(m,w,e[w]);return m},X=(m,e)=>_t(m,en(e));var w="";const de=["data-testid"],ce={class:"icon -left"},se={class:"icon -right"},I=e.defineComponent({name:"Button",props:{variant:{default:"primary"},dense:{type:Boolean,default:!1},invert:{type:Boolean,default:!1},id:null},setup(t){function l(i,r){return i?r:""}const n=e.useSlots(),o=e.computed(()=>!!(n!=null&&n.default)&&(!!(n!=null&&n["icon-right"])||!!(n!=null&&n["icon-left"]))),a=e.computed(()=>!(n!=null&&n.default)&&(!!(n!=null&&n["icon-right"])||!!(n!=null&&n["icon-left"])));return(i,r)=>(e.openBlock(),e.createElementBlock("button",{"data-testid":`button-${t.id}`,class:e.normalizeClass(["sol-button-core",`-${t.variant}
2
- ${l(t.dense,"-dense")} ${l(t.invert,"-invert")}
3
- ${l(e.unref(o),"-has-icon")}
4
- ${l(e.unref(a),"-only-icon")}
5
- `]),type:"button"},[e.createElementVNode("div",ce,[e.renderSlot(i.$slots,"icon-left")]),e.renderSlot(i.$slots,"default"),e.createElementVNode("div",se,[e.renderSlot(i.$slots,"icon-right")])],10,de))}});I.install=t=>{t.component("SolButton",I)};var ln="";const me=["id","data-testid","value"],p=e.defineComponent({name:"Input",props:{id:null,modelValue:null,invert:{type:Boolean},error:{type:Boolean}},emits:["update:modelValue"],setup(t,{expose:l,emit:n}){function o({target:i}){n("update:modelValue",i==null?void 0:i.value)}const a=e.ref("");return l({input:a}),(i,r)=>(e.openBlock(),e.createElementBlock("input",{id:`input-${t.id}`,ref_key:"input",ref:a,"data-testid":`input-${t.id}`,value:t.modelValue,class:e.normalizeClass(["sol-input-core",{"-invert":t.invert,"-error":t.error}]),onInput:o},null,42,me))}});p.install=t=>{t.component("SolInput",p)};var on="";const he=["id","data-testid"],ue=["for"],fe={class:"container-input"},$e=["id"],be=["id"],E=e.defineComponent({name:"Textfield",props:{id:null,class:null,modelValue:{default:""},label:{default:"label"},hint:null,invert:{type:Boolean},error:null},emits:["update:modelValue"],setup(t,{emit:l}){const n=t,o=e.computed({get:()=>n.modelValue,set:r=>{l("update:modelValue",r)}});function a(r,d){return!!r&&!d}function i(r,d){return d?`error-${n.id}`:a(r,d)?`hint-${n.id}`:null}return(r,d)=>{var c;return e.openBlock(),e.createElementBlock("div",{id:`textfield-${t.id}`,"data-testid":`textfield-${t.id}`,class:e.normalizeClass([[`${(c=r.$props.class)!=null?c:""}`,{"-invert":t.invert}],"sol-textfield-core"])},[e.renderSlot(r.$slots,"label",{},()=>[t.label?(e.openBlock(),e.createElementBlock("label",{key:0,for:`input-${t.id}`,class:"label"},[e.createElementVNode("span",null,e.toDisplayString(t.label),1)],8,ue)):e.createCommentVNode("",!0)]),e.createElementVNode("div",fe,[e.renderSlot(r.$slots,"default",{},()=>[e.createVNode(p,e.mergeProps(r.$attrs,{id:t.id,modelValue:e.unref(o),"onUpdate:modelValue":d[0]||(d[0]=s=>e.isRef(o)?o.value=s:null),"data-testid":`input-${t.id}`,class:[t.error&&"-error","input"],invert:t.invert,"aria-invalid":!!t.error,"aria-describedby":i(t.hint,t.error)}),null,16,["id","modelValue","data-testid","class","invert","aria-invalid","aria-describedby"])]),e.renderSlot(r.$slots,"icon")]),a(t.hint,t.error)?(e.openBlock(),e.createElementBlock("span",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,$e)):t.error?(e.openBlock(),e.createElementBlock("span",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,be)):e.createCommentVNode("",!0)],10,he)}}}),ye={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},ge=[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 ke(t,l){return e.openBlock(),e.createElementBlock("svg",ye,ge)}var we={name:"mi-eye",render:ke};const Be={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},Se=[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 pe(t,l){return e.openBlock(),e.createElementBlock("svg",Be,Se)}var Ce={name:"mi-eye-off",render:pe};const Ve=["aria-label"],L=e.defineComponent({name:"TextfieldPassword",props:{id:{default:""},label:{default:"Sua senha"}},setup(t){const l=e.ref(!1),n=e.computed(()=>l.value?"text":"password");return(o,a)=>(e.openBlock(),e.createBlock(E,{id:t.id,required:"",type:e.unref(n),label:t.label,placeholder:"Insira sua senha"},{icon:e.withCtx(()=>[e.createElementVNode("button",{type:"button","data-testid":"toggle-type-password","aria-label":l.value?"Hide password":"Show password",onClick:a[0]||(a[0]=i=>l.value=!l.value)},[e.withDirectives(e.createVNode(e.unref(we),{"aria-hidden":"true"},null,512),[[e.vShow,l.value]]),e.withDirectives(e.createVNode(e.unref(Ce),{"aria-hidden":"true"},null,512),[[e.vShow,!l.value]])],8,Ve)]),_:1},8,["id","type","label"]))}});E.install=t=>{t.component("SolTextfield",E)},L.install=t=>{t.component("SolTextfieldPassword",L)};var dn="";const Ee=["id","data-testid"],Ne=["for"],xe={class:"container-textarea"},ze=["id","data-testid","invert","aria-invalid","aria-describedby"],Te=["id"],Me=["id"],A=e.defineComponent({name:"Textarea",props:{id:null,class:null,modelValue:{default:""},label:{default:"label"},hint:null,invert:{type:Boolean},resize:{default:"both"},error:null},emits:["update:modelValue"],setup(t,{emit:l}){const n=t,o=e.computed({get:()=>n.modelValue,set:r=>{l("update:modelValue",r)}});function a(r,d){return!!r&&!d}function i(r,d){return d?`error-${n.id}`:a(r,d)?`hint-${n.id}`:null}return(r,d)=>{var c;return e.openBlock(),e.createElementBlock("div",{id:`textarea-${t.id}`,"data-testid":`textarea-${t.id}`,class:e.normalizeClass([[`${(c=r.$props.class)!=null?c:""}`,{"-invert":t.invert}],"sol-textarea-core"])},[e.renderSlot(r.$slots,"label",{},()=>[t.label?(e.openBlock(),e.createElementBlock("label",{key:0,for:`input-${t.id}`,class:"label"},[e.createElementVNode("span",null,e.toDisplayString(t.label),1)],8,Ne)):e.createCommentVNode("",!0)]),e.createElementVNode("div",xe,[e.renderSlot(r.$slots,"default",{},()=>[e.withDirectives(e.createElementVNode("textarea",e.mergeProps(r.$attrs,{id:`input-${t.id}`,"onUpdate:modelValue":d[0]||(d[0]=s=>e.isRef(o)?o.value=s:null),"data-testid":`input-${t.id}`,class:[t.error&&"-error","textarea"],invert:t.invert,style:{resize:t.resize},"aria-invalid":!!t.error,"aria-describedby":i(t.hint,t.error)}),null,16,ze),[[e.vModelText,e.unref(o)]])])]),a(t.hint,t.error)?(e.openBlock(),e.createElementBlock("span",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,Te)):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,Ee)}}});A.install=t=>{t.component("SolTextarea",A)};var cn="";const De=["id","data-testid","checked","value","name"],Pe=["for"],N=e.defineComponent({name:"Radio",props:{id:null,name:null,value:null,label:null,checked:null,class:null},emits:["change"],setup(t,{emit:l}){return(n,o)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sol-radio-core",n.$props.class])},[e.createElementVNode("input",e.mergeProps(n.$attrs,{id:`radio-${t.name}-${t.id}`,type:"radio",class:"radio","data-testid":`radio-${t.name}-${t.id}`,checked:t.checked,value:t.value,name:t.name,onChange:o[0]||(o[0]=a=>l("change",t.value))}),null,16,De),e.createElementVNode("label",{class:"label",for:`radio-${t.name}-${t.id}`},e.toDisplayString(t.label),9,Pe)],2))}});var sn="";const Ie=["aria-labelledby"],Le=["id","data-testid"],Ae=["id"],Oe=["id"],O=e.defineComponent({name:"RadioGroup",props:{id:null,title:null,hideTitle:{type:Boolean,default:!1},hint:null,error:null,radios:null,modelValue:null,direction:{default:"row"}},emits:["change","update:modelValue"],setup(t,{emit:l}){const n=t;function o(d,c){return!!d&&!c}function a(d,c){return c?`error-${n.id}`:o(d,c)?`hint-${n.id}`:null}function i(d){return(n==null?void 0:n.modelValue)===d}function r(d){l("change",d.value),l("update:modelValue",d.value)}return(d,c)=>(e.openBlock(),e.createElementBlock("fieldset",{class:"sol-radio-group-core","aria-labelledby":`radio-group-title-${t.id}`},[e.renderSlot(d.$slots,"title",{id:`radio-group-title-${t.id}`},()=>[e.createElementVNode("legend",{id:`radio-group-title-${t.id}`,class:e.normalizeClass(["title",{"sr-only":t.hideTitle}]),"data-testid":`radio-group-title-${t.id}`},e.toDisplayString(t.title),11,Le)]),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,f)=>{var b;return e.openBlock(),e.createElementBlock("li",{key:f},[e.createVNode(N,e.mergeProps(d.$attrs,{id:(b=s==null?void 0:s.id)!=null?b:`${s.value}`,class:["radio",{"mb-micro":t.direction==="column","mr-micro":t.direction==="row"}],name:s.name,value:s.value,label:s.label,checked:i(s.value),"aria-invalid":!!t.error,"aria-describedby":a(t.hint,t.error),onChange:y=>r(s)}),null,16,["id","class","name","value","label","checked","aria-invalid","aria-describedby","onChange"])])}),128))])],2),o(t.hint,t.error)?(e.openBlock(),e.createElementBlock("p",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,Ae)):t.error?(e.openBlock(),e.createElementBlock("p",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,Oe)):e.createCommentVNode("",!0)],8,Ie))}});N.install=t=>{t.component("SolRadio",N)},O.install=t=>{t.component("SolRadioGroup",O)};var mn="";const Re=["id","data-testid","checked","value","name"],He=["for"],x=e.defineComponent({name:"Checkbox",props:{id:null,name:null,value:null,label:null,checked:null,class:null},emits:["change"],setup(t,{emit:l}){return(n,o)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sol-checkbox-core",n.$props.class])},[e.createElementVNode("input",e.mergeProps(n.$attrs,{id:`checkbox-${t.name}-${t.id}`,type:"checkbox",class:"checkbox","data-testid":`checkbox-${t.name}-${t.id}`,checked:t.checked,value:t.value,name:t.name,onChange:o[0]||(o[0]=a=>l("change",t.value))}),null,16,Re),e.createElementVNode("label",{class:"label",for:`checkbox-${t.name}-${t.id}`},e.toDisplayString(t.label),9,He)],2))}});var hn="";const Fe=["aria-labelledby"],Ge=["id","data-testid"],Ke=["id"],Ue=["id"],R=e.defineComponent({name:"CheckboxGroup",props:{id:null,title:null,hideTitle:{type:Boolean,default:!1},hint:null,error:null,checkboxes:null,modelValue:null,direction:{default:"row"}},emits:["change","update:modelValue"],setup(t,{emit:l}){const n=t;function o(c,s){return!!c&&!s}function a(c,s){return s?`error-${n.id}`:o(c,s)?`hint-${n.id}`:null}function i(c){var s;return(s=n==null?void 0:n.modelValue)==null?void 0:s.includes(c)}function r(c){return Array.isArray(n==null?void 0:n.modelValue)?[...n.modelValue,c]:[c]}function d(c){var f;l("change",c.value);const s=i(c.value)?(f=n.modelValue)==null?void 0:f.filter(b=>b!==c.value):r(c.value);l("update:modelValue",s)}return(c,s)=>(e.openBlock(),e.createElementBlock("fieldset",{class:"sol-checkbox-group-core","aria-labelledby":`checkbox-group-title-${t.id}`},[e.renderSlot(c.$slots,"title",{id:`checkbox-group-title-${t.id}`},()=>[e.createElementVNode("legend",{id:`checkbox-group-title-${t.id}`,class:e.normalizeClass(["title",{"sr-only":t.hideTitle}]),"data-testid":`checkbox-group-title-${t.id}`},e.toDisplayString(t.title),11,Ge)]),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,(f,b)=>{var y;return e.openBlock(),e.createElementBlock("li",{key:b},[e.createVNode(x,e.mergeProps(c.$attrs,{id:(y=f==null?void 0:f.id)!=null?y:`${f.value}`,class:["checkbox",{"mb-micro":t.direction==="column","mr-micro":t.direction==="row"}],label:f.label,name:f.name,value:f.value,checked:i(f.value),"aria-invalid":!!t.error,"aria-describedby":a(t.hint,t.error),onChange:B=>d(f)}),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,Ke)):t.error?(e.openBlock(),e.createElementBlock("p",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,Ue)):e.createCommentVNode("",!0)],8,Fe))}});x.install=t=>{t.component("SolCheckbox",x)},R.install=t=>{t.component("SolCheckboxGroup",R)};var un="";const Ye=["id","for","data-testid"],je={class:"switch-container"},We=["id","aria-checked","aria-labelledby","data-testid","checked","value","name"],qe=e.createElementVNode("span",{class:"ellipse"},null,-1),H=e.defineComponent({name:"Switch",props:{id:null,name:null,value:null,label:null,checked:{type:Boolean},class:null,hideLabel:{type:Boolean},horizontalLabel:{type:Boolean}},emits:["change"],setup(t,{emit:l}){return(n,o)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sol-switch-core",[n.$props.class,{"-horizontal":t.horizontalLabel}]])},[e.createElementVNode("label",{id:`switch-label-${t.name}-${t.id}`,class:e.normalizeClass(["label",{"mb-1":!t.horizontalLabel,"sr-only":t.hideLabel}]),for:`switch-${t.name}-${t.id}`,"data-testid":`switch-label-${t.name}-${t.id}`},e.toDisplayString(t.label),11,Ye),e.createElementVNode("div",je,[e.createElementVNode("input",e.mergeProps(n.$attrs,{id:`switch-${t.name}-${t.id}`,type:"checkbox",class:"switch",role:"switch","aria-checked":t.checked,"aria-labelledby":`switch-label-${t.name}-${t.id}`,"data-testid":`switch-${t.name}-${t.id}`,checked:t.checked,value:t.value,name:t.name,onChange:o[0]||(o[0]=a=>l("change",t.value))}),null,16,We),qe])],2))}});H.install=t=>{t.component("SolSwitch",H)};function Je(t){return e.getCurrentScope()?(e.onScopeDispose(t),!0):!1}var Z;const z=typeof window!="undefined",Qe=t=>typeof t=="string",Y=()=>{};z&&((Z=window==null?void 0:window.navigator)==null?void 0:Z.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function F(t){var l;const n=e.unref(t);return(l=n==null?void 0:n.$el)!=null?l:n}const v=z?window:void 0;z&&window.document,z&&window.navigator,z&&window.location;function j(...t){let l,n,o,a;if(Qe(t[0])?([n,o,a]=t,l=v):[l,n,o,a]=t,!l)return Y;let i=Y;const r=e.watch(()=>F(l),c=>{i(),c&&(c.addEventListener(n,o,a),i=()=>{c.removeEventListener(n,o,a),i=Y})},{immediate:!0,flush:"post"}),d=()=>{r(),i()};return Je(d),d}function Xe(t,l,n={}){const{window:o=v,ignore:a,capture:i=!0}=n;if(!o)return;const r=e.ref(!0);let d;const c=b=>{o.clearTimeout(d);const y=F(t),B=b.composedPath();!y||y===b.target||B.includes(y)||!r.value||a&&a.length>0&&a.some(S=>{const g=F(S);return g&&(b.target===g||B.includes(g))})||l(b)},s=[j(o,"click",c,{passive:!0,capture:i}),j(o,"pointerdown",b=>{const y=F(t);r.value=!!y&&!b.composedPath().includes(y)},{passive:!0}),j(o,"pointerup",b=>{d=o.setTimeout(()=>c(b),50)},{passive:!0})];return()=>s.forEach(b=>b())}const W=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},q="__vueuse_ssr_handlers__";W[q]=W[q]||{},W[q];const Ze={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},ve=[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 _e(t,l){return e.openBlock(),e.createElementBlock("svg",Ze,ve)}var et={name:"mi-search",render:_e},$n="";const tt=["data-testid"],nt=["id","for"],lt=["id","disabled","data-testid","aria-expanded","aria-labelledby","aria-controls","onClick"],ot={class:"dropdown-container"},at=["id","data-testid","aria-multiselectable","aria-labelledby"],it=["id","data-testid","selected","aria-selected","onClick","onKeyup"],rt={key:0,class:"no-data"},dt=e.createTextVNode(" Sem dados "),T=e.defineComponent({name:"Dropdown",props:{id:null,label:null,disabled:{type:Boolean},loading:{type:Boolean,default:!1},searchable:{type:Boolean,default:!1},closeOnSelect:{type:Boolean,default:!0},fetchOnSearch:{type:Boolean,default:!1},isMultipleSelect:{type:Boolean},searchPlaceholder:null,selected:null,options:{default:()=>[]}},emits:["closeDropdown","search","update:selected"],setup(t,{emit:l}){const n=t,o=e.ref(),a=e.ref(!1),i=e.ref(""),r=e.computed(()=>{var h;return n.fetchOnSearch?n.options:(h=n.options)==null?void 0:h.filter(u=>typeof u=="string"?u.includes(i.value):u.name.includes(i.value))}),d=e.computed(()=>Array.isArray(n.selected)?n.selected.join(", ").trim():n.selected);Xe(o,()=>{a.value&&f()});function c(){n.disabled||(a.value?f():s())}function s(){a.value=!0}function f(){Zt(),l("closeDropdown")}function b(h){const u=new Set(n.selected);return u.has(h)?u.delete(h):u.add(h),[...u]}function y(h){const u=typeof h=="string"?h:h.value,$=n.isMultipleSelect?b(u):u;l("update:selected",$),n.closeOnSelect&&!n.isMultipleSelect&&f()}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 S=e.reactive({list:void 0,search:void 0}),g=e.reactive({id:"",index:0});function Xt({code:h}){const u=k=>{const U=k!=null?k:g.index;k!==void 0&&(g.index=k),setTimeout(()=>{var oe,ae;const V=(oe=S.list)==null?void 0:oe.children[U];g.id=(ae=V==null?void 0:V.id)!=null?ae:"",V==null||V.focus()},0)},$=()=>{var k;n.searchable&&(g.index=0,(k=S==null?void 0:S.search)==null||k.focus())};switch(h){case"ArrowUp":return g.index>0&&(g.index-=1),u();case"ArrowDown":return a.value?(g.index<r.value.length-1&&(g.index+=1),u()):(s(),u(0));case"Home":return u(0);case"End":return u(n.options.length-1);case"Escape":return f();default:!["Enter","NumpadEnter","Space"].includes(h)&&$()}}function Zt(){a.value=!1,g.index=0,i.value=""}function K(h,u){return typeof h=="string"?h:h[u!=null?u:"value"]}function le(h,u){S[h]=u!=null?u:void 0}return(h,u)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"el",ref:o,class:"sol-dropdown-core","data-testid":`dropdown-${t.id}`,onKeydownPassive:Xt},[e.renderSlot(h.$slots,"label",{},()=>[t.label?(e.openBlock(),e.createElementBlock("label",{key:0,id:`label-dropdown-${t.id}`,class:e.normalizeClass(["label",{"-disabled":t.disabled}]),for:`toggle-dropdown-${t.id}`},e.toDisplayString(t.label),11,nt)):e.createCommentVNode("",!0)]),e.createElementVNode("button",{id:`toggle-dropdown-${t.id}`,disabled:t.disabled,"data-testid":`toggle-dropdown-${t.id}`,class:"button-toggle-dropdown toggle-dropdown","aria-haspopup":"listbox","aria-expanded":a.value,"aria-labelledby":`label-dropdown-${t.id}`,"aria-controls":`dropdown-list-${t.id}`,onClick:e.withModifiers(c,["stop"])},[e.renderSlot(h.$slots,"toggle-dropdown",{toggle:{open:s,close:f,toggleDropdown:c},isOpen:a.value,select:y,selectedSanitized:e.unref(d),selected:t.selected},()=>[e.createTextVNode(e.toDisplayString(e.unref(d)||"Selecione"),1)])],8,lt),e.createVNode(e.Transition,{mode:"out-in",name:"dropdown"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",ot,[t.searchable?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["search-container",{"-loading":t.loading}])},[e.renderSlot(h.$slots,"search",{filter:i.value},()=>[e.createVNode(p,{id:`search-dropdown-${t.id}`,ref:$=>le("search",$==null?void 0:$.input),modelValue:i.value,"onUpdate:modelValue":u[0]||(u[0]=$=>i.value=$),"data-testid":`search-dropdown-${t.id}`,role:"combobox",class:"search","aria-autocomplete":"list",placeholder:t.searchPlaceholder,"aria-expanded":a.value,"aria-haspopup":"listbox","aria-owns":`dropdown-list-${t.id}`,"aria-controls":`dropdown-list-${t.id}`,"aria-activedescendant":g.id,"aria-labelledby":`label-dropdown-${t.id}`,onClick:u[1]||(u[1]=e.withModifiers(()=>{},["stop"])),onInput:u[2]||(u[2]=$=>{var k;return l("search",(k=$.target)==null?void 0:k.value)})},null,8,["id","modelValue","data-testid","placeholder","aria-expanded","aria-owns","aria-controls","aria-activedescendant","aria-labelledby"]),e.createVNode(e.unref(et),{"aria-hidden":"true",class:"icon"})])],2)):e.createCommentVNode("",!0),e.createElementVNode("ul",{id:`dropdown-list-${t.id}`,ref:$=>le("list",$),"data-testid":`dropdown-list-${t.id}`,role:"listbox",tabindex:"-1","aria-multiselectable":t.isMultipleSelect,"aria-labelledby":`label-dropdown-${t.id}`,class:"dropdown-list-core"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(r),($,k)=>(e.openBlock(),e.createElementBlock("li",{id:`option-${t.id}-${K($,"value")}`,key:k,"data-testid":`option-${t.id}-${K($,"value")}`,role:"option",tabindex:"-1",class:"dropdown-item",style:e.normalizeStyle(`--item: ${k+1}`),selected:B($),"aria-selected":B($),onClick:U=>y($),onKeyup:[e.withKeys(U=>y($),["enter"]),e.withKeys(U=>y($),["space"])]},[e.renderSlot(h.$slots,"default",{text:K($,"name"),option:$,isSelect:B},()=>[e.createTextVNode(e.toDisplayString(K($,"name")),1)])],44,it))),128)),e.unref(r).length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("li",rt,[e.renderSlot(h.$slots,"no-data",{},()=>[dt])]))],8,at)],512),[[e.vShow,a.value]])]),_:3})],40,tt))}});T.install=t=>{t.component("SolDropdown",T)};const ct={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},st=[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 mt(t,l){return e.openBlock(),e.createElementBlock("svg",ct,st)}var _={name:"mi-close",render:mt},yn="";const ht=["id","data-testid","title","aria-describedby","aria-disabled","onKeydown"],ut=["id"],ft={class:"label"},M=e.defineComponent({name:"Chip",props:{id:null,label:null,selected:{type:Boolean},disabled:{type:Boolean},removable:{type:Boolean,default:!0}},emits:["close","update:selected"],setup(t,{emit:l}){const n=t;function o({code:a}){if(!n.disabled)switch(a){case"Enter":case"NumpadEnter":case"Space":return l("update:selected");case"Delete":case"Backspace":return n.removable&&l("close");default:return!1}}return(a,i)=>(e.openBlock(),e.createElementBlock("div",{id:`chip-${t.id}`,"data-testid":`chip-${t.id}`,class:e.normalizeClass(["sol-chip-core",{"-selected":t.selected,"-disabled":t.disabled}]),tabindex:"0",title:t.label,"aria-describedby":`chip-description-${t.id}`,"aria-disabled":t.disabled,onClick:i[1]||(i[1]=r=>l("update:selected")),onKeydown:e.withModifiers(o,["self"])},[e.createElementVNode("span",{id:`chip-description-${t.id}`,"z-index":"-1",class:"sr-only"},"Press Delete or Backspace to remove this Chip",8,ut),e.createElementVNode("span",ft,[e.renderSlot(a.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.label),1)])]),t.removable?(e.openBlock(),e.createElementBlock("i",{key:0,role:"presentation","aira-hidden":"true",class:"close",onClick:i[0]||(i[0]=e.withModifiers(r=>l("close"),["stop"]))},[e.createVNode(e.unref(_),{class:"icon"})])):e.createCommentVNode("",!0)],42,ht))}}),$t={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},bt=[e.createElementVNode("path",{fill:"currentColor",d:"m17 10l-5 6l-5-6h10z"},null,-1)];function yt(t,l){return e.openBlock(),e.createElementBlock("svg",$t,bt)}var gt={name:"mi-caret-down",render:yt},kn="";const kt={class:"select"},wt={key:2,class:"placeholder-inline"},Bt={class:"error"},G=e.defineComponent({name:"Select",props:{id:null,options:null,label:{default:"Label"},disabled:{type:Boolean},multiple:{type:Boolean},modelValue:null,error:null,fetchOnApi:{type:Boolean},placeholder:{default:"Selecione"},searchPlaceholder:null,searchable:{type:Boolean}},emits:["update:modelValue"],setup(t,{emit:l}){return(n,o)=>(e.openBlock(),e.createBlock(T,{id:`select-${t.id}`,selected:t.modelValue,label:t.label,disabled:t.disabled,"fetch-on-search":t.fetchOnApi,"is-multiple-select":t.multiple,class:"sol-select-core","search-placeholder":t.searchPlaceholder,searchable:t.searchable,options:t.options,"onUpdate:selected":o[0]||(o[0]=a=>l("update:modelValue",a))},{"toggle-dropdown":e.withCtx(({selected:a,isOpen:i,select:r})=>[e.createElementVNode("div",{class:e.normalizeClass(["select-container",{"-disabled":t.disabled,"-error":t.error}])},[e.createElementVNode("div",kt,[t.multiple&&a.length?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(a,(d,c)=>(e.openBlock(),e.createBlock(M,{id:d,key:c,label:d,onClick:e.withModifiers(s=>r(d),["stop"]),onClose:s=>r(d)},null,8,["id","label","onClick","onClose"]))),128)):a.length?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(a),1)],64)):(e.openBlock(),e.createElementBlock("span",wt,e.toDisplayString(t.placeholder),1))]),e.createVNode(e.unref(gt),{class:e.normalizeClass(["icon",{"-open":i}])},null,8,["class"])],2),e.createElementVNode("span",Bt,e.toDisplayString(t.error),1)]),_:1},8,["id","selected","label","disabled","fetch-on-search","is-multiple-select","search-placeholder","searchable","options"]))}});G.install=t=>{t.component("SolSelect",G)},M.install=t=>{t.component("SolChip",M)};var wn="",Bn="",Sn="",pn="";const ee=12,C={type:"success",timeout:5e3,showIcon:!0,showCloseButton:!0,position:"top-right",hideProgressBar:!1};function St(t,l){const n=e.reactive({id:null,intervalId:null,startTime:0,remaining:l}),o=e.ref(100);function a(){clearInterval(n.intervalId),clearTimeout(n.id),n.remaining-=Date.now()-n.startTime}function i(){n.startTime=Date.now(),clearTimeout(n.id),n.intervalId=setInterval(()=>{o.value--},l/100-5),n.id=setTimeout(t,n.remaining)}function r(){clearInterval(n.intervalId),clearTimeout(n.id),o.value=100}return e.onMounted(()=>{if(l<=0)return!1}),e.onUnmounted(()=>{r()}),{start:i,stop:a,clear:r,progress:o}}function pt(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 te=(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))(te||{});const Ct={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},Vt=[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 Et(t,l){return e.openBlock(),e.createElementBlock("svg",Ct,Vt)}var Nt={name:"mi-circle-check",render:Et};const xt={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},zt=[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 Tt(t,l){return e.openBlock(),e.createElementBlock("svg",xt,zt)}var Mt={name:"mi-circle-error",render:Tt};const Dt={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},Pt=[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 It(t,l){return e.openBlock(),e.createElementBlock("svg",Dt,Pt)}var Lt={name:"mi-circle-warning",render:It},Nn="";const At=["id","data-testid"],Ot={class:"content-wrapper"},Rt={key:0,class:"icon-container","aria-hidden":"true"},Ht={class:"content"},Ft={key:0,class:"description"},Gt=["data-testid"],Kt=e.defineComponent({name:"Toast",props:{id:null,type:{default:C.type},visible:{type:Boolean,default:!1},title:null,description:null,timeout:null,hideProgressBar:{type:Boolean,default:C.hideProgressBar},showIcon:{type:Boolean,default:C.showIcon},offset:{default:0},onClose:null,onCloseHandler:null,position:{default:C.position}},setup(t){const l=t,{start:n,stop:o,progress:a}=St(()=>{var s;(s=l.onCloseHandler)==null||s.call(l)},l.timeout),{stylePosition:i}=pt(()=>({offset:l.offset,position:l.position})),r=e.computed(()=>l.title&&l.description);function d(){l.timeout>0&&o()}function c(){n()}return e.onMounted(()=>{n()}),(s,f)=>(e.openBlock(),e.createBlock(e.Transition,{name:e.unref(te)[t.position],type:"animation"},{default:e.withCtx(()=>[t.visible?(e.openBlock(),e.createElementBlock("div",{key:0,id:`toast-${t.type}-${t.id}`,role:"status","data-testid":`toast-${t.type}-${t.id}`,style:e.normalizeStyle(e.unref(i)),class:e.normalizeClass(["sol-toast-core",[`-${t.type}`,{"-multiline":e.unref(r)}]]),onKeyup:f[1]||(f[1]=e.withKeys((...b)=>t.onCloseHandler&&t.onCloseHandler(...b),["esc"])),onMouseenter:d,onMouseleave:c,onFocusin:d,onFocusout:c},[e.createElementVNode("section",Ot,[t.showIcon?(e.openBlock(),e.createElementBlock("div",Rt,[e.renderSlot(s.$slots,"icon-status",{type:t.type},()=>[t.type==="success"?(e.openBlock(),e.createBlock(e.unref(Nt),{key:0,class:"icon"})):e.createCommentVNode("",!0),t.type==="info"?(e.openBlock(),e.createBlock(e.unref(Lt),{key:1,class:"icon"})):e.createCommentVNode("",!0),t.type==="danger"?(e.openBlock(),e.createBlock(e.unref(Mt),{key:2,class:"icon"})):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0),e.createElementVNode("div",Ht,[e.createElementVNode("p",{class:e.normalizeClass(["title",{"-multiline":e.unref(r)}])},[e.renderSlot(s.$slots,"title",{},()=>[e.createTextVNode(e.toDisplayString(t.title),1)])],2),t.description?(e.openBlock(),e.createElementBlock("p",Ft,[e.renderSlot(s.$slots,"description",{},()=>[e.createTextVNode(e.toDisplayString(t.description),1)])])):e.createCommentVNode("",!0)])]),e.createElementVNode("button",{type:"button",class:e.normalizeClass(["close",{"-multiline":e.unref(r)}]),"data-testid":`toast-close-button-${t.type}-${t.id}`,"aria-label":"close notification",onClick:f[0]||(f[0]=(...b)=>t.onCloseHandler&&t.onCloseHandler(...b))},[e.createVNode(e.unref(_),{class:"icon"})],10,Gt),t.hideProgressBar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",{key:0,class:"progressbar","aria-hidden":"true",style:e.normalizeStyle({width:`${e.unref(a)}%`})},null,4))],46,At)):e.createCommentVNode("",!0)]),_:3},8,["name"]))}}),D={"top-left":[],"top-right":[],"top-center":[],"bottom-left":[],"bottom-right":[],"bottom-center":[]};function Ut(){let t=0;function l(){Object.entries(D).forEach(([o,a])=>{a.length&&a.forEach(i=>{var d;const r=(d=i.toastVNode.props)==null?void 0:d.id;J(r,o)})})}return{createToast:(o,a)=>{const i=t++,r=a?Yt(a):C;return a!=null&&a.showOneToast&&l(),jt(i,r,typeof o=="string"?{title:o}:o),{close:()=>J(i,r.position)}},clearAllToasts:l}}function Yt(t){const l=X(P(P({},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 jt(t,l,n){setTimeout(()=>{const o=qt(l,D,ee),a=document.createElement("div");document.body.appendChild(a);const i=e.createVNode(Kt,Wt(l,t,o,J,n));e.render(i,a),D[l.position].push({toastVNode:i,container:a}),i.component&&(i.component.props.visible=!0)},1)}function Wt(t,l,n,o,a){return X(P(P({},t),a),{id:l,offset:n,visible:!1,onCloseHandler(){o(l,t.position?t.position:"top-right")}})}function qt(t,l,n){if(!t.position)throw new Error("no position");return l[t.position].reduce((o,{toastVNode:a})=>(o+=a.el.offsetHeight+n||0,o),n)}function Jt(t,l,n,o){for(let a=t;a<l.length;a++){const{toastVNode:i}=l[a];if(!i.el)return;const r=n.split("-")[0]||"top",d=parseInt(i.el.style[r],10)-o-ee;if(!i.component)return;i.component.props.offset=d}}function J(t,l){var c;const n=D[l],o=n.findIndex(({toastVNode:s})=>{var f;return t===((f=s==null?void 0:s.props)==null?void 0:f.id)});if(o===-1)return;const{container:a,toastVNode:i}=n[o],r=(c=i==null?void 0:i.el)==null?void 0:c.offsetHeight;if(D[l].splice(o,1),Jt(o,n,l,r),!i.component)return;const d=i.component.props;d.visible=!1,d.onClose&&d.onClose(),setTimeout(()=>{e.render(null,a),document.body.removeChild(a)},1e3)}console.log("%c\u{1F33B}[Girassol]\u{1F33B}","padding: 8px;background: #212121;color: gold; font-family: 'Fira code'; font-weight: bold; font-size: 1.2rem");const Q={SolButton:I,SolInput:p,SolTextarea:A,SolTextfield:E,SolTextfieldPassword:L,SolRadio:N,SolRadioGroup:O,SolCheckbox:x,SolCheckboxGroup:R,SolSwitch:H,SolDropdown:T,SolSelect:G,SolChip:M};function Qt(t){for(const l in Q)t.component(l,Q[l])}const ne=[];for(const t in Q)ne.push(t);m.SolButton=I,m.SolCheckbox=x,m.SolCheckboxGroup=R,m.SolChip=M,m.SolDropdown=T,m.SolInput=p,m.SolRadio=N,m.SolRadioGroup=O,m.SolSelect=G,m.SolSwitch=H,m.SolTextarea=A,m.SolTextfield=E,m.SolTextfieldPassword=L,m.componentsNames=ne,m.install=Qt,m.useToast=Ut,Object.defineProperties(m,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
1
+ (function(m,e){typeof exports=="object"&&typeof module!="undefined"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(m=typeof globalThis!="undefined"?globalThis:m||self,e(m.girassol={},m.Vue))})(this,function(m,e){"use strict";var vt=Object.defineProperty,_t=Object.defineProperties;var el=Object.getOwnPropertyDescriptors;var ie=Object.getOwnPropertySymbols;var tl=Object.prototype.hasOwnProperty,ll=Object.prototype.propertyIsEnumerable;var re=(m,e,w)=>e in m?vt(m,e,{enumerable:!0,configurable:!0,writable:!0,value:w}):m[e]=w,P=(m,e)=>{for(var w in e||(e={}))tl.call(e,w)&&re(m,w,e[w]);if(ie)for(var w of ie(e))ll.call(e,w)&&re(m,w,e[w]);return m},X=(m,e)=>_t(m,el(e));var w="";const de=["data-testid"],ce={class:"icon -left"},se={class:"icon -right"},L=e.defineComponent({name:"Button",props:{variant:{default:"primary"},dense:{type:Boolean,default:!1},invert:{type:Boolean,default:!1},id:null},setup(t){function n(i,r){return i?r:""}const l=e.useSlots(),a=e.computed(()=>!!(l!=null&&l.default)&&(!!(l!=null&&l["icon-right"])||!!(l!=null&&l["icon-left"]))),o=e.computed(()=>!(l!=null&&l.default)&&(!!(l!=null&&l["icon-right"])||!!(l!=null&&l["icon-left"])));return(i,r)=>(e.openBlock(),e.createElementBlock("button",{"data-testid":`button-${t.id}`,class:e.normalizeClass(["sol-button-core",`-${t.variant}
2
+ ${n(t.dense,"-dense")} ${n(t.invert,"-invert")}
3
+ ${n(e.unref(a),"-has-icon")}
4
+ ${n(e.unref(o),"-only-icon")}
5
+ `]),type:"button"},[e.createElementVNode("div",ce,[e.renderSlot(i.$slots,"icon-left")]),e.renderSlot(i.$slots,"default"),e.createElementVNode("div",se,[e.renderSlot(i.$slots,"icon-right")])],10,de))}});L.install=t=>{t.component("SolButton",L)};var nl="";const me=["id","data-testid","value"],C=e.defineComponent({name:"Input",props:{id:null,modelValue:null,invert:{type:Boolean},error:{type:Boolean}},emits:["update:modelValue"],setup(t,{expose:n,emit:l}){function a({target:i}){l("update:modelValue",i==null?void 0:i.value)}const o=e.ref("");return n({input:o}),(i,r)=>(e.openBlock(),e.createElementBlock("input",{id:`input-${t.id}`,ref_key:"input",ref:o,"data-testid":`input-${t.id}`,value:t.modelValue,class:e.normalizeClass(["sol-input-core",{"-invert":t.invert,"-error":t.error}]),onInput:a},null,42,me))}});C.install=t=>{t.component("SolInput",C)};var ol="";const he=["id","data-testid"],ue=["for"],fe={class:"container-input"},$e=["id"],be=["id"],E=e.defineComponent({name:"Textfield",props:{id:null,class:null,modelValue:{default:""},label:{default:"label"},hint:null,invert:{type:Boolean},error:null},emits:["update:modelValue"],setup(t,{emit:n}){const l=t,a=e.computed({get:()=>l.modelValue,set:r=>{n("update:modelValue",r)}});function o(r,d){return!!r&&!d}function i(r,d){return d?`error-${l.id}`:o(r,d)?`hint-${l.id}`:null}return(r,d)=>{var c;return e.openBlock(),e.createElementBlock("div",{id:`textfield-${t.id}`,"data-testid":`textfield-${t.id}`,class:e.normalizeClass([[`${(c=r.$props.class)!=null?c:""}`,{"-invert":t.invert}],"sol-textfield-core"])},[e.renderSlot(r.$slots,"label",{},()=>[t.label?(e.openBlock(),e.createElementBlock("label",{key:0,for:`input-${t.id}`,class:"label"},[e.createElementVNode("span",null,e.toDisplayString(t.label),1)],8,ue)):e.createCommentVNode("",!0)]),e.createElementVNode("div",fe,[e.renderSlot(r.$slots,"default",{},()=>[e.createVNode(C,e.mergeProps(r.$attrs,{id:t.id,modelValue:e.unref(a),"onUpdate:modelValue":d[0]||(d[0]=s=>e.isRef(a)?a.value=s:null),"data-testid":`input-${t.id}`,class:[t.error&&"-error","input"],invert:t.invert,"aria-invalid":!!t.error,"aria-describedby":i(t.hint,t.error)}),null,16,["id","modelValue","data-testid","class","invert","aria-invalid","aria-describedby"])]),e.renderSlot(r.$slots,"icon")]),o(t.hint,t.error)?(e.openBlock(),e.createElementBlock("span",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,$e)):t.error?(e.openBlock(),e.createElementBlock("span",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,be)):e.createCommentVNode("",!0)],10,he)}}}),ye={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},ge=[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 ke(t,n){return e.openBlock(),e.createElementBlock("svg",ye,ge)}var we={name:"mi-eye",render:ke};const Be={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},Se=[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 Ce(t,n){return e.openBlock(),e.createElementBlock("svg",Be,Se)}var pe={name:"mi-eye-off",render:Ce};const Ve=["aria-label"],I=e.defineComponent({name:"TextfieldPassword",props:{id:{default:""},label:{default:"Sua senha"}},setup(t){const n=e.ref(!1),l=e.computed(()=>n.value?"text":"password");return(a,o)=>(e.openBlock(),e.createBlock(E,{id:t.id,required:"",type:e.unref(l),label:t.label,placeholder:"Insira sua senha"},{icon:e.withCtx(()=>[e.createElementVNode("button",{type:"button","data-testid":"toggle-type-password","aria-label":n.value?"Hide password":"Show password",onClick:o[0]||(o[0]=i=>n.value=!n.value)},[e.withDirectives(e.createVNode(e.unref(we),{"aria-hidden":"true"},null,512),[[e.vShow,n.value]]),e.withDirectives(e.createVNode(e.unref(pe),{"aria-hidden":"true"},null,512),[[e.vShow,!n.value]])],8,Ve)]),_:1},8,["id","type","label"]))}});E.install=t=>{t.component("SolTextfield",E)},I.install=t=>{t.component("SolTextfieldPassword",I)};var rl="";const Ee=["id","data-testid"],Ne=["for"],xe={class:"container-textarea"},ze=["id","data-testid","invert","aria-invalid","aria-describedby"],Te=["id"],Me=["id"],A=e.defineComponent({name:"Textarea",props:{id:null,class:null,modelValue:{default:""},label:{default:"label"},hint:null,invert:{type:Boolean},resize:{default:"both"},error:null},emits:["update:modelValue"],setup(t,{emit:n}){const l=t,a=e.computed({get:()=>l.modelValue,set:r=>{n("update:modelValue",r)}});function o(r,d){return!!r&&!d}function i(r,d){return d?`error-${l.id}`:o(r,d)?`hint-${l.id}`:null}return(r,d)=>{var c;return e.openBlock(),e.createElementBlock("div",{id:`textarea-${t.id}`,"data-testid":`textarea-${t.id}`,class:e.normalizeClass([[`${(c=r.$props.class)!=null?c:""}`,{"-invert":t.invert}],"sol-textarea-core"])},[e.renderSlot(r.$slots,"label",{},()=>[t.label?(e.openBlock(),e.createElementBlock("label",{key:0,for:`input-${t.id}`,class:"label"},[e.createElementVNode("span",null,e.toDisplayString(t.label),1)],8,Ne)):e.createCommentVNode("",!0)]),e.createElementVNode("div",xe,[e.renderSlot(r.$slots,"default",{},()=>[e.withDirectives(e.createElementVNode("textarea",e.mergeProps(r.$attrs,{id:`input-${t.id}`,"onUpdate:modelValue":d[0]||(d[0]=s=>e.isRef(a)?a.value=s:null),"data-testid":`input-${t.id}`,class:[t.error&&"-error","textarea"],invert:t.invert,style:{resize:t.resize},"aria-invalid":!!t.error,"aria-describedby":i(t.hint,t.error)}),null,16,ze),[[e.vModelText,e.unref(a)]])])]),o(t.hint,t.error)?(e.openBlock(),e.createElementBlock("span",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,Te)):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,Ee)}}});A.install=t=>{t.component("SolTextarea",A)};var dl="";const De=["id","data-testid","checked","value","name"],Pe=["for"],N=e.defineComponent({name:"Radio",props:{id:null,name:null,value:null,label:null,checked:null,class:null},emits:["change"],setup(t,{emit:n}){return(l,a)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sol-radio-core",l.$props.class])},[e.createElementVNode("input",e.mergeProps(l.$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:a[0]||(a[0]=o=>n("change",t.value))}),null,16,De),e.createElementVNode("label",{class:"label",for:`radio-${t.name}-${t.id}`},e.toDisplayString(t.label),9,Pe)],2))}});var cl="";const Le=["aria-labelledby"],Ie=["id","data-testid"],Ae=["id"],Oe=["id"],O=e.defineComponent({name:"RadioGroup",props:{id:null,title:null,hideTitle:{type:Boolean,default:!1},hint:null,error:null,radios:null,modelValue:null,direction:{default:"row"}},emits:["change","update:modelValue"],setup(t,{emit:n}){const l=t;function a(d,c){return!!d&&!c}function o(d,c){return c?`error-${l.id}`:a(d,c)?`hint-${l.id}`:null}function i(d){return(l==null?void 0:l.modelValue)===d}function r(d){n("change",d.value),n("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,Ie)]),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,f)=>{var b;return e.openBlock(),e.createElementBlock("li",{key:f},[e.createVNode(N,e.mergeProps(d.$attrs,{id:(b=s==null?void 0:s.id)!=null?b:`${s.value}`,class:["radio",{"mb-micro":t.direction==="column","mr-micro":t.direction==="row"}],name:s.name,value:s.value,label:s.label,checked:i(s.value),"aria-invalid":!!t.error,"aria-describedby":o(t.hint,t.error),onChange:y=>r(s)}),null,16,["id","class","name","value","label","checked","aria-invalid","aria-describedby","onChange"])])}),128))])],2),a(t.hint,t.error)?(e.openBlock(),e.createElementBlock("p",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,Ae)):t.error?(e.openBlock(),e.createElementBlock("p",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,Oe)):e.createCommentVNode("",!0)],8,Le))}});N.install=t=>{t.component("SolRadio",N)},O.install=t=>{t.component("SolRadioGroup",O)};var sl="";const Re=["id","data-testid","checked","value","name"],He=["for"],x=e.defineComponent({name:"Checkbox",props:{id:null,name:null,value:null,label:null,checked:null,class:null},emits:["change"],setup(t,{emit:n}){return(l,a)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sol-checkbox-core",l.$props.class])},[e.createElementVNode("input",e.mergeProps(l.$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:a[0]||(a[0]=o=>n("change",t.value))}),null,16,Re),e.createElementVNode("label",{class:"label",for:`checkbox-${t.name}-${t.id}`},e.toDisplayString(t.label),9,He)],2))}});var ml="";const Fe=["aria-labelledby"],Ge=["id","data-testid"],Ke=["id"],Ue=["id"],R=e.defineComponent({name:"CheckboxGroup",props:{id:null,title:null,hideTitle:{type:Boolean,default:!1},hint:null,error:null,checkboxes:null,modelValue:null,direction:{default:"row"}},emits:["change","update:modelValue"],setup(t,{emit:n}){const l=t;function a(c,s){return!!c&&!s}function o(c,s){return s?`error-${l.id}`:a(c,s)?`hint-${l.id}`:null}function i(c){var s;return(s=l==null?void 0:l.modelValue)==null?void 0:s.includes(c)}function r(c){return Array.isArray(l==null?void 0:l.modelValue)?[...l.modelValue,c]:[c]}function d(c){var f;n("change",c.value);const s=i(c.value)?(f=l.modelValue)==null?void 0:f.filter(b=>b!==c.value):r(c.value);n("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,Ge)]),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,(f,b)=>{var y;return e.openBlock(),e.createElementBlock("li",{key:b},[e.createVNode(x,e.mergeProps(c.$attrs,{id:(y=f==null?void 0:f.id)!=null?y:`${f.value}`,class:["checkbox",{"mb-micro":t.direction==="column","mr-micro":t.direction==="row"}],label:f.label,name:f.name,value:f.value,checked:i(f.value),"aria-invalid":!!t.error,"aria-describedby":o(t.hint,t.error),onChange:B=>d(f)}),null,16,["id","class","label","name","value","checked","aria-invalid","aria-describedby","onChange"])])}),128))])],2),a(t.hint,t.error)?(e.openBlock(),e.createElementBlock("p",{key:0,id:`hint-${t.id}`,class:"hint"},e.toDisplayString(t.hint),9,Ke)):t.error?(e.openBlock(),e.createElementBlock("p",{key:1,id:`error-${t.id}`,class:"error"},e.toDisplayString(t.error),9,Ue)):e.createCommentVNode("",!0)],8,Fe))}});x.install=t=>{t.component("SolCheckbox",x)},R.install=t=>{t.component("SolCheckboxGroup",R)};var hl="";const Ye=["id","for","data-testid"],We={class:"switch-container"},je=["id","aria-checked","aria-labelledby","data-testid","checked","value","name"],qe=e.createElementVNode("span",{class:"ellipse"},null,-1),H=e.defineComponent({name:"Switch",props:{id:null,name:null,value:null,label:null,checked:{type:Boolean},class:null,hideLabel:{type:Boolean},horizontalLabel:{type:Boolean}},emits:["change"],setup(t,{emit:n}){return(l,a)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sol-switch-core",[l.$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,Ye),e.createElementVNode("div",We,[e.createElementVNode("input",e.mergeProps(l.$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:a[0]||(a[0]=o=>n("change",t.value))}),null,16,je),qe])],2))}});H.install=t=>{t.component("SolSwitch",H)};function Je(t){return e.getCurrentScope()?(e.onScopeDispose(t),!0):!1}var Z;const z=typeof window!="undefined",Qe=t=>typeof t=="string",Y=()=>{};z&&((Z=window==null?void 0:window.navigator)==null?void 0:Z.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function F(t){var n;const l=e.unref(t);return(n=l==null?void 0:l.$el)!=null?n:l}const v=z?window:void 0;z&&window.document,z&&window.navigator,z&&window.location;function W(...t){let n,l,a,o;if(Qe(t[0])?([l,a,o]=t,n=v):[n,l,a,o]=t,!n)return Y;let i=Y;const r=e.watch(()=>F(n),c=>{i(),c&&(c.addEventListener(l,a,o),i=()=>{c.removeEventListener(l,a,o),i=Y})},{immediate:!0,flush:"post"}),d=()=>{r(),i()};return Je(d),d}function Xe(t,n,l={}){const{window:a=v,ignore:o,capture:i=!0}=l;if(!a)return;const r=e.ref(!0);let d;const c=b=>{a.clearTimeout(d);const y=F(t),B=b.composedPath();!y||y===b.target||B.includes(y)||!r.value||o&&o.length>0&&o.some(S=>{const g=F(S);return g&&(b.target===g||B.includes(g))})||n(b)},s=[W(a,"click",c,{passive:!0,capture:i}),W(a,"pointerdown",b=>{const y=F(t);r.value=!!y&&!b.composedPath().includes(y)},{passive:!0}),W(a,"pointerup",b=>{d=a.setTimeout(()=>c(b),50)},{passive:!0})];return()=>s.forEach(b=>b())}const j=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},q="__vueuse_ssr_handlers__";j[q]=j[q]||{},j[q];const Ze={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},ve=[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 _e(t,n){return e.openBlock(),e.createElementBlock("svg",Ze,ve)}var et={name:"mi-search",render:_e},fl="";const tt=["data-testid"],lt=["id","for"],nt=["id","disabled","data-testid","aria-expanded","aria-labelledby","aria-label","aria-controls","onClick"],ot={class:"dropdown-container"},at=["id","data-testid","aria-multiselectable","aria-labelledby"],it=["id","data-testid","selected","aria-selected","onClick","onKeyup"],rt={key:0,class:"no-data"},dt=e.createTextVNode(" Sem dados "),T=e.defineComponent({name:"Dropdown",props:{id:null,label:null,ariaLabel:null,smallerWidth:{type:Boolean},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:n}){const l=t,a=e.ref(),o=e.ref(!1),i=e.ref(""),r=e.computed(()=>{var h;return l.fetchOnSearch?l.options:(h=l.options)==null?void 0:h.filter(u=>typeof u=="string"?u.includes(i.value):u.name.includes(i.value))}),d=e.computed(()=>Array.isArray(l.selected)?l.selected.join(", ").trim():l.selected);Xe(a,()=>{o.value&&f()});function c(){l.disabled||(o.value?f():s())}function s(){o.value=!0}function f(){Zt(),n("closeDropdown")}function b(h){const u=new Set(l.selected);return u.has(h)?u.delete(h):u.add(h),[...u]}function y(h){const u=typeof h=="string"?h:h.value,$=l.isMultipleSelect?b(u):u;n("update:selected",$),l.closeOnSelect&&!l.isMultipleSelect&&f()}function B(h){return Array.isArray(l.selected)?typeof h=="string"?l.selected.includes(h):l.selected.includes(h.value):typeof h=="string"?h===l.selected:h.value===l.selected}const S=e.reactive({list:void 0,search:void 0}),g=e.reactive({id:"",index:0});function Xt({code:h}){const u=k=>{const U=k!=null?k:g.index;k!==void 0&&(g.index=k),setTimeout(()=>{var oe,ae;const V=(oe=S.list)==null?void 0:oe.children[U];g.id=(ae=V==null?void 0:V.id)!=null?ae:"",V==null||V.focus()},0)},$=()=>{var k;l.searchable&&(g.index=0,(k=S==null?void 0:S.search)==null||k.focus())};switch(h){case"ArrowUp":return g.index>0&&(g.index-=1),u();case"ArrowDown":return o.value?(g.index<r.value.length-1&&(g.index+=1),u()):(s(),u(0));case"Home":return u(0);case"End":return u(l.options.length-1);case"Escape":return f();default:!["Enter","NumpadEnter","Space"].includes(h)&&$()}}function Zt(){o.value=!1,g.index=0,i.value=""}function K(h,u){return typeof h=="string"?h:h[u!=null?u:"value"]}function ne(h,u){S[h]=u!=null?u:void 0}return(h,u)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"el",ref:a,class:e.normalizeClass(["sol-dropdown-core",{"-smaller":t.smallerWidth}]),"data-testid":`dropdown-${t.id}`,onKeydownPassive:Xt},[e.renderSlot(h.$slots,"label",{},()=>[e.createElementVNode("label",{id:`label-dropdown-${t.id}`,class:e.normalizeClass(["label",{"-disabled":t.disabled,"sr-only":t.ariaLabel}]),for:`toggle-dropdown-${t.id}`},e.toDisplayString(t.label||t.ariaLabel),11,lt)]),e.createElementVNode("button",{id:`toggle-dropdown-${t.id}`,disabled:t.disabled,"data-testid":`toggle-dropdown-${t.id}`,class:"button-toggle-dropdown toggle-dropdown","aria-haspopup":"listbox","aria-expanded":o.value,"aria-labelledby":`label-dropdown-${t.id}`,"aria-label":t.ariaLabel,"aria-controls":`dropdown-list-${t.id}`,onClick:e.withModifiers(c,["stop"])},[e.renderSlot(h.$slots,"toggle-dropdown",{toggle:{open:s,close:f,toggleDropdown:c},isOpen:o.value,select:y,selectedSanitized:e.unref(d),selected:t.selected},()=>[e.createTextVNode(e.toDisplayString(e.unref(d)||"Selecione"),1)])],8,nt),e.createVNode(e.Transition,{mode:"out-in",name:"dropdown"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",ot,[t.searchable?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["search-container",{"-loading":t.loading}])},[e.renderSlot(h.$slots,"search",{filter:i.value},()=>[e.createVNode(C,{id:`search-dropdown-${t.id}`,ref:$=>ne("search",$==null?void 0:$.input),modelValue:i.value,"onUpdate:modelValue":u[0]||(u[0]=$=>i.value=$),"data-testid":`search-dropdown-${t.id}`,role:"combobox",class:"search","aria-autocomplete":"list",placeholder:t.searchPlaceholder,"aria-expanded":o.value,"aria-haspopup":"listbox","aria-owns":`dropdown-list-${t.id}`,"aria-controls":`dropdown-list-${t.id}`,"aria-activedescendant":g.id,"aria-labelledby":`label-dropdown-${t.id}`,onClick:u[1]||(u[1]=e.withModifiers(()=>{},["stop"])),onInput:u[2]||(u[2]=$=>{var k;return n("search",(k=$.target)==null?void 0:k.value)})},null,8,["id","modelValue","data-testid","placeholder","aria-expanded","aria-owns","aria-controls","aria-activedescendant","aria-labelledby"]),e.createVNode(e.unref(et),{"aria-hidden":"true",class:"icon"})])],2)):e.createCommentVNode("",!0),e.createElementVNode("ul",{id:`dropdown-list-${t.id}`,ref:$=>ne("list",$),"data-testid":`dropdown-list-${t.id}`,role:"listbox",tabindex:"-1","aria-multiselectable":t.isMultipleSelect,"aria-labelledby":`label-dropdown-${t.id}`,class:"dropdown-list-core"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(r),($,k)=>(e.openBlock(),e.createElementBlock("li",{id:`option-${t.id}-${K($,"value")}`,key:k,"data-testid":`option-${t.id}-${K($,"value")}`,role:"option",tabindex:"-1",class:"dropdown-item",style:e.normalizeStyle(`--item: ${k+1}`),selected:B($),"aria-selected":B($),onClick:U=>y($),onKeyup:[e.withKeys(U=>y($),["enter"]),e.withKeys(U=>y($),["space"])]},[e.renderSlot(h.$slots,"default",{text:K($,"name"),option:$,isSelect:B},()=>[e.createTextVNode(e.toDisplayString(K($,"name")),1)])],44,it))),128)),e.unref(r).length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("li",rt,[e.renderSlot(h.$slots,"no-data",{},()=>[dt])]))],8,at)],512),[[e.vShow,o.value]])]),_:3})],42,tt))}});T.install=t=>{t.component("SolDropdown",T)};const ct={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},st=[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 mt(t,n){return e.openBlock(),e.createElementBlock("svg",ct,st)}var _={name:"mi-close",render:mt},bl="";const ht=["id","data-testid","title","aria-describedby","aria-disabled","onKeydown"],ut=["id"],ft={class:"label"},M=e.defineComponent({name:"Chip",props:{id:null,label:null,selected:{type:Boolean},disabled:{type:Boolean},removable:{type:Boolean,default:!0}},emits:["close","update:selected"],setup(t,{emit:n}){const l=t;function a({code:o}){if(!l.disabled)switch(o){case"Enter":case"NumpadEnter":case"Space":return n("update:selected");case"Delete":case"Backspace":return l.removable&&n("close");default:return!1}}return(o,i)=>(e.openBlock(),e.createElementBlock("div",{id:`chip-${t.id}`,"data-testid":`chip-${t.id}`,class:e.normalizeClass(["sol-chip-core",{"-selected":t.selected,"-disabled":t.disabled}]),tabindex:"0",title:t.label,"aria-describedby":`chip-description-${t.id}`,"aria-disabled":t.disabled,onClick:i[1]||(i[1]=r=>n("update:selected")),onKeydown:e.withModifiers(a,["self"])},[e.createElementVNode("span",{id:`chip-description-${t.id}`,"z-index":"-1",class:"sr-only"},"Press Delete or Backspace to remove this Chip",8,ut),e.createElementVNode("span",ft,[e.renderSlot(o.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.label),1)])]),t.removable?(e.openBlock(),e.createElementBlock("i",{key:0,role:"presentation","aira-hidden":"true",class:"close",onClick:i[0]||(i[0]=e.withModifiers(r=>n("close"),["stop"]))},[e.createVNode(e.unref(_),{class:"icon"})])):e.createCommentVNode("",!0)],42,ht))}}),$t={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},bt=[e.createElementVNode("path",{fill:"currentColor",d:"m17 10l-5 6l-5-6h10z"},null,-1)];function yt(t,n){return e.openBlock(),e.createElementBlock("svg",$t,bt)}var gt={name:"mi-caret-down",render:yt},gl="";const kt={class:"select"},wt={key:2,class:"placeholder-inline"},Bt={class:"error"},G=e.defineComponent({name:"Select",props:{id:null,options:null,label:null,ariaLabel:null,smallerWidth:{type:Boolean},disabled:{type:Boolean},multiple:{type:Boolean},modelValue:null,error:null,fetchOnApi:{type:Boolean},placeholder:{default:"Selecione"},searchPlaceholder:null,searchable:{type:Boolean}},emits:["update:modelValue"],setup(t,{emit:n}){return(l,a)=>(e.openBlock(),e.createBlock(T,{id:`select-${t.id}`,selected:t.modelValue,label:t.label,"aria-label":t.ariaLabel,"smaller-width":t.smallerWidth,disabled:t.disabled,"fetch-on-search":t.fetchOnApi,"is-multiple-select":t.multiple,class:"sol-select-core","search-placeholder":t.searchPlaceholder,searchable:t.searchable,options:t.options,"onUpdate:selected":a[0]||(a[0]=o=>n("update:modelValue",o))},{"toggle-dropdown":e.withCtx(({selected:o,isOpen:i,select:r})=>[e.createElementVNode("div",{class:e.normalizeClass(["select-container",{"-disabled":t.disabled,"-error":t.error}])},[e.createElementVNode("div",kt,[t.multiple&&(o==null?void 0:o.length)?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(o,(d,c)=>(e.openBlock(),e.createBlock(M,{id:d,key:c,label:d,onClick:e.withModifiers(s=>r(d),["stop"]),onClose:s=>r(d)},null,8,["id","label","onClick","onClose"]))),128)):o!=null&&o.length?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(o),1)],64)):(e.openBlock(),e.createElementBlock("span",wt,e.toDisplayString(t.placeholder),1))]),e.createVNode(e.unref(gt),{class:e.normalizeClass(["icon",{"-open":i}])},null,8,["class"])],2),e.createElementVNode("span",Bt,e.toDisplayString(t.error),1)]),_:1},8,["id","selected","label","aria-label","smaller-width","disabled","fetch-on-search","is-multiple-select","search-placeholder","searchable","options"]))}});G.install=t=>{t.component("SolSelect",G)},M.install=t=>{t.component("SolChip",M)};var kl="",wl="",Bl="",Sl="";const ee=12,p={type:"success",timeout:5e3,showIcon:!0,showCloseButton:!0,position:"top-right",hideProgressBar:!1};function St(t,n){const l=e.reactive({id:null,intervalId:null,startTime:0,remaining:n}),a=e.ref(100);function o(){clearInterval(l.intervalId),clearTimeout(l.id),l.remaining-=Date.now()-l.startTime}function i(){l.startTime=Date.now(),clearTimeout(l.id),l.intervalId=setInterval(()=>{a.value--},n/100-5),l.id=setTimeout(t,l.remaining)}function r(){clearInterval(l.intervalId),clearTimeout(l.id),a.value=100}return e.onMounted(()=>{if(n<=0)return!1}),e.onUnmounted(()=>{r()}),{start:i,stop:o,clear:r,progress:a}}function Ct(t){return{stylePosition:e.computed(()=>{const{position:l,offset:a}=t();switch(l){case"top-left":return{left:"0",top:`${a}px`};case"bottom-left":return{left:"0",bottom:`${a}px`};case"bottom-right":return{right:"0",bottom:`${a}px`};case"top-center":return{top:`${a}px`,left:"0",right:"0",marginRight:"auto",marginLeft:"auto"};case"bottom-center":return{bottom:`${a}px`,left:"0",right:"0",marginRight:"auto",marginLeft:"auto"};default:return{right:"0",top:`${a}px`}}})}}var te=(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))(te||{});const pt={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},Vt=[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 Et(t,n){return e.openBlock(),e.createElementBlock("svg",pt,Vt)}var Nt={name:"mi-circle-check",render:Et};const xt={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},zt=[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 Tt(t,n){return e.openBlock(),e.createElementBlock("svg",xt,zt)}var Mt={name:"mi-circle-error",render:Tt};const Dt={preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"1.2em",height:"1.2em"},Pt=[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 Lt(t,n){return e.openBlock(),e.createElementBlock("svg",Dt,Pt)}var It={name:"mi-circle-warning",render:Lt},El="";const At=["id","data-testid"],Ot={class:"content-wrapper"},Rt={key:0,class:"icon-container","aria-hidden":"true"},Ht={class:"content"},Ft={key:0,class:"description"},Gt=["data-testid"],Kt=e.defineComponent({name:"Toast",props:{id:null,type:{default:p.type},visible:{type:Boolean,default:!1},title:null,description:null,timeout:null,hideProgressBar:{type:Boolean,default:p.hideProgressBar},showIcon:{type:Boolean,default:p.showIcon},offset:{default:0},onClose:null,onCloseHandler:null,position:{default:p.position}},setup(t){const n=t,{start:l,stop:a,progress:o}=St(()=>{var s;(s=n.onCloseHandler)==null||s.call(n)},n.timeout),{stylePosition:i}=Ct(()=>({offset:n.offset,position:n.position})),r=e.computed(()=>n.title&&n.description);function d(){n.timeout>0&&a()}function c(){l()}return e.onMounted(()=>{l()}),(s,f)=>(e.openBlock(),e.createBlock(e.Transition,{name:e.unref(te)[t.position],type:"animation"},{default:e.withCtx(()=>[t.visible?(e.openBlock(),e.createElementBlock("div",{key:0,id:`toast-${t.type}-${t.id}`,role:"status","data-testid":`toast-${t.type}-${t.id}`,style:e.normalizeStyle(e.unref(i)),class:e.normalizeClass(["sol-toast-core",[`-${t.type}`,{"-multiline":e.unref(r)}]]),onKeyup:f[1]||(f[1]=e.withKeys((...b)=>t.onCloseHandler&&t.onCloseHandler(...b),["esc"])),onMouseenter:d,onMouseleave:c,onFocusin:d,onFocusout:c},[e.createElementVNode("section",Ot,[t.showIcon?(e.openBlock(),e.createElementBlock("div",Rt,[e.renderSlot(s.$slots,"icon-status",{type:t.type},()=>[t.type==="success"?(e.openBlock(),e.createBlock(e.unref(Nt),{key:0,class:"icon"})):e.createCommentVNode("",!0),t.type==="info"?(e.openBlock(),e.createBlock(e.unref(It),{key:1,class:"icon"})):e.createCommentVNode("",!0),t.type==="danger"?(e.openBlock(),e.createBlock(e.unref(Mt),{key:2,class:"icon"})):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0),e.createElementVNode("div",Ht,[e.createElementVNode("p",{class:e.normalizeClass(["title",{"-multiline":e.unref(r)}])},[e.renderSlot(s.$slots,"title",{},()=>[e.createTextVNode(e.toDisplayString(t.title),1)])],2),t.description?(e.openBlock(),e.createElementBlock("p",Ft,[e.renderSlot(s.$slots,"description",{},()=>[e.createTextVNode(e.toDisplayString(t.description),1)])])):e.createCommentVNode("",!0)])]),e.createElementVNode("button",{type:"button",class:e.normalizeClass(["close",{"-multiline":e.unref(r)}]),"data-testid":`toast-close-button-${t.type}-${t.id}`,"aria-label":"close notification",onClick:f[0]||(f[0]=(...b)=>t.onCloseHandler&&t.onCloseHandler(...b))},[e.createVNode(e.unref(_),{class:"icon"})],10,Gt),t.hideProgressBar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",{key:0,class:"progressbar","aria-hidden":"true",style:e.normalizeStyle({width:`${e.unref(o)}%`})},null,4))],46,At)):e.createCommentVNode("",!0)]),_:3},8,["name"]))}}),D={"top-left":[],"top-right":[],"top-center":[],"bottom-left":[],"bottom-right":[],"bottom-center":[]};function Ut(){let t=0;function n(){Object.entries(D).forEach(([a,o])=>{o.length&&o.forEach(i=>{var d;const r=(d=i.toastVNode.props)==null?void 0:d.id;J(r,a)})})}return{createToast:(a,o)=>{const i=t++,r=o?Yt(o):p;return o!=null&&o.showOneToast&&n(),Wt(i,r,typeof a=="string"?{title:a}:a),{close:()=>J(i,r.position)}},clearAllToasts:n}}function Yt(t){const n=X(P(P({},p),t),{showIcon:t.showIcon});return n.hideProgressBar=!!(n.timeout&&(n==null?void 0:n.timeout)<=0),t.hideProgressBar&&(n.hideProgressBar=t.hideProgressBar),n}function Wt(t,n,l){setTimeout(()=>{const a=qt(n,D,ee),o=document.createElement("div");document.body.appendChild(o);const i=e.createVNode(Kt,jt(n,t,a,J,l));e.render(i,o),D[n.position].push({toastVNode:i,container:o}),i.component&&(i.component.props.visible=!0)},1)}function jt(t,n,l,a,o){return X(P(P({},t),o),{id:n,offset:l,visible:!1,onCloseHandler(){a(n,t.position?t.position:"top-right")}})}function qt(t,n,l){if(!t.position)throw new Error("no position");return n[t.position].reduce((a,{toastVNode:o})=>(a+=o.el.offsetHeight+l||0,a),l)}function Jt(t,n,l,a){for(let o=t;o<n.length;o++){const{toastVNode:i}=n[o];if(!i.el)return;const r=l.split("-")[0]||"top",d=parseInt(i.el.style[r],10)-a-ee;if(!i.component)return;i.component.props.offset=d}}function J(t,n){var c;const l=D[n],a=l.findIndex(({toastVNode:s})=>{var f;return t===((f=s==null?void 0:s.props)==null?void 0:f.id)});if(a===-1)return;const{container:o,toastVNode:i}=l[a],r=(c=i==null?void 0:i.el)==null?void 0:c.offsetHeight;if(D[n].splice(a,1),Jt(a,l,n,r),!i.component)return;const d=i.component.props;d.visible=!1,d.onClose&&d.onClose(),setTimeout(()=>{e.render(null,o),document.body.removeChild(o)},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 Q={SolButton:L,SolInput:C,SolTextarea:A,SolTextfield:E,SolTextfieldPassword:I,SolRadio:N,SolRadioGroup:O,SolCheckbox:x,SolCheckboxGroup:R,SolSwitch:H,SolDropdown:T,SolSelect:G,SolChip:M};function Qt(t){for(const n in Q)t.component(n,Q[n])}const le=[];for(const t in Q)le.push(t);m.SolButton=L,m.SolCheckbox=x,m.SolCheckboxGroup=R,m.SolChip=M,m.SolDropdown=T,m.SolInput=C,m.SolRadio=N,m.SolRadioGroup=O,m.SolSelect=G,m.SolSwitch=H,m.SolTextarea=A,m.SolTextfield=E,m.SolTextfieldPassword=I,m.componentsNames=le,m.install=Qt,m.useToast=Ut,Object.defineProperties(m,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .sol-button-core{border-radius:.5rem;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;font-family:Rubik;font-weight:500;font-size:.875rem;line-height:1.15;padding:.75rem 1.5rem;width:fit-content;min-width:40px;transition:filter .15s ease}.sol-button-core.-has-icon{padding-left:1rem;padding-right:1rem}.sol-button-core.-only-icon{padding:.5rem}.sol-button-core:not(.-only-icon)>.icon:empty{display:none}.sol-button-core:not(.-only-icon)>.icon.-left{margin-right:.5rem}.sol-button-core:not(.-only-icon)>.icon.-right{margin-left:.5rem}.sol-button-core:focus-visible{outline:4px solid #292929}.sol-button-core.-block{width:100%}.sol-button-core.-dense{padding:.5rem 1rem}.sol-button-core.-primary{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-button-core.-primary:hover{--tw-outline-opacity: 1;outline-color:rgba(143,143,143,var(--tw-outline-opacity));outline-width:2px;outline-style:solid}.sol-button-core.-primary:active{filter:brightness(1.2) drop-shadow(0px 3px 2px rgba(33,33,34,.5647058824))}.sol-button-core.-primary.-invert{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-button-core.-primary.-invert:hover{--tw-bg-opacity: .8;--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity));--tw-outline-opacity: 1;outline-color:rgba(82,82,82,var(--tw-outline-opacity))}.sol-button-core.-primary.-invert:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(143,143,143,var(--tw-outline-opacity))}.sol-button-core.-secondary{background-color:transparent;--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));border-width:1px;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-button-core.-secondary:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-secondary.-invert{--tw-border-opacity: 1;border-color:rgba(255,255,255,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-button-core.-secondary.-invert:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-secondary.-invert:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(255,255,255,var(--tw-outline-opacity));outline-width:200px}.sol-button-core.-flat{background-color:transparent;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-button-core.-flat:hover{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity))}.sol-button-core.-flat.-invert{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-button-core.-flat.-invert:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-flat.-invert:focus{outline-color:#fff}.sol-button-core:disabled{cursor:not-allowed;filter:brightness(.8) grayscale(1)}.sol-input-core{--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity));border-radius:.5rem;border-width:2px;cursor:pointer;font-family:Rubik;font-size:.875rem;max-height:2.5rem;padding:.75rem;--tw-caret-opacity: 1;caret-color:rgba(255,176,31,var(--tw-caret-opacity));--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-input-core::placeholder{color:#8f8f8f!important;font-size:undefined!important;font-family:undefined!important;line-height:undefined!important}.sol-input-core:focus-visible{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));outline:3px solid #292929;outline-offset:0px}.sol-input-core.-invert{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-input-core.-invert:focus-visible{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));outline:3px solid #ffffff;outline-offset:0px}.sol-input-core.-invert:not(:placeholder-shown):invalid,.sol-input-core.-invert.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-input-core.-invert:disabled{--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity));border-color:transparent}.sol-input-core:not(:placeholder-shown):invalid,.sol-input-core.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-input-core:not(:placeholder-shown):invalid:focus-visible,.sol-input-core.-error:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(255,37,31,var(--tw-outline-opacity))}.sol-input-core:disabled{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity));cursor:not-allowed}.sol-textfield-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.sol-textfield-core.-invert>.label,.sol-textfield-core.-invert>.hint{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-textfield-core:is([required=true],[required=""])>.label:after{position:absolute;top:30%;right:0px;content:"*"}.sol-textfield-core>.label{font-family:Rubik;font-weight:400;font-size:.875rem;line-height:1.15;margin-bottom:.25rem;position:relative;text-align:left;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-textfield-core>.container-input{position:relative}.sol-textfield-core>.container-input>.input{width:100%;scroll-margin-top:14rem}.sol-textfield-core>.container-input>.input~*{position:absolute;top:calc(50% - 8px);right:12px}.sol-textfield-core>.hint,.sol-textfield-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-textfield-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-textfield-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-textarea-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.sol-textarea-core.-invert>.label,.sol-textarea-core.-invert>.hint{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-textarea-core:is([required=true],[required=""])>.label:after{position:absolute;top:30%;right:0px;content:"*"}.sol-textarea-core>.label{font-family:Rubik;font-weight:400;font-size:.875rem;line-height:1.15;margin-bottom:.25rem;position:relative;text-align:left;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-textarea-core>.container-textarea{position:relative}.sol-textarea-core>.container-textarea>.textarea{--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity));border-radius:.5rem;border-width:2px;cursor:pointer;font-family:Rubik;height:100%;font-size:.875rem;max-width:100%;padding:.75rem;--tw-caret-opacity: 1;caret-color:rgba(255,176,31,var(--tw-caret-opacity));--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity));scroll-margin-top:14rem}.sol-textarea-core>.container-textarea>.textarea.-invert{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-textarea-core>.container-textarea>.textarea.-invert:focus-visible{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));outline:3px solid #ffffff;outline-offset:0px}.sol-textarea-core>.container-textarea>.textarea.-invert:not(:placeholder-shown):invalid,.sol-textarea-core>.container-textarea>.textarea.-invert.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-textarea-core>.container-textarea>.textarea.-invert:disabled{--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity));border-color:transparent}.sol-textarea-core>.container-textarea>.textarea:not(:placeholder-shown):invalid,.sol-textarea-core>.container-textarea>.textarea.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-textarea-core>.container-textarea>.textarea:not(:placeholder-shown):invalid:focus-visible,.sol-textarea-core>.container-textarea>.textarea.-error:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(255,37,31,var(--tw-outline-opacity))}.sol-textarea-core>.container-textarea>.textarea:disabled{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity));cursor:not-allowed}.sol-textarea-core>.hint,.sol-textarea-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-textarea-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-textarea-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-radio-core{border-radius:.25rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.sol-radio-core:focus-within{outline:3px solid #292929;outline-offset:0px}.sol-radio-core>.radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));border-radius:100%;border-style:solid;border-width:2px;cursor:pointer;height:1rem;margin-right:.5rem;width:1rem}.sol-radio-core>.radio:checked{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-radio-core>.radio:disabled{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));cursor:not-allowed}.sol-radio-core>.radio:disabled~.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-radio-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-radio-group-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;text-align:left}.sol-radio-group-core>.title{margin-bottom:.75rem}.sol-radio-group-core>.container-radios{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.sol-radio-group-core>.container-radios>.radio{width:-webkit-min-content;width:-moz-min-content;width:min-content}.sol-radio-group-core>.hint,.sol-radio-group-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-radio-group-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-radio-group-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-checkbox-core{border-radius:.25rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.sol-checkbox-core:focus-within{outline:3px solid #292929;outline-offset:0px}.sol-checkbox-core:hover>.checkbox:not(:checked){--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-checkbox-core:hover>.checkbox:checked:before{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-checkbox-core>.checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));border-radius:.25rem;border-width:2px;display:-ms-grid;display:grid;place-content:center;height:1rem;margin-right:.5rem;width:1rem}.sol-checkbox-core>.checkbox:before{content:"";transform:scale(0);clip-path:polygon(14% 44%,0 65%,50% 100%,100% 16%,80% 0%,43% 62%);--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity));height:.5rem;width:.5rem;-webkit-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);-o-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;-o-transition-duration:.15s;transition-duration:.15s}.sol-checkbox-core>.checkbox:checked:before{transform:scale(1)}.sol-checkbox-core>.checkbox:checked{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity))}.sol-checkbox-core>.checkbox:disabled{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));cursor:not-allowed}.sol-checkbox-core>.checkbox:disabled~.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-checkbox-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-checkbox-group-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;text-align:left}.sol-checkbox-group-core>.title{font-weight:700;margin-bottom:.75rem}.sol-checkbox-group-core>.container-checkboxes{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.sol-checkbox-group-core>.container-checkboxes>.checkbox{width:-webkit-min-content;width:-moz-min-content;width:min-content}.sol-checkbox-group-core>.hint,.sol-checkbox-group-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-checkbox-group-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-checkbox-group-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-switch-core{border-radius:1rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.sol-switch-core[disabled=""]>.label,.sol-switch-core[disabled=true]>.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-switch-core[disabled=""]>.switch-container,.sol-switch-core[disabled=true]>.switch-container{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));--tw-border-opacity: .16}.sol-switch-core.-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;width:100%}.sol-switch-core:focus-within>.switch-container{outline:3px solid #292929;outline-offset:0px}.sol-switch-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-switch-core>.switch-container{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));border-radius:1rem;border-width:2px;height:1.5rem;overflow:hidden;position:relative;width:3rem}.sol-switch-core>.switch-container:hover>.switch:checked~.ellipse{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.switch{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;height:100%;width:100%;transition:.2s background-color}.sol-switch-core>.switch-container>.switch:checked{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.switch:checked~.ellipse{transform:translate(140%)}.sol-switch-core>.switch-container>.switch[disabled=""],.sol-switch-core>.switch-container>.switch[disabled=true]{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));cursor:not-allowed}.sol-switch-core>.switch-container>.switch[disabled=""]~.ellipse,.sol-switch-core>.switch-container>.switch[disabled=true]~.ellipse{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.ellipse{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity));border-radius:.5rem;display:inline-block;height:1rem;pointer-events:none;position:absolute;top:11.111111%;left:.25rem;width:1rem;transition:.2s transform,.15s background-color}.dropdown-leave-from,.dropdown-enter-to{transform:rotateX(0)}.dropdown-leave-to,.dropdown-enter-from{transform:rotateX(-90deg)}@keyframes dropdown-item{0%{transform:rotateX(-90deg)}to{transform:rotateX(0)}}.sol-dropdown-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;position:relative}.sol-dropdown-core:focus-within>.button-toggle-dropdown>*{outline:3px solid #292929;outline-offset:0px;box-shadow:0 0 0 2px #ffba4732}.sol-dropdown-core>.button-toggle-dropdown{min-height:2rem;scroll-margin-top:14rem}.sol-dropdown-core>.button-toggle-dropdown:disabled{cursor:not-allowed}.sol-dropdown-core>.label{font-family:Rubik;font-size:.875rem;line-height:1.15;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity));margin-bottom:.25rem}.sol-dropdown-core>.label.-disabled{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-dropdown-core>.dropdown-container{position:absolute;top:100%;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));border-radius:.25rem;margin-top:.5rem;min-width:12.5rem;overflow:hidden;padding-top:.5rem;padding-bottom:.5rem;width:100%;box-shadow:1px 1px 6px 1px #21212132;z-index:1;transform-origin:top center;transition:transform .2s ease-in;will-change:transform}.sol-dropdown-core>.dropdown-container>.search-container{margin-left:.5rem;margin-right:.5rem;position:relative}.sol-dropdown-core>.dropdown-container>.search-container.-loading:before{content:"";animation:loading 1.5s ease-out infinite;background:linear-gradient(90deg,#ffb600,#ffcd70,#ffb600);transform-origin:left;transform:scaleX(0);will-change:transform;display:inline-block;position:absolute;bottom:0px;height:.25rem;width:100%}@keyframes loading{0%{transform:scaleX(0) translate(0)}40%{transform:scaleX(1)}to{transform:scaleX(1) translate(110%)}}.sol-dropdown-core>.dropdown-container>.search-container>.search{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));margin-bottom:.5rem;margin-bottom:1.5rem;width:100%}.sol-dropdown-core>.dropdown-container>.search-container>.icon{pointer-events:none;position:absolute;right:.5rem;top:10px}.sol-dropdown-core>.dropdown-container>.dropdown-list-core{max-height:240px;overflow-y:auto;padding-left:.5rem;padding-right:.5rem;width:100%;scrollbar-width:thin;scroll-behavior:smooth}.sol-dropdown-core>.dropdown-container>.dropdown-list-core::-webkit-scrollbar{width:.25rem}.sol-dropdown-core>.dropdown-container>.dropdown-list-core::-webkit-scrollbar-track{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.sol-dropdown-core>.dropdown-container>.dropdown-list-core::-webkit-scrollbar-thumb{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.no-data{font-family:Lato,sans-serif;font-size:.875rem;line-height:1.15;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;cursor:pointer;height:2rem;margin-bottom:.5rem;padding-left:.5rem;padding-right:.5rem;width:100%;font-family:Lato,sans-serif;font-size:.875rem;line-height:1.15;transition:border-radius .12s ease-in;transform:rotateX(-90deg);animation:dropdown-item .3s forwards cubic-bezier(.175,.885,.32,1.275);animation-delay:calc(.2s + var(--item, 2) * 50ms)}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item:hover,.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item:focus{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity));border-radius:.5rem}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item[selected=true]{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity));--tw-border-opacity: 1;border-bottom-color:rgba(255,176,31,var(--tw-border-opacity));border-bottom-width:1px}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item[selected=true]:hover,.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item[selected=true]:focus{filter:saturate(2.5)}.sol-chip-core{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:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;height:100%;min-height:2rem;padding-left:.75rem;padding-right:.25rem;width:fit-content;--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));border-radius:1rem;border-width:2px;cursor:pointer;transition:background .2s ease-in}.sol-chip-core:focus-within{outline:3px solid #292929;outline-offset:0px}.sol-chip-core:hover{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.sol-chip-core.-selected{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-chip-core.-disabled{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity));cursor:not-allowed;pointer-events:none}.sol-chip-core>.label{display:inline-block;margin-right:.25rem;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity));font-family:Rubik;font-weight:500;font-size:.75rem;line-height:1.15;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-chip-core>.close{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;height:1.5rem;width:1.5rem;border-radius:50%;transition:background .2s cubic-bezier(.165,.84,.44,1)}.sol-chip-core>.close:hover,.sol-chip-core>.close:focus{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity));--tw-bg-opacity: .16}.sol-chip-core>.close>.icon{font-size:.875rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-select-core>.toggle-dropdown{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;max-width:20rem}.sol-select-core>.toggle-dropdown>.select-container{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;position:relative;height:100%;min-width:200px;padding-left:.75rem;padding-right:.75rem;width:100%;cursor:pointer;overflow:hidden;--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity));border-radius:.5rem;border-width:2px;font-family:Rubik;font-size:.875rem}.sol-select-core>.toggle-dropdown>.select-container.-disabled{--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity));cursor:not-allowed}.sol-select-core>.toggle-dropdown>.select-container.-disabled>.icon{--tw-text-opacity: 1;color:rgba(224,224,224,var(--tw-text-opacity))}.sol-select-core>.toggle-dropdown>.select-container.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-select-core>.toggle-dropdown>.select-container>.select{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;height:100%;margin-right:1rem;min-height:2.25rem;gap:4px}.sol-select-core>.toggle-dropdown>.select-container>.select:not(:empty){padding-top:.25rem;padding-bottom:.25rem}.sol-select-core>.toggle-dropdown>.select-container>.select>.tag{border-radius:.25rem;padding:.25rem;width:fit-content;--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity));font-family:Rubik;font-size:.75rem}.sol-select-core>.toggle-dropdown>.select-container>.select>.tag:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-select-core>.toggle-dropdown>.select-container>.icon{position:absolute;right:12px;transition:transform .35s}.sol-select-core>.toggle-dropdown>.select-container>.icon.-open{transform-origin:center;transform:rotate3d(0,0,1,180deg)}.sol-select-core>.toggle-dropdown>.select-container~.error{display:inline-block;margin-top:.25rem;padding-left:.25rem;width:100%;font-size:.75rem;text-align:left;--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity));outline:none}.sol-select-core>.toggle-dropdown>.select-container~.error:empty{display:none}*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}*{--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgba(59, 130, 246, 1);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}::moz-focus-inner{border-style:none;padding:0}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}button,input,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;padding:0;line-height:inherit;color:inherit}button{text-transform:none;background-color:transparent;background-image:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button,[role=button]{cursor:pointer}code{font-size:1em;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}fieldset{margin:0;padding:0}html{-webkit-text-size-adjust:100%;font-family:Lato,sans-serif;line-height:1.5}h2,h3,h4{font-size:inherit;font-weight:inherit}img{border-style:solid;max-width:100%;height:auto}input::placeholder{opacity:1;color:#a1a1aa}input::webkit-input-placeholder{opacity:1;color:#a1a1aa}input::-moz-placeholder{opacity:1;color:#a1a1aa}input:-ms-input-placeholder{opacity:1;color:#a1a1aa}input::-ms-input-placeholder{opacity:1;color:#a1a1aa}img,svg{display:block;vertical-align:middle}legend{padding:0}p,h2,h3,h4,dl{margin:0}strong{font-weight:bolder}small{font-size:80%}table{text-indent:0;border-color:inherit;border-collapse:collapse}textarea{resize:vertical}textarea::placeholder{opacity:1;color:#a1a1aa}textarea::webkit-input-placeholder{opacity:1;color:#a1a1aa}textarea::-moz-placeholder{opacity:1;color:#a1a1aa}textarea:-ms-input-placeholder{opacity:1;color:#a1a1aa}textarea::-ms-input-placeholder{opacity:1;color:#a1a1aa}ul{list-style:none;margin:0;padding:0}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.bg-brand-primary-light{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity))}.bg-brand-primary-pure{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.bg-neutral-low-medium{--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-neutral-high-light{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-neutral-high-pure{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.bg-neutral-high-medium{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity))}.bg-neutral-low-light{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.bg-neutral-low-pure{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity))}.bg-brand-primary-medium{--tw-bg-opacity: 1;background-color:rgba(255,205,112,var(--tw-bg-opacity))}.bg-feedback-positive-medium{--tw-bg-opacity: 1;background-color:rgba(138,229,191,var(--tw-bg-opacity))}.bg-feedback-positive-light{--tw-bg-opacity: 1;background-color:rgba(238,251,246,var(--tw-bg-opacity))}.bg-feedback-positive-pure{--tw-bg-opacity: 1;background-color:rgba(71,215,154,var(--tw-bg-opacity))}.bg-feedback-informative-light{--tw-bg-opacity: 1;background-color:rgba(235,248,255,var(--tw-bg-opacity))}.bg-feedback-informative-medium{--tw-bg-opacity: 1;background-color:rgba(112,203,255,var(--tw-bg-opacity))}.bg-feedback-negative-pure{--tw-bg-opacity: 1;background-color:rgba(255,37,31,var(--tw-bg-opacity))}.bg-feedback-informative-pure{--tw-bg-opacity: 1;background-color:rgba(31,174,255,var(--tw-bg-opacity))}.bg-feedback-negative-light{--tw-bg-opacity: 1;background-color:rgba(255,235,235,var(--tw-bg-opacity))}.bg-feedback-negative-medium{--tw-bg-opacity: 1;background-color:rgba(255,116,112,var(--tw-bg-opacity))}.border-neutral-high-light{--tw-border-opacity: 1;border-color:rgba(255,255,255,var(--tw-border-opacity))}.border-neutral-low-pure{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity))}.border-neutral-low-light{--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity))}.border-neutral-low-medium{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity))}.border-neutral-high-pure{--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity))}.border-b-brand-primary-pure{--tw-border-opacity: 1;border-bottom-color:rgba(255,176,31,var(--tw-border-opacity))}.rounded-sm{border-radius:.25rem}.rounded-md{border-radius:.5rem}.rounded-fully{border-radius:100%}.rounded-lg{border-radius:1rem}.rounded-none{border-radius:0}.rounded-half{border-radius:50%}.rounded-full{border-radius:40rem}.border-solid{border-style:solid}.border-a-xs{border-width:1px}.border-sm,.border-2,.border-a-sm{border-width:2px}.border-a-md{border-width:4px}.border-a-lg{border-width:8px}.border-t-md{border-top-width:4px}.border-r-md{border-right-width:4px}.border-b-md{border-bottom-width:4px}.border-l-md{border-left-width:4px}.border-y-md{border-top-width:4px;border-bottom-width:4px}.border-x-md{border-left-width:4px;border-right-width:4px}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.inline-block{display:inline-block}.flex{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.grid{display:-ms-grid;display:grid}.hidden{display:none}.flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.flex-col{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.flex-wrap{-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.place-items-center{place-items:center}.place-content-center{place-content:center}.items-start{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.items-center{-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.font-highlight{font-family:Rubik}.font-base{font-family:Lato,sans-serif}.font-code{font-family:Roboto Slab,"serif"}.font-medium{font-weight:500}.font-regular{font-weight:400}.h-8{height:2rem}.h-4{height:1rem}.h-2{height:.5rem}.h-full{height:100%}.h-6{height:1.5rem}.h-1{height:.25rem}.h-40{height:10rem}.h-60{height:15rem}.h-24{height:6rem}.text-3xs{font-size:.875rem}.text-micro{font-size:.75rem}.text-2xs{font-size:1rem}.text-xs{font-size:1.25rem}.text-sm{font-size:1.5rem}.text-md{font-size:2rem}.text-lg{font-size:2.5rem}.text-xl{font-size:3rem}.text-2xl{font-size:3.5rem}.text-3xl{font-size:4rem}.text-mega{font-size:4.5rem}.text-giga{font-size:5.5rem}.leading-xs{line-height:1.15}.leading-md{line-height:1.33}.leading-default{line-height:1}.leading-sm{line-height:1.2}.leading-lg{line-height:1.5}.leading-xl{line-height:1.7}.mx-4{margin-left:1rem;margin-right:1rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mt-micro{margin-top:.5rem}.mb-micro{margin-bottom:.5rem}.mb-xs{margin-bottom:1.5rem}.mr-micro{margin-right:.5rem}.mb-3xs{margin-bottom:.75rem}.mt-nano{margin-top:.25rem}.mb-1,.mb-nano{margin-bottom:.25rem}.mb-6{margin-bottom:1.5rem}.mb-4{margin-bottom:1rem}.mb-0{margin-bottom:0}.ml-4{margin-left:1rem}.max-h-10{max-height:2.5rem}.max-h-240px{max-height:240px}.max-h-200{max-height:50rem}.max-w-full{max-width:100%}.min-h-9{min-height:2.25rem}.min-h-8{min-height:2rem}.min-h-14{min-height:3.5rem}.min-w-50{min-width:12.5rem}.min-w-200px{min-width:200px}.outline-solid-neutral-high-light{--tw-outline-opacity: 1;outline-color:rgba(255,255,255,var(--tw-outline-opacity))}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.py-micro{padding-top:.5rem;padding-bottom:.5rem}.px-micro{padding-left:.5rem;padding-right:.5rem}.py-3xs{padding-top:.75rem;padding-bottom:.75rem}.px-xs{padding-left:1.5rem;padding-right:1.5rem}.px-3xs{padding-left:.75rem;padding-right:.75rem}.px-nano{padding-left:.25rem;padding-right:.25rem}.py-nano{padding-top:.25rem;padding-bottom:.25rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.pr-micro{padding-right:.5rem}.pl-nano{padding-left:.25rem}.pl-3xs{padding-left:.75rem}.pl-2xs{padding-left:1rem}.caret-brand-primary-pure{--tw-caret-opacity: 1;caret-color:rgba(255,176,31,var(--tw-caret-opacity))}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.right-2{right:.5rem}.top-2\/18{top:11.111111%}.left-1{left:.25rem}.top-3\/10{top:30%}.resize{resize:both}.shadow-soft{--tw-shadow: 0px 8px 16px rgba(41, 41, 41, .08);--tw-shadow-colored: 0px 8px 16px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-medium{--tw-shadow: 0px 12px 24px rgba(41, 41, 41, .16);--tw-shadow-colored: 0px 12px 24px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-large{--tw-shadow: 0px 16px 64px rgba(41, 41, 41, .24);--tw-shadow-colored: 0px 16px 64px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.text-left{text-align:left}.text-neutral-low-pure{--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.text-neutral-low-medium{--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.text-feedback-negative-pure{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.text-neutral-low-light{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.uppercase{text-transform:uppercase}.text-stroke-neutral-high-light{--tw-text-stroke-opacity: 1;-webkit-text-stroke-color:rgba(255,255,255,var(--tw-text-stroke-opacity))}.content-wrapper{content:"wrapper"}.tracking-md{letter-spacing:.04rem}.tracking-default{letter-spacing:normal}.tracking-sm{letter-spacing:.16rem}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.visible{visibility:visible}.break-words{overflow-wrap:break-word}.w-full{width:100%}.w-fit-content{width:fit-content}.w-4{width:1rem}.w-2{width:.5rem}.w-12{width:3rem}.w-60{width:15rem}.w-82{width:20.5rem}.z-80{z-index:80}.gap-4{grid-gap:1rem;gap:1rem}.gap-3{grid-gap:.75rem;gap:.75rem}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.transform{--tw-translate-x: 0;--tw-translate-y: 0;--tw-translate-z: 0;--tw-rotate: 0;--tw-rotate-x: 0;--tw-rotate-y: 0;--tw-rotate-z: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-scale-z: 1;-webkit-transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotateZ(var(--tw-rotate-z)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z));-ms-transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotateZ(var(--tw-rotate-z)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z));transform:translate(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotate(var(--tw-rotate-z)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z))}.transition-transform{-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);-o-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;-o-transition-duration:.15s;transition-duration:.15s}.\<transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform,filter,backdrop-filter;-o-transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,-webkit-box-shadow,transform,-webkit-transform,filter,backdrop-filter;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);-o-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;-o-transition-duration:.15s;transition-duration:.15s}.ease-out{-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);-o-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1)}.filter{--tw-blur: var(--tw-empty, );--tw-brightness: var(--tw-empty, );--tw-contrast: var(--tw-empty, );--tw-grayscale: var(--tw-empty, );--tw-hue-rotate: var(--tw-empty, );--tw-invert: var(--tw-empty, );--tw-saturate: var(--tw-empty, );--tw-sepia: var(--tw-empty, );--tw-drop-shadow: var(--tw-empty, );-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.invert,.-invert,.invert\]{--tw-invert: invert(100%)}.placeholder::placeholder{color:#8f8f8f!important;font-size:undefined!important;font-family:undefined!important;line-height:undefined!important}.placeholder-inline{color:#8f8f8f!important;font-size:undefined!important;font-family:undefined!important;line-height:undefined!important}@media (min-width: 768px){.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Regular.ttf);font-weight:400}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Bold.ttf);font-weight:700}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Medium.ttf);font-weight:500}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Regular.ttf);font-weight:400}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Bold.ttf);font-weight:700}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Medium.ttf);font-weight:500}@font-face{font-family:Roboto Slab;src:url(fonts/roboto-slab/RobotoSlab.ttf)}.bounce-right-enter-active{animation:bounceInRight .7s}.bounce-right-leave-active{animation:bounceOutLeft .7s}.bounce-left-enter-active{animation:bounceInLeft .7s}.bounce-left-leave-active{animation:bounceOutRight .7s}.bounce-down-enter-active{animation:bounceInDown .7s}.bounce-down-leave-active{animation:bounceOutUp .7s}.bounce-up-enter-active{animation:bounceInUp .7s}.bounce-up-leave-active{animation:bounceOutDown .7s}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-2000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(2000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.sol-toast-core{border-radius:.5rem;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;margin-left:1rem;margin-right:1rem;max-height:50rem;min-height:3.5rem;overflow:hidden;padding:.5rem .5rem .5rem 1rem;position:fixed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow-wrap:break-word;width:20.5rem;z-index:80;touch-action:none;transition:top .3s ease-out .5s,bottom .3s ease-out .5s}.sol-toast-core.-multiline{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;padding-top:1rem;padding-bottom:1rem}.sol-toast-core.-multiline>.content-wrapper{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.sol-toast-core.-multiline>.content-wrapper>.content>.title{font-weight:500;font-size:1rem;line-height:1.5}.sol-toast-core.-multiline>.close>.icon{font-size:1rem}.sol-toast-core>.content-wrapper{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.sol-toast-core>.content-wrapper>.icon-container{margin-right:.75rem}.sol-toast-core>.content-wrapper>.icon-container>.icon{font-size:1.25rem}.sol-toast-core>.content-wrapper>.content{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;line-height:1.2;--tw-text-stroke-opacity: 1;-webkit-text-stroke-color:rgba(255,255,255,var(--tw-text-stroke-opacity))}.sol-toast-core>.content-wrapper>.content>.title{font-family:Rubik;font-weight:400;font-size:.875rem;margin-bottom:.25rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity));overflow:hidden;line-clamp:4;-webkit-line-clamp:4;display:-webkit-box;-webkit-box-orient:vertical}.sol-toast-core>.content-wrapper>.content>.description{font-size:.875rem;margin-bottom:.5rem;overflow:hidden;line-clamp:3;-webkit-line-clamp:3;display:-webkit-box;-webkit-box-orient:vertical}.sol-toast-core>.close{cursor:pointer;padding-left:.75rem;padding-right:.75rem}.sol-toast-core>.close>.icon{font-size:1.25rem}.sol-toast-core>.progressbar{height:.25rem;position:absolute;bottom:0px;z-index:30;transition:all linear .2s;background-color:#fff9;margin-left:-12px;will-change:width}.sol-toast-core.-success{--tw-bg-opacity: 1;background-color:rgba(138,229,191,var(--tw-bg-opacity))}.sol-toast-core.-info{--tw-bg-opacity: 1;background-color:rgba(112,203,255,var(--tw-bg-opacity))}.sol-toast-core.-danger{--tw-bg-opacity: 1;background-color:rgba(255,116,112,var(--tw-bg-opacity))}
1
+ .sol-button-core{border-radius:.5rem;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;font-family:Rubik;font-weight:500;font-size:.875rem;line-height:1.15;padding:.75rem 1.5rem;width:fit-content;min-width:40px;transition:filter .15s ease}.sol-button-core.-has-icon{padding-left:1rem;padding-right:1rem}.sol-button-core.-only-icon{padding:.5rem}.sol-button-core:not(.-only-icon)>.icon:empty{display:none}.sol-button-core:not(.-only-icon)>.icon.-left{margin-right:.5rem}.sol-button-core:not(.-only-icon)>.icon.-right{margin-left:.5rem}.sol-button-core:focus-visible{outline:4px solid #292929}.sol-button-core.-block{width:100%}.sol-button-core.-dense{padding:.5rem 1rem}.sol-button-core.-primary{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-button-core.-primary:hover{--tw-outline-opacity: 1;outline-color:rgba(143,143,143,var(--tw-outline-opacity));outline-width:2px;outline-style:solid}.sol-button-core.-primary:active{filter:brightness(1.2) drop-shadow(0px 3px 2px rgba(33,33,34,.5647058824))}.sol-button-core.-primary.-invert{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-button-core.-primary.-invert:hover{--tw-bg-opacity: .8;--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity));--tw-outline-opacity: 1;outline-color:rgba(82,82,82,var(--tw-outline-opacity))}.sol-button-core.-primary.-invert:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(143,143,143,var(--tw-outline-opacity))}.sol-button-core.-secondary{background-color:transparent;--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));border-width:1px;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-button-core.-secondary:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-secondary.-invert{--tw-border-opacity: 1;border-color:rgba(255,255,255,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-button-core.-secondary.-invert:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-secondary.-invert:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(255,255,255,var(--tw-outline-opacity));outline-width:200px}.sol-button-core.-flat{background-color:transparent;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-button-core.-flat:hover{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity))}.sol-button-core.-flat.-invert{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-button-core.-flat.-invert:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-button-core.-flat.-invert:focus{outline-color:#fff}.sol-button-core:disabled{cursor:not-allowed;filter:brightness(.8) grayscale(1)}.sol-input-core{--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity));border-radius:.5rem;border-width:2px;cursor:pointer;font-family:Rubik;font-size:.875rem;max-height:2.5rem;padding:.75rem;--tw-caret-opacity: 1;caret-color:rgba(255,176,31,var(--tw-caret-opacity));--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-input-core::placeholder{color:#8f8f8f!important;font-size:undefined!important;font-family:undefined!important;line-height:undefined!important}.sol-input-core:focus-visible{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));outline:3px solid #292929;outline-offset:0px}.sol-input-core.-invert{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-input-core.-invert:focus-visible{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));outline:3px solid #ffffff;outline-offset:0px}.sol-input-core.-invert:not(:placeholder-shown):invalid,.sol-input-core.-invert.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-input-core.-invert:disabled{--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity));border-color:transparent}.sol-input-core:not(:placeholder-shown):invalid,.sol-input-core.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-input-core:not(:placeholder-shown):invalid:focus-visible,.sol-input-core.-error:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(255,37,31,var(--tw-outline-opacity))}.sol-input-core:disabled{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity));cursor:not-allowed}.sol-textfield-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.sol-textfield-core.-invert>.label,.sol-textfield-core.-invert>.hint{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-textfield-core:is([required=true],[required=""])>.label:after{position:absolute;top:30%;right:0px;content:"*"}.sol-textfield-core>.label{font-family:Rubik;font-weight:400;font-size:.875rem;line-height:1.15;margin-bottom:.25rem;position:relative;text-align:left;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-textfield-core>.container-input{position:relative}.sol-textfield-core>.container-input>.input{width:100%;scroll-margin-top:14rem}.sol-textfield-core>.container-input>.input~*{position:absolute;top:calc(50% - 8px);right:12px}.sol-textfield-core>.hint,.sol-textfield-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-textfield-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-textfield-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-textarea-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.sol-textarea-core.-invert>.label,.sol-textarea-core.-invert>.hint{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-textarea-core:is([required=true],[required=""])>.label:after{position:absolute;top:30%;right:0px;content:"*"}.sol-textarea-core>.label{font-family:Rubik;font-weight:400;font-size:.875rem;line-height:1.15;margin-bottom:.25rem;position:relative;text-align:left;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.sol-textarea-core>.container-textarea{position:relative}.sol-textarea-core>.container-textarea>.textarea{--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity));border-radius:.5rem;border-width:2px;cursor:pointer;font-family:Rubik;height:100%;font-size:.875rem;max-width:100%;padding:.75rem;--tw-caret-opacity: 1;caret-color:rgba(255,176,31,var(--tw-caret-opacity));--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity));scroll-margin-top:14rem}.sol-textarea-core>.container-textarea>.textarea.-invert{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-textarea-core>.container-textarea>.textarea.-invert:focus-visible{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));outline:3px solid #ffffff;outline-offset:0px}.sol-textarea-core>.container-textarea>.textarea.-invert:not(:placeholder-shown):invalid,.sol-textarea-core>.container-textarea>.textarea.-invert.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-textarea-core>.container-textarea>.textarea.-invert:disabled{--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity));border-color:transparent}.sol-textarea-core>.container-textarea>.textarea:not(:placeholder-shown):invalid,.sol-textarea-core>.container-textarea>.textarea.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-textarea-core>.container-textarea>.textarea:not(:placeholder-shown):invalid:focus-visible,.sol-textarea-core>.container-textarea>.textarea.-error:focus-visible{--tw-outline-opacity: 1;outline-color:rgba(255,37,31,var(--tw-outline-opacity))}.sol-textarea-core>.container-textarea>.textarea:disabled{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity));cursor:not-allowed}.sol-textarea-core>.hint,.sol-textarea-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-textarea-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-textarea-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-radio-core{border-radius:.25rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.sol-radio-core:focus-within{outline:3px solid #292929;outline-offset:0px}.sol-radio-core>.radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));border-radius:100%;border-style:solid;border-width:2px;cursor:pointer;height:1rem;margin-right:.5rem;width:1rem}.sol-radio-core>.radio:checked{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-radio-core>.radio:disabled{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));cursor:not-allowed}.sol-radio-core>.radio:disabled~.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-radio-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-radio-group-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;text-align:left}.sol-radio-group-core>.title{margin-bottom:.75rem}.sol-radio-group-core>.container-radios{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.sol-radio-group-core>.container-radios>.radio{width:-webkit-min-content;width:-moz-min-content;width:min-content}.sol-radio-group-core>.hint,.sol-radio-group-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-radio-group-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-radio-group-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-checkbox-core{border-radius:.25rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.sol-checkbox-core:focus-within{outline:3px solid #292929;outline-offset:0px}.sol-checkbox-core:hover>.checkbox:not(:checked){--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-checkbox-core:hover>.checkbox:checked:before{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-checkbox-core>.checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity));border-radius:.25rem;border-width:2px;display:-ms-grid;display:grid;place-content:center;height:1rem;margin-right:.5rem;width:1rem}.sol-checkbox-core>.checkbox:before{content:"";transform:scale(0);clip-path:polygon(14% 44%,0 65%,50% 100%,100% 16%,80% 0%,43% 62%);--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity));height:.5rem;width:.5rem;-webkit-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);-o-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;-o-transition-duration:.15s;transition-duration:.15s}.sol-checkbox-core>.checkbox:checked:before{transform:scale(1)}.sol-checkbox-core>.checkbox:checked{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity))}.sol-checkbox-core>.checkbox:disabled{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));cursor:not-allowed}.sol-checkbox-core>.checkbox:disabled~.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-checkbox-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-checkbox-group-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;text-align:left}.sol-checkbox-group-core>.title{font-weight:700;margin-bottom:.75rem}.sol-checkbox-group-core>.container-checkboxes{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.sol-checkbox-group-core>.container-checkboxes>.checkbox{width:-webkit-min-content;width:-moz-min-content;width:min-content}.sol-checkbox-group-core>.hint,.sol-checkbox-group-core>.error{font-family:Rubik;font-weight:400;font-size:.75rem;line-height:1.15;margin-top:.25rem;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-checkbox-group-core>.hint{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-checkbox-group-core>.error{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.sol-switch-core{border-radius:1rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.sol-switch-core[disabled=""]>.label,.sol-switch-core[disabled=true]>.label{cursor:not-allowed;--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-switch-core[disabled=""]>.switch-container,.sol-switch-core[disabled=true]>.switch-container{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));--tw-border-opacity: .16}.sol-switch-core.-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;width:100%}.sol-switch-core:focus-within>.switch-container{outline:3px solid #292929;outline-offset:0px}.sol-switch-core>.label{cursor:pointer;display:inline-block;font-family:Rubik;font-weight:500;height:1rem;font-size:.875rem;line-height:1.33;padding-right:.5rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-switch-core>.switch-container{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));border-radius:1rem;border-width:2px;height:1.5rem;overflow:hidden;position:relative;width:3rem}.sol-switch-core>.switch-container:hover>.switch:checked~.ellipse{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.switch{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;height:100%;width:100%;transition:.2s background-color}.sol-switch-core>.switch-container>.switch:checked{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.switch:checked~.ellipse{transform:translate(140%)}.sol-switch-core>.switch-container>.switch[disabled=""],.sol-switch-core>.switch-container>.switch[disabled=true]{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));cursor:not-allowed}.sol-switch-core>.switch-container>.switch[disabled=""]~.ellipse,.sol-switch-core>.switch-container>.switch[disabled=true]~.ellipse{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.sol-switch-core>.switch-container>.ellipse{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity));border-radius:.5rem;display:inline-block;height:1rem;pointer-events:none;position:absolute;top:11.111111%;left:.25rem;width:1rem;transition:.2s transform,.15s background-color}.dropdown-leave-from,.dropdown-enter-to{transform:rotateX(0)}.dropdown-leave-to,.dropdown-enter-from{transform:rotateX(-90deg)}@keyframes dropdown-item{0%{transform:rotateX(-90deg)}to{transform:rotateX(0)}}.sol-dropdown-core{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;position:relative}.sol-dropdown-core:focus-within>.button-toggle-dropdown>*{outline:3px solid #292929;outline-offset:0px;box-shadow:0 0 0 2px #ffba4732}.sol-dropdown-core>.button-toggle-dropdown{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));min-height:2rem;scroll-margin-top:14rem}.sol-dropdown-core>.button-toggle-dropdown:disabled{cursor:not-allowed}.sol-dropdown-core.-smaller>.dropdown-container,.sol-dropdown-core.-smaller>.toggle-dropdown{min-width:64px;width:fit-content}.sol-dropdown-core>.label{font-family:Rubik;font-size:.875rem;line-height:1.15;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity));margin-bottom:.25rem}.sol-dropdown-core>.label.-disabled{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.sol-dropdown-core>.dropdown-container{position:absolute;top:100%;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));border-radius:.25rem;margin-top:.5rem;min-width:12.5rem;overflow:hidden;padding-top:.5rem;padding-bottom:.5rem;width:100%;box-shadow:1px 1px 6px 1px #21212132;z-index:6;transform-origin:top center;transition:transform .2s ease-in;will-change:transform}.sol-dropdown-core>.dropdown-container>.search-container{margin-left:.5rem;margin-right:.5rem;position:relative}.sol-dropdown-core>.dropdown-container>.search-container.-loading:before{content:"";animation:loading 1.5s ease-out infinite;background:linear-gradient(90deg,#ffb600,#ffcd70,#ffb600);transform-origin:left;transform:scaleX(0);will-change:transform;display:inline-block;position:absolute;bottom:0px;height:.25rem;width:100%}@keyframes loading{0%{transform:scaleX(0) translate(0)}40%{transform:scaleX(1)}to{transform:scaleX(1) translate(110%)}}.sol-dropdown-core>.dropdown-container>.search-container>.search{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));margin-bottom:.5rem;margin-bottom:1.5rem;width:100%}.sol-dropdown-core>.dropdown-container>.search-container>.icon{pointer-events:none;position:absolute;right:.5rem;top:10px}.sol-dropdown-core>.dropdown-container>.dropdown-list-core{max-height:240px;overflow-y:auto;padding-left:.5rem;padding-right:.5rem;width:100%;scrollbar-width:thin;scroll-behavior:smooth}.sol-dropdown-core>.dropdown-container>.dropdown-list-core::-webkit-scrollbar{width:.25rem}.sol-dropdown-core>.dropdown-container>.dropdown-list-core::-webkit-scrollbar-track{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.sol-dropdown-core>.dropdown-container>.dropdown-list-core::-webkit-scrollbar-thumb{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.no-data{font-family:Lato,sans-serif;font-size:.875rem;line-height:1.15;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;cursor:pointer;height:2rem;margin-bottom:.5rem;padding-left:.5rem;padding-right:.5rem;width:100%;font-family:Lato,sans-serif;font-size:.875rem;line-height:1.15;white-space:nowrap;transition:border-radius .12s ease-in;transform:rotateX(-90deg);animation:dropdown-item .3s forwards cubic-bezier(.175,.885,.32,1.275);animation-delay:calc(.2s + var(--item, 2) * 50ms)}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item:hover,.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item:focus{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity));border-radius:.5rem}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item[selected=true]{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity));--tw-border-opacity: 1;border-bottom-color:rgba(255,176,31,var(--tw-border-opacity));border-bottom-width:1px}.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item[selected=true]:hover,.sol-dropdown-core>.dropdown-container>.dropdown-list-core>.dropdown-item[selected=true]:focus{filter:saturate(2.5)}.sol-chip-core{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:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;height:100%;min-height:2rem;padding-left:.75rem;padding-right:.25rem;width:fit-content;--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity));--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity));border-radius:1rem;border-width:2px;cursor:pointer;transition:background .2s ease-in}.sol-chip-core:focus-within{outline:3px solid #292929;outline-offset:0px}.sol-chip-core:hover{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.sol-chip-core.-selected{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.sol-chip-core.-disabled{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity));cursor:not-allowed;pointer-events:none}.sol-chip-core>.label{display:inline-block;margin-right:.25rem;--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity));font-family:Rubik;font-weight:500;font-size:.75rem;line-height:1.15;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sol-chip-core>.close{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;height:1.5rem;width:1.5rem;border-radius:50%;transition:background .2s cubic-bezier(.165,.84,.44,1)}.sol-chip-core>.close:hover,.sol-chip-core>.close:focus{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity));--tw-bg-opacity: .16}.sol-chip-core>.close>.icon{font-size:.875rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.sol-select-core>.toggle-dropdown{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;max-width:20rem}.sol-select-core>.toggle-dropdown>.select-container{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;position:relative;height:100%;padding-left:.75rem;padding-right:.75rem;width:100%;cursor:pointer;overflow:hidden;--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity));--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity));border-radius:.5rem;border-width:2px;font-family:Rubik;font-size:.875rem}.sol-select-core>.toggle-dropdown>.select-container.-disabled{--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity));cursor:not-allowed}.sol-select-core>.toggle-dropdown>.select-container.-disabled>.icon{--tw-text-opacity: 1;color:rgba(224,224,224,var(--tw-text-opacity))}.sol-select-core>.toggle-dropdown>.select-container.-error{--tw-border-opacity: 1;border-color:rgba(255,37,31,var(--tw-border-opacity))}.sol-select-core>.toggle-dropdown>.select-container>.select{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;height:100%;margin-right:1rem;min-height:2.25rem;gap:4px}.sol-select-core>.toggle-dropdown>.select-container>.select:not(:empty){padding-top:.25rem;padding-bottom:.25rem}.sol-select-core>.toggle-dropdown>.select-container>.select>.tag{border-radius:.25rem;padding:.25rem;width:fit-content;--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity));font-family:Rubik;font-size:.75rem}.sol-select-core>.toggle-dropdown>.select-container>.select>.tag:hover{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.sol-select-core>.toggle-dropdown>.select-container>.icon{position:absolute;right:12px;transition:transform .35s}.sol-select-core>.toggle-dropdown>.select-container>.icon.-open{transform-origin:center;transform:rotate3d(0,0,1,180deg)}.sol-select-core>.toggle-dropdown>.select-container~.error{display:inline-block;margin-top:.25rem;padding-left:.25rem;width:100%;font-size:.75rem;text-align:left;--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity));outline:none}.sol-select-core>.toggle-dropdown>.select-container~.error:empty{display:none}*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}*{--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgba(59, 130, 246, 1);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}::moz-focus-inner{border-style:none;padding:0}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}button,input,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;padding:0;line-height:inherit;color:inherit}button{text-transform:none;background-color:transparent;background-image:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button,[role=button]{cursor:pointer}code{font-size:1em;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}fieldset{margin:0;padding:0}html{-webkit-text-size-adjust:100%;font-family:Lato,sans-serif;line-height:1.5}hr{height:0;color:inherit;border-top-width:1px}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,hr,h3,h4,dl{margin:0}strong{font-weight:bolder}small{font-size:80%}table{text-indent:0;border-color:inherit;border-collapse:collapse}textarea{resize:vertical}textarea::placeholder{opacity:1;color:#a1a1aa}textarea::webkit-input-placeholder{opacity:1;color:#a1a1aa}textarea::-moz-placeholder{opacity:1;color:#a1a1aa}textarea:-ms-input-placeholder{opacity:1;color:#a1a1aa}textarea::-ms-input-placeholder{opacity:1;color:#a1a1aa}ul{list-style:none;margin:0;padding:0}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.bg-brand-primary-light{--tw-bg-opacity: 1;background-color:rgba(255,248,235,var(--tw-bg-opacity))}.bg-brand-primary-pure{--tw-bg-opacity: 1;background-color:rgba(255,176,31,var(--tw-bg-opacity))}.bg-neutral-low-medium{--tw-bg-opacity: 1;background-color:rgba(82,82,82,var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-neutral-high-light{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-neutral-high-pure{--tw-bg-opacity: 1;background-color:rgba(224,224,224,var(--tw-bg-opacity))}.bg-neutral-high-medium{--tw-bg-opacity: 1;background-color:rgba(245,245,245,var(--tw-bg-opacity))}.bg-neutral-low-light{--tw-bg-opacity: 1;background-color:rgba(143,143,143,var(--tw-bg-opacity))}.bg-neutral-low-pure{--tw-bg-opacity: 1;background-color:rgba(41,41,41,var(--tw-bg-opacity))}.bg-brand-primary-medium{--tw-bg-opacity: 1;background-color:rgba(255,205,112,var(--tw-bg-opacity))}.bg-feedback-positive-medium{--tw-bg-opacity: 1;background-color:rgba(138,229,191,var(--tw-bg-opacity))}.bg-feedback-positive-light{--tw-bg-opacity: 1;background-color:rgba(238,251,246,var(--tw-bg-opacity))}.bg-feedback-positive-pure{--tw-bg-opacity: 1;background-color:rgba(71,215,154,var(--tw-bg-opacity))}.bg-feedback-informative-light{--tw-bg-opacity: 1;background-color:rgba(235,248,255,var(--tw-bg-opacity))}.bg-feedback-informative-medium{--tw-bg-opacity: 1;background-color:rgba(112,203,255,var(--tw-bg-opacity))}.bg-feedback-negative-pure{--tw-bg-opacity: 1;background-color:rgba(255,37,31,var(--tw-bg-opacity))}.bg-feedback-informative-pure{--tw-bg-opacity: 1;background-color:rgba(31,174,255,var(--tw-bg-opacity))}.bg-feedback-negative-light{--tw-bg-opacity: 1;background-color:rgba(255,235,235,var(--tw-bg-opacity))}.bg-feedback-negative-medium{--tw-bg-opacity: 1;background-color:rgba(255,116,112,var(--tw-bg-opacity))}.border-neutral-high-light{--tw-border-opacity: 1;border-color:rgba(255,255,255,var(--tw-border-opacity))}.border-neutral-low-pure{--tw-border-opacity: 1;border-color:rgba(41,41,41,var(--tw-border-opacity))}.border-neutral-low-light{--tw-border-opacity: 1;border-color:rgba(143,143,143,var(--tw-border-opacity))}.border-neutral-low-medium{--tw-border-opacity: 1;border-color:rgba(82,82,82,var(--tw-border-opacity))}.border-neutral-high-pure{--tw-border-opacity: 1;border-color:rgba(224,224,224,var(--tw-border-opacity))}.border-b-brand-primary-pure{--tw-border-opacity: 1;border-bottom-color:rgba(255,176,31,var(--tw-border-opacity))}.rounded-sm{border-radius:.25rem}.rounded-md{border-radius:.5rem}.rounded-fully{border-radius:100%}.rounded-lg{border-radius:1rem}.rounded-none{border-radius:0}.rounded-half{border-radius:50%}.rounded-full{border-radius:40rem}.border-solid{border-style:solid}.border-a-xs{border-width:1px}.border-sm,.border-2,.border-a-sm{border-width:2px}.border-a-md{border-width:4px}.border-a-lg{border-width:8px}.border-t-md{border-top-width:4px}.border-r-md{border-right-width:4px}.border-b-md{border-bottom-width:4px}.border-l-md{border-left-width:4px}.border-y-md{border-top-width:4px;border-bottom-width:4px}.border-x-md{border-left-width:4px;border-right-width:4px}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.inline-block{display:inline-block}.flex{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.grid{display:-ms-grid;display:grid}.hidden{display:none}.flex-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;-webkit-flex-direction:row;flex-direction:row}.flex-col{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.flex-wrap{-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.place-items-center{place-items:center}.place-content-center{place-content:center}.items-start{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.items-center{-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.font-highlight{font-family:Rubik}.font-base{font-family:Lato,sans-serif}.font-code{font-family:Roboto Slab,"serif"}.font-medium{font-weight:500}.font-regular{font-weight:400}.h-8{height:2rem}.h-4{height:1rem}.h-2{height:.5rem}.h-full{height:100%}.h-6{height:1.5rem}.h-1{height:.25rem}.h-40{height:10rem}.h-60{height:15rem}.h-24{height:6rem}.text-3xs{font-size:.875rem}.text-micro{font-size:.75rem}.text-2xs{font-size:1rem}.text-xs{font-size:1.25rem}.text-sm{font-size:1.5rem}.text-md{font-size:2rem}.text-lg{font-size:2.5rem}.text-xl{font-size:3rem}.text-2xl{font-size:3.5rem}.text-3xl{font-size:4rem}.text-mega{font-size:4.5rem}.text-giga{font-size:5.5rem}.leading-xs{line-height:1.15}.leading-md{line-height:1.33}.leading-default{line-height:1}.leading-sm{line-height:1.2}.leading-lg{line-height:1.5}.leading-xl{line-height:1.7}.mx-4{margin-left:1rem;margin-right:1rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mt-micro{margin-top:.5rem}.mb-micro{margin-bottom:.5rem}.mb-xs{margin-bottom:1.5rem}.mr-micro{margin-right:.5rem}.mb-3xs{margin-bottom:.75rem}.mt-nano{margin-top:.25rem}.mb-1,.mb-nano{margin-bottom:.25rem}.mb-16{margin-bottom:4rem}.mb-6{margin-bottom:1.5rem}.mb-4{margin-bottom:1rem}.mb-0{margin-bottom:0}.ml-4{margin-left:1rem}.max-h-10{max-height:2.5rem}.max-h-240px{max-height:240px}.max-h-200{max-height:50rem}.max-w-full{max-width:100%}.min-h-8{min-height:2rem}.min-h-9{min-height:2.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}.px-nano{padding-left:.25rem;padding-right:.25rem}.py-nano{padding-top:.25rem;padding-bottom:.25rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.pr-micro{padding-right:.5rem}.pl-nano{padding-left:.25rem}.pl-3xs{padding-left:.75rem}.pl-2xs{padding-left:1rem}.caret-brand-primary-pure{--tw-caret-opacity: 1;caret-color:rgba(255,176,31,var(--tw-caret-opacity))}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.right-2{right:.5rem}.top-2\/18{top:11.111111%}.left-1{left:.25rem}.top-3\/10{top:30%}.resize{resize:both}.shadow-soft{--tw-shadow: 0px 8px 16px rgba(41, 41, 41, .08);--tw-shadow-colored: 0px 8px 16px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-medium{--tw-shadow: 0px 12px 24px rgba(41, 41, 41, .16);--tw-shadow-colored: 0px 12px 24px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-large{--tw-shadow: 0px 16px 64px rgba(41, 41, 41, .24);--tw-shadow-colored: 0px 16px 64px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.text-left{text-align:left}.text-neutral-low-pure{--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity))}.text-neutral-low-medium{--tw-text-opacity: 1;color:rgba(82,82,82,var(--tw-text-opacity))}.text-feedback-negative-pure{--tw-text-opacity: 1;color:rgba(255,37,31,var(--tw-text-opacity))}.text-neutral-low-light{--tw-text-opacity: 1;color:rgba(143,143,143,var(--tw-text-opacity))}.uppercase{text-transform:uppercase}.text-stroke-neutral-high-light{--tw-text-stroke-opacity: 1;-webkit-text-stroke-color:rgba(255,255,255,var(--tw-text-stroke-opacity))}.content-wrapper{content:"wrapper"}.tracking-md{letter-spacing:.04rem}.tracking-default{letter-spacing:normal}.tracking-sm{letter-spacing:.16rem}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.visible{visibility:visible}.break-words{overflow-wrap:break-word}.w-full{width:100%}.w-fit-content{width:fit-content}.w-4{width:1rem}.w-2{width:.5rem}.w-12{width:3rem}.w-60{width:15rem}.w-82{width:20.5rem}.z-80{z-index:80}.gap-4{grid-gap:1rem;gap:1rem}.gap-3{grid-gap:.75rem;gap:.75rem}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.transform{--tw-translate-x: 0;--tw-translate-y: 0;--tw-translate-z: 0;--tw-rotate: 0;--tw-rotate-x: 0;--tw-rotate-y: 0;--tw-rotate-z: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-scale-z: 1;-webkit-transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotateZ(var(--tw-rotate-z)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z));-ms-transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotateZ(var(--tw-rotate-z)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z));transform:translate(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotate(var(--tw-rotate-z)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z))}.transition-transform{-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);-o-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;-o-transition-duration:.15s;transition-duration:.15s}.\<transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform,filter,backdrop-filter;-o-transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,-webkit-box-shadow,transform,-webkit-transform,filter,backdrop-filter;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);-o-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;-o-transition-duration:.15s;transition-duration:.15s}.ease-out{-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);-o-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1)}.filter{--tw-blur: var(--tw-empty, );--tw-brightness: var(--tw-empty, );--tw-contrast: var(--tw-empty, );--tw-grayscale: var(--tw-empty, );--tw-hue-rotate: var(--tw-empty, );--tw-invert: var(--tw-empty, );--tw-saturate: var(--tw-empty, );--tw-sepia: var(--tw-empty, );--tw-drop-shadow: var(--tw-empty, );-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.invert,.-invert,.invert\]{--tw-invert: invert(100%)}.placeholder::placeholder{color:#8f8f8f!important;font-size:undefined!important;font-family:undefined!important;line-height:undefined!important}.placeholder-inline{color:#8f8f8f!important;font-size:undefined!important;font-family:undefined!important;line-height:undefined!important}@media (min-width: 768px){.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Regular.ttf);font-weight:400}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Bold.ttf);font-weight:700}@font-face{font-family:Lato;src:url(fonts/lato/Lato-Medium.ttf);font-weight:500}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Regular.ttf);font-weight:400}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Bold.ttf);font-weight:700}@font-face{font-family:Rubik;src:url(fonts/rubik/Rubik-Medium.ttf);font-weight:500}@font-face{font-family:Roboto Slab;src:url(fonts/roboto-slab/RobotoSlab.ttf)}.bounce-right-enter-active{animation:bounceInRight .7s}.bounce-right-leave-active{animation:bounceOutLeft .7s}.bounce-left-enter-active{animation:bounceInLeft .7s}.bounce-left-leave-active{animation:bounceOutRight .7s}.bounce-down-enter-active{animation:bounceInDown .7s}.bounce-down-leave-active{animation:bounceOutUp .7s}.bounce-up-enter-active{animation:bounceInUp .7s}.bounce-up-leave-active{animation:bounceOutDown .7s}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-2000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(2000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.sol-toast-core{border-radius:.5rem;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;margin-left:1rem;margin-right:1rem;max-height:50rem;min-height:3.5rem;overflow:hidden;padding:.5rem .5rem .5rem 1rem;position:fixed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow-wrap:break-word;width:20.5rem;z-index:80;touch-action:none;transition:top .3s ease-out .5s,bottom .3s ease-out .5s}.sol-toast-core.-multiline{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;padding-top:1rem;padding-bottom:1rem}.sol-toast-core.-multiline>.content-wrapper{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.sol-toast-core.-multiline>.content-wrapper>.content>.title{font-weight:500;font-size:1rem;line-height:1.5}.sol-toast-core.-multiline>.close>.icon{font-size:1rem}.sol-toast-core>.content-wrapper{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.sol-toast-core>.content-wrapper>.icon-container{margin-right:.75rem}.sol-toast-core>.content-wrapper>.icon-container>.icon{font-size:1.25rem}.sol-toast-core>.content-wrapper>.content{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column;line-height:1.2;--tw-text-stroke-opacity: 1;-webkit-text-stroke-color:rgba(255,255,255,var(--tw-text-stroke-opacity))}.sol-toast-core>.content-wrapper>.content>.title{font-family:Rubik;font-weight:400;font-size:.875rem;margin-bottom:.25rem;--tw-text-opacity: 1;color:rgba(41,41,41,var(--tw-text-opacity));overflow:hidden;line-clamp:4;-webkit-line-clamp:4;display:-webkit-box;-webkit-box-orient:vertical}.sol-toast-core>.content-wrapper>.content>.description{font-size:.875rem;margin-bottom:.5rem;overflow:hidden;line-clamp:3;-webkit-line-clamp:3;display:-webkit-box;-webkit-box-orient:vertical}.sol-toast-core>.close{cursor:pointer;padding-left:.75rem;padding-right:.75rem}.sol-toast-core>.close>.icon{font-size:1.25rem}.sol-toast-core>.progressbar{height:.25rem;position:absolute;bottom:0px;z-index:30;transition:all linear .2s;background-color:#fff9;margin-left:-12px;will-change:width}.sol-toast-core.-success{--tw-bg-opacity: 1;background-color:rgba(138,229,191,var(--tw-bg-opacity))}.sol-toast-core.-info{--tw-bg-opacity: 1;background-color:rgba(112,203,255,var(--tw-bg-opacity))}.sol-toast-core.-danger{--tw-bg-opacity: 1;background-color:rgba(255,116,112,var(--tw-bg-opacity))}
@@ -1,6 +1,8 @@
1
1
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
2
  id: string;
3
3
  label?: string | undefined;
4
+ ariaLabel?: string | undefined;
5
+ smallerWidth?: boolean | undefined;
4
6
  disabled?: boolean | undefined;
5
7
  loading?: boolean | undefined;
6
8
  searchable?: boolean | undefined;
@@ -28,6 +30,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
28
30
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
29
31
  id: string;
30
32
  label?: string | undefined;
33
+ ariaLabel?: string | undefined;
34
+ smallerWidth?: boolean | undefined;
31
35
  disabled?: boolean | undefined;
32
36
  loading?: boolean | undefined;
33
37
  searchable?: boolean | undefined;
@@ -1,7 +1,9 @@
1
1
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
2
  id: string;
3
3
  options: any;
4
- label: string;
4
+ label?: string | undefined;
5
+ ariaLabel?: string | undefined;
6
+ smallerWidth?: boolean | undefined;
5
7
  disabled?: boolean | undefined;
6
8
  multiple?: boolean | undefined;
7
9
  modelValue: string | string[];
@@ -11,14 +13,15 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
11
13
  searchPlaceholder?: string | undefined;
12
14
  searchable?: boolean | undefined;
13
15
  }>, {
14
- label: string;
15
16
  placeholder: string;
16
17
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17
18
  "update:modelValue": (value: string | string[]) => void;
18
19
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
19
20
  id: string;
20
21
  options: any;
21
- label: string;
22
+ label?: string | undefined;
23
+ ariaLabel?: string | undefined;
24
+ smallerWidth?: boolean | undefined;
22
25
  disabled?: boolean | undefined;
23
26
  multiple?: boolean | undefined;
24
27
  modelValue: string | string[];
@@ -28,12 +31,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
28
31
  searchPlaceholder?: string | undefined;
29
32
  searchable?: boolean | undefined;
30
33
  }>, {
31
- label: string;
32
34
  placeholder: string;
33
35
  }>>> & {
34
36
  "onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined;
35
37
  }, {
36
- label: string;
37
38
  placeholder: string;
38
39
  }>;
39
40
  export default _default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solfacil/girassol",
3
3
  "description": "Girassol design system",
4
- "version": "0.1.8",
4
+ "version": "0.1.9",
5
5
  "authors": [
6
6
  {
7
7
  "name": "Kevin Martin",
@@ -44,6 +44,9 @@
44
44
  "test:w": "vitest watch --silent ",
45
45
  "test:coverage": "vitest run --silent --coverage",
46
46
  "storybook": "start-storybook -p 6006 --ci",
47
+ "prepare": "husky install",
48
+ "commit": "cz",
49
+ "pre-commit": "./.husky/run-staged-tests.js",
47
50
  "build-storybook": "build-storybook"
48
51
  },
49
52
  "dependencies": {
@@ -54,6 +57,8 @@
54
57
  "@antfu/eslint-config": "^0.23.1",
55
58
  "@babel/core": "^7.18.2",
56
59
  "@babel/preset-env": "^7.18.2",
60
+ "@commitlint/cli": "^17.0.1",
61
+ "@commitlint/config-conventional": "^17.0.0",
57
62
  "@iconify/json": "^2.1.28",
58
63
  "@storybook/addon-a11y": "^6.5.5",
59
64
  "@storybook/addon-actions": "^6.5.5",
@@ -72,6 +77,8 @@
72
77
  "@vitejs/plugin-vue": "^2.3.3",
73
78
  "babel-loader": "^8.2.5",
74
79
  "c8": "^7.11.3",
80
+ "cli-spinner": "^0.2.10",
81
+ "commitizen": "^4.2.4",
75
82
  "critters": "^0.0.16",
76
83
  "eslint": "^8.14.0",
77
84
  "eslint-config-prettier": "^8.5.0",
@@ -79,6 +86,7 @@
79
86
  "eslint-plugin-prettier": "^4.0.0",
80
87
  "eslint-plugin-vue": "^8.7.1",
81
88
  "eslint-plugin-vuejs-accessibility": "^1.1.1",
89
+ "husky": "^8.0.1",
82
90
  "jest-axe": "^5.0.1",
83
91
  "jsdom": "^19.0.0",
84
92
  "sass": "^1.50.0",
@@ -112,5 +120,10 @@
112
120
  "vue.js",
113
121
  "nuxt",
114
122
  "nuxt 3"
115
- ]
123
+ ],
124
+ "config": {
125
+ "commitizen": {
126
+ "path": "./node_modules/cz-conventional-changelog"
127
+ }
128
+ }
116
129
  }