@recursica/mantine-adapter 0.41.0 → 0.42.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @recursica/mantine-adapter
2
2
 
3
+ ## 0.42.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e0f5643: Implement `TransferList` (dual listbox) in both adapters, replacing the "coming soon" stub. Composes `FormControlWrapper`, `TextField`, `Checkbox`/`CheckboxGroup`, `Badge`, and `Button` — supports controlled/uncontrolled `data`, per-item grouping, per-pane search, and `stacked`/`side-by-side` form layout.
8
+ - 2fb7069: Fix `Slider`'s `Disabled` story (was passing `disabled: false` in both adapters). In `mui-adapter`, also fix the disabled track showing red instead of grey, make the thumb focus ring keyboard-only (no glow on click/drag) to match Mantine, render assistive text as a `<span>`, and align mark label color/position with Mantine (which now applies its own mark label color token too).
9
+ - 2fb7069: Fix `TextArea`: error state border now uses the recursica error color (was never triggering in either adapter). MUI disabled background/border, focus ring color, and default height now match Mantine instead of MUI's own defaults.
10
+
11
+ ### Patch Changes
12
+
13
+ - 1616144: Fix `FileInput`'s clear-all button: pressing Enter or Space while it was focused opened the native file picker instead of clearing the selection (a regression from switching the control to the shared `Button` component, which dropped the keydown handler the previous bespoke element had).
14
+ - 3ff5821: Fix `TransferList` checkboxes not toggling/showing checked state in either adapter (grouping-for-layout was silently overriding item selection). Add `readOnly` support and a `ReadOnly` story.
15
+ - Updated dependencies [e0f5643]
16
+ - Updated dependencies [1616144]
17
+ - Updated dependencies [3ff5821]
18
+ - @recursica/adapter-common@0.18.0
19
+
3
20
  ## 0.41.0
4
21
 
5
22
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -1522,6 +1522,9 @@ declare namespace rawComponents {
1522
1522
  TooltipFloatingProps,
1523
1523
  TooltipFloating,
1524
1524
  Tooltip_2 as Tooltip,
1525
+ RecursicaTransferListItem,
1526
+ RecursicaTransferListData,
1527
+ RecursicaTransferListProps_2 as RecursicaTransferListProps,
1525
1528
  TransferListProps,
1526
1529
  TransferList_2 as TransferList,
1527
1530
  TreeProps,
@@ -1575,7 +1578,7 @@ declare type ReadOnlyTextFieldProps = RecursicaOverStyled<RecursicaReadOnlyTextF
1575
1578
  /**
1576
1579
  * Official list of all components in Recursica.
1577
1580
  */
1578
- export declare const RECURSICA_COMPONENTS: readonly ["Accordion", "AssistiveElement", "Autocomplete", "Avatar", "Badge", "Breadcrumb", "Button", "Card", "Checkbox", "Chip", "Container", "DatePicker", "Dropdown", "EmptyValueRenderer", "FileInput", "Flex", "FormControlLayout", "FormControlWrapper", "Grid", "Group", "HoverCard", "Label", "Layer", "Link", "Loader", "Menu", "Modal", "NumberInput", "Pagination", "Panel", "Popover", "Radio", "ReadOnlyField", "SegmentedControl", "Slider", "Stack", "Stepper", "Switch", "Table", "Tabs", "Text", "TextArea", "TextField", "TimePicker", "Timeline", "Title", "Toast", "Tooltip", "TransferList"];
1581
+ export declare const RECURSICA_COMPONENTS: readonly ["Accordion", "AssistiveElement", "Autocomplete", "Avatar", "Badge", "Box", "Breadcrumb", "Button", "Card", "Checkbox", "CheckboxGroup", "Chip", "Container", "DatePicker", "Dropdown", "EmptyValueRenderer", "FileInput", "FileUpload", "Flex", "FormControlLayout", "FormControlWrapper", "Grid", "Group", "HoverCard", "Label", "Layer", "Link", "Loader", "Menu", "Modal", "NumberInput", "Pagination", "Panel", "Popover", "Radio", "ReadOnlyField", "SegmentedControl", "Slider", "Stack", "Stepper", "Switch", "Table", "Tabs", "Text", "TextArea", "TextField", "TimePicker", "Timeline", "Title", "Toast", "Tooltip", "TransferList", "Tree", "Typography"];
1579
1582
 
1580
1583
  /**
1581
1584
  * Props for the Recursica Accordion Control component.
@@ -2641,10 +2644,47 @@ export declare interface RecursicaTooltipProps {
2641
2644
  withBeak?: boolean;
2642
2645
  }
2643
2646
 
2647
+ /** Controlled/uncontrolled data shape: [sourceItems, targetItems] */
2648
+ export declare type RecursicaTransferListData = [
2649
+ RecursicaTransferListItem[],
2650
+ RecursicaTransferListItem[]
2651
+ ];
2652
+
2653
+ /**
2654
+ * A single transferable item.
2655
+ */
2656
+ export declare interface RecursicaTransferListItem {
2657
+ /** Unique identifier used for selection and transfer */
2658
+ value: string;
2659
+ /** Display text */
2660
+ label: string;
2661
+ /** Optional group name — items sharing a group render under a CheckboxGroup */
2662
+ group?: string;
2663
+ }
2664
+
2644
2665
  /**
2645
2666
  * Props for the Recursica TransferList component.
2646
2667
  */
2647
2668
  export declare interface RecursicaTransferListProps {
2669
+ /** Controlled data: [sourceItems, targetItems] */
2670
+ data?: RecursicaTransferListData;
2671
+ /** Uncontrolled initial data: [sourceItems, targetItems] */
2672
+ defaultData?: RecursicaTransferListData;
2673
+ /** Called with the new [sourceItems, targetItems] whenever items are transferred */
2674
+ onChange?: (data: RecursicaTransferListData) => void;
2675
+ /** Label for the source (left) list */
2676
+ sourceLabel?: string;
2677
+ /** Label for the target (right) list */
2678
+ targetLabel?: string;
2679
+ /** Enable per-pane search filtering. Defaults to true */
2680
+ searchable?: boolean;
2681
+ /** Placeholder text for the search fields */
2682
+ searchPlaceholder?: string;
2683
+ }
2684
+
2685
+ declare interface RecursicaTransferListProps_2 extends Omit<FormControlWrapperProps, "children" | "overStyled" | "controlMaxWidth" | "controlMinWidth" | "onChange">, ReadOnlyControlProps, RecursicaTransferListProps {
2686
+ /** Disables the whole control */
2687
+ disabled?: boolean;
2648
2688
  }
2649
2689
 
2650
2690
  /**
@@ -3081,9 +3121,9 @@ declare type TooltipProps = RecursicaOverStyled<TooltipProps_2 & RecursicaToolti
3081
3121
 
3082
3122
  export declare const TransferList: typeof rawComponents.TransferList;
3083
3123
 
3084
- declare const TransferList_2: default_2.FC<TransferListProps>;
3124
+ declare const TransferList_2: ForwardRefExoticComponent<TransferListProps & RefAttributes<HTMLDivElement>>;
3085
3125
 
3086
- declare type TransferListProps = default_2.HTMLAttributes<HTMLDivElement> & RecursicaTransferListProps;
3126
+ declare type TransferListProps = RecursicaOverStyled<RecursicaTransferListProps_2>;
3087
3127
 
3088
3128
  export declare const Tree: typeof rawComponents.Tree;
3089
3129
 
@@ -1,4 +1,4 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("react/jsx-runtime"),d=require("react"),m=require("@mantine/core"),yt=require("@mantine/dates"),us=require("@mantine/hooks");var ko=typeof document<"u"?document.currentScript:null;const ms=["className","classNames","style","styles","vars","p","px","py","pt","pb","pl","pr","bg","c","opacity","ff","fz","fw","lts","ta","lh","fs","tt","td","bd","bdw","bds","bdc","bdr","shadow","w","miw","maw","h","mih","mah"],bt=new Set(["m","my","mx","mt","mb","ml","mr","gap","rowGap","columnGap","top","left","bottom","right"]),Co={"rec-none":"var(--recursica_brand_dimensions_general_none)","rec-sm":"var(--recursica_brand_dimensions_general_sm)","rec-default":"var(--recursica_brand_dimensions_general_default)","rec-md":"var(--recursica_brand_dimensions_general_md)","rec-lg":"var(--recursica_brand_dimensions_general_lg)","rec-xl":"var(--recursica_brand_dimensions_general_xl)","rec-2xl":"var(--recursica_brand_dimensions_general_2xl)"};function bo(n){const e={...n};for(const[r,o]of Object.entries(e))typeof o=="string"&&o.startsWith("rec-")&&bt.has(r)&&o in Co&&(e[r]=Co[o]);return e}function b(n,e){if(e)return n;const r={...n};for(const o of ms)o in r&&delete r[o];for(const[o,t]of Object.entries(r))typeof t=="string"&&t.startsWith("rec-")&&bt.has(o)&&t in Co&&(r[o]=Co[t]);return r}const _s="Accordion-module__root___Dem6d",fs="Accordion-module__item___7ryVk",ys="Accordion-module__noDivider___Ni2tT",bs="Accordion-module__control___b4wgX",hs="Accordion-module__label___Ss7uW",vs="Accordion-module__icon___xfHxX",Ns="Accordion-module__chevron___i-HVZ",xs="Accordion-module__iconLeftWrapper___5oLen",$s="Accordion-module__panel___Wx50w",ws="Accordion-module__content___PEM9t",ve={root:_s,item:fs,noDivider:ys,control:bs,label:hs,icon:vs,chevron:Ns,iconLeftWrapper:xs,panel:$s,content:ws},ct={default:"unstyled"},ht=function({variant:e="default",overStyled:r=!1,...o}){const t=typeof e=="string"&&ct[e]?ct[e]:e,a=b(o,r),l={root:ve.root,item:ve.item,control:ve.control,label:ve.label,chevron:ve.chevron,icon:ve.icon,panel:ve.panel,content:ve.content},i=a.classNames;if(i&&typeof i=="object"&&!Array.isArray(i)){const p=i;Object.keys(p).forEach(u=>{l[u]?l[u]=`${l[u]} ${p[u]}`:l[u]=p[u]})}const c=a.className;return s.jsx(m.Accordion,{variant:t,className:c,classNames:l,...a})};ht.displayName="Accordion";const Fo=d.forwardRef(function({title:e,leftIcon:r,divider:o=!0,children:t,disabled:a=!1,overStyled:l=!1,...i},c){const p=b(i,l),u=p.className,_=[o?void 0:ve.noDivider,u].filter(Boolean).join(" ")||void 0;return s.jsx(m.Accordion.Item,{ref:c,className:_,"data-disabled":a||void 0,...p,children:e?s.jsxs(s.Fragment,{children:[s.jsx(To,{leftIcon:r,disabled:a,children:e}),s.jsx(jo,{children:t})]}):t})});Fo.displayName="AccordionItem";const To=d.forwardRef(function({leftIcon:e,children:r,overStyled:o=!1,...t},a){const l=b(t,o),i=l.className;return s.jsx(m.Accordion.Control,{ref:a,className:i,icon:e?s.jsx("span",{className:ve.iconLeftWrapper,"aria-hidden":!0,children:e}):void 0,...l,children:r})});To.displayName="AccordionControl";const jo=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t.className;return s.jsx(m.Accordion.Panel,{ref:o,className:a,...t})});jo.displayName="AccordionPanel";const So=ht;So.Item=Fo;So.Control=To;So.Panel=jo;const Cs="AssistiveElement-module__root___WhQ43",Ps="AssistiveElement-module__textWrapper___sfy5E",gs="AssistiveElement-module__iconWrapper___gObRF",Wo={root:Cs,textWrapper:Ps,iconWrapper:gs},Ts=()=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[s.jsx("circle",{cx:"12",cy:"12",r:"10"}),s.jsx("path",{d:"M12 16v-4"}),s.jsx("path",{d:"M12 8h.01"})]}),js=()=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[s.jsx("path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z"}),s.jsx("path",{d:"M12 9v4"}),s.jsx("path",{d:"M12 17h.01"})]}),Po=d.forwardRef(function({assistiveVariant:e="help",assistiveWithIcon:r=!0,children:o,className:t,role:a,overStyled:l=!1,...i},c){const u=b(i,l),_=Wo.root,x=t?`${_} ${t}`:_,y=e==="error"?js:Ts,f=a??(e==="error"?"alert":void 0);return s.jsxs("div",{ref:c,className:x,"data-variant":e,role:f,style:u.style,...u,children:[r&&s.jsx("span",{className:Wo.iconWrapper,children:s.jsx(y,{})}),s.jsx("span",{className:Wo.textWrapper,children:o})]})});Po.displayName="AssistiveElement";const Ss="Label-module__root___e6HXZ",Rs="Label-module__labelText___rieFR",As="Label-module__required___Ggrzc",Is="Label-module__optionalText___Y2yun",Ls="Label-module__actionAreaWrapper___ELoZK",Os="Label-module__editIconWrapper___NG2xW",ce={root:Ss,labelText:Rs,required:As,optionalText:Is,actionAreaWrapper:Ls,editIconWrapper:Os},Eo=d.forwardRef(function({labelSize:e="default",labelAlignment:r,required:o=!1,labelOptionalText:t,labelWithEditIcon:a,labelActionArea:l,onLabelEditClick:i,children:c,overStyled:p=!1,...u},_){const x=r||"left";let y;o||(t===!0?y="optional":t&&(y=t));const f=b(u,p),N=f,g={label:ce.root,required:ce.required},C=N.classNames;if(C&&typeof C=="object"&&!Array.isArray(C)){const v=C;g.label=v.label?`${ce.root} ${v.label}`:ce.root,g.required=v.required?`${ce.required} ${v.required}`:ce.required}const P=N.className,h=P?`${ce.root} ${P}`:ce.root;return s.jsxs(m.Input.Label,{ref:_,className:h,classNames:g,"data-size":e,"data-alignment":x,required:o&&!a,...f,children:[s.jsx("span",{className:ce.labelText,children:c}),y&&s.jsx("span",{className:ce.optionalText,children:typeof y=="string"?`(${y})`:y}),l?s.jsx("span",{className:ce.actionAreaWrapper,children:l}):a?s.jsx("button",{type:"button",className:ce.editIconWrapper,"data-replaces-asterisk":o?"true":void 0,onClick:i,"aria-label":"Edit",children:s.jsx("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:s.jsx("path",{d:"M11.5303 2.46967C11.8232 2.17678 12.2981 2.17678 12.591 2.46967L13.5303 3.40898C13.8232 3.70188 13.8232 4.17675 13.5303 4.46964L5.61288 12.3871C5.45268 12.5473 5.24434 12.6483 5.01809 12.6766L2.39534 13.0044C2.10091 13.0412 1.83856 12.7789 1.87538 12.4845L2.2032 9.86175C2.23147 9.63551 2.3325 9.42716 2.4927 9.26696L11.5303 2.46967Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})})}):null]})});Eo.displayName="Label";const Ms="FormControlLayout-module__root___yNDhZ",ks="FormControlLayout-module__leftSection___GBM1r",Ws="FormControlLayout-module__rightSection___bcL4v",xo={root:Ms,leftSection:ks,rightSection:Ws},je=d.forwardRef(function({formLayout:e="stacked",labelSize:r="default",controlMaxWidth:o,controlMinWidth:t,leftSection:a,children:l,className:i,style:c,...p},u){const _=i?`${xo.root} ${i}`:xo.root,y=a!=null||e==="side-by-side";return s.jsxs("div",{ref:u,className:_,"data-form-layout":e,style:{...c,...o?{"--form-control-max-width":o}:{},...t?{"--form-control-min-width":t}:{}},...p,children:[y&&s.jsx("div",{className:xo.leftSection,"data-size":r,children:a}),s.jsx("div",{className:xo.rightSection,children:l})]})});je.displayName="FormControlLayout";const zs="FormControlWrapper-module__root___c-UHo",Fs="FormControlWrapper-module__inputSection___HenXk",dt={root:zs,inputSection:Fs},ro=d.forwardRef(function({formLayout:e,labelSize:r,labelAlignment:o,labelOptionalText:t,labelWithEditIcon:a,labelActionArea:l,onLabelEditClick:i,label:c,description:p,assistiveText:u,assistiveWithIcon:_=!0,controlMaxWidth:x,controlMinWidth:y,error:f,required:N,withAsterisk:g,id:C,children:P,className:h,overStyled:v=!1,labelElement:w,...$},j){const T=d.useId(),O=C||`recursica-fc-${T}`,M=u||p,S=M?`${O}-assistive`:void 0,R=f?`${O}-error`:void 0,z=b($,v),I=h||z.className,Z=dt.root,re=I?`${Z} ${I}`:Z,H=d.isValidElement(P)?d.cloneElement(P,{...M&&!P.props["aria-describedby"]?{"aria-describedby":S}:{},...f&&!P.props["aria-errormessage"]?{"aria-errormessage":R}:{}}):P,he=c?s.jsx(Eo,{id:O,labelAlignment:o,labelOptionalText:t,labelWithEditIcon:a,labelActionArea:l,onLabelEditClick:i,required:g??N,...w==="div"?{as:"div"}:{},children:c}):void 0;return s.jsx(je,{ref:j,className:re,formLayout:e,labelSize:r,controlMaxWidth:x,controlMinWidth:y,leftSection:he,...z,children:s.jsxs("div",{className:dt.inputSection,children:[H,f&&s.jsx(Po,{id:R,assistiveVariant:"error",assistiveWithIcon:_,children:f}),!f&&M&&s.jsx(Po,{id:S,assistiveVariant:"help",assistiveWithIcon:_,children:M})]})})});ro.displayName="FormControlWrapper";const Es="_root_1qhn7_3",Ds="_contents_1qhn7_18",to={root:Es,contents:Ds},Do=d.forwardRef(function({layer:n,contentsOnly:e,children:r,className:o,style:t,...a},l){const i=e?o?`${to.root} ${to.contents} ${o}`:`${to.root} ${to.contents}`:o?`${to.root} ${o}`:to.root;return s.jsx("div",{ref:l,className:i,style:t,...e?{}:{"data-recursica-layer":String(n)},...a,children:r})});Do.displayName="Layer";const fo=({emptyText:n="N/A"})=>s.jsx(d.Fragment,{children:n});fo.displayName="EmptyValueRenderer";fo.check=n=>n==null||n===""||Array.isArray(n)&&n.length===0;const Bs={BASE_URL:"/",DEV:!1,MODE:"library",PROD:!0,SSR:!1,VITE_PLUGIN_MODE:"production",VITE_PLUGIN_PHRASE:"recursica_plugin_@K9mX7pQw2VbN8fRt3LzY6HjE4CuA5DsG1WvM9nP0XcB7",VITE_PLUGIN_PHRASE_TEST:"recursica_plugin_@19866374",VITE_RECURSICA_API_TEST:"https://dev-api.recursica.com",VITE_RECURSICA_API_URL:"https://api.recursica.com",VITE_RECURSICA_UI_URL:"https://api.recursica.com"},De=(()=>{try{if(typeof process<"u"&&process.env&&process.env.NODE_ENV)return process.env.NODE_ENV!=="production"}catch{}try{if({url:typeof document>"u"?require("url").pathToFileURL(__filename).href:ko&&ko.tagName.toUpperCase()==="SCRIPT"&&ko.src||new URL("mantine-adapter.cjs",document.baseURI).href}&&Bs)return!0}catch{}if(typeof window<"u"){const n=window.location.hostname;return n==="localhost"||n==="127.0.0.1"||n.endsWith(".local")}return!1})(),zo=new Set;let Fe=!1;function vt(n){if(!De)return console.warn("[Recursica] overStyled highlight is disabled in production builds."),!1;if(Fe=n!==void 0?n:!Fe,typeof document<"u"){const e=document.documentElement,r=Fe?"0 0 0 2px cyan":"none";e.style.setProperty("--recursica-over-styled-shadow",r),console.log(`[Recursica] Highlight outlines toggled: ${Fe?"ACTIVE (0 0 0 2px cyan)":"INACTIVE"}`)}else console.warn("[Recursica] document is undefined. Cannot set CSS property.");return zo.forEach(e=>e()),Fe}function Gs(){return De&&Fe}function Nt(){const[n,e]=d.useState(Fe);return d.useEffect(()=>{if(!De)return;Bo(),Go();const r=()=>e(Fe);return zo.add(r),()=>{zo.delete(r)}},[]),De&&n}function Bo(){if(!De)return;if(typeof document>"u"){console.warn("[Recursica] document is undefined. Cannot inject overStyled styles.");return}const n="recursica-over-styled-styles";let e=document.getElementById(n);e||(e=document.createElement("style"),e.id=n,e.textContent=`
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("react/jsx-runtime"),c=require("react"),m=require("@mantine/core"),Nt=require("@mantine/dates"),hs=require("@mantine/hooks");var Fo=typeof document<"u"?document.currentScript:null;const bs=["className","classNames","style","styles","vars","p","px","py","pt","pb","pl","pr","bg","c","opacity","ff","fz","fw","lts","ta","lh","fs","tt","td","bd","bdw","bds","bdc","bdr","shadow","w","miw","maw","h","mih","mah"],xt=new Set(["m","my","mx","mt","mb","ml","mr","gap","rowGap","columnGap","top","left","bottom","right"]),So={"rec-none":"var(--recursica_brand_dimensions_general_none)","rec-sm":"var(--recursica_brand_dimensions_general_sm)","rec-default":"var(--recursica_brand_dimensions_general_default)","rec-md":"var(--recursica_brand_dimensions_general_md)","rec-lg":"var(--recursica_brand_dimensions_general_lg)","rec-xl":"var(--recursica_brand_dimensions_general_xl)","rec-2xl":"var(--recursica_brand_dimensions_general_2xl)"};function wo(n){const e={...n};for(const[s,o]of Object.entries(e))typeof o=="string"&&o.startsWith("rec-")&&xt.has(s)&&o in So&&(e[s]=So[o]);return e}function h(n,e){if(e)return n;const s={...n};for(const o of bs)o in s&&delete s[o];for(const[o,t]of Object.entries(s))typeof t=="string"&&t.startsWith("rec-")&&xt.has(o)&&t in So&&(s[o]=So[t]);return s}const vs="Accordion-module__root___Dem6d",Ns="Accordion-module__item___7ryVk",xs="Accordion-module__noDivider___Ni2tT",$s="Accordion-module__control___b4wgX",Cs="Accordion-module__label___Ss7uW",ws="Accordion-module__icon___xfHxX",gs="Accordion-module__chevron___i-HVZ",Ps="Accordion-module__iconLeftWrapper___5oLen",Ts="Accordion-module__panel___Wx50w",js="Accordion-module__content___PEM9t",Se={root:vs,item:Ns,noDivider:xs,control:$s,label:Cs,icon:ws,chevron:gs,iconLeftWrapper:Ps,panel:Ts,content:js},ut={default:"unstyled"},$t=function({variant:e="default",overStyled:s=!1,...o}){const t=typeof e=="string"&&ut[e]?ut[e]:e,a=h(o,s),l={root:Se.root,item:Se.item,control:Se.control,label:Se.label,chevron:Se.chevron,icon:Se.icon,panel:Se.panel,content:Se.content},i=a.classNames;if(i&&typeof i=="object"&&!Array.isArray(i)){const u=i;Object.keys(u).forEach(p=>{l[p]?l[p]=`${l[p]} ${u[p]}`:l[p]=u[p]})}const d=a.className;return r.jsx(m.Accordion,{variant:t,className:d,classNames:l,...a})};$t.displayName="Accordion";const Bo=c.forwardRef(function({title:e,leftIcon:s,divider:o=!0,children:t,disabled:a=!1,overStyled:l=!1,...i},d){const u=h(i,l),p=u.className,_=[o?void 0:Se.noDivider,p].filter(Boolean).join(" ")||void 0;return r.jsx(m.Accordion.Item,{ref:d,className:_,"data-disabled":a||void 0,...u,children:e?r.jsxs(r.Fragment,{children:[r.jsx(Lo,{leftIcon:s,disabled:a,children:e}),r.jsx(Io,{children:t})]}):t})});Bo.displayName="AccordionItem";const Lo=c.forwardRef(function({leftIcon:e,children:s,overStyled:o=!1,...t},a){const l=h(t,o),i=l.className;return r.jsx(m.Accordion.Control,{ref:a,className:i,icon:e?r.jsx("span",{className:Se.iconLeftWrapper,"aria-hidden":!0,children:e}):void 0,...l,children:s})});Lo.displayName="AccordionControl";const Io=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t.className;return r.jsx(m.Accordion.Panel,{ref:o,className:a,...t})});Io.displayName="AccordionPanel";const ko=$t;ko.Item=Bo;ko.Control=Lo;ko.Panel=Io;const Ss="AssistiveElement-module__root___WhQ43",Rs="AssistiveElement-module__textWrapper___sfy5E",As="AssistiveElement-module__iconWrapper___gObRF",Eo={root:Ss,textWrapper:Rs,iconWrapper:As},Ls=()=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[r.jsx("circle",{cx:"12",cy:"12",r:"10"}),r.jsx("path",{d:"M12 16v-4"}),r.jsx("path",{d:"M12 8h.01"})]}),Is=()=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[r.jsx("path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z"}),r.jsx("path",{d:"M12 9v4"}),r.jsx("path",{d:"M12 17h.01"})]}),Ro=c.forwardRef(function({assistiveVariant:e="help",assistiveWithIcon:s=!0,children:o,className:t,role:a,overStyled:l=!1,...i},d){const p=h(i,l),_=Eo.root,$=t?`${_} ${t}`:_,y=e==="error"?Is:Ls,f=a??(e==="error"?"alert":void 0);return r.jsxs("div",{ref:d,className:$,"data-variant":e,role:f,style:p.style,...p,children:[s&&r.jsx("span",{className:Eo.iconWrapper,children:r.jsx(y,{})}),r.jsx("span",{className:Eo.textWrapper,children:o})]})});Ro.displayName="AssistiveElement";const ks="Label-module__root___e6HXZ",Os="Label-module__labelText___rieFR",Ms="Label-module__required___Ggrzc",Ws="Label-module__optionalText___Y2yun",zs="Label-module__actionAreaWrapper___ELoZK",Fs="Label-module__editIconWrapper___NG2xW",Ce={root:ks,labelText:Os,required:Ms,optionalText:Ws,actionAreaWrapper:zs,editIconWrapper:Fs},Go=c.forwardRef(function({labelSize:e="default",labelAlignment:s,required:o=!1,labelOptionalText:t,labelWithEditIcon:a,labelActionArea:l,onLabelEditClick:i,children:d,overStyled:u=!1,...p},_){const $=s||"left";let y;o||(t===!0?y="optional":t&&(y=t));const f=h(p,u),N=f,P={label:Ce.root,required:Ce.required},w=N.classNames;if(w&&typeof w=="object"&&!Array.isArray(w)){const v=w;P.label=v.label?`${Ce.root} ${v.label}`:Ce.root,P.required=v.required?`${Ce.required} ${v.required}`:Ce.required}const T=N.className,b=T?`${Ce.root} ${T}`:Ce.root;return r.jsxs(m.Input.Label,{ref:_,className:b,classNames:P,"data-size":e,"data-alignment":$,required:o&&!a,...f,children:[r.jsx("span",{className:Ce.labelText,children:d}),y&&r.jsx("span",{className:Ce.optionalText,children:typeof y=="string"?`(${y})`:y}),l?r.jsx("span",{className:Ce.actionAreaWrapper,children:l}):a?r.jsx("button",{type:"button",className:Ce.editIconWrapper,"data-replaces-asterisk":o?"true":void 0,onClick:i,"aria-label":"Edit",children:r.jsx("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:r.jsx("path",{d:"M11.5303 2.46967C11.8232 2.17678 12.2981 2.17678 12.591 2.46967L13.5303 3.40898C13.8232 3.70188 13.8232 4.17675 13.5303 4.46964L5.61288 12.3871C5.45268 12.5473 5.24434 12.6483 5.01809 12.6766L2.39534 13.0044C2.10091 13.0412 1.83856 12.7789 1.87538 12.4845L2.2032 9.86175C2.23147 9.63551 2.3325 9.42716 2.4927 9.26696L11.5303 2.46967Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})})}):null]})});Go.displayName="Label";const Es="FormControlLayout-module__root___yNDhZ",Ds="FormControlLayout-module__leftSection___GBM1r",Bs="FormControlLayout-module__rightSection___bcL4v",Po={root:Es,leftSection:Ds,rightSection:Bs},ze=c.forwardRef(function({formLayout:e="stacked",labelSize:s="default",controlMaxWidth:o,controlMinWidth:t,leftSection:a,children:l,className:i,style:d,...u},p){const _=i?`${Po.root} ${i}`:Po.root,y=a!=null||e==="side-by-side";return r.jsxs("div",{ref:p,className:_,"data-form-layout":e,style:{...d,...o?{"--form-control-max-width":o}:{},...t?{"--form-control-min-width":t}:{}},...u,children:[y&&r.jsx("div",{className:Po.leftSection,"data-size":s,children:a}),r.jsx("div",{className:Po.rightSection,children:l})]})});ze.displayName="FormControlLayout";const Gs="FormControlWrapper-module__root___c-UHo",Vs="FormControlWrapper-module__inputSection___HenXk",pt={root:Gs,inputSection:Vs},_o=c.forwardRef(function({formLayout:e,labelSize:s,labelAlignment:o,labelOptionalText:t,labelWithEditIcon:a,labelActionArea:l,onLabelEditClick:i,label:d,description:u,assistiveText:p,assistiveWithIcon:_=!0,controlMaxWidth:$,controlMinWidth:y,error:f,required:N,withAsterisk:P,id:w,children:T,className:b,overStyled:v=!1,labelElement:C,...x},j){const g=c.useId(),O=w||`recursica-fc-${g}`,M=p||u,S=M?`${O}-assistive`:void 0,R=f?`${O}-error`:void 0,F=h(x,v),L=b||F.className,ee=pt.root,ie=L?`${ee} ${L}`:ee,q=c.isValidElement(T)?c.cloneElement(T,{...M&&!T.props["aria-describedby"]?{"aria-describedby":S}:{},...f&&!T.props["aria-errormessage"]?{"aria-errormessage":R}:{}}):T,me=d?r.jsx(Go,{id:O,labelAlignment:o,labelOptionalText:t,labelWithEditIcon:a,labelActionArea:l,onLabelEditClick:i,required:P??N,...C==="div"?{as:"div"}:{},children:d}):void 0;return r.jsx(ze,{ref:j,className:ie,formLayout:e,labelSize:s,controlMaxWidth:$,controlMinWidth:y,leftSection:me,...F,children:r.jsxs("div",{className:pt.inputSection,children:[q,f&&r.jsx(Ro,{id:R,assistiveVariant:"error",assistiveWithIcon:_,children:f}),!f&&M&&r.jsx(Ro,{id:S,assistiveVariant:"help",assistiveWithIcon:_,children:M})]})})});_o.displayName="FormControlWrapper";const Hs="_root_1qhn7_3",qs="_contents_1qhn7_18",mo={root:Hs,contents:qs},Vo=c.forwardRef(function({layer:n,contentsOnly:e,children:s,className:o,style:t,...a},l){const i=e?o?`${mo.root} ${mo.contents} ${o}`:`${mo.root} ${mo.contents}`:o?`${mo.root} ${o}`:mo.root;return r.jsx("div",{ref:l,className:i,style:t,...e?{}:{"data-recursica-layer":String(n)},...a,children:s})});Vo.displayName="Layer";const No=({emptyText:n="N/A"})=>r.jsx(c.Fragment,{children:n});No.displayName="EmptyValueRenderer";No.check=n=>n==null||n===""||Array.isArray(n)&&n.length===0;const Us={BASE_URL:"/",DEV:!1,MODE:"library",PROD:!0,SSR:!1,VITE_PLUGIN_MODE:"production",VITE_PLUGIN_PHRASE:"recursica_plugin_@K9mX7pQw2VbN8fRt3LzY6HjE4CuA5DsG1WvM9nP0XcB7",VITE_PLUGIN_PHRASE_TEST:"recursica_plugin_@19866374",VITE_RECURSICA_API_TEST:"https://dev-api.recursica.com",VITE_RECURSICA_API_URL:"https://api.recursica.com",VITE_RECURSICA_UI_URL:"https://api.recursica.com"},oo=(()=>{try{if(typeof process<"u"&&process.env&&process.env.NODE_ENV)return process.env.NODE_ENV!=="production"}catch{}try{if({url:typeof document>"u"?require("url").pathToFileURL(__filename).href:Fo&&Fo.tagName.toUpperCase()==="SCRIPT"&&Fo.src||new URL("mantine-adapter.cjs",document.baseURI).href}&&Us)return!0}catch{}if(typeof window<"u"){const n=window.location.hostname;return n==="localhost"||n==="127.0.0.1"||n.endsWith(".local")}return!1})(),Do=new Set;let Qe=!1;function Ct(n){if(!oo)return console.warn("[Recursica] overStyled highlight is disabled in production builds."),!1;if(Qe=n!==void 0?n:!Qe,typeof document<"u"){const e=document.documentElement,s=Qe?"0 0 0 2px cyan":"none";e.style.setProperty("--recursica-over-styled-shadow",s),console.log(`[Recursica] Highlight outlines toggled: ${Qe?"ACTIVE (0 0 0 2px cyan)":"INACTIVE"}`)}else console.warn("[Recursica] document is undefined. Cannot set CSS property.");return Do.forEach(e=>e()),Qe}function Ks(){return oo&&Qe}function wt(){const[n,e]=c.useState(Qe);return c.useEffect(()=>{if(!oo)return;Ho(),qo();const s=()=>e(Qe);return Do.add(s),()=>{Do.delete(s)}},[]),oo&&n}function Ho(){if(!oo)return;if(typeof document>"u"){console.warn("[Recursica] document is undefined. Cannot inject overStyled styles.");return}const n="recursica-over-styled-styles";let e=document.getElementById(n);e||(e=document.createElement("style"),e.id=n,e.textContent=`
2
2
  :root {
3
3
  --recursica-over-styled-shadow: none;
4
4
  }
@@ -8,5 +8,5 @@
8
8
  .recursica-over-styled > * {
9
9
  box-shadow: var(--recursica-over-styled-shadow) !important;
10
10
  }
11
- `,document.head.appendChild(e))}function Go(){if(!De)return;if(typeof window>"u"){console.warn("[Recursica] window is undefined. Cannot register console command.");return}const n=e=>{try{e.recursica=e.recursica||{},e.recursica.toggleOverStyled=()=>`[Recursica] Overstyled outline highlight is now: ${vt()?"ON (cyan 2px box shadow)":"OFF"}`}catch{}};n(window),window.parent&&window.parent!==window&&n(window.parent)}const pt="data-recursica-theme";function Vs({children:n,theme:e="light",initLayer0:r=!0}){return d.useEffect(()=>{const o=document.documentElement;return o.setAttribute(pt,e),()=>{o.removeAttribute(pt)}},[e]),d.useEffect(()=>{Bo(),Go()},[]),r?s.jsx(Do,{layer:0,children:n}):s.jsx(s.Fragment,{children:n})}const Hs=["Accordion","AssistiveElement","Autocomplete","Avatar","Badge","Breadcrumb","Button","Card","Checkbox","Chip","Container","DatePicker","Dropdown","EmptyValueRenderer","FileInput","Flex","FormControlLayout","FormControlWrapper","Grid","Group","HoverCard","Label","Layer","Link","Loader","Menu","Modal","NumberInput","Pagination","Panel","Popover","Radio","ReadOnlyField","SegmentedControl","Slider","Stack","Stepper","Switch","Table","Tabs","Text","TextArea","TextField","TimePicker","Timeline","Title","Toast","Tooltip","TransferList"],qs=(n,e)=>{const r=document.activeElement;return new Promise((o,t)=>{if(e&&e.current){const a=document.createElement("textarea");a.readOnly=!0,a.defaultValue=n,e.current.appendChild(a),a.select();const l=document.execCommand("copy");e.current.removeChild(a),r&&r.focus(),l?o():t(new Error("Failed to copy"))}else t(new Error("Copy area reference is not defined"))})};function Vo(n,e){const r=(e??"").split(",").map(a=>a.trim().toLowerCase()).filter(Boolean);if(r.length===0)return!0;const o=n.name.toLowerCase(),t=n.type.toLowerCase();return r.some(a=>a.startsWith(".")?o.endsWith(a):a.endsWith("/*")?t.startsWith(a.slice(0,-1)):t===a)}function A(n){if(!De||typeof n!="function"&&!(n&&n.$$typeof))return n;const e=d.forwardRef((o,t)=>{const{overStyled:a}=o,l=Nt(),i=d.createElement(n,{...o,ref:t});return a&&l?s.jsx("div",{className:"recursica-over-styled",children:i}):i});e.displayName=n.displayName||n.name||"Component";const r=Object.keys(n);for(const o of r){if(o==="render"||o==="$$typeof")continue;const t=n[o];(typeof t=="function"||t&&t.$$typeof)&&o[0]===o[0].toUpperCase()?e[o]=A(t):e[o]=t}return e}const Us="ReadOnlyField-module__layoutOverride___9fSsG",Ks="ReadOnlyField-module__textField___qKn25",go={layoutOverride:Us,textField:Ks},wo=({value:n,overStyled:e=!1,...r})=>{const o=b(r,e),t=o.className;return s.jsx(m.Box,{component:"p",className:t?`${go.textField} ${t}`:go.textField,...o,children:n!=null?d.isValidElement(n)?n:Array.isArray(n)?n.join(", "):String(n):""})};wo.displayName="ReadOnlyTextField";const Ho=d.forwardRef(function({value:e,type:r="text",emptyValueComponent:o,overStyled:t=!1,className:a,style:l,...i},c){let p=null;const u=b(i,t),_=o||fo,y=(_.check?_.check(e):fo.check(e))?s.jsx(_,{value:e}):e;switch(r){case"boolean":p=s.jsx(wo,{value:e===!0?"True":e===!1?"False":y,overStyled:t});break;case"switch":p=s.jsx(wo,{value:e===!0?"On":e===!1?"Off":y,overStyled:t});break;case"text":default:p=s.jsx(wo,{value:y,overStyled:t});break}const f=a?`${go.layoutOverride} ${a}`:go.layoutOverride;return s.jsx(ro,{ref:c,overStyled:t,className:f,style:l,...u,children:p})});Ho.displayName="ReadOnlyField";const pe=d.forwardRef(function({readOnly:e,readOnlyComponent:r,readOnlyType:o="text",readOnlyValue:t,readOnlyNativeProps:a,emptyValueComponent:l,activeComponent:i,overStyled:c,onLabelEditClick:p,...u},_){if(e){if(r){const x=r;return s.jsx(ro,{ref:_,...u,onLabelEditClick:p,overStyled:c,children:s.jsx(x,{...a})})}return s.jsx(Ho,{ref:_,type:o,value:t,emptyValueComponent:l,onLabelEditClick:p,overStyled:c,...u})}return s.jsx(ro,{ref:_,...u,onLabelEditClick:p,overStyled:c,children:i})});pe.displayName="WithReadOnlyWrapper";const Ys="AutoComplete-module__layoutOverride___-K9WL",Zs="AutoComplete-module__root___kANza",Qs="AutoComplete-module__input___g51MC",Xs="AutoComplete-module__section___WAbf1",Js="AutoComplete-module__dropdown___NqO3E",ea="AutoComplete-module__option___Y-Kja",Y={layoutOverride:Ys,root:Zs,input:Qs,section:Xs,dropdown:Js,option:ea},xt=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,className:C,style:P,disabled:h,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,value:j,defaultValue:T,...O}=e,M=b(O,o),S=M;delete S.size,delete S.variant,delete S.radius;const R={wrapper:Y.root,input:Y.input,section:Y.section,dropdown:Y.dropdown,option:Y.option},k=S.classNames;if(k&&typeof k=="object"&&!Array.isArray(k)){const I=k;R.wrapper=I.wrapper?`${Y.root} ${I.wrapper}`:Y.root,R.input=I.input?`${Y.input} ${I.input}`:Y.input,R.section=I.section?`${Y.section} ${I.section}`:Y.section,R.dropdown=I.dropdown?`${Y.dropdown} ${I.dropdown}`:Y.dropdown,R.option=I.option?`${Y.option} ${I.option}`:Y.option}const z=C?`${Y.layoutOverride} ${C}`:Y.layoutOverride;return s.jsx(pe,{className:z,style:P,controlMaxWidth:"var(--autocomplete-control-max-width)",controlMinWidth:"var(--autocomplete-control-min-width)",overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,readOnlyType:"text",readOnlyValue:j!==void 0?j:T,readOnlyNativeProps:e,activeComponent:s.jsx(m.Autocomplete,{ref:r,classNames:R,disabled:h,value:j,defaultValue:T,error:!!y,...M})})});xt.displayName="AutoComplete";const oa="Avatar-module__root___fXu-J",ta="Avatar-module__iconWrapper___ojly2",ra="Avatar-module__textWrapper___zp-jD",sa="Avatar-module__image___ieqGp",aa="Avatar-module__placeholder___IDW7-",ye={root:oa,iconWrapper:ta,textWrapper:ra,image:sa,placeholder:aa},$t=d.forwardRef(function({size:e="default",variant:r="solid",icon:o,children:t,src:a,overStyled:l=!1,...i},c){const p={solid:"filled",outline:"outline",ghost:"transparent"},u={default:"md",small:"sm",large:"lg"},_=b(i,l),x=_;let y="text";a?y="image":o&&(y="icon");const f={root:ye.root,image:ye.image,placeholder:ye.placeholder},N=x.classNames;if(N&&typeof N=="object"&&!Array.isArray(N)){const C=N;f.root=C.root?`${ye.root} ${C.root}`:ye.root,f.image=C.image?`${ye.image} ${C.image}`:ye.image,f.placeholder=C.placeholder?`${ye.placeholder} ${C.placeholder}`:ye.placeholder}const g=x.className;return s.jsx(m.Avatar,{ref:c,className:g,classNames:f,variant:p[r],size:u[e],src:a,"data-variant":r,"data-size":e,"data-style":y,..._,children:o!=null?s.jsx("span",{className:ye.iconWrapper,"aria-hidden":!0,children:o}):t!=null?s.jsx("span",{className:ye.textWrapper,children:t}):void 0})});$t.displayName="Avatar";const na=m.createPolymorphicComponent($t),la="Badge-module__root___5osNT",Pe={root:la},wt=d.forwardRef(function({variant:e="primary-color",overStyled:r=!1,...o},t){const a=b(o,r),l={root:Pe.root,section:Pe.section,label:Pe.label},i=a.classNames;if(i&&typeof i=="object"&&!Array.isArray(i)){const u=i;l.root=u.root?`${Pe.root} ${u.root}`:Pe.root,l.section=u.section??Pe.section,l.label=u.label??Pe.label}const c=a.className,p=c?`${Pe.root} ${c}`:Pe.root;return s.jsx(m.Badge,{ref:t,variant:"filled","data-variant":e,...a,className:p,classNames:l})});wt.displayName="Badge";const ia=m.createPolymorphicComponent(wt),ca="Breadcrumb-module__root___x-9ln",da="Breadcrumb-module__separator___qrUX-",Le={root:ca,separator:da},Ct=d.forwardRef(function({overStyled:e=!1,separator:r=">",...o},t){const a=b({separator:r,...o},e),l={root:Le.root,separator:Le.separator},i=a.classNames;if(i&&typeof i=="object"&&!Array.isArray(i)){const u=i;l.root=u.root?`${Le.root} ${u.root}`:Le.root,l.separator=u.separator?`${Le.separator} ${u.separator}`:Le.separator}const c=a.className,p=c?`${Le.root} ${c}`:Le.root;return s.jsx(m.Breadcrumbs,{ref:t,...a,className:p,classNames:l})});Ct.displayName="Breadcrumb";const pa="Loader-module__root___6iYOP",co={root:pa},qo=d.forwardRef(function({variant:e="oval",size:r="default",overStyled:o=!1,...t},a){const i={sm:"small",md:"default",lg:"large",small:"small",default:"default",large:"large"}[r]||"default",c=b(t,o),p={root:co.root},u=c.classNames;if(u&&typeof u=="object"&&!Array.isArray(u)){const y=u;p.root=y.root?`${co.root} ${y.root}`:co.root}const _=c.className,x=_?`${co.root} ${_}`:co.root;return s.jsx(m.Loader,{ref:a,type:e,"data-variant":e,"data-size":i,...c,className:x,classNames:p})});qo.displayName="Loader";const ua="Button-module__root___Q2R8-",ma="Button-module__loader___X-9u-",_a="Button-module__label___UJ3Zt",fa="Button-module__labelText___rFV5p",ya="Button-module__iconWrapper___uEKPa",ba="Button-module__section___f2mKr",de={root:ua,loader:ma,label:_a,labelText:fa,iconWrapper:ya,section:ba};function ha(n){return n==null||n===""?!1:typeof n=="string"?n.trim()!=="":!0}const Pt=d.forwardRef(function({variant:e="solid",size:r="default",icon:o,children:t,overStyled:a=!1,loaderVariant:l="oval",loaderSize:i,useRecursicaLoader:c=!0,...p},u){const _={solid:"filled",outline:"outline",text:"subtle"},x={default:"md",small:"sm"},y=b(p,a),f=y;delete f.fullWidth;const N=!!o||!!f.leftSection,g=!!f.rightSection,C=ha(t),P=(N||g)&&!C;let h="label";P?h="icon-only":(N||g)&&(h="icon-label"),typeof process<"u"&&process.env.NODE_ENV!=="production"&&P&&!f["aria-label"]&&console.warn('[Recursica Button] Icon-only buttons must provide an accessible name. Pass aria-label (e.g. aria-label="Submit").');const v={root:de.root,section:de.section,label:de.label,loader:de.loader},w=f.classNames;if(w&&typeof w=="object"&&!Array.isArray(w)){const S=w;v.root=S.root?`${de.root} ${S.root}`:de.root,v.section=S.section??de.section,v.label=S.label??de.label}const $=f.className,j=$?`${de.root} ${$}`:de.root;delete f.className;const T=f.loaderProps,O=i??(r==="small"?"small":"default");let M=T;return c&&(M={children:s.jsx(qo,{variant:l,size:O}),...T}),s.jsx(m.Button,{ref:u,className:j,classNames:v,variant:_[e],size:x[r],loaderProps:M,leftSection:o!=null?s.jsx("span",{className:de.iconWrapper,"aria-hidden":!0,children:o}):void 0,"data-variant":e,"data-size":r,"data-content":h,...y,disabled:!!f.disabled||!!f.loading,children:s.jsx("span",{className:de.labelText,children:t})})});Pt.displayName="Button";const Ro=m.createPolymorphicComponent(Pt),va="Card-module__root___c9KvZ",Na="Card-module__header___PTXf2",xa="Card-module__footer___Mu-JC",$a="Card-module__section___BRT8H",wa="Card-module__content___oFIQa",Se={root:va,header:Na,footer:xa,section:$a,content:wa},gt=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);["flex","flexGrow","flexShrink","flexBasis","grow","h","height"].forEach(p=>{p in r&&!(p in t)&&(t[p]=r[p])});const l={root:Se.root},i=t.classNames;if(i&&typeof i=="object"&&!Array.isArray(i)){const p=i;Object.keys(p).forEach(u=>{l[u]?l[u]=`${l[u]} ${p[u]}`:l[u]=p[u]})}const c=t.className;return s.jsx(m.Card,{ref:o,className:c,classNames:l,...t})});gt.displayName="Card";const Tt=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t.className;return s.jsx(m.Card.Section,{ref:o,className:a?`${Se.section} ${a}`:Se.section,...t})});Tt.displayName="CardSection";const jt=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t.className;return s.jsx(m.Card.Section,{ref:o,className:a?`${Se.header} ${a}`:Se.header,...t})});jt.displayName="CardHeader";const St=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t.className;return s.jsx(m.Card.Section,{ref:o,className:a?`${Se.footer} ${a}`:Se.footer,...t})});St.displayName="CardFooter";const Rt=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t.className;return s.jsx("div",{ref:o,className:a?`${Se.content} ${a}`:Se.content,...t})});Rt.displayName="CardContent";const At=m.createPolymorphicComponent(gt),Ao=At;Ao.Section=Tt;Ao.Header=jt;Ao.Footer=St;Ao.Content=Rt;const Ca=At,Pa="Checkbox-module__groupRoot___cBS0o",ga="Checkbox-module__root___mY3qk",Ta="Checkbox-module__body___5yC7q",ja="Checkbox-module__inner___rTke4",Sa="Checkbox-module__input___2kt-h",Ra="Checkbox-module__icon___-O7i6",Aa="Checkbox-module__labelWrapper___GpZkr",Ia="Checkbox-module__label___cwRtI",D={groupRoot:Pa,root:ga,body:Ta,inner:ja,input:Sa,icon:Ra,labelWrapper:Aa,label:Ia},Uo=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,description:_,assistiveText:x,assistiveWithIcon:y,error:f,required:N,withAsterisk:g,id:C,className:P,style:h,children:v,readOnly:w,readOnlyComponent:$,emptyValueComponent:j,value:T,defaultValue:O,...M}=e,S=b(M,o),R=S;return delete R.size,s.jsx(pe,{className:P,style:h,controlMaxWidth:"var(--recursica_ui-kit_components_checkbox-item_properties_max-width)",controlMinWidth:void 0,overStyled:o,labelElement:"div",formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,description:_,assistiveText:x,assistiveWithIcon:y,error:f,required:N,withAsterisk:g,id:C,readOnly:w&&!!$,readOnlyComponent:$,emptyValueComponent:j,readOnlyType:"text",readOnlyValue:T!==void 0?T:O,readOnlyNativeProps:e,activeComponent:s.jsx(m.Checkbox.Group,{ref:r,...S,disabled:w||R.disabled,value:T,defaultValue:O,children:s.jsx("div",{className:D.groupRoot,"data-layout":t,children:v})})})});Uo.displayName="CheckboxGroup";const Ko=d.forwardRef(function(e,r){const{overStyled:o=!1,readOnly:t,readOnlyComponent:a,disabled:l,formLayout:i,labelSize:c,controlMaxWidth:p,controlMinWidth:u,..._}=e,x=b(_,o),y=x;delete y.size,delete y.color,delete y.radius,delete y.variant,delete y.iconColor;const f={root:D.root,body:D.body,inner:D.inner,input:D.input,icon:D.icon,labelWrapper:D.labelWrapper,label:D.label},N=y.classNames;if(N&&typeof N=="object"&&!Array.isArray(N)){const h=N;f.root=h.root?`${D.root} ${h.root}`:D.root,f.body=h.body?`${D.body} ${h.body}`:D.body,f.inner=h.inner?`${D.inner} ${h.inner}`:D.inner,f.input=h.input?`${D.input} ${h.input}`:D.input,f.icon=h.icon?`${D.icon} ${h.icon}`:D.icon,f.labelWrapper=h.labelWrapper?`${D.labelWrapper} ${h.labelWrapper}`:D.labelWrapper,f.label=h.label?`${D.label} ${h.label}`:D.label}const g=y.className,C=g?`${D.root} ${g}`:D.root;if(t&&a){const h=!!(y.checked??y.defaultChecked),v=a,w=s.jsx(v,{...e,checked:h,label:y.label});return i?s.jsx(je,{formLayout:i,labelSize:c,controlMaxWidth:p,controlMinWidth:u,children:w}):s.jsx(s.Fragment,{children:w})}const P=s.jsx(m.Checkbox,{ref:r,className:C,classNames:f,disabled:t||l,...x});return i?s.jsx(je,{formLayout:i,labelSize:c,controlMaxWidth:p,controlMinWidth:u,children:P}):P});Ko.displayName="Checkbox";Ko.Group=Uo;const La="Chip-module__root___f5pFk",Oa="Chip-module__label___Ov9pg",Ma="Chip-module__mantineIconWrapper___KLSz6",ka="Chip-module__innerWrapper___EnrTF",Wa="Chip-module__children___zbRAR",za="Chip-module__leadingIcon___JBtjQ",Fa="Chip-module__removeIcon___pVju-",oe={root:La,label:Oa,mantineIconWrapper:Ma,innerWrapper:ka,children:Wa,leadingIcon:za,removeIcon:Fa};function Ea(n){return s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",...n,children:[s.jsx("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),s.jsx("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]})}const yo=d.forwardRef(function({error:e=!1,icon:r,onRemove:o,removeLabel:t="Remove",removeTabIndex:a,removeIconRef:l,children:i,overStyled:c=!1,...p},u){const _=b(p,c),x=_,y={root:oe.root,label:oe.label,input:oe.input,iconWrapper:oe.mantineIconWrapper,checkIcon:oe.checkIcon},f=x.classNames;if(f&&typeof f=="object"&&!Array.isArray(f)){const v=f;y.root=v.root?`${oe.root} ${v.root}`:oe.root,y.label=v.label?`${oe.label} ${v.label}`:oe.label}const N=x.className,g=N?`${oe.root} ${N}`:oe.root,C=e?"":void 0,P=!i&&(!!r||!!o),h=o!==void 0||x.onClick!==void 0||x.onChange!==void 0;return s.jsx(m.Chip,{ref:u,className:g,classNames:y,wrapperProps:{...C!==void 0?{"data-error":""}:{},...h?{"data-interactive":""}:{}},...P?{"data-icon-only":""}:{},...h?{}:{tabIndex:-1,"aria-hidden":!0},..._,children:s.jsxs("span",{className:oe.innerWrapper,children:[r&&s.jsx("span",{className:oe.leadingIcon,"aria-hidden":!0,children:r}),s.jsx("span",{className:oe.children,children:i}),o&&s.jsx("span",{ref:l,role:"button",className:oe.removeIcon,onClick:v=>{v.preventDefault(),v.stopPropagation(),o(v)},"aria-label":t,onKeyDown:v=>{(v.key==="Enter"||v.key===" ")&&(v.preventDefault(),v.stopPropagation(),o(v))},tabIndex:a??0,children:s.jsx(Ea,{})})]})})});yo.displayName="Chip";const Da="Container-module__root___UVssr",po={root:Da},It=d.forwardRef(function({children:e,size:r,...o},t){const a={"rec-sm":"sm","rec-default":"md","rec-md":"md","rec-lg":"lg","rec-xl":"xl","rec-2xl":"xl"},l=typeof r=="string"&&a[r]?a[r]:r,i={root:po.root},c=o.classNames;if(c&&typeof c=="object"&&!Array.isArray(c)){const _=c;i.root=_.root?`${po.root} ${_.root}`:po.root}const p=o.className,u=p?`${po.root} ${p}`:po.root;return s.jsx(m.Container,{ref:t,size:l,className:u,classNames:i,...o,children:e})});It.displayName="Container";const Ba="DatePicker-module__layoutOverride___X9yaM",Ga="DatePicker-module__root___6XvRT",Va="DatePicker-module__input___pcSW8",Ha="DatePicker-module__section___n3iWA",qa="DatePicker-module__dropdown___wjt08",Ua="DatePicker-module__calendarHeader___KHxno",Ka="DatePicker-module__day___U03J2",se={layoutOverride:Ba,root:Ga,input:Va,section:Ha,dropdown:qa,calendarHeader:Ua,day:Ka},Lt=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,className:C,style:P,disabled:h,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,value:j,defaultValue:T,...O}=e,M=b(O,o),S=M;delete S.size,delete S.variant,delete S.radius,delete S.description;const R={wrapper:se.root,input:se.input,section:se.section,dropdown:se.dropdown,day:se.day,calendarHeader:se.calendarHeader},k=S.classNames;if(k&&typeof k=="object"&&!Array.isArray(k)){const I=k;R.wrapper=I.wrapper?`${se.root} ${I.wrapper}`:se.root,R.input=I.input?`${se.input} ${I.input}`:se.input,R.section=I.section?`${se.section} ${I.section}`:se.section}const z=C?`${se.layoutOverride} ${C}`:se.layoutOverride;return s.jsx(pe,{className:z,style:P,controlMaxWidth:void 0,controlMinWidth:void 0,overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,readOnlyType:"text",readOnlyValue:j!==void 0?String(j):T?String(T):void 0,readOnlyNativeProps:e,activeComponent:s.jsx(yt.DatePickerInput,{ref:r,classNames:R,disabled:h,value:j,defaultValue:T,label:void 0,description:void 0,error:void 0,withAsterisk:!1,wrapperProps:{"data-disabled":h?"true":void 0,"data-error":y?"true":void 0},...M})})});Lt.displayName="DatePicker";const Ya="Dropdown-module__layoutOverride___FNcvP",Za="Dropdown-module__root___uVyL0",Qa="Dropdown-module__input___dK4dN",Xa="Dropdown-module__section___j3MRB",Ja="Dropdown-module__dropdown___gG-Sw",en="Dropdown-module__option___nAGU-",V={layoutOverride:Ya,root:Za,input:Qa,section:Xa,dropdown:Ja,option:en},Ot=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",containerWidth:a,labelSize:l,labelAlignment:i,labelOptionalText:c,labelWithEditIcon:p,onLabelEditClick:u,label:_,assistiveText:x,assistiveWithIcon:y,error:f,required:N,withAsterisk:g,id:C,className:P,style:h,disabled:v,readOnly:w,readOnlyComponent:$,emptyValueComponent:j,value:T,defaultValue:O,data:M,...S}=e,R=b(S,o),k=R;delete k.size,delete k.variant,delete k.radius;const z={wrapper:V.root,input:V.input,section:V.section,dropdown:V.dropdown,option:V.option},I=k.classNames;if(I&&typeof I=="object"&&!Array.isArray(I)){const H=I;z.wrapper=H.wrapper?`${V.root} ${H.wrapper}`:V.root,z.input=H.input?`${V.input} ${H.input}`:V.input,z.section=H.section?`${V.section} ${H.section}`:V.section,z.dropdown=H.dropdown?`${V.dropdown} ${H.dropdown}`:V.dropdown,z.option=H.option?`${V.option} ${H.option}`:V.option}const Z={...h||{},width:a||"100%"},re=P?`${V.layoutOverride} ${P}`:V.layoutOverride;return s.jsx(pe,{className:re,style:Z,controlMaxWidth:"var(--dropdown-control-max-width)",controlMinWidth:"var(--dropdown-control-min-width)",overStyled:o,formLayout:t,labelSize:l,labelAlignment:i,labelOptionalText:c,labelWithEditIcon:p,onLabelEditClick:u,label:_,assistiveText:x,assistiveWithIcon:y,error:f,required:N,withAsterisk:g,id:C,readOnly:w,readOnlyComponent:$,emptyValueComponent:j,readOnlyType:"text",readOnlyValue:T!==void 0?String(T):O?String(O):void 0,readOnlyNativeProps:e,activeComponent:s.jsx(m.Select,{ref:r,classNames:z,disabled:v,value:T,defaultValue:O,data:M||[],label:void 0,description:void 0,error:void 0,required:void 0,withAsterisk:void 0,attributes:{wrapper:{"data-disabled":v?"true":void 0,"data-error":f?"true":void 0}},...R})})});Ot.displayName="Dropdown";const on="FileInput-module__layoutOverride___HIOY6",tn="FileInput-module__root___UvQj-",rn="FileInput-module__leadingIcon___z75c4",sn="FileInput-module__content___Udsvh",an="FileInput-module__value___RX33R",nn="FileInput-module__chipRow___My6TF",ln="FileInput-module__chipWrapper___q2CDy",cn="FileInput-module__trailingIcon___odGPm",ge={layoutOverride:on,root:tn,leadingIcon:rn,content:sn,value:an,chipRow:nn,chipWrapper:ln,trailingIcon:cn};function dn(){return s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,children:[s.jsx("path",{d:"M12 3v12"}),s.jsx("path",{d:"M7 8l5-5 5 5"}),s.jsx("path",{d:"M4 21h16"})]})}function pn(){return s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,children:[s.jsx("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),s.jsx("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]})}const Mt=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,labelActionArea:p,onLabelEditClick:u,label:_,assistiveText:x,assistiveWithIcon:y,error:f,required:N,withAsterisk:g,id:C,className:P,style:h,disabled:v,readOnly:w,files:$,onFilesAdded:j,onFileRemove:T,accept:O,multiple:M=!1,maxSize:S,maxFiles:R,onFilesRejected:k,invalidFileTypeMessage:z="File type not accepted",maxFilesMessage:I=M?`Maximum of ${R} files allowed`:"Only one file is allowed",icon:Z,placeholder:re="Select a file...",browseLabel:H="Choose file",removeFileLabel:he="Remove",clearLabel:ue="Clear",...Be}=e,Ie=b(Be,o),q=!v&&!w,Q=!!$&&$.length>0,we=d.useRef(null),[Ge,Ve]=d.useState(!1),[le,me]=d.useState(!1),_e=L=>{if(!q)return;const X=Array.from(L);if(X.length===0)return;const K=M?R:1,fe=M?($==null?void 0:$.length)??0:0,eo=[],oo=[];let Oo=!1,nt=!1;for(const Mo of X){const lt=!Vo(Mo,O);lt&&(Oo=!0);const ps=S!==void 0&&Mo.size>S,it=K!==void 0&&fe+eo.length>=K;it&&(nt=!0),(lt||ps||it?oo:eo).push(Mo)}Ve(Oo),me(nt),eo.length>0&&(j==null||j(eo)),oo.length>0&&(k==null||k(oo))},Ce=d.useRef(0),[so,G]=d.useState(!1),Qe=L=>{L.preventDefault(),Ce.current+=1,G(!0)},Xe=L=>{L.preventDefault(),Ce.current-=1,Ce.current<=0&&(Ce.current=0,G(!1))},ao=L=>{L.preventDefault()},Je=L=>{L.preventDefault(),Ce.current=0,G(!1),_e(L.dataTransfer.files)},no=()=>{var L;q&&((L=we.current)==null||L.click())},lo=L=>{L.key!=="Enter"&&L.key!==" "||(L.preventDefault(),no())},vo=L=>{L.target.files&&_e(L.target.files),L.target.value=""},Lo=()=>{!q||!$||$.length===0||$.forEach(L=>T==null?void 0:T(L.id??L.file.name))},[He,No]=d.useState(0),W=d.useRef([]),U=d.useRef(($==null?void 0:$.length)??0);d.useEffect(()=>{var X;const L=($==null?void 0:$.length)??0;if(L>0&&L<U.current){const K=Math.min(He,L-1);No(K),(X=W.current[K])==null||X.focus()}U.current=L},[$]);const ee=L=>{var fe;const X=($==null?void 0:$.length)??0;if(X===0)return;let K;L.key==="ArrowRight"||L.key==="ArrowDown"?K=(He+1)%X:(L.key==="ArrowLeft"||L.key==="ArrowUp")&&(K=(He-1+X)%X),K!==void 0&&(L.preventDefault(),L.stopPropagation(),No(K),(fe=W.current[K])==null||fe.focus())},ie=f??(Ge?z:le?I:void 0),io=P?`${ge.layoutOverride} ${P}`:ge.layoutOverride;return s.jsx(ro,{overStyled:o,className:io,style:h,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,labelActionArea:p,onLabelEditClick:u,label:_,assistiveText:x,assistiveWithIcon:y,error:ie,required:N,withAsterisk:g,id:C,controlMaxWidth:"var(--file-input-control-max-width)",controlMinWidth:"var(--file-input-control-min-width)",children:s.jsxs("div",{ref:r,className:ge.root,role:"button","aria-label":H,"aria-disabled":v?"true":void 0,tabIndex:q?0:-1,"data-disabled":v?"true":void 0,"data-readonly":w?"true":void 0,"data-error":ie?"true":void 0,"data-dragging":so?"true":void 0,onClick:q?no:void 0,onKeyDown:q?lo:void 0,onDragEnter:q?Qe:void 0,onDragLeave:q?Xe:void 0,onDragOver:q?ao:void 0,onDrop:q?Je:void 0,...Ie,children:[s.jsx("span",{className:ge.leadingIcon,"aria-hidden":!0,children:Z??s.jsx(dn,{})}),s.jsxs("div",{className:ge.content,children:[!Q&&s.jsx("span",{className:ge.value,"data-placeholder":"true",children:re}),Q&&s.jsx("div",{className:ge.chipRow,onKeyDown:w?void 0:ee,children:$.map((L,X)=>{const K=L.id??L.file.name;return s.jsx("span",{className:ge.chipWrapper,onClick:fe=>fe.stopPropagation(),children:s.jsx(yo,{checked:!1,tabIndex:-1,removeLabel:w?void 0:he,removeTabIndex:!w&&X===He?0:-1,removeIconRef:fe=>{W.current[X]=fe},onRemove:w||v?void 0:()=>T==null?void 0:T(K),children:L.file.name})},K)})})]}),Q&&!w&&s.jsx(Ro,{overStyled:!0,variant:"text",size:"small",icon:s.jsx(pn,{}),"aria-label":ue,className:ge.trailingIcon,disabled:v,onClick:L=>{L.preventDefault(),L.stopPropagation(),Lo()}}),s.jsx("input",{ref:we,type:"file",hidden:!0,accept:O,multiple:M,disabled:!q,onChange:vo})]})})});Mt.displayName="FileInput";const un="FileUpload-module__layoutOverride___bPpi8",mn="FileUpload-module__root___Q-vcm",_n="FileUpload-module__dropzone___jqua0",fn="FileUpload-module__uploadIcon___bb3Nc",yn="FileUpload-module__dropzoneText___L7vS-",bn="FileUpload-module__fileList___XIWLl",Oe={layoutOverride:un,root:mn,dropzone:_n,uploadIcon:fn,dropzoneText:yn,fileList:bn};function hn(){return s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,children:[s.jsx("path",{d:"M12 3v12"}),s.jsx("path",{d:"M7 8l5-5 5 5"}),s.jsx("path",{d:"M4 21h16"})]})}const kt=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,labelActionArea:p,onLabelEditClick:u,label:_,assistiveText:x,assistiveWithIcon:y,error:f,required:N,withAsterisk:g,id:C,className:P,style:h,disabled:v,readOnly:w,files:$,onFilesAdded:j,onFileRemove:T,accept:O,multiple:M=!0,maxSize:S,maxFiles:R,onFilesRejected:k,invalidFileTypeMessage:z="File type not accepted",maxFilesMessage:I=`Maximum of ${R} files allowed`,icon:Z,dropzoneLabel:re="Drag and drop files here to upload",browseButtonLabel:H="Browse files",removeFileLabel:he="Remove",...ue}=e,ne=b(ue,o),Ie=d.useRef(null),[q,Q]=d.useState(!1),[we,Ge]=d.useState(!1),Ve=W=>{if(v)return;const U=Array.from(W);if(U.length===0)return;const ee=($==null?void 0:$.length)??0,ie=[],io=[];let L=!1,X=!1;for(const K of U){const fe=!Vo(K,O);fe&&(L=!0);const eo=S!==void 0&&K.size>S,oo=R!==void 0&&ee+ie.length>=R;oo&&(X=!0),(fe||eo||oo?io:ie).push(K)}Q(L),Ge(X),ie.length>0&&(j==null||j(ie)),io.length>0&&(k==null||k(io))},le=d.useRef(0),[me,_e]=d.useState(!1),Ce=W=>{W.preventDefault(),le.current+=1,_e(!0)},so=W=>{W.preventDefault(),le.current-=1,le.current<=0&&(le.current=0,_e(!1))},G=W=>{W.preventDefault()},Qe=W=>{W.preventDefault(),le.current=0,_e(!1),Ve(W.dataTransfer.files)},Xe=()=>{var W;v||(W=Ie.current)==null||W.click()},ao=W=>{W.target.files&&Ve(W.target.files),W.target.value=""},[Je,no]=d.useState(0),lo=d.useRef([]),vo=d.useRef(($==null?void 0:$.length)??0);d.useEffect(()=>{var U;const W=($==null?void 0:$.length)??0;if(W>0&&W<vo.current){const ee=Math.min(Je,W-1);no(ee),(U=lo.current[ee])==null||U.focus()}vo.current=W},[$]);const Lo=W=>{var ie;const U=($==null?void 0:$.length)??0;if(U===0)return;let ee;W.key==="ArrowRight"||W.key==="ArrowDown"?ee=(Je+1)%U:(W.key==="ArrowLeft"||W.key==="ArrowUp")&&(ee=(Je-1+U)%U),ee!==void 0&&(W.preventDefault(),no(ee),(ie=lo.current[ee])==null||ie.focus())},He=f??(q?z:we?I:void 0),No=P?`${Oe.layoutOverride} ${P}`:Oe.layoutOverride;return s.jsx(ro,{overStyled:o,className:No,style:h,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,labelActionArea:p,onLabelEditClick:u,label:_,assistiveText:x,assistiveWithIcon:y,error:He,required:N,withAsterisk:g,id:C,children:s.jsxs("div",{ref:r,className:Oe.root,"data-disabled":v?"true":void 0,"data-error":He?"true":void 0,...ne,children:[!w&&s.jsxs("div",{className:Oe.dropzone,"data-dragging":me?"true":void 0,onDragEnter:v?void 0:Ce,onDragLeave:v?void 0:so,onDragOver:v?void 0:G,onDrop:v?void 0:Qe,children:[s.jsx("span",{className:Oe.uploadIcon,children:Z??s.jsx(hn,{})}),s.jsx("span",{className:Oe.dropzoneText,children:re}),s.jsx(Ro,{variant:"outline",disabled:v,onClick:Xe,children:H}),s.jsx("input",{ref:Ie,type:"file",hidden:!0,accept:O,multiple:M,disabled:v,onChange:ao})]}),$&&$.length>0&&(w?s.jsx("div",{className:Oe.fileList,children:$.map(W=>{const U=W.id??W.file.name;return s.jsx(yo,{checked:!1,tabIndex:-1,children:W.file.name},U)})}):s.jsx("div",{className:Oe.fileList,onKeyDown:Lo,children:$.map((W,U)=>{const ee=W.id??W.file.name;return s.jsx(yo,{checked:!1,tabIndex:-1,removeLabel:he,removeTabIndex:U===Je?0:-1,removeIconRef:ie=>{lo.current[U]=ie},onRemove:v?void 0:()=>T==null?void 0:T(ee),children:W.file.name},ee)})}))]})})});kt.displayName="FileUpload";const vn="Flex-module__root___yYser",uo={root:vn},Wt=d.forwardRef(function({children:e,gap:r="rec-default",rowGap:o,columnGap:t,...a},l){const i={root:uo.root},c=a.classNames;if(c&&typeof c=="object"&&!Array.isArray(c)){const _=c;i.root=_.root?`${uo.root} ${_.root}`:uo.root}const p=a.className,u=p?`${uo.root} ${p}`:uo.root;return s.jsx(m.Flex,{ref:l,className:u,classNames:i,...bo({gap:r,rowGap:o,columnGap:t,...a}),children:e})});Wt.displayName="Flex";const Nn=m.createPolymorphicComponent(Wt),xn="Grid-module__root___s-qPY",$n="Grid-module__col___tbuNg",Ne={root:xn,col:$n},zt=d.forwardRef(function({children:e,gap:r="rec-default",...o},t){const a={root:Ne.root},l=o.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const _=l;a.root=_.root?`${Ne.root} ${_.root}`:Ne.root}const i=o.className,c=i?`${Ne.root} ${i}`:Ne.root,{gap:p,...u}=bo({gap:r,...o});return s.jsx(m.Grid,{ref:t,gutter:p,className:c,classNames:a,...u,children:e})});zt.displayName="Grid";const wn=m.createPolymorphicComponent(zt),Ft=d.forwardRef(function({children:e,...r},o){const t={col:Ne.col},a=r.classNames;if(a&&typeof a=="object"&&!Array.isArray(a)){const c=a;t.col=c.col?`${Ne.col} ${c.col}`:Ne.col}const l=r.className,i=l?`${Ne.col} ${l}`:Ne.col;return s.jsx(m.Grid.Col,{ref:o,className:i,classNames:t,...bo(r),children:e})});Ft.displayName="GridCol";const Et=m.createPolymorphicComponent(Ft),Dt=wn;Dt.Col=Et;const Cn="Group-module__root___ftO64",mo={root:Cn},Bt=d.forwardRef(function({children:e,gap:r="rec-default",...o},t){const a={root:mo.root},l=o.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const p=l;a.root=p.root?`${mo.root} ${p.root}`:mo.root}const i=o.className,c=i?`${mo.root} ${i}`:mo.root;return s.jsx(m.Group,{ref:t,className:c,classNames:a,...bo({gap:r,...o}),children:e})});Bt.displayName="Group";const Pn="HoverCard-module__dropdown___FBPFW",gn="HoverCard-module__arrow___S9AkE",ut={dropdown:Pn,arrow:gn},Gt=function({overStyled:e=!1,withBeak:r=!0,...o}){const t=b(o,e),a={dropdown:ut.dropdown,arrow:ut.arrow},l=t.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const u=l;Object.keys(u).forEach(_=>{a[_]?a[_]=`${a[_]} ${u[_]}`:a[_]=u[_]})}const i=t.arrowSize??16,c=t.withArrow,p=r??c;return s.jsx(m.HoverCard,{position:"top",arrowSize:i,withArrow:p,classNames:a,...t})};Gt.displayName="HoverCard";const Vt=function(e){return s.jsx(m.HoverCard.Target,{...e})};Vt.displayName="HoverCardTarget";const Ht=function({overStyled:e=!1,...r}){const o=b(r,e),t=o.className;return s.jsx(m.HoverCard.Dropdown,{className:t,...o})};Ht.displayName="HoverCardDropdown";const Yo=Gt;Yo.Target=Vt;Yo.Dropdown=Ht;const Tn="Link-module__root___I0VGE",jn="Link-module__iconWrapper___W-LlF",Sn="Link-module__labelText___wSvUy",qe={root:Tn,iconWrapper:jn,labelText:Sn},qt=d.forwardRef(function({icon:e,children:r,overStyled:o=!1,...t},a){const l=b(t,o),i=l,c={root:qe.root},p=i.classNames;if(p&&typeof p=="object"&&!Array.isArray(p)){const x=p;c.root=x.root?`${qe.root} ${x.root}`:qe.root}const u=i.className,_=u?`${qe.root} ${u}`:qe.root;return s.jsxs(m.Anchor,{ref:a,className:_,classNames:c,underline:"never",...e?{"data-has-icon":""}:{},...l,children:[e&&s.jsx("span",{className:qe.iconWrapper,"aria-hidden":!0,children:e}),s.jsx("span",{className:qe.labelText,children:r})]})});qt.displayName="Link";const Rn=m.createPolymorphicComponent(qt),An="Menu-module__dropdown___j4xuA",In="Menu-module__item___NMXha",Ln="Menu-module__itemLabel___zvcqC",On="Menu-module__itemSection___pRIcn",Mn="Menu-module__divider___wPiNq",kn="Menu-module__label___4FBGa",Wn="Menu-module__chevron___hEEiy",Ue={dropdown:An,item:In,itemLabel:Ln,itemSection:On,divider:Mn,label:kn,chevron:Wn},Ut=function({overStyled:e=!1,...r}){const o=b(r,e),t={dropdown:Ue.dropdown,item:Ue.item,itemLabel:Ue.itemLabel,itemSection:Ue.itemSection,divider:Ue.divider,label:Ue.label,chevron:Ue.chevron},a=o.classNames;if(a&&typeof a=="object"&&!Array.isArray(a)){const l=a;Object.keys(l).forEach(i=>{t[i]?t[i]=`${t[i]} ${l[i]}`:t[i]=l[i]})}return s.jsx(m.Menu,{classNames:t,...o})};Ut.displayName="Menu";const Kt=function(e){return s.jsx(m.Menu.Target,{...e})};Kt.displayName="MenuTarget";const Yt=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t.className;return s.jsx(m.Menu.Dropdown,{ref:o,className:a,...t})});Yt.displayName="MenuDropdown";const Zt=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t;e||delete a.color;const l=a.className;return s.jsx(m.Menu.Item,{ref:o,className:l,...t})});Zt.displayName="MenuItem";const zn=m.createPolymorphicComponent(Zt),Qt=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t.className;return s.jsx(m.Menu.Divider,{ref:o,className:a,...t})});Qt.displayName="MenuDivider";const Xt=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t.className;return s.jsx(m.Menu.Label,{ref:o,className:a,...t})});Xt.displayName="MenuLabel";const Jt=function(e){return s.jsx(m.Menu.Sub,{...e})};Jt.displayName="MenuSub";const er=function(e){return s.jsx(m.Menu.Sub.Target,{...e})};er.displayName="MenuSubTarget";const or=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t;e||delete a.color;const l=a.className;return s.jsx(m.Menu.Sub.Item,{ref:o,className:l,...t})});or.displayName="MenuSubItem";const Fn=m.createPolymorphicComponent(or),tr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t.className;return s.jsx(m.Menu.Sub.Dropdown,{ref:o,className:a,...t})});tr.displayName="MenuSubDropdown";const Io=Jt;Io.Target=er;Io.Item=Fn;Io.Dropdown=tr;const Ze=Ut;Ze.Target=Kt;Ze.Dropdown=Yt;Ze.Item=zn;Ze.Divider=Qt;Ze.Label=Xt;Ze.Sub=Io;const En="Modal-module__root___ytPLl",Dn="Modal-module__inner___SSUJE",Bn="Modal-module__content___dWO-B",Gn="Modal-module__header___ILG9i",Vn="Modal-module__title___A5OeE",Hn="Modal-module__bodyWrapper___5CCL-",qn="Modal-module__scrollArea___KD-hm",Un="Modal-module__footer___rro2w",Kn="Modal-module__close___-ER1C",Te={root:En,inner:Dn,content:Bn,header:Gn,title:Vn,bodyWrapper:Hn,scrollArea:qn,footer:Un,close:Kn},rr=d.forwardRef(function({overStyled:e=!1,children:r,title:o,withCloseButton:t=!0,overlayProps:a,withOverlay:l=!0,closeButtonProps:i,...c},p){const u=b(c,e),_={root:Te.root,inner:Te.inner,content:Te.content,header:Te.header,title:Te.title,close:Te.close},x=u.classNames;if(x&&typeof x=="object"&&!Array.isArray(x)){const y=x;Object.keys(y).forEach(f=>{_[f]?_[f]=`${_[f]} ${y[f]}`:_[f]=y[f]})}return s.jsxs(m.Modal.Root,{ref:p,classNames:_,...u,children:[l&&s.jsx(m.Modal.Overlay,{...a}),s.jsxs(m.Modal.Content,{children:[(o||t)&&s.jsxs(m.Modal.Header,{children:[o&&s.jsx(m.Modal.Title,{children:o}),t&&s.jsx(m.Modal.CloseButton,{...i})]}),s.jsx(Qo,{children:r})]})]})});rr.displayName="Modal";const Zo=d.forwardRef(function({overStyled:e=!1,className:r,...o},t){const a=b(o,e);return s.jsx("div",{ref:t,className:`${Te.footer} ${r||""}`,...a})});Zo.displayName="Modal.Footer";const Qo=d.forwardRef(function({className:e,onScroll:r,children:o,...t},a){const l=d.useRef(null),[i,c]=d.useState(!1),[p,u]=d.useState(!1),_=d.useCallback(()=>{if(l.current){const{scrollTop:N,scrollHeight:g,clientHeight:C}=l.current;c(N>0),u(Math.ceil(N+C)<g)}},[]);d.useEffect(()=>(_(),window.addEventListener("resize",_),()=>window.removeEventListener("resize",_)),[_,o]);const x=N=>{_(),r==null||r(N)};let y=null;const f=[];return d.Children.forEach(o,N=>{var g;d.isValidElement(N)&&(N.type===Zo||((g=N.type)==null?void 0:g.displayName)==="Modal.Footer")?y=N:f.push(N)}),s.jsxs(m.Modal.Body,{...t,ref:N=>{typeof a=="function"?a(N):a&&(a.current=N)},className:`${Te.bodyWrapper} ${e||""}`,children:[s.jsx("div",{ref:l,onScroll:x,"data-scrolled-top":i||void 0,"data-scrolled-bottom":p||void 0,className:Te.scrollArea,children:f}),y]})});Qo.displayName="Modal.Body";const sr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Modal.Root,{ref:o,...t})});sr.displayName="Modal.Root";const ar=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Modal.Overlay,{ref:o,...t})});ar.displayName="Modal.Overlay";const nr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Modal.Content,{ref:o,...t})});nr.displayName="Modal.Content";const lr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Modal.Header,{ref:o,...t})});lr.displayName="Modal.Header";const ir=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Modal.Title,{ref:o,...t})});ir.displayName="Modal.Title";const cr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Modal.CloseButton,{ref:o,...t})});cr.displayName="Modal.CloseButton";const Re=rr;Re.Root=sr;Re.Overlay=ar;Re.Content=nr;Re.Header=lr;Re.Title=ir;Re.CloseButton=cr;Re.Body=Qo;Re.Footer=Zo;const Yn="NumberInput-module__layoutOverride___5-9T4",Zn="NumberInput-module__root___C6rAn",Qn="NumberInput-module__input___Ss8p7",Xn="NumberInput-module__section___MijP0",Jn="NumberInput-module__controls___8UfQ2",el="NumberInput-module__control___Qre9-",Ke={layoutOverride:Yn,root:Zn,input:Qn,section:Xn,controls:Jn,control:el},dr=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,className:C,style:P,disabled:h,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,value:j,defaultValue:T,hideControls:O=!1,...M}=e,S=b(M,o),R=S;delete R.size,delete R.variant,delete R.radius;const k={wrapper:Ke.root,input:Ke.input,section:Ke.section,controls:Ke.controls,control:Ke.control},z=C?`${Ke.layoutOverride} ${C}`:Ke.layoutOverride;return s.jsx(pe,{className:z,style:P,controlMaxWidth:"var(--number-input-control-max-width)",controlMinWidth:"var(--number-input-control-min-width)",overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,readOnlyType:"text",readOnlyValue:j!==void 0?j==null?void 0:j.toString():T==null?void 0:T.toString(),readOnlyNativeProps:e,activeComponent:s.jsx(m.NumberInput,{ref:r,classNames:k,disabled:h,value:j,defaultValue:T,hideControls:O,label:void 0,description:void 0,error:void 0,required:void 0,withAsterisk:void 0,wrapperProps:{"data-disabled":h?"true":void 0,"data-error":y?"true":void 0,"data-with-left-section":R.leftSection?"true":void 0,"data-with-right-section":R.rightSection||!O?"true":void 0},...S})})});dr.displayName="NumberInput";const ol="Pagination-module__root___ITRjt",tl="Pagination-module__control___40yNT",rl="Pagination-module__dots___Yl9da",sl="Pagination-module__iconWithLabel___pLM4O",al="Pagination-module__baseIcon___Qw3bJ",J={root:ol,control:tl,dots:rl,iconWithLabel:sl,baseIcon:al},nl="M8.781 8l-3.3-3.3.943-.943L10.667 8l-4.243 4.243-.943-.943 3.3-3.3z",ll="M7.219 8l3.3 3.3-.943.943L5.333 8l4.243-4.243.943.943-3.3 3.3z",il="M6.85355 3.85355C7.04882 3.65829 7.04882 3.34171 6.85355 3.14645C6.65829 2.95118 6.34171 2.95118 6.14645 3.14645L2.14645 7.14645C1.95118 7.34171 1.95118 7.65829 2.14645 7.85355L6.14645 11.8536C6.34171 12.0488 6.65829 12.0488 6.85355 11.8536C7.04882 11.6583 7.04882 11.3417 6.85355 11.1464L3.20711 7.5L6.85355 3.85355ZM12.8536 3.85355C13.0488 3.65829 13.0488 3.34171 12.8536 3.14645C12.6583 2.95118 12.3417 2.95118 12.1464 3.14645L8.14645 7.14645C7.95118 7.34171 7.95118 7.65829 8.14645 7.85355L12.1464 11.8536C12.3417 12.0488 12.6583 12.0488 12.8536 11.8536C13.0488 11.6583 13.0488 11.3417 12.8536 11.1464L9.20711 7.5L12.8536 3.85355Z",cl="M2.14645 11.1464C1.95118 11.3417 1.95118 11.6583 2.14645 11.8536C2.34171 12.0488 2.65829 12.0488 2.85355 11.8536L6.85355 7.85355C7.04882 7.65829 7.04882 7.34171 6.85355 7.14645L2.85355 3.14645C2.65829 2.95118 2.34171 2.95118 2.14645 3.14645C1.95118 3.34171 1.95118 3.65829 2.14645 3.85355L5.79289 7.5L2.14645 11.1464ZM8.14645 11.1464C7.95118 11.3417 7.95118 11.6583 8.14645 11.8536C8.34171 12.0488 8.65829 12.0488 8.85355 11.8536L12.8536 7.85355C13.0488 7.65829 13.0488 7.34171 12.8536 7.14645L8.85355 3.14645C8.65829 2.95118 8.34171 2.95118 8.14645 3.14645C7.95118 3.34171 7.95118 3.65829 8.14645 3.85355L11.7929 7.5L8.14645 11.1464Z",dl={next:nl,prev:ll,first:il,last:cl},ho=({type:n,className:e,...r})=>s.jsx("svg",{viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",className:`${J.baseIcon} ${e||""}`.trim(),...r,children:s.jsx("path",{d:dl[n],fill:"currentColor"})}),pr=n=>s.jsxs("div",{className:J.iconWithLabel,children:[s.jsx("span",{children:"Next"}),s.jsx(ho,{type:"next",...n})]}),ur=n=>s.jsxs("div",{className:J.iconWithLabel,children:[s.jsx(ho,{type:"prev",...n}),s.jsx("span",{children:"Prev"})]}),mr=n=>s.jsxs("div",{className:J.iconWithLabel,children:[s.jsx(ho,{type:"first",...n}),s.jsx("span",{children:"First"})]}),_r=n=>s.jsxs("div",{className:J.iconWithLabel,children:[s.jsx("span",{children:"Last"}),s.jsx(ho,{type:"last",...n})]});function fr(n){const e={root:J.root,control:J.control,dots:J.dots},r=n.classNames;if(r&&typeof r=="object"&&!Array.isArray(r)){const a=r;e.root=a.root?`${J.root} ${a.root}`:J.root,e.control=a.control?`${J.control} ${a.control}`:J.control,e.dots=a.dots?`${J.dots} ${a.dots}`:J.dots}const o=n.className;return{className:o?`${J.root} ${o}`:J.root,classNames:e}}const yr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=fr(t);return s.jsx(m.Pagination.Root,{ref:o,className:a.className,classNames:a.classNames,...t})});yr.displayName="Pagination.Root";const br=d.forwardRef(function({overStyled:e=!1,withLabel:r,icon:o,...t},a){const l=b(t,e),i=o||(r?pr:void 0);return s.jsx(m.Pagination.Next,{ref:a,"data-variant":"text",icon:i,...l})});br.displayName="Pagination.Next";const hr=d.forwardRef(function({overStyled:e=!1,withLabel:r,icon:o,...t},a){const l=b(t,e),i=o||(r?ur:void 0);return s.jsx(m.Pagination.Previous,{ref:a,"data-variant":"text",icon:i,...l})});hr.displayName="Pagination.Previous";const vr=d.forwardRef(function({overStyled:e=!1,withLabel:r,icon:o,...t},a){const l=b(t,e),i=o||(r?mr:void 0);return s.jsx(m.Pagination.First,{ref:a,"data-variant":"text",icon:i,...l})});vr.displayName="Pagination.First";const Nr=d.forwardRef(function({overStyled:e=!1,withLabel:r,icon:o,...t},a){const l=b(t,e),i=o||(r?_r:void 0);return s.jsx(m.Pagination.Last,{ref:a,"data-variant":"text",icon:i,...l})});Nr.displayName="Pagination.Last";const xr=d.forwardRef(function({overStyled:e=!1,getControlProps:r,withLabels:o,...t},a){const l=b(t,e),i=fr(l),c=u=>{const _={"data-variant":"text"};return r?{..._,...r(u)}:_},p=o?{nextIcon:pr,previousIcon:ur,firstIcon:mr,lastIcon:_r}:{};return s.jsx(m.Pagination,{ref:a,className:i.className,classNames:i.classNames,getControlProps:c,...p,...l})});xr.displayName="Pagination";const $r=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Pagination.Control,{ref:o,...t})});$r.displayName="Pagination.Control";const wr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Pagination.Dots,{ref:o,...t})});wr.displayName="Pagination.Dots";const xe=xr;xe.Root=yr;xe.Items=m.Pagination.Items;xe.Control=$r;xe.Dots=wr;xe.Next=br;xe.Previous=hr;xe.First=vr;xe.Last=Nr;xe.Icon=ho;const pl="Panel-module__content___wdGo-",ul="Panel-module__inner___ruA2b",ml="Panel-module__header___o7SiC",_l="Panel-module__title___181OP",fl="Panel-module__titleTruncate___fuP6V Panel-module__title___181OP",yl="Panel-module__body___SEC3T",bl="Panel-module__footer___t6-hz",ze={content:pl,inner:ul,header:ml,title:_l,titleTruncate:fl,body:yl,footer:bl},Cr=function({overStyled:e=!1,placement:r="right",keepMounted:o=!0,wrapHeaderText:t=!1,...a}){const l=b(a,e),i={content:ze.content,header:ze.header,title:t?ze.titleTruncate:ze.title,body:ze.body,inner:ze.inner},c=l.classNames;if(c&&typeof c=="object"&&!Array.isArray(c)){const p=c;Object.keys(p).forEach(u=>{i[u]?i[u]=`${i[u]} ${p[u]}`:i[u]=p[u]})}return s.jsx(m.Drawer,{position:r,keepMounted:o,closeOnClickOutside:a.closeOnClickOutside??!!a.opened,...l,classNames:i})};Cr.displayName="Panel";const Xo=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t.className,l=a?`${ze.footer} ${a}`:ze.footer;return s.jsx("div",{ref:o,className:l,...t})});Xo.displayName="PanelFooter";const Pr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Drawer.Root,{ref:o,...t})});Pr.displayName="PanelRoot";const gr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Drawer.Overlay,{ref:o,...t})});gr.displayName="PanelOverlay";const Tr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Drawer.Content,{ref:o,...t})});Tr.displayName="PanelContent";const jr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Drawer.Header,{ref:o,...t})});jr.displayName="PanelHeader";const Sr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Drawer.Title,{ref:o,...t})});Sr.displayName="PanelTitle";const Rr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Drawer.CloseButton,{ref:o,...t})});Rr.displayName="PanelCloseButton";const Ar=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Drawer.Body,{ref:o,...t})});Ar.displayName="PanelBody";const $e=Cr;$e.Root=Pr;$e.Overlay=gr;$e.Content=Tr;$e.Header=jr;$e.Title=Sr;$e.CloseButton=Rr;$e.Body=Ar;$e.Stack=m.Drawer.Stack;$e.Footer=Xo;const hl="Popover-module__dropdown___svhS6",vl="Popover-module__arrow___5A-0e",mt={dropdown:hl,arrow:vl},Ir=function({overStyled:e=!1,withBeak:r=!0,...o}){const t=b(o,e),a={dropdown:mt.dropdown,arrow:mt.arrow},l=t.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const u=l;Object.keys(u).forEach(_=>{a[_]?a[_]=`${a[_]} ${u[_]}`:a[_]=u[_]})}const i=t.arrowSize??16,c=t.withArrow,p=r??c;return s.jsx(m.Popover,{position:"top",arrowSize:i,withArrow:p,classNames:a,...t})};Ir.displayName="Popover";const Lr=function(e){return s.jsx(m.Popover.Target,{...e})};Lr.displayName="PopoverTarget";const Or=function({overStyled:e=!1,...r}){const o=b(r,e),t=o.className;return s.jsx(m.Popover.Dropdown,{className:t,...o})};Or.displayName="PopoverDropdown";const Jo=Ir;Jo.Target=Lr;Jo.Dropdown=Or;const Nl="Radio-module__groupRoot___bfUii",xl="Radio-module__root___kAjTD",$l="Radio-module__body___q2Wpj",wl="Radio-module__inner___QaTBB",Cl="Radio-module__radio___MfgN-",Pl="Radio-module__icon___DWznm",gl="Radio-module__labelWrapper___dB0Gi",Tl="Radio-module__label___vAFIP",B={groupRoot:Nl,root:xl,body:$l,inner:wl,radio:Cl,icon:Pl,labelWrapper:gl,label:Tl},et=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,description:_,assistiveText:x,assistiveWithIcon:y,error:f,required:N,withAsterisk:g,id:C,className:P,style:h,children:v,readOnly:w,readOnlyComponent:$,emptyValueComponent:j,value:T,defaultValue:O,...M}=e,S=b(M,o),R=S;return delete R.size,s.jsx(pe,{className:P,style:h,controlMaxWidth:"var(--recursica_ui-kit_components_radio-button-item_properties_max-width)",controlMinWidth:void 0,overStyled:o,labelElement:"div",formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,description:_,assistiveText:x,assistiveWithIcon:y,error:f,required:N,withAsterisk:g,id:C,readOnly:w&&!!$,readOnlyComponent:$,emptyValueComponent:j,readOnlyType:"text",readOnlyValue:T!==void 0?T:O,readOnlyNativeProps:e,activeComponent:s.jsx(m.Radio.Group,{ref:r,...S,disabled:w||R.disabled,value:T,defaultValue:O,children:s.jsx("div",{className:B.groupRoot,"data-layout":t,children:v})})})});et.displayName="RadioGroup";const jl=({className:n,style:e})=>s.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",className:n,style:e,children:s.jsx("circle",{cx:"8",cy:"8",r:"5"})}),ot=d.forwardRef(function(e,r){const{overStyled:o=!1,readOnly:t,readOnlyComponent:a,disabled:l,formLayout:i,labelSize:c,controlMaxWidth:p,controlMinWidth:u,..._}=e,x=b(_,o),y=x;delete y.size,delete y.color,delete y.radius,delete y.variant,delete y.iconColor;const f={root:B.root,body:B.body,inner:B.inner,radio:B.radio,icon:B.icon,labelWrapper:B.labelWrapper,label:B.label},N=y.classNames;if(N&&typeof N=="object"&&!Array.isArray(N)){const h=N;f.root=h.root?`${B.root} ${h.root}`:B.root,f.body=h.body?`${B.body} ${h.body}`:B.body,f.inner=h.inner?`${B.inner} ${h.inner}`:B.inner,f.radio=h.radio?`${B.radio} ${h.radio}`:B.radio,f.icon=h.icon?`${B.icon} ${h.icon}`:B.icon,f.labelWrapper=h.labelWrapper?`${B.labelWrapper} ${h.labelWrapper}`:B.labelWrapper,f.label=h.label?`${B.label} ${h.label}`:B.label}const g=y.className,C=g?`${B.root} ${g}`:B.root;if(t&&a){const h=!!(y.checked??y.defaultChecked),v=a,w=s.jsx(v,{...e,checked:h,label:y.label});return i?s.jsx(je,{formLayout:i,labelSize:c,controlMaxWidth:p,controlMinWidth:u,children:w}):s.jsx(s.Fragment,{children:w})}const P=s.jsx(m.Radio,{ref:r,icon:jl,className:C,classNames:f,disabled:t||l,...x});return i?s.jsx(je,{formLayout:i,labelSize:c,controlMaxWidth:p,controlMinWidth:u,children:P}):P});ot.displayName="Radio";ot.Group=et;const Sl="SegmentedControl-module__root___JFRhg",Rl="SegmentedControl-module__label___mS17q",Al="SegmentedControl-module__control___znOdQ",Il="SegmentedControl-module__indicator___ZMcJy",ae={root:Sl,label:Rl,control:Al,indicator:Il};function Ll(n){const e={root:ae.root,control:ae.control,label:ae.label,indicator:ae.indicator},r=n.classNames;if(r&&typeof r=="object"&&!Array.isArray(r)){const a=r;e.root=a.root?`${ae.root} ${a.root}`:ae.root,e.control=a.control?`${ae.control} ${a.control}`:ae.control,e.label=a.label?`${ae.label} ${a.label}`:ae.label,e.indicator=a.indicator?`${ae.indicator} ${a.indicator}`:ae.indicator}const o=n.className;return{className:o?`${ae.root} ${o}`:ae.root,classNames:e}}const Mr=d.forwardRef(function({overStyled:e=!1,orientation:r="horizontal",fullWidth:o,...t},a){const l=b(t,e),i=l;delete i.disabled;const c=Ll(i);return s.jsx(m.SegmentedControl,{ref:a,className:c.className,classNames:c.classNames,orientation:r,fullWidth:o,"data-orientation":r,...l})});Mr.displayName="SegmentedControl";const Ol=Mr,Ml="Slider-module__layoutOverride___zYPun",kl="Slider-module__sliderContainer___y8I0J",Wl="Slider-module__sliderTrackWrapper___UHpVh",zl="Slider-module__iconWrapper___uqHpC",Fl="Slider-module__sliderRoot___LI86H",El="Slider-module__sliderTrack___oqnlG",Dl="Slider-module__sliderBar___TI4VY",Bl="Slider-module__sliderThumb___OFn8p",Gl="Slider-module__sliderMark___1lM2B",Vl="Slider-module__minMaxGuide___TaGqz",Hl="Slider-module__rightGuideContainer___8dOT8",ql="Slider-module__currentValue___dGV2T",Ul="Slider-module__inputField___6x578",Kl="Slider-module__readOnlyValue___-ZzMW",F={layoutOverride:Ml,sliderContainer:kl,sliderTrackWrapper:Wl,iconWrapper:zl,sliderRoot:Fl,sliderTrack:El,sliderBar:Dl,sliderThumb:Bl,sliderMark:Gl,minMaxGuide:Vl,rightGuideContainer:Hl,currentValue:ql,inputField:Ul,readOnlyValue:Kl},Yl=({value:n})=>s.jsx("div",{className:F.readOnlyValue,children:n}),kr=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,labelActionArea:p,onLabelEditClick:u,label:_,tooltipLabel:x,assistiveText:y,assistiveWithIcon:f,error:N,required:g,withAsterisk:C,id:P,className:h,style:v,disabled:w,readOnly:$,readOnlyComponent:j,emptyValueComponent:T,value:O,defaultValue:M,icon:S,showInput:R=!1,showMinMaxLabels:k=!0,min:z=0,max:I=100,step:Z=1,onChange:re,onChangeEnd:H,...he}=e,[ue,Be]=d.useState(()=>O!==void 0?O:M!==void 0?M:z),ne=O!==void 0?O:ue,[Ie,q]=d.useState(ne.toString());d.useEffect(()=>{q(ne.toString())},[ne]);const Q=G=>{O===void 0&&Be(G),re==null||re(G)},we=G=>{const Qe=G.target.value;q(Qe);const Xe=parseFloat(Qe);if(!isNaN(Xe)){const ao=Math.max(z,Math.min(I,Xe));Q(ao)}},Ge=()=>{q(ne.toString())},Ve=b(he,o),le=Ve;delete le.size,delete le.variant,delete le.radius,delete le.wrapperProps;const me={root:F.sliderRoot,track:F.sliderTrack,bar:F.sliderBar,thumb:F.sliderThumb,mark:F.sliderMark,markLabel:F.sliderMarkLabel},_e=le.classNames;if(_e&&typeof _e=="object"&&!Array.isArray(_e)){const G=_e;me.root=G.root?`${F.sliderRoot} ${G.root}`:F.sliderRoot,me.track=G.track?`${F.sliderTrack} ${G.track}`:F.sliderTrack,me.bar=G.bar?`${F.sliderBar} ${G.bar}`:F.sliderBar,me.thumb=G.thumb?`${F.sliderThumb} ${G.thumb}`:F.sliderThumb,me.mark=G.mark?`${F.sliderMark} ${G.mark}`:F.sliderMark,me.markLabel=G.markLabel?`${F.sliderMarkLabel} ${G.markLabel}`:F.sliderMarkLabel}const Ce=h?`${F.layoutOverride} ${h}`:F.layoutOverride,so=S?s.jsx("span",{className:F.iconWrapper,"aria-hidden":!0,children:S}):null;return s.jsx(pe,{ref:r,className:Ce,style:v,controlMaxWidth:void 0,controlMinWidth:void 0,overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,labelActionArea:p,onLabelEditClick:u,label:_,assistiveText:y,assistiveWithIcon:f,error:N,required:g,withAsterisk:C,id:P,readOnly:$,readOnlyComponent:j||Yl,emptyValueComponent:T,readOnlyType:"text",readOnlyValue:ne,readOnlyNativeProps:{value:ne},activeComponent:s.jsxs("div",{className:F.sliderContainer,"data-form-layout":t,"data-disabled":w?"true":void 0,"data-error":N?"true":void 0,children:[so,k&&s.jsx("span",{className:F.minMaxGuide,children:z}),s.jsx("div",{className:F.sliderTrackWrapper,children:s.jsx(m.Slider,{classNames:me,disabled:w,value:ne,onChange:Q,onChangeEnd:H,min:z,max:I,step:Z,label:x,...Ve})}),s.jsxs("div",{className:F.rightGuideContainer,children:[!R&&s.jsx("span",{className:F.currentValue,children:ne}),k&&s.jsx("span",{className:F.minMaxGuide,children:I})]}),R&&s.jsx("input",{type:"number",className:F.inputField,value:Ie,onChange:we,onBlur:Ge,min:z,max:I,step:Z,disabled:w,"data-error":N?"true":void 0})]})})});kr.displayName="Slider";const Zl="Stack-module__root___NUN-x",_o={root:Zl},Wr=d.forwardRef(function({children:e,gap:r="rec-default",...o},t){const a={root:_o.root},l=o.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const p=l;a.root=p.root?`${_o.root} ${p.root}`:_o.root}const i=o.className,c=i?`${_o.root} ${i}`:_o.root;return s.jsx(m.Stack,{ref:t,className:c,classNames:a,...bo({gap:r,...o}),children:e})});Wr.displayName="Stack";const Ql=m.createPolymorphicComponent(Wr),Xl="Stepper-module__root___jbSYO",Jl="Stepper-module__horizontal___USHT1",ei="Stepper-module__steps___4HPO6",oi="Stepper-module__step___s2nqL",ti="Stepper-module__stepBody___TBvys",ri="Stepper-module__stepLabel___N6nuy",si="Stepper-module__stepDescription___DnDAy",ai="Stepper-module__separator___pU0No",ni="Stepper-module__vertical___d4mOs",li="Stepper-module__large___J18-y",ii="Stepper-module__small___Ub-zb",ci="Stepper-module__stepIcon___YQHNq",di="Stepper-module__stepCompletedIcon___B9MeL",pi="Stepper-module__verticalSeparator___frWc1",ui="Stepper-module__content___J-h8X",te={root:Xl,horizontal:Jl,steps:ei,step:oi,stepBody:ti,stepLabel:ri,stepDescription:si,separator:ai,vertical:ni,large:li,small:ii,stepIcon:ci,stepCompletedIcon:di,verticalSeparator:pi,content:ui},zr=d.forwardRef(function(e,r){const{overStyled:o=!1,size:t="large",orientation:a="horizontal",className:l,style:i,...c}=e,p=b(c,o);return s.jsx(m.Stepper,{ref:r,orientation:a,className:`${te.root} ${a==="horizontal"?te.horizontal:te.vertical} ${t==="large"?te.large:te.small} ${l||""}`,style:i,"data-size":t,"data-orientation":a,classNames:{steps:te.steps,step:te.step,stepIcon:te.stepIcon,stepCompletedIcon:te.stepCompletedIcon,stepBody:te.stepBody,stepLabel:te.stepLabel,stepDescription:te.stepDescription,separator:te.separator,verticalSeparator:te.verticalSeparator,content:te.content},...p})}),Fr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Stepper.Step,{ref:o,...t})});Fr.displayName="Stepper.Step";const mi=Object.assign(zr,{Step:Fr,Completed:m.Stepper.Completed});zr.displayName="Stepper";const _i="Switch-module__root___Y5Ydi",fi="Switch-module__track___7ObdZ",yi="Switch-module__body___Sw9Wr",bi="Switch-module__thumb___-FTeK",hi="Switch-module__labelWrapper___YSOwx",vi="Switch-module__label___LrH7V",Ni="Switch-module__thumbIconWrapper___sCY-1",xi="Switch-module__checkIcon___ZBAQN",$i="Switch-module__closeIcon___bLLGw",wi="Switch-module__groupRoot___-Uepi",E={root:_i,track:fi,body:yi,thumb:bi,labelWrapper:hi,label:vi,thumbIconWrapper:Ni,checkIcon:xi,closeIcon:$i,groupRoot:wi},tt=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,description:_,assistiveText:x,assistiveWithIcon:y,error:f,required:N,withAsterisk:g,id:C,className:P,style:h,children:v,readOnly:w,readOnlyComponent:$,emptyValueComponent:j,value:T,defaultValue:O,...M}=e,S=b(M,o),R=S;return delete R.size,s.jsx(pe,{className:P,style:h,controlMaxWidth:void 0,controlMinWidth:void 0,overStyled:o,labelElement:"div",formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,description:_,assistiveText:x,assistiveWithIcon:y,error:f,required:N,withAsterisk:g,id:C,readOnly:w&&!!$,readOnlyComponent:$,emptyValueComponent:j,readOnlyType:"text",readOnlyValue:T!==void 0?T:O,readOnlyNativeProps:e,activeComponent:s.jsx(m.Switch.Group,{ref:r,...S,disabled:w||R.disabled,value:T,defaultValue:O,children:s.jsx("div",{className:E.groupRoot,"data-layout":t,children:v})})})});tt.displayName="SwitchGroup";const rt=d.forwardRef(function(e,r){const{overStyled:o=!1,readOnly:t,readOnlyComponent:a,disabled:l,thumbIcon:i,formLayout:c,labelSize:p,controlMaxWidth:u,controlMinWidth:_,...x}=e,y=b(x,o),f=y;delete f.size,delete f.color,delete f.radius,delete f.variant;const N={root:E.root,body:E.body,track:E.track,thumb:E.thumb,trackLabel:E.trackLabel,labelWrapper:E.labelWrapper,label:E.label},g=f.classNames;if(g&&typeof g=="object"&&!Array.isArray(g)){const w=g;N.root=w.root?`${E.root} ${w.root}`:E.root,N.body=w.body?`${E.body} ${w.body}`:E.body,N.track=w.track?`${E.track} ${w.track}`:E.track,N.thumb=w.thumb?`${E.thumb} ${w.thumb}`:E.thumb,N.trackLabel=w.trackLabel?`${E.trackLabel} ${w.trackLabel}`:E.trackLabel,N.labelWrapper=w.labelWrapper?`${E.labelWrapper} ${w.labelWrapper}`:E.labelWrapper,N.label=w.label?`${E.label} ${w.label}`:E.label}const C=f.className,P=C?`${E.root} ${C}`:E.root;if(t&&a){const w=!!(f.checked??f.defaultChecked),$=a,j=s.jsx($,{...e,checked:w,label:f.label});return c?s.jsx(je,{formLayout:c,labelSize:p,controlMaxWidth:u,controlMinWidth:_,children:j}):s.jsx(s.Fragment,{children:j})}const h=s.jsxs("div",{className:E.thumbIconWrapper,children:[s.jsx(m.CheckIcon,{className:E.checkIcon}),s.jsx(m.CloseIcon,{className:E.closeIcon})]}),v=s.jsx(m.Switch,{ref:r,className:P,classNames:N,disabled:t||l,"data-disabled":t||l||void 0,thumbIcon:i??h,...y});return c?s.jsx(je,{formLayout:c,labelSize:p,controlMaxWidth:u,controlMinWidth:_,children:v}):v});rt.displayName="Switch";rt.Group=tt;const Ci="Table-module__root___aMWWS",Pi={root:Ci},Er=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a=t.className,l=Pi.root,i=a?`${l} ${a}`:l;return s.jsx(m.Table,{ref:o,className:i,...t})});Er.displayName="Table";const Dr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Table.Thead,{ref:o,...t})});Dr.displayName="TableThead";const Br=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Table.Tbody,{ref:o,...t})});Br.displayName="TableTbody";const Gr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Table.Tr,{ref:o,...t})});Gr.displayName="TableTr";const Vr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Table.Th,{ref:o,...t})});Vr.displayName="TableTh";const Hr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Table.Td,{ref:o,...t})});Hr.displayName="TableTd";const qr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Table.Tfoot,{ref:o,...t})});qr.displayName="TableTfoot";const Ur=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Table.Caption,{ref:o,...t})});Ur.displayName="TableCaption";const Kr=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Table.ScrollContainer,{ref:o,...t})});Kr.displayName="TableScrollContainer";const Ae=Er;Ae.Thead=Dr;Ae.Tbody=Br;Ae.Tr=Gr;Ae.Th=Vr;Ae.Td=Hr;Ae.Tfoot=qr;Ae.Caption=Ur;Ae.ScrollContainer=Kr;const gi="Tabs-module__root___-VKVI",Ti="Tabs-module__list___qRVME",ji="Tabs-module__tab___IdDYc",Si="Tabs-module__panel___08i9c",$o={root:gi,list:Ti,tab:ji,panel:Si},Yr=d.forwardRef(function(e,r){const{variant:o="default",orientation:t="horizontal",overStyled:a=!1,className:l,...i}=e,c=b(i,a);return s.jsx(m.Tabs,{ref:r,variant:o,orientation:t,className:`${$o.root} ${l||""}`,"data-variant":o,"data-orientation":t,classNames:{list:$o.list,tab:$o.tab,panel:$o.panel},...c})});Yr.displayName="Tabs";const Zr=d.forwardRef(function(e,r){const{overStyled:o=!1,...t}=e;return s.jsx(m.Tabs.List,{ref:r,...b(t,o)})});Zr.displayName="Tabs.List";const Qr=d.forwardRef(function(e,r){const{overStyled:o=!1,...t}=e;return s.jsx(m.Tabs.Tab,{ref:r,...b(t,o)})});Qr.displayName="Tabs.Tab";const Xr=d.forwardRef(function(e,r){const{overStyled:o=!1,...t}=e;return s.jsx(m.Tabs.Panel,{ref:r,...b(t,o)})});Xr.displayName="Tabs.Panel";const Ri=Object.assign(Yr,{List:Zr,Tab:Qr,Panel:Xr}),Jr=d.forwardRef(function({overStyled:e=!1,variant:r="body",...o},t){const a=b(o,e),l=a.className,i=`recursica_brand_typography_${r}`,c=l?`${i} ${l}`:i;return s.jsx(m.Text,{ref:t,className:c,...a})});Jr.displayName="Text";const Ai=m.createPolymorphicComponent(Jr),Ii="TextArea-module__layoutOverride___4MCdm",Li="TextArea-module__root___3dyeu",Oi="TextArea-module__input___8l36v",Me={layoutOverride:Ii,root:Li,input:Oi},es=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,className:C,style:P,disabled:h,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,value:j,defaultValue:T,...O}=e,M=b(O,o),S=M;delete S.size,delete S.variant,delete S.radius;const R={wrapper:Me.root,input:Me.input},k=S.classNames;if(k&&typeof k=="object"&&!Array.isArray(k)){const I=k;R.wrapper=I.wrapper?`${Me.root} ${I.wrapper}`:Me.root,R.input=I.input?`${Me.input} ${I.input}`:Me.input}const z=C?`${Me.layoutOverride} ${C}`:Me.layoutOverride;return s.jsx(pe,{className:z,style:P,controlMaxWidth:"var(--textarea-control-max-width)",controlMinWidth:"var(--textarea-control-min-width)",overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,readOnlyType:"text",readOnlyValue:j!==void 0?j:T,readOnlyNativeProps:e,activeComponent:s.jsx(m.Textarea,{ref:r,classNames:R,disabled:h,value:j,defaultValue:T,label:void 0,description:void 0,error:void 0,required:void 0,withAsterisk:void 0,wrapperProps:{"data-disabled":h?"true":void 0,"data-error":y?"true":void 0},...M})})});es.displayName="TextArea";const Mi="TextField-module__layoutOverride___SNZqc",ki="TextField-module__root___2ZYkG",Wi="TextField-module__input___RL-My",zi="TextField-module__section___bCIJ0",be={layoutOverride:Mi,root:ki,input:Wi,section:zi},os=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,className:C,style:P,disabled:h,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,value:j,defaultValue:T,...O}=e,M=b(O,o),S=M;delete S.size,delete S.variant,delete S.radius;const R={wrapper:be.root,input:be.input,section:be.section},k=S.classNames;if(k&&typeof k=="object"&&!Array.isArray(k)){const I=k;R.wrapper=I.wrapper?`${be.root} ${I.wrapper}`:be.root,R.input=I.input?`${be.input} ${I.input}`:be.input,R.section=I.section?`${be.section} ${I.section}`:be.section}const z=C?`${be.layoutOverride} ${C}`:be.layoutOverride;return s.jsx(pe,{className:z,style:P,controlMaxWidth:"var(--text-field-control-max-width)",controlMinWidth:"var(--text-field-control-min-width)",overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,readOnlyType:"text",readOnlyValue:j!==void 0?j:T,readOnlyNativeProps:e,activeComponent:s.jsx(m.Input,{ref:r,classNames:R,disabled:h,value:j,defaultValue:T,wrapperProps:{"data-disabled":h?"true":void 0,"data-error":y?"true":void 0},...M})})});os.displayName="TextField";const ts=d.forwardRef(function(e,r){const{overStyled:o=!1,className:t,disabled:a,error:l,...i}=e,c=b(i,o),p=c;delete p.size,delete p.variant,delete p.radius;const u={wrapper:t?`${V.root} ${t}`:V.root,input:V.input,section:V.section,dropdown:V.dropdown,option:V.option};return s.jsx(m.Select,{ref:r,classNames:u,disabled:a,label:void 0,description:void 0,error:void 0,attributes:{wrapper:{"data-disabled":a?"true":void 0,"data-error":l?"true":void 0}},...c})});ts.displayName="BareDropdown";const Fi="TimePicker-module__layoutOverride___zKo4Q",Ei="TimePicker-module__root___BcvRu",Di="TimePicker-module__timeWrapper___hJVre",Bi="TimePicker-module__timeInput___FQysn",Gi="TimePicker-module__fieldsGroup___2yHhR",Vi="TimePicker-module__timeField___twRZd",Hi="TimePicker-module__amPmSelect___mSdvt",ke={layoutOverride:Fi,root:Ei,timeWrapper:Di,timeInput:Bi,fieldsGroup:Gi,timeField:Vi,amPmSelect:Hi},qi=[{value:"AM",label:"AM"},{value:"PM",label:"PM"}];function _t(n){if(!n)return;const e=parseInt(n.slice(0,2),10);return Number.isNaN(e)?void 0:e}function Ui(n,e){return`${String(e).padStart(2,"0")}${n.slice(2)}`}function Ki(n){if(!n)return;const[e,r,o]=n.split(":"),t=parseInt(e,10);if(Number.isNaN(t)||r===void 0)return n;const a=t>=12,l=t%12===0?12:t%12,i=o!==void 0?`${r}:${o}`:r;return`${l}:${i} ${a?"PM":"AM"}`}function Yi(n,e){var o;const r=(o=Object.getOwnPropertyDescriptor(window.HTMLSelectElement.prototype,"value"))==null?void 0:o.set;r==null||r.call(n,e),n.dispatchEvent(new Event("change",{bubbles:!0}))}const rs=d.forwardRef(function(e,r){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,className:C,style:P,disabled:h,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,value:j,defaultValue:T,onChange:O,withSeconds:M,minTime:S,maxTime:R,...k}=e,z=b(k,o),I=z;delete I.size,delete I.variant,delete I.radius;const[Z,re]=d.useState(()=>j??T);d.useEffect(()=>{j!==void 0&&re(j)},[j]);const H=d.useRef(null);d.useEffect(()=>{_t(j??T)===void 0&&H.current&&Yi(H.current,"AM")},[]);const he=Q=>{re(Q),O==null||O(Q)},ue=_t(Z),Be=ue!==void 0&&ue>=12,ne=Q=>{he(Q)},Ie=Q=>{if(ue===void 0||!Z||!Q)return;const we=Q==="PM";if(we===Be)return;const Ge=we?ue+12:ue-12;he(Ui(Z,Ge))},q=C?`${ke.layoutOverride} ${C}`:ke.layoutOverride;return s.jsx(pe,{className:q,style:P,controlMaxWidth:void 0,controlMinWidth:void 0,overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:c,onLabelEditClick:p,label:u,assistiveText:_,assistiveWithIcon:x,error:y,required:f,withAsterisk:N,id:g,readOnly:v,readOnlyComponent:w,emptyValueComponent:$,readOnlyType:"text",readOnlyValue:Ki(j!==void 0?j:T),readOnlyNativeProps:e,activeComponent:s.jsxs("div",{className:ke.root,"data-disabled":h?"true":void 0,"data-error":y?"true":void 0,children:[s.jsx(yt.TimePicker,{ref:r,classNames:{wrapper:ke.timeWrapper,input:ke.timeInput,fieldsGroup:ke.fieldsGroup,field:ke.timeField},disabled:h,value:Z,onChange:ne,format:"12h",withSeconds:M,min:S,max:R,withDropdown:!1,amPmRef:H,...z}),s.jsx(ts,{overStyled:!0,className:ke.amPmSelect,styles:{wrapper:{width:"fit-content"}},data:qi,value:Be?"PM":"AM",onChange:Ie,disabled:h,error:!!y,"aria-label":"AM or PM"})]})})});rs.displayName="TimePicker";const Zi="Timeline-module__root___LwRdZ",Qi="Timeline-module__item___T5xdQ",Xi="Timeline-module__itemBody___XAV-E",Ji="Timeline-module__itemBullet___rPXCy",ec="Timeline-module__itemTitle___GgRRW",oc="Timeline-module__itemContent___vurs-",tc="Timeline-module__description___f9sxV",rc="Timeline-module__timestamp___owiRu",We={root:Zi,item:Qi,itemBody:Xi,itemBullet:Ji,itemTitle:ec,itemContent:oc,description:tc,timestamp:rc},st=d.forwardRef(function({overStyled:e=!1,timestamp:r,bulletVariant:o="default",children:t,...a},l){const i=b(a,e),c={item:We.item,itemBody:We.itemBody,itemContent:We.itemContent,itemBullet:We.itemBullet,itemTitle:We.itemTitle},p=i.classNames;if(p&&typeof p=="object"&&!Array.isArray(p)){const _=p;Object.keys(_).forEach(x=>{c[x]?c[x]=`${c[x]} ${_[x]}`:c[x]=_[x]})}const u=r?s.jsxs(s.Fragment,{children:[t&&s.jsx("div",{className:We.description,children:t}),s.jsx("div",{className:We.timestamp,children:r})]}):t;return s.jsx(m.TimelineItem,{ref:l,classNames:c,"data-variant":o,...i,children:u})});st.displayName="TimelineItem";const ss=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e),a={root:We.root},l=t.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const i=l;Object.keys(i).forEach(c=>{a[c]?a[c]=`${a[c]} ${i[c]}`:a[c]=i[c]})}return s.jsx(m.Timeline,{ref:o,classNames:a,...t})});ss.displayName="Timeline";const as=ss;as.Item=st;const ns=d.forwardRef(function({overStyled:e=!1,order:r=1,...o},t){const a=b(o,e),l=a.className,i=`recursica_brand_typography_h${r}`,c=l?`${i} ${l}`:i;return s.jsx(m.Title,{ref:t,order:r,className:c,...a})});ns.displayName="Title";const sc="Toast-module__root___MUvfI",ac="Toast-module__icon___VwvE1",nc="Toast-module__loader___8Gxd-",lc="Toast-module__title___-H6R2",ic="Toast-module__description___-QwfC",cc="Toast-module__closeButton___vGr7g",dc="Toast-module__body___VLkXA",Ye={root:sc,icon:ac,loader:nc,title:lc,description:ic,closeButton:cc,body:dc},ls=d.forwardRef(function({overStyled:e=!1,variant:r="default",withCloseButton:o=!0,...t},a){const l=b(t,e),i={root:Ye.root,body:Ye.body,title:Ye.title,description:Ye.description,closeButton:Ye.closeButton,icon:Ye.icon,loader:Ye.loader},c=l.classNames;if(c&&typeof c=="object"&&!Array.isArray(c)){const p=c;Object.keys(p).forEach(u=>{i[u]?i[u]=`${i[u]} ${p[u]}`:i[u]=p[u]})}return s.jsx(m.Notification,{ref:a,withCloseButton:o,withBorder:!1,"data-variant":r,classNames:i,loading:!1,...l})});ls.displayName="Toast";const pc="Tooltip-module__tooltip___UA7H9",uc="Tooltip-module__arrow___4zROk",ft={tooltip:pc,arrow:uc},is=function({overStyled:e=!1,withBeak:r=!0,...o}){const t=b(o,e),a={tooltip:ft.tooltip,arrow:ft.arrow},l=t.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const u=l;Object.keys(u).forEach(_=>{a[_]?a[_]=`${a[_]} ${u[_]}`:a[_]=u[_]})}const i=t.arrowSize??16,c=t.withArrow,p=r??c;return s.jsx(m.Tooltip,{position:"top",multiline:!0,arrowSize:i,withArrow:p,classNames:a,...t})};is.displayName="Tooltip";const cs=d.forwardRef(function({overStyled:e=!1,...r},o){const t=b(r,e);return s.jsx(m.Tooltip.Floating,{ref:o,...t})});cs.displayName="TooltipFloating";const at=is;at.Floating=cs;at.Group=m.Tooltip.Group;const mc=n=>s.jsx("div",{...n,children:"TransferList"}),_c="Tree-module__root___ANcH3",fc="Tree-module__subtree___KoLT8",yc="Tree-module__node___Hvnjg",bc="Tree-module__row___sq5ff",hc="Tree-module__label___zJDit",vc="Tree-module__expandButton___W0WTT",Nc="Tree-module__expandGlyph___w8dDQ",Ee={root:_c,subtree:fc,node:yc,row:bc,label:hc,expandButton:vc,expandGlyph:Nc};function xc(){return s.jsx("svg",{className:Ee.expandGlyph,viewBox:"0 0 16 16",width:"1em",height:"1em",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:s.jsx("path",{d:"M5 3l5 5-5 5"})})}function $c(n){return function({node:r,hasChildren:o,expanded:t,selected:a,tree:l,elementProps:i}){return s.jsxs("div",{...i,className:Ee.row,"data-has-children":o||void 0,"data-expanded":o&&t?!0:void 0,children:[s.jsx(Ro,{overStyled:!0,variant:"text",size:"small",icon:s.jsx(xc,{}),"aria-label":"Toggle subtree","aria-hidden":"true",tabIndex:-1,className:Ee.expandButton,onClick:c=>{c.stopPropagation(),!n&&l.toggleExpanded(r.value)}}),s.jsx("span",{className:Ee.label,"data-selected":a||void 0,children:r.label})]})}}const ds=d.forwardRef(function({overStyled:e=!1,data:r,initialExpandedValues:o,initialSelectedValues:t,multiple:a=!1,disabled:l=!1,onNodeExpand:i,onNodeCollapse:c,onSelectedChange:p,...u},_){const x=b(u,e),y=m.useTree({initialExpandedState:o?m.getTreeExpandedState(r,o):void 0,initialSelectedState:t,multiple:a,onNodeExpand:i,onNodeCollapse:c});d.useEffect(()=>{p==null||p(y.selectedState)},[y.selectedState,p]);const f=d.useRef(null);d.useEffect(()=>{const P=f.current;if(!P)return;const h=v=>{if(l||v.key!=="Enter"&&v.key!==" ")return;const w=v.target.closest('[role="treeitem"]'),$=w==null?void 0:w.dataset.value;$&&(v.preventDefault(),y.select($))};return P.addEventListener("keydown",h),()=>P.removeEventListener("keydown",h)},[y.select,l]),d.useEffect(()=>{const P=f.current;if(!P||!l)return;const h=v=>{v.preventDefault(),v.stopPropagation()};return P.addEventListener("keydown",h,{capture:!0}),()=>P.removeEventListener("keydown",h,{capture:!0})},[l]);const N=us.useMergedRef(_,f),g=x.className,C=g?`${Ee.root} ${g}`:Ee.root;return s.jsx(m.Tree,{ref:N,data:r,tree:y,expandOnClick:!1,selectOnClick:!l,expandOnSpace:!1,renderNode:$c(l),"data-disabled":l||void 0,classNames:{root:C,node:Ee.node,subtree:Ee.subtree},...x})});ds.displayName="Tree";const wc=Nn,Cc=Dt,Pc=Et,gc=Bt,Tc=Ql,jc=It,Sc=Rn,Rc=Ai,Ac=A(So),Ic=A(Fo),Lc=A(To),Oc=A(jo),Mc=A(Po),kc=A(xt),Wc=A(na),zc=A(ia),Fc=A(Ct),Ec=A(Ro),Dc=A(Ca),Bc=A(Ko),Gc=A(Uo),Vc=A(yo),Hc=A(Lt),qc=A(Ot),Uc=A(Mt),Kc=A(kt),Yc=A(je),Zc=A(Yo),Qc=A(qo),Xc=A(Eo),Jc=A(Ze),ed=A(Re),od=A(dr),td=A(xe),rd=A($e),sd=A(Xo),ad=A(Jo),nd=A(ot),ld=A(et),id=A(Ho),cd=A(Ol),dd=A(kr),pd=A(mi),ud=A(rt),md=A(tt),_d=A(Ae),fd=A(Ri),yd=A(es),bd=A(os),hd=A(rs),vd=A(as),Nd=A(st),xd=A(ns),$d=A(ls),wd=A(at),Cd=A(mc),Pd=A(ds);exports.Accordion=Ac;exports.AccordionControl=Lc;exports.AccordionItem=Ic;exports.AccordionPanel=Oc;exports.AssistiveElement=Mc;exports.AutoComplete=kc;exports.Avatar=Wc;exports.Badge=zc;exports.Breadcrumb=Fc;exports.Button=Ec;exports.Card=Dc;exports.Checkbox=Bc;exports.CheckboxGroup=Gc;exports.Chip=Vc;exports.Container=jc;exports.DatePicker=Hc;exports.Dropdown=qc;exports.EmptyValueRenderer=fo;exports.FileInput=Uc;exports.FileUpload=Kc;exports.Flex=wc;exports.FormControlLayout=Yc;exports.Grid=Cc;exports.GridCol=Pc;exports.Group=gc;exports.HoverCard=Zc;exports.IS_DEV=De;exports.Label=Xc;exports.Layer=Do;exports.Link=Sc;exports.Loader=Qc;exports.Menu=Jc;exports.Modal=ed;exports.NumberInput=od;exports.Pagination=td;exports.Panel=rd;exports.PanelFooter=sd;exports.Popover=ad;exports.RECURSICA_COMPONENTS=Hs;exports.Radio=nd;exports.RadioGroup=ld;exports.ReadOnlyField=id;exports.RecursicaThemeProvider=Vs;exports.SegmentedControl=cd;exports.Slider=dd;exports.Stack=Tc;exports.Stepper=pd;exports.Switch=ud;exports.SwitchGroup=md;exports.Table=_d;exports.Tabs=fd;exports.Text=Rc;exports.TextArea=yd;exports.TextField=bd;exports.TimePicker=hd;exports.Timeline=vd;exports.TimelineItem=Nd;exports.Title=xd;exports.Toast=$d;exports.Tooltip=wd;exports.TransferList=Cd;exports.Tree=Pd;exports.copyToClipboard=qs;exports.fileMatchesAccept=Vo;exports.injectOverStyledStyles=Bo;exports.isGlobalOverStyledActive=Gs;exports.registerOverStyledConsoleCommand=Go;exports.toggleGlobalOverStyled=vt;exports.useGlobalOverStyled=Nt;exports.wrapComponent=A;
11
+ `,document.head.appendChild(e))}function qo(){if(!oo)return;if(typeof window>"u"){console.warn("[Recursica] window is undefined. Cannot register console command.");return}const n=e=>{try{e.recursica=e.recursica||{},e.recursica.toggleOverStyled=()=>`[Recursica] Overstyled outline highlight is now: ${Ct()?"ON (cyan 2px box shadow)":"OFF"}`}catch{}};n(window),window.parent&&window.parent!==window&&n(window.parent)}const mt="data-recursica-theme";function Zs({children:n,theme:e="light",initLayer0:s=!0}){return c.useEffect(()=>{const o=document.documentElement;return o.setAttribute(mt,e),()=>{o.removeAttribute(mt)}},[e]),c.useEffect(()=>{Ho(),qo()},[]),s?r.jsx(Vo,{layer:0,children:n}):r.jsx(r.Fragment,{children:n})}const Ys=["Accordion","AssistiveElement","Autocomplete","Avatar","Badge","Box","Breadcrumb","Button","Card","Checkbox","CheckboxGroup","Chip","Container","DatePicker","Dropdown","EmptyValueRenderer","FileInput","FileUpload","Flex","FormControlLayout","FormControlWrapper","Grid","Group","HoverCard","Label","Layer","Link","Loader","Menu","Modal","NumberInput","Pagination","Panel","Popover","Radio","ReadOnlyField","SegmentedControl","Slider","Stack","Stepper","Switch","Table","Tabs","Text","TextArea","TextField","TimePicker","Timeline","Title","Toast","Tooltip","TransferList","Tree","Typography"],Xs=(n,e)=>{const s=document.activeElement;return new Promise((o,t)=>{if(e&&e.current){const a=document.createElement("textarea");a.readOnly=!0,a.defaultValue=n,e.current.appendChild(a),a.select();const l=document.execCommand("copy");e.current.removeChild(a),s&&s.focus(),l?o():t(new Error("Failed to copy"))}else t(new Error("Copy area reference is not defined"))})};function Uo(n,e){const s=(e??"").split(",").map(a=>a.trim().toLowerCase()).filter(Boolean);if(s.length===0)return!0;const o=n.name.toLowerCase(),t=n.type.toLowerCase();return s.some(a=>a.startsWith(".")?o.endsWith(a):a.endsWith("/*")?t.startsWith(a.slice(0,-1)):t===a)}function k(n){if(!oo||typeof n!="function"&&!(n&&n.$$typeof))return n;const e=c.forwardRef((o,t)=>{const{overStyled:a}=o,l=wt(),i=c.createElement(n,{...o,ref:t});return a&&l?r.jsx("div",{className:"recursica-over-styled",children:i}):i});e.displayName=n.displayName||n.name||"Component";const s=Object.keys(n);for(const o of s){if(o==="render"||o==="$$typeof")continue;const t=n[o];(typeof t=="function"||t&&t.$$typeof)&&o[0]===o[0].toUpperCase()?e[o]=k(t):e[o]=t}return e}const Qs="ReadOnlyField-module__layoutOverride___9fSsG",Js="ReadOnlyField-module__textField___qKn25",Ao={layoutOverride:Qs,textField:Js},jo=({value:n,overStyled:e=!1,...s})=>{const o=h(s,e),t=o.className;return r.jsx(m.Box,{component:"p",className:t?`${Ao.textField} ${t}`:Ao.textField,...o,children:n!=null?c.isValidElement(n)?n:Array.isArray(n)?n.join(", "):String(n):""})};jo.displayName="ReadOnlyTextField";const Ko=c.forwardRef(function({value:e,type:s="text",emptyValueComponent:o,overStyled:t=!1,className:a,style:l,...i},d){let u=null;const p=h(i,t),_=o||No,y=(_.check?_.check(e):No.check(e))?r.jsx(_,{value:e}):e;switch(s){case"boolean":u=r.jsx(jo,{value:e===!0?"True":e===!1?"False":y,overStyled:t});break;case"switch":u=r.jsx(jo,{value:e===!0?"On":e===!1?"Off":y,overStyled:t});break;case"text":default:u=r.jsx(jo,{value:y,overStyled:t});break}const f=a?`${Ao.layoutOverride} ${a}`:Ao.layoutOverride;return r.jsx(_o,{ref:d,overStyled:t,className:f,style:l,...p,children:u})});Ko.displayName="ReadOnlyField";const xe=c.forwardRef(function({readOnly:e,readOnlyComponent:s,readOnlyType:o="text",readOnlyValue:t,readOnlyNativeProps:a,emptyValueComponent:l,activeComponent:i,overStyled:d,onLabelEditClick:u,...p},_){if(e){if(s){const $=s;return r.jsx(_o,{ref:_,...p,onLabelEditClick:u,overStyled:d,children:r.jsx($,{...a})})}return r.jsx(Ko,{ref:_,type:o,value:t,emptyValueComponent:l,onLabelEditClick:u,overStyled:d,...p})}return r.jsx(_o,{ref:_,...p,onLabelEditClick:u,overStyled:d,children:i})});xe.displayName="WithReadOnlyWrapper";const ea="AutoComplete-module__layoutOverride___-K9WL",oa="AutoComplete-module__root___kANza",ta="AutoComplete-module__input___g51MC",ra="AutoComplete-module__section___WAbf1",sa="AutoComplete-module__dropdown___NqO3E",aa="AutoComplete-module__option___Y-Kja",le={layoutOverride:ea,root:oa,input:ta,section:ra,dropdown:sa,option:aa},gt=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,className:w,style:T,disabled:b,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,value:j,defaultValue:g,...O}=e,M=h(O,o),S=M;delete S.size,delete S.variant,delete S.radius;const R={wrapper:le.root,input:le.input,section:le.section,dropdown:le.dropdown,option:le.option},I=S.classNames;if(I&&typeof I=="object"&&!Array.isArray(I)){const L=I;R.wrapper=L.wrapper?`${le.root} ${L.wrapper}`:le.root,R.input=L.input?`${le.input} ${L.input}`:le.input,R.section=L.section?`${le.section} ${L.section}`:le.section,R.dropdown=L.dropdown?`${le.dropdown} ${L.dropdown}`:le.dropdown,R.option=L.option?`${le.option} ${L.option}`:le.option}const F=w?`${le.layoutOverride} ${w}`:le.layoutOverride;return r.jsx(xe,{className:F,style:T,controlMaxWidth:"var(--autocomplete-control-max-width)",controlMinWidth:"var(--autocomplete-control-min-width)",overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,readOnlyType:"text",readOnlyValue:j!==void 0?j:g,readOnlyNativeProps:e,activeComponent:r.jsx(m.Autocomplete,{ref:s,classNames:R,disabled:b,value:j,defaultValue:g,error:!!y,...M})})});gt.displayName="AutoComplete";const na="Avatar-module__root___fXu-J",la="Avatar-module__iconWrapper___ojly2",ia="Avatar-module__textWrapper___zp-jD",ca="Avatar-module__image___ieqGp",da="Avatar-module__placeholder___IDW7-",Te={root:na,iconWrapper:la,textWrapper:ia,image:ca,placeholder:da},Pt=c.forwardRef(function({size:e="default",variant:s="solid",icon:o,children:t,src:a,overStyled:l=!1,...i},d){const u={solid:"filled",outline:"outline",ghost:"transparent"},p={default:"md",small:"sm",large:"lg"},_=h(i,l),$=_;let y="text";a?y="image":o&&(y="icon");const f={root:Te.root,image:Te.image,placeholder:Te.placeholder},N=$.classNames;if(N&&typeof N=="object"&&!Array.isArray(N)){const w=N;f.root=w.root?`${Te.root} ${w.root}`:Te.root,f.image=w.image?`${Te.image} ${w.image}`:Te.image,f.placeholder=w.placeholder?`${Te.placeholder} ${w.placeholder}`:Te.placeholder}const P=$.className;return r.jsx(m.Avatar,{ref:d,className:P,classNames:f,variant:u[s],size:p[e],src:a,"data-variant":s,"data-size":e,"data-style":y,..._,children:o!=null?r.jsx("span",{className:Te.iconWrapper,"aria-hidden":!0,children:o}):t!=null?r.jsx("span",{className:Te.textWrapper,children:t}):void 0})});Pt.displayName="Avatar";const ua=m.createPolymorphicComponent(Pt),pa="Badge-module__root___5osNT",Oe={root:pa},Tt=c.forwardRef(function({variant:e="primary-color",overStyled:s=!1,...o},t){const a=h(o,s),l={root:Oe.root,section:Oe.section,label:Oe.label},i=a.classNames;if(i&&typeof i=="object"&&!Array.isArray(i)){const p=i;l.root=p.root?`${Oe.root} ${p.root}`:Oe.root,l.section=p.section??Oe.section,l.label=p.label??Oe.label}const d=a.className,u=d?`${Oe.root} ${d}`:Oe.root;return r.jsx(m.Badge,{ref:t,variant:"filled","data-variant":e,...a,className:u,classNames:l})});Tt.displayName="Badge";const jt=m.createPolymorphicComponent(Tt),ma="Breadcrumb-module__root___x-9ln",_a="Breadcrumb-module__separator___qrUX-",qe={root:ma,separator:_a},St=c.forwardRef(function({overStyled:e=!1,separator:s=">",...o},t){const a=h({separator:s,...o},e),l={root:qe.root,separator:qe.separator},i=a.classNames;if(i&&typeof i=="object"&&!Array.isArray(i)){const p=i;l.root=p.root?`${qe.root} ${p.root}`:qe.root,l.separator=p.separator?`${qe.separator} ${p.separator}`:qe.separator}const d=a.className,u=d?`${qe.root} ${d}`:qe.root;return r.jsx(m.Breadcrumbs,{ref:t,...a,className:u,classNames:l})});St.displayName="Breadcrumb";const fa="Loader-module__root___6iYOP",fo={root:fa},Zo=c.forwardRef(function({variant:e="oval",size:s="default",overStyled:o=!1,...t},a){const i={sm:"small",md:"default",lg:"large",small:"small",default:"default",large:"large"}[s]||"default",d=h(t,o),u={root:fo.root},p=d.classNames;if(p&&typeof p=="object"&&!Array.isArray(p)){const y=p;u.root=y.root?`${fo.root} ${y.root}`:fo.root}const _=d.className,$=_?`${fo.root} ${_}`:fo.root;return r.jsx(m.Loader,{ref:a,type:e,"data-variant":e,"data-size":i,...d,className:$,classNames:u})});Zo.displayName="Loader";const ya="Button-module__root___Q2R8-",ha="Button-module__loader___X-9u-",ba="Button-module__label___UJ3Zt",va="Button-module__labelText___rFV5p",Na="Button-module__iconWrapper___uEKPa",xa="Button-module__section___f2mKr",we={root:ya,loader:ha,label:ba,labelText:va,iconWrapper:Na,section:xa};function $a(n){return n==null||n===""?!1:typeof n=="string"?n.trim()!=="":!0}const Rt=c.forwardRef(function({variant:e="solid",size:s="default",icon:o,children:t,overStyled:a=!1,loaderVariant:l="oval",loaderSize:i,useRecursicaLoader:d=!0,...u},p){const _={solid:"filled",outline:"outline",text:"subtle"},$={default:"md",small:"sm"},y=h(u,a),f=y;delete f.fullWidth;const N=!!o||!!f.leftSection,P=!!f.rightSection,w=$a(t),T=(N||P)&&!w;let b="label";T?b="icon-only":(N||P)&&(b="icon-label"),typeof process<"u"&&process.env.NODE_ENV!=="production"&&T&&!f["aria-label"]&&console.warn('[Recursica Button] Icon-only buttons must provide an accessible name. Pass aria-label (e.g. aria-label="Submit").');const v={root:we.root,section:we.section,label:we.label,loader:we.loader},C=f.classNames;if(C&&typeof C=="object"&&!Array.isArray(C)){const S=C;v.root=S.root?`${we.root} ${S.root}`:we.root,v.section=S.section??we.section,v.label=S.label??we.label}const x=f.className,j=x?`${we.root} ${x}`:we.root;delete f.className;const g=f.loaderProps,O=i??(s==="small"?"small":"default");let M=g;return d&&(M={children:r.jsx(Zo,{variant:l,size:O}),...g}),r.jsx(m.Button,{ref:p,className:j,classNames:v,variant:_[e],size:$[s],loaderProps:M,leftSection:o!=null?r.jsx("span",{className:we.iconWrapper,"aria-hidden":!0,children:o}):void 0,"data-variant":e,"data-size":s,"data-content":b,...y,disabled:!!f.disabled||!!f.loading,children:r.jsx("span",{className:we.labelText,children:t})})});Rt.displayName="Button";const Je=m.createPolymorphicComponent(Rt),Ca="Card-module__root___c9KvZ",wa="Card-module__header___PTXf2",ga="Card-module__footer___Mu-JC",Pa="Card-module__section___BRT8H",Ta="Card-module__content___oFIQa",Fe={root:Ca,header:wa,footer:ga,section:Pa,content:Ta},At=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);["flex","flexGrow","flexShrink","flexBasis","grow","h","height"].forEach(u=>{u in s&&!(u in t)&&(t[u]=s[u])});const l={root:Fe.root},i=t.classNames;if(i&&typeof i=="object"&&!Array.isArray(i)){const u=i;Object.keys(u).forEach(p=>{l[p]?l[p]=`${l[p]} ${u[p]}`:l[p]=u[p]})}const d=t.className;return r.jsx(m.Card,{ref:o,className:d,classNames:l,...t})});At.displayName="Card";const Lt=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t.className;return r.jsx(m.Card.Section,{ref:o,className:a?`${Fe.section} ${a}`:Fe.section,...t})});Lt.displayName="CardSection";const It=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t.className;return r.jsx(m.Card.Section,{ref:o,className:a?`${Fe.header} ${a}`:Fe.header,...t})});It.displayName="CardHeader";const kt=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t.className;return r.jsx(m.Card.Section,{ref:o,className:a?`${Fe.footer} ${a}`:Fe.footer,...t})});kt.displayName="CardFooter";const Ot=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t.className;return r.jsx("div",{ref:o,className:a?`${Fe.content} ${a}`:Fe.content,...t})});Ot.displayName="CardContent";const Mt=m.createPolymorphicComponent(At),Oo=Mt;Oo.Section=Lt;Oo.Header=It;Oo.Footer=kt;Oo.Content=Ot;const ja=Mt,Sa="Checkbox-module__groupRoot___cBS0o",Ra="Checkbox-module__root___mY3qk",Aa="Checkbox-module__body___5yC7q",La="Checkbox-module__inner___rTke4",Ia="Checkbox-module__input___2kt-h",ka="Checkbox-module__icon___-O7i6",Oa="Checkbox-module__labelWrapper___GpZkr",Ma="Checkbox-module__label___cwRtI",H={groupRoot:Sa,root:Ra,body:Aa,inner:La,input:Ia,icon:ka,labelWrapper:Oa,label:Ma},xo=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,description:_,assistiveText:$,assistiveWithIcon:y,error:f,required:N,withAsterisk:P,id:w,className:T,style:b,children:v,readOnly:C,readOnlyComponent:x,emptyValueComponent:j,value:g,defaultValue:O,...M}=e,S=h(M,o),R=S;delete R.size;const I=g!==void 0||O!==void 0;return r.jsx(xe,{className:T,style:b,controlMaxWidth:"var(--recursica_ui-kit_components_checkbox-item_properties_max-width)",controlMinWidth:void 0,overStyled:o,labelElement:"div",formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,description:_,assistiveText:$,assistiveWithIcon:y,error:f,required:N,withAsterisk:P,id:w,readOnly:C&&!!x,readOnlyComponent:x,emptyValueComponent:j,readOnlyType:"text",readOnlyValue:g!==void 0?g:O,readOnlyNativeProps:e,activeComponent:I?r.jsx(m.Checkbox.Group,{ref:s,...S,disabled:C||R.disabled,value:g,defaultValue:O,children:r.jsx("div",{className:H.groupRoot,"data-layout":t,children:v})}):r.jsx("div",{ref:s,role:"group",...S,className:H.groupRoot,"data-layout":t,children:v})})});xo.displayName="CheckboxGroup";const $o=c.forwardRef(function(e,s){const{overStyled:o=!1,readOnly:t,readOnlyComponent:a,disabled:l,formLayout:i,labelSize:d,controlMaxWidth:u,controlMinWidth:p,..._}=e,$=h(_,o),y=$;delete y.size,delete y.color,delete y.radius,delete y.variant,delete y.iconColor;const f={root:H.root,body:H.body,inner:H.inner,input:H.input,icon:H.icon,labelWrapper:H.labelWrapper,label:H.label},N=y.classNames;if(N&&typeof N=="object"&&!Array.isArray(N)){const b=N;f.root=b.root?`${H.root} ${b.root}`:H.root,f.body=b.body?`${H.body} ${b.body}`:H.body,f.inner=b.inner?`${H.inner} ${b.inner}`:H.inner,f.input=b.input?`${H.input} ${b.input}`:H.input,f.icon=b.icon?`${H.icon} ${b.icon}`:H.icon,f.labelWrapper=b.labelWrapper?`${H.labelWrapper} ${b.labelWrapper}`:H.labelWrapper,f.label=b.label?`${H.label} ${b.label}`:H.label}const P=y.className,w=P?`${H.root} ${P}`:H.root;if(t&&a){const b=!!(y.checked??y.defaultChecked),v=a,C=r.jsx(v,{...e,checked:b,label:y.label});return i?r.jsx(ze,{formLayout:i,labelSize:d,controlMaxWidth:u,controlMinWidth:p,children:C}):r.jsx(r.Fragment,{children:C})}const T=r.jsx(m.Checkbox,{ref:s,className:w,classNames:f,disabled:t||l,...$});return i?r.jsx(ze,{formLayout:i,labelSize:d,controlMaxWidth:u,controlMinWidth:p,children:T}):T});$o.displayName="Checkbox";$o.Group=xo;const Wa="Chip-module__root___f5pFk",za="Chip-module__label___Ov9pg",Fa="Chip-module__mantineIconWrapper___KLSz6",Ea="Chip-module__innerWrapper___EnrTF",Da="Chip-module__children___zbRAR",Ba="Chip-module__leadingIcon___JBtjQ",Ga="Chip-module__removeIcon___pVju-",ue={root:Wa,label:za,mantineIconWrapper:Fa,innerWrapper:Ea,children:Da,leadingIcon:Ba,removeIcon:Ga};function Va(n){return r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",...n,children:[r.jsx("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),r.jsx("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]})}const Co=c.forwardRef(function({error:e=!1,icon:s,onRemove:o,removeLabel:t="Remove",removeTabIndex:a,removeIconRef:l,children:i,overStyled:d=!1,...u},p){const _=h(u,d),$=_,y={root:ue.root,label:ue.label,input:ue.input,iconWrapper:ue.mantineIconWrapper,checkIcon:ue.checkIcon},f=$.classNames;if(f&&typeof f=="object"&&!Array.isArray(f)){const v=f;y.root=v.root?`${ue.root} ${v.root}`:ue.root,y.label=v.label?`${ue.label} ${v.label}`:ue.label}const N=$.className,P=N?`${ue.root} ${N}`:ue.root,w=e?"":void 0,T=!i&&(!!s||!!o),b=o!==void 0||$.onClick!==void 0||$.onChange!==void 0;return r.jsx(m.Chip,{ref:p,className:P,classNames:y,wrapperProps:{...w!==void 0?{"data-error":""}:{},...b?{"data-interactive":""}:{}},...T?{"data-icon-only":""}:{},...b?{}:{tabIndex:-1,"aria-hidden":!0},..._,children:r.jsxs("span",{className:ue.innerWrapper,children:[s&&r.jsx("span",{className:ue.leadingIcon,"aria-hidden":!0,children:s}),r.jsx("span",{className:ue.children,children:i}),o&&r.jsx("span",{ref:l,role:"button",className:ue.removeIcon,onClick:v=>{v.preventDefault(),v.stopPropagation(),o(v)},"aria-label":t,onKeyDown:v=>{(v.key==="Enter"||v.key===" ")&&(v.preventDefault(),v.stopPropagation(),o(v))},tabIndex:a??0,children:r.jsx(Va,{})})]})})});Co.displayName="Chip";const Ha="Container-module__root___UVssr",yo={root:Ha},Wt=c.forwardRef(function({children:e,size:s,...o},t){const a={"rec-sm":"sm","rec-default":"md","rec-md":"md","rec-lg":"lg","rec-xl":"xl","rec-2xl":"xl"},l=typeof s=="string"&&a[s]?a[s]:s,i={root:yo.root},d=o.classNames;if(d&&typeof d=="object"&&!Array.isArray(d)){const _=d;i.root=_.root?`${yo.root} ${_.root}`:yo.root}const u=o.className,p=u?`${yo.root} ${u}`:yo.root;return r.jsx(m.Container,{ref:t,size:l,className:p,classNames:i,...o,children:e})});Wt.displayName="Container";const qa="DatePicker-module__layoutOverride___X9yaM",Ua="DatePicker-module__root___6XvRT",Ka="DatePicker-module__input___pcSW8",Za="DatePicker-module__section___n3iWA",Ya="DatePicker-module__dropdown___wjt08",Xa="DatePicker-module__calendarHeader___KHxno",Qa="DatePicker-module__day___U03J2",he={layoutOverride:qa,root:Ua,input:Ka,section:Za,dropdown:Ya,calendarHeader:Xa,day:Qa},zt=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,className:w,style:T,disabled:b,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,value:j,defaultValue:g,...O}=e,M=h(O,o),S=M;delete S.size,delete S.variant,delete S.radius,delete S.description;const R={wrapper:he.root,input:he.input,section:he.section,dropdown:he.dropdown,day:he.day,calendarHeader:he.calendarHeader},I=S.classNames;if(I&&typeof I=="object"&&!Array.isArray(I)){const L=I;R.wrapper=L.wrapper?`${he.root} ${L.wrapper}`:he.root,R.input=L.input?`${he.input} ${L.input}`:he.input,R.section=L.section?`${he.section} ${L.section}`:he.section}const F=w?`${he.layoutOverride} ${w}`:he.layoutOverride;return r.jsx(xe,{className:F,style:T,controlMaxWidth:void 0,controlMinWidth:void 0,overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,readOnlyType:"text",readOnlyValue:j!==void 0?String(j):g?String(g):void 0,readOnlyNativeProps:e,activeComponent:r.jsx(Nt.DatePickerInput,{ref:s,classNames:R,disabled:b,value:j,defaultValue:g,label:void 0,description:void 0,error:void 0,withAsterisk:!1,wrapperProps:{"data-disabled":b?"true":void 0,"data-error":y?"true":void 0},...M})})});zt.displayName="DatePicker";const Ja="Dropdown-module__layoutOverride___FNcvP",en="Dropdown-module__root___uVyL0",on="Dropdown-module__input___dK4dN",tn="Dropdown-module__section___j3MRB",rn="Dropdown-module__dropdown___gG-Sw",sn="Dropdown-module__option___nAGU-",Y={layoutOverride:Ja,root:en,input:on,section:tn,dropdown:rn,option:sn},Ft=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",containerWidth:a,labelSize:l,labelAlignment:i,labelOptionalText:d,labelWithEditIcon:u,onLabelEditClick:p,label:_,assistiveText:$,assistiveWithIcon:y,error:f,required:N,withAsterisk:P,id:w,className:T,style:b,disabled:v,readOnly:C,readOnlyComponent:x,emptyValueComponent:j,value:g,defaultValue:O,data:M,...S}=e,R=h(S,o),I=R;delete I.size,delete I.variant,delete I.radius;const F={wrapper:Y.root,input:Y.input,section:Y.section,dropdown:Y.dropdown,option:Y.option},L=I.classNames;if(L&&typeof L=="object"&&!Array.isArray(L)){const q=L;F.wrapper=q.wrapper?`${Y.root} ${q.wrapper}`:Y.root,F.input=q.input?`${Y.input} ${q.input}`:Y.input,F.section=q.section?`${Y.section} ${q.section}`:Y.section,F.dropdown=q.dropdown?`${Y.dropdown} ${q.dropdown}`:Y.dropdown,F.option=q.option?`${Y.option} ${q.option}`:Y.option}const ee={...b||{},width:a||"100%"},ie=T?`${Y.layoutOverride} ${T}`:Y.layoutOverride;return r.jsx(xe,{className:ie,style:ee,controlMaxWidth:"var(--dropdown-control-max-width)",controlMinWidth:"var(--dropdown-control-min-width)",overStyled:o,formLayout:t,labelSize:l,labelAlignment:i,labelOptionalText:d,labelWithEditIcon:u,onLabelEditClick:p,label:_,assistiveText:$,assistiveWithIcon:y,error:f,required:N,withAsterisk:P,id:w,readOnly:C,readOnlyComponent:x,emptyValueComponent:j,readOnlyType:"text",readOnlyValue:g!==void 0?String(g):O?String(O):void 0,readOnlyNativeProps:e,activeComponent:r.jsx(m.Select,{ref:s,classNames:F,disabled:v,value:g,defaultValue:O,data:M||[],label:void 0,description:void 0,error:void 0,required:void 0,withAsterisk:void 0,attributes:{wrapper:{"data-disabled":v?"true":void 0,"data-error":f?"true":void 0}},...R})})});Ft.displayName="Dropdown";const an="FileInput-module__layoutOverride___HIOY6",nn="FileInput-module__root___UvQj-",ln="FileInput-module__leadingIcon___z75c4",cn="FileInput-module__content___Udsvh",dn="FileInput-module__value___RX33R",un="FileInput-module__chipRow___My6TF",pn="FileInput-module__chipWrapper___q2CDy",mn="FileInput-module__trailingIcon___odGPm",Me={layoutOverride:an,root:nn,leadingIcon:ln,content:cn,value:dn,chipRow:un,chipWrapper:pn,trailingIcon:mn};function _n(){return r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,children:[r.jsx("path",{d:"M12 3v12"}),r.jsx("path",{d:"M7 8l5-5 5 5"}),r.jsx("path",{d:"M4 21h16"})]})}function fn(){return r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,children:[r.jsx("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),r.jsx("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]})}const Et=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,labelActionArea:u,onLabelEditClick:p,label:_,assistiveText:$,assistiveWithIcon:y,error:f,required:N,withAsterisk:P,id:w,className:T,style:b,disabled:v,readOnly:C,files:x,onFilesAdded:j,onFileRemove:g,accept:O,multiple:M=!1,maxSize:S,maxFiles:R,onFilesRejected:I,invalidFileTypeMessage:F="File type not accepted",maxFilesMessage:L=M?`Maximum of ${R} files allowed`:"Only one file is allowed",icon:ee,placeholder:ie="Select a file...",browseLabel:q="Choose file",removeFileLabel:me="Remove",clearLabel:ve="Clear",...Ie}=e,ae=h(Ie,o),U=!v&&!C,oe=!!x&&x.length>0,_e=c.useRef(null),[ke,fe]=c.useState(!1),[ne,te]=c.useState(!1),de=A=>{if(!U)return;const J=Array.from(A);if(J.length===0)return;const Q=M?R:1,Ne=M?(x==null?void 0:x.length)??0:0,se=[],$e=[];let Wo=!1,it=!1;for(const zo of J){const ct=!Uo(zo,O);ct&&(Wo=!0);const ys=S!==void 0&&zo.size>S,dt=Q!==void 0&&Ne+se.length>=Q;dt&&(it=!0),(ct||ys||dt?$e:se).push(zo)}fe(Wo),te(it),se.length>0&&(j==null||j(se)),$e.length>0&&(I==null||I($e))},Pe=c.useRef(0),[to,G]=c.useState(!1),Be=A=>{A.preventDefault(),Pe.current+=1,G(!0)},Ge=A=>{A.preventDefault(),Pe.current-=1,Pe.current<=0&&(Pe.current=0,G(!1))},ro=A=>{A.preventDefault()},Ve=A=>{A.preventDefault(),Pe.current=0,G(!1),de(A.dataTransfer.files)},so=()=>{var A;U&&((A=_e.current)==null||A.click())},He=A=>{A.key!=="Enter"&&A.key!==" "||(A.preventDefault(),so())},po=A=>{A.target.files&&de(A.target.files),A.target.value=""},E=()=>{!U||!x||x.length===0||x.forEach(A=>g==null?void 0:g(A.id??A.file.name))},[X,V]=c.useState(0),W=c.useRef([]),Z=c.useRef((x==null?void 0:x.length)??0);c.useEffect(()=>{var J;const A=(x==null?void 0:x.length)??0;if(A>0&&A<Z.current){const Q=Math.min(X,A-1);V(Q),(J=W.current[Q])==null||J.focus()}Z.current=A},[x]);const re=A=>{var Ne;const J=(x==null?void 0:x.length)??0;if(J===0)return;let Q;A.key==="ArrowRight"||A.key==="ArrowDown"?Q=(X+1)%J:(A.key==="ArrowLeft"||A.key==="ArrowUp")&&(Q=(X-1+J)%J),Q!==void 0&&(A.preventDefault(),A.stopPropagation(),V(Q),(Ne=W.current[Q])==null||Ne.focus())},ye=f??(ke?F:ne?L:void 0),ao=T?`${Me.layoutOverride} ${T}`:Me.layoutOverride;return r.jsx(_o,{overStyled:o,className:ao,style:b,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,labelActionArea:u,onLabelEditClick:p,label:_,assistiveText:$,assistiveWithIcon:y,error:ye,required:N,withAsterisk:P,id:w,controlMaxWidth:"var(--file-input-control-max-width)",controlMinWidth:"var(--file-input-control-min-width)",children:r.jsxs("div",{ref:s,className:Me.root,role:"button","aria-label":q,"aria-disabled":v?"true":void 0,tabIndex:U?0:-1,"data-disabled":v?"true":void 0,"data-readonly":C?"true":void 0,"data-error":ye?"true":void 0,"data-dragging":to?"true":void 0,onClick:U?so:void 0,onKeyDown:U?He:void 0,onDragEnter:U?Be:void 0,onDragLeave:U?Ge:void 0,onDragOver:U?ro:void 0,onDrop:U?Ve:void 0,...ae,children:[r.jsx("span",{className:Me.leadingIcon,"aria-hidden":!0,children:ee??r.jsx(_n,{})}),r.jsxs("div",{className:Me.content,children:[!oe&&r.jsx("span",{className:Me.value,"data-placeholder":"true",children:ie}),oe&&r.jsx("div",{className:Me.chipRow,onKeyDown:C?void 0:re,children:x.map((A,J)=>{const Q=A.id??A.file.name;return r.jsx("span",{className:Me.chipWrapper,onClick:Ne=>Ne.stopPropagation(),children:r.jsx(Co,{checked:!1,tabIndex:-1,removeLabel:C?void 0:me,removeTabIndex:!C&&J===X?0:-1,removeIconRef:Ne=>{W.current[J]=Ne},onRemove:C||v?void 0:()=>g==null?void 0:g(Q),children:A.file.name})},Q)})})]}),oe&&!C&&r.jsx(Je,{overStyled:!0,variant:"text",size:"small",icon:r.jsx(fn,{}),"aria-label":ve,className:Me.trailingIcon,disabled:v,onClick:A=>{A.preventDefault(),A.stopPropagation(),E()},onKeyDown:A=>{A.key!=="Enter"&&A.key!==" "||(A.preventDefault(),A.stopPropagation(),E())}}),r.jsx("input",{ref:_e,type:"file",hidden:!0,accept:O,multiple:M,disabled:!U,onChange:po})]})})});Et.displayName="FileInput";const yn="FileUpload-module__layoutOverride___bPpi8",hn="FileUpload-module__root___Q-vcm",bn="FileUpload-module__dropzone___jqua0",vn="FileUpload-module__uploadIcon___bb3Nc",Nn="FileUpload-module__dropzoneText___L7vS-",xn="FileUpload-module__fileList___XIWLl",Ue={layoutOverride:yn,root:hn,dropzone:bn,uploadIcon:vn,dropzoneText:Nn,fileList:xn};function $n(){return r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,children:[r.jsx("path",{d:"M12 3v12"}),r.jsx("path",{d:"M7 8l5-5 5 5"}),r.jsx("path",{d:"M4 21h16"})]})}const Dt=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,labelActionArea:u,onLabelEditClick:p,label:_,assistiveText:$,assistiveWithIcon:y,error:f,required:N,withAsterisk:P,id:w,className:T,style:b,disabled:v,readOnly:C,files:x,onFilesAdded:j,onFileRemove:g,accept:O,multiple:M=!0,maxSize:S,maxFiles:R,onFilesRejected:I,invalidFileTypeMessage:F="File type not accepted",maxFilesMessage:L=`Maximum of ${R} files allowed`,icon:ee,dropzoneLabel:ie="Drag and drop files here to upload",browseButtonLabel:q="Browse files",removeFileLabel:me="Remove",...ve}=e,z=h(ve,o),ae=c.useRef(null),[U,oe]=c.useState(!1),[_e,ke]=c.useState(!1),fe=W=>{if(v)return;const Z=Array.from(W);if(Z.length===0)return;const re=(x==null?void 0:x.length)??0,ye=[],ao=[];let A=!1,J=!1;for(const Q of Z){const Ne=!Uo(Q,O);Ne&&(A=!0);const se=S!==void 0&&Q.size>S,$e=R!==void 0&&re+ye.length>=R;$e&&(J=!0),(Ne||se||$e?ao:ye).push(Q)}oe(A),ke(J),ye.length>0&&(j==null||j(ye)),ao.length>0&&(I==null||I(ao))},ne=c.useRef(0),[te,de]=c.useState(!1),Pe=W=>{W.preventDefault(),ne.current+=1,de(!0)},to=W=>{W.preventDefault(),ne.current-=1,ne.current<=0&&(ne.current=0,de(!1))},G=W=>{W.preventDefault()},Be=W=>{W.preventDefault(),ne.current=0,de(!1),fe(W.dataTransfer.files)},Ge=()=>{var W;v||(W=ae.current)==null||W.click()},ro=W=>{W.target.files&&fe(W.target.files),W.target.value=""},[Ve,so]=c.useState(0),He=c.useRef([]),po=c.useRef((x==null?void 0:x.length)??0);c.useEffect(()=>{var Z;const W=(x==null?void 0:x.length)??0;if(W>0&&W<po.current){const re=Math.min(Ve,W-1);so(re),(Z=He.current[re])==null||Z.focus()}po.current=W},[x]);const E=W=>{var ye;const Z=(x==null?void 0:x.length)??0;if(Z===0)return;let re;W.key==="ArrowRight"||W.key==="ArrowDown"?re=(Ve+1)%Z:(W.key==="ArrowLeft"||W.key==="ArrowUp")&&(re=(Ve-1+Z)%Z),re!==void 0&&(W.preventDefault(),so(re),(ye=He.current[re])==null||ye.focus())},X=f??(U?F:_e?L:void 0),V=T?`${Ue.layoutOverride} ${T}`:Ue.layoutOverride;return r.jsx(_o,{overStyled:o,className:V,style:b,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,labelActionArea:u,onLabelEditClick:p,label:_,assistiveText:$,assistiveWithIcon:y,error:X,required:N,withAsterisk:P,id:w,children:r.jsxs("div",{ref:s,className:Ue.root,"data-disabled":v?"true":void 0,"data-error":X?"true":void 0,...z,children:[!C&&r.jsxs("div",{className:Ue.dropzone,"data-dragging":te?"true":void 0,onDragEnter:v?void 0:Pe,onDragLeave:v?void 0:to,onDragOver:v?void 0:G,onDrop:v?void 0:Be,children:[r.jsx("span",{className:Ue.uploadIcon,children:ee??r.jsx($n,{})}),r.jsx("span",{className:Ue.dropzoneText,children:ie}),r.jsx(Je,{variant:"outline",disabled:v,onClick:Ge,children:q}),r.jsx("input",{ref:ae,type:"file",hidden:!0,accept:O,multiple:M,disabled:v,onChange:ro})]}),x&&x.length>0&&(C?r.jsx("div",{className:Ue.fileList,children:x.map(W=>{const Z=W.id??W.file.name;return r.jsx(Co,{checked:!1,tabIndex:-1,children:W.file.name},Z)})}):r.jsx("div",{className:Ue.fileList,onKeyDown:E,children:x.map((W,Z)=>{const re=W.id??W.file.name;return r.jsx(Co,{checked:!1,tabIndex:-1,removeLabel:me,removeTabIndex:Z===Ve?0:-1,removeIconRef:ye=>{He.current[Z]=ye},onRemove:v?void 0:()=>g==null?void 0:g(re),children:W.file.name},re)})}))]})})});Dt.displayName="FileUpload";const Cn="Flex-module__root___yYser",ho={root:Cn},Bt=c.forwardRef(function({children:e,gap:s="rec-default",rowGap:o,columnGap:t,...a},l){const i={root:ho.root},d=a.classNames;if(d&&typeof d=="object"&&!Array.isArray(d)){const _=d;i.root=_.root?`${ho.root} ${_.root}`:ho.root}const u=a.className,p=u?`${ho.root} ${u}`:ho.root;return r.jsx(m.Flex,{ref:l,className:p,classNames:i,...wo({gap:s,rowGap:o,columnGap:t,...a}),children:e})});Bt.displayName="Flex";const wn=m.createPolymorphicComponent(Bt),gn="Grid-module__root___s-qPY",Pn="Grid-module__col___tbuNg",Re={root:gn,col:Pn},Gt=c.forwardRef(function({children:e,gap:s="rec-default",...o},t){const a={root:Re.root},l=o.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const _=l;a.root=_.root?`${Re.root} ${_.root}`:Re.root}const i=o.className,d=i?`${Re.root} ${i}`:Re.root,{gap:u,...p}=wo({gap:s,...o});return r.jsx(m.Grid,{ref:t,gutter:u,className:d,classNames:a,...p,children:e})});Gt.displayName="Grid";const Tn=m.createPolymorphicComponent(Gt),Vt=c.forwardRef(function({children:e,...s},o){const t={col:Re.col},a=s.classNames;if(a&&typeof a=="object"&&!Array.isArray(a)){const d=a;t.col=d.col?`${Re.col} ${d.col}`:Re.col}const l=s.className,i=l?`${Re.col} ${l}`:Re.col;return r.jsx(m.Grid.Col,{ref:o,className:i,classNames:t,...wo(s),children:e})});Vt.displayName="GridCol";const Ht=m.createPolymorphicComponent(Vt),qt=Tn;qt.Col=Ht;const jn="Group-module__root___ftO64",bo={root:jn},Ut=c.forwardRef(function({children:e,gap:s="rec-default",...o},t){const a={root:bo.root},l=o.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const u=l;a.root=u.root?`${bo.root} ${u.root}`:bo.root}const i=o.className,d=i?`${bo.root} ${i}`:bo.root;return r.jsx(m.Group,{ref:t,className:d,classNames:a,...wo({gap:s,...o}),children:e})});Ut.displayName="Group";const Sn="HoverCard-module__dropdown___FBPFW",Rn="HoverCard-module__arrow___S9AkE",_t={dropdown:Sn,arrow:Rn},Kt=function({overStyled:e=!1,withBeak:s=!0,...o}){const t=h(o,e),a={dropdown:_t.dropdown,arrow:_t.arrow},l=t.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const p=l;Object.keys(p).forEach(_=>{a[_]?a[_]=`${a[_]} ${p[_]}`:a[_]=p[_]})}const i=t.arrowSize??16,d=t.withArrow,u=s??d;return r.jsx(m.HoverCard,{position:"top",arrowSize:i,withArrow:u,classNames:a,...t})};Kt.displayName="HoverCard";const Zt=function(e){return r.jsx(m.HoverCard.Target,{...e})};Zt.displayName="HoverCardTarget";const Yt=function({overStyled:e=!1,...s}){const o=h(s,e),t=o.className;return r.jsx(m.HoverCard.Dropdown,{className:t,...o})};Yt.displayName="HoverCardDropdown";const Yo=Kt;Yo.Target=Zt;Yo.Dropdown=Yt;const An="Link-module__root___I0VGE",Ln="Link-module__iconWrapper___W-LlF",In="Link-module__labelText___wSvUy",no={root:An,iconWrapper:Ln,labelText:In},Xt=c.forwardRef(function({icon:e,children:s,overStyled:o=!1,...t},a){const l=h(t,o),i=l,d={root:no.root},u=i.classNames;if(u&&typeof u=="object"&&!Array.isArray(u)){const $=u;d.root=$.root?`${no.root} ${$.root}`:no.root}const p=i.className,_=p?`${no.root} ${p}`:no.root;return r.jsxs(m.Anchor,{ref:a,className:_,classNames:d,underline:"never",...e?{"data-has-icon":""}:{},...l,children:[e&&r.jsx("span",{className:no.iconWrapper,"aria-hidden":!0,children:e}),r.jsx("span",{className:no.labelText,children:s})]})});Xt.displayName="Link";const kn=m.createPolymorphicComponent(Xt),On="Menu-module__dropdown___j4xuA",Mn="Menu-module__item___NMXha",Wn="Menu-module__itemLabel___zvcqC",zn="Menu-module__itemSection___pRIcn",Fn="Menu-module__divider___wPiNq",En="Menu-module__label___4FBGa",Dn="Menu-module__chevron___hEEiy",lo={dropdown:On,item:Mn,itemLabel:Wn,itemSection:zn,divider:Fn,label:En,chevron:Dn},Qt=function({overStyled:e=!1,...s}){const o=h(s,e),t={dropdown:lo.dropdown,item:lo.item,itemLabel:lo.itemLabel,itemSection:lo.itemSection,divider:lo.divider,label:lo.label,chevron:lo.chevron},a=o.classNames;if(a&&typeof a=="object"&&!Array.isArray(a)){const l=a;Object.keys(l).forEach(i=>{t[i]?t[i]=`${t[i]} ${l[i]}`:t[i]=l[i]})}return r.jsx(m.Menu,{classNames:t,...o})};Qt.displayName="Menu";const Jt=function(e){return r.jsx(m.Menu.Target,{...e})};Jt.displayName="MenuTarget";const er=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t.className;return r.jsx(m.Menu.Dropdown,{ref:o,className:a,...t})});er.displayName="MenuDropdown";const or=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t;e||delete a.color;const l=a.className;return r.jsx(m.Menu.Item,{ref:o,className:l,...t})});or.displayName="MenuItem";const Bn=m.createPolymorphicComponent(or),tr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t.className;return r.jsx(m.Menu.Divider,{ref:o,className:a,...t})});tr.displayName="MenuDivider";const rr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t.className;return r.jsx(m.Menu.Label,{ref:o,className:a,...t})});rr.displayName="MenuLabel";const sr=function(e){return r.jsx(m.Menu.Sub,{...e})};sr.displayName="MenuSub";const ar=function(e){return r.jsx(m.Menu.Sub.Target,{...e})};ar.displayName="MenuSubTarget";const nr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t;e||delete a.color;const l=a.className;return r.jsx(m.Menu.Sub.Item,{ref:o,className:l,...t})});nr.displayName="MenuSubItem";const Gn=m.createPolymorphicComponent(nr),lr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t.className;return r.jsx(m.Menu.Sub.Dropdown,{ref:o,className:a,...t})});lr.displayName="MenuSubDropdown";const Mo=sr;Mo.Target=ar;Mo.Item=Gn;Mo.Dropdown=lr;const uo=Qt;uo.Target=Jt;uo.Dropdown=er;uo.Item=Bn;uo.Divider=tr;uo.Label=rr;uo.Sub=Mo;const Vn="Modal-module__root___ytPLl",Hn="Modal-module__inner___SSUJE",qn="Modal-module__content___dWO-B",Un="Modal-module__header___ILG9i",Kn="Modal-module__title___A5OeE",Zn="Modal-module__bodyWrapper___5CCL-",Yn="Modal-module__scrollArea___KD-hm",Xn="Modal-module__footer___rro2w",Qn="Modal-module__close___-ER1C",We={root:Vn,inner:Hn,content:qn,header:Un,title:Kn,bodyWrapper:Zn,scrollArea:Yn,footer:Xn,close:Qn},ir=c.forwardRef(function({overStyled:e=!1,children:s,title:o,withCloseButton:t=!0,overlayProps:a,withOverlay:l=!0,closeButtonProps:i,...d},u){const p=h(d,e),_={root:We.root,inner:We.inner,content:We.content,header:We.header,title:We.title,close:We.close},$=p.classNames;if($&&typeof $=="object"&&!Array.isArray($)){const y=$;Object.keys(y).forEach(f=>{_[f]?_[f]=`${_[f]} ${y[f]}`:_[f]=y[f]})}return r.jsxs(m.Modal.Root,{ref:u,classNames:_,...p,children:[l&&r.jsx(m.Modal.Overlay,{...a}),r.jsxs(m.Modal.Content,{children:[(o||t)&&r.jsxs(m.Modal.Header,{children:[o&&r.jsx(m.Modal.Title,{children:o}),t&&r.jsx(m.Modal.CloseButton,{...i})]}),r.jsx(Qo,{children:s})]})]})});ir.displayName="Modal";const Xo=c.forwardRef(function({overStyled:e=!1,className:s,...o},t){const a=h(o,e);return r.jsx("div",{ref:t,className:`${We.footer} ${s||""}`,...a})});Xo.displayName="Modal.Footer";const Qo=c.forwardRef(function({className:e,onScroll:s,children:o,...t},a){const l=c.useRef(null),[i,d]=c.useState(!1),[u,p]=c.useState(!1),_=c.useCallback(()=>{if(l.current){const{scrollTop:N,scrollHeight:P,clientHeight:w}=l.current;d(N>0),p(Math.ceil(N+w)<P)}},[]);c.useEffect(()=>(_(),window.addEventListener("resize",_),()=>window.removeEventListener("resize",_)),[_,o]);const $=N=>{_(),s==null||s(N)};let y=null;const f=[];return c.Children.forEach(o,N=>{var P;c.isValidElement(N)&&(N.type===Xo||((P=N.type)==null?void 0:P.displayName)==="Modal.Footer")?y=N:f.push(N)}),r.jsxs(m.Modal.Body,{...t,ref:N=>{typeof a=="function"?a(N):a&&(a.current=N)},className:`${We.bodyWrapper} ${e||""}`,children:[r.jsx("div",{ref:l,onScroll:$,"data-scrolled-top":i||void 0,"data-scrolled-bottom":u||void 0,className:We.scrollArea,children:f}),y]})});Qo.displayName="Modal.Body";const cr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Modal.Root,{ref:o,...t})});cr.displayName="Modal.Root";const dr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Modal.Overlay,{ref:o,...t})});dr.displayName="Modal.Overlay";const ur=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Modal.Content,{ref:o,...t})});ur.displayName="Modal.Content";const pr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Modal.Header,{ref:o,...t})});pr.displayName="Modal.Header";const mr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Modal.Title,{ref:o,...t})});mr.displayName="Modal.Title";const _r=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Modal.CloseButton,{ref:o,...t})});_r.displayName="Modal.CloseButton";const Ee=ir;Ee.Root=cr;Ee.Overlay=dr;Ee.Content=ur;Ee.Header=pr;Ee.Title=mr;Ee.CloseButton=_r;Ee.Body=Qo;Ee.Footer=Xo;const Jn="NumberInput-module__layoutOverride___5-9T4",el="NumberInput-module__root___C6rAn",ol="NumberInput-module__input___Ss8p7",tl="NumberInput-module__section___MijP0",rl="NumberInput-module__controls___8UfQ2",sl="NumberInput-module__control___Qre9-",io={layoutOverride:Jn,root:el,input:ol,section:tl,controls:rl,control:sl},fr=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,className:w,style:T,disabled:b,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,value:j,defaultValue:g,hideControls:O=!1,...M}=e,S=h(M,o),R=S;delete R.size,delete R.variant,delete R.radius;const I={wrapper:io.root,input:io.input,section:io.section,controls:io.controls,control:io.control},F=w?`${io.layoutOverride} ${w}`:io.layoutOverride;return r.jsx(xe,{className:F,style:T,controlMaxWidth:"var(--number-input-control-max-width)",controlMinWidth:"var(--number-input-control-min-width)",overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,readOnlyType:"text",readOnlyValue:j!==void 0?j==null?void 0:j.toString():g==null?void 0:g.toString(),readOnlyNativeProps:e,activeComponent:r.jsx(m.NumberInput,{ref:s,classNames:I,disabled:b,value:j,defaultValue:g,hideControls:O,label:void 0,description:void 0,error:void 0,required:void 0,withAsterisk:void 0,wrapperProps:{"data-disabled":b?"true":void 0,"data-error":y?"true":void 0,"data-with-left-section":R.leftSection?"true":void 0,"data-with-right-section":R.rightSection||!O?"true":void 0},...S})})});fr.displayName="NumberInput";const al="Pagination-module__root___ITRjt",nl="Pagination-module__control___40yNT",ll="Pagination-module__dots___Yl9da",il="Pagination-module__iconWithLabel___pLM4O",cl="Pagination-module__baseIcon___Qw3bJ",ce={root:al,control:nl,dots:ll,iconWithLabel:il,baseIcon:cl},dl="M8.781 8l-3.3-3.3.943-.943L10.667 8l-4.243 4.243-.943-.943 3.3-3.3z",ul="M7.219 8l3.3 3.3-.943.943L5.333 8l4.243-4.243.943.943-3.3 3.3z",pl="M6.85355 3.85355C7.04882 3.65829 7.04882 3.34171 6.85355 3.14645C6.65829 2.95118 6.34171 2.95118 6.14645 3.14645L2.14645 7.14645C1.95118 7.34171 1.95118 7.65829 2.14645 7.85355L6.14645 11.8536C6.34171 12.0488 6.65829 12.0488 6.85355 11.8536C7.04882 11.6583 7.04882 11.3417 6.85355 11.1464L3.20711 7.5L6.85355 3.85355ZM12.8536 3.85355C13.0488 3.65829 13.0488 3.34171 12.8536 3.14645C12.6583 2.95118 12.3417 2.95118 12.1464 3.14645L8.14645 7.14645C7.95118 7.34171 7.95118 7.65829 8.14645 7.85355L12.1464 11.8536C12.3417 12.0488 12.6583 12.0488 12.8536 11.8536C13.0488 11.6583 13.0488 11.3417 12.8536 11.1464L9.20711 7.5L12.8536 3.85355Z",ml="M2.14645 11.1464C1.95118 11.3417 1.95118 11.6583 2.14645 11.8536C2.34171 12.0488 2.65829 12.0488 2.85355 11.8536L6.85355 7.85355C7.04882 7.65829 7.04882 7.34171 6.85355 7.14645L2.85355 3.14645C2.65829 2.95118 2.34171 2.95118 2.14645 3.14645C1.95118 3.34171 1.95118 3.65829 2.14645 3.85355L5.79289 7.5L2.14645 11.1464ZM8.14645 11.1464C7.95118 11.3417 7.95118 11.6583 8.14645 11.8536C8.34171 12.0488 8.65829 12.0488 8.85355 11.8536L12.8536 7.85355C13.0488 7.65829 13.0488 7.34171 12.8536 7.14645L8.85355 3.14645C8.65829 2.95118 8.34171 2.95118 8.14645 3.14645C7.95118 3.34171 7.95118 3.65829 8.14645 3.85355L11.7929 7.5L8.14645 11.1464Z",_l={next:dl,prev:ul,first:pl,last:ml},go=({type:n,className:e,...s})=>r.jsx("svg",{viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",className:`${ce.baseIcon} ${e||""}`.trim(),...s,children:r.jsx("path",{d:_l[n],fill:"currentColor"})}),yr=n=>r.jsxs("div",{className:ce.iconWithLabel,children:[r.jsx("span",{children:"Next"}),r.jsx(go,{type:"next",...n})]}),hr=n=>r.jsxs("div",{className:ce.iconWithLabel,children:[r.jsx(go,{type:"prev",...n}),r.jsx("span",{children:"Prev"})]}),br=n=>r.jsxs("div",{className:ce.iconWithLabel,children:[r.jsx(go,{type:"first",...n}),r.jsx("span",{children:"First"})]}),vr=n=>r.jsxs("div",{className:ce.iconWithLabel,children:[r.jsx("span",{children:"Last"}),r.jsx(go,{type:"last",...n})]});function Nr(n){const e={root:ce.root,control:ce.control,dots:ce.dots},s=n.classNames;if(s&&typeof s=="object"&&!Array.isArray(s)){const a=s;e.root=a.root?`${ce.root} ${a.root}`:ce.root,e.control=a.control?`${ce.control} ${a.control}`:ce.control,e.dots=a.dots?`${ce.dots} ${a.dots}`:ce.dots}const o=n.className;return{className:o?`${ce.root} ${o}`:ce.root,classNames:e}}const xr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=Nr(t);return r.jsx(m.Pagination.Root,{ref:o,className:a.className,classNames:a.classNames,...t})});xr.displayName="Pagination.Root";const $r=c.forwardRef(function({overStyled:e=!1,withLabel:s,icon:o,...t},a){const l=h(t,e),i=o||(s?yr:void 0);return r.jsx(m.Pagination.Next,{ref:a,"data-variant":"text",icon:i,...l})});$r.displayName="Pagination.Next";const Cr=c.forwardRef(function({overStyled:e=!1,withLabel:s,icon:o,...t},a){const l=h(t,e),i=o||(s?hr:void 0);return r.jsx(m.Pagination.Previous,{ref:a,"data-variant":"text",icon:i,...l})});Cr.displayName="Pagination.Previous";const wr=c.forwardRef(function({overStyled:e=!1,withLabel:s,icon:o,...t},a){const l=h(t,e),i=o||(s?br:void 0);return r.jsx(m.Pagination.First,{ref:a,"data-variant":"text",icon:i,...l})});wr.displayName="Pagination.First";const gr=c.forwardRef(function({overStyled:e=!1,withLabel:s,icon:o,...t},a){const l=h(t,e),i=o||(s?vr:void 0);return r.jsx(m.Pagination.Last,{ref:a,"data-variant":"text",icon:i,...l})});gr.displayName="Pagination.Last";const Pr=c.forwardRef(function({overStyled:e=!1,getControlProps:s,withLabels:o,...t},a){const l=h(t,e),i=Nr(l),d=p=>{const _={"data-variant":"text"};return s?{..._,...s(p)}:_},u=o?{nextIcon:yr,previousIcon:hr,firstIcon:br,lastIcon:vr}:{};return r.jsx(m.Pagination,{ref:a,className:i.className,classNames:i.classNames,getControlProps:d,...u,...l})});Pr.displayName="Pagination";const Tr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Pagination.Control,{ref:o,...t})});Tr.displayName="Pagination.Control";const jr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Pagination.Dots,{ref:o,...t})});jr.displayName="Pagination.Dots";const Ae=Pr;Ae.Root=xr;Ae.Items=m.Pagination.Items;Ae.Control=Tr;Ae.Dots=jr;Ae.Next=$r;Ae.Previous=Cr;Ae.First=wr;Ae.Last=gr;Ae.Icon=go;const fl="Panel-module__content___wdGo-",yl="Panel-module__inner___ruA2b",hl="Panel-module__header___o7SiC",bl="Panel-module__title___181OP",vl="Panel-module__titleTruncate___fuP6V Panel-module__title___181OP",Nl="Panel-module__body___SEC3T",xl="Panel-module__footer___t6-hz",Xe={content:fl,inner:yl,header:hl,title:bl,titleTruncate:vl,body:Nl,footer:xl},Sr=function({overStyled:e=!1,placement:s="right",keepMounted:o=!0,wrapHeaderText:t=!1,...a}){const l=h(a,e),i={content:Xe.content,header:Xe.header,title:t?Xe.titleTruncate:Xe.title,body:Xe.body,inner:Xe.inner},d=l.classNames;if(d&&typeof d=="object"&&!Array.isArray(d)){const u=d;Object.keys(u).forEach(p=>{i[p]?i[p]=`${i[p]} ${u[p]}`:i[p]=u[p]})}return r.jsx(m.Drawer,{position:s,keepMounted:o,closeOnClickOutside:a.closeOnClickOutside??!!a.opened,...l,classNames:i})};Sr.displayName="Panel";const Jo=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t.className,l=a?`${Xe.footer} ${a}`:Xe.footer;return r.jsx("div",{ref:o,className:l,...t})});Jo.displayName="PanelFooter";const Rr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Drawer.Root,{ref:o,...t})});Rr.displayName="PanelRoot";const Ar=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Drawer.Overlay,{ref:o,...t})});Ar.displayName="PanelOverlay";const Lr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Drawer.Content,{ref:o,...t})});Lr.displayName="PanelContent";const Ir=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Drawer.Header,{ref:o,...t})});Ir.displayName="PanelHeader";const kr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Drawer.Title,{ref:o,...t})});kr.displayName="PanelTitle";const Or=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Drawer.CloseButton,{ref:o,...t})});Or.displayName="PanelCloseButton";const Mr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Drawer.Body,{ref:o,...t})});Mr.displayName="PanelBody";const Le=Sr;Le.Root=Rr;Le.Overlay=Ar;Le.Content=Lr;Le.Header=Ir;Le.Title=kr;Le.CloseButton=Or;Le.Body=Mr;Le.Stack=m.Drawer.Stack;Le.Footer=Jo;const $l="Popover-module__dropdown___svhS6",Cl="Popover-module__arrow___5A-0e",ft={dropdown:$l,arrow:Cl},Wr=function({overStyled:e=!1,withBeak:s=!0,...o}){const t=h(o,e),a={dropdown:ft.dropdown,arrow:ft.arrow},l=t.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const p=l;Object.keys(p).forEach(_=>{a[_]?a[_]=`${a[_]} ${p[_]}`:a[_]=p[_]})}const i=t.arrowSize??16,d=t.withArrow,u=s??d;return r.jsx(m.Popover,{position:"top",arrowSize:i,withArrow:u,classNames:a,...t})};Wr.displayName="Popover";const zr=function(e){return r.jsx(m.Popover.Target,{...e})};zr.displayName="PopoverTarget";const Fr=function({overStyled:e=!1,...s}){const o=h(s,e),t=o.className;return r.jsx(m.Popover.Dropdown,{className:t,...o})};Fr.displayName="PopoverDropdown";const et=Wr;et.Target=zr;et.Dropdown=Fr;const wl="Radio-module__groupRoot___bfUii",gl="Radio-module__root___kAjTD",Pl="Radio-module__body___q2Wpj",Tl="Radio-module__inner___QaTBB",jl="Radio-module__radio___MfgN-",Sl="Radio-module__icon___DWznm",Rl="Radio-module__labelWrapper___dB0Gi",Al="Radio-module__label___vAFIP",K={groupRoot:wl,root:gl,body:Pl,inner:Tl,radio:jl,icon:Sl,labelWrapper:Rl,label:Al},ot=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,description:_,assistiveText:$,assistiveWithIcon:y,error:f,required:N,withAsterisk:P,id:w,className:T,style:b,children:v,readOnly:C,readOnlyComponent:x,emptyValueComponent:j,value:g,defaultValue:O,...M}=e,S=h(M,o),R=S;return delete R.size,r.jsx(xe,{className:T,style:b,controlMaxWidth:"var(--recursica_ui-kit_components_radio-button-item_properties_max-width)",controlMinWidth:void 0,overStyled:o,labelElement:"div",formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,description:_,assistiveText:$,assistiveWithIcon:y,error:f,required:N,withAsterisk:P,id:w,readOnly:C&&!!x,readOnlyComponent:x,emptyValueComponent:j,readOnlyType:"text",readOnlyValue:g!==void 0?g:O,readOnlyNativeProps:e,activeComponent:r.jsx(m.Radio.Group,{ref:s,...S,disabled:C||R.disabled,value:g,defaultValue:O,children:r.jsx("div",{className:K.groupRoot,"data-layout":t,children:v})})})});ot.displayName="RadioGroup";const Ll=({className:n,style:e})=>r.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",className:n,style:e,children:r.jsx("circle",{cx:"8",cy:"8",r:"5"})}),tt=c.forwardRef(function(e,s){const{overStyled:o=!1,readOnly:t,readOnlyComponent:a,disabled:l,formLayout:i,labelSize:d,controlMaxWidth:u,controlMinWidth:p,..._}=e,$=h(_,o),y=$;delete y.size,delete y.color,delete y.radius,delete y.variant,delete y.iconColor;const f={root:K.root,body:K.body,inner:K.inner,radio:K.radio,icon:K.icon,labelWrapper:K.labelWrapper,label:K.label},N=y.classNames;if(N&&typeof N=="object"&&!Array.isArray(N)){const b=N;f.root=b.root?`${K.root} ${b.root}`:K.root,f.body=b.body?`${K.body} ${b.body}`:K.body,f.inner=b.inner?`${K.inner} ${b.inner}`:K.inner,f.radio=b.radio?`${K.radio} ${b.radio}`:K.radio,f.icon=b.icon?`${K.icon} ${b.icon}`:K.icon,f.labelWrapper=b.labelWrapper?`${K.labelWrapper} ${b.labelWrapper}`:K.labelWrapper,f.label=b.label?`${K.label} ${b.label}`:K.label}const P=y.className,w=P?`${K.root} ${P}`:K.root;if(t&&a){const b=!!(y.checked??y.defaultChecked),v=a,C=r.jsx(v,{...e,checked:b,label:y.label});return i?r.jsx(ze,{formLayout:i,labelSize:d,controlMaxWidth:u,controlMinWidth:p,children:C}):r.jsx(r.Fragment,{children:C})}const T=r.jsx(m.Radio,{ref:s,icon:Ll,className:w,classNames:f,disabled:t||l,...$});return i?r.jsx(ze,{formLayout:i,labelSize:d,controlMaxWidth:u,controlMinWidth:p,children:T}):T});tt.displayName="Radio";tt.Group=ot;const Il="SegmentedControl-module__root___JFRhg",kl="SegmentedControl-module__label___mS17q",Ol="SegmentedControl-module__control___znOdQ",Ml="SegmentedControl-module__indicator___ZMcJy",be={root:Il,label:kl,control:Ol,indicator:Ml};function Wl(n){const e={root:be.root,control:be.control,label:be.label,indicator:be.indicator},s=n.classNames;if(s&&typeof s=="object"&&!Array.isArray(s)){const a=s;e.root=a.root?`${be.root} ${a.root}`:be.root,e.control=a.control?`${be.control} ${a.control}`:be.control,e.label=a.label?`${be.label} ${a.label}`:be.label,e.indicator=a.indicator?`${be.indicator} ${a.indicator}`:be.indicator}const o=n.className;return{className:o?`${be.root} ${o}`:be.root,classNames:e}}const Er=c.forwardRef(function({overStyled:e=!1,orientation:s="horizontal",fullWidth:o,...t},a){const l=h(t,e),i=l;delete i.disabled;const d=Wl(i);return r.jsx(m.SegmentedControl,{ref:a,className:d.className,classNames:d.classNames,orientation:s,fullWidth:o,"data-orientation":s,...l})});Er.displayName="SegmentedControl";const zl=Er,Fl="Slider-module__layoutOverride___zYPun",El="Slider-module__sliderContainer___y8I0J",Dl="Slider-module__sliderTrackWrapper___UHpVh",Bl="Slider-module__iconWrapper___uqHpC",Gl="Slider-module__sliderRoot___LI86H",Vl="Slider-module__sliderTrack___oqnlG",Hl="Slider-module__sliderBar___TI4VY",ql="Slider-module__sliderThumb___OFn8p",Ul="Slider-module__sliderMark___1lM2B",Kl="Slider-module__sliderMarkLabel___MMZrq",Zl="Slider-module__minMaxGuide___TaGqz",Yl="Slider-module__rightGuideContainer___8dOT8",Xl="Slider-module__currentValue___dGV2T",Ql="Slider-module__inputField___6x578",Jl="Slider-module__readOnlyValue___-ZzMW",D={layoutOverride:Fl,sliderContainer:El,sliderTrackWrapper:Dl,iconWrapper:Bl,sliderRoot:Gl,sliderTrack:Vl,sliderBar:Hl,sliderThumb:ql,sliderMark:Ul,sliderMarkLabel:Kl,minMaxGuide:Zl,rightGuideContainer:Yl,currentValue:Xl,inputField:Ql,readOnlyValue:Jl},ei=({value:n})=>r.jsx("div",{className:D.readOnlyValue,children:n}),Dr=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,labelActionArea:u,onLabelEditClick:p,label:_,tooltipLabel:$,assistiveText:y,assistiveWithIcon:f,error:N,required:P,withAsterisk:w,id:T,className:b,style:v,disabled:C,readOnly:x,readOnlyComponent:j,emptyValueComponent:g,value:O,defaultValue:M,icon:S,showInput:R=!1,showMinMaxLabels:I=!0,min:F=0,max:L=100,step:ee=1,onChange:ie,onChangeEnd:q,...me}=e,[ve,Ie]=c.useState(()=>O!==void 0?O:M!==void 0?M:F),z=O!==void 0?O:ve,[ae,U]=c.useState(z.toString());c.useEffect(()=>{U(z.toString())},[z]);const oe=G=>{O===void 0&&Ie(G),ie==null||ie(G)},_e=G=>{const Be=G.target.value;U(Be);const Ge=parseFloat(Be);if(!isNaN(Ge)){const ro=Math.max(F,Math.min(L,Ge));oe(ro)}},ke=()=>{U(z.toString())},fe=h(me,o),ne=fe;delete ne.size,delete ne.variant,delete ne.radius,delete ne.wrapperProps;const te={root:D.sliderRoot,track:D.sliderTrack,bar:D.sliderBar,thumb:D.sliderThumb,mark:D.sliderMark,markLabel:D.sliderMarkLabel},de=ne.classNames;if(de&&typeof de=="object"&&!Array.isArray(de)){const G=de;te.root=G.root?`${D.sliderRoot} ${G.root}`:D.sliderRoot,te.track=G.track?`${D.sliderTrack} ${G.track}`:D.sliderTrack,te.bar=G.bar?`${D.sliderBar} ${G.bar}`:D.sliderBar,te.thumb=G.thumb?`${D.sliderThumb} ${G.thumb}`:D.sliderThumb,te.mark=G.mark?`${D.sliderMark} ${G.mark}`:D.sliderMark,te.markLabel=G.markLabel?`${D.sliderMarkLabel} ${G.markLabel}`:D.sliderMarkLabel}const Pe=b?`${D.layoutOverride} ${b}`:D.layoutOverride,to=S?r.jsx("span",{className:D.iconWrapper,"aria-hidden":!0,children:S}):null;return r.jsx(xe,{ref:s,className:Pe,style:v,controlMaxWidth:void 0,controlMinWidth:void 0,overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,labelActionArea:u,onLabelEditClick:p,label:_,assistiveText:y,assistiveWithIcon:f,error:N,required:P,withAsterisk:w,id:T,readOnly:x,readOnlyComponent:j||ei,emptyValueComponent:g,readOnlyType:"text",readOnlyValue:z,readOnlyNativeProps:{value:z},activeComponent:r.jsxs("div",{className:D.sliderContainer,"data-form-layout":t,"data-disabled":C?"true":void 0,"data-error":N?"true":void 0,children:[to,I&&r.jsx("span",{className:D.minMaxGuide,children:F}),r.jsx("div",{className:D.sliderTrackWrapper,children:r.jsx(m.Slider,{classNames:te,disabled:C,value:z,onChange:oe,onChangeEnd:q,min:F,max:L,step:ee,label:$,...fe})}),r.jsxs("div",{className:D.rightGuideContainer,children:[!R&&r.jsx("span",{className:D.currentValue,children:z}),I&&r.jsx("span",{className:D.minMaxGuide,children:L})]}),R&&r.jsx("input",{type:"number",className:D.inputField,value:ae,onChange:_e,onBlur:ke,min:F,max:L,step:ee,disabled:C,"data-error":N?"true":void 0})]})})});Dr.displayName="Slider";const oi="Stack-module__root___NUN-x",vo={root:oi},Br=c.forwardRef(function({children:e,gap:s="rec-default",...o},t){const a={root:vo.root},l=o.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const u=l;a.root=u.root?`${vo.root} ${u.root}`:vo.root}const i=o.className,d=i?`${vo.root} ${i}`:vo.root;return r.jsx(m.Stack,{ref:t,className:d,classNames:a,...wo({gap:s,...o}),children:e})});Br.displayName="Stack";const ti=m.createPolymorphicComponent(Br),ri="Stepper-module__root___jbSYO",si="Stepper-module__horizontal___USHT1",ai="Stepper-module__steps___4HPO6",ni="Stepper-module__step___s2nqL",li="Stepper-module__stepBody___TBvys",ii="Stepper-module__stepLabel___N6nuy",ci="Stepper-module__stepDescription___DnDAy",di="Stepper-module__separator___pU0No",ui="Stepper-module__vertical___d4mOs",pi="Stepper-module__large___J18-y",mi="Stepper-module__small___Ub-zb",_i="Stepper-module__stepIcon___YQHNq",fi="Stepper-module__stepCompletedIcon___B9MeL",yi="Stepper-module__verticalSeparator___frWc1",hi="Stepper-module__content___J-h8X",pe={root:ri,horizontal:si,steps:ai,step:ni,stepBody:li,stepLabel:ii,stepDescription:ci,separator:di,vertical:ui,large:pi,small:mi,stepIcon:_i,stepCompletedIcon:fi,verticalSeparator:yi,content:hi},Gr=c.forwardRef(function(e,s){const{overStyled:o=!1,size:t="large",orientation:a="horizontal",className:l,style:i,...d}=e,u=h(d,o);return r.jsx(m.Stepper,{ref:s,orientation:a,className:`${pe.root} ${a==="horizontal"?pe.horizontal:pe.vertical} ${t==="large"?pe.large:pe.small} ${l||""}`,style:i,"data-size":t,"data-orientation":a,classNames:{steps:pe.steps,step:pe.step,stepIcon:pe.stepIcon,stepCompletedIcon:pe.stepCompletedIcon,stepBody:pe.stepBody,stepLabel:pe.stepLabel,stepDescription:pe.stepDescription,separator:pe.separator,verticalSeparator:pe.verticalSeparator,content:pe.content},...u})}),Vr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Stepper.Step,{ref:o,...t})});Vr.displayName="Stepper.Step";const bi=Object.assign(Gr,{Step:Vr,Completed:m.Stepper.Completed});Gr.displayName="Stepper";const vi="Switch-module__root___Y5Ydi",Ni="Switch-module__track___7ObdZ",xi="Switch-module__body___Sw9Wr",$i="Switch-module__thumb___-FTeK",Ci="Switch-module__labelWrapper___YSOwx",wi="Switch-module__label___LrH7V",gi="Switch-module__thumbIconWrapper___sCY-1",Pi="Switch-module__checkIcon___ZBAQN",Ti="Switch-module__closeIcon___bLLGw",ji="Switch-module__groupRoot___-Uepi",B={root:vi,track:Ni,body:xi,thumb:$i,labelWrapper:Ci,label:wi,thumbIconWrapper:gi,checkIcon:Pi,closeIcon:Ti,groupRoot:ji},rt=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,description:_,assistiveText:$,assistiveWithIcon:y,error:f,required:N,withAsterisk:P,id:w,className:T,style:b,children:v,readOnly:C,readOnlyComponent:x,emptyValueComponent:j,value:g,defaultValue:O,...M}=e,S=h(M,o),R=S;return delete R.size,r.jsx(xe,{className:T,style:b,controlMaxWidth:void 0,controlMinWidth:void 0,overStyled:o,labelElement:"div",formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,description:_,assistiveText:$,assistiveWithIcon:y,error:f,required:N,withAsterisk:P,id:w,readOnly:C&&!!x,readOnlyComponent:x,emptyValueComponent:j,readOnlyType:"text",readOnlyValue:g!==void 0?g:O,readOnlyNativeProps:e,activeComponent:r.jsx(m.Switch.Group,{ref:s,...S,disabled:C||R.disabled,value:g,defaultValue:O,children:r.jsx("div",{className:B.groupRoot,"data-layout":t,children:v})})})});rt.displayName="SwitchGroup";const st=c.forwardRef(function(e,s){const{overStyled:o=!1,readOnly:t,readOnlyComponent:a,disabled:l,thumbIcon:i,formLayout:d,labelSize:u,controlMaxWidth:p,controlMinWidth:_,...$}=e,y=h($,o),f=y;delete f.size,delete f.color,delete f.radius,delete f.variant;const N={root:B.root,body:B.body,track:B.track,thumb:B.thumb,trackLabel:B.trackLabel,labelWrapper:B.labelWrapper,label:B.label},P=f.classNames;if(P&&typeof P=="object"&&!Array.isArray(P)){const C=P;N.root=C.root?`${B.root} ${C.root}`:B.root,N.body=C.body?`${B.body} ${C.body}`:B.body,N.track=C.track?`${B.track} ${C.track}`:B.track,N.thumb=C.thumb?`${B.thumb} ${C.thumb}`:B.thumb,N.trackLabel=C.trackLabel?`${B.trackLabel} ${C.trackLabel}`:B.trackLabel,N.labelWrapper=C.labelWrapper?`${B.labelWrapper} ${C.labelWrapper}`:B.labelWrapper,N.label=C.label?`${B.label} ${C.label}`:B.label}const w=f.className,T=w?`${B.root} ${w}`:B.root;if(t&&a){const C=!!(f.checked??f.defaultChecked),x=a,j=r.jsx(x,{...e,checked:C,label:f.label});return d?r.jsx(ze,{formLayout:d,labelSize:u,controlMaxWidth:p,controlMinWidth:_,children:j}):r.jsx(r.Fragment,{children:j})}const b=r.jsxs("div",{className:B.thumbIconWrapper,children:[r.jsx(m.CheckIcon,{className:B.checkIcon}),r.jsx(m.CloseIcon,{className:B.closeIcon})]}),v=r.jsx(m.Switch,{ref:s,className:T,classNames:N,disabled:t||l,"data-disabled":t||l||void 0,thumbIcon:i??b,...y});return d?r.jsx(ze,{formLayout:d,labelSize:u,controlMaxWidth:p,controlMinWidth:_,children:v}):v});st.displayName="Switch";st.Group=rt;const Si="Table-module__root___aMWWS",Ri={root:Si},Hr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a=t.className,l=Ri.root,i=a?`${l} ${a}`:l;return r.jsx(m.Table,{ref:o,className:i,...t})});Hr.displayName="Table";const qr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Table.Thead,{ref:o,...t})});qr.displayName="TableThead";const Ur=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Table.Tbody,{ref:o,...t})});Ur.displayName="TableTbody";const Kr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Table.Tr,{ref:o,...t})});Kr.displayName="TableTr";const Zr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Table.Th,{ref:o,...t})});Zr.displayName="TableTh";const Yr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Table.Td,{ref:o,...t})});Yr.displayName="TableTd";const Xr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Table.Tfoot,{ref:o,...t})});Xr.displayName="TableTfoot";const Qr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Table.Caption,{ref:o,...t})});Qr.displayName="TableCaption";const Jr=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Table.ScrollContainer,{ref:o,...t})});Jr.displayName="TableScrollContainer";const De=Hr;De.Thead=qr;De.Tbody=Ur;De.Tr=Kr;De.Th=Zr;De.Td=Yr;De.Tfoot=Xr;De.Caption=Qr;De.ScrollContainer=Jr;const Ai="Tabs-module__root___-VKVI",Li="Tabs-module__list___qRVME",Ii="Tabs-module__tab___IdDYc",ki="Tabs-module__panel___08i9c",To={root:Ai,list:Li,tab:Ii,panel:ki},es=c.forwardRef(function(e,s){const{variant:o="default",orientation:t="horizontal",overStyled:a=!1,className:l,...i}=e,d=h(i,a);return r.jsx(m.Tabs,{ref:s,variant:o,orientation:t,className:`${To.root} ${l||""}`,"data-variant":o,"data-orientation":t,classNames:{list:To.list,tab:To.tab,panel:To.panel},...d})});es.displayName="Tabs";const os=c.forwardRef(function(e,s){const{overStyled:o=!1,...t}=e;return r.jsx(m.Tabs.List,{ref:s,...h(t,o)})});os.displayName="Tabs.List";const ts=c.forwardRef(function(e,s){const{overStyled:o=!1,...t}=e;return r.jsx(m.Tabs.Tab,{ref:s,...h(t,o)})});ts.displayName="Tabs.Tab";const rs=c.forwardRef(function(e,s){const{overStyled:o=!1,...t}=e;return r.jsx(m.Tabs.Panel,{ref:s,...h(t,o)})});rs.displayName="Tabs.Panel";const Oi=Object.assign(es,{List:os,Tab:ts,Panel:rs}),ss=c.forwardRef(function({overStyled:e=!1,variant:s="body",...o},t){const a=h(o,e),l=a.className,i=`recursica_brand_typography_${s}`,d=l?`${i} ${l}`:i;return r.jsx(m.Text,{ref:t,className:d,...a})});ss.displayName="Text";const Mi=m.createPolymorphicComponent(ss),Wi="TextArea-module__layoutOverride___4MCdm",zi="TextArea-module__root___3dyeu",Fi="TextArea-module__input___8l36v",Ke={layoutOverride:Wi,root:zi,input:Fi},as=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,className:w,style:T,disabled:b,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,value:j,defaultValue:g,...O}=e,M=h(O,o),S=M;delete S.size,delete S.variant,delete S.radius;const R={wrapper:Ke.root,input:Ke.input},I=S.classNames;if(I&&typeof I=="object"&&!Array.isArray(I)){const L=I;R.wrapper=L.wrapper?`${Ke.root} ${L.wrapper}`:Ke.root,R.input=L.input?`${Ke.input} ${L.input}`:Ke.input}const F=w?`${Ke.layoutOverride} ${w}`:Ke.layoutOverride;return r.jsx(xe,{className:F,style:T,controlMaxWidth:"var(--textarea-control-max-width)",controlMinWidth:"var(--textarea-control-min-width)",overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,readOnlyType:"text",readOnlyValue:j!==void 0?j:g,readOnlyNativeProps:e,activeComponent:r.jsx(m.Textarea,{ref:s,...M,classNames:R,disabled:b,value:j,defaultValue:g,label:void 0,description:void 0,error:!!y,required:void 0,withAsterisk:void 0})})});as.displayName="TextArea";const Ei="TextField-module__layoutOverride___SNZqc",Di="TextField-module__root___2ZYkG",Bi="TextField-module__input___RL-My",Gi="TextField-module__section___bCIJ0",je={layoutOverride:Ei,root:Di,input:Bi,section:Gi},at=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,className:w,style:T,disabled:b,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,value:j,defaultValue:g,...O}=e,M=h(O,o),S=M;delete S.size,delete S.variant,delete S.radius;const R={wrapper:je.root,input:je.input,section:je.section},I=S.classNames;if(I&&typeof I=="object"&&!Array.isArray(I)){const L=I;R.wrapper=L.wrapper?`${je.root} ${L.wrapper}`:je.root,R.input=L.input?`${je.input} ${L.input}`:je.input,R.section=L.section?`${je.section} ${L.section}`:je.section}const F=w?`${je.layoutOverride} ${w}`:je.layoutOverride;return r.jsx(xe,{className:F,style:T,controlMaxWidth:"var(--text-field-control-max-width)",controlMinWidth:"var(--text-field-control-min-width)",overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,readOnlyType:"text",readOnlyValue:j!==void 0?j:g,readOnlyNativeProps:e,activeComponent:r.jsx(m.Input,{ref:s,classNames:R,disabled:b,value:j,defaultValue:g,wrapperProps:{"data-disabled":b?"true":void 0,"data-error":y?"true":void 0},...M})})});at.displayName="TextField";const ns=c.forwardRef(function(e,s){const{overStyled:o=!1,className:t,disabled:a,error:l,...i}=e,d=h(i,o),u=d;delete u.size,delete u.variant,delete u.radius;const p={wrapper:t?`${Y.root} ${t}`:Y.root,input:Y.input,section:Y.section,dropdown:Y.dropdown,option:Y.option};return r.jsx(m.Select,{ref:s,classNames:p,disabled:a,label:void 0,description:void 0,error:void 0,attributes:{wrapper:{"data-disabled":a?"true":void 0,"data-error":l?"true":void 0}},...d})});ns.displayName="BareDropdown";const Vi="TimePicker-module__layoutOverride___zKo4Q",Hi="TimePicker-module__root___BcvRu",qi="TimePicker-module__timeWrapper___hJVre",Ui="TimePicker-module__timeInput___FQysn",Ki="TimePicker-module__fieldsGroup___2yHhR",Zi="TimePicker-module__timeField___twRZd",Yi="TimePicker-module__amPmSelect___mSdvt",Ze={layoutOverride:Vi,root:Hi,timeWrapper:qi,timeInput:Ui,fieldsGroup:Ki,timeField:Zi,amPmSelect:Yi},Xi=[{value:"AM",label:"AM"},{value:"PM",label:"PM"}];function yt(n){if(!n)return;const e=parseInt(n.slice(0,2),10);return Number.isNaN(e)?void 0:e}function Qi(n,e){return`${String(e).padStart(2,"0")}${n.slice(2)}`}function Ji(n){if(!n)return;const[e,s,o]=n.split(":"),t=parseInt(e,10);if(Number.isNaN(t)||s===void 0)return n;const a=t>=12,l=t%12===0?12:t%12,i=o!==void 0?`${s}:${o}`:s;return`${l}:${i} ${a?"PM":"AM"}`}function ec(n,e){var o;const s=(o=Object.getOwnPropertyDescriptor(window.HTMLSelectElement.prototype,"value"))==null?void 0:o.set;s==null||s.call(n,e),n.dispatchEvent(new Event("change",{bubbles:!0}))}const ls=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,className:w,style:T,disabled:b,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,value:j,defaultValue:g,onChange:O,withSeconds:M,minTime:S,maxTime:R,...I}=e,F=h(I,o),L=F;delete L.size,delete L.variant,delete L.radius;const[ee,ie]=c.useState(()=>j??g);c.useEffect(()=>{j!==void 0&&ie(j)},[j]);const q=c.useRef(null);c.useEffect(()=>{yt(j??g)===void 0&&q.current&&ec(q.current,"AM")},[]);const me=oe=>{ie(oe),O==null||O(oe)},ve=yt(ee),Ie=ve!==void 0&&ve>=12,z=oe=>{me(oe)},ae=oe=>{if(ve===void 0||!ee||!oe)return;const _e=oe==="PM";if(_e===Ie)return;const ke=_e?ve+12:ve-12;me(Qi(ee,ke))},U=w?`${Ze.layoutOverride} ${w}`:Ze.layoutOverride;return r.jsx(xe,{className:U,style:T,controlMaxWidth:void 0,controlMinWidth:void 0,overStyled:o,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,onLabelEditClick:u,label:p,assistiveText:_,assistiveWithIcon:$,error:y,required:f,withAsterisk:N,id:P,readOnly:v,readOnlyComponent:C,emptyValueComponent:x,readOnlyType:"text",readOnlyValue:Ji(j!==void 0?j:g),readOnlyNativeProps:e,activeComponent:r.jsxs("div",{className:Ze.root,"data-disabled":b?"true":void 0,"data-error":y?"true":void 0,children:[r.jsx(Nt.TimePicker,{ref:s,classNames:{wrapper:Ze.timeWrapper,input:Ze.timeInput,fieldsGroup:Ze.fieldsGroup,field:Ze.timeField},disabled:b,value:ee,onChange:z,format:"12h",withSeconds:M,min:S,max:R,withDropdown:!1,amPmRef:q,...F}),r.jsx(ns,{overStyled:!0,className:Ze.amPmSelect,styles:{wrapper:{width:"fit-content"}},data:Xi,value:Ie?"PM":"AM",onChange:ae,disabled:b,error:!!y,"aria-label":"AM or PM"})]})})});ls.displayName="TimePicker";const oc="Timeline-module__root___LwRdZ",tc="Timeline-module__item___T5xdQ",rc="Timeline-module__itemBody___XAV-E",sc="Timeline-module__itemBullet___rPXCy",ac="Timeline-module__itemTitle___GgRRW",nc="Timeline-module__itemContent___vurs-",lc="Timeline-module__description___f9sxV",ic="Timeline-module__timestamp___owiRu",Ye={root:oc,item:tc,itemBody:rc,itemBullet:sc,itemTitle:ac,itemContent:nc,description:lc,timestamp:ic},nt=c.forwardRef(function({overStyled:e=!1,timestamp:s,bulletVariant:o="default",children:t,...a},l){const i=h(a,e),d={item:Ye.item,itemBody:Ye.itemBody,itemContent:Ye.itemContent,itemBullet:Ye.itemBullet,itemTitle:Ye.itemTitle},u=i.classNames;if(u&&typeof u=="object"&&!Array.isArray(u)){const _=u;Object.keys(_).forEach($=>{d[$]?d[$]=`${d[$]} ${_[$]}`:d[$]=_[$]})}const p=s?r.jsxs(r.Fragment,{children:[t&&r.jsx("div",{className:Ye.description,children:t}),r.jsx("div",{className:Ye.timestamp,children:s})]}):t;return r.jsx(m.TimelineItem,{ref:l,classNames:d,"data-variant":o,...i,children:p})});nt.displayName="TimelineItem";const is=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e),a={root:Ye.root},l=t.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const i=l;Object.keys(i).forEach(d=>{a[d]?a[d]=`${a[d]} ${i[d]}`:a[d]=i[d]})}return r.jsx(m.Timeline,{ref:o,classNames:a,...t})});is.displayName="Timeline";const cs=is;cs.Item=nt;const ds=c.forwardRef(function({overStyled:e=!1,order:s=1,...o},t){const a=h(o,e),l=a.className,i=`recursica_brand_typography_h${s}`,d=l?`${i} ${l}`:i;return r.jsx(m.Title,{ref:t,order:s,className:d,...a})});ds.displayName="Title";const cc="Toast-module__root___MUvfI",dc="Toast-module__icon___VwvE1",uc="Toast-module__loader___8Gxd-",pc="Toast-module__title___-H6R2",mc="Toast-module__description___-QwfC",_c="Toast-module__closeButton___vGr7g",fc="Toast-module__body___VLkXA",co={root:cc,icon:dc,loader:uc,title:pc,description:mc,closeButton:_c,body:fc},us=c.forwardRef(function({overStyled:e=!1,variant:s="default",withCloseButton:o=!0,...t},a){const l=h(t,e),i={root:co.root,body:co.body,title:co.title,description:co.description,closeButton:co.closeButton,icon:co.icon,loader:co.loader},d=l.classNames;if(d&&typeof d=="object"&&!Array.isArray(d)){const u=d;Object.keys(u).forEach(p=>{i[p]?i[p]=`${i[p]} ${u[p]}`:i[p]=u[p]})}return r.jsx(m.Notification,{ref:a,withCloseButton:o,withBorder:!1,"data-variant":s,classNames:i,loading:!1,...l})});us.displayName="Toast";const yc="Tooltip-module__tooltip___UA7H9",hc="Tooltip-module__arrow___4zROk",ht={tooltip:yc,arrow:hc},ps=function({overStyled:e=!1,withBeak:s=!0,...o}){const t=h(o,e),a={tooltip:ht.tooltip,arrow:ht.arrow},l=t.classNames;if(l&&typeof l=="object"&&!Array.isArray(l)){const p=l;Object.keys(p).forEach(_=>{a[_]?a[_]=`${a[_]} ${p[_]}`:a[_]=p[_]})}const i=t.arrowSize??16,d=t.withArrow,u=s??d;return r.jsx(m.Tooltip,{position:"top",multiline:!0,arrowSize:i,withArrow:u,classNames:a,...t})};ps.displayName="Tooltip";const ms=c.forwardRef(function({overStyled:e=!1,...s},o){const t=h(s,e);return r.jsx(m.Tooltip.Floating,{ref:o,...t})});ms.displayName="TooltipFloating";const lt=ps;lt.Floating=ms;lt.Group=m.Tooltip.Group;const bc="TransferList-module__layoutOverride___nkb32",vc="TransferList-module__root___ikjI7",Nc="TransferList-module__panes___dtwkW",xc="TransferList-module__pane___hy-kC",$c="TransferList-module__paneHeader___HZrKX",Cc="TransferList-module__paneSearch___Xji-g",wc="TransferList-module__paneList___v0rcJ",gc="TransferList-module__emptyState___azPw-",Pc="TransferList-module__transferColumn___3R2Ki",Tc="TransferList-module__chevron___l-KdI",ge={layoutOverride:bc,root:vc,panes:Nc,pane:xc,paneHeader:$c,paneSearch:Cc,paneList:wc,emptyState:gc,transferColumn:Pc,chevron:Tc};function bt({direction:n}){return r.jsx("svg",{className:ge.chevron,"data-direction":n,viewBox:"0 0 16 16",width:"1em",height:"1em",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:r.jsx("path",{d:"M6 3l5 5-5 5"})})}function vt({direction:n}){return r.jsx("svg",{className:ge.chevron,"data-direction":n,viewBox:"0 0 16 16",width:"1em",height:"1em",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:r.jsx("path",{d:"M3 3l5 5-5 5M9 3l5 5-5 5"})})}function jc(n){const e={},s=[];return n.forEach(o=>{var t;o.group?(e[t=o.group]??(e[t]=[])).push(o):s.push(o)}),{groups:e,ungrouped:s}}const _s=c.forwardRef(function(e,s){const{overStyled:o=!1,formLayout:t="stacked",labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,labelActionArea:u,onLabelEditClick:p,label:_,assistiveText:$,description:y,helperText:f,assistiveWithIcon:N,error:P,required:w,id:T,readOnly:b,readOnlyComponent:v,emptyValueComponent:C,data:x,defaultData:j,onChange:g,sourceLabel:O="Available",targetLabel:M="Selected",searchable:S=!0,searchPlaceholder:R="Filter items...",disabled:I=!1,className:F,style:L,...ee}=e,ie=h(ee,o),q=c.useId(),me=T||`recursica-transfer-list-${q}`,[ve,Ie]=c.useState(()=>j??x??[[],[]]),z=x!==void 0?x:ve,ae=c.useCallback(E=>{x===void 0&&Ie(E),g==null||g(E)},[x,g]),[U,oe]=c.useState(""),[_e,ke]=c.useState(""),[fe,ne]=c.useState(()=>new Set),[te,de]=c.useState(()=>new Set),Pe=c.useMemo(()=>{if(!U)return z[0];const E=U.toLowerCase();return z[0].filter(X=>X.label.toLowerCase().includes(E))},[z,U]),to=c.useMemo(()=>{if(!_e)return z[1];const E=_e.toLowerCase();return z[1].filter(X=>X.label.toLowerCase().includes(E))},[z,_e]),G=c.useCallback(()=>{if(fe.size===0)return;const E=z[0].filter(V=>!fe.has(V.value)),X=z[0].filter(V=>fe.has(V.value));ne(new Set),ae([E,[...z[1],...X]])},[z,fe,ae]),Be=c.useCallback(()=>{if(te.size===0)return;const E=z[1].filter(V=>!te.has(V.value)),X=z[1].filter(V=>te.has(V.value));de(new Set),ae([[...z[0],...X],E])},[z,te,ae]),Ge=c.useCallback(()=>{z[0].length!==0&&(ne(new Set),ae([[],[...z[1],...z[0]]]))},[z,ae]),ro=c.useCallback(()=>{z[1].length!==0&&(de(new Set),ae([[...z[0],...z[1]],[]]))},[z,ae]),Ve=c.useCallback(E=>{ne(X=>{const V=new Set(X);return V.has(E)?V.delete(E):V.add(E),V})},[]),so=c.useCallback(E=>{de(X=>{const V=new Set(X);return V.has(E)?V.delete(E):V.add(E),V})},[]),He=(E,X,V,W,Z,re,ye,ao)=>{const{groups:A,ungrouped:J}=jc(V),Q=Object.keys(A).sort(),Ne=Z.size>0?`${Z.size} / ${W.length}`:`${W.length}`;return r.jsxs("div",{className:ge.pane,"data-pane":E,children:[r.jsxs("div",{className:ge.paneHeader,children:[r.jsx("span",{children:X}),r.jsx(jt,{children:Ne})]}),S&&r.jsx("div",{className:ge.paneSearch,children:r.jsx(at,{value:ye,onChange:se=>ao(se.currentTarget.value),placeholder:R,disabled:I,"aria-label":`Filter ${X.toLowerCase()}`})}),r.jsxs("div",{className:ge.paneList,children:[V.length===0&&r.jsx("div",{className:ge.emptyState,children:"No items"}),J.length>0&&r.jsx(xo,{children:J.map(se=>r.jsx($o,{id:`${me}-${E}-${se.value}`,label:se.label,checked:Z.has(se.value),onChange:()=>re(se.value),disabled:I},se.value))}),Q.map(se=>r.jsx(xo,{label:se,labelSize:"small",children:A[se].map($e=>r.jsx($o,{id:`${me}-${E}-${$e.value}`,label:$e.label,checked:Z.has($e.value),onChange:()=>re($e.value),disabled:I},$e.value))},se))]})]})},po=F?`${ge.layoutOverride} ${F}`:ge.layoutOverride;return r.jsx(xe,{ref:s,formLayout:t,labelSize:a,labelAlignment:l,labelOptionalText:i,labelWithEditIcon:d,labelActionArea:u,onLabelEditClick:p,label:_,assistiveText:$,description:y,helperText:f,assistiveWithIcon:N,error:P,required:w,id:me,className:po,style:L,overStyled:o,readOnly:b,readOnlyComponent:v,emptyValueComponent:C,readOnlyType:"text",readOnlyValue:z[1].map(E=>E.label),readOnlyNativeProps:e,activeComponent:r.jsx("div",{className:ge.root,"data-disabled":I?"true":void 0,"data-error":P?"true":void 0,...ie,children:r.jsxs("div",{className:ge.panes,children:[He("source",O,Pe,z[0],fe,Ve,U,oe),r.jsxs("div",{className:ge.transferColumn,children:[r.jsx(Je,{variant:"outline",size:"small",icon:r.jsx(vt,{direction:"right"}),"aria-label":`Move all to ${M}`,disabled:I||z[0].length===0,onClick:Ge}),r.jsx(Je,{variant:"outline",size:"small",icon:r.jsx(bt,{direction:"right"}),"aria-label":`Move selected to ${M}`,disabled:I||fe.size===0,onClick:G}),r.jsx(Je,{variant:"outline",size:"small",icon:r.jsx(bt,{direction:"left"}),"aria-label":`Move selected to ${O}`,disabled:I||te.size===0,onClick:Be}),r.jsx(Je,{variant:"outline",size:"small",icon:r.jsx(vt,{direction:"left"}),"aria-label":`Move all to ${O}`,disabled:I||z[1].length===0,onClick:ro})]}),He("target",M,to,z[1],te,so,_e,ke)]})})})});_s.displayName="TransferList";const Sc="Tree-module__root___ANcH3",Rc="Tree-module__subtree___KoLT8",Ac="Tree-module__node___Hvnjg",Lc="Tree-module__row___sq5ff",Ic="Tree-module__label___zJDit",kc="Tree-module__expandButton___W0WTT",Oc="Tree-module__expandGlyph___w8dDQ",eo={root:Sc,subtree:Rc,node:Ac,row:Lc,label:Ic,expandButton:kc,expandGlyph:Oc};function Mc(){return r.jsx("svg",{className:eo.expandGlyph,viewBox:"0 0 16 16",width:"1em",height:"1em",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:r.jsx("path",{d:"M5 3l5 5-5 5"})})}function Wc(n){return function({node:s,hasChildren:o,expanded:t,selected:a,tree:l,elementProps:i}){return r.jsxs("div",{...i,className:eo.row,"data-has-children":o||void 0,"data-expanded":o&&t?!0:void 0,children:[r.jsx(Je,{overStyled:!0,variant:"text",size:"small",icon:r.jsx(Mc,{}),"aria-label":"Toggle subtree","aria-hidden":"true",tabIndex:-1,className:eo.expandButton,onClick:d=>{d.stopPropagation(),!n&&l.toggleExpanded(s.value)}}),r.jsx("span",{className:eo.label,"data-selected":a||void 0,children:s.label})]})}}const fs=c.forwardRef(function({overStyled:e=!1,data:s,initialExpandedValues:o,initialSelectedValues:t,multiple:a=!1,disabled:l=!1,onNodeExpand:i,onNodeCollapse:d,onSelectedChange:u,...p},_){const $=h(p,e),y=m.useTree({initialExpandedState:o?m.getTreeExpandedState(s,o):void 0,initialSelectedState:t,multiple:a,onNodeExpand:i,onNodeCollapse:d});c.useEffect(()=>{u==null||u(y.selectedState)},[y.selectedState,u]);const f=c.useRef(null);c.useEffect(()=>{const T=f.current;if(!T)return;const b=v=>{if(l||v.key!=="Enter"&&v.key!==" ")return;const C=v.target.closest('[role="treeitem"]'),x=C==null?void 0:C.dataset.value;x&&(v.preventDefault(),y.select(x))};return T.addEventListener("keydown",b),()=>T.removeEventListener("keydown",b)},[y.select,l]),c.useEffect(()=>{const T=f.current;if(!T||!l)return;const b=v=>{v.preventDefault(),v.stopPropagation()};return T.addEventListener("keydown",b,{capture:!0}),()=>T.removeEventListener("keydown",b,{capture:!0})},[l]);const N=hs.useMergedRef(_,f),P=$.className,w=P?`${eo.root} ${P}`:eo.root;return r.jsx(m.Tree,{ref:N,data:s,tree:y,expandOnClick:!1,selectOnClick:!l,expandOnSpace:!1,renderNode:Wc(l),"data-disabled":l||void 0,classNames:{root:w,node:eo.node,subtree:eo.subtree},...$})});fs.displayName="Tree";const zc=wn,Fc=qt,Ec=Ht,Dc=Ut,Bc=ti,Gc=Wt,Vc=kn,Hc=Mi,qc=k(ko),Uc=k(Bo),Kc=k(Lo),Zc=k(Io),Yc=k(Ro),Xc=k(gt),Qc=k(ua),Jc=k(jt),ed=k(St),od=k(Je),td=k(ja),rd=k($o),sd=k(xo),ad=k(Co),nd=k(zt),ld=k(Ft),id=k(Et),cd=k(Dt),dd=k(ze),ud=k(Yo),pd=k(Zo),md=k(Go),_d=k(uo),fd=k(Ee),yd=k(fr),hd=k(Ae),bd=k(Le),vd=k(Jo),Nd=k(et),xd=k(tt),$d=k(ot),Cd=k(Ko),wd=k(zl),gd=k(Dr),Pd=k(bi),Td=k(st),jd=k(rt),Sd=k(De),Rd=k(Oi),Ad=k(as),Ld=k(at),Id=k(ls),kd=k(cs),Od=k(nt),Md=k(ds),Wd=k(us),zd=k(lt),Fd=k(_s),Ed=k(fs);exports.Accordion=qc;exports.AccordionControl=Kc;exports.AccordionItem=Uc;exports.AccordionPanel=Zc;exports.AssistiveElement=Yc;exports.AutoComplete=Xc;exports.Avatar=Qc;exports.Badge=Jc;exports.Breadcrumb=ed;exports.Button=od;exports.Card=td;exports.Checkbox=rd;exports.CheckboxGroup=sd;exports.Chip=ad;exports.Container=Gc;exports.DatePicker=nd;exports.Dropdown=ld;exports.EmptyValueRenderer=No;exports.FileInput=id;exports.FileUpload=cd;exports.Flex=zc;exports.FormControlLayout=dd;exports.Grid=Fc;exports.GridCol=Ec;exports.Group=Dc;exports.HoverCard=ud;exports.IS_DEV=oo;exports.Label=md;exports.Layer=Vo;exports.Link=Vc;exports.Loader=pd;exports.Menu=_d;exports.Modal=fd;exports.NumberInput=yd;exports.Pagination=hd;exports.Panel=bd;exports.PanelFooter=vd;exports.Popover=Nd;exports.RECURSICA_COMPONENTS=Ys;exports.Radio=xd;exports.RadioGroup=$d;exports.ReadOnlyField=Cd;exports.RecursicaThemeProvider=Zs;exports.SegmentedControl=wd;exports.Slider=gd;exports.Stack=Bc;exports.Stepper=Pd;exports.Switch=Td;exports.SwitchGroup=jd;exports.Table=Sd;exports.Tabs=Rd;exports.Text=Hc;exports.TextArea=Ad;exports.TextField=Ld;exports.TimePicker=Id;exports.Timeline=kd;exports.TimelineItem=Od;exports.Title=Md;exports.Toast=Wd;exports.Tooltip=zd;exports.TransferList=Fd;exports.Tree=Ed;exports.copyToClipboard=Xs;exports.fileMatchesAccept=Uo;exports.injectOverStyledStyles=Ho;exports.isGlobalOverStyledActive=Ks;exports.registerOverStyledConsoleCommand=qo;exports.toggleGlobalOverStyled=Ct;exports.useGlobalOverStyled=wt;exports.wrapComponent=k;
12
12
  //# sourceMappingURL=mantine-adapter.cjs.map