@ceed/ads 0.0.133 → 0.0.134
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/components/Button/Button.d.ts +1 -1
- package/dist/components/CurrencyInput/CurrencyInput.d.ts +2 -2
- package/dist/components/Input/Input.d.ts +2 -2
- package/dist/components/Radio/Radio.d.ts +2 -2
- package/dist/components/Textarea/Textarea.d.ts +2 -2
- package/dist/index.js +1 -1
- package/framer/index.js +16 -16
- package/package.json +1 -1
|
@@ -21,5 +21,5 @@ declare const Button: React.ForwardRefExoticComponent<Omit<{
|
|
|
21
21
|
loadingPosition?: "center" | "end" | "start" | undefined;
|
|
22
22
|
} & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
23
23
|
ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
|
|
24
|
-
}, "color" | "tabIndex" | "variant" | "sx" | "disabled" | "size" | "endDecorator" | "startDecorator" | "component" | "
|
|
24
|
+
}, "color" | "tabIndex" | "variant" | "sx" | "disabled" | "size" | "endDecorator" | "startDecorator" | "component" | "action" | "loading" | "fullWidth" | "loadingIndicator" | "loadingPosition" | "focusVisibleClassName" | keyof import("@mui/joy").ButtonSlotsAndSlotProps> & MotionProps, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
25
25
|
export { Button };
|
|
@@ -19,7 +19,7 @@ interface CurrencyInputProps {
|
|
|
19
19
|
}
|
|
20
20
|
declare const CurrencyInput: React.ForwardRefExoticComponent<Omit<CurrencyInputProps & {
|
|
21
21
|
component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
|
|
22
|
-
} & Pick<React.InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "autoFocus" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "disabled" | "type" | "required" | "
|
|
22
|
+
} & Pick<React.InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "autoFocus" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "disabled" | "type" | "required" | "name" | "value" | "autoComplete" | "placeholder" | "readOnly"> & {
|
|
23
23
|
className?: string | undefined;
|
|
24
24
|
color?: import("@mui/types").OverridableStringUnion<import("@mui/joy").ColorPaletteProp, import("@mui/joy").InputPropsColorOverrides> | undefined;
|
|
25
25
|
endDecorator?: React.ReactNode;
|
|
@@ -31,5 +31,5 @@ declare const CurrencyInput: React.ForwardRefExoticComponent<Omit<CurrencyInputP
|
|
|
31
31
|
variant?: import("@mui/types").OverridableStringUnion<import("@mui/joy").VariantProp, import("@mui/joy").InputPropsVariantOverrides> | undefined;
|
|
32
32
|
} & import("@mui/joy").InputSlotsAndSlotProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
33
33
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
34
|
-
}, "color" | "defaultValue" | "autoFocus" | "className" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "variant" | "sx" | "disabled" | "size" | "endDecorator" | "startDecorator" | "component" | "type" | "error" | "required" | "
|
|
34
|
+
}, "color" | "defaultValue" | "autoFocus" | "className" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "variant" | "sx" | "disabled" | "size" | "endDecorator" | "startDecorator" | "component" | "type" | "error" | "required" | "name" | "value" | "autoComplete" | "placeholder" | "readOnly" | "fullWidth" | keyof import("@mui/joy").InputSlotsAndSlotProps> & MotionProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
35
35
|
export { CurrencyInput };
|
|
@@ -8,7 +8,7 @@ declare const Input: {
|
|
|
8
8
|
error?: boolean | undefined;
|
|
9
9
|
} & {
|
|
10
10
|
component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
|
|
11
|
-
} & Pick<React.InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "autoFocus" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "disabled" | "type" | "required" | "
|
|
11
|
+
} & Pick<React.InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "autoFocus" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "disabled" | "type" | "required" | "name" | "value" | "autoComplete" | "placeholder" | "readOnly"> & {
|
|
12
12
|
className?: string | undefined;
|
|
13
13
|
color?: import("@mui/types").OverridableStringUnion<import("@mui/joy").ColorPaletteProp, import("@mui/joy").InputPropsColorOverrides> | undefined;
|
|
14
14
|
endDecorator?: React.ReactNode;
|
|
@@ -20,7 +20,7 @@ declare const Input: {
|
|
|
20
20
|
variant?: import("@mui/types").OverridableStringUnion<import("@mui/joy").VariantProp, import("@mui/joy").InputPropsVariantOverrides> | undefined;
|
|
21
21
|
} & import("@mui/joy").InputSlotsAndSlotProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
22
22
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
23
|
-
}, "color" | "defaultValue" | "autoFocus" | "className" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "variant" | "sx" | "disabled" | "size" | "endDecorator" | "startDecorator" | "component" | "type" | "error" | "required" | "
|
|
23
|
+
}, "color" | "defaultValue" | "autoFocus" | "className" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "variant" | "sx" | "disabled" | "size" | "endDecorator" | "startDecorator" | "component" | "type" | "error" | "required" | "name" | "value" | "autoComplete" | "placeholder" | "readOnly" | "fullWidth" | keyof import("@mui/joy").InputSlotsAndSlotProps> & MotionProps): React.JSX.Element;
|
|
24
24
|
displayName: string;
|
|
25
25
|
};
|
|
26
26
|
export { Input };
|
|
@@ -14,7 +14,7 @@ declare const Radio: import("framer-motion").CustomDomComponent<import("@mui/bas
|
|
|
14
14
|
value?: unknown;
|
|
15
15
|
} & import("@mui/joy").RadioSlotsAndSlotProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
16
16
|
ref?: ((instance: HTMLSpanElement | null) => void) | React.RefObject<HTMLSpanElement> | null | undefined;
|
|
17
|
-
}, "label" | "color" | "overlay" | "className" | "variant" | "sx" | "size" | "
|
|
17
|
+
}, "label" | "color" | "overlay" | "className" | "variant" | "sx" | "size" | "name" | "value" | keyof import("@mui/base").UseSwitchParameters | "checkedIcon" | "disableIcon" | "uncheckedIcon" | keyof import("@mui/joy").RadioSlotsAndSlotProps>>;
|
|
18
18
|
export { Radio };
|
|
19
19
|
declare const RadioGroup: import("framer-motion").CustomDomComponent<{
|
|
20
20
|
className?: string | undefined;
|
|
@@ -32,5 +32,5 @@ declare const RadioGroup: import("framer-motion").CustomDomComponent<{
|
|
|
32
32
|
variant?: import("@mui/types").OverridableStringUnion<import("@mui/joy").VariantProp, import("@mui/joy").RadioPropsVariantOverrides> | undefined;
|
|
33
33
|
} & import("@mui/joy").RadioGroupSlotsAndSlotProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
34
34
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
35
|
-
}, "color" | "overlay" | "defaultValue" | "className" | "onChange" | "variant" | "sx" | "size" | "component" | "orientation" | "
|
|
35
|
+
}, "color" | "overlay" | "defaultValue" | "className" | "onChange" | "variant" | "sx" | "size" | "component" | "orientation" | "name" | "value" | "disableIcon" | keyof import("@mui/joy").RadioGroupSlotsAndSlotProps>>;
|
|
36
36
|
export { RadioGroup };
|
|
@@ -8,7 +8,7 @@ declare const Textarea: {
|
|
|
8
8
|
helperText?: React.ReactNode;
|
|
9
9
|
} & {
|
|
10
10
|
component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
|
|
11
|
-
} & import("@mui/joy").TextareaSlotsAndSlotProps & Pick<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "defaultValue" | "autoFocus" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "disabled" | "required" | "
|
|
11
|
+
} & import("@mui/joy").TextareaSlotsAndSlotProps & Pick<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "defaultValue" | "autoFocus" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "disabled" | "required" | "name" | "value" | "autoComplete" | "placeholder" | "readOnly"> & {
|
|
12
12
|
color?: import("@mui/types").OverridableStringUnion<import("@mui/joy").ColorPaletteProp, import("@mui/joy").TextareaPropsColorOverrides> | undefined;
|
|
13
13
|
endDecorator?: React.ReactNode;
|
|
14
14
|
error?: boolean | undefined;
|
|
@@ -20,7 +20,7 @@ declare const Textarea: {
|
|
|
20
20
|
variant?: import("@mui/types").OverridableStringUnion<import("@mui/joy").VariantProp, import("@mui/joy").TextareaPropsVariantOverrides> | undefined;
|
|
21
21
|
} & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
22
22
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
23
|
-
}, "color" | "defaultValue" | "autoFocus" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "variant" | "sx" | "disabled" | "size" | "endDecorator" | "startDecorator" | "component" | "error" | "required" | "
|
|
23
|
+
}, "color" | "defaultValue" | "autoFocus" | "id" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onClick" | "variant" | "sx" | "disabled" | "size" | "endDecorator" | "startDecorator" | "component" | "error" | "required" | "name" | "value" | "autoComplete" | "placeholder" | "readOnly" | keyof import("@mui/joy").TextareaSlotsAndSlotProps | "maxRows" | "minRows"> & MotionProps): React.JSX.Element;
|
|
24
24
|
displayName: string;
|
|
25
25
|
};
|
|
26
26
|
export { Textarea };
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{useTheme as Eg,useColorScheme as Og,useThemeProps as Vg,alertClasses as Jg,boxClasses as Yg,buttonClasses as $g,checkboxClasses as Wg,dividerClasses as qg,iconButtonClasses as Gg,inputClasses as Ug,menuClasses as jg,menuButtonClasses as _g,menuItemClasses as Zg,optionClasses as Xg,radioClasses as Qg,radioGroupClasses as Rg,selectClasses as Kg,switchClasses as ef,tableClasses as of,textareaClasses as tf,typographyClasses as rf,formControlClasses as nf,formLabelClasses as af,formHelperTextClasses as lf,gridClasses as sf,stackClasses as mf,sheetClasses as df,modalClasses as pf,modalCloseClasses as cf,modalDialogClasses as uf,modalOverflowClasses as gf,dialogTitleClasses as ff,dialogContentClasses as hf,dialogActionsClasses as Cf,tooltipClasses as bf,tabsClasses as yf,tabListClasses as xf,tabPanelClasses as vf,accordionClasses as Df,accordionDetailsClasses as Mf,accordionGroupClasses as kf,accordionSummaryClasses as Tf,AutocompleteListbox as Pf,AutocompleteOption as wf,autocompleteClasses as Ff,autocompleteListboxClasses as Af,autocompleteOptionClasses as If,Avatar as Bf,avatarClasses as Nf,AvatarGroup as Lf,avatarGroupClasses as Sf,AspectRatio as Hf,aspectRatioClasses as zf,Badge as Ef,badgeClasses as Of,breadcrumbsClasses as Vf,cardClasses as Jf,cardActionsClasses as Yf,cardContentClasses as $f,cardCoverClasses as Wf,cardOverflowClasses as qf,Chip as Gf,chipClasses as Uf,CircularProgress as jf,circularProgressClasses as _f,Drawer as Zf,drawerClasses as Xf,LinearProgress as Qf,linearProgressClasses as Rf,List as Kf,listClasses as eh,ListDivider as oh,listDividerClasses as th,ListItem as rh,listItemClasses as nh,ListItemButton as ah,listItemButtonClasses as ih,ListItemContent as lh,listItemContentClasses as sh,ListItemDecorator as mh,listItemDecoratorClasses as dh,ListSubheader as ph,listSubheaderClasses as ch,Link as uh,linkClasses as gh,Slider as fh,sliderClasses as hh,Step as Ch,stepClasses as bh,StepButton as yh,stepButtonClasses as xh,StepIndicator as vh,Stepper as Dh,stepperClasses as Mh,Skeleton as kh,skeletonClasses as Th}from"@mui/joy";import ne from"react";import{AccordionGroup as jt,Accordion as _t,AccordionSummary as Zt,AccordionDetails as Xt}from"@mui/joy";import{motion as Se}from"framer-motion";var Qt=Se(Zt),He=Qt;He.displayName="AccordionSummary";var Rt=Se(Xt),ze=Rt;ze.displayName="AccordionDetails";var Kt=Se(_t);function Ee(e){let{summary:o,details:r,variant:n,color:i,...a}=e,t=n==="solid"?"solid":void 0;return ne.createElement(Kt,{variant:t,color:i,...a},ne.createElement(He,{variant:t,color:i},o),ne.createElement(ze,{variant:t,color:i},r))}Ee.displayName="Accordion";var er=Se(jt);function to(e){let{variant:o,color:r,items:n,...i}=e;return ne.createElement(er,{variant:o,color:r,...i},n.map((a,t)=>ne.createElement(Ee,{key:t,summary:a.summary,details:a.details,index:t,variant:o,color:r})))}to.displayName="Accordions";import Oe from"react";import{Alert as sr,styled as mr}from"@mui/joy";import{motion as dr}from"framer-motion";import or from"react";import{Typography as tr}from"@mui/joy";import{motion as rr}from"framer-motion";var nr=rr(tr),V=e=>or.createElement(nr,{...e});V.displayName="Typography";var L=V;import{Stack as ar}from"@mui/joy";import{motion as ir}from"framer-motion";var lr=ir(ar),ae=lr;ae.displayName="Stack";var z=ae;var pr=mr(dr(sr))({alignItems:"flex-start",fontWeight:"unset"});function ro(e){let{title:o,content:r,actions:n,color:i="primary",...a}=e,t=e.invertedColors||e.variant==="solid";return Oe.createElement(pr,{...a,color:i,endDecorator:n,invertedColors:t},Oe.createElement(z,null,o&&Oe.createElement(L,{level:"title-sm",color:i},o),Oe.createElement(L,{level:"body-sm",color:i},r)))}ro.displayName="Alert";import A,{useMemo as Ve,useState as Dr}from"react";import{Autocomplete as Mr,AutocompleteOption as kr,ListSubheader as Tr,AutocompleteListbox as Pr,ListItemDecorator as et,CircularProgress as wr}from"@mui/joy";import{Popper as Fr}from"@mui/base";import{FixedSizeList as Ar}from"react-window";import{FormControl as cr,styled as ur}from"@mui/joy";import{motion as gr}from"framer-motion";var fr=ur(gr(cr))({width:"100%"}),ie=fr;ie.displayName="FormControl";var F=ie;import{FormLabel as hr}from"@mui/joy";import{motion as Cr}from"framer-motion";var br=Cr(hr),le=br;le.displayName="FormLabel";var S=le;import{FormHelperText as yr}from"@mui/joy";import{motion as xr}from"framer-motion";var vr=xr(yr),se=vr;se.displayName="FormHelperText";var w=se;function Ir(e){let{data:o,index:r,style:n}=e,i=o[r],a={...n},t=i.props;if(i.hasOwnProperty("group"))return A.createElement(Tr,{key:i.key,component:"li"},i.group);let l=t["data-option-index"],s=t.ownerState.options[l];return A.createElement(kr,{...t},s.startDecorator&&A.createElement(et,{sx:{marginInlineEnd:"var(--Input-gap)"}},s.startDecorator),s.label,s.endDecorator&&A.createElement(et,{sx:{marginInlineStart:"var(--Input-gap)"}},s.endDecorator))}var ot=A.createContext({}),Br=A.forwardRef((e,o)=>{let r=A.useContext(ot);return A.createElement(Pr,{...e,...r,component:"div",ref:o,sx:{"& ul":{padding:0,margin:0,flexShrink:0}}})}),Nr=A.forwardRef(function(o,r){let{children:n,anchorEl:i,open:a,modifiers:t,...l}=o,s=[];n[0].forEach(c=>{c&&(s.push(c),s.push(...c.children||[]))});let d=s.length,m=36;return A.createElement(Fr,{ref:r,anchorEl:i,open:a,modifiers:t},A.createElement(ot.Provider,{value:l},A.createElement(Ar,{itemData:s,height:m*8,width:"100%",outerElementType:Br,innerElementType:"ul",itemSize:m,overscanCount:5,itemCount:d},Ir)))});function no(e){let{label:o,error:r,helperText:n,color:i,size:a,disabled:t,required:l,onChange:s,...d}=e,[m,c]=Dr(e.value||e.defaultValue),b=Ve(()=>e.options.map(v=>typeof v!="object"?{value:v,label:v}:v),[e.options]),f=Ve(()=>e.loading?{value:"",label:"",startDecorator:A.createElement(wr,{size:"sm",color:"neutral",variant:"plain",thickness:3})}:typeof m=="string"&&b.find(v=>v.value===m)||m,[m,e.options,e.loading]),y=Ve(()=>f?.startDecorator||e.startDecorator,[f]),p=Ve(()=>f?.endDecorator||e.endDecorator,[f]),k=A.createElement(Mr,{...d,required:l,onChange:(v,D)=>{c(D);let h=D;s?.({...v,target:{...v.target,value:h?.value}})},color:i,value:f,options:b,size:a,disabled:t,startDecorator:y,endDecorator:p,slots:{listbox:Nr},getOptionLabel:v=>`${v.value||""}`,renderGroup:v=>v});return o?A.createElement(F,{required:l,color:i,size:a,error:r,disabled:t},A.createElement(S,null,o),k,n&&A.createElement(w,null,n)):k}no.displayName="Autocomplete";import{Box as Lr}from"@mui/joy";import{motion as Sr}from"framer-motion";var Hr=Sr(Lr),me=Hr;me.displayName="Box";var Je=me;import O from"react";import{Breadcrumbs as nt,Link as Gr}from"@mui/joy";import ao from"react";import{Menu as zr,MenuButton as Er,MenuItem as Or}from"@mui/joy";import{motion as io}from"framer-motion";var Vr=io(zr),de=e=>ao.createElement(Vr,{...e});de.displayName="Menu";var Jr=io(Er),pe=e=>ao.createElement(Jr,{...e});pe.displayName="MenuButton";var Yr=io(Or),ce=e=>ao.createElement(Yr,{...e});ce.displayName="MenuItem";var tt=de;import{Dropdown as $r}from"@mui/joy";import{motion as Wr}from"framer-motion";var qr=Wr($r),ue=qr;ue.displayName="Dropdown";var rt=ue;function lo(e){let{crumbs:o,size:r,startCrumbCount:n=1,endCrumbCount:i=3,slots:{link:a,...t}={link:Gr},slotProps:{link:l,...s}={link:{color:"neutral"}},collapsed:d=!0,...m}=e,c=u=>u.type==="link"&&a?O.createElement(a,{to:u.linkHref,href:u.linkHref,...l},u.label):O.createElement(L,null,u.label);if(!d)return O.createElement(nt,{size:r,slots:t,slotProps:s,...m},o.map(u=>O.createElement(c,{...u})));let b=Math.max(1,i),f=o.slice(0,n).map(u=>O.createElement(c,{...u})),y=(n+b>o.length?o.slice(n):o.slice(-b)).map(u=>O.createElement(c,{...u})),p=o.slice(n,-b).map(u=>O.createElement(ce,null,O.createElement(c,{...u})));return O.createElement(nt,{size:r,slots:t,slotProps:s,...m},f,p.length&&O.createElement(rt,null,O.createElement(pe,{size:r,variant:"plain"},"..."),O.createElement(tt,{size:r},p)),y)}lo.displayName="Breadcrumbs";import Ur,{forwardRef as jr}from"react";import{Button as _r}from"@mui/joy";import{motion as Zr}from"framer-motion";var Xr=Zr(_r),ge=jr((e,o)=>Ur.createElement(Xr,{ref:o,...e}));ge.displayName="Button";var T=ge;import C,{Fragment as he,forwardRef as an,useMemo as ct}from"react";import{styled as J}from"@mui/joy";import ln from"@mui/icons-material/esm/ChevronLeft.js";import sn from"@mui/icons-material/esm/ChevronRight.js";import{AnimatePresence as ut,motion as mn}from"framer-motion";var at=e=>{let o=[],r=new Date(e.getFullYear(),e.getMonth(),1),n=new Date(e.getFullYear(),e.getMonth()+1,0),i=Math.ceil((r.getDay()+1)/7),a=Math.ceil((n.getDate()+r.getDay())/7),t=1;for(let l=1;l<=a;l++){let s=[];for(let d=1;d<=7;d++)l===i&&d<r.getDay()+1||t>n.getDate()?s.push(void 0):(s.push(t),t++);o.push(s)}return o},it=(e,o)=>e.toLocaleString(o,{year:"numeric"}),so=(e,o)=>e.toLocaleString(o,{year:"numeric",month:"long"}),lt=(e,o)=>new Date(0,e).toLocaleString(o,{month:"short"}),st=e=>{let o=new Date().getDay(),r=new Date;return r.setDate(r.getDate()-o),Array.from({length:7}).map(()=>{let n=r.toLocaleString(e,{weekday:"short"});return r.setDate(r.getDate()+1),n})},mt=e=>{let o=new Date,r=new Date(e);return r.setHours(0,0,0,0),o.setHours(0,0,0,0),r.getTime()===o.getTime()},mo=(e,o)=>{let r=new Date(e),n=new Date(o);return r.setHours(0,0,0,0),n.setHours(0,0,0,0),r.getTime()===n.getTime()},q=(e,o,r)=>{let n=new Date(r);n.setHours(0,0,0,0);let i=new Date(Math.min(e.getTime(),o.getTime())),a=new Date(Math.max(e.getTime(),o.getTime()));return n>=i&&n<=a},Ye=(e,o)=>e.getFullYear()===o.getFullYear()&&e.getMonth()===o.getMonth();import Qr from"react";import{IconButton as Rr}from"@mui/joy";import{motion as Kr}from"framer-motion";var en=Kr(Rr),fe=e=>Qr.createElement(en,{...e});fe.displayName="IconButton";var E=fe;import{useCallback as on,useMemo as tn,useState as $e}from"react";import{useThemeProps as rn}from"@mui/joy";var nn=(e,o)=>o.includes(e)?e:o[0],dt=e=>{let[o,r]=$e(()=>nn(e.view||"day",e.views||["day","month"])),[n,i]=$e(e.defaultValue),[a,t]=$e(()=>{let p=new Date;return p.setDate(1),p.setHours(0,0,0,0),e.value?.[0]||e.defaultValue?.[0]||p}),[[l,s],d]=$e([0,0]),m=e.view??o,c=p=>{d([l+p,p])},b=on(p=>{t(p),m==="month"?a.getFullYear()!==p.getFullYear()&&c(p>a?1:-1):c(p>a?1:-1),e.onMonthChange?.(p)},[e.onMonthChange,a,m]),f=rn({props:{locale:"default",views:["day","month"],view:m,value:e.value??n,...e,onChange:e.value?e.onChange:p=>{i(p),e.onChange?.(p)},onMonthChange:b,onViewChange:()=>{let p=m==="month"?"day":"month";!(!e.views||e.views.includes(p))||e.view===p||(e.onViewChange?e.onViewChange(p):r(p))}},name:"Calendar"}),y=tn(()=>({...f,viewMonth:a,direction:s}),[f,a,s]);return[f,y]};import{useCallback as K,useState as pt}from"react";var We=e=>{let[o,r]=pt(null),[n,i]=pt(null);return{calendarTitle:e.view==="month"?it(e.viewMonth,e.locale||"default"):so(e.viewMonth,e.locale||"default"),onPrev:K(()=>{if(e.view==="day"){let a=new Date(e.viewMonth||new Date);a.setMonth(a.getMonth()-1),e.onMonthChange?.(a)}else if(e.view==="month"){let a=new Date(e.viewMonth||new Date);a.setFullYear(a.getFullYear()-1),e.onMonthChange?.(a)}},[e.onMonthChange,e.viewMonth,e.view]),onNext:K(()=>{if(e.view==="day"){let a=new Date(e.viewMonth||new Date);a.setMonth(a.getMonth()+1),e.onMonthChange?.(a)}else if(e.view==="month"){let a=new Date(e.viewMonth||new Date);a.setFullYear(a.getFullYear()+1),e.onMonthChange?.(a)}},[e.onMonthChange,e.viewMonth,e.view]),getDayCellProps:K(a=>{let t=new Date(e.viewMonth||new Date);t.setHours(0,0,0,0),t.setDate(a);let l=e.rangeSelection&&e.value&&e.value[0]&&(o&&q(e.value[0],o,t)||e.value[1]&&q(e.value[0],e.value[1],t));return{"aria-label":t.toLocaleDateString(),"aria-current":l?"date":void 0}},[e.rangeSelection,e.value,e.viewMonth,o]),getMonthCellProps:K(a=>{let t=new Date(e.viewMonth||new Date);t.setDate(1),t.setHours(0,0,0,0),t.setMonth(a);let s=!e.views?.find(d=>d==="day")&&e.rangeSelection&&e.value&&e.value[0]&&(n&&q(e.value[0],n,t)||e.value[1]&&q(e.value[0],e.value[1],t));return{"aria-label":t.toLocaleDateString(),"aria-current":s?"date":void 0}},[e.rangeSelection,e.value,e.viewMonth,n]),getPickerDayProps:K(a=>{let t=new Date(e.viewMonth||new Date);t.setHours(0,0,0,0),t.setDate(a);let l=!!e.value&&(mo(t,e.value[0])||e.value[1]&&mo(t,e.value[1])),s=e.rangeSelection&&e.value&&e.value[0]&&(o&&q(e.value[0],o,t)||e.value[1]&&q(e.value[0],e.value[1],t)),d=()=>{e.rangeSelection?e.value?e.value[0]&&!e.value[1]?e.onChange?.([new Date(Math.min(e.value[0].getTime(),t.getTime())),new Date(Math.max(e.value[0].getTime(),t.getTime()))]):e.onChange?.([t,void 0]):e.onChange?.([t,void 0]):e.onChange?.([t,void 0]),r(null)};return{isToday:mt(t),isSelected:l,onClick:d,onMouseEnter:e.rangeSelection&&e.value?.[0]&&!e.value?.[1]?()=>r(t):void 0,disabled:e.minDate&&t<e.minDate||e.maxDate&&t>e.maxDate||e.disableFuture&&t>new Date||e.disablePast&&t<(()=>{let m=new Date;return m.setHours(0,0,0,0),m})(),tabIndex:-1,"aria-label":t.toLocaleDateString(),"aria-selected":l?"true":void 0,"aria-current":s?"date":void 0}},[e.onChange,e.value,e.viewMonth,e.rangeSelection,e.minDate,e.maxDate,e.disableFuture,e.disablePast,o]),getPickerMonthProps:K(a=>{let t=new Date(e.viewMonth||new Date);t.setDate(1),t.setHours(0,0,0,0),t.setMonth(a);let l=!e.views?.find(c=>c==="day")&&e.rangeSelection,s=!!e.value&&(Ye(t,e.value[0])||e.value[1]&&Ye(t,e.value[1])),d=l&&e.value&&e.value[0]&&(n&&q(e.value[0],n,t)||e.value[1]&&q(e.value[0],e.value[1],t)),m=()=>{l?e.value?e.value[0]&&!e.value[1]?e.onChange?.([new Date(Math.min(e.value[0].getTime(),t.getTime())),new Date(Math.max(e.value[0].getTime(),t.getTime()))]):e.onChange?.([t,void 0]):e.onChange?.([t,void 0]):(e.onViewChange?.("day"),e.onMonthChange?.(t)),i(null)};return{isSelected:s,onMouseEnter:l&&e.value?.[0]&&!e.value?.[1]?()=>i(t):void 0,disabled:e.minDate&&(()=>{let c=new Date(t);return c.setMonth(c.getMonth()+1),c.setDate(0),c<e.minDate})()||e.maxDate&&(()=>{let c=new Date(t);return c.setDate(0),c>e.maxDate})()||e.disableFuture&&t>new Date||e.disablePast&&t<new Date&&!Ye(t,new Date),onClick:m,tabIndex:-1,"aria-label":so(t,e.locale||"default"),"aria-selected":s?"true":void 0,"aria-current":d?"date":void 0}},[e.onMonthChange,e.onViewChange,e.onChange,e.viewMonth,e.locale,e.value,e.minDate,e.maxDate,e.disableFuture,e.disablePast,n])}};var dn=J("div",{name:"Calendar",slot:"root"})({maxWidth:"264px"}),pn=J("div",{name:"Calendar",slot:"calendarHeader"})(({theme:e})=>({display:"flex",justifyContent:"space-between",alignItems:"center",padding:e.spacing(1)})),gt=J("div",{name:"Calendar",slot:"viewContainer"})(({theme:e,calendarType:o})=>({paddingLeft:e.spacing(1),paddingRight:e.spacing(1),position:"relative",overflow:"hidden",minHeight:o==="datePicker"?"250px":"unset"})),ft=J(mn.table,{name:"Calendar",slot:"viewTable"})(({theme:e})=>({borderSpacing:0,"& td, & th":{padding:0},"& th":{paddingTop:e.spacing(1),paddingBottom:e.spacing(1)}})),cn=J("thead",{name:"Calendar",slot:"weekHeaderContainer"})({}),un=J("tbody",{name:"Calendar",slot:"dayPickerContainer"})({}),gn=J(T,{name:"Calendar",slot:"switchViewButton"})(({ownerState:e})=>[e.view==="month"&&{pointerEvents:"none"}]),fn=J("td",{name:"Calendar",slot:"dayCell"})(({theme:e})=>({"&[aria-current=date]":{position:"relative","& button[aria-current=date]:not([aria-selected=true]):not(:hover):not(:active)":{backgroundColor:`rgb(${e.palette.primary.lightChannel})`},'& + td[aria-hidden] + td[aria-current="date"]::before':{content:'""',position:"absolute",top:0,left:"-10px",bottom:0,width:"16px",backgroundColor:`rgb(${e.palette.primary.lightChannel})`,zIndex:-1}}})),hn=J("td",{name:"Calendar",slot:"monthCell"})(({theme:e})=>({"&[aria-current=date]":{position:"relative","& button[aria-current=date]:not([aria-selected=true]):not(:hover):not(:active)":{backgroundColor:`rgb(${e.palette.primary.lightChannel})`},'& + td[aria-hidden] + td[aria-current="date"]::before':{content:'""',position:"absolute",top:0,left:"-10px",bottom:0,width:"16px",backgroundColor:`rgb(${e.palette.primary.lightChannel})`,zIndex:-1}}})),Cn=J(T,{name:"Calendar",slot:"month"})(({theme:e,isSelected:o,disabled:r})=>[{width:"59px",textAlign:"center","&:hover":{color:e.palette.primary.softColor,backgroundColor:e.palette.primary.softHoverBg},"&:active":{color:e.palette.primary.softColor,backgroundColor:e.palette.primary.softActiveBg}},o&&{backgroundColor:e.palette.primary.solidBg,color:e.palette.primary.solidColor,"&:hover":{color:e.palette.primary.solidColor,backgroundColor:e.palette.primary.solidHoverBg},"&:active":{color:e.palette.primary.solidColor,backgroundColor:e.palette.primary.solidActiveBg}},r&&{color:e.palette.neutral.solidDisabledColor,backgroundColor:e.palette.neutral.solidDisabledBg}]),bn=J(T,{name:"Calendar",slot:"day"})(({theme:e,isToday:o,isSelected:r,disabled:n})=>[{width:"32px",height:"32px",textAlign:"center","&:hover":{color:e.palette.primary.softColor,backgroundColor:e.palette.primary.softHoverBg},"&:active":{color:e.palette.primary.softColor,backgroundColor:e.palette.primary.softActiveBg}},o&&!r&&{"&:not([aria-current=date]):not(:hover)":{border:`1px solid ${e.palette.neutral.outlinedBorder}`}},r&&{backgroundColor:e.palette.primary.solidBg,color:e.palette.primary.solidColor,"&:hover":{color:e.palette.primary.solidColor,backgroundColor:e.palette.primary.solidHoverBg},"&:active":{color:e.palette.primary.solidColor,backgroundColor:e.palette.primary.solidActiveBg}},n&&{color:e.palette.neutral.solidDisabledColor,backgroundColor:e.palette.neutral.solidDisabledBg}]),ht={enter:e=>({x:e>0?300:-300,opacity:0}),center:{position:"relative",zIndex:1,x:0,opacity:1},exit:e=>({position:"absolute",zIndex:0,x:e<0?300:-300,opacity:0})},qe=1e4,Ct=(e,o)=>Math.abs(e)*o,yn=e=>{let{ownerState:o}=e,{getPickerDayProps:r,getDayCellProps:n}=We(o),i=ct(()=>at(o.viewMonth),[o.viewMonth]),a=ct(()=>st(o.locale||"default"),[o.locale]);return C.createElement(gt,{calendarType:"datePicker"},C.createElement(ut,{initial:!1,custom:o.direction},C.createElement(ft,{key:`${o.viewMonth.toString()}_${o.direction}`,custom:o.direction,variants:ht,initial:"enter",animate:"center",exit:"exit",transition:{x:{type:"spring",stiffness:300,damping:30},opacity:{duration:.2}},drag:"x",dragConstraints:{left:0,right:0},dragElastic:1,onDragEnd:(t,{offset:l,velocity:s})=>{let d=Ct(l.x,s.x);if(d<-qe){let m=new Date(o.viewMonth||new Date);m.setMonth(m.getMonth()+1),o.onMonthChange?.(m)}else if(d>qe){let m=new Date(o.viewMonth||new Date);m.setMonth(m.getMonth()-1),o.onMonthChange?.(m)}}},C.createElement(cn,null,C.createElement("tr",null,a.map((t,l)=>C.createElement(C.Fragment,null,C.createElement("th",null,C.createElement(L,{level:"body-xs",textAlign:"center"},t)),l<6&&C.createElement("th",{style:{width:4},"aria-hidden":"true","aria-description":"cell-gap"}))))),C.createElement(un,null,i.map((t,l)=>C.createElement(he,{key:`${o.viewMonth}_${l}`},C.createElement("tr",null,t.map((s,d)=>s?C.createElement(he,{key:d},C.createElement(fn,{...n(s)},C.createElement(bn,{size:"sm",variant:"plain",color:"neutral",...r(s)},s)),d<6&&C.createElement("td",{"aria-hidden":"true","aria-description":"cell-gap"})):C.createElement(he,{key:d},C.createElement("td",null),d<6&&C.createElement("td",{"aria-hidden":"true","aria-description":"cell-gap"})))),l<i.length-1&&C.createElement("tr",{"aria-hidden":"true","aria-description":"row-gap"},C.createElement("td",{colSpan:13,style:{height:4}}))))))))},xn=e=>{let{ownerState:o}=e,{getPickerMonthProps:r,getMonthCellProps:n}=We(o),i=Array.from({length:12},(t,l)=>l).reduce((t,l)=>(t[t.length-1].length===4&&t.push([]),t[t.length-1].push(l),t),[[]]),a=!o.views?.find(t=>t==="day")&&o.rangeSelection;return C.createElement(gt,{calendarType:a?"monthPicker":"datePicker"},C.createElement(ut,{initial:!1,custom:o.direction},C.createElement(ft,{key:`${o.viewMonth.getFullYear()}_${o.direction}`,custom:o.direction,variants:ht,initial:"enter",animate:"center",exit:"exit",transition:{x:{type:"spring",stiffness:300,damping:30},opacity:{duration:.2}},drag:"x",dragConstraints:{left:0,right:0},dragElastic:1,onDragEnd:(t,{offset:l,velocity:s})=>{let d=Ct(l.x,s.x);if(d<-qe){let m=new Date(o.viewMonth||new Date);m.setMonth(m.getMonth()+1),o.onMonthChange?.(m)}else if(d>qe){let m=new Date(o.viewMonth||new Date);m.setMonth(m.getMonth()-1),o.onMonthChange?.(m)}}},C.createElement("tbody",null,i.map((t,l)=>C.createElement(he,{key:l},C.createElement("tr",null,t.map((s,d)=>C.createElement(he,{key:s},C.createElement(hn,{...n(s)},C.createElement(Cn,{size:"sm",variant:"plain",color:"neutral",...r(s)},lt(s,o.locale))),d<3&&C.createElement("td",{style:{width:4},"aria-hidden":"true","aria-description":"cell-gap"})))),l<i.length-1&&C.createElement("tr",{"aria-hidden":"true","aria-description":"row-gap"},C.createElement("td",{colSpan:7,style:{height:4}}))))))))},Ce=an((e,o)=>{let[r,n]=dt(e),{value:i,defaultValue:a,onChange:t,locale:l,onViewChange:s,onMonthChange:d,view:m,views:c,rangeSelection:b,...f}=r,{calendarTitle:y,onPrev:p,onNext:u}=We(n);return C.createElement(dn,{ref:o,...f},C.createElement(pn,null,C.createElement(E,{size:"sm",onClick:p},C.createElement(ln,null)),C.createElement(gn,{ownerState:n,variant:"plain",color:"neutral",onClick:s},y),C.createElement(E,{size:"sm",onClick:u},C.createElement(sn,null))),m==="day"&&C.createElement(yn,{ownerState:n}),m==="month"&&C.createElement(xn,{ownerState:n}))});Ce.displayName="Calendar";var ee=Ce;import{Card as vn,CardContent as Dn,CardCover as Mn,CardActions as kn,CardOverflow as Tn}from"@mui/joy";import{motion as be}from"framer-motion";var Pn=be(vn),ye=Pn;ye.displayName="Card";var wn=be(Dn),po=wn;po.displayName="CardContent";var Fn=be(Mn),co=Fn;co.displayName="CardCover";var An=be(kn),uo=An;uo.displayName="CardActions";var In=be(Tn),go=In;go.displayName="CardOverflow";import Bn from"react";import{Checkbox as Nn}from"@mui/joy";import{motion as Ln}from"framer-motion";var Sn=Ln(Nn),xe=e=>Bn.createElement(Sn,{...e});xe.displayName="Checkbox";var ve=xe;import{styled as Hn}from"@mui/joy";import zn,{forwardRef as En}from"react";var On=Hn("div",{name:"Container",slot:"root",shouldForwardProp:e=>e!=="maxWidth"})(({theme:e,maxWidth:o="lg"})=>({width:"100%",marginLeft:"auto",boxSizing:"border-box",marginRight:"auto",display:"block",paddingLeft:e.spacing(2),paddingRight:e.spacing(2),...o==="sm"&&{[e.breakpoints.up("xs")]:{maxWidth:e.breakpoints.values.sm}},...o==="md"&&{[e.breakpoints.up("sm")]:{maxWidth:e.breakpoints.values.md}},...o==="lg"&&{[e.breakpoints.up("md")]:{maxWidth:e.breakpoints.values.lg}},...o==="xl"&&{[e.breakpoints.up("lg")]:{maxWidth:e.breakpoints.values.xl}}})),fo=En(function(o,r){return zn.createElement(On,{ref:r,...o})});fo.displayName="Container";import G,{useCallback as $n,useState as xt}from"react";import{IntlMessageFormat as Wn}from"intl-messageformat";import{NumericFormat as qn}from"react-number-format";import Gn from"@mui/icons-material/esm/InfoOutlined.js";import De from"react";import{Input as Vn}from"@mui/joy";import{motion as Jn}from"framer-motion";var bt=Jn(Vn),Me=e=>{let{label:o,helperText:r,error:n,style:i,size:a,color:t,disabled:l,required:s,...d}=e;return o?De.createElement(F,{required:s,color:t,size:a,error:n,disabled:l},De.createElement(S,null,o),De.createElement(bt,{...d}),r&&De.createElement(w,null,r)):De.createElement(bt,{required:s,color:t,size:a,disabled:l,...d})};Me.displayName="Input";var U=Me;import Yn from"intl-messageformat";var yt=(e="usd")=>{let[o,r,n]=new Yn(`{amount, number, ::currency/${e} unit-width-narrow}`).format({amount:1e3}).toString().replace(/\d/g,"").split("");return{symbol:`${o} `,thousandSeparator:r,decimalSeparator:n,placeholder:n?`${o} 0${n}00`:`${o} 0`,fixedDecimalScale:!!n}};var Un=G.forwardRef(function(o,r){let{onChange:n,...i}=o;return G.createElement(qn,{...i,onValueChange:({floatValue:a})=>{n?.({target:{name:o.name,value:a?.toString()}})},valueIsNumericString:!0,getInputRef:r,decimalScale:2})}),vt=G.forwardRef(function(o,r){let{currency:n="usd",max:i=1e5,name:a,onChange:t,label:l,error:s,helperText:d,required:m,disabled:c,...b}=o,{symbol:f,thousandSeparator:y,decimalSeparator:p,placeholder:u,fixedDecimalScale:k}=yt(n),[v,D]=xt(o.value),[h,x]=xt(!!i&&!!o.value&&o.value>i),H=$n($=>{let X=Number($.target.value);D(X),t?.({...$,target:{name:a,value:X}}),i&&X>i?x(!0):x(!1)},[]),M=G.createElement(U,{...b,size:"sm",ref:r,value:v,placeholder:u,onChange:H,disabled:c,required:m,slotProps:{input:{component:Un,decimalSeparator:p,thousandSeparator:y,prefix:f,fixedDecimalScale:k}},sx:{fontFamily:"monospace"}});return l?G.createElement(F,{size:"sm",disabled:c,required:m,error:s||h},G.createElement(S,null,l),M,h?G.createElement(w,null,G.createElement(Gn,null),new Wn(`limit: {amount, number, ::currency/${n} unit-width-narrow}`).format({amount:i})):d&&G.createElement(w,null,d)):M});import g,{useCallback as oe,useEffect as bo,useMemo as te,useRef as Qn,useState as Rn}from"react";import{styled as Kn,LinearProgress as ea}from"@mui/joy";import oa from"@mui/icons-material/esm/ChevronLeft.js";import ta from"@mui/icons-material/esm/ChevronRight.js";import{Sheet as jn}from"@mui/joy";import{motion as _n}from"framer-motion";var Zn=_n(jn),ke=Zn;ke.displayName="Sheet";var j=ke;import Y from"react";import{Table as Xn}from"@mui/joy";var Te=e=>{let{children:o,...r}=e;return Y.createElement(Xn,{...r},o)};Te.displayName="Table";function ho(e){let{headCells:o,showCheckbox:r,onCheckboxChange:n,slots:{checkbox:i=ve}={},slotProps:{checkbox:a={}}={}}=e;return Y.createElement("thead",null,Y.createElement("tr",null,r&&Y.createElement("th",{style:{width:"40px",textAlign:"center"}},Y.createElement(i,{onChange:n,...a})),o.map(t=>Y.createElement("th",{key:t.label,style:{width:t.width,minWidth:t.minWidth,maxWidth:t.maxWidth,textAlign:t.numeric?"right":"left"}},t.label))))}ho.displayName="TableHead";function Co(e){let{rows:o,cellOrder:r,rowOptions:n,showCheckbox:i,onCheckboxChange:a,slots:{checkbox:t=ve}={},slotProps:{checkbox:l={}}={}}=e;return Y.createElement("tbody",null,o.map((s,d)=>Y.createElement("tr",{key:d},i&&Y.createElement("td",{style:{textAlign:"center"}},Y.createElement(t,{onChange:m=>a?.(m,d),...l})),r.map(m=>Y.createElement("td",{key:m,style:{textAlign:n?.[m]?.numeric?"right":"left"}},s[m])))))}Co.displayName="TableBody";var Dt=Kn("tr",{name:"DataTable",slot:"overlayWrapper"})({position:"sticky",top:"calc(var(--unstable_TableCell-height, 32px))",left:0,right:0,zIndex:1,"& > td":{height:0,padding:0,border:"none !important"}}),Ge=e=>"Intl"in window?new Intl.NumberFormat().format(e):e;function ra(e){let{paginationModel:{page:o,pageSize:r},rowCount:n,onPageChange:i}=e,a=1,t=Math.ceil(n/r),l=[o-2,o-1].filter(c=>c>1),s=[o+1,o+2].filter(c=>c<=t-1),d=t>1&&o<t-3,m=t>1&&o>4;return g.createElement(z,{direction:"row",spacing:1,sx:{pt:1,pb:1},justifyContent:"end",alignItems:"center"},g.createElement(z,{direction:"row",spacing:.5,alignItems:"center"},g.createElement(E,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(o-1),disabled:o===a,"aria-label":"Previous page"},g.createElement(oa,null)),o!==a&&g.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(a)},a),m&&g.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(o-3)},"..."),l.map(c=>g.createElement(T,{key:c,size:"sm",variant:"plain",color:"neutral",onClick:()=>i(c)},c)),g.createElement(T,{variant:"soft",size:"sm"},o),s.map(c=>g.createElement(T,{key:c,size:"sm",variant:"plain",color:"neutral",onClick:()=>i(c)},c)),d&&g.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(o+3)},"..."),o!==t&&g.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(t)},t),g.createElement(E,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(o+1),disabled:o===t,"aria-label":"Next page"},g.createElement(ta,null))))}var na=e=>g.createElement(Je,{sx:{position:"absolute",top:0,right:0,bottom:0,width:"4px",cursor:"col-resize"},onMouseDown:o=>{let r=o.clientX,n=e.current?.getBoundingClientRect().width,i=t=>{n&&r&&(e.current.style.width=`${n+(t.clientX-r)}px`)},a=()=>{document.removeEventListener("mousemove",i),document.removeEventListener("mouseup",a)};document.addEventListener("mousemove",i),document.addEventListener("mouseup",a)}}),aa=e=>{let o=Qn(null),r={width:e.width,minWidth:e.minWidth??"50px",maxWidth:e.maxWidth,textAlign:e.type==="number"?"end":"start",position:e.stickyHeader?void 0:"relative"},n=e.resizable??!0?na(o):null;return g.createElement("th",{ref:o,key:e.field,style:r},e.headerName??e.field,n)};function ia({rows:e,columns:o,rowCount:r,paginationMode:n,paginationModel:i,onPaginationModelChange:a,selectionModel:t=[],onSelectionModelChange:l,getId:s,isTotalSelected:d}){let[m,c]=Rn(i?.page||1),b=i?.pageSize||20,f=oe((h,x)=>s?.(h)??h?.id??`${(x||0)+(m-1)*b}`,[s??m,b]),y=te(()=>new Set(t),[t]),p=te(()=>n==="server"?e:e.slice((m-1)*b,(m-1)*b+b),[e,m,b,n]),u=te(()=>p.length>0&&p.every((h,x)=>y.has(f(h,x))),[p,y,m,b,f]),k=r||e.length,v=te(()=>d??(k>0&&t.length===k),[d,t,k]),D=oe(h=>{c(h),a?.({page:h,pageSize:b})},[a]);return bo(()=>{D(1)},[k]),bo(()=>{m>Math.ceil(k/b)&&D(Math.ceil(k/b))},[k,b]),bo(()=>{l?.([])},[m]),{rowCount:k,page:m,pageSize:b,onPaginationModelChange:D,getId:f,HeadCell:aa,dataInPage:p,isAllSelected:u,isTotalSelected:v,isSelectedRow:oe(h=>y.has(h),[y]),onAllCheckboxChange:oe(()=>{l?.(u?[]:p.map(f))},[u,p,l]),onCheckboxChange:oe((h,x)=>{if(y.has(x)){let H=t.filter(M=>M!==x);l?.(H)}else{let H=[...t,x];l?.(H)}},[t,l]),columns:te(()=>o||Object.keys(e[0]||{}).map(h=>({field:h})),[e,o]),onTotalSelect:oe(()=>{l?.(v?[]:e.map(f),!v)},[v,e,l])}}function yo(e){let{rows:o,checkboxSelection:r,selectionModel:n,onSelectionModelChange:i,rowCount:a,columns:t,onPaginationModelChange:l,paginationMode:s,paginationModel:d,loading:m,slots:{checkbox:c=ve,toolbar:b,footer:f,loadingOverlay:y=()=>g.createElement(ea,{value:8,variant:"plain"})}={},slotProps:{checkbox:p={},toolbar:u,background:k={}}={},...v}=e,{columns:D,isAllSelected:h,isSelectedRow:x,onAllCheckboxChange:H,onCheckboxChange:M,getId:$,rowCount:X,page:Xo,pageSize:Qo,onPaginationModelChange:Wt,dataInPage:qt,isTotalSelected:Ro,onTotalSelect:Ko,HeadCell:Gt}=ia(e);return g.createElement(Je,null,g.createElement(z,{direction:"row",sx:{pt:1,pb:1},justifyContent:"space-between",alignItems:"center"},!!r&&g.createElement(z,{direction:"row",spacing:1},!h&&g.createElement(L,{level:"body-xs"},Ge(n?.length||0)," items selected"),h&&!Ro&&g.createElement(z,{direction:"row",spacing:1,alignItems:"center"},g.createElement(L,{level:"body-xs"},"All ",Ge(n?.length||0)," items on this page are selected."),g.createElement(T,{size:"sm",variant:"plain",onClick:Ko},"Select all ",Ge(X??o.length)," items")),Ro&&g.createElement(z,{direction:"row",spacing:1,alignItems:"center"},g.createElement(L,{level:"body-xs"},"All ",Ge(X??o.length)," items are selected."),g.createElement(T,{size:"sm",variant:"plain",color:"danger",onClick:Ko},"Cancel"))),b&&g.createElement(b,{...u||{}})),g.createElement(j,{variant:"outlined",sx:{overflow:"auto",width:"100%",boxShadow:"sm",borderRadius:"sm"},...k},g.createElement(Te,{...v},g.createElement("thead",null,g.createElement("tr",null,r&&g.createElement("th",{style:{width:"40px",textAlign:"center"}},g.createElement(c,{onChange:H,checked:h,indeterminate:(n||[]).length>0&&!h,...p})),D.map(Q=>g.createElement(Gt,{key:Q.field,stickyHeader:e.stickyHeader,...Q})))),g.createElement("tbody",null,g.createElement(Dt,null,!!m&&g.createElement("td",null,g.createElement(Je,{sx:{position:"absolute",top:0,left:0,right:0}},g.createElement(y,null)))),g.createElement(Dt,null),qt.map((Q,Ut)=>{let R=$(Q,Ut);return g.createElement("tr",{key:R,role:r?"checkbox":void 0,tabIndex:r?-1:void 0,onClick:r?W=>M(W,R):void 0,"aria-checked":r?x(R):void 0},r&&g.createElement("th",{scope:"row",style:{textAlign:"center"}},g.createElement(c,{onChange:W=>M(W,R),checked:x(R),...p})),D.map(W=>g.createElement("td",{key:W.field,style:{textAlign:W.type==="number"?"end":"start"}},W.renderCell?.({row:Q,value:Q[W.field],id:R})??Q[W.field])))})),f&&g.createElement(f,null))),g.createElement(ra,{paginationModel:te(()=>({page:Xo,pageSize:Qo}),[Xo,Qo]),rowCount:X,onPageChange:Wt}))}yo.displayName="DataTable";import I,{forwardRef as ca,useCallback as Mt,useEffect as ua,useState as kt}from"react";import{IMaskInput as ga,IMask as xo}from"react-imask";import fa from"@mui/icons-material/esm/CalendarToday.js";import{styled as Tt}from"@mui/joy";import{FocusTrap as ha,ClickAwayListener as Ca,Popper as ba}from"@mui/base";import{DialogActions as la,styled as sa}from"@mui/joy";import{motion as ma}from"framer-motion";var da=ma(la),pa=sa(da)(({theme:e})=>({padding:e.spacing(1),gap:e.spacing(1),flexDirection:"row",justifyContent:"flex-end"})),Pe=pa;Pe.displayName="DialogActions";var _=Pe;var ya=Tt(ba,{name:"DatePicker",slot:"popper"})(({theme:e})=>({zIndex:e.zIndex.tooltip})),xa=Tt(j,{name:"DatePicker",slot:"sheet",overridesResolver:(e,o)=>o.root})(({theme:e})=>({width:"264px",boxShadow:e.shadow.md,borderRadius:e.radius.md})),Pt=e=>{let o=`${e.getDate()}`,r=`${e.getMonth()+1}`,n=e.getFullYear();return Number(o)<10&&(o="0"+o),Number(r)<10&&(r="0"+r),[n,r,o].join("/")},va=I.forwardRef(function(o,r){let{onChange:n,...i}=o;return I.createElement(ga,{...i,inputRef:r,onAccept:a=>n({target:{name:o.name,value:a}}),mask:Date,pattern:"Y/`m/`d",blocks:{d:{mask:xo.MaskedRange,from:1,to:31,maxLength:2},m:{mask:xo.MaskedRange,from:1,to:12,maxLength:2},Y:{mask:xo.MaskedRange,from:1900,to:9999}},format:Pt,parse:a=>{let t=a.split("/");return new Date(Number(t[0]),Number(t[1])-1,Number(t[2]))},autofix:"pad",overwrite:!0})}),vo=ca((e,o)=>{let{onChange:r,disabled:n,label:i,error:a,helperText:t,minDate:l,maxDate:s,disableFuture:d,disablePast:m,required:c,...b}=e,[f,y]=kt(e.value||""),[p,u]=kt(null),k=!!p;ua(()=>{y(e.value||"")},[e.value]);let v=Mt(x=>{y(x.target.value),r?.(x)},[]),D=Mt(x=>{u(p?null:x.currentTarget)},[p,u]),h=I.createElement(I.Fragment,null,I.createElement(U,{...b,ref:o,size:"sm",value:f,onChange:v,placeholder:"YYYY/MM/DD",disabled:n,required:c,slotProps:{input:{component:va}},sx:{fontFamily:"monospace"},endDecorator:I.createElement(E,{variant:"plain",onClick:D},I.createElement(fa,null))}),k&&I.createElement(Ca,{onClickAway:()=>u(null)},I.createElement(ya,{id:"date-picker-popper",open:!0,anchorEl:p,placement:"bottom-end",modifiers:[{name:"offset",options:{offset:[4,4]}}]},I.createElement(ha,{open:!0},I.createElement(xa,{tabIndex:-1,role:"presentation"},I.createElement(ee,{value:Number.isNaN(new Date(f).getTime())?void 0:[new Date(f),void 0],onChange:([x])=>{y(Pt(x)),u(null)},minDate:l?new Date(l):void 0,maxDate:s?new Date(s):void 0,disableFuture:d,disablePast:m}),I.createElement(_,{sx:{p:1}},I.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>{y(""),u(null)}},"Clear")))))));return i?I.createElement(F,{required:c,disabled:n,error:a,size:"sm"},I.createElement(S,null,i),h,t&&I.createElement(w,null,t)):h});vo.displayName="DatePicker";import B,{forwardRef as Da,useCallback as Do,useEffect as Ma,useMemo as ka,useState as wt}from"react";import{IMaskInput as Ta,IMask as Mo}from"react-imask";import Pa from"@mui/icons-material/esm/CalendarToday.js";import{styled as Ft}from"@mui/joy";import{FocusTrap as wa,ClickAwayListener as Fa,Popper as Aa}from"@mui/base";var Ia=Ft(Aa,{name:"DateRangePicker",slot:"popper"})(({theme:e})=>({zIndex:e.zIndex.tooltip})),Ba=Ft(j,{name:"DateRangePicker",slot:"sheet",overridesResolver:(e,o)=>o.root})(({theme:e})=>({zIndex:e.zIndex.tooltip,width:"264px",boxShadow:e.shadow.md,borderRadius:e.radius.md})),At=([e,o])=>{let r=n=>{let i=`${n.getDate()}`,a=`${n.getMonth()+1}`,t=n.getFullYear();return Number(i)<10&&(i="0"+i),Number(a)<10&&(a="0"+a),[t,a,i].join("/")};return[r(e),o?r(o):""].join(" - ")},It=e=>{let o=e.split(" - ")[0]||"",r=e.split(" - ")[1]||"",n=o.split("/"),i=r.split("/");return[new Date(Number(n[0]),Number(n[1])-1,Number(n[2])),new Date(Number(i[0]),Number(i[1])-1,Number(i[2]))]},Na=B.forwardRef(function(o,r){let{onChange:n,...i}=o;return B.createElement(Ta,{...i,inputRef:r,onAccept:a=>n({target:{name:o.name,value:a}}),mask:Date,pattern:"Y/`m/`d - Y/`m/`d",blocks:{d:{mask:Mo.MaskedRange,from:1,to:31,maxLength:2},m:{mask:Mo.MaskedRange,from:1,to:12,maxLength:2},Y:{mask:Mo.MaskedRange,from:1900,to:9999}},format:At,parse:It,autofix:"pad",overwrite:!0})}),ko=Da((e,o)=>{let{onChange:r,disabled:n,label:i,error:a,helperText:t,minDate:l,maxDate:s,disableFuture:d,disablePast:m,required:c,...b}=e,[f,y]=wt(e.value||""),[p,u]=wt(null),k=!!p,v=ka(()=>f?It(f):void 0,[f]);Ma(()=>{y(e.value||"")},[e.value]);let D=Do(M=>{y(M.target.value),r?.(M)},[r]),h=Do(M=>{u(p?null:M.currentTarget)},[p,u]),x=Do(([M,$])=>{!M||!$||(y(At([M,$])),u(null))},[y,u]),H=B.createElement(B.Fragment,null,B.createElement(U,{...b,ref:o,size:"sm",value:f,onChange:D,disabled:n,required:c,placeholder:"YYYY/MM/DD - YYYY/MM/DD",slotProps:{input:{component:Na}},sx:{fontFamily:"monospace"},endDecorator:B.createElement(E,{variant:"plain",onClick:h},B.createElement(Pa,null))}),k&&B.createElement(Fa,{onClickAway:()=>u(null)},B.createElement(Ia,{id:"date-range-picker-popper",open:!0,anchorEl:p,placement:"bottom-end",modifiers:[{name:"offset",options:{offset:[4,4]}}]},B.createElement(wa,{open:!0},B.createElement(Ba,{tabIndex:-1,role:"presentation"},B.createElement(ee,{rangeSelection:!0,defaultValue:v,onChange:x,minDate:l?new Date(l):void 0,maxDate:s?new Date(s):void 0,disableFuture:d,disablePast:m}),B.createElement(_,{sx:{p:1}},B.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>{y(""),u(null)}},"Clear")))))));return i?B.createElement(F,{required:c,disabled:n,error:a,size:"sm"},B.createElement(S,null,i),H,t&&B.createElement(w,null,t)):H});ko.displayName="DateRangePicker";import{DialogContent as La,styled as Sa}from"@mui/joy";import{motion as Ha}from"framer-motion";var za=Ha(La),Ea=Sa(za)(({theme:e})=>({padding:e.spacing(0,3,2.5)})),we=Ea;we.displayName="DialogContent";var Ue=we;import{DialogTitle as Oa,styled as Va}from"@mui/joy";import{motion as Ja}from"framer-motion";var Ya=Ja(Oa),$a=Va(Ya)(({theme:e})=>({padding:e.spacing(2,3)})),Fe=$a;Fe.displayName="DialogTitle";var je=Fe;import Ie from"react";import _e from"react";import{Modal as Wa,ModalDialog as qa,ModalClose as Ga,ModalOverflow as Ua,styled as Bt}from"@mui/joy";import{motion as Ze}from"framer-motion";var ja=Ze(Wa),To=ja;To.displayName="Modal";var _a=Ze(qa),Nt=Bt(_a)({padding:0}),Ae=Nt;Ae.displayName="ModalDialog";var Za=Bt(Ze(Ga))(({theme:e})=>({top:e.spacing(1.5),right:e.spacing(3)})),Xe=Za;Xe.displayName="ModalClose";var Xa=Ze(Ua),Po=Xa;Po.displayName="ModalOverflow";function wo(e){let{title:o,children:r,...n}=e;return _e.createElement(Nt,{...n},_e.createElement(Xe,null),_e.createElement(je,null,o),_e.createElement(Ue,null,r))}wo.displayName="ModalFrame";import{styled as Qa}from"@mui/joy";var Ra=Qa(Ae)(({theme:e})=>({padding:0})),Fo=Ie.forwardRef((e,o)=>{let{title:r,children:n,actions:i,...a}=e;return Ie.createElement(Ra,{ref:o,...a},Ie.createElement(je,null,r),Ie.createElement(Ue,null,n),Ie.createElement(_,null,i))});Fo.displayName="DialogFrame";import Ka from"react";import{Divider as ei}from"@mui/joy";import{motion as oi}from"framer-motion";var ti=oi(ei),Be=e=>Ka.createElement(ti,{...e});Be.displayName="Divider";import ri from"react";import{Drawer as ni}from"@mui/joy";import{motion as ai}from"framer-motion";var ii=ai(ni),Ao=e=>{let{children:o,...r}=e;return ri.createElement(ii,{...r,slotProps:{...r.slotProps,content:{...r.slotProps?.content,sx:{bgcolor:"transparent",p:{md:3,sm:0},boxShadow:"none"}}}},o)};Ao.displayName="InsetDrawer";import P,{useCallback as Qe,useEffect as li,useRef as Lt,useState as Io}from"react";import{styled as re}from"@mui/joy";import si from"@mui/icons-material/esm/Delete.js";import{combine as mi}from"@atlaskit/pragmatic-drag-and-drop/combine";import{dropTargetForExternal as di,monitorForExternal as pi}from"@atlaskit/pragmatic-drag-and-drop/external/adapter";import{containsFiles as St,getFiles as ci}from"@atlaskit/pragmatic-drag-and-drop/external/file";import{preventUnhandled as Ht}from"@atlaskit/pragmatic-drag-and-drop/prevent-unhandled";var ui=re("input")({width:"1px",height:"1px",overflow:"hidden",whiteSpace:"nowrap",clip:"rect(0 0 0 0)",clipPath:"inset(50%)",position:"absolute"}),gi=re("div",{name:"FileUpload",slot:"PreviewRoot"})(({theme:e})=>({display:"grid",gridTemplateColumns:"repeat(auto-fill, minmax(300px, auto))",gap:"8px"})),fi=e=>{let{files:o,onDelete:r}=e;return P.createElement(gi,null,o.map(n=>P.createElement(ye,{key:n.name},P.createElement(z,{style:{aspectRatio:"4/3",height:"200px"},alignItems:"center",justifyContent:"center"},n.type.startsWith("image/")?P.createElement("img",{style:{width:"100%",height:"100%",objectFit:"cover"},src:URL.createObjectURL(n),alt:n.name}):P.createElement(L,{level:"title-md",textColor:"neutral.400"},n.type)),P.createElement(z,{direction:"row",justifyContent:"space-between",gap:"8px"},P.createElement(z,null,P.createElement(L,{level:"title-sm",textColor:"common.black"},n.name),P.createElement(L,{level:"body-sm",textColor:"neutral.600"},(n.size/1e3).toFixed(2),"KB")),P.createElement(E,{onClick:()=>r?.(n)},P.createElement(si,null))))))},hi=re(z,{name:"FileUpload",slot:"root"})(({theme:e})=>({gap:e.spacing(1)})),Ci=re("label",{name:"FileUpload",slot:"label"})({}),bi=re("div",{name:"FileUpload",slot:"dropZone"})(({theme:e,state:o})=>({width:"100%",backgroundColor:o==="over"?e.palette.background.level2:e.palette.background.backdrop,display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",padding:e.spacing(3),gap:e.spacing(2),border:o==="idle"?"2px solid rgba(0,0,0,0)":`2px dashed ${e.palette.primary[400]}`})),yi=re(T,{name:"FileUpload",slot:"button"})({}),Bo=P.memo(e=>{let{accept:o,maxCount:r,name:n,maxTotalSize:i,maxSizePerFile:a,onChange:t}=e,l=Lt(null),s=Lt(null),[d,m]=Io([]),[c,b]=Io("idle"),[f,y]=Io(),p=Qe(D=>{try{a&&D.forEach(x=>{if(x.size>a)throw new Error(`File size exceeds the limit: ${a}`)});let h=[...d,...D];if(r&&h.length>r)throw new Error(`File count exceeds the limit: ${r}`);if(i&&h.reduce((x,H)=>x+H.size,0)>i)throw new Error(`Total file size exceeds the limit: ${i}`);t?.({target:{name:n,value:h}}),y(void 0),m(h)}catch(h){y(h.message)}},[d]);li(()=>{let D=l.current;if(!D)throw new Error("Drop zone ref is not set");return mi(di({element:D,canDrop:St,onDragEnter:()=>b("over"),onDragLeave:()=>b("potential"),onDrop:async({source:h})=>{let x=await ci({source:h});p(x)}}),pi({canMonitor:St,onDragStart:()=>{b("potential"),Ht.start()},onDrop:()=>{b("idle"),Ht.stop()}}))});let u=Qe(D=>{let h=Array.from(D.target.files||[]);p(h)},[p]),k=Qe(D=>{m(h=>(t?.({target:{name:n,value:h.filter(x=>x!==D)}}),h.filter(x=>x!==D)))},[]),v=Qe(()=>{s.current?.click()},[]);return P.createElement(hi,null,P.createElement(F,{error:!!f},P.createElement(bi,{state:c,ref:l},P.createElement(Ci,null,P.createElement(L,{level:"h3",textColor:"background.tooltip"},"Drop files"),P.createElement(ui,{type:"file",onChange:u,multiple:!0,accept:o,ref:s})),P.createElement(yi,{variant:"soft",color:"neutral",onClick:v},"Select Files"),f&&P.createElement(w,null,f))),P.createElement(fi,{files:d,onDelete:k}))});Bo.displayName="FileUpload";import{Grid as xi}from"@mui/joy";import{motion as vi}from"framer-motion";var Di=vi(xi),No=Di;No.displayName="Grid";import Z from"react";import Mi from"react-markdown";import{Link as ki}from"@mui/joy";var Lo=e=>{let{...o}=e;return Z.createElement(Mi,{...o,components:{h1:({children:r})=>Z.createElement(V,{level:"h1"},r),h2:({children:r})=>Z.createElement(V,{level:"h2"},r),h3:({children:r})=>Z.createElement(V,{level:"h3"},r),h4:({children:r})=>Z.createElement(V,{level:"h4"},r),p:({children:r})=>Z.createElement(V,null,r),a:({children:r,href:n})=>Z.createElement(ki,{href:n},r),hr:()=>Z.createElement(Be,null),...o?.components}})};Lo.displayName="Markdown";import N,{forwardRef as Ti,useCallback as So,useEffect as Pi,useMemo as wi,useState as zt}from"react";import{IMaskInput as Fi,IMask as Et}from"react-imask";import Ai from"@mui/icons-material/esm/CalendarToday.js";import{styled as Ot}from"@mui/joy";import{FocusTrap as Ii,ClickAwayListener as Bi,Popper as Ni}from"@mui/base";var Li=Ot(Ni,{name:"MonthRangePicker",slot:"popper"})(({theme:e})=>({zIndex:e.zIndex.tooltip})),Si=Ot(j,{name:"MonthRangePicker",slot:"sheet",overridesResolver:(e,o)=>o.root})(({theme:e})=>({zIndex:e.zIndex.tooltip,width:"264px",boxShadow:e.shadow.md,borderRadius:e.radius.md})),Ho=e=>{let o=`${e.getMonth()+1}`,r=e.getFullYear();return Number(o)<10&&(o="0"+o),[r,o].join("/")},zo=([e,o])=>{let r=n=>{if(!/^\d\d\d\d\/(0[1-9]|1[012])(\/(0[1-9]|[23][0-9]))?$/.test(n))return n;let i=n.split("/"),a=new Date(Number(i[0]),Number(i[1])-1);return Ho(a)};return[r(e),r(o)].join(" - ")},Eo=e=>{let o=e.split(" - ")[0]||"",r=e.split(" - ")[1]||"";return[o,r]},Hi=N.forwardRef(function(o,r){let{onChange:n,...i}=o;return N.createElement(Fi,{...i,inputRef:r,onAccept:a=>n({target:{name:o.name,value:a}}),mask:Date,pattern:"Y/m - Y/m",blocks:{m:{mask:Et.MaskedRange,from:1,to:12,maxLength:2},Y:{mask:Et.MaskedRange,from:1900,to:9999}},format:zo,parse:Eo})}),Oo=Ti((e,o)=>{let{onChange:r,disabled:n,label:i,error:a,helperText:t,minDate:l,maxDate:s,disableFuture:d,disablePast:m,required:c,...b}=e,[f,y]=zt(""),[p,u]=zt(null),k=!!p,v=wi(()=>f?Eo(f).map(M=>new Date(M)):void 0,[f]);Pi(()=>{y(e.value?zo(Eo(e.value)):"")},[e.value]);let D=So(M=>{y(M.target.value),r?.(M)},[r]),h=So(M=>{u(p?null:M.currentTarget)},[p,u]),x=So(([M,$])=>{!M||!$||(y(zo([Ho(M),Ho($)])),u(null))},[y,u]),H=N.createElement(N.Fragment,null,N.createElement(U,{...b,ref:o,size:"sm",value:f,onChange:D,disabled:n,required:c,placeholder:"YYYY/MM - YYYY/MM",slotProps:{input:{component:Hi}},sx:{fontFamily:"monospace"},endDecorator:N.createElement(E,{variant:"plain",onClick:h},N.createElement(Ai,null))}),k&&N.createElement(Bi,{onClickAway:()=>u(null)},N.createElement(Li,{id:"date-range-picker-popper",open:!0,anchorEl:p,placement:"bottom-end",modifiers:[{name:"offset",options:{offset:[4,4]}}]},N.createElement(Ii,{open:!0},N.createElement(Si,{tabIndex:-1,role:"presentation"},N.createElement(ee,{view:"month",views:["month"],rangeSelection:!0,defaultValue:v,onChange:x,minDate:l?new Date(l):void 0,maxDate:s?new Date(s):void 0,disableFuture:d,disablePast:m}),N.createElement(_,{sx:{p:1}},N.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>{y(""),u(null)}},"Clear")))))));return i?N.createElement(F,{required:c,disabled:n,error:a,size:"sm"},N.createElement(S,null,i),H,t&&N.createElement(w,null,t)):H});Oo.displayName="MonthRangePicker";import{Radio as zi,RadioGroup as Ei}from"@mui/joy";import{motion as Vt}from"framer-motion";var Oi=Vt(zi),Ne=Oi;Ne.displayName="Radio";var Vi=Vt(Ei),Le=Vi;Le.displayName="RadioGroup";import Jt from"react";function Vo(e){let{items:o,...r}=e;return Jt.createElement(Le,{...r},o.map(n=>Jt.createElement(Ne,{key:`${n.value}`,value:n.value,label:n.label})))}Vo.displayName="RadioList";import Re from"react";import{Select as Ji,Option as Yi}from"@mui/joy";import{motion as $i}from"framer-motion";var Wi=$i(Yi),Jo=Wi;Jo.displayName="Option";function Yo(e){let{label:o,helperText:r,error:n,size:i,color:a,disabled:t,required:l,onChange:s,...d}=e,c=Re.createElement(Ji,{...d,required:l,disabled:t,size:i,color:a,onChange:(b,f)=>{let y=b||{target:{}},p={...y,target:{name:y.target?.name||e.name,value:f||void 0}};s?.(p)}});return o?Re.createElement(F,{required:l,disabled:t,size:i,color:a,error:n},Re.createElement(S,null,o),c,r&&Re.createElement(w,null,r)):c}Yo.displayName="Select";import Yt from"react";import{Switch as qi,styled as Gi,switchClasses as Ui}from"@mui/joy";import{motion as $t}from"framer-motion";var ji=$t(qi),_i=Gi($t.div)({"--Icon-fontSize":"calc(var(--Switch-thumbSize) * 0.75)",display:"inline-flex",justifyContent:"center",alignItems:"center",position:"absolute",left:"var(--Switch-thumbOffset)",width:"var(--Switch-thumbWidth)",height:"var(--Switch-thumbSize)",borderRadius:"var(--Switch-thumbRadius)",boxShadow:"var(--Switch-thumbShadow)",color:"var(--Switch-thumbColor)",backgroundColor:"var(--Switch-thumbBackground)",[`&.${Ui.checked}`]:{left:"unset",right:"var(--Switch-thumbOffset)"}}),Zi=e=>Yt.createElement(_i,{...e,layout:!0,transition:Xi}),Xi={type:"spring",stiffness:700,damping:30},$o=e=>Yt.createElement(ji,{...e,slots:{thumb:Zi,...e.slots}});$o.displayName="Switch";import{Tabs as Qi,Tab as Ri,TabList as Ki,TabPanel as el,styled as ol,tabClasses as tl}from"@mui/joy";import{motion as Ke}from"framer-motion";var rl=Ke(Qi),Wo=rl;Wo.displayName="Tabs";var nl=ol(Ke(Ri))(({theme:e})=>({[`&:not(.${tl.selected})`]:{color:e.palette.neutral[700]}})),qo=nl;qo.displayName="Tab";var al=Ke(Ki),Go=al;Go.displayName="TabList";var il=Ke(el),Uo=il;Uo.displayName="TabPanel";import eo from"react";import{Textarea as ll}from"@mui/joy";import{motion as sl}from"framer-motion";var ml=sl(ll),jo=e=>{let{label:o,error:r,helperText:n,color:i,size:a,disabled:t,required:l,...s}=e,d=eo.createElement(ml,{required:l,disabled:t,color:i,size:a,...s});return o?eo.createElement(F,{required:l,disabled:t,color:i,size:a,error:r},eo.createElement(S,null,o),d,n&&eo.createElement(w,null,n)):d};jo.displayName="Textarea";import oo from"react";import{CssBaseline as dl,CssVarsProvider as pl,checkboxClasses as cl,extendTheme as ul}from"@mui/joy";var gl=ul({cssVarPrefix:"ceed",components:{JoyTable:{defaultProps:{size:"sm",borderAxis:"bothBetween"},styleOverrides:{root:({theme:e})=>({"--TableRow-stripeBackground":e.palette.background.level1,"--TableCell-selectedBackground":e.palette.background.level2,"--TableRow-hoverBackground":e.palette.background.level3,"& tbody tr[aria-checked=false] th":{"--TableCell-headBackground":"transparent"},"& tbody tr[aria-checked=true]:hover th":{"--TableCell-headBackground":"var(--TableRow-hoverBackground)"},"& tbody tr[aria-checked=true]:not(:hover) th":{"--TableCell-headBackground":"var(--TableCell-selectedBackground)"},"& tbody tr[aria-checked=true]:not(:hover) td":{"--TableCell-dataBackground":"var(--TableCell-selectedBackground)"},[`& .${cl.root}`]:{verticalAlign:"middle"}})}},JoyTooltip:{defaultProps:{size:"sm",placement:"top"}}}});function _o(e){return oo.createElement(oo.Fragment,null,oo.createElement(pl,{theme:gl},oo.createElement(dl,null),e.children))}_o.displayName="ThemeProvider";import fl from"react";import{Tooltip as hl}from"@mui/joy";import{motion as Cl}from"framer-motion";var bl=Cl(hl),Zo=e=>fl.createElement(bl,{...e});Zo.displayName="Tooltip";export{Ee as Accordion,ze as AccordionDetails,He as AccordionSummary,to as Accordions,ro as Alert,Hf as AspectRatio,no as Autocomplete,Pf as AutocompleteListbox,wf as AutocompleteOption,Bf as Avatar,Lf as AvatarGroup,Ef as Badge,me as Box,lo as Breadcrumbs,ge as Button,Ce as Calendar,ye as Card,uo as CardActions,po as CardContent,co as CardCover,go as CardOverflow,xe as Checkbox,Gf as Chip,jf as CircularProgress,fo as Container,vt as CurrencyInput,yo as DataTable,vo as DatePicker,ko as DateRangePicker,Pe as DialogActions,we as DialogContent,Fo as DialogFrame,Fe as DialogTitle,Be as Divider,Zf as Drawer,ue as Dropdown,Bo as FileUpload,ie as FormControl,se as FormHelperText,le as FormLabel,No as Grid,fe as IconButton,Me as Input,Ao as InsetDrawer,Qf as LinearProgress,uh as Link,Kf as List,oh as ListDivider,rh as ListItem,ah as ListItemButton,lh as ListItemContent,mh as ListItemDecorator,ph as ListSubheader,Lo as Markdown,de as Menu,pe as MenuButton,ce as MenuItem,To as Modal,Xe as ModalClose,Ae as ModalDialog,wo as ModalFrame,Po as ModalOverflow,Oo as MonthRangePicker,Jo as Option,Ne as Radio,Le as RadioGroup,Vo as RadioList,Yo as Select,ke as Sheet,kh as Skeleton,fh as Slider,ae as Stack,Ch as Step,yh as StepButton,vh as StepIndicator,Dh as Stepper,$o as Switch,qo as Tab,Go as TabList,Uo as TabPanel,Te as Table,Co as TableBody,ho as TableHead,Wo as Tabs,jo as Textarea,_o as ThemeProvider,Zo as Tooltip,V as Typography,Df as accordionClasses,Mf as accordionDetailsClasses,Tf as accordionSummaryClasses,kf as accordionsClasses,Jg as alertClasses,zf as aspectRatioClasses,Ff as autocompleteClasses,Af as autocompleteListboxClasses,If as autocompleteOptionClasses,Nf as avatarClasses,Sf as avatarGroupClasses,Of as badgeClasses,Yg as boxClasses,Vf as breadcrumbsClasses,$g as buttonClasses,Yf as cardActionsClasses,Jf as cardClasses,$f as cardContentClasses,Wf as cardCoverClasses,qf as cardOverflowClasses,Wg as checkboxClasses,Uf as chipClasses,_f as circularProgressClasses,Cf as dialogActionsClasses,hf as dialogContentClasses,ff as dialogTitleClasses,qg as dividerClasses,Xf as drawerClasses,nf as formControlClasses,lf as formHelperTextClasses,af as formLabelClasses,sf as gridClasses,Gg as iconButtonClasses,Ug as inputClasses,Rf as linearProgressClasses,gh as linkClasses,eh as listClasses,th as listDividerClasses,ih as listItemButtonClasses,nh as listItemClasses,sh as listItemContentClasses,dh as listItemDecoratorClasses,ch as listSubheaderClasses,_g as menuButtonClasses,jg as menuClasses,Zg as menuItemClasses,pf as modalClasses,cf as modalCloseClasses,uf as modalDialogClasses,gf as modalOverflowClasses,Xg as optionClasses,Qg as radioClasses,Rg as radioGroupClasses,Kg as selectClasses,df as sheetClasses,Th as skeletonClasses,hh as sliderClasses,mf as stackClasses,xh as stepButtonClasses,bh as stepClasses,Mh as stepperClasses,ef as switchClasses,xf as tabListClasses,vf as tabPanelClasses,of as tableClasses,yf as tabsClasses,tf as textareaClasses,bf as tooltipClasses,rf as typographyClasses,Og as useColorScheme,Eg as useTheme,Vg as useThemeProps};
|
|
1
|
+
import{useTheme as Vg,useColorScheme as Jg,useThemeProps as Yg,alertClasses as $g,boxClasses as Wg,buttonClasses as qg,checkboxClasses as Gg,dividerClasses as Ug,iconButtonClasses as jg,inputClasses as _g,menuClasses as Zg,menuButtonClasses as Xg,menuItemClasses as Qg,optionClasses as Rg,radioClasses as Kg,radioGroupClasses as ef,selectClasses as of,switchClasses as tf,tableClasses as rf,textareaClasses as nf,typographyClasses as af,formControlClasses as lf,formLabelClasses as sf,formHelperTextClasses as mf,gridClasses as df,stackClasses as pf,sheetClasses as cf,modalClasses as uf,modalCloseClasses as gf,modalDialogClasses as ff,modalOverflowClasses as hf,dialogTitleClasses as Cf,dialogContentClasses as bf,dialogActionsClasses as yf,tooltipClasses as xf,tabsClasses as vf,tabListClasses as Df,tabPanelClasses as Mf,accordionClasses as kf,accordionDetailsClasses as Tf,accordionGroupClasses as Pf,accordionSummaryClasses as wf,AutocompleteListbox as Ff,AutocompleteOption as Af,autocompleteClasses as If,autocompleteListboxClasses as Bf,autocompleteOptionClasses as Nf,Avatar as Lf,avatarClasses as Sf,AvatarGroup as Hf,avatarGroupClasses as zf,AspectRatio as Ef,aspectRatioClasses as Of,Badge as Vf,badgeClasses as Jf,breadcrumbsClasses as Yf,cardClasses as $f,cardActionsClasses as Wf,cardContentClasses as qf,cardCoverClasses as Gf,cardOverflowClasses as Uf,Chip as jf,chipClasses as _f,CircularProgress as Zf,circularProgressClasses as Xf,Drawer as Qf,drawerClasses as Rf,LinearProgress as Kf,linearProgressClasses as eh,List as oh,listClasses as th,ListDivider as rh,listDividerClasses as nh,ListItem as ah,listItemClasses as ih,ListItemButton as lh,listItemButtonClasses as sh,ListItemContent as mh,listItemContentClasses as dh,ListItemDecorator as ph,listItemDecoratorClasses as ch,ListSubheader as uh,listSubheaderClasses as gh,Link as fh,linkClasses as hh,Slider as Ch,sliderClasses as bh,Step as yh,stepClasses as xh,StepButton as vh,stepButtonClasses as Dh,StepIndicator as Mh,Stepper as kh,stepperClasses as Th,Skeleton as Ph,skeletonClasses as wh}from"@mui/joy";import ne from"react";import{AccordionGroup as jt,Accordion as _t,AccordionSummary as Zt,AccordionDetails as Xt}from"@mui/joy";import{motion as Se}from"framer-motion";var Qt=Se(Zt),He=Qt;He.displayName="AccordionSummary";var Rt=Se(Xt),ze=Rt;ze.displayName="AccordionDetails";var Kt=Se(_t);function Ee(e){let{summary:o,details:r,variant:n,color:i,...a}=e,t=n==="solid"?"solid":void 0;return ne.createElement(Kt,{variant:t,color:i,...a},ne.createElement(He,{variant:t,color:i},o),ne.createElement(ze,{variant:t,color:i},r))}Ee.displayName="Accordion";var er=Se(jt);function to(e){let{variant:o,color:r,items:n,...i}=e;return ne.createElement(er,{variant:o,color:r,...i},n.map((a,t)=>ne.createElement(Ee,{key:t,summary:a.summary,details:a.details,index:t,variant:o,color:r})))}to.displayName="Accordions";import Oe from"react";import{Alert as sr,styled as mr}from"@mui/joy";import{motion as dr}from"framer-motion";import or from"react";import{Typography as tr}from"@mui/joy";import{motion as rr}from"framer-motion";var nr=rr(tr),V=e=>or.createElement(nr,{...e});V.displayName="Typography";var L=V;import{Stack as ar}from"@mui/joy";import{motion as ir}from"framer-motion";var lr=ir(ar),ae=lr;ae.displayName="Stack";var z=ae;var pr=mr(dr(sr))({alignItems:"flex-start",fontWeight:"unset"});function ro(e){let{title:o,content:r,actions:n,color:i="primary",...a}=e,t=e.invertedColors||e.variant==="solid";return Oe.createElement(pr,{...a,color:i,endDecorator:n,invertedColors:t},Oe.createElement(z,null,o&&Oe.createElement(L,{level:"title-sm",color:i},o),Oe.createElement(L,{level:"body-sm",color:i},r)))}ro.displayName="Alert";import A,{useMemo as Ve,useState as Dr}from"react";import{Autocomplete as Mr,AutocompleteOption as kr,ListSubheader as Tr,AutocompleteListbox as Pr,ListItemDecorator as et,CircularProgress as wr,styled as Fr}from"@mui/joy";import{Popper as Ar}from"@mui/base";import{FixedSizeList as Ir}from"react-window";import{FormControl as cr,styled as ur}from"@mui/joy";import{motion as gr}from"framer-motion";var fr=ur(gr(cr))({width:"100%"}),ie=fr;ie.displayName="FormControl";var F=ie;import{FormLabel as hr}from"@mui/joy";import{motion as Cr}from"framer-motion";var br=Cr(hr),le=br;le.displayName="FormLabel";var S=le;import{FormHelperText as yr}from"@mui/joy";import{motion as xr}from"framer-motion";var vr=xr(yr),se=vr;se.displayName="FormHelperText";var w=se;var Br=Fr(Ar,{name:"Autocomplete",slot:"Popper"})(({theme:e})=>({zIndex:e.zIndex.tooltip}));function Nr(e){let{data:o,index:r,style:n}=e,i=o[r],a={...n},t=i.props;if(i.hasOwnProperty("group"))return A.createElement(Tr,{key:i.key,component:"li"},i.group);let l=t["data-option-index"],s=t.ownerState.options[l];return A.createElement(kr,{...t},s.startDecorator&&A.createElement(et,{sx:{marginInlineEnd:"var(--Input-gap)"}},s.startDecorator),s.label,s.endDecorator&&A.createElement(et,{sx:{marginInlineStart:"var(--Input-gap)"}},s.endDecorator))}var ot=A.createContext({}),Lr=A.forwardRef((e,o)=>{let r=A.useContext(ot);return A.createElement(Pr,{...e,...r,component:"div",ref:o,sx:{"& ul":{padding:0,margin:0,flexShrink:0}}})}),Sr=A.forwardRef(function(o,r){let{children:n,anchorEl:i,open:a,modifiers:t,...l}=o,s=[];n[0].forEach(c=>{c&&(s.push(c),s.push(...c.children||[]))});let d=s.length,m=36;return A.createElement(Br,{ref:r,anchorEl:i,open:a,modifiers:t},A.createElement(ot.Provider,{value:l},A.createElement(Ir,{itemData:s,height:m*8,width:"100%",outerElementType:Lr,innerElementType:"ul",itemSize:m,overscanCount:5,itemCount:d},Nr)))});function no(e){let{label:o,error:r,helperText:n,color:i,size:a,disabled:t,required:l,onChange:s,...d}=e,[m,c]=Dr(e.value||e.defaultValue),b=Ve(()=>e.options.map(v=>typeof v!="object"?{value:v,label:v}:v),[e.options]),f=Ve(()=>e.loading?{value:"",label:"",startDecorator:A.createElement(wr,{size:"sm",color:"neutral",variant:"plain",thickness:3})}:typeof m=="string"&&b.find(v=>v.value===m)||m,[m,e.options,e.loading]),y=Ve(()=>f?.startDecorator||e.startDecorator,[f]),p=Ve(()=>f?.endDecorator||e.endDecorator,[f]),k=A.createElement(Mr,{...d,required:l,onChange:(v,D)=>{c(D);let h=D;s?.({...v,target:{...v.target,value:h?.value}})},color:i,value:f,options:b,size:a,disabled:t,startDecorator:y,endDecorator:p,slots:{listbox:Sr},getOptionLabel:v=>`${v.value||""}`,renderGroup:v=>v});return o?A.createElement(F,{required:l,color:i,size:a,error:r,disabled:t},A.createElement(S,null,o),k,n&&A.createElement(w,null,n)):k}no.displayName="Autocomplete";import{Box as Hr}from"@mui/joy";import{motion as zr}from"framer-motion";var Er=zr(Hr),me=Er;me.displayName="Box";var Je=me;import O from"react";import{Breadcrumbs as nt,Link as jr}from"@mui/joy";import ao from"react";import{Menu as Or,MenuButton as Vr,MenuItem as Jr}from"@mui/joy";import{motion as io}from"framer-motion";var Yr=io(Or),de=e=>ao.createElement(Yr,{...e});de.displayName="Menu";var $r=io(Vr),pe=e=>ao.createElement($r,{...e});pe.displayName="MenuButton";var Wr=io(Jr),ce=e=>ao.createElement(Wr,{...e});ce.displayName="MenuItem";var tt=de;import{Dropdown as qr}from"@mui/joy";import{motion as Gr}from"framer-motion";var Ur=Gr(qr),ue=Ur;ue.displayName="Dropdown";var rt=ue;function lo(e){let{crumbs:o,size:r,startCrumbCount:n=1,endCrumbCount:i=3,slots:{link:a,...t}={link:jr},slotProps:{link:l,...s}={link:{color:"neutral"}},collapsed:d=!0,...m}=e,c=u=>u.type==="link"&&a?O.createElement(a,{to:u.linkHref,href:u.linkHref,...l},u.label):O.createElement(L,null,u.label);if(!d)return O.createElement(nt,{size:r,slots:t,slotProps:s,...m},o.map(u=>O.createElement(c,{...u})));let b=Math.max(1,i),f=o.slice(0,n).map(u=>O.createElement(c,{...u})),y=(n+b>o.length?o.slice(n):o.slice(-b)).map(u=>O.createElement(c,{...u})),p=o.slice(n,-b).map(u=>O.createElement(ce,null,O.createElement(c,{...u})));return O.createElement(nt,{size:r,slots:t,slotProps:s,...m},f,p.length&&O.createElement(rt,null,O.createElement(pe,{size:r,variant:"plain"},"..."),O.createElement(tt,{size:r},p)),y)}lo.displayName="Breadcrumbs";import _r,{forwardRef as Zr}from"react";import{Button as Xr}from"@mui/joy";import{motion as Qr}from"framer-motion";var Rr=Qr(Xr),ge=Zr((e,o)=>_r.createElement(Rr,{ref:o,...e}));ge.displayName="Button";var T=ge;import C,{Fragment as he,forwardRef as sn,useMemo as ct}from"react";import{styled as J}from"@mui/joy";import mn from"@mui/icons-material/esm/ChevronLeft.js";import dn from"@mui/icons-material/esm/ChevronRight.js";import{AnimatePresence as ut,motion as pn}from"framer-motion";var at=e=>{let o=[],r=new Date(e.getFullYear(),e.getMonth(),1),n=new Date(e.getFullYear(),e.getMonth()+1,0),i=Math.ceil((r.getDay()+1)/7),a=Math.ceil((n.getDate()+r.getDay())/7),t=1;for(let l=1;l<=a;l++){let s=[];for(let d=1;d<=7;d++)l===i&&d<r.getDay()+1||t>n.getDate()?s.push(void 0):(s.push(t),t++);o.push(s)}return o},it=(e,o)=>e.toLocaleString(o,{year:"numeric"}),so=(e,o)=>e.toLocaleString(o,{year:"numeric",month:"long"}),lt=(e,o)=>new Date(0,e).toLocaleString(o,{month:"short"}),st=e=>{let o=new Date().getDay(),r=new Date;return r.setDate(r.getDate()-o),Array.from({length:7}).map(()=>{let n=r.toLocaleString(e,{weekday:"short"});return r.setDate(r.getDate()+1),n})},mt=e=>{let o=new Date,r=new Date(e);return r.setHours(0,0,0,0),o.setHours(0,0,0,0),r.getTime()===o.getTime()},mo=(e,o)=>{let r=new Date(e),n=new Date(o);return r.setHours(0,0,0,0),n.setHours(0,0,0,0),r.getTime()===n.getTime()},q=(e,o,r)=>{let n=new Date(r);n.setHours(0,0,0,0);let i=new Date(Math.min(e.getTime(),o.getTime())),a=new Date(Math.max(e.getTime(),o.getTime()));return n>=i&&n<=a},Ye=(e,o)=>e.getFullYear()===o.getFullYear()&&e.getMonth()===o.getMonth();import Kr from"react";import{IconButton as en}from"@mui/joy";import{motion as on}from"framer-motion";var tn=on(en),fe=e=>Kr.createElement(tn,{...e});fe.displayName="IconButton";var E=fe;import{useCallback as rn,useMemo as nn,useState as $e}from"react";import{useThemeProps as an}from"@mui/joy";var ln=(e,o)=>o.includes(e)?e:o[0],dt=e=>{let[o,r]=$e(()=>ln(e.view||"day",e.views||["day","month"])),[n,i]=$e(e.defaultValue),[a,t]=$e(()=>{let p=new Date;return p.setDate(1),p.setHours(0,0,0,0),e.value?.[0]||e.defaultValue?.[0]||p}),[[l,s],d]=$e([0,0]),m=e.view??o,c=p=>{d([l+p,p])},b=rn(p=>{t(p),m==="month"?a.getFullYear()!==p.getFullYear()&&c(p>a?1:-1):c(p>a?1:-1),e.onMonthChange?.(p)},[e.onMonthChange,a,m]),f=an({props:{locale:"default",views:["day","month"],view:m,value:e.value??n,...e,onChange:e.value?e.onChange:p=>{i(p),e.onChange?.(p)},onMonthChange:b,onViewChange:()=>{let p=m==="month"?"day":"month";!(!e.views||e.views.includes(p))||e.view===p||(e.onViewChange?e.onViewChange(p):r(p))}},name:"Calendar"}),y=nn(()=>({...f,viewMonth:a,direction:s}),[f,a,s]);return[f,y]};import{useCallback as K,useState as pt}from"react";var We=e=>{let[o,r]=pt(null),[n,i]=pt(null);return{calendarTitle:e.view==="month"?it(e.viewMonth,e.locale||"default"):so(e.viewMonth,e.locale||"default"),onPrev:K(()=>{if(e.view==="day"){let a=new Date(e.viewMonth||new Date);a.setMonth(a.getMonth()-1),e.onMonthChange?.(a)}else if(e.view==="month"){let a=new Date(e.viewMonth||new Date);a.setFullYear(a.getFullYear()-1),e.onMonthChange?.(a)}},[e.onMonthChange,e.viewMonth,e.view]),onNext:K(()=>{if(e.view==="day"){let a=new Date(e.viewMonth||new Date);a.setMonth(a.getMonth()+1),e.onMonthChange?.(a)}else if(e.view==="month"){let a=new Date(e.viewMonth||new Date);a.setFullYear(a.getFullYear()+1),e.onMonthChange?.(a)}},[e.onMonthChange,e.viewMonth,e.view]),getDayCellProps:K(a=>{let t=new Date(e.viewMonth||new Date);t.setHours(0,0,0,0),t.setDate(a);let l=e.rangeSelection&&e.value&&e.value[0]&&(o&&q(e.value[0],o,t)||e.value[1]&&q(e.value[0],e.value[1],t));return{"aria-label":t.toLocaleDateString(),"aria-current":l?"date":void 0}},[e.rangeSelection,e.value,e.viewMonth,o]),getMonthCellProps:K(a=>{let t=new Date(e.viewMonth||new Date);t.setDate(1),t.setHours(0,0,0,0),t.setMonth(a);let s=!e.views?.find(d=>d==="day")&&e.rangeSelection&&e.value&&e.value[0]&&(n&&q(e.value[0],n,t)||e.value[1]&&q(e.value[0],e.value[1],t));return{"aria-label":t.toLocaleDateString(),"aria-current":s?"date":void 0}},[e.rangeSelection,e.value,e.viewMonth,n]),getPickerDayProps:K(a=>{let t=new Date(e.viewMonth||new Date);t.setHours(0,0,0,0),t.setDate(a);let l=!!e.value&&(mo(t,e.value[0])||e.value[1]&&mo(t,e.value[1])),s=e.rangeSelection&&e.value&&e.value[0]&&(o&&q(e.value[0],o,t)||e.value[1]&&q(e.value[0],e.value[1],t)),d=()=>{e.rangeSelection?e.value?e.value[0]&&!e.value[1]?e.onChange?.([new Date(Math.min(e.value[0].getTime(),t.getTime())),new Date(Math.max(e.value[0].getTime(),t.getTime()))]):e.onChange?.([t,void 0]):e.onChange?.([t,void 0]):e.onChange?.([t,void 0]),r(null)};return{isToday:mt(t),isSelected:l,onClick:d,onMouseEnter:e.rangeSelection&&e.value?.[0]&&!e.value?.[1]?()=>r(t):void 0,disabled:e.minDate&&t<e.minDate||e.maxDate&&t>e.maxDate||e.disableFuture&&t>new Date||e.disablePast&&t<(()=>{let m=new Date;return m.setHours(0,0,0,0),m})(),tabIndex:-1,"aria-label":t.toLocaleDateString(),"aria-selected":l?"true":void 0,"aria-current":s?"date":void 0}},[e.onChange,e.value,e.viewMonth,e.rangeSelection,e.minDate,e.maxDate,e.disableFuture,e.disablePast,o]),getPickerMonthProps:K(a=>{let t=new Date(e.viewMonth||new Date);t.setDate(1),t.setHours(0,0,0,0),t.setMonth(a);let l=!e.views?.find(c=>c==="day")&&e.rangeSelection,s=!!e.value&&(Ye(t,e.value[0])||e.value[1]&&Ye(t,e.value[1])),d=l&&e.value&&e.value[0]&&(n&&q(e.value[0],n,t)||e.value[1]&&q(e.value[0],e.value[1],t)),m=()=>{l?e.value?e.value[0]&&!e.value[1]?e.onChange?.([new Date(Math.min(e.value[0].getTime(),t.getTime())),new Date(Math.max(e.value[0].getTime(),t.getTime()))]):e.onChange?.([t,void 0]):e.onChange?.([t,void 0]):(e.onViewChange?.("day"),e.onMonthChange?.(t)),i(null)};return{isSelected:s,onMouseEnter:l&&e.value?.[0]&&!e.value?.[1]?()=>i(t):void 0,disabled:e.minDate&&(()=>{let c=new Date(t);return c.setMonth(c.getMonth()+1),c.setDate(0),c<e.minDate})()||e.maxDate&&(()=>{let c=new Date(t);return c.setDate(0),c>e.maxDate})()||e.disableFuture&&t>new Date||e.disablePast&&t<new Date&&!Ye(t,new Date),onClick:m,tabIndex:-1,"aria-label":so(t,e.locale||"default"),"aria-selected":s?"true":void 0,"aria-current":d?"date":void 0}},[e.onMonthChange,e.onViewChange,e.onChange,e.viewMonth,e.locale,e.value,e.minDate,e.maxDate,e.disableFuture,e.disablePast,n])}};var cn=J("div",{name:"Calendar",slot:"root"})({maxWidth:"264px"}),un=J("div",{name:"Calendar",slot:"calendarHeader"})(({theme:e})=>({display:"flex",justifyContent:"space-between",alignItems:"center",padding:e.spacing(1)})),gt=J("div",{name:"Calendar",slot:"viewContainer"})(({theme:e,calendarType:o})=>({paddingLeft:e.spacing(1),paddingRight:e.spacing(1),position:"relative",overflow:"hidden",minHeight:o==="datePicker"?"250px":"unset"})),ft=J(pn.table,{name:"Calendar",slot:"viewTable"})(({theme:e})=>({borderSpacing:0,"& td, & th":{padding:0},"& th":{paddingTop:e.spacing(1),paddingBottom:e.spacing(1)}})),gn=J("thead",{name:"Calendar",slot:"weekHeaderContainer"})({}),fn=J("tbody",{name:"Calendar",slot:"dayPickerContainer"})({}),hn=J(T,{name:"Calendar",slot:"switchViewButton"})(({ownerState:e})=>[e.view==="month"&&{pointerEvents:"none"}]),Cn=J("td",{name:"Calendar",slot:"dayCell"})(({theme:e})=>({"&[aria-current=date]":{position:"relative","& button[aria-current=date]:not([aria-selected=true]):not(:hover):not(:active)":{backgroundColor:`rgb(${e.palette.primary.lightChannel})`},'& + td[aria-hidden] + td[aria-current="date"]::before':{content:'""',position:"absolute",top:0,left:"-10px",bottom:0,width:"16px",backgroundColor:`rgb(${e.palette.primary.lightChannel})`,zIndex:-1}}})),bn=J("td",{name:"Calendar",slot:"monthCell"})(({theme:e})=>({"&[aria-current=date]":{position:"relative","& button[aria-current=date]:not([aria-selected=true]):not(:hover):not(:active)":{backgroundColor:`rgb(${e.palette.primary.lightChannel})`},'& + td[aria-hidden] + td[aria-current="date"]::before':{content:'""',position:"absolute",top:0,left:"-10px",bottom:0,width:"16px",backgroundColor:`rgb(${e.palette.primary.lightChannel})`,zIndex:-1}}})),yn=J(T,{name:"Calendar",slot:"month"})(({theme:e,isSelected:o,disabled:r})=>[{width:"59px",textAlign:"center","&:hover":{color:e.palette.primary.softColor,backgroundColor:e.palette.primary.softHoverBg},"&:active":{color:e.palette.primary.softColor,backgroundColor:e.palette.primary.softActiveBg}},o&&{backgroundColor:e.palette.primary.solidBg,color:e.palette.primary.solidColor,"&:hover":{color:e.palette.primary.solidColor,backgroundColor:e.palette.primary.solidHoverBg},"&:active":{color:e.palette.primary.solidColor,backgroundColor:e.palette.primary.solidActiveBg}},r&&{color:e.palette.neutral.solidDisabledColor,backgroundColor:e.palette.neutral.solidDisabledBg}]),xn=J(T,{name:"Calendar",slot:"day"})(({theme:e,isToday:o,isSelected:r,disabled:n})=>[{width:"32px",height:"32px",textAlign:"center","&:hover":{color:e.palette.primary.softColor,backgroundColor:e.palette.primary.softHoverBg},"&:active":{color:e.palette.primary.softColor,backgroundColor:e.palette.primary.softActiveBg}},o&&!r&&{"&:not([aria-current=date]):not(:hover)":{border:`1px solid ${e.palette.neutral.outlinedBorder}`}},r&&{backgroundColor:e.palette.primary.solidBg,color:e.palette.primary.solidColor,"&:hover":{color:e.palette.primary.solidColor,backgroundColor:e.palette.primary.solidHoverBg},"&:active":{color:e.palette.primary.solidColor,backgroundColor:e.palette.primary.solidActiveBg}},n&&{color:e.palette.neutral.solidDisabledColor,backgroundColor:e.palette.neutral.solidDisabledBg}]),ht={enter:e=>({x:e>0?300:-300,opacity:0}),center:{position:"relative",zIndex:1,x:0,opacity:1},exit:e=>({position:"absolute",zIndex:0,x:e<0?300:-300,opacity:0})},qe=1e4,Ct=(e,o)=>Math.abs(e)*o,vn=e=>{let{ownerState:o}=e,{getPickerDayProps:r,getDayCellProps:n}=We(o),i=ct(()=>at(o.viewMonth),[o.viewMonth]),a=ct(()=>st(o.locale||"default"),[o.locale]);return C.createElement(gt,{calendarType:"datePicker"},C.createElement(ut,{initial:!1,custom:o.direction},C.createElement(ft,{key:`${o.viewMonth.toString()}_${o.direction}`,custom:o.direction,variants:ht,initial:"enter",animate:"center",exit:"exit",transition:{x:{type:"spring",stiffness:300,damping:30},opacity:{duration:.2}},drag:"x",dragConstraints:{left:0,right:0},dragElastic:1,onDragEnd:(t,{offset:l,velocity:s})=>{let d=Ct(l.x,s.x);if(d<-qe){let m=new Date(o.viewMonth||new Date);m.setMonth(m.getMonth()+1),o.onMonthChange?.(m)}else if(d>qe){let m=new Date(o.viewMonth||new Date);m.setMonth(m.getMonth()-1),o.onMonthChange?.(m)}}},C.createElement(gn,null,C.createElement("tr",null,a.map((t,l)=>C.createElement(C.Fragment,null,C.createElement("th",null,C.createElement(L,{level:"body-xs",textAlign:"center"},t)),l<6&&C.createElement("th",{style:{width:4},"aria-hidden":"true","aria-description":"cell-gap"}))))),C.createElement(fn,null,i.map((t,l)=>C.createElement(he,{key:`${o.viewMonth}_${l}`},C.createElement("tr",null,t.map((s,d)=>s?C.createElement(he,{key:d},C.createElement(Cn,{...n(s)},C.createElement(xn,{size:"sm",variant:"plain",color:"neutral",...r(s)},s)),d<6&&C.createElement("td",{"aria-hidden":"true","aria-description":"cell-gap"})):C.createElement(he,{key:d},C.createElement("td",null),d<6&&C.createElement("td",{"aria-hidden":"true","aria-description":"cell-gap"})))),l<i.length-1&&C.createElement("tr",{"aria-hidden":"true","aria-description":"row-gap"},C.createElement("td",{colSpan:13,style:{height:4}}))))))))},Dn=e=>{let{ownerState:o}=e,{getPickerMonthProps:r,getMonthCellProps:n}=We(o),i=Array.from({length:12},(t,l)=>l).reduce((t,l)=>(t[t.length-1].length===4&&t.push([]),t[t.length-1].push(l),t),[[]]),a=!o.views?.find(t=>t==="day")&&o.rangeSelection;return C.createElement(gt,{calendarType:a?"monthPicker":"datePicker"},C.createElement(ut,{initial:!1,custom:o.direction},C.createElement(ft,{key:`${o.viewMonth.getFullYear()}_${o.direction}`,custom:o.direction,variants:ht,initial:"enter",animate:"center",exit:"exit",transition:{x:{type:"spring",stiffness:300,damping:30},opacity:{duration:.2}},drag:"x",dragConstraints:{left:0,right:0},dragElastic:1,onDragEnd:(t,{offset:l,velocity:s})=>{let d=Ct(l.x,s.x);if(d<-qe){let m=new Date(o.viewMonth||new Date);m.setMonth(m.getMonth()+1),o.onMonthChange?.(m)}else if(d>qe){let m=new Date(o.viewMonth||new Date);m.setMonth(m.getMonth()-1),o.onMonthChange?.(m)}}},C.createElement("tbody",null,i.map((t,l)=>C.createElement(he,{key:l},C.createElement("tr",null,t.map((s,d)=>C.createElement(he,{key:s},C.createElement(bn,{...n(s)},C.createElement(yn,{size:"sm",variant:"plain",color:"neutral",...r(s)},lt(s,o.locale))),d<3&&C.createElement("td",{style:{width:4},"aria-hidden":"true","aria-description":"cell-gap"})))),l<i.length-1&&C.createElement("tr",{"aria-hidden":"true","aria-description":"row-gap"},C.createElement("td",{colSpan:7,style:{height:4}}))))))))},Ce=sn((e,o)=>{let[r,n]=dt(e),{value:i,defaultValue:a,onChange:t,locale:l,onViewChange:s,onMonthChange:d,view:m,views:c,rangeSelection:b,...f}=r,{calendarTitle:y,onPrev:p,onNext:u}=We(n);return C.createElement(cn,{ref:o,...f},C.createElement(un,null,C.createElement(E,{size:"sm",onClick:p},C.createElement(mn,null)),C.createElement(hn,{ownerState:n,variant:"plain",color:"neutral",onClick:s},y),C.createElement(E,{size:"sm",onClick:u},C.createElement(dn,null))),m==="day"&&C.createElement(vn,{ownerState:n}),m==="month"&&C.createElement(Dn,{ownerState:n}))});Ce.displayName="Calendar";var ee=Ce;import{Card as Mn,CardContent as kn,CardCover as Tn,CardActions as Pn,CardOverflow as wn}from"@mui/joy";import{motion as be}from"framer-motion";var Fn=be(Mn),ye=Fn;ye.displayName="Card";var An=be(kn),po=An;po.displayName="CardContent";var In=be(Tn),co=In;co.displayName="CardCover";var Bn=be(Pn),uo=Bn;uo.displayName="CardActions";var Nn=be(wn),go=Nn;go.displayName="CardOverflow";import Ln from"react";import{Checkbox as Sn}from"@mui/joy";import{motion as Hn}from"framer-motion";var zn=Hn(Sn),xe=e=>Ln.createElement(zn,{...e});xe.displayName="Checkbox";var ve=xe;import{styled as En}from"@mui/joy";import On,{forwardRef as Vn}from"react";var Jn=En("div",{name:"Container",slot:"root",shouldForwardProp:e=>e!=="maxWidth"})(({theme:e,maxWidth:o="lg"})=>({width:"100%",marginLeft:"auto",boxSizing:"border-box",marginRight:"auto",display:"block",paddingLeft:e.spacing(2),paddingRight:e.spacing(2),...o==="sm"&&{[e.breakpoints.up("xs")]:{maxWidth:e.breakpoints.values.sm}},...o==="md"&&{[e.breakpoints.up("sm")]:{maxWidth:e.breakpoints.values.md}},...o==="lg"&&{[e.breakpoints.up("md")]:{maxWidth:e.breakpoints.values.lg}},...o==="xl"&&{[e.breakpoints.up("lg")]:{maxWidth:e.breakpoints.values.xl}}})),fo=Vn(function(o,r){return On.createElement(Jn,{ref:r,...o})});fo.displayName="Container";import G,{useCallback as qn,useState as xt}from"react";import{IntlMessageFormat as Gn}from"intl-messageformat";import{NumericFormat as Un}from"react-number-format";import jn from"@mui/icons-material/esm/InfoOutlined.js";import De from"react";import{Input as Yn}from"@mui/joy";import{motion as $n}from"framer-motion";var bt=$n(Yn),Me=e=>{let{label:o,helperText:r,error:n,style:i,size:a,color:t,disabled:l,required:s,...d}=e;return o?De.createElement(F,{required:s,color:t,size:a,error:n,disabled:l},De.createElement(S,null,o),De.createElement(bt,{...d}),r&&De.createElement(w,null,r)):De.createElement(bt,{required:s,color:t,size:a,disabled:l,...d})};Me.displayName="Input";var U=Me;import Wn from"intl-messageformat";var yt=(e="usd")=>{let[o,r,n]=new Wn(`{amount, number, ::currency/${e} unit-width-narrow}`).format({amount:1e3}).toString().replace(/\d/g,"").split("");return{symbol:`${o} `,thousandSeparator:r,decimalSeparator:n,placeholder:n?`${o} 0${n}00`:`${o} 0`,fixedDecimalScale:!!n}};var _n=G.forwardRef(function(o,r){let{onChange:n,...i}=o;return G.createElement(Un,{...i,onValueChange:({floatValue:a})=>{n?.({target:{name:o.name,value:a?.toString()}})},valueIsNumericString:!0,getInputRef:r,decimalScale:2})}),vt=G.forwardRef(function(o,r){let{currency:n="usd",max:i=1e5,name:a,onChange:t,label:l,error:s,helperText:d,required:m,disabled:c,...b}=o,{symbol:f,thousandSeparator:y,decimalSeparator:p,placeholder:u,fixedDecimalScale:k}=yt(n),[v,D]=xt(o.value),[h,x]=xt(!!i&&!!o.value&&o.value>i),H=qn($=>{let X=Number($.target.value);D(X),t?.({...$,target:{name:a,value:X}}),i&&X>i?x(!0):x(!1)},[]),M=G.createElement(U,{...b,size:"sm",ref:r,value:v,placeholder:u,onChange:H,disabled:c,required:m,slotProps:{input:{component:_n,decimalSeparator:p,thousandSeparator:y,prefix:f,fixedDecimalScale:k}},sx:{fontFamily:"monospace"}});return l?G.createElement(F,{size:"sm",disabled:c,required:m,error:s||h},G.createElement(S,null,l),M,h?G.createElement(w,null,G.createElement(jn,null),new Gn(`limit: {amount, number, ::currency/${n} unit-width-narrow}`).format({amount:i})):d&&G.createElement(w,null,d)):M});import g,{useCallback as oe,useEffect as bo,useMemo as te,useRef as Kn,useState as ea}from"react";import{styled as oa,LinearProgress as ta}from"@mui/joy";import ra from"@mui/icons-material/esm/ChevronLeft.js";import na from"@mui/icons-material/esm/ChevronRight.js";import{Sheet as Zn}from"@mui/joy";import{motion as Xn}from"framer-motion";var Qn=Xn(Zn),ke=Qn;ke.displayName="Sheet";var j=ke;import Y from"react";import{Table as Rn}from"@mui/joy";var Te=e=>{let{children:o,...r}=e;return Y.createElement(Rn,{...r},o)};Te.displayName="Table";function ho(e){let{headCells:o,showCheckbox:r,onCheckboxChange:n,slots:{checkbox:i=ve}={},slotProps:{checkbox:a={}}={}}=e;return Y.createElement("thead",null,Y.createElement("tr",null,r&&Y.createElement("th",{style:{width:"40px",textAlign:"center"}},Y.createElement(i,{onChange:n,...a})),o.map(t=>Y.createElement("th",{key:t.label,style:{width:t.width,minWidth:t.minWidth,maxWidth:t.maxWidth,textAlign:t.numeric?"right":"left"}},t.label))))}ho.displayName="TableHead";function Co(e){let{rows:o,cellOrder:r,rowOptions:n,showCheckbox:i,onCheckboxChange:a,slots:{checkbox:t=ve}={},slotProps:{checkbox:l={}}={}}=e;return Y.createElement("tbody",null,o.map((s,d)=>Y.createElement("tr",{key:d},i&&Y.createElement("td",{style:{textAlign:"center"}},Y.createElement(t,{onChange:m=>a?.(m,d),...l})),r.map(m=>Y.createElement("td",{key:m,style:{textAlign:n?.[m]?.numeric?"right":"left"}},s[m])))))}Co.displayName="TableBody";var Dt=oa("tr",{name:"DataTable",slot:"overlayWrapper"})({position:"sticky",top:"calc(var(--unstable_TableCell-height, 32px))",left:0,right:0,zIndex:1,"& > td":{height:0,padding:0,border:"none !important"}}),Ge=e=>"Intl"in window?new Intl.NumberFormat().format(e):e;function aa(e){let{paginationModel:{page:o,pageSize:r},rowCount:n,onPageChange:i}=e,a=1,t=Math.ceil(n/r),l=[o-2,o-1].filter(c=>c>1),s=[o+1,o+2].filter(c=>c<=t-1),d=t>1&&o<t-3,m=t>1&&o>4;return g.createElement(z,{direction:"row",spacing:1,sx:{pt:1,pb:1},justifyContent:"end",alignItems:"center"},g.createElement(z,{direction:"row",spacing:.5,alignItems:"center"},g.createElement(E,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(o-1),disabled:o===a,"aria-label":"Previous page"},g.createElement(ra,null)),o!==a&&g.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(a)},a),m&&g.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(o-3)},"..."),l.map(c=>g.createElement(T,{key:c,size:"sm",variant:"plain",color:"neutral",onClick:()=>i(c)},c)),g.createElement(T,{variant:"soft",size:"sm"},o),s.map(c=>g.createElement(T,{key:c,size:"sm",variant:"plain",color:"neutral",onClick:()=>i(c)},c)),d&&g.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(o+3)},"..."),o!==t&&g.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(t)},t),g.createElement(E,{size:"sm",variant:"plain",color:"neutral",onClick:()=>i(o+1),disabled:o===t,"aria-label":"Next page"},g.createElement(na,null))))}var ia=e=>g.createElement(Je,{sx:{position:"absolute",top:0,right:0,bottom:0,width:"4px",cursor:"col-resize"},onMouseDown:o=>{let r=o.clientX,n=e.current?.getBoundingClientRect().width,i=t=>{n&&r&&(e.current.style.width=`${n+(t.clientX-r)}px`)},a=()=>{document.removeEventListener("mousemove",i),document.removeEventListener("mouseup",a)};document.addEventListener("mousemove",i),document.addEventListener("mouseup",a)}}),la=e=>{let o=Kn(null),r={width:e.width,minWidth:e.minWidth??"50px",maxWidth:e.maxWidth,textAlign:e.type==="number"?"end":"start",position:e.stickyHeader?void 0:"relative"},n=e.resizable??!0?ia(o):null;return g.createElement("th",{ref:o,key:e.field,style:r},e.headerName??e.field,n)};function sa({rows:e,columns:o,rowCount:r,paginationMode:n,paginationModel:i,onPaginationModelChange:a,selectionModel:t=[],onSelectionModelChange:l,getId:s,isTotalSelected:d}){let[m,c]=ea(i?.page||1),b=i?.pageSize||20,f=oe((h,x)=>s?.(h)??h?.id??`${(x||0)+(m-1)*b}`,[s??m,b]),y=te(()=>new Set(t),[t]),p=te(()=>n==="server"?e:e.slice((m-1)*b,(m-1)*b+b),[e,m,b,n]),u=te(()=>p.length>0&&p.every((h,x)=>y.has(f(h,x))),[p,y,m,b,f]),k=r||e.length,v=te(()=>d??(k>0&&t.length===k),[d,t,k]),D=oe(h=>{c(h),a?.({page:h,pageSize:b})},[a]);return bo(()=>{D(1)},[k]),bo(()=>{m>Math.ceil(k/b)&&D(Math.ceil(k/b))},[k,b]),bo(()=>{l?.([])},[m]),{rowCount:k,page:m,pageSize:b,onPaginationModelChange:D,getId:f,HeadCell:la,dataInPage:p,isAllSelected:u,isTotalSelected:v,isSelectedRow:oe(h=>y.has(h),[y]),onAllCheckboxChange:oe(()=>{l?.(u?[]:p.map(f))},[u,p,l]),onCheckboxChange:oe((h,x)=>{if(y.has(x)){let H=t.filter(M=>M!==x);l?.(H)}else{let H=[...t,x];l?.(H)}},[t,l]),columns:te(()=>o||Object.keys(e[0]||{}).map(h=>({field:h})),[e,o]),onTotalSelect:oe(()=>{l?.(v?[]:e.map(f),!v)},[v,e,l])}}function yo(e){let{rows:o,checkboxSelection:r,selectionModel:n,onSelectionModelChange:i,rowCount:a,columns:t,onPaginationModelChange:l,paginationMode:s,paginationModel:d,loading:m,slots:{checkbox:c=ve,toolbar:b,footer:f,loadingOverlay:y=()=>g.createElement(ta,{value:8,variant:"plain"})}={},slotProps:{checkbox:p={},toolbar:u,background:k={}}={},...v}=e,{columns:D,isAllSelected:h,isSelectedRow:x,onAllCheckboxChange:H,onCheckboxChange:M,getId:$,rowCount:X,page:Xo,pageSize:Qo,onPaginationModelChange:Wt,dataInPage:qt,isTotalSelected:Ro,onTotalSelect:Ko,HeadCell:Gt}=sa(e);return g.createElement(Je,null,g.createElement(z,{direction:"row",sx:{pt:1,pb:1},justifyContent:"space-between",alignItems:"center"},!!r&&g.createElement(z,{direction:"row",spacing:1},!h&&g.createElement(L,{level:"body-xs"},Ge(n?.length||0)," items selected"),h&&!Ro&&g.createElement(z,{direction:"row",spacing:1,alignItems:"center"},g.createElement(L,{level:"body-xs"},"All ",Ge(n?.length||0)," items on this page are selected."),g.createElement(T,{size:"sm",variant:"plain",onClick:Ko},"Select all ",Ge(X??o.length)," items")),Ro&&g.createElement(z,{direction:"row",spacing:1,alignItems:"center"},g.createElement(L,{level:"body-xs"},"All ",Ge(X??o.length)," items are selected."),g.createElement(T,{size:"sm",variant:"plain",color:"danger",onClick:Ko},"Cancel"))),b&&g.createElement(b,{...u||{}})),g.createElement(j,{variant:"outlined",sx:{overflow:"auto",width:"100%",boxShadow:"sm",borderRadius:"sm"},...k},g.createElement(Te,{...v},g.createElement("thead",null,g.createElement("tr",null,r&&g.createElement("th",{style:{width:"40px",textAlign:"center"}},g.createElement(c,{onChange:H,checked:h,indeterminate:(n||[]).length>0&&!h,...p})),D.map(Q=>g.createElement(Gt,{key:Q.field,stickyHeader:e.stickyHeader,...Q})))),g.createElement("tbody",null,g.createElement(Dt,null,!!m&&g.createElement("td",null,g.createElement(Je,{sx:{position:"absolute",top:0,left:0,right:0}},g.createElement(y,null)))),g.createElement(Dt,null),qt.map((Q,Ut)=>{let R=$(Q,Ut);return g.createElement("tr",{key:R,role:r?"checkbox":void 0,tabIndex:r?-1:void 0,onClick:r?W=>M(W,R):void 0,"aria-checked":r?x(R):void 0},r&&g.createElement("th",{scope:"row",style:{textAlign:"center"}},g.createElement(c,{onChange:W=>M(W,R),checked:x(R),...p})),D.map(W=>g.createElement("td",{key:W.field,style:{textAlign:W.type==="number"?"end":"start"}},W.renderCell?.({row:Q,value:Q[W.field],id:R})??Q[W.field])))})),f&&g.createElement(f,null))),g.createElement(aa,{paginationModel:te(()=>({page:Xo,pageSize:Qo}),[Xo,Qo]),rowCount:X,onPageChange:Wt}))}yo.displayName="DataTable";import I,{forwardRef as ga,useCallback as Mt,useEffect as fa,useState as kt}from"react";import{IMaskInput as ha,IMask as xo}from"react-imask";import Ca from"@mui/icons-material/esm/CalendarToday.js";import{styled as Tt}from"@mui/joy";import{FocusTrap as ba,ClickAwayListener as ya,Popper as xa}from"@mui/base";import{DialogActions as ma,styled as da}from"@mui/joy";import{motion as pa}from"framer-motion";var ca=pa(ma),ua=da(ca)(({theme:e})=>({padding:e.spacing(1),gap:e.spacing(1),flexDirection:"row",justifyContent:"flex-end"})),Pe=ua;Pe.displayName="DialogActions";var _=Pe;var va=Tt(xa,{name:"DatePicker",slot:"popper"})(({theme:e})=>({zIndex:e.zIndex.tooltip})),Da=Tt(j,{name:"DatePicker",slot:"sheet",overridesResolver:(e,o)=>o.root})(({theme:e})=>({width:"264px",boxShadow:e.shadow.md,borderRadius:e.radius.md})),Pt=e=>{let o=`${e.getDate()}`,r=`${e.getMonth()+1}`,n=e.getFullYear();return Number(o)<10&&(o="0"+o),Number(r)<10&&(r="0"+r),[n,r,o].join("/")},Ma=I.forwardRef(function(o,r){let{onChange:n,...i}=o;return I.createElement(ha,{...i,inputRef:r,onAccept:a=>n({target:{name:o.name,value:a}}),mask:Date,pattern:"Y/`m/`d",blocks:{d:{mask:xo.MaskedRange,from:1,to:31,maxLength:2},m:{mask:xo.MaskedRange,from:1,to:12,maxLength:2},Y:{mask:xo.MaskedRange,from:1900,to:9999}},format:Pt,parse:a=>{let t=a.split("/");return new Date(Number(t[0]),Number(t[1])-1,Number(t[2]))},autofix:"pad",overwrite:!0})}),vo=ga((e,o)=>{let{onChange:r,disabled:n,label:i,error:a,helperText:t,minDate:l,maxDate:s,disableFuture:d,disablePast:m,required:c,...b}=e,[f,y]=kt(e.value||""),[p,u]=kt(null),k=!!p;fa(()=>{y(e.value||"")},[e.value]);let v=Mt(x=>{y(x.target.value),r?.(x)},[]),D=Mt(x=>{u(p?null:x.currentTarget)},[p,u]),h=I.createElement(I.Fragment,null,I.createElement(U,{...b,ref:o,size:"sm",value:f,onChange:v,placeholder:"YYYY/MM/DD",disabled:n,required:c,slotProps:{input:{component:Ma}},sx:{fontFamily:"monospace"},endDecorator:I.createElement(E,{variant:"plain",onClick:D},I.createElement(Ca,null))}),k&&I.createElement(ya,{onClickAway:()=>u(null)},I.createElement(va,{id:"date-picker-popper",open:!0,anchorEl:p,placement:"bottom-end",modifiers:[{name:"offset",options:{offset:[4,4]}}]},I.createElement(ba,{open:!0},I.createElement(Da,{tabIndex:-1,role:"presentation"},I.createElement(ee,{value:Number.isNaN(new Date(f).getTime())?void 0:[new Date(f),void 0],onChange:([x])=>{y(Pt(x)),u(null)},minDate:l?new Date(l):void 0,maxDate:s?new Date(s):void 0,disableFuture:d,disablePast:m}),I.createElement(_,{sx:{p:1}},I.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>{y(""),u(null)}},"Clear")))))));return i?I.createElement(F,{required:c,disabled:n,error:a,size:"sm"},I.createElement(S,null,i),h,t&&I.createElement(w,null,t)):h});vo.displayName="DatePicker";import B,{forwardRef as ka,useCallback as Do,useEffect as Ta,useMemo as Pa,useState as wt}from"react";import{IMaskInput as wa,IMask as Mo}from"react-imask";import Fa from"@mui/icons-material/esm/CalendarToday.js";import{styled as Ft}from"@mui/joy";import{FocusTrap as Aa,ClickAwayListener as Ia,Popper as Ba}from"@mui/base";var Na=Ft(Ba,{name:"DateRangePicker",slot:"popper"})(({theme:e})=>({zIndex:e.zIndex.tooltip})),La=Ft(j,{name:"DateRangePicker",slot:"sheet",overridesResolver:(e,o)=>o.root})(({theme:e})=>({zIndex:e.zIndex.tooltip,width:"264px",boxShadow:e.shadow.md,borderRadius:e.radius.md})),At=([e,o])=>{let r=n=>{let i=`${n.getDate()}`,a=`${n.getMonth()+1}`,t=n.getFullYear();return Number(i)<10&&(i="0"+i),Number(a)<10&&(a="0"+a),[t,a,i].join("/")};return[r(e),o?r(o):""].join(" - ")},It=e=>{let o=e.split(" - ")[0]||"",r=e.split(" - ")[1]||"",n=o.split("/"),i=r.split("/");return[new Date(Number(n[0]),Number(n[1])-1,Number(n[2])),new Date(Number(i[0]),Number(i[1])-1,Number(i[2]))]},Sa=B.forwardRef(function(o,r){let{onChange:n,...i}=o;return B.createElement(wa,{...i,inputRef:r,onAccept:a=>n({target:{name:o.name,value:a}}),mask:Date,pattern:"Y/`m/`d - Y/`m/`d",blocks:{d:{mask:Mo.MaskedRange,from:1,to:31,maxLength:2},m:{mask:Mo.MaskedRange,from:1,to:12,maxLength:2},Y:{mask:Mo.MaskedRange,from:1900,to:9999}},format:At,parse:It,autofix:"pad",overwrite:!0})}),ko=ka((e,o)=>{let{onChange:r,disabled:n,label:i,error:a,helperText:t,minDate:l,maxDate:s,disableFuture:d,disablePast:m,required:c,...b}=e,[f,y]=wt(e.value||""),[p,u]=wt(null),k=!!p,v=Pa(()=>f?It(f):void 0,[f]);Ta(()=>{y(e.value||"")},[e.value]);let D=Do(M=>{y(M.target.value),r?.(M)},[r]),h=Do(M=>{u(p?null:M.currentTarget)},[p,u]),x=Do(([M,$])=>{!M||!$||(y(At([M,$])),u(null))},[y,u]),H=B.createElement(B.Fragment,null,B.createElement(U,{...b,ref:o,size:"sm",value:f,onChange:D,disabled:n,required:c,placeholder:"YYYY/MM/DD - YYYY/MM/DD",slotProps:{input:{component:Sa}},sx:{fontFamily:"monospace"},endDecorator:B.createElement(E,{variant:"plain",onClick:h},B.createElement(Fa,null))}),k&&B.createElement(Ia,{onClickAway:()=>u(null)},B.createElement(Na,{id:"date-range-picker-popper",open:!0,anchorEl:p,placement:"bottom-end",modifiers:[{name:"offset",options:{offset:[4,4]}}]},B.createElement(Aa,{open:!0},B.createElement(La,{tabIndex:-1,role:"presentation"},B.createElement(ee,{rangeSelection:!0,defaultValue:v,onChange:x,minDate:l?new Date(l):void 0,maxDate:s?new Date(s):void 0,disableFuture:d,disablePast:m}),B.createElement(_,{sx:{p:1}},B.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>{y(""),u(null)}},"Clear")))))));return i?B.createElement(F,{required:c,disabled:n,error:a,size:"sm"},B.createElement(S,null,i),H,t&&B.createElement(w,null,t)):H});ko.displayName="DateRangePicker";import{DialogContent as Ha,styled as za}from"@mui/joy";import{motion as Ea}from"framer-motion";var Oa=Ea(Ha),Va=za(Oa)(({theme:e})=>({padding:e.spacing(0,3,2.5)})),we=Va;we.displayName="DialogContent";var Ue=we;import{DialogTitle as Ja,styled as Ya}from"@mui/joy";import{motion as $a}from"framer-motion";var Wa=$a(Ja),qa=Ya(Wa)(({theme:e})=>({padding:e.spacing(2,3)})),Fe=qa;Fe.displayName="DialogTitle";var je=Fe;import Ie from"react";import _e from"react";import{Modal as Ga,ModalDialog as Ua,ModalClose as ja,ModalOverflow as _a,styled as Bt}from"@mui/joy";import{motion as Ze}from"framer-motion";var Za=Ze(Ga),To=Za;To.displayName="Modal";var Xa=Ze(Ua),Nt=Bt(Xa)({padding:0}),Ae=Nt;Ae.displayName="ModalDialog";var Qa=Bt(Ze(ja))(({theme:e})=>({top:e.spacing(1.5),right:e.spacing(3)})),Xe=Qa;Xe.displayName="ModalClose";var Ra=Ze(_a),Po=Ra;Po.displayName="ModalOverflow";function wo(e){let{title:o,children:r,...n}=e;return _e.createElement(Nt,{...n},_e.createElement(Xe,null),_e.createElement(je,null,o),_e.createElement(Ue,null,r))}wo.displayName="ModalFrame";import{styled as Ka}from"@mui/joy";var ei=Ka(Ae)(({theme:e})=>({padding:0})),Fo=Ie.forwardRef((e,o)=>{let{title:r,children:n,actions:i,...a}=e;return Ie.createElement(ei,{ref:o,...a},Ie.createElement(je,null,r),Ie.createElement(Ue,null,n),Ie.createElement(_,null,i))});Fo.displayName="DialogFrame";import oi from"react";import{Divider as ti}from"@mui/joy";import{motion as ri}from"framer-motion";var ni=ri(ti),Be=e=>oi.createElement(ni,{...e});Be.displayName="Divider";import ai from"react";import{Drawer as ii}from"@mui/joy";import{motion as li}from"framer-motion";var si=li(ii),Ao=e=>{let{children:o,...r}=e;return ai.createElement(si,{...r,slotProps:{...r.slotProps,content:{...r.slotProps?.content,sx:{bgcolor:"transparent",p:{md:3,sm:0},boxShadow:"none"}}}},o)};Ao.displayName="InsetDrawer";import P,{useCallback as Qe,useEffect as mi,useRef as Lt,useState as Io}from"react";import{styled as re}from"@mui/joy";import di from"@mui/icons-material/esm/Delete.js";import{combine as pi}from"@atlaskit/pragmatic-drag-and-drop/combine";import{dropTargetForExternal as ci,monitorForExternal as ui}from"@atlaskit/pragmatic-drag-and-drop/external/adapter";import{containsFiles as St,getFiles as gi}from"@atlaskit/pragmatic-drag-and-drop/external/file";import{preventUnhandled as Ht}from"@atlaskit/pragmatic-drag-and-drop/prevent-unhandled";var fi=re("input")({width:"1px",height:"1px",overflow:"hidden",whiteSpace:"nowrap",clip:"rect(0 0 0 0)",clipPath:"inset(50%)",position:"absolute"}),hi=re("div",{name:"FileUpload",slot:"PreviewRoot"})(({theme:e})=>({display:"grid",gridTemplateColumns:"repeat(auto-fill, minmax(300px, auto))",gap:"8px"})),Ci=e=>{let{files:o,onDelete:r}=e;return P.createElement(hi,null,o.map(n=>P.createElement(ye,{key:n.name},P.createElement(z,{style:{aspectRatio:"4/3",height:"200px"},alignItems:"center",justifyContent:"center"},n.type.startsWith("image/")?P.createElement("img",{style:{width:"100%",height:"100%",objectFit:"cover"},src:URL.createObjectURL(n),alt:n.name}):P.createElement(L,{level:"title-md",textColor:"neutral.400"},n.type)),P.createElement(z,{direction:"row",justifyContent:"space-between",gap:"8px"},P.createElement(z,null,P.createElement(L,{level:"title-sm",textColor:"common.black"},n.name),P.createElement(L,{level:"body-sm",textColor:"neutral.600"},(n.size/1e3).toFixed(2),"KB")),P.createElement(E,{onClick:()=>r?.(n)},P.createElement(di,null))))))},bi=re(z,{name:"FileUpload",slot:"root"})(({theme:e})=>({gap:e.spacing(1)})),yi=re("label",{name:"FileUpload",slot:"label"})({}),xi=re("div",{name:"FileUpload",slot:"dropZone"})(({theme:e,state:o})=>({width:"100%",backgroundColor:o==="over"?e.palette.background.level2:e.palette.background.backdrop,display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",padding:e.spacing(3),gap:e.spacing(2),border:o==="idle"?"2px solid rgba(0,0,0,0)":`2px dashed ${e.palette.primary[400]}`})),vi=re(T,{name:"FileUpload",slot:"button"})({}),Bo=P.memo(e=>{let{accept:o,maxCount:r,name:n,maxTotalSize:i,maxSizePerFile:a,onChange:t}=e,l=Lt(null),s=Lt(null),[d,m]=Io([]),[c,b]=Io("idle"),[f,y]=Io(),p=Qe(D=>{try{a&&D.forEach(x=>{if(x.size>a)throw new Error(`File size exceeds the limit: ${a}`)});let h=[...d,...D];if(r&&h.length>r)throw new Error(`File count exceeds the limit: ${r}`);if(i&&h.reduce((x,H)=>x+H.size,0)>i)throw new Error(`Total file size exceeds the limit: ${i}`);t?.({target:{name:n,value:h}}),y(void 0),m(h)}catch(h){y(h.message)}},[d]);mi(()=>{let D=l.current;if(!D)throw new Error("Drop zone ref is not set");return pi(ci({element:D,canDrop:St,onDragEnter:()=>b("over"),onDragLeave:()=>b("potential"),onDrop:async({source:h})=>{let x=await gi({source:h});p(x)}}),ui({canMonitor:St,onDragStart:()=>{b("potential"),Ht.start()},onDrop:()=>{b("idle"),Ht.stop()}}))});let u=Qe(D=>{let h=Array.from(D.target.files||[]);p(h)},[p]),k=Qe(D=>{m(h=>(t?.({target:{name:n,value:h.filter(x=>x!==D)}}),h.filter(x=>x!==D)))},[]),v=Qe(()=>{s.current?.click()},[]);return P.createElement(bi,null,P.createElement(F,{error:!!f},P.createElement(xi,{state:c,ref:l},P.createElement(yi,null,P.createElement(L,{level:"h3",textColor:"background.tooltip"},"Drop files"),P.createElement(fi,{type:"file",onChange:u,multiple:!0,accept:o,ref:s})),P.createElement(vi,{variant:"soft",color:"neutral",onClick:v},"Select Files"),f&&P.createElement(w,null,f))),P.createElement(Ci,{files:d,onDelete:k}))});Bo.displayName="FileUpload";import{Grid as Di}from"@mui/joy";import{motion as Mi}from"framer-motion";var ki=Mi(Di),No=ki;No.displayName="Grid";import Z from"react";import Ti from"react-markdown";import{Link as Pi}from"@mui/joy";var Lo=e=>{let{...o}=e;return Z.createElement(Ti,{...o,components:{h1:({children:r})=>Z.createElement(V,{level:"h1"},r),h2:({children:r})=>Z.createElement(V,{level:"h2"},r),h3:({children:r})=>Z.createElement(V,{level:"h3"},r),h4:({children:r})=>Z.createElement(V,{level:"h4"},r),p:({children:r})=>Z.createElement(V,null,r),a:({children:r,href:n})=>Z.createElement(Pi,{href:n},r),hr:()=>Z.createElement(Be,null),...o?.components}})};Lo.displayName="Markdown";import N,{forwardRef as wi,useCallback as So,useEffect as Fi,useMemo as Ai,useState as zt}from"react";import{IMaskInput as Ii,IMask as Et}from"react-imask";import Bi from"@mui/icons-material/esm/CalendarToday.js";import{styled as Ot}from"@mui/joy";import{FocusTrap as Ni,ClickAwayListener as Li,Popper as Si}from"@mui/base";var Hi=Ot(Si,{name:"MonthRangePicker",slot:"popper"})(({theme:e})=>({zIndex:e.zIndex.tooltip})),zi=Ot(j,{name:"MonthRangePicker",slot:"sheet",overridesResolver:(e,o)=>o.root})(({theme:e})=>({zIndex:e.zIndex.tooltip,width:"264px",boxShadow:e.shadow.md,borderRadius:e.radius.md})),Ho=e=>{let o=`${e.getMonth()+1}`,r=e.getFullYear();return Number(o)<10&&(o="0"+o),[r,o].join("/")},zo=([e,o])=>{let r=n=>{if(!/^\d\d\d\d\/(0[1-9]|1[012])(\/(0[1-9]|[23][0-9]))?$/.test(n))return n;let i=n.split("/"),a=new Date(Number(i[0]),Number(i[1])-1);return Ho(a)};return[r(e),r(o)].join(" - ")},Eo=e=>{let o=e.split(" - ")[0]||"",r=e.split(" - ")[1]||"";return[o,r]},Ei=N.forwardRef(function(o,r){let{onChange:n,...i}=o;return N.createElement(Ii,{...i,inputRef:r,onAccept:a=>n({target:{name:o.name,value:a}}),mask:Date,pattern:"Y/m - Y/m",blocks:{m:{mask:Et.MaskedRange,from:1,to:12,maxLength:2},Y:{mask:Et.MaskedRange,from:1900,to:9999}},format:zo,parse:Eo})}),Oo=wi((e,o)=>{let{onChange:r,disabled:n,label:i,error:a,helperText:t,minDate:l,maxDate:s,disableFuture:d,disablePast:m,required:c,...b}=e,[f,y]=zt(""),[p,u]=zt(null),k=!!p,v=Ai(()=>f?Eo(f).map(M=>new Date(M)):void 0,[f]);Fi(()=>{y(e.value?zo(Eo(e.value)):"")},[e.value]);let D=So(M=>{y(M.target.value),r?.(M)},[r]),h=So(M=>{u(p?null:M.currentTarget)},[p,u]),x=So(([M,$])=>{!M||!$||(y(zo([Ho(M),Ho($)])),u(null))},[y,u]),H=N.createElement(N.Fragment,null,N.createElement(U,{...b,ref:o,size:"sm",value:f,onChange:D,disabled:n,required:c,placeholder:"YYYY/MM - YYYY/MM",slotProps:{input:{component:Ei}},sx:{fontFamily:"monospace"},endDecorator:N.createElement(E,{variant:"plain",onClick:h},N.createElement(Bi,null))}),k&&N.createElement(Li,{onClickAway:()=>u(null)},N.createElement(Hi,{id:"date-range-picker-popper",open:!0,anchorEl:p,placement:"bottom-end",modifiers:[{name:"offset",options:{offset:[4,4]}}]},N.createElement(Ni,{open:!0},N.createElement(zi,{tabIndex:-1,role:"presentation"},N.createElement(ee,{view:"month",views:["month"],rangeSelection:!0,defaultValue:v,onChange:x,minDate:l?new Date(l):void 0,maxDate:s?new Date(s):void 0,disableFuture:d,disablePast:m}),N.createElement(_,{sx:{p:1}},N.createElement(T,{size:"sm",variant:"plain",color:"neutral",onClick:()=>{y(""),u(null)}},"Clear")))))));return i?N.createElement(F,{required:c,disabled:n,error:a,size:"sm"},N.createElement(S,null,i),H,t&&N.createElement(w,null,t)):H});Oo.displayName="MonthRangePicker";import{Radio as Oi,RadioGroup as Vi}from"@mui/joy";import{motion as Vt}from"framer-motion";var Ji=Vt(Oi),Ne=Ji;Ne.displayName="Radio";var Yi=Vt(Vi),Le=Yi;Le.displayName="RadioGroup";import Jt from"react";function Vo(e){let{items:o,...r}=e;return Jt.createElement(Le,{...r},o.map(n=>Jt.createElement(Ne,{key:`${n.value}`,value:n.value,label:n.label})))}Vo.displayName="RadioList";import Re from"react";import{Select as $i,Option as Wi}from"@mui/joy";import{motion as qi}from"framer-motion";var Gi=qi(Wi),Jo=Gi;Jo.displayName="Option";function Yo(e){let{label:o,helperText:r,error:n,size:i,color:a,disabled:t,required:l,onChange:s,...d}=e,c=Re.createElement($i,{...d,required:l,disabled:t,size:i,color:a,onChange:(b,f)=>{let y=b||{target:{}},p={...y,target:{name:y.target?.name||e.name,value:f||void 0}};s?.(p)}});return o?Re.createElement(F,{required:l,disabled:t,size:i,color:a,error:n},Re.createElement(S,null,o),c,r&&Re.createElement(w,null,r)):c}Yo.displayName="Select";import Yt from"react";import{Switch as Ui,styled as ji,switchClasses as _i}from"@mui/joy";import{motion as $t}from"framer-motion";var Zi=$t(Ui),Xi=ji($t.div)({"--Icon-fontSize":"calc(var(--Switch-thumbSize) * 0.75)",display:"inline-flex",justifyContent:"center",alignItems:"center",position:"absolute",left:"var(--Switch-thumbOffset)",width:"var(--Switch-thumbWidth)",height:"var(--Switch-thumbSize)",borderRadius:"var(--Switch-thumbRadius)",boxShadow:"var(--Switch-thumbShadow)",color:"var(--Switch-thumbColor)",backgroundColor:"var(--Switch-thumbBackground)",[`&.${_i.checked}`]:{left:"unset",right:"var(--Switch-thumbOffset)"}}),Qi=e=>Yt.createElement(Xi,{...e,layout:!0,transition:Ri}),Ri={type:"spring",stiffness:700,damping:30},$o=e=>Yt.createElement(Zi,{...e,slots:{thumb:Qi,...e.slots}});$o.displayName="Switch";import{Tabs as Ki,Tab as el,TabList as ol,TabPanel as tl,styled as rl,tabClasses as nl}from"@mui/joy";import{motion as Ke}from"framer-motion";var al=Ke(Ki),Wo=al;Wo.displayName="Tabs";var il=rl(Ke(el))(({theme:e})=>({[`&:not(.${nl.selected})`]:{color:e.palette.neutral[700]}})),qo=il;qo.displayName="Tab";var ll=Ke(ol),Go=ll;Go.displayName="TabList";var sl=Ke(tl),Uo=sl;Uo.displayName="TabPanel";import eo from"react";import{Textarea as ml}from"@mui/joy";import{motion as dl}from"framer-motion";var pl=dl(ml),jo=e=>{let{label:o,error:r,helperText:n,color:i,size:a,disabled:t,required:l,...s}=e,d=eo.createElement(pl,{required:l,disabled:t,color:i,size:a,...s});return o?eo.createElement(F,{required:l,disabled:t,color:i,size:a,error:r},eo.createElement(S,null,o),d,n&&eo.createElement(w,null,n)):d};jo.displayName="Textarea";import oo from"react";import{CssBaseline as cl,CssVarsProvider as ul,checkboxClasses as gl,extendTheme as fl}from"@mui/joy";var hl=fl({cssVarPrefix:"ceed",components:{JoyTable:{defaultProps:{size:"sm",borderAxis:"bothBetween"},styleOverrides:{root:({theme:e})=>({"--TableRow-stripeBackground":e.palette.background.level1,"--TableCell-selectedBackground":e.palette.background.level2,"--TableRow-hoverBackground":e.palette.background.level3,"& tbody tr[aria-checked=false] th":{"--TableCell-headBackground":"transparent"},"& tbody tr[aria-checked=true]:hover th":{"--TableCell-headBackground":"var(--TableRow-hoverBackground)"},"& tbody tr[aria-checked=true]:not(:hover) th":{"--TableCell-headBackground":"var(--TableCell-selectedBackground)"},"& tbody tr[aria-checked=true]:not(:hover) td":{"--TableCell-dataBackground":"var(--TableCell-selectedBackground)"},[`& .${gl.root}`]:{verticalAlign:"middle"}})}},JoyTooltip:{defaultProps:{size:"sm",placement:"top"}}}});function _o(e){return oo.createElement(oo.Fragment,null,oo.createElement(ul,{theme:hl},oo.createElement(cl,null),e.children))}_o.displayName="ThemeProvider";import Cl from"react";import{Tooltip as bl}from"@mui/joy";import{motion as yl}from"framer-motion";var xl=yl(bl),Zo=e=>Cl.createElement(xl,{...e});Zo.displayName="Tooltip";export{Ee as Accordion,ze as AccordionDetails,He as AccordionSummary,to as Accordions,ro as Alert,Ef as AspectRatio,no as Autocomplete,Ff as AutocompleteListbox,Af as AutocompleteOption,Lf as Avatar,Hf as AvatarGroup,Vf as Badge,me as Box,lo as Breadcrumbs,ge as Button,Ce as Calendar,ye as Card,uo as CardActions,po as CardContent,co as CardCover,go as CardOverflow,xe as Checkbox,jf as Chip,Zf as CircularProgress,fo as Container,vt as CurrencyInput,yo as DataTable,vo as DatePicker,ko as DateRangePicker,Pe as DialogActions,we as DialogContent,Fo as DialogFrame,Fe as DialogTitle,Be as Divider,Qf as Drawer,ue as Dropdown,Bo as FileUpload,ie as FormControl,se as FormHelperText,le as FormLabel,No as Grid,fe as IconButton,Me as Input,Ao as InsetDrawer,Kf as LinearProgress,fh as Link,oh as List,rh as ListDivider,ah as ListItem,lh as ListItemButton,mh as ListItemContent,ph as ListItemDecorator,uh as ListSubheader,Lo as Markdown,de as Menu,pe as MenuButton,ce as MenuItem,To as Modal,Xe as ModalClose,Ae as ModalDialog,wo as ModalFrame,Po as ModalOverflow,Oo as MonthRangePicker,Jo as Option,Ne as Radio,Le as RadioGroup,Vo as RadioList,Yo as Select,ke as Sheet,Ph as Skeleton,Ch as Slider,ae as Stack,yh as Step,vh as StepButton,Mh as StepIndicator,kh as Stepper,$o as Switch,qo as Tab,Go as TabList,Uo as TabPanel,Te as Table,Co as TableBody,ho as TableHead,Wo as Tabs,jo as Textarea,_o as ThemeProvider,Zo as Tooltip,V as Typography,kf as accordionClasses,Tf as accordionDetailsClasses,wf as accordionSummaryClasses,Pf as accordionsClasses,$g as alertClasses,Of as aspectRatioClasses,If as autocompleteClasses,Bf as autocompleteListboxClasses,Nf as autocompleteOptionClasses,Sf as avatarClasses,zf as avatarGroupClasses,Jf as badgeClasses,Wg as boxClasses,Yf as breadcrumbsClasses,qg as buttonClasses,Wf as cardActionsClasses,$f as cardClasses,qf as cardContentClasses,Gf as cardCoverClasses,Uf as cardOverflowClasses,Gg as checkboxClasses,_f as chipClasses,Xf as circularProgressClasses,yf as dialogActionsClasses,bf as dialogContentClasses,Cf as dialogTitleClasses,Ug as dividerClasses,Rf as drawerClasses,lf as formControlClasses,mf as formHelperTextClasses,sf as formLabelClasses,df as gridClasses,jg as iconButtonClasses,_g as inputClasses,eh as linearProgressClasses,hh as linkClasses,th as listClasses,nh as listDividerClasses,sh as listItemButtonClasses,ih as listItemClasses,dh as listItemContentClasses,ch as listItemDecoratorClasses,gh as listSubheaderClasses,Xg as menuButtonClasses,Zg as menuClasses,Qg as menuItemClasses,uf as modalClasses,gf as modalCloseClasses,ff as modalDialogClasses,hf as modalOverflowClasses,Rg as optionClasses,Kg as radioClasses,ef as radioGroupClasses,of as selectClasses,cf as sheetClasses,wh as skeletonClasses,bh as sliderClasses,pf as stackClasses,Dh as stepButtonClasses,xh as stepClasses,Th as stepperClasses,tf as switchClasses,Df as tabListClasses,Mf as tabPanelClasses,rf as tableClasses,vf as tabsClasses,nf as textareaClasses,xf as tooltipClasses,af as typographyClasses,Jg as useColorScheme,Vg as useTheme,Yg as useThemeProps};
|