sodtrack-web-ui 0.75.0 → 0.76.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-MOY7IRJM.mjs +1 -0
- package/dist/components/carousel.d.mts +26 -0
- package/dist/components/carousel.d.ts +26 -0
- package/dist/components/carousel.js +16 -0
- package/dist/components/carousel.mjs +1 -0
- package/dist/components/chip-form-complementary.d.mts +3 -3
- package/dist/components/chip-form-complementary.d.ts +3 -3
- package/dist/components/chip-form.d.mts +6 -6
- package/dist/components/chip-form.d.ts +6 -6
- package/dist/components/chip-status-complementary.d.mts +1 -1
- package/dist/components/chip-status-complementary.d.ts +1 -1
- package/dist/components/chip-status-table.d.mts +1 -1
- package/dist/components/chip-status-table.d.ts +1 -1
- package/dist/components/index.d.mts +2 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +2 -2
- package/dist/components/index.mjs +1 -1
- package/dist/components/list-item-arrow.mjs +1 -1
- package/dist/components/list-item-button.mjs +1 -1
- package/dist/components/list-item-checkbox-left.mjs +1 -1
- package/dist/components/list-item-checkbox.mjs +1 -1
- package/dist/components/list-item.mjs +1 -1
- package/dist/components/tab.d.mts +2 -2
- package/dist/components/tab.d.ts +2 -2
- package/dist/styles/index.css +1 -1
- package/dist/styles/spacing.css +1 -1
- package/package.json +1 -1
- /package/dist/{chunk-UARWHSVD.mjs → chunk-G2WUCUE7.mjs} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import {i,h}from'./chunk-4HYLZVI5.mjs';import {a}from'./chunk-BO6XI5BE.mjs';import {Carousel}from'@ark-ui/react/carousel';import {forwardRef}from'react';import {jsx}from'react/jsx-runtime';var p=forwardRef(({className:e,...r},o)=>jsx(Carousel.Root,{ref:o,className:a("relative w-full",e),...r})),c=forwardRef(({className:e,...r},o)=>jsx(Carousel.Control,{ref:o,className:a("pointer-events-none absolute inset-0 z-10 flex items-center justify-between px-4",e),...r})),m=forwardRef(({className:e,children:r,...o},n)=>jsx(Carousel.PrevTrigger,{ref:n,className:a("pointer-events-auto flex h-8 w-8 items-center justify-center rounded-full bg-white/80 text-gray-600 shadow-lg backdrop-blur-sm transition-all hover:bg-white hover:text-gray-800 focus:ring-2 focus:ring-white/50 focus:outline-none disabled:cursor-not-allowed disabled:opacity-30",e),...o,children:r||jsx(i,{className:"h-4 w-4"})})),g=forwardRef(({className:e,children:r,...o},n)=>jsx(Carousel.NextTrigger,{ref:n,className:a("pointer-events-auto flex h-8 w-8 items-center justify-center rounded-full bg-white/80 text-gray-600 shadow-lg backdrop-blur-sm transition-all hover:bg-white hover:text-gray-800 focus:ring-2 focus:ring-white/50 focus:outline-none disabled:cursor-not-allowed disabled:opacity-30",e),...o,children:r||jsx(h,{className:"h-4 w-4"})})),C=forwardRef(({className:e,...r},o)=>jsx(Carousel.IndicatorGroup,{ref:o,className:a("flex items-center justify-center gap-2",e),...r})),d=forwardRef(({className:e,...r},o)=>jsx(Carousel.Indicator,{ref:o,className:a("bg-primary-100 hover:bg-primary-400 data-[current]:bg-primary-500 h-2 w-2 rounded-full shadow transition-all duration-300 data-[current]:scale-125",e),...r})),f=forwardRef(({className:e,...r},o)=>jsx(Carousel.ItemGroup,{ref:o,className:a("flex overflow-hidden",e),...r})),P=forwardRef(({className:e,...r},o)=>jsx(Carousel.Item,{ref:o,className:a("w-full flex-none",e),...r})),v=forwardRef(({className:e,...r},o)=>jsx("div",{ref:o,className:a("overflow-hidden rounded-lg",e),...r})),R=Object.assign(p,{Root:p,Control:c,PrevTrigger:m,NextTrigger:g,IndicatorGroup:C,Indicator:d,ItemGroup:f,Item:P,Viewport:v});export{p as a,c as b,m as c,g as d,C as e,d as f,f as g,P as h,v as i,R as j};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Carousel } from '@ark-ui/react/carousel';
|
|
2
|
+
export { CarouselControlProps, CarouselIndicatorGroupProps, CarouselIndicatorProps, CarouselItemGroupProps, CarouselItemProps, CarouselNextTriggerProps, CarouselPrevTriggerProps, CarouselRootProps } from '@ark-ui/react/carousel';
|
|
3
|
+
import React__default from 'react';
|
|
4
|
+
|
|
5
|
+
declare const CarouselRoot: React__default.ForwardRefExoticComponent<Carousel.RootProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
6
|
+
declare const CarouselControl: React__default.ForwardRefExoticComponent<Carousel.ControlProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
7
|
+
declare const CarouselPrevTrigger: React__default.ForwardRefExoticComponent<Carousel.PrevTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
8
|
+
declare const CarouselNextTrigger: React__default.ForwardRefExoticComponent<Carousel.NextTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
9
|
+
declare const CarouselIndicatorGroup: React__default.ForwardRefExoticComponent<Carousel.IndicatorGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
declare const CarouselIndicator: React__default.ForwardRefExoticComponent<Carousel.IndicatorProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
11
|
+
declare const CarouselItemGroup: React__default.ForwardRefExoticComponent<Carousel.ItemGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
12
|
+
declare const CarouselItem: React__default.ForwardRefExoticComponent<Carousel.ItemProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
declare const CarouselViewport: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
declare const CarouselComponent: React__default.ForwardRefExoticComponent<Carousel.RootProps & React__default.RefAttributes<HTMLDivElement>> & {
|
|
15
|
+
Root: React__default.ForwardRefExoticComponent<Carousel.RootProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
Control: React__default.ForwardRefExoticComponent<Carousel.ControlProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
PrevTrigger: React__default.ForwardRefExoticComponent<Carousel.PrevTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
18
|
+
NextTrigger: React__default.ForwardRefExoticComponent<Carousel.NextTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
19
|
+
IndicatorGroup: React__default.ForwardRefExoticComponent<Carousel.IndicatorGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
Indicator: React__default.ForwardRefExoticComponent<Carousel.IndicatorProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
21
|
+
ItemGroup: React__default.ForwardRefExoticComponent<Carousel.ItemGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
22
|
+
Item: React__default.ForwardRefExoticComponent<Carousel.ItemProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
Viewport: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export { CarouselComponent as Carousel, CarouselComponent, CarouselControl, CarouselIndicator, CarouselIndicatorGroup, CarouselItem, CarouselItemGroup, CarouselNextTrigger, CarouselPrevTrigger, CarouselRoot, CarouselViewport };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Carousel } from '@ark-ui/react/carousel';
|
|
2
|
+
export { CarouselControlProps, CarouselIndicatorGroupProps, CarouselIndicatorProps, CarouselItemGroupProps, CarouselItemProps, CarouselNextTriggerProps, CarouselPrevTriggerProps, CarouselRootProps } from '@ark-ui/react/carousel';
|
|
3
|
+
import React__default from 'react';
|
|
4
|
+
|
|
5
|
+
declare const CarouselRoot: React__default.ForwardRefExoticComponent<Carousel.RootProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
6
|
+
declare const CarouselControl: React__default.ForwardRefExoticComponent<Carousel.ControlProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
7
|
+
declare const CarouselPrevTrigger: React__default.ForwardRefExoticComponent<Carousel.PrevTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
8
|
+
declare const CarouselNextTrigger: React__default.ForwardRefExoticComponent<Carousel.NextTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
9
|
+
declare const CarouselIndicatorGroup: React__default.ForwardRefExoticComponent<Carousel.IndicatorGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
declare const CarouselIndicator: React__default.ForwardRefExoticComponent<Carousel.IndicatorProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
11
|
+
declare const CarouselItemGroup: React__default.ForwardRefExoticComponent<Carousel.ItemGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
12
|
+
declare const CarouselItem: React__default.ForwardRefExoticComponent<Carousel.ItemProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
declare const CarouselViewport: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
declare const CarouselComponent: React__default.ForwardRefExoticComponent<Carousel.RootProps & React__default.RefAttributes<HTMLDivElement>> & {
|
|
15
|
+
Root: React__default.ForwardRefExoticComponent<Carousel.RootProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
Control: React__default.ForwardRefExoticComponent<Carousel.ControlProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
PrevTrigger: React__default.ForwardRefExoticComponent<Carousel.PrevTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
18
|
+
NextTrigger: React__default.ForwardRefExoticComponent<Carousel.NextTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
19
|
+
IndicatorGroup: React__default.ForwardRefExoticComponent<Carousel.IndicatorGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
Indicator: React__default.ForwardRefExoticComponent<Carousel.IndicatorProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
21
|
+
ItemGroup: React__default.ForwardRefExoticComponent<Carousel.ItemGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
22
|
+
Item: React__default.ForwardRefExoticComponent<Carousel.ItemProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
Viewport: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export { CarouselComponent as Carousel, CarouselComponent, CarouselControl, CarouselIndicator, CarouselIndicatorGroup, CarouselItem, CarouselItemGroup, CarouselNextTrigger, CarouselPrevTrigger, CarouselRoot, CarouselViewport };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
'use strict';var carousel=require('@ark-ui/react/carousel'),react=require('react'),jsxRuntime=require('react/jsx-runtime');function ke(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=ke(e[a]))&&(o&&(o+=" "),o+=t);}else for(t in e)e[t]&&(o&&(o+=" "),o+=t);return o}function Pe(){for(var e,a,t=0,o="",d=arguments.length;t<d;t++)(e=arguments[t])&&(a=ke(e))&&(o&&(o+=" "),o+=a);return o}var pe="-",Je=e=>{let a=_e(e),{conflictingClassGroups:t,conflictingClassGroupModifiers:o}=e;return {getClassGroupId:s=>{let p=s.split(pe);return p[0]===""&&p.length!==1&&p.shift(),ye(p,a)||Qe(s)},getConflictingClassGroupIds:(s,p)=>{let n=t[s]||[];return p&&o[s]?[...n,...o[s]]:n}}},ye=(e,a)=>{if(e.length===0)return a.classGroupId;let t=e[0],o=a.nextPart.get(t),d=o?ye(e.slice(1),o):void 0;if(d)return d;if(a.validators.length===0)return;let f=e.join(pe);return a.validators.find(({validator:s})=>s(f))?.classGroupId},be=/^\[(.+)\]$/,Qe=e=>{if(be.test(e)){let a=be.exec(e)[1],t=a?.substring(0,a.indexOf(":"));if(t)return "arbitrary.."+t}},_e=e=>{let{theme:a,classGroups:t}=e,o={nextPart:new Map,validators:[]};for(let d in t)ie(t[d],o,d,a);return o},ie=(e,a,t,o)=>{e.forEach(d=>{if(typeof d=="string"){let f=d===""?a:Ae(a,d);f.classGroupId=t;return}if(typeof d=="function"){if(je(d)){ie(d(o),a,t,o);return}a.validators.push({validator:d,classGroupId:t});return}Object.entries(d).forEach(([f,s])=>{ie(s,Ae(a,f),t,o);});});},Ae=(e,a)=>{let t=e;return a.split(pe).forEach(o=>{t.nextPart.has(o)||t.nextPart.set(o,{nextPart:new Map,validators:[]}),t=t.nextPart.get(o);}),t},je=e=>e.isThemeGetter,Ye=e=>{if(e<1)return {get:()=>{},set:()=>{}};let a=0,t=new Map,o=new Map,d=(f,s)=>{t.set(f,s),a++,a>e&&(a=0,o=t,t=new Map);};return {get(f){let s=t.get(f);if(s!==void 0)return s;if((s=o.get(f))!==void 0)return d(f,s),s},set(f,s){t.has(f)?t.set(f,s):d(f,s);}}},ce="!",ne=":",$e=ne.length,ea=e=>{let{prefix:a,experimentalParseClassName:t}=e,o=d=>{let f=[],s=0,p=0,n=0,I;for(let h=0;h<d.length;h++){let S=d[h];if(s===0&&p===0){if(S===ne){f.push(d.slice(n,h)),n=h+$e;continue}if(S==="/"){I=h;continue}}S==="["?s++:S==="]"?s--:S==="("?p++:S===")"&&p--;}let x=f.length===0?d:d.substring(n),M=aa(x),E=M!==x,W=I&&I>n?I-n:void 0;return {modifiers:f,hasImportantModifier:E,baseClassName:M,maybePostfixModifierPosition:W}};if(a){let d=a+ne,f=o;o=s=>s.startsWith(d)?f(s.substring(d.length)):{isExternal:true,modifiers:[],hasImportantModifier:false,baseClassName:s,maybePostfixModifierPosition:void 0};}if(t){let d=o;o=f=>t({className:f,parseClassName:d});}return o},aa=e=>e.endsWith(ce)?e.substring(0,e.length-1):e.startsWith(ce)?e.substring(1):e,ta=e=>{let a=Object.fromEntries(e.orderSensitiveModifiers.map(o=>[o,true]));return o=>{if(o.length<=1)return o;let d=[],f=[];return o.forEach(s=>{s[0]==="["||a[s]?(d.push(...f.sort(),s),f=[]):f.push(s);}),d.push(...f.sort()),d}},oa=e=>({cache:Ye(e.cacheSize),parseClassName:ea(e),sortModifiers:ta(e),...Je(e)}),la=/\s+/,ua=(e,a)=>{let{parseClassName:t,getClassGroupId:o,getConflictingClassGroupIds:d,sortModifiers:f}=a,s=[],p=e.trim().split(la),n="";for(let I=p.length-1;I>=0;I-=1){let x=p[I],{isExternal:M,modifiers:E,hasImportantModifier:W,baseClassName:h,maybePostfixModifierPosition:S}=t(x);if(M){n=x+(n.length>0?" "+n:n);continue}let q=!!S,D=o(q?h.substring(0,S):h);if(!D){if(!q){n=x+(n.length>0?" "+n:n);continue}if(D=o(h),!D){n=x+(n.length>0?" "+n:n);continue}q=false;}let Q=f(E).join(":"),X=W?Q+ce:Q,U=X+D;if(s.includes(U))continue;s.push(U);let O=d(D,q);for(let R=0;R<O.length;++R){let N=O[R];s.push(X+N);}n=x+(n.length>0?" "+n:n);}return n};function da(){let e=0,a,t,o="";for(;e<arguments.length;)(a=arguments[e++])&&(t=Fe(a))&&(o&&(o+=" "),o+=t);return o}var Fe=e=>{if(typeof e=="string")return e;let a,t="";for(let o=0;o<e.length;o++)e[o]&&(a=Fe(e[o]))&&(t&&(t+=" "),t+=a);return t};function ra(e,...a){let t,o,d,f=s;function s(n){let I=a.reduce((x,M)=>M(x),e());return t=oa(I),o=t.cache.get,d=t.cache.set,f=p,p(n)}function p(n){let I=o(n);if(I)return I;let x=ua(n,t);return d(n,x),x}return function(){return f(da.apply(null,arguments))}}var m=e=>{let a=t=>t[e]||[];return a.isThemeGetter=true,a},De=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,Re=/^\((?:(\w[\w-]*):)?(.+)\)$/i,sa=/^\d+\/\d+$/,fa=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,ia=/\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$/,ca=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/,na=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,pa=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,G=e=>sa.test(e),c=e=>!!e&&!Number.isNaN(Number(e)),y=e=>!!e&&Number.isInteger(Number(e)),se=e=>e.endsWith("%")&&c(e.slice(0,-1)),A=e=>fa.test(e),ma=()=>true,La=e=>ia.test(e)&&!ca.test(e),Te=()=>false,Ia=e=>na.test(e),xa=e=>pa.test(e),Ca=e=>!l(e)&&!u(e),ga=e=>z(e,Ue,Te),l=e=>De.test(e),v=e=>z(e,Oe,La),fe=e=>z(e,Pa,c),Be=e=>z(e,ve,Te),ha=e=>z(e,qe,xa),ae=e=>z(e,He,Ia),u=e=>Re.test(e),K=e=>V(e,Oe),Sa=e=>V(e,ba),Me=e=>V(e,ve),wa=e=>V(e,Ue),ka=e=>V(e,qe),te=e=>V(e,He,true),z=(e,a,t)=>{let o=De.exec(e);return o?o[1]?a(o[1]):t(o[2]):false},V=(e,a,t=false)=>{let o=Re.exec(e);return o?o[1]?a(o[1]):t:false},ve=e=>e==="position"||e==="percentage",qe=e=>e==="image"||e==="url",Ue=e=>e==="length"||e==="size"||e==="bg-size",Oe=e=>e==="length",Pa=e=>e==="number",ba=e=>e==="family-name",He=e=>e==="shadow";var Aa=()=>{let e=m("color"),a=m("font"),t=m("text"),o=m("font-weight"),d=m("tracking"),f=m("leading"),s=m("breakpoint"),p=m("container"),n=m("spacing"),I=m("radius"),x=m("shadow"),M=m("inset-shadow"),E=m("text-shadow"),W=m("drop-shadow"),h=m("blur"),S=m("perspective"),q=m("aspect"),D=m("ease"),Q=m("animate"),X=()=>["auto","avoid","all","avoid-page","page","left","right","column"],U=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],O=()=>[...U(),u,l],R=()=>["auto","hidden","clip","visible","scroll"],N=()=>["auto","contain","none"],i=()=>[u,l,n],P=()=>[G,"full","auto",...i()],Le=()=>[y,"none","subgrid",u,l],Ie=()=>["auto",{span:["full",y,u,l]},y,u,l],_=()=>[y,"auto",u,l],xe=()=>["auto","min","max","fr",u,l],ue=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],H=()=>["start","end","center","stretch","center-safe","end-safe"],b=()=>["auto",...i()],T=()=>[G,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...i()],r=()=>[e,u,l],Ce=()=>[...U(),Me,Be,{position:[u,l]}],ge=()=>["no-repeat",{repeat:["","x","y","space","round"]}],he=()=>["auto","cover","contain",wa,ga,{size:[u,l]}],de=()=>[se,K,v],C=()=>["","none","full",I,u,l],g=()=>["",c,K,v],j=()=>["solid","dashed","dotted","double"],Se=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],L=()=>[c,se,Me,Be],we=()=>["","none",h,u,l],Y=()=>["none",c,u,l],$=()=>["none",c,u,l],re=()=>[c,u,l],ee=()=>[G,"full",...i()];return {cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[A],breakpoint:[A],color:[ma],container:[A],"drop-shadow":[A],ease:["in","out","in-out"],font:[Ca],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[A],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[A],shadow:[A],spacing:["px",c],text:[A],"text-shadow":[A],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",G,l,u,q]}],container:["container"],columns:[{columns:[c,l,u,p]}],"break-after":[{"break-after":X()}],"break-before":[{"break-before":X()}],"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"],sr:["sr-only","not-sr-only"],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:O()}],overflow:[{overflow:R()}],"overflow-x":[{"overflow-x":R()}],"overflow-y":[{"overflow-y":R()}],overscroll:[{overscroll:N()}],"overscroll-x":[{"overscroll-x":N()}],"overscroll-y":[{"overscroll-y":N()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:P()}],"inset-x":[{"inset-x":P()}],"inset-y":[{"inset-y":P()}],start:[{start:P()}],end:[{end:P()}],top:[{top:P()}],right:[{right:P()}],bottom:[{bottom:P()}],left:[{left:P()}],visibility:["visible","invisible","collapse"],z:[{z:[y,"auto",u,l]}],basis:[{basis:[G,"full","auto",p,...i()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[c,G,"auto","initial","none",l]}],grow:[{grow:["",c,u,l]}],shrink:[{shrink:["",c,u,l]}],order:[{order:[y,"first","last","none",u,l]}],"grid-cols":[{"grid-cols":Le()}],"col-start-end":[{col:Ie()}],"col-start":[{"col-start":_()}],"col-end":[{"col-end":_()}],"grid-rows":[{"grid-rows":Le()}],"row-start-end":[{row:Ie()}],"row-start":[{"row-start":_()}],"row-end":[{"row-end":_()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":xe()}],"auto-rows":[{"auto-rows":xe()}],gap:[{gap:i()}],"gap-x":[{"gap-x":i()}],"gap-y":[{"gap-y":i()}],"justify-content":[{justify:[...ue(),"normal"]}],"justify-items":[{"justify-items":[...H(),"normal"]}],"justify-self":[{"justify-self":["auto",...H()]}],"align-content":[{content:["normal",...ue()]}],"align-items":[{items:[...H(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...H(),{baseline:["","last"]}]}],"place-content":[{"place-content":ue()}],"place-items":[{"place-items":[...H(),"baseline"]}],"place-self":[{"place-self":["auto",...H()]}],p:[{p:i()}],px:[{px:i()}],py:[{py:i()}],ps:[{ps:i()}],pe:[{pe:i()}],pt:[{pt:i()}],pr:[{pr:i()}],pb:[{pb:i()}],pl:[{pl:i()}],m:[{m:b()}],mx:[{mx:b()}],my:[{my:b()}],ms:[{ms:b()}],me:[{me:b()}],mt:[{mt:b()}],mr:[{mr:b()}],mb:[{mb:b()}],ml:[{ml:b()}],"space-x":[{"space-x":i()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":i()}],"space-y-reverse":["space-y-reverse"],size:[{size:T()}],w:[{w:[p,"screen",...T()]}],"min-w":[{"min-w":[p,"screen","none",...T()]}],"max-w":[{"max-w":[p,"screen","none","prose",{screen:[s]},...T()]}],h:[{h:["screen","lh",...T()]}],"min-h":[{"min-h":["screen","lh","none",...T()]}],"max-h":[{"max-h":["screen","lh",...T()]}],"font-size":[{text:["base",t,K,v]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[o,u,fe]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",se,l]}],"font-family":[{font:[Sa,l,a]}],"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:[d,u,l]}],"line-clamp":[{"line-clamp":[c,"none",u,fe]}],leading:[{leading:[f,...i()]}],"list-image":[{"list-image":["none",u,l]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",u,l]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:r()}],"text-color":[{text:r()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...j(),"wavy"]}],"text-decoration-thickness":[{decoration:[c,"from-font","auto",u,v]}],"text-decoration-color":[{decoration:r()}],"underline-offset":[{"underline-offset":[c,"auto",u,l]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:i()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",u,l]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",u,l]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:Ce()}],"bg-repeat":[{bg:ge()}],"bg-size":[{bg:he()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},y,u,l],radial:["",u,l],conic:[y,u,l]},ka,ha]}],"bg-color":[{bg:r()}],"gradient-from-pos":[{from:de()}],"gradient-via-pos":[{via:de()}],"gradient-to-pos":[{to:de()}],"gradient-from":[{from:r()}],"gradient-via":[{via:r()}],"gradient-to":[{to:r()}],rounded:[{rounded:C()}],"rounded-s":[{"rounded-s":C()}],"rounded-e":[{"rounded-e":C()}],"rounded-t":[{"rounded-t":C()}],"rounded-r":[{"rounded-r":C()}],"rounded-b":[{"rounded-b":C()}],"rounded-l":[{"rounded-l":C()}],"rounded-ss":[{"rounded-ss":C()}],"rounded-se":[{"rounded-se":C()}],"rounded-ee":[{"rounded-ee":C()}],"rounded-es":[{"rounded-es":C()}],"rounded-tl":[{"rounded-tl":C()}],"rounded-tr":[{"rounded-tr":C()}],"rounded-br":[{"rounded-br":C()}],"rounded-bl":[{"rounded-bl":C()}],"border-w":[{border:g()}],"border-w-x":[{"border-x":g()}],"border-w-y":[{"border-y":g()}],"border-w-s":[{"border-s":g()}],"border-w-e":[{"border-e":g()}],"border-w-t":[{"border-t":g()}],"border-w-r":[{"border-r":g()}],"border-w-b":[{"border-b":g()}],"border-w-l":[{"border-l":g()}],"divide-x":[{"divide-x":g()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":g()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...j(),"hidden","none"]}],"divide-style":[{divide:[...j(),"hidden","none"]}],"border-color":[{border:r()}],"border-color-x":[{"border-x":r()}],"border-color-y":[{"border-y":r()}],"border-color-s":[{"border-s":r()}],"border-color-e":[{"border-e":r()}],"border-color-t":[{"border-t":r()}],"border-color-r":[{"border-r":r()}],"border-color-b":[{"border-b":r()}],"border-color-l":[{"border-l":r()}],"divide-color":[{divide:r()}],"outline-style":[{outline:[...j(),"none","hidden"]}],"outline-offset":[{"outline-offset":[c,u,l]}],"outline-w":[{outline:["",c,K,v]}],"outline-color":[{outline:r()}],shadow:[{shadow:["","none",x,te,ae]}],"shadow-color":[{shadow:r()}],"inset-shadow":[{"inset-shadow":["none",M,te,ae]}],"inset-shadow-color":[{"inset-shadow":r()}],"ring-w":[{ring:g()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:r()}],"ring-offset-w":[{"ring-offset":[c,v]}],"ring-offset-color":[{"ring-offset":r()}],"inset-ring-w":[{"inset-ring":g()}],"inset-ring-color":[{"inset-ring":r()}],"text-shadow":[{"text-shadow":["none",E,te,ae]}],"text-shadow-color":[{"text-shadow":r()}],opacity:[{opacity:[c,u,l]}],"mix-blend":[{"mix-blend":[...Se(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":Se()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[c]}],"mask-image-linear-from-pos":[{"mask-linear-from":L()}],"mask-image-linear-to-pos":[{"mask-linear-to":L()}],"mask-image-linear-from-color":[{"mask-linear-from":r()}],"mask-image-linear-to-color":[{"mask-linear-to":r()}],"mask-image-t-from-pos":[{"mask-t-from":L()}],"mask-image-t-to-pos":[{"mask-t-to":L()}],"mask-image-t-from-color":[{"mask-t-from":r()}],"mask-image-t-to-color":[{"mask-t-to":r()}],"mask-image-r-from-pos":[{"mask-r-from":L()}],"mask-image-r-to-pos":[{"mask-r-to":L()}],"mask-image-r-from-color":[{"mask-r-from":r()}],"mask-image-r-to-color":[{"mask-r-to":r()}],"mask-image-b-from-pos":[{"mask-b-from":L()}],"mask-image-b-to-pos":[{"mask-b-to":L()}],"mask-image-b-from-color":[{"mask-b-from":r()}],"mask-image-b-to-color":[{"mask-b-to":r()}],"mask-image-l-from-pos":[{"mask-l-from":L()}],"mask-image-l-to-pos":[{"mask-l-to":L()}],"mask-image-l-from-color":[{"mask-l-from":r()}],"mask-image-l-to-color":[{"mask-l-to":r()}],"mask-image-x-from-pos":[{"mask-x-from":L()}],"mask-image-x-to-pos":[{"mask-x-to":L()}],"mask-image-x-from-color":[{"mask-x-from":r()}],"mask-image-x-to-color":[{"mask-x-to":r()}],"mask-image-y-from-pos":[{"mask-y-from":L()}],"mask-image-y-to-pos":[{"mask-y-to":L()}],"mask-image-y-from-color":[{"mask-y-from":r()}],"mask-image-y-to-color":[{"mask-y-to":r()}],"mask-image-radial":[{"mask-radial":[u,l]}],"mask-image-radial-from-pos":[{"mask-radial-from":L()}],"mask-image-radial-to-pos":[{"mask-radial-to":L()}],"mask-image-radial-from-color":[{"mask-radial-from":r()}],"mask-image-radial-to-color":[{"mask-radial-to":r()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":U()}],"mask-image-conic-pos":[{"mask-conic":[c]}],"mask-image-conic-from-pos":[{"mask-conic-from":L()}],"mask-image-conic-to-pos":[{"mask-conic-to":L()}],"mask-image-conic-from-color":[{"mask-conic-from":r()}],"mask-image-conic-to-color":[{"mask-conic-to":r()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:Ce()}],"mask-repeat":[{mask:ge()}],"mask-size":[{mask:he()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",u,l]}],filter:[{filter:["","none",u,l]}],blur:[{blur:we()}],brightness:[{brightness:[c,u,l]}],contrast:[{contrast:[c,u,l]}],"drop-shadow":[{"drop-shadow":["","none",W,te,ae]}],"drop-shadow-color":[{"drop-shadow":r()}],grayscale:[{grayscale:["",c,u,l]}],"hue-rotate":[{"hue-rotate":[c,u,l]}],invert:[{invert:["",c,u,l]}],saturate:[{saturate:[c,u,l]}],sepia:[{sepia:["",c,u,l]}],"backdrop-filter":[{"backdrop-filter":["","none",u,l]}],"backdrop-blur":[{"backdrop-blur":we()}],"backdrop-brightness":[{"backdrop-brightness":[c,u,l]}],"backdrop-contrast":[{"backdrop-contrast":[c,u,l]}],"backdrop-grayscale":[{"backdrop-grayscale":["",c,u,l]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[c,u,l]}],"backdrop-invert":[{"backdrop-invert":["",c,u,l]}],"backdrop-opacity":[{"backdrop-opacity":[c,u,l]}],"backdrop-saturate":[{"backdrop-saturate":[c,u,l]}],"backdrop-sepia":[{"backdrop-sepia":["",c,u,l]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":i()}],"border-spacing-x":[{"border-spacing-x":i()}],"border-spacing-y":[{"border-spacing-y":i()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",u,l]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[c,"initial",u,l]}],ease:[{ease:["linear","initial",D,u,l]}],delay:[{delay:[c,u,l]}],animate:[{animate:["none",Q,u,l]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[S,u,l]}],"perspective-origin":[{"perspective-origin":O()}],rotate:[{rotate:Y()}],"rotate-x":[{"rotate-x":Y()}],"rotate-y":[{"rotate-y":Y()}],"rotate-z":[{"rotate-z":Y()}],scale:[{scale:$()}],"scale-x":[{"scale-x":$()}],"scale-y":[{"scale-y":$()}],"scale-z":[{"scale-z":$()}],"scale-3d":["scale-3d"],skew:[{skew:re()}],"skew-x":[{"skew-x":re()}],"skew-y":[{"skew-y":re()}],transform:[{transform:[u,l,"","none","gpu","cpu"]}],"transform-origin":[{origin:O()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:ee()}],"translate-x":[{"translate-x":ee()}],"translate-y":[{"translate-y":ee()}],"translate-z":[{"translate-z":ee()}],"translate-none":["translate-none"],accent:[{accent:r()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:r()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],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",u,l]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":i()}],"scroll-mx":[{"scroll-mx":i()}],"scroll-my":[{"scroll-my":i()}],"scroll-ms":[{"scroll-ms":i()}],"scroll-me":[{"scroll-me":i()}],"scroll-mt":[{"scroll-mt":i()}],"scroll-mr":[{"scroll-mr":i()}],"scroll-mb":[{"scroll-mb":i()}],"scroll-ml":[{"scroll-ml":i()}],"scroll-p":[{"scroll-p":i()}],"scroll-px":[{"scroll-px":i()}],"scroll-py":[{"scroll-py":i()}],"scroll-ps":[{"scroll-ps":i()}],"scroll-pe":[{"scroll-pe":i()}],"scroll-pt":[{"scroll-pt":i()}],"scroll-pr":[{"scroll-pr":i()}],"scroll-pb":[{"scroll-pb":i()}],"scroll-pl":[{"scroll-pl":i()}],"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",u,l]}],fill:[{fill:["none",...r()]}],"stroke-w":[{stroke:[c,K,v,fe]}],stroke:[{stroke:["none",...r()]}],"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-x","border-w-y","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-x","border-color-y","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"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"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"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}};var Ge=ra(Aa);function k(...e){return Ge(Pe(e))}var ze=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),Ba=e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,(a,t,o)=>o?o.toUpperCase():t.toLowerCase()),me=e=>{let a=Ba(e);return a.charAt(0).toUpperCase()+a.slice(1)},oe=(...e)=>e.filter((a,t,o)=>!!a&&a.trim()!==""&&o.indexOf(a)===t).join(" ").trim(),Ve=e=>{for(let a in e)if(a.startsWith("aria-")||a==="role"||a==="title")return true};var Ee={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 Xe=react.forwardRef(({color:e="currentColor",size:a=24,strokeWidth:t=2,absoluteStrokeWidth:o,className:d="",children:f,iconNode:s,...p},n)=>react.createElement("svg",{ref:n,...Ee,width:a,height:a,stroke:e,strokeWidth:o?Number(t)*24/Number(a):t,className:oe("lucide",d),...!f&&!Ve(p)&&{"aria-hidden":"true"},...p},[...s.map(([I,x])=>react.createElement(I,x)),...Array.isArray(f)?f:[f]]));var le=(e,a)=>{let t=react.forwardRef(({className:o,...d},f)=>react.createElement(Xe,{ref:f,iconNode:a,className:oe(`lucide-${ze(me(e))}`,`lucide-${e}`,o),...d}));return t.displayName=me(e),t};var Da=[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]],Z=le("chevron-left",Da);var Ra=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],J=le("chevron-right",Ra);var Ne=J,Ke=Z;var Ze=react.forwardRef(({className:e,...a},t)=>jsxRuntime.jsx(carousel.Carousel.Root,{ref:t,className:k("relative w-full",e),...a})),Ta=react.forwardRef(({className:e,...a},t)=>jsxRuntime.jsx(carousel.Carousel.Control,{ref:t,className:k("pointer-events-none absolute inset-0 z-10 flex items-center justify-between px-4",e),...a})),va=react.forwardRef(({className:e,children:a,...t},o)=>jsxRuntime.jsx(carousel.Carousel.PrevTrigger,{ref:o,className:k("pointer-events-auto flex h-8 w-8 items-center justify-center rounded-full bg-white/80 text-gray-600 shadow-lg backdrop-blur-sm transition-all hover:bg-white hover:text-gray-800 focus:ring-2 focus:ring-white/50 focus:outline-none disabled:cursor-not-allowed disabled:opacity-30",e),...t,children:a||jsxRuntime.jsx(Ke,{className:"h-4 w-4"})})),qa=react.forwardRef(({className:e,children:a,...t},o)=>jsxRuntime.jsx(carousel.Carousel.NextTrigger,{ref:o,className:k("pointer-events-auto flex h-8 w-8 items-center justify-center rounded-full bg-white/80 text-gray-600 shadow-lg backdrop-blur-sm transition-all hover:bg-white hover:text-gray-800 focus:ring-2 focus:ring-white/50 focus:outline-none disabled:cursor-not-allowed disabled:opacity-30",e),...t,children:a||jsxRuntime.jsx(Ne,{className:"h-4 w-4"})})),Ua=react.forwardRef(({className:e,...a},t)=>jsxRuntime.jsx(carousel.Carousel.IndicatorGroup,{ref:t,className:k("flex items-center justify-center gap-2",e),...a})),Oa=react.forwardRef(({className:e,...a},t)=>jsxRuntime.jsx(carousel.Carousel.Indicator,{ref:t,className:k("bg-primary-100 hover:bg-primary-400 data-[current]:bg-primary-500 h-2 w-2 rounded-full shadow transition-all duration-300 data-[current]:scale-125",e),...a})),Ha=react.forwardRef(({className:e,...a},t)=>jsxRuntime.jsx(carousel.Carousel.ItemGroup,{ref:t,className:k("flex overflow-hidden",e),...a})),Ga=react.forwardRef(({className:e,...a},t)=>jsxRuntime.jsx(carousel.Carousel.Item,{ref:t,className:k("w-full flex-none",e),...a})),za=react.forwardRef(({className:e,...a},t)=>jsxRuntime.jsx("div",{ref:t,className:k("overflow-hidden rounded-lg",e),...a})),Xt=Object.assign(Ze,{Root:Ze,Control:Ta,PrevTrigger:va,NextTrigger:qa,IndicatorGroup:Ua,Indicator:Oa,ItemGroup:Ha,Item:Ga,Viewport:za});/*! Bundled license information:
|
|
2
|
+
|
|
3
|
+
lucide-react/dist/esm/shared/src/utils.js:
|
|
4
|
+
lucide-react/dist/esm/defaultAttributes.js:
|
|
5
|
+
lucide-react/dist/esm/Icon.js:
|
|
6
|
+
lucide-react/dist/esm/createLucideIcon.js:
|
|
7
|
+
lucide-react/dist/esm/icons/chevron-left.js:
|
|
8
|
+
lucide-react/dist/esm/icons/chevron-right.js:
|
|
9
|
+
lucide-react/dist/esm/lucide-react.js:
|
|
10
|
+
(**
|
|
11
|
+
* @license lucide-react v0.511.0 - ISC
|
|
12
|
+
*
|
|
13
|
+
* This source code is licensed under the ISC license.
|
|
14
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
15
|
+
*)
|
|
16
|
+
*/exports.Carousel=Xt;exports.CarouselComponent=Xt;exports.CarouselControl=Ta;exports.CarouselIndicator=Oa;exports.CarouselIndicatorGroup=Ua;exports.CarouselItem=Ga;exports.CarouselItemGroup=Ha;exports.CarouselNextTrigger=qa;exports.CarouselPrevTrigger=va;exports.CarouselRoot=Ze;exports.CarouselViewport=za;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{j as Carousel,j as CarouselComponent,b as CarouselControl,f as CarouselIndicator,e as CarouselIndicatorGroup,h as CarouselItem,g as CarouselItemGroup,d as CarouselNextTrigger,c as CarouselPrevTrigger,a as CarouselRoot,i as CarouselViewport}from'../chunk-MOY7IRJM.mjs';import'../chunk-4HYLZVI5.mjs';import'../chunk-BO6XI5BE.mjs';
|
|
@@ -6,7 +6,7 @@ type ChipFormComplementaryVariantsType = (typeof ChipFormComplementaryVariants)[
|
|
|
6
6
|
declare const ChipFormComplementaryVariantsClassNames: Record<ChipFormComplementaryVariantsType, string>;
|
|
7
7
|
declare const chipForm: (props?: ({
|
|
8
8
|
variant?: "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
9
|
-
size?: "
|
|
9
|
+
size?: "md" | "sm" | undefined;
|
|
10
10
|
selected?: boolean | undefined;
|
|
11
11
|
disabled?: boolean | undefined;
|
|
12
12
|
} & ({
|
|
@@ -74,7 +74,7 @@ declare const ChipFormComplementary: React__default.ForwardRefExoticComponent<{
|
|
|
74
74
|
children?: React__default.ReactNode | undefined;
|
|
75
75
|
} & Omit<VariantProps<(props?: ({
|
|
76
76
|
variant?: "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
77
|
-
size?: "
|
|
77
|
+
size?: "md" | "sm" | undefined;
|
|
78
78
|
selected?: boolean | undefined;
|
|
79
79
|
disabled?: boolean | undefined;
|
|
80
80
|
} & ({
|
|
@@ -133,7 +133,7 @@ declare const ChipFormComplementary: React__default.ForwardRefExoticComponent<{
|
|
|
133
133
|
} | null | undefined;
|
|
134
134
|
})) | undefined) => string>, "variant"> & Required<Pick<VariantProps<(props?: ({
|
|
135
135
|
variant?: "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
136
|
-
size?: "
|
|
136
|
+
size?: "md" | "sm" | undefined;
|
|
137
137
|
selected?: boolean | undefined;
|
|
138
138
|
disabled?: boolean | undefined;
|
|
139
139
|
} & ({
|
|
@@ -6,7 +6,7 @@ type ChipFormComplementaryVariantsType = (typeof ChipFormComplementaryVariants)[
|
|
|
6
6
|
declare const ChipFormComplementaryVariantsClassNames: Record<ChipFormComplementaryVariantsType, string>;
|
|
7
7
|
declare const chipForm: (props?: ({
|
|
8
8
|
variant?: "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
9
|
-
size?: "
|
|
9
|
+
size?: "md" | "sm" | undefined;
|
|
10
10
|
selected?: boolean | undefined;
|
|
11
11
|
disabled?: boolean | undefined;
|
|
12
12
|
} & ({
|
|
@@ -74,7 +74,7 @@ declare const ChipFormComplementary: React__default.ForwardRefExoticComponent<{
|
|
|
74
74
|
children?: React__default.ReactNode | undefined;
|
|
75
75
|
} & Omit<VariantProps<(props?: ({
|
|
76
76
|
variant?: "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
77
|
-
size?: "
|
|
77
|
+
size?: "md" | "sm" | undefined;
|
|
78
78
|
selected?: boolean | undefined;
|
|
79
79
|
disabled?: boolean | undefined;
|
|
80
80
|
} & ({
|
|
@@ -133,7 +133,7 @@ declare const ChipFormComplementary: React__default.ForwardRefExoticComponent<{
|
|
|
133
133
|
} | null | undefined;
|
|
134
134
|
})) | undefined) => string>, "variant"> & Required<Pick<VariantProps<(props?: ({
|
|
135
135
|
variant?: "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
136
|
-
size?: "
|
|
136
|
+
size?: "md" | "sm" | undefined;
|
|
137
137
|
selected?: boolean | undefined;
|
|
138
138
|
disabled?: boolean | undefined;
|
|
139
139
|
} & ({
|
|
@@ -15,11 +15,11 @@ declare const ChipForm: React__default.ForwardRefExoticComponent<{
|
|
|
15
15
|
children?: React__default.ReactNode | undefined;
|
|
16
16
|
} & Omit<Omit<VariantProps<(props?: ({
|
|
17
17
|
variant?: "standard" | "primary" | undefined;
|
|
18
|
-
type?: "
|
|
18
|
+
type?: "outlined" | "ghost" | "fill" | undefined;
|
|
19
19
|
selected?: boolean | undefined;
|
|
20
20
|
disabled?: boolean | undefined;
|
|
21
21
|
duotone?: boolean | undefined;
|
|
22
|
-
size?: "
|
|
22
|
+
size?: "md" | "sm" | "xs" | undefined;
|
|
23
23
|
} & ({
|
|
24
24
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
25
25
|
[x: string]: any;
|
|
@@ -76,11 +76,11 @@ declare const ChipForm: React__default.ForwardRefExoticComponent<{
|
|
|
76
76
|
} | null | undefined;
|
|
77
77
|
})) | undefined) => string>, "variant">, "type"> & Required<Pick<VariantProps<(props?: ({
|
|
78
78
|
variant?: "standard" | "primary" | undefined;
|
|
79
|
-
type?: "
|
|
79
|
+
type?: "outlined" | "ghost" | "fill" | undefined;
|
|
80
80
|
selected?: boolean | undefined;
|
|
81
81
|
disabled?: boolean | undefined;
|
|
82
82
|
duotone?: boolean | undefined;
|
|
83
|
-
size?: "
|
|
83
|
+
size?: "md" | "sm" | "xs" | undefined;
|
|
84
84
|
} & ({
|
|
85
85
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
86
86
|
[x: string]: any;
|
|
@@ -137,11 +137,11 @@ declare const ChipForm: React__default.ForwardRefExoticComponent<{
|
|
|
137
137
|
} | null | undefined;
|
|
138
138
|
})) | undefined) => string>, "variant">> & Required<Pick<VariantProps<(props?: ({
|
|
139
139
|
variant?: "standard" | "primary" | undefined;
|
|
140
|
-
type?: "
|
|
140
|
+
type?: "outlined" | "ghost" | "fill" | undefined;
|
|
141
141
|
selected?: boolean | undefined;
|
|
142
142
|
disabled?: boolean | undefined;
|
|
143
143
|
duotone?: boolean | undefined;
|
|
144
|
-
size?: "
|
|
144
|
+
size?: "md" | "sm" | "xs" | undefined;
|
|
145
145
|
} & ({
|
|
146
146
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
147
147
|
[x: string]: any;
|
|
@@ -15,11 +15,11 @@ declare const ChipForm: React__default.ForwardRefExoticComponent<{
|
|
|
15
15
|
children?: React__default.ReactNode | undefined;
|
|
16
16
|
} & Omit<Omit<VariantProps<(props?: ({
|
|
17
17
|
variant?: "standard" | "primary" | undefined;
|
|
18
|
-
type?: "
|
|
18
|
+
type?: "outlined" | "ghost" | "fill" | undefined;
|
|
19
19
|
selected?: boolean | undefined;
|
|
20
20
|
disabled?: boolean | undefined;
|
|
21
21
|
duotone?: boolean | undefined;
|
|
22
|
-
size?: "
|
|
22
|
+
size?: "md" | "sm" | "xs" | undefined;
|
|
23
23
|
} & ({
|
|
24
24
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
25
25
|
[x: string]: any;
|
|
@@ -76,11 +76,11 @@ declare const ChipForm: React__default.ForwardRefExoticComponent<{
|
|
|
76
76
|
} | null | undefined;
|
|
77
77
|
})) | undefined) => string>, "variant">, "type"> & Required<Pick<VariantProps<(props?: ({
|
|
78
78
|
variant?: "standard" | "primary" | undefined;
|
|
79
|
-
type?: "
|
|
79
|
+
type?: "outlined" | "ghost" | "fill" | undefined;
|
|
80
80
|
selected?: boolean | undefined;
|
|
81
81
|
disabled?: boolean | undefined;
|
|
82
82
|
duotone?: boolean | undefined;
|
|
83
|
-
size?: "
|
|
83
|
+
size?: "md" | "sm" | "xs" | undefined;
|
|
84
84
|
} & ({
|
|
85
85
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
86
86
|
[x: string]: any;
|
|
@@ -137,11 +137,11 @@ declare const ChipForm: React__default.ForwardRefExoticComponent<{
|
|
|
137
137
|
} | null | undefined;
|
|
138
138
|
})) | undefined) => string>, "variant">> & Required<Pick<VariantProps<(props?: ({
|
|
139
139
|
variant?: "standard" | "primary" | undefined;
|
|
140
|
-
type?: "
|
|
140
|
+
type?: "outlined" | "ghost" | "fill" | undefined;
|
|
141
141
|
selected?: boolean | undefined;
|
|
142
142
|
disabled?: boolean | undefined;
|
|
143
143
|
duotone?: boolean | undefined;
|
|
144
|
-
size?: "
|
|
144
|
+
size?: "md" | "sm" | "xs" | undefined;
|
|
145
145
|
} & ({
|
|
146
146
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
147
147
|
[x: string]: any;
|
|
@@ -6,7 +6,7 @@ type ChipStatusComplementaryVariantType = (typeof ChipStatusComplementaryVariant
|
|
|
6
6
|
type ChipStatusComplementarySizeType = (typeof ChipStatusComplementarySizes)[number];
|
|
7
7
|
declare const chipStatusComplementary: (props?: ({
|
|
8
8
|
variant?: "warning" | "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
9
|
-
size?: "
|
|
9
|
+
size?: "md" | "sm" | "xs" | undefined;
|
|
10
10
|
} & ({
|
|
11
11
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
12
12
|
[x: string]: any;
|
|
@@ -6,7 +6,7 @@ type ChipStatusComplementaryVariantType = (typeof ChipStatusComplementaryVariant
|
|
|
6
6
|
type ChipStatusComplementarySizeType = (typeof ChipStatusComplementarySizes)[number];
|
|
7
7
|
declare const chipStatusComplementary: (props?: ({
|
|
8
8
|
variant?: "warning" | "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
9
|
-
size?: "
|
|
9
|
+
size?: "md" | "sm" | "xs" | undefined;
|
|
10
10
|
} & ({
|
|
11
11
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
12
12
|
[x: string]: any;
|
|
@@ -2,7 +2,7 @@ import { VariantProps } from 'cva';
|
|
|
2
2
|
import { HTMLAttributes, FC } from 'react';
|
|
3
3
|
|
|
4
4
|
declare const chipStatusTable: (props?: ({
|
|
5
|
-
variant?: "
|
|
5
|
+
variant?: "info" | "warning" | "success" | "error" | "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
6
6
|
} & ({
|
|
7
7
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
8
8
|
[x: string]: any;
|
|
@@ -2,7 +2,7 @@ import { VariantProps } from 'cva';
|
|
|
2
2
|
import { HTMLAttributes, FC } from 'react';
|
|
3
3
|
|
|
4
4
|
declare const chipStatusTable: (props?: ({
|
|
5
|
-
variant?: "
|
|
5
|
+
variant?: "info" | "warning" | "success" | "error" | "zoro" | "ussop" | "crocodile" | "silvers" | "buggy" | "nami" | "shanks" | "piiman" | "sanji" | "ace" | "hancock" | "chopper" | "bentham" | "ivankov" | "brook" | "luffy" | "frankie" | "jinbe" | "robin" | "law" | undefined;
|
|
6
6
|
} & ({
|
|
7
7
|
class?: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
8
8
|
[x: string]: any;
|
|
@@ -57,10 +57,12 @@ export { AutocompleteNew, AutocompleteNewOption } from './autocomplete-new.mjs';
|
|
|
57
57
|
export { ListItemCheckboxLeft, ListItemCheckboxLeftProps } from './list-item-checkbox-left.mjs';
|
|
58
58
|
export { SelectNew, SelectNewOption, SelectNewProps } from './select-new.mjs';
|
|
59
59
|
export { ChipExpandable, ChipExpandableProps, ChipExpandableTypeType, ChipExpandableTypes, ChipExpandableVariantType, ChipExpandableVariants } from './chip-expandable.mjs';
|
|
60
|
+
export { Carousel, Carousel as CarouselComponent, CarouselControl, CarouselIndicator, CarouselIndicatorGroup, CarouselItem, CarouselItemGroup, CarouselNextTrigger, CarouselPrevTrigger, CarouselRoot, CarouselViewport } from './carousel.mjs';
|
|
60
61
|
import * as Dialog from '@radix-ui/react-dialog';
|
|
61
62
|
export { Dialog as DialogPrimitive };
|
|
62
63
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
63
64
|
export { AccordionPrimitive };
|
|
65
|
+
export { CarouselControlProps, CarouselIndicatorGroupProps, CarouselIndicatorProps, CarouselItemGroupProps, CarouselItemProps, CarouselNextTriggerProps, CarouselPrevTriggerProps, CarouselRootProps } from '@ark-ui/react/carousel';
|
|
64
66
|
import 'tailwind-variants';
|
|
65
67
|
import '@radix-ui/react-tabs';
|
|
66
68
|
import 'cva';
|
|
@@ -57,10 +57,12 @@ export { AutocompleteNew, AutocompleteNewOption } from './autocomplete-new.js';
|
|
|
57
57
|
export { ListItemCheckboxLeft, ListItemCheckboxLeftProps } from './list-item-checkbox-left.js';
|
|
58
58
|
export { SelectNew, SelectNewOption, SelectNewProps } from './select-new.js';
|
|
59
59
|
export { ChipExpandable, ChipExpandableProps, ChipExpandableTypeType, ChipExpandableTypes, ChipExpandableVariantType, ChipExpandableVariants } from './chip-expandable.js';
|
|
60
|
+
export { Carousel, Carousel as CarouselComponent, CarouselControl, CarouselIndicator, CarouselIndicatorGroup, CarouselItem, CarouselItemGroup, CarouselNextTrigger, CarouselPrevTrigger, CarouselRoot, CarouselViewport } from './carousel.js';
|
|
60
61
|
import * as Dialog from '@radix-ui/react-dialog';
|
|
61
62
|
export { Dialog as DialogPrimitive };
|
|
62
63
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
63
64
|
export { AccordionPrimitive };
|
|
65
|
+
export { CarouselControlProps, CarouselIndicatorGroupProps, CarouselIndicatorProps, CarouselItemGroupProps, CarouselItemProps, CarouselNextTriggerProps, CarouselPrevTriggerProps, CarouselRootProps } from '@ark-ui/react/carousel';
|
|
64
66
|
import 'tailwind-variants';
|
|
65
67
|
import '@radix-ui/react-tabs';
|
|
66
68
|
import 'cva';
|