sodtrack-web-ui 0.47.3 → 0.48.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist/alert-dialog.js +1 -1
  2. package/dist/alert-dialog.mjs +1 -1
  3. package/dist/alert-message.d.mts +130 -0
  4. package/dist/alert-message.d.ts +130 -0
  5. package/dist/alert-message.js +90 -0
  6. package/dist/alert-message.mjs +1 -0
  7. package/dist/button.d.mts +10 -1
  8. package/dist/button.d.ts +10 -1
  9. package/dist/button.js +1 -1
  10. package/dist/button.mjs +1 -1
  11. package/dist/chip-context.d.mts +400 -2
  12. package/dist/chip-context.d.ts +400 -2
  13. package/dist/chip-context.js +1 -1
  14. package/dist/chip-context.mjs +1 -1
  15. package/dist/chunk-2VL36SBW.mjs +1 -0
  16. package/dist/{chunk-4UFGYYGJ.mjs → chunk-6EWEPRZA.mjs} +1 -1
  17. package/dist/{chunk-X47ITJEB.mjs → chunk-6K53X5U3.mjs} +1 -1
  18. package/dist/{chunk-3FWHDOPP.mjs → chunk-A5A22HEL.mjs} +1 -1
  19. package/dist/chunk-G3WNWAAR.mjs +1 -0
  20. package/dist/{chunk-XRQRA6C5.mjs → chunk-KURGKFWQ.mjs} +1 -1
  21. package/dist/{chunk-MUD4S7TV.mjs → chunk-L2JEVDDH.mjs} +1 -1
  22. package/dist/chunk-VU35PLD2.mjs +1 -0
  23. package/dist/{chunk-GIQQT37U.mjs → chunk-XKAWYIAQ.mjs} +1 -1
  24. package/dist/common.css +11 -0
  25. package/dist/data-table.js +1 -1
  26. package/dist/data-table.mjs +1 -1
  27. package/dist/dialog.js +1 -1
  28. package/dist/dialog.mjs +1 -1
  29. package/dist/drawer.js +1 -1
  30. package/dist/drawer.mjs +1 -1
  31. package/dist/index.css +1 -1
  32. package/dist/index.d.mts +1 -1
  33. package/dist/index.d.ts +1 -1
  34. package/dist/index.js +2 -2
  35. package/dist/index.mjs +1 -1
  36. package/dist/list-item-arrow.css +1 -1
  37. package/dist/list-item-arrow.mjs +1 -1
  38. package/dist/list-item-checkbox.css +1 -1
  39. package/dist/list-item-checkbox.mjs +1 -1
  40. package/dist/list-item.css +1 -1
  41. package/dist/list-item.mjs +1 -1
  42. package/dist/table.js +1 -1
  43. package/dist/table.mjs +1 -1
  44. package/dist/tailwind-preset.js +1 -1
  45. package/dist/tailwind-preset.mjs +1 -1
  46. package/package.json +8 -8
  47. package/dist/alert.d.mts +0 -11
  48. package/dist/alert.d.ts +0 -11
  49. package/dist/alert.js +0 -82
  50. package/dist/alert.mjs +0 -1
  51. package/dist/chunk-25D6OS3A.mjs +0 -1
  52. package/dist/chunk-4HLOKQOY.mjs +0 -1
  53. package/dist/chunk-4ZB4CDZE.mjs +0 -1
package/dist/button.d.mts CHANGED
@@ -4,7 +4,7 @@ import React__default, { FC } from 'react';
4
4
  import { LucideIcon } from 'lucide-react';
5
5
 
6
6
  declare const ButtonSizes: readonly ["xs", "sm", "md", "lg"];
7
- declare const ButtonVariants: readonly ["contained", "outlined", "ghost", "standard", "link", "secondary"];
7
+ declare const ButtonVariants: readonly ["contained", "outlined", "ghost", "standard", "link", "secondary", "white"];
8
8
  declare const buttonStyles: tailwind_variants.TVReturnType<{
9
9
  size: {
10
10
  lg: {
@@ -47,6 +47,9 @@ declare const buttonStyles: tailwind_variants.TVReturnType<{
47
47
  link: {
48
48
  button: string;
49
49
  };
50
+ white: {
51
+ button: string;
52
+ };
50
53
  };
51
54
  loading: {
52
55
  true: {
@@ -99,6 +102,9 @@ declare const buttonStyles: tailwind_variants.TVReturnType<{
99
102
  link: {
100
103
  button: string;
101
104
  };
105
+ white: {
106
+ button: string;
107
+ };
102
108
  };
103
109
  loading: {
104
110
  true: {
@@ -151,6 +157,9 @@ declare const buttonStyles: tailwind_variants.TVReturnType<{
151
157
  link: {
152
158
  button: string;
153
159
  };
160
+ white: {
161
+ button: string;
162
+ };
154
163
  };
155
164
  loading: {
156
165
  true: {
package/dist/button.d.ts CHANGED
@@ -4,7 +4,7 @@ import React__default, { FC } from 'react';
4
4
  import { LucideIcon } from 'lucide-react';
5
5
 
6
6
  declare const ButtonSizes: readonly ["xs", "sm", "md", "lg"];
7
- declare const ButtonVariants: readonly ["contained", "outlined", "ghost", "standard", "link", "secondary"];
7
+ declare const ButtonVariants: readonly ["contained", "outlined", "ghost", "standard", "link", "secondary", "white"];
8
8
  declare const buttonStyles: tailwind_variants.TVReturnType<{
9
9
  size: {
10
10
  lg: {
@@ -47,6 +47,9 @@ declare const buttonStyles: tailwind_variants.TVReturnType<{
47
47
  link: {
48
48
  button: string;
49
49
  };
50
+ white: {
51
+ button: string;
52
+ };
50
53
  };
51
54
  loading: {
52
55
  true: {
@@ -99,6 +102,9 @@ declare const buttonStyles: tailwind_variants.TVReturnType<{
99
102
  link: {
100
103
  button: string;
101
104
  };
105
+ white: {
106
+ button: string;
107
+ };
102
108
  };
103
109
  loading: {
104
110
  true: {
@@ -151,6 +157,9 @@ declare const buttonStyles: tailwind_variants.TVReturnType<{
151
157
  link: {
152
158
  button: string;
153
159
  };
160
+ white: {
161
+ button: string;
162
+ };
154
163
  };
155
164
  loading: {
156
165
  true: {
package/dist/button.js CHANGED
@@ -1,4 +1,4 @@
1
- 'use strict';var Ie=require('react'),tailwindVariants=require('tailwind-variants'),jsxRuntime=require('react/jsx-runtime');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var Ie__default=/*#__PURE__*/_interopDefault(Ie);function $(e){var a,t,o="";if(typeof e=="string"||typeof e=="number")o+=e;else if(typeof e=="object")if(Array.isArray(e)){var d=e.length;for(a=0;a<d;a++)e[a]&&(t=$(e[a]))&&(o&&(o+=" "),o+=t);}else for(t in e)e[t]&&(o&&(o+=" "),o+=t);return o}function ee(){for(var e,a,t=0,o="",d=arguments.length;t<d;t++)(e=arguments[t])&&(a=$(e))&&(o&&(o+=" "),o+=a);return o}var X="-",xe=e=>{let a=ge(e),{conflictingClassGroups:t,conflictingClassGroupModifiers:o}=e;return {getClassGroupId:r=>{let l=r.split(X);return l[0]===""&&l.length!==1&&l.shift(),oe(l,a)||Ce(r)},getConflictingClassGroupIds:(r,l)=>{let i=t[r]||[];return l&&o[r]?[...i,...o[r]]:i}}},oe=(e,a)=>{if(e.length===0)return a.classGroupId;let t=e[0],o=a.nextPart.get(t),d=o?oe(e.slice(1),o):void 0;if(d)return d;if(a.validators.length===0)return;let u=e.join(X);return a.validators.find(({validator:r})=>r(u))?.classGroupId},ae=/^\[(.+)\]$/,Ce=e=>{if(ae.test(e)){let a=ae.exec(e)[1],t=a?.substring(0,a.indexOf(":"));if(t)return "arbitrary.."+t}},ge=e=>{let{theme:a,prefix:t}=e,o={nextPart:new Map,validators:[]};return Se(Object.entries(e.classGroups),t).forEach(([u,r])=>{W(r,o,u,a);}),o},W=(e,a,t,o)=>{e.forEach(d=>{if(typeof d=="string"){let u=d===""?a:te(a,d);u.classGroupId=t;return}if(typeof d=="function"){if(he(d)){W(d(o),a,t,o);return}a.validators.push({validator:d,classGroupId:t});return}Object.entries(d).forEach(([u,r])=>{W(r,te(a,u),t,o);});});},te=(e,a)=>{let t=e;return a.split(X).forEach(o=>{t.nextPart.has(o)||t.nextPart.set(o,{nextPart:new Map,validators:[]}),t=t.nextPart.get(o);}),t},he=e=>e.isThemeGetter,Se=(e,a)=>a?e.map(([t,o])=>{let d=o.map(u=>typeof u=="string"?a+u:typeof u=="object"?Object.fromEntries(Object.entries(u).map(([r,l])=>[a+r,l])):u);return [t,d]}):e,we=e=>{if(e<1)return {get:()=>{},set:()=>{}};let a=0,t=new Map,o=new Map,d=(u,r)=>{t.set(u,r),a++,a>e&&(a=0,o=t,t=new Map);};return {get(u){let r=t.get(u);if(r!==void 0)return r;if((r=o.get(u))!==void 0)return d(u,r),r},set(u,r){t.has(u)?t.set(u,r):d(u,r);}}},ue="!",ke=e=>{let{separator:a,experimentalParseClassName:t}=e,o=a.length===1,d=a[0],u=a.length,r=l=>{let i=[],n=0,m=0,C;for(let p=0;p<l.length;p++){let I=l[p];if(n===0){if(I===d&&(o||l.slice(p,p+u)===a)){i.push(l.slice(m,p)),m=p+u;continue}if(I==="/"){C=p;continue}}I==="["?n++:I==="]"&&n--;}let g=i.length===0?l:l.substring(m),S=g.startsWith(ue),x=S?g.substring(1):g,L=C&&C>m?C-m:void 0;return {modifiers:i,hasImportantModifier:S,baseClassName:x,maybePostfixModifierPosition:L}};return t?l=>t({className:l,parseClassName:r}):r},Pe=e=>{if(e.length<=1)return e;let a=[],t=[];return e.forEach(o=>{o[0]==="["?(a.push(...t.sort(),o),t=[]):t.push(o);}),a.push(...t.sort()),a},be=e=>({cache:we(e.cacheSize),parseClassName:ke(e),...xe(e)}),Ae=/\s+/,Be=(e,a)=>{let{parseClassName:t,getClassGroupId:o,getConflictingClassGroupIds:d}=a,u=[],r=e.trim().split(Ae),l="";for(let i=r.length-1;i>=0;i-=1){let n=r[i],{modifiers:m,hasImportantModifier:C,baseClassName:g,maybePostfixModifierPosition:S}=t(n),x=!!S,L=o(x?g.substring(0,S):g);if(!L){if(!x){l=n+(l.length>0?" "+l:l);continue}if(L=o(g),!L){l=n+(l.length>0?" "+l:l);continue}x=!1;}let p=Pe(m).join(":"),I=C?p+ue:p,h=I+L;if(u.includes(h))continue;u.push(h);let F=d(L,x);for(let B=0;B<F.length;++B){let v=F[B];u.push(I+v);}l=n+(l.length>0?" "+l:l);}return l};function ye(){let e=0,a,t,o="";for(;e<arguments.length;)(a=arguments[e++])&&(t=le(a))&&(o&&(o+=" "),o+=t);return o}var le=e=>{if(typeof e=="string")return e;let a,t="";for(let o=0;o<e.length;o++)e[o]&&(a=le(e[o]))&&(t&&(t+=" "),t+=a);return t};function Me(e,...a){let t,o,d,u=r;function r(i){let n=a.reduce((m,C)=>C(m),e());return t=be(n),o=t.cache.get,d=t.cache.set,u=l,l(i)}function l(i){let n=o(i);if(n)return n;let m=Be(i,t);return d(i,m),m}return function(){return u(ye.apply(null,arguments))}}var f=e=>{let a=t=>t[e]||[];return a.isThemeGetter=!0,a},de=/^\[(?:([a-z-]+):)?(.+)\]$/i,Fe=/^\d+\/\d+$/,De=new Set(["px","full","screen"]),Re=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,Te=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,ve=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/,qe=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,Ue=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,k=e=>y(e)||De.has(e)||Fe.test(e),P=e=>M(e,"length",Xe),y=e=>!!e&&!Number.isNaN(Number(e)),E=e=>M(e,"number",y),R=e=>!!e&&Number.isInteger(Number(e)),Oe=e=>e.endsWith("%")&&y(e.slice(0,-1)),s=e=>de.test(e),b=e=>Re.test(e),He=new Set(["length","size","percentage"]),Ge=e=>M(e,He,re),ze=e=>M(e,"position",re),Ve=new Set(["image","url"]),Ee=e=>M(e,Ve,Ke),We=e=>M(e,"",Ne),T=()=>!0,M=(e,a,t)=>{let o=de.exec(e);return o?o[1]?typeof a=="string"?o[1]===a:a.has(o[1]):t(o[2]):!1},Xe=e=>Te.test(e)&&!ve.test(e),re=()=>!1,Ne=e=>qe.test(e),Ke=e=>Ue.test(e);var Ze=()=>{let e=f("colors"),a=f("spacing"),t=f("blur"),o=f("brightness"),d=f("borderColor"),u=f("borderRadius"),r=f("borderSpacing"),l=f("borderWidth"),i=f("contrast"),n=f("grayscale"),m=f("hueRotate"),C=f("invert"),g=f("gap"),S=f("gradientColorStops"),x=f("gradientColorStopPositions"),L=f("inset"),p=f("margin"),I=f("opacity"),h=f("padding"),F=f("saturate"),B=f("scale"),v=f("sepia"),K=f("skew"),Z=f("space"),J=f("translate"),H=()=>["auto","contain","none"],G=()=>["auto","hidden","clip","visible","scroll"],z=()=>["auto",s,a],c=()=>[s,a],Q=()=>["",k,P],q=()=>["auto",y,s],j=()=>["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top"],U=()=>["solid","dashed","dotted","double","none"],Y=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],V=()=>["start","end","center","between","around","evenly","stretch"],D=()=>["","0",s],_=()=>["auto","avoid","all","avoid-page","page","left","right","column"],w=()=>[y,s];return {cacheSize:500,separator:":",theme:{colors:[T],spacing:[k,P],blur:["none","",b,s],brightness:w(),borderColor:[e],borderRadius:["none","","full",b,s],borderSpacing:c(),borderWidth:Q(),contrast:w(),grayscale:D(),hueRotate:w(),invert:D(),gap:c(),gradientColorStops:[e],gradientColorStopPositions:[Oe,P],inset:z(),margin:z(),opacity:w(),padding:c(),saturate:w(),scale:w(),sepia:D(),skew:w(),space:c(),translate:c()},classGroups:{aspect:[{aspect:["auto","square","video",s]}],container:["container"],columns:[{columns:[b]}],"break-after":[{"break-after":_()}],"break-before":[{"break-before":_()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:[...j(),s]}],overflow:[{overflow:G()}],"overflow-x":[{"overflow-x":G()}],"overflow-y":[{"overflow-y":G()}],overscroll:[{overscroll:H()}],"overscroll-x":[{"overscroll-x":H()}],"overscroll-y":[{"overscroll-y":H()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:[L]}],"inset-x":[{"inset-x":[L]}],"inset-y":[{"inset-y":[L]}],start:[{start:[L]}],end:[{end:[L]}],top:[{top:[L]}],right:[{right:[L]}],bottom:[{bottom:[L]}],left:[{left:[L]}],visibility:["visible","invisible","collapse"],z:[{z:["auto",R,s]}],basis:[{basis:z()}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["wrap","wrap-reverse","nowrap"]}],flex:[{flex:["1","auto","initial","none",s]}],grow:[{grow:D()}],shrink:[{shrink:D()}],order:[{order:["first","last","none",R,s]}],"grid-cols":[{"grid-cols":[T]}],"col-start-end":[{col:["auto",{span:["full",R,s]},s]}],"col-start":[{"col-start":q()}],"col-end":[{"col-end":q()}],"grid-rows":[{"grid-rows":[T]}],"row-start-end":[{row:["auto",{span:[R,s]},s]}],"row-start":[{"row-start":q()}],"row-end":[{"row-end":q()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":["auto","min","max","fr",s]}],"auto-rows":[{"auto-rows":["auto","min","max","fr",s]}],gap:[{gap:[g]}],"gap-x":[{"gap-x":[g]}],"gap-y":[{"gap-y":[g]}],"justify-content":[{justify:["normal",...V()]}],"justify-items":[{"justify-items":["start","end","center","stretch"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch"]}],"align-content":[{content:["normal",...V(),"baseline"]}],"align-items":[{items:["start","end","center","baseline","stretch"]}],"align-self":[{self:["auto","start","end","center","stretch","baseline"]}],"place-content":[{"place-content":[...V(),"baseline"]}],"place-items":[{"place-items":["start","end","center","baseline","stretch"]}],"place-self":[{"place-self":["auto","start","end","center","stretch"]}],p:[{p:[h]}],px:[{px:[h]}],py:[{py:[h]}],ps:[{ps:[h]}],pe:[{pe:[h]}],pt:[{pt:[h]}],pr:[{pr:[h]}],pb:[{pb:[h]}],pl:[{pl:[h]}],m:[{m:[p]}],mx:[{mx:[p]}],my:[{my:[p]}],ms:[{ms:[p]}],me:[{me:[p]}],mt:[{mt:[p]}],mr:[{mr:[p]}],mb:[{mb:[p]}],ml:[{ml:[p]}],"space-x":[{"space-x":[Z]}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":[Z]}],"space-y-reverse":["space-y-reverse"],w:[{w:["auto","min","max","fit","svw","lvw","dvw",s,a]}],"min-w":[{"min-w":[s,a,"min","max","fit"]}],"max-w":[{"max-w":[s,a,"none","full","min","max","fit","prose",{screen:[b]},b]}],h:[{h:[s,a,"auto","min","max","fit","svh","lvh","dvh"]}],"min-h":[{"min-h":[s,a,"min","max","fit","svh","lvh","dvh"]}],"max-h":[{"max-h":[s,a,"min","max","fit","svh","lvh","dvh"]}],size:[{size:[s,a,"auto","min","max","fit"]}],"font-size":[{text:["base",b,P]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:["thin","extralight","light","normal","medium","semibold","bold","extrabold","black",E]}],"font-family":[{font:[T]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:["tighter","tight","normal","wide","wider","widest",s]}],"line-clamp":[{"line-clamp":["none",y,E]}],leading:[{leading:["none","tight","snug","normal","relaxed","loose",k,s]}],"list-image":[{"list-image":["none",s]}],"list-style-type":[{list:["none","disc","decimal",s]}],"list-style-position":[{list:["inside","outside"]}],"placeholder-color":[{placeholder:[e]}],"placeholder-opacity":[{"placeholder-opacity":[I]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"text-color":[{text:[e]}],"text-opacity":[{"text-opacity":[I]}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...U(),"wavy"]}],"text-decoration-thickness":[{decoration:["auto","from-font",k,P]}],"underline-offset":[{"underline-offset":["auto",k,s]}],"text-decoration-color":[{decoration:[e]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:c()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",s]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",s]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-opacity":[{"bg-opacity":[I]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:[...j(),ze]}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","round","space"]}]}],"bg-size":[{bg:["auto","cover","contain",Ge]}],"bg-image":[{bg:["none",{"gradient-to":["t","tr","r","br","b","bl","l","tl"]},Ee]}],"bg-color":[{bg:[e]}],"gradient-from-pos":[{from:[x]}],"gradient-via-pos":[{via:[x]}],"gradient-to-pos":[{to:[x]}],"gradient-from":[{from:[S]}],"gradient-via":[{via:[S]}],"gradient-to":[{to:[S]}],rounded:[{rounded:[u]}],"rounded-s":[{"rounded-s":[u]}],"rounded-e":[{"rounded-e":[u]}],"rounded-t":[{"rounded-t":[u]}],"rounded-r":[{"rounded-r":[u]}],"rounded-b":[{"rounded-b":[u]}],"rounded-l":[{"rounded-l":[u]}],"rounded-ss":[{"rounded-ss":[u]}],"rounded-se":[{"rounded-se":[u]}],"rounded-ee":[{"rounded-ee":[u]}],"rounded-es":[{"rounded-es":[u]}],"rounded-tl":[{"rounded-tl":[u]}],"rounded-tr":[{"rounded-tr":[u]}],"rounded-br":[{"rounded-br":[u]}],"rounded-bl":[{"rounded-bl":[u]}],"border-w":[{border:[l]}],"border-w-x":[{"border-x":[l]}],"border-w-y":[{"border-y":[l]}],"border-w-s":[{"border-s":[l]}],"border-w-e":[{"border-e":[l]}],"border-w-t":[{"border-t":[l]}],"border-w-r":[{"border-r":[l]}],"border-w-b":[{"border-b":[l]}],"border-w-l":[{"border-l":[l]}],"border-opacity":[{"border-opacity":[I]}],"border-style":[{border:[...U(),"hidden"]}],"divide-x":[{"divide-x":[l]}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":[l]}],"divide-y-reverse":["divide-y-reverse"],"divide-opacity":[{"divide-opacity":[I]}],"divide-style":[{divide:U()}],"border-color":[{border:[d]}],"border-color-x":[{"border-x":[d]}],"border-color-y":[{"border-y":[d]}],"border-color-s":[{"border-s":[d]}],"border-color-e":[{"border-e":[d]}],"border-color-t":[{"border-t":[d]}],"border-color-r":[{"border-r":[d]}],"border-color-b":[{"border-b":[d]}],"border-color-l":[{"border-l":[d]}],"divide-color":[{divide:[d]}],"outline-style":[{outline:["",...U()]}],"outline-offset":[{"outline-offset":[k,s]}],"outline-w":[{outline:[k,P]}],"outline-color":[{outline:[e]}],"ring-w":[{ring:Q()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:[e]}],"ring-opacity":[{"ring-opacity":[I]}],"ring-offset-w":[{"ring-offset":[k,P]}],"ring-offset-color":[{"ring-offset":[e]}],shadow:[{shadow:["","inner","none",b,We]}],"shadow-color":[{shadow:[T]}],opacity:[{opacity:[I]}],"mix-blend":[{"mix-blend":[...Y(),"plus-lighter","plus-darker"]}],"bg-blend":[{"bg-blend":Y()}],filter:[{filter:["","none"]}],blur:[{blur:[t]}],brightness:[{brightness:[o]}],contrast:[{contrast:[i]}],"drop-shadow":[{"drop-shadow":["","none",b,s]}],grayscale:[{grayscale:[n]}],"hue-rotate":[{"hue-rotate":[m]}],invert:[{invert:[C]}],saturate:[{saturate:[F]}],sepia:[{sepia:[v]}],"backdrop-filter":[{"backdrop-filter":["","none"]}],"backdrop-blur":[{"backdrop-blur":[t]}],"backdrop-brightness":[{"backdrop-brightness":[o]}],"backdrop-contrast":[{"backdrop-contrast":[i]}],"backdrop-grayscale":[{"backdrop-grayscale":[n]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[m]}],"backdrop-invert":[{"backdrop-invert":[C]}],"backdrop-opacity":[{"backdrop-opacity":[I]}],"backdrop-saturate":[{"backdrop-saturate":[F]}],"backdrop-sepia":[{"backdrop-sepia":[v]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":[r]}],"border-spacing-x":[{"border-spacing-x":[r]}],"border-spacing-y":[{"border-spacing-y":[r]}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["none","all","","colors","opacity","shadow","transform",s]}],duration:[{duration:w()}],ease:[{ease:["linear","in","out","in-out",s]}],delay:[{delay:w()}],animate:[{animate:["none","spin","ping","pulse","bounce",s]}],transform:[{transform:["","gpu","none"]}],scale:[{scale:[B]}],"scale-x":[{"scale-x":[B]}],"scale-y":[{"scale-y":[B]}],rotate:[{rotate:[R,s]}],"translate-x":[{"translate-x":[J]}],"translate-y":[{"translate-y":[J]}],"skew-x":[{"skew-x":[K]}],"skew-y":[{"skew-y":[K]}],"transform-origin":[{origin:["center","top","top-right","right","bottom-right","bottom","bottom-left","left","top-left",s]}],accent:[{accent:["auto",e]}],appearance:[{appearance:["none","auto"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",s]}],"caret-color":[{caret:[e]}],"pointer-events":[{"pointer-events":["none","auto"]}],resize:[{resize:["none","y","x",""]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":c()}],"scroll-mx":[{"scroll-mx":c()}],"scroll-my":[{"scroll-my":c()}],"scroll-ms":[{"scroll-ms":c()}],"scroll-me":[{"scroll-me":c()}],"scroll-mt":[{"scroll-mt":c()}],"scroll-mr":[{"scroll-mr":c()}],"scroll-mb":[{"scroll-mb":c()}],"scroll-ml":[{"scroll-ml":c()}],"scroll-p":[{"scroll-p":c()}],"scroll-px":[{"scroll-px":c()}],"scroll-py":[{"scroll-py":c()}],"scroll-ps":[{"scroll-ps":c()}],"scroll-pe":[{"scroll-pe":c()}],"scroll-pt":[{"scroll-pt":c()}],"scroll-pr":[{"scroll-pr":c()}],"scroll-pb":[{"scroll-pb":c()}],"scroll-pl":[{"scroll-pl":c()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",s]}],fill:[{fill:[e,"none"]}],"stroke-w":[{stroke:[k,P,E]}],stroke:[{stroke:[e,"none"]}],sr:["sr-only","not-sr-only"],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]}}};var se=Me(Ze);function fe(...e){return se(ee(e))}var ie=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),O=(...e)=>e.filter((a,t,o)=>!!a&&a.trim()!==""&&o.indexOf(a)===t).join(" ").trim();var ce={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};var pe=Ie.forwardRef(({color:e="currentColor",size:a=24,strokeWidth:t=2,absoluteStrokeWidth:o,className:d="",children:u,iconNode:r,...l},i)=>Ie.createElement("svg",{ref:i,...ce,width:a,height:a,stroke:e,strokeWidth:o?Number(t)*24/Number(a):t,className:O("lucide",d),...l},[...r.map(([n,m])=>Ie.createElement(n,m)),...Array.isArray(u)?u:[u]]));var me=(e,a)=>{let t=Ie.forwardRef(({className:o,...d},u)=>Ie.createElement(pe,{ref:u,iconNode:a,className:O(`lucide-${ie(e)}`,o),...d}));return t.displayName=`${e}`,t};var A=me("LoaderCircle",[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]]);var Le=A;var Xa=["xs","sm","md","lg"],Na=["contained","outlined","ghost","standard","link","secondary"],$e=tailwindVariants.tv({slots:{button:"flex flex-shrink-0 items-center justify-center gap-2 rounded-lg font-inter text-base font-semibold leading-[130%] transition-all ease-linear disabled:cursor-not-allowed disabled:ring-0",icon:"",loadingIcon:"absolute animate-spin text-neutral-400"},variants:{size:{lg:{button:"h-12 px-4",icon:"h-4.5 w-4.5",loadingIcon:"h-4.5 w-4.5"},md:{button:"h-10 px-4 text-sm leading-[130%]",icon:"h-4.5 w-4.5",loadingIcon:"h-4.5 w-4.5"},sm:{button:"h-8 gap-1 px-3 text-sm leading-[130%]",icon:"h-3.5 w-3.5",loadingIcon:"h-3.5 w-3.5"},xs:{button:"h-6 gap-1 rounded-[6px] px-3 text-xs leading-[130%]",icon:"h-3.5 w-3.5",loadingIcon:"h-3.5 w-3.5"}},variant:{contained:{button:"bg-primary-500 text-neutral-50 hover:bg-primary-600 focus:bg-primary-500 focus:ring-[3px] focus:ring-inset focus:ring-primary-800 active:bg-primary-700 active:ring-0 disabled:bg-neutral-100 disabled:text-neutral-400"},secondary:{button:"text-primary-500 ring-[1.5px] ring-inset ring-primary-500 hover:bg-transparent-primary-20 hover:text-primary-600 hover:ring-primary-600 focus:ring-[3px] focus:ring-primary-800 active:bg-transparent-primary-40 active:text-primary-700 active:ring-primary-700 disabled:bg-neutral-50/0 disabled:text-neutral-400 disabled:ring-[1.5px] disabled:ring-neutral-400"},outlined:{button:"leading-[130%] text-neutral-900 ring-[1.5px] ring-inset ring-neutral-900 focus:bg-neutral-50 focus:bg-opacity-0 focus:ring-[3px] focus:ring-primary-900 active:ring-[1.5px] disabled:bg-neutral-50/0 disabled:text-neutral-400 disabled:ring-[1.5px] disabled:ring-neutral-400 [&:not([disabled])]:hover:bg-transparent-primary-20 [&:not([disabled])]:active:bg-transparent-primary-40"},ghost:{button:"text-primary-500 hover:bg-transparent-primary-20 hover:text-primary-600 focus:bg-neutral-50 focus:bg-opacity-0 focus:ring-[3px] focus:ring-inset focus:ring-primary-800 active:bg-transparent-primary-40 active:text-primary-700 active:ring-0 disabled:bg-neutral-50 disabled:bg-opacity-0 disabled:text-neutral-400"},standard:{button:"text-neutral-900 hover:bg-transparent-primary-20 focus:bg-neutral-50/0 focus:ring-[3px] focus:ring-inset focus:ring-primary-800 active:bg-transparent-primary-40 active:ring-0 disabled:bg-neutral-50 disabled:bg-opacity-0 disabled:text-neutral-400"},link:{button:"text-primary-500 underline underline-offset-2 hover:bg-transparent-primary-20 hover:text-primary-600 focus:bg-neutral-50/0 focus:text-primary-500 focus:ring-[3px] focus:ring-inset focus:ring-primary-800 active:bg-transparent-primary-40 active:text-primary-700 active:ring-0 disabled:bg-neutral-50 disabled:bg-opacity-0 disabled:text-neutral-400"}},loading:{true:{button:"disabled:text-neutral-50 disabled:text-opacity-0"}}},defaultVariants:{variant:"contained",size:"md",loading:!1,disabled:!1}}),Ka=Ie.forwardRef(({children:e,className:a,variant:t,size:o,startIcon:d,endIcon:u,loading:r,disabled:l,type:i="button",StartIcon:n,EndIcon:m,...C},g)=>{let{button:S,icon:x,loadingIcon:L}=$e({variant:t,size:o,loading:r});return jsxRuntime.jsxs("button",{...C,ref:g,disabled:r||l,className:fe(S(),a),type:i,children:[r&&jsxRuntime.jsx(Le,{className:L()}),d&&Ie__default.default.cloneElement(d,{className:x()}),n&&jsxRuntime.jsx(n,{className:x()}),e,u&&Ie__default.default.cloneElement(u,{className:x()}),m&&jsxRuntime.jsx(m,{className:x()})]})});/*! Bundled license information:
1
+ 'use strict';var Ie=require('react'),tailwindVariants=require('tailwind-variants'),jsxRuntime=require('react/jsx-runtime');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var Ie__default=/*#__PURE__*/_interopDefault(Ie);function $(e){var a,t,o="";if(typeof e=="string"||typeof e=="number")o+=e;else if(typeof e=="object")if(Array.isArray(e)){var d=e.length;for(a=0;a<d;a++)e[a]&&(t=$(e[a]))&&(o&&(o+=" "),o+=t);}else for(t in e)e[t]&&(o&&(o+=" "),o+=t);return o}function ee(){for(var e,a,t=0,o="",d=arguments.length;t<d;t++)(e=arguments[t])&&(a=$(e))&&(o&&(o+=" "),o+=a);return o}var X="-",xe=e=>{let a=ge(e),{conflictingClassGroups:t,conflictingClassGroupModifiers:o}=e;return {getClassGroupId:r=>{let l=r.split(X);return l[0]===""&&l.length!==1&&l.shift(),oe(l,a)||Ce(r)},getConflictingClassGroupIds:(r,l)=>{let i=t[r]||[];return l&&o[r]?[...i,...o[r]]:i}}},oe=(e,a)=>{if(e.length===0)return a.classGroupId;let t=e[0],o=a.nextPart.get(t),d=o?oe(e.slice(1),o):void 0;if(d)return d;if(a.validators.length===0)return;let u=e.join(X);return a.validators.find(({validator:r})=>r(u))?.classGroupId},ae=/^\[(.+)\]$/,Ce=e=>{if(ae.test(e)){let a=ae.exec(e)[1],t=a?.substring(0,a.indexOf(":"));if(t)return "arbitrary.."+t}},ge=e=>{let{theme:a,prefix:t}=e,o={nextPart:new Map,validators:[]};return Se(Object.entries(e.classGroups),t).forEach(([u,r])=>{W(r,o,u,a);}),o},W=(e,a,t,o)=>{e.forEach(d=>{if(typeof d=="string"){let u=d===""?a:te(a,d);u.classGroupId=t;return}if(typeof d=="function"){if(he(d)){W(d(o),a,t,o);return}a.validators.push({validator:d,classGroupId:t});return}Object.entries(d).forEach(([u,r])=>{W(r,te(a,u),t,o);});});},te=(e,a)=>{let t=e;return a.split(X).forEach(o=>{t.nextPart.has(o)||t.nextPart.set(o,{nextPart:new Map,validators:[]}),t=t.nextPart.get(o);}),t},he=e=>e.isThemeGetter,Se=(e,a)=>a?e.map(([t,o])=>{let d=o.map(u=>typeof u=="string"?a+u:typeof u=="object"?Object.fromEntries(Object.entries(u).map(([r,l])=>[a+r,l])):u);return [t,d]}):e,we=e=>{if(e<1)return {get:()=>{},set:()=>{}};let a=0,t=new Map,o=new Map,d=(u,r)=>{t.set(u,r),a++,a>e&&(a=0,o=t,t=new Map);};return {get(u){let r=t.get(u);if(r!==void 0)return r;if((r=o.get(u))!==void 0)return d(u,r),r},set(u,r){t.has(u)?t.set(u,r):d(u,r);}}},ue="!",ke=e=>{let{separator:a,experimentalParseClassName:t}=e,o=a.length===1,d=a[0],u=a.length,r=l=>{let i=[],n=0,m=0,C;for(let p=0;p<l.length;p++){let I=l[p];if(n===0){if(I===d&&(o||l.slice(p,p+u)===a)){i.push(l.slice(m,p)),m=p+u;continue}if(I==="/"){C=p;continue}}I==="["?n++:I==="]"&&n--;}let g=i.length===0?l:l.substring(m),S=g.startsWith(ue),x=S?g.substring(1):g,L=C&&C>m?C-m:void 0;return {modifiers:i,hasImportantModifier:S,baseClassName:x,maybePostfixModifierPosition:L}};return t?l=>t({className:l,parseClassName:r}):r},be=e=>{if(e.length<=1)return e;let a=[],t=[];return e.forEach(o=>{o[0]==="["?(a.push(...t.sort(),o),t=[]):t.push(o);}),a.push(...t.sort()),a},Pe=e=>({cache:we(e.cacheSize),parseClassName:ke(e),...xe(e)}),Ae=/\s+/,Be=(e,a)=>{let{parseClassName:t,getClassGroupId:o,getConflictingClassGroupIds:d}=a,u=[],r=e.trim().split(Ae),l="";for(let i=r.length-1;i>=0;i-=1){let n=r[i],{modifiers:m,hasImportantModifier:C,baseClassName:g,maybePostfixModifierPosition:S}=t(n),x=!!S,L=o(x?g.substring(0,S):g);if(!L){if(!x){l=n+(l.length>0?" "+l:l);continue}if(L=o(g),!L){l=n+(l.length>0?" "+l:l);continue}x=!1;}let p=be(m).join(":"),I=C?p+ue:p,h=I+L;if(u.includes(h))continue;u.push(h);let F=d(L,x);for(let B=0;B<F.length;++B){let v=F[B];u.push(I+v);}l=n+(l.length>0?" "+l:l);}return l};function ye(){let e=0,a,t,o="";for(;e<arguments.length;)(a=arguments[e++])&&(t=le(a))&&(o&&(o+=" "),o+=t);return o}var le=e=>{if(typeof e=="string")return e;let a,t="";for(let o=0;o<e.length;o++)e[o]&&(a=le(e[o]))&&(t&&(t+=" "),t+=a);return t};function Me(e,...a){let t,o,d,u=r;function r(i){let n=a.reduce((m,C)=>C(m),e());return t=Pe(n),o=t.cache.get,d=t.cache.set,u=l,l(i)}function l(i){let n=o(i);if(n)return n;let m=Be(i,t);return d(i,m),m}return function(){return u(ye.apply(null,arguments))}}var f=e=>{let a=t=>t[e]||[];return a.isThemeGetter=!0,a},de=/^\[(?:([a-z-]+):)?(.+)\]$/i,Fe=/^\d+\/\d+$/,De=new Set(["px","full","screen"]),Re=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,Te=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,ve=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/,qe=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,Ue=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,k=e=>y(e)||De.has(e)||Fe.test(e),b=e=>M(e,"length",Xe),y=e=>!!e&&!Number.isNaN(Number(e)),E=e=>M(e,"number",y),R=e=>!!e&&Number.isInteger(Number(e)),Oe=e=>e.endsWith("%")&&y(e.slice(0,-1)),s=e=>de.test(e),P=e=>Re.test(e),He=new Set(["length","size","percentage"]),Ge=e=>M(e,He,re),ze=e=>M(e,"position",re),Ve=new Set(["image","url"]),Ee=e=>M(e,Ve,Ke),We=e=>M(e,"",Ne),T=()=>!0,M=(e,a,t)=>{let o=de.exec(e);return o?o[1]?typeof a=="string"?o[1]===a:a.has(o[1]):t(o[2]):!1},Xe=e=>Te.test(e)&&!ve.test(e),re=()=>!1,Ne=e=>qe.test(e),Ke=e=>Ue.test(e);var Ze=()=>{let e=f("colors"),a=f("spacing"),t=f("blur"),o=f("brightness"),d=f("borderColor"),u=f("borderRadius"),r=f("borderSpacing"),l=f("borderWidth"),i=f("contrast"),n=f("grayscale"),m=f("hueRotate"),C=f("invert"),g=f("gap"),S=f("gradientColorStops"),x=f("gradientColorStopPositions"),L=f("inset"),p=f("margin"),I=f("opacity"),h=f("padding"),F=f("saturate"),B=f("scale"),v=f("sepia"),K=f("skew"),Z=f("space"),J=f("translate"),H=()=>["auto","contain","none"],G=()=>["auto","hidden","clip","visible","scroll"],z=()=>["auto",s,a],c=()=>[s,a],Q=()=>["",k,b],q=()=>["auto",y,s],j=()=>["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top"],U=()=>["solid","dashed","dotted","double","none"],Y=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],V=()=>["start","end","center","between","around","evenly","stretch"],D=()=>["","0",s],_=()=>["auto","avoid","all","avoid-page","page","left","right","column"],w=()=>[y,s];return {cacheSize:500,separator:":",theme:{colors:[T],spacing:[k,b],blur:["none","",P,s],brightness:w(),borderColor:[e],borderRadius:["none","","full",P,s],borderSpacing:c(),borderWidth:Q(),contrast:w(),grayscale:D(),hueRotate:w(),invert:D(),gap:c(),gradientColorStops:[e],gradientColorStopPositions:[Oe,b],inset:z(),margin:z(),opacity:w(),padding:c(),saturate:w(),scale:w(),sepia:D(),skew:w(),space:c(),translate:c()},classGroups:{aspect:[{aspect:["auto","square","video",s]}],container:["container"],columns:[{columns:[P]}],"break-after":[{"break-after":_()}],"break-before":[{"break-before":_()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:[...j(),s]}],overflow:[{overflow:G()}],"overflow-x":[{"overflow-x":G()}],"overflow-y":[{"overflow-y":G()}],overscroll:[{overscroll:H()}],"overscroll-x":[{"overscroll-x":H()}],"overscroll-y":[{"overscroll-y":H()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:[L]}],"inset-x":[{"inset-x":[L]}],"inset-y":[{"inset-y":[L]}],start:[{start:[L]}],end:[{end:[L]}],top:[{top:[L]}],right:[{right:[L]}],bottom:[{bottom:[L]}],left:[{left:[L]}],visibility:["visible","invisible","collapse"],z:[{z:["auto",R,s]}],basis:[{basis:z()}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["wrap","wrap-reverse","nowrap"]}],flex:[{flex:["1","auto","initial","none",s]}],grow:[{grow:D()}],shrink:[{shrink:D()}],order:[{order:["first","last","none",R,s]}],"grid-cols":[{"grid-cols":[T]}],"col-start-end":[{col:["auto",{span:["full",R,s]},s]}],"col-start":[{"col-start":q()}],"col-end":[{"col-end":q()}],"grid-rows":[{"grid-rows":[T]}],"row-start-end":[{row:["auto",{span:[R,s]},s]}],"row-start":[{"row-start":q()}],"row-end":[{"row-end":q()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":["auto","min","max","fr",s]}],"auto-rows":[{"auto-rows":["auto","min","max","fr",s]}],gap:[{gap:[g]}],"gap-x":[{"gap-x":[g]}],"gap-y":[{"gap-y":[g]}],"justify-content":[{justify:["normal",...V()]}],"justify-items":[{"justify-items":["start","end","center","stretch"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch"]}],"align-content":[{content:["normal",...V(),"baseline"]}],"align-items":[{items:["start","end","center","baseline","stretch"]}],"align-self":[{self:["auto","start","end","center","stretch","baseline"]}],"place-content":[{"place-content":[...V(),"baseline"]}],"place-items":[{"place-items":["start","end","center","baseline","stretch"]}],"place-self":[{"place-self":["auto","start","end","center","stretch"]}],p:[{p:[h]}],px:[{px:[h]}],py:[{py:[h]}],ps:[{ps:[h]}],pe:[{pe:[h]}],pt:[{pt:[h]}],pr:[{pr:[h]}],pb:[{pb:[h]}],pl:[{pl:[h]}],m:[{m:[p]}],mx:[{mx:[p]}],my:[{my:[p]}],ms:[{ms:[p]}],me:[{me:[p]}],mt:[{mt:[p]}],mr:[{mr:[p]}],mb:[{mb:[p]}],ml:[{ml:[p]}],"space-x":[{"space-x":[Z]}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":[Z]}],"space-y-reverse":["space-y-reverse"],w:[{w:["auto","min","max","fit","svw","lvw","dvw",s,a]}],"min-w":[{"min-w":[s,a,"min","max","fit"]}],"max-w":[{"max-w":[s,a,"none","full","min","max","fit","prose",{screen:[P]},P]}],h:[{h:[s,a,"auto","min","max","fit","svh","lvh","dvh"]}],"min-h":[{"min-h":[s,a,"min","max","fit","svh","lvh","dvh"]}],"max-h":[{"max-h":[s,a,"min","max","fit","svh","lvh","dvh"]}],size:[{size:[s,a,"auto","min","max","fit"]}],"font-size":[{text:["base",P,b]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:["thin","extralight","light","normal","medium","semibold","bold","extrabold","black",E]}],"font-family":[{font:[T]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:["tighter","tight","normal","wide","wider","widest",s]}],"line-clamp":[{"line-clamp":["none",y,E]}],leading:[{leading:["none","tight","snug","normal","relaxed","loose",k,s]}],"list-image":[{"list-image":["none",s]}],"list-style-type":[{list:["none","disc","decimal",s]}],"list-style-position":[{list:["inside","outside"]}],"placeholder-color":[{placeholder:[e]}],"placeholder-opacity":[{"placeholder-opacity":[I]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"text-color":[{text:[e]}],"text-opacity":[{"text-opacity":[I]}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...U(),"wavy"]}],"text-decoration-thickness":[{decoration:["auto","from-font",k,b]}],"underline-offset":[{"underline-offset":["auto",k,s]}],"text-decoration-color":[{decoration:[e]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:c()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",s]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",s]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-opacity":[{"bg-opacity":[I]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:[...j(),ze]}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","round","space"]}]}],"bg-size":[{bg:["auto","cover","contain",Ge]}],"bg-image":[{bg:["none",{"gradient-to":["t","tr","r","br","b","bl","l","tl"]},Ee]}],"bg-color":[{bg:[e]}],"gradient-from-pos":[{from:[x]}],"gradient-via-pos":[{via:[x]}],"gradient-to-pos":[{to:[x]}],"gradient-from":[{from:[S]}],"gradient-via":[{via:[S]}],"gradient-to":[{to:[S]}],rounded:[{rounded:[u]}],"rounded-s":[{"rounded-s":[u]}],"rounded-e":[{"rounded-e":[u]}],"rounded-t":[{"rounded-t":[u]}],"rounded-r":[{"rounded-r":[u]}],"rounded-b":[{"rounded-b":[u]}],"rounded-l":[{"rounded-l":[u]}],"rounded-ss":[{"rounded-ss":[u]}],"rounded-se":[{"rounded-se":[u]}],"rounded-ee":[{"rounded-ee":[u]}],"rounded-es":[{"rounded-es":[u]}],"rounded-tl":[{"rounded-tl":[u]}],"rounded-tr":[{"rounded-tr":[u]}],"rounded-br":[{"rounded-br":[u]}],"rounded-bl":[{"rounded-bl":[u]}],"border-w":[{border:[l]}],"border-w-x":[{"border-x":[l]}],"border-w-y":[{"border-y":[l]}],"border-w-s":[{"border-s":[l]}],"border-w-e":[{"border-e":[l]}],"border-w-t":[{"border-t":[l]}],"border-w-r":[{"border-r":[l]}],"border-w-b":[{"border-b":[l]}],"border-w-l":[{"border-l":[l]}],"border-opacity":[{"border-opacity":[I]}],"border-style":[{border:[...U(),"hidden"]}],"divide-x":[{"divide-x":[l]}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":[l]}],"divide-y-reverse":["divide-y-reverse"],"divide-opacity":[{"divide-opacity":[I]}],"divide-style":[{divide:U()}],"border-color":[{border:[d]}],"border-color-x":[{"border-x":[d]}],"border-color-y":[{"border-y":[d]}],"border-color-s":[{"border-s":[d]}],"border-color-e":[{"border-e":[d]}],"border-color-t":[{"border-t":[d]}],"border-color-r":[{"border-r":[d]}],"border-color-b":[{"border-b":[d]}],"border-color-l":[{"border-l":[d]}],"divide-color":[{divide:[d]}],"outline-style":[{outline:["",...U()]}],"outline-offset":[{"outline-offset":[k,s]}],"outline-w":[{outline:[k,b]}],"outline-color":[{outline:[e]}],"ring-w":[{ring:Q()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:[e]}],"ring-opacity":[{"ring-opacity":[I]}],"ring-offset-w":[{"ring-offset":[k,b]}],"ring-offset-color":[{"ring-offset":[e]}],shadow:[{shadow:["","inner","none",P,We]}],"shadow-color":[{shadow:[T]}],opacity:[{opacity:[I]}],"mix-blend":[{"mix-blend":[...Y(),"plus-lighter","plus-darker"]}],"bg-blend":[{"bg-blend":Y()}],filter:[{filter:["","none"]}],blur:[{blur:[t]}],brightness:[{brightness:[o]}],contrast:[{contrast:[i]}],"drop-shadow":[{"drop-shadow":["","none",P,s]}],grayscale:[{grayscale:[n]}],"hue-rotate":[{"hue-rotate":[m]}],invert:[{invert:[C]}],saturate:[{saturate:[F]}],sepia:[{sepia:[v]}],"backdrop-filter":[{"backdrop-filter":["","none"]}],"backdrop-blur":[{"backdrop-blur":[t]}],"backdrop-brightness":[{"backdrop-brightness":[o]}],"backdrop-contrast":[{"backdrop-contrast":[i]}],"backdrop-grayscale":[{"backdrop-grayscale":[n]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[m]}],"backdrop-invert":[{"backdrop-invert":[C]}],"backdrop-opacity":[{"backdrop-opacity":[I]}],"backdrop-saturate":[{"backdrop-saturate":[F]}],"backdrop-sepia":[{"backdrop-sepia":[v]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":[r]}],"border-spacing-x":[{"border-spacing-x":[r]}],"border-spacing-y":[{"border-spacing-y":[r]}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["none","all","","colors","opacity","shadow","transform",s]}],duration:[{duration:w()}],ease:[{ease:["linear","in","out","in-out",s]}],delay:[{delay:w()}],animate:[{animate:["none","spin","ping","pulse","bounce",s]}],transform:[{transform:["","gpu","none"]}],scale:[{scale:[B]}],"scale-x":[{"scale-x":[B]}],"scale-y":[{"scale-y":[B]}],rotate:[{rotate:[R,s]}],"translate-x":[{"translate-x":[J]}],"translate-y":[{"translate-y":[J]}],"skew-x":[{"skew-x":[K]}],"skew-y":[{"skew-y":[K]}],"transform-origin":[{origin:["center","top","top-right","right","bottom-right","bottom","bottom-left","left","top-left",s]}],accent:[{accent:["auto",e]}],appearance:[{appearance:["none","auto"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",s]}],"caret-color":[{caret:[e]}],"pointer-events":[{"pointer-events":["none","auto"]}],resize:[{resize:["none","y","x",""]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":c()}],"scroll-mx":[{"scroll-mx":c()}],"scroll-my":[{"scroll-my":c()}],"scroll-ms":[{"scroll-ms":c()}],"scroll-me":[{"scroll-me":c()}],"scroll-mt":[{"scroll-mt":c()}],"scroll-mr":[{"scroll-mr":c()}],"scroll-mb":[{"scroll-mb":c()}],"scroll-ml":[{"scroll-ml":c()}],"scroll-p":[{"scroll-p":c()}],"scroll-px":[{"scroll-px":c()}],"scroll-py":[{"scroll-py":c()}],"scroll-ps":[{"scroll-ps":c()}],"scroll-pe":[{"scroll-pe":c()}],"scroll-pt":[{"scroll-pt":c()}],"scroll-pr":[{"scroll-pr":c()}],"scroll-pb":[{"scroll-pb":c()}],"scroll-pl":[{"scroll-pl":c()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",s]}],fill:[{fill:[e,"none"]}],"stroke-w":[{stroke:[k,b,E]}],stroke:[{stroke:[e,"none"]}],sr:["sr-only","not-sr-only"],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]}}};var se=Me(Ze);function fe(...e){return se(ee(e))}var ie=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),O=(...e)=>e.filter((a,t,o)=>!!a&&a.trim()!==""&&o.indexOf(a)===t).join(" ").trim();var ce={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};var pe=Ie.forwardRef(({color:e="currentColor",size:a=24,strokeWidth:t=2,absoluteStrokeWidth:o,className:d="",children:u,iconNode:r,...l},i)=>Ie.createElement("svg",{ref:i,...ce,width:a,height:a,stroke:e,strokeWidth:o?Number(t)*24/Number(a):t,className:O("lucide",d),...l},[...r.map(([n,m])=>Ie.createElement(n,m)),...Array.isArray(u)?u:[u]]));var me=(e,a)=>{let t=Ie.forwardRef(({className:o,...d},u)=>Ie.createElement(pe,{ref:u,iconNode:a,className:O(`lucide-${ie(e)}`,o),...d}));return t.displayName=`${e}`,t};var A=me("LoaderCircle",[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]]);var Le=A;var Xa=["xs","sm","md","lg"],Na=["contained","outlined","ghost","standard","link","secondary","white"],$e=tailwindVariants.tv({slots:{button:"flex flex-shrink-0 items-center justify-center gap-2 rounded-lg font-inter text-base font-semibold leading-[130%] transition-all ease-linear disabled:cursor-not-allowed disabled:ring-0",icon:"",loadingIcon:"absolute animate-spin text-neutral-400"},variants:{size:{lg:{button:"h-12 px-4",icon:"h-4.5 w-4.5",loadingIcon:"h-4.5 w-4.5"},md:{button:"h-10 px-4 text-sm leading-[130%]",icon:"h-4.5 w-4.5",loadingIcon:"h-4.5 w-4.5"},sm:{button:"h-8 gap-1 px-3 text-sm leading-[130%]",icon:"h-3.5 w-3.5",loadingIcon:"h-3.5 w-3.5"},xs:{button:"h-6 gap-1 rounded-[6px] px-3 text-xs leading-[130%]",icon:"h-3.5 w-3.5",loadingIcon:"h-3.5 w-3.5"}},variant:{contained:{button:"bg-primary-500 text-neutral-50 hover:bg-primary-600 focus:bg-primary-500 focus:ring-[3px] focus:ring-inset focus:ring-primary-800 active:bg-primary-700 active:ring-0 disabled:bg-neutral-100 disabled:text-neutral-400"},secondary:{button:"text-primary-500 ring-[1.5px] ring-inset ring-primary-500 hover:bg-transparent-primary-20 hover:text-primary-600 hover:ring-primary-600 focus:ring-[3px] focus:ring-primary-800 active:bg-transparent-primary-40 active:text-primary-700 active:ring-primary-700 disabled:bg-neutral-50/0 disabled:text-neutral-400 disabled:ring-[1.5px] disabled:ring-neutral-400"},outlined:{button:"leading-[130%] text-neutral-900 ring-[1.5px] ring-inset ring-neutral-900 focus:bg-neutral-50 focus:bg-opacity-0 focus:ring-[3px] focus:ring-primary-900 active:ring-[1.5px] disabled:bg-neutral-50/0 disabled:text-neutral-400 disabled:ring-[1.5px] disabled:ring-neutral-400 [&:not([disabled])]:hover:bg-transparent-primary-20 [&:not([disabled])]:active:bg-transparent-primary-40"},ghost:{button:"text-primary-500 hover:bg-transparent-primary-20 hover:text-primary-600 focus:bg-neutral-50 focus:bg-opacity-0 focus:ring-[3px] focus:ring-inset focus:ring-primary-800 active:bg-transparent-primary-40 active:text-primary-700 active:ring-0 disabled:bg-neutral-50 disabled:bg-opacity-0 disabled:text-neutral-400"},standard:{button:"text-neutral-900 hover:bg-transparent-primary-20 focus:bg-neutral-50/0 focus:ring-[3px] focus:ring-inset focus:ring-primary-800 active:bg-transparent-primary-40 active:ring-0 disabled:bg-neutral-50 disabled:bg-opacity-0 disabled:text-neutral-400"},link:{button:"text-primary-500 underline underline-offset-2 hover:bg-transparent-primary-20 hover:text-primary-600 focus:bg-neutral-50/0 focus:text-primary-500 focus:ring-[3px] focus:ring-inset focus:ring-primary-800 active:bg-transparent-primary-40 active:text-primary-700 active:ring-0 disabled:bg-neutral-50 disabled:bg-opacity-0 disabled:text-neutral-400"},white:{button:"bg-neutral-50 text-neutral-900"}},loading:{true:{button:"disabled:text-neutral-50 disabled:text-opacity-0"}}},defaultVariants:{variant:"contained",size:"md",loading:!1,disabled:!1}}),Ka=Ie.forwardRef(({children:e,className:a,variant:t,size:o,startIcon:d,endIcon:u,loading:r,disabled:l,type:i="button",StartIcon:n,EndIcon:m,...C},g)=>{let{button:S,icon:x,loadingIcon:L}=$e({variant:t,size:o,loading:r});return jsxRuntime.jsxs("button",{...C,ref:g,disabled:r||l,className:fe(S(),a),type:i,children:[r&&jsxRuntime.jsx(Le,{className:L()}),d&&Ie__default.default.cloneElement(d,{className:x()}),n&&jsxRuntime.jsx(n,{className:x()}),e,u&&Ie__default.default.cloneElement(u,{className:x()}),m&&jsxRuntime.jsx(m,{className:x()})]})});/*! Bundled license information:
2
2
 
3
3
  lucide-react/dist/esm/shared/src/utils.js:
4
4
  (**
package/dist/button.mjs CHANGED
@@ -1 +1 @@
1
- export{c as Button,a as ButtonSizes,b as ButtonVariants}from'./chunk-4ZB4CDZE.mjs';import'./chunk-TYHJTIAW.mjs';import'./chunk-TGTW7UYA.mjs';import'./chunk-2WINTZSS.mjs';
1
+ export{c as Button,a as ButtonSizes,b as ButtonVariants}from'./chunk-2VL36SBW.mjs';import'./chunk-TYHJTIAW.mjs';import'./chunk-TGTW7UYA.mjs';import'./chunk-2WINTZSS.mjs';
@@ -1,6 +1,6 @@
1
1
  import * as tailwind_variants from 'tailwind-variants';
2
2
  import { VariantProps } from 'tailwind-variants';
3
- import { HTMLAttributes, FC } from 'react';
3
+ import React__default, { HTMLAttributes } from 'react';
4
4
  import { LucideIcon } from 'lucide-react';
5
5
 
6
6
  declare const ChipContextVariants: readonly ["light", "fill", "outlined", "ghost"];
@@ -112,6 +112,404 @@ declare const chipContextStyles: tailwind_variants.TVReturnType<{
112
112
  type ChipContextProps = Omit<HTMLAttributes<HTMLDivElement>, "color"> & Omit<Omit<Omit<VariantProps<typeof chipContextStyles>, "variant">, "color">, "size"> & Required<Pick<VariantProps<typeof chipContextStyles>, "variant">> & Required<Pick<VariantProps<typeof chipContextStyles>, "color">> & Required<Pick<VariantProps<typeof chipContextStyles>, "size">> & {
113
113
  StartIcon?: LucideIcon;
114
114
  };
115
- declare const ChipContext: FC<ChipContextProps>;
115
+ declare const ChipContext: React__default.ForwardRefExoticComponent<Omit<React__default.HTMLAttributes<HTMLDivElement>, "color"> & Omit<Omit<Omit<VariantProps<tailwind_variants.TVReturnType<{
116
+ color: {
117
+ "p-light": string;
118
+ "p-dark": string;
119
+ neutral: string;
120
+ violet: string;
121
+ sunny: string;
122
+ disabled: string;
123
+ };
124
+ variant: {
125
+ light: {};
126
+ fill: {};
127
+ outlined: {};
128
+ ghost: {};
129
+ };
130
+ size: {
131
+ sm: {
132
+ container: string;
133
+ text: string;
134
+ };
135
+ xs: {
136
+ container: string;
137
+ text: string;
138
+ };
139
+ md: {
140
+ container: string;
141
+ text: string;
142
+ };
143
+ };
144
+ }, {
145
+ container: string;
146
+ text: string;
147
+ icon: string;
148
+ }, undefined, TVConfig<V, EV>, {
149
+ color: {
150
+ "p-light": string;
151
+ "p-dark": string;
152
+ neutral: string;
153
+ violet: string;
154
+ sunny: string;
155
+ disabled: string;
156
+ };
157
+ variant: {
158
+ light: {};
159
+ fill: {};
160
+ outlined: {};
161
+ ghost: {};
162
+ };
163
+ size: {
164
+ sm: {
165
+ container: string;
166
+ text: string;
167
+ };
168
+ xs: {
169
+ container: string;
170
+ text: string;
171
+ };
172
+ md: {
173
+ container: string;
174
+ text: string;
175
+ };
176
+ };
177
+ }, {
178
+ container: string;
179
+ text: string;
180
+ icon: string;
181
+ }, tailwind_variants.TVReturnType<{
182
+ color: {
183
+ "p-light": string;
184
+ "p-dark": string;
185
+ neutral: string;
186
+ violet: string;
187
+ sunny: string;
188
+ disabled: string;
189
+ };
190
+ variant: {
191
+ light: {};
192
+ fill: {};
193
+ outlined: {};
194
+ ghost: {};
195
+ };
196
+ size: {
197
+ sm: {
198
+ container: string;
199
+ text: string;
200
+ };
201
+ xs: {
202
+ container: string;
203
+ text: string;
204
+ };
205
+ md: {
206
+ container: string;
207
+ text: string;
208
+ };
209
+ };
210
+ }, {
211
+ container: string;
212
+ text: string;
213
+ icon: string;
214
+ }, undefined, TVConfig<V, EV>, unknown, unknown, undefined>>>, "variant">, "color">, "size"> & Required<Pick<VariantProps<tailwind_variants.TVReturnType<{
215
+ color: {
216
+ "p-light": string;
217
+ "p-dark": string;
218
+ neutral: string;
219
+ violet: string;
220
+ sunny: string;
221
+ disabled: string;
222
+ };
223
+ variant: {
224
+ light: {};
225
+ fill: {};
226
+ outlined: {};
227
+ ghost: {};
228
+ };
229
+ size: {
230
+ sm: {
231
+ container: string;
232
+ text: string;
233
+ };
234
+ xs: {
235
+ container: string;
236
+ text: string;
237
+ };
238
+ md: {
239
+ container: string;
240
+ text: string;
241
+ };
242
+ };
243
+ }, {
244
+ container: string;
245
+ text: string;
246
+ icon: string;
247
+ }, undefined, TVConfig<V, EV>, {
248
+ color: {
249
+ "p-light": string;
250
+ "p-dark": string;
251
+ neutral: string;
252
+ violet: string;
253
+ sunny: string;
254
+ disabled: string;
255
+ };
256
+ variant: {
257
+ light: {};
258
+ fill: {};
259
+ outlined: {};
260
+ ghost: {};
261
+ };
262
+ size: {
263
+ sm: {
264
+ container: string;
265
+ text: string;
266
+ };
267
+ xs: {
268
+ container: string;
269
+ text: string;
270
+ };
271
+ md: {
272
+ container: string;
273
+ text: string;
274
+ };
275
+ };
276
+ }, {
277
+ container: string;
278
+ text: string;
279
+ icon: string;
280
+ }, tailwind_variants.TVReturnType<{
281
+ color: {
282
+ "p-light": string;
283
+ "p-dark": string;
284
+ neutral: string;
285
+ violet: string;
286
+ sunny: string;
287
+ disabled: string;
288
+ };
289
+ variant: {
290
+ light: {};
291
+ fill: {};
292
+ outlined: {};
293
+ ghost: {};
294
+ };
295
+ size: {
296
+ sm: {
297
+ container: string;
298
+ text: string;
299
+ };
300
+ xs: {
301
+ container: string;
302
+ text: string;
303
+ };
304
+ md: {
305
+ container: string;
306
+ text: string;
307
+ };
308
+ };
309
+ }, {
310
+ container: string;
311
+ text: string;
312
+ icon: string;
313
+ }, undefined, TVConfig<V, EV>, unknown, unknown, undefined>>>, "variant">> & Required<Pick<VariantProps<tailwind_variants.TVReturnType<{
314
+ color: {
315
+ "p-light": string;
316
+ "p-dark": string;
317
+ neutral: string;
318
+ violet: string;
319
+ sunny: string;
320
+ disabled: string;
321
+ };
322
+ variant: {
323
+ light: {};
324
+ fill: {};
325
+ outlined: {};
326
+ ghost: {};
327
+ };
328
+ size: {
329
+ sm: {
330
+ container: string;
331
+ text: string;
332
+ };
333
+ xs: {
334
+ container: string;
335
+ text: string;
336
+ };
337
+ md: {
338
+ container: string;
339
+ text: string;
340
+ };
341
+ };
342
+ }, {
343
+ container: string;
344
+ text: string;
345
+ icon: string;
346
+ }, undefined, TVConfig<V, EV>, {
347
+ color: {
348
+ "p-light": string;
349
+ "p-dark": string;
350
+ neutral: string;
351
+ violet: string;
352
+ sunny: string;
353
+ disabled: string;
354
+ };
355
+ variant: {
356
+ light: {};
357
+ fill: {};
358
+ outlined: {};
359
+ ghost: {};
360
+ };
361
+ size: {
362
+ sm: {
363
+ container: string;
364
+ text: string;
365
+ };
366
+ xs: {
367
+ container: string;
368
+ text: string;
369
+ };
370
+ md: {
371
+ container: string;
372
+ text: string;
373
+ };
374
+ };
375
+ }, {
376
+ container: string;
377
+ text: string;
378
+ icon: string;
379
+ }, tailwind_variants.TVReturnType<{
380
+ color: {
381
+ "p-light": string;
382
+ "p-dark": string;
383
+ neutral: string;
384
+ violet: string;
385
+ sunny: string;
386
+ disabled: string;
387
+ };
388
+ variant: {
389
+ light: {};
390
+ fill: {};
391
+ outlined: {};
392
+ ghost: {};
393
+ };
394
+ size: {
395
+ sm: {
396
+ container: string;
397
+ text: string;
398
+ };
399
+ xs: {
400
+ container: string;
401
+ text: string;
402
+ };
403
+ md: {
404
+ container: string;
405
+ text: string;
406
+ };
407
+ };
408
+ }, {
409
+ container: string;
410
+ text: string;
411
+ icon: string;
412
+ }, undefined, TVConfig<V, EV>, unknown, unknown, undefined>>>, "color">> & Required<Pick<VariantProps<tailwind_variants.TVReturnType<{
413
+ color: {
414
+ "p-light": string;
415
+ "p-dark": string;
416
+ neutral: string;
417
+ violet: string;
418
+ sunny: string;
419
+ disabled: string;
420
+ };
421
+ variant: {
422
+ light: {};
423
+ fill: {};
424
+ outlined: {};
425
+ ghost: {};
426
+ };
427
+ size: {
428
+ sm: {
429
+ container: string;
430
+ text: string;
431
+ };
432
+ xs: {
433
+ container: string;
434
+ text: string;
435
+ };
436
+ md: {
437
+ container: string;
438
+ text: string;
439
+ };
440
+ };
441
+ }, {
442
+ container: string;
443
+ text: string;
444
+ icon: string;
445
+ }, undefined, TVConfig<V, EV>, {
446
+ color: {
447
+ "p-light": string;
448
+ "p-dark": string;
449
+ neutral: string;
450
+ violet: string;
451
+ sunny: string;
452
+ disabled: string;
453
+ };
454
+ variant: {
455
+ light: {};
456
+ fill: {};
457
+ outlined: {};
458
+ ghost: {};
459
+ };
460
+ size: {
461
+ sm: {
462
+ container: string;
463
+ text: string;
464
+ };
465
+ xs: {
466
+ container: string;
467
+ text: string;
468
+ };
469
+ md: {
470
+ container: string;
471
+ text: string;
472
+ };
473
+ };
474
+ }, {
475
+ container: string;
476
+ text: string;
477
+ icon: string;
478
+ }, tailwind_variants.TVReturnType<{
479
+ color: {
480
+ "p-light": string;
481
+ "p-dark": string;
482
+ neutral: string;
483
+ violet: string;
484
+ sunny: string;
485
+ disabled: string;
486
+ };
487
+ variant: {
488
+ light: {};
489
+ fill: {};
490
+ outlined: {};
491
+ ghost: {};
492
+ };
493
+ size: {
494
+ sm: {
495
+ container: string;
496
+ text: string;
497
+ };
498
+ xs: {
499
+ container: string;
500
+ text: string;
501
+ };
502
+ md: {
503
+ container: string;
504
+ text: string;
505
+ };
506
+ };
507
+ }, {
508
+ container: string;
509
+ text: string;
510
+ icon: string;
511
+ }, undefined, TVConfig<V, EV>, unknown, unknown, undefined>>>, "size">> & {
512
+ StartIcon?: LucideIcon;
513
+ } & React__default.RefAttributes<HTMLDivElement>>;
116
514
 
117
515
  export { ChipContext, type ChipContextColorType, ChipContextColors, type ChipContextProps, type ChipContextSizeType, ChipContextSizes, type ChipContextVariantType, ChipContextVariants };