@simoncomputing/mui-bueno-v2 0.20.1 → 0.21.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
@@ -11,6 +11,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
  - Minor increment --> singlular/minor changes. Minimal breaking changes.
12
12
  - Patch increment --> singlular/minor changes. Zero breaking changes.
13
13
 
14
+ ## [0.21.0] - 2025-12-18
15
+
16
+ ### Changed
17
+
18
+ - `Header`, `Footer`, `MenuButton`, `Drawer`, `Tabs`
19
+ - Renamed `MenuOption.externalLink` to `MenuOption.externalUrl`
20
+ - Added `MenuOption.openInNewTab` to allow links to be opened in a new tab. Only for internal app links (`MenuOption.path`), as external links (`MenuOption.externalUrl`) will always open in a new tab.
21
+
22
+ ### Fixed
23
+
24
+ - `Header`, `Footer`, `MenuButton`, `Drawer`, `Tabs`
25
+ - Fixed `MenuOption.externalLink` opening in current tab when `onClick` is not defined. These should always open in a new/separate tab.
26
+
14
27
  ## [0.20.1] - 2025-12-18
15
28
 
16
29
  ### Changed
@@ -69,9 +69,9 @@ export type MenuOption = LabelWithIcon & {
69
69
  minPermission?: string | string[];
70
70
 
71
71
  /**
72
- * Performs the action when clicked (ex. toggle dark mode). Avoid using this to navigate (use `path` or `externalLink` instead).
72
+ * Performs the action when clicked (ex. toggle dark mode). Avoid using this to navigate (use `path` or `externalUrl` instead).
73
73
  *
74
- * When `path` or `externalLink` is defined, this onClick will run right before navigating. Use this to handle any non-navigation logic that needs to happen.
74
+ * When `path` or `externalUrl` is defined, this onClick will run right before navigating. Use this to handle any non-navigation logic that needs to happen.
75
75
  */
76
76
  onClick?: () => void; // TODO update this to allow for conditional navigating based on the return value (true = navigate, false = don't navigate)
77
77
  } & (
@@ -80,18 +80,23 @@ export type MenuOption = LabelWithIcon & {
80
80
  * Internal path that this navigation item should navigate to (ex '/home')
81
81
  */
82
82
  path: string;
83
- externalLink?: never;
83
+ externalUrl?: never;
84
+ openInNewTab?: boolean;
84
85
  }
85
86
  | {
86
87
  /**
87
- * External path that this navigation item should navigate to (ex 'https://www.google.com')
88
+ * External Url that opens in new tab. Can be external URL (ex 'https://www.google.com')
89
+ *
90
+ * IMPORTANT: Make sure to include the "https://" prefix!
88
91
  */
89
- externalLink: string;
92
+ externalUrl: string;
90
93
  path?: never;
94
+ openInNewTab?: true;
91
95
  }
92
96
  | {
93
97
  path?: never;
94
- externalLink?: never;
98
+ externalUrl?: never;
99
+ openInNewTab?: never;
95
100
  }
96
101
  );
97
102
 
@@ -34,6 +34,8 @@ export declare function renderValue<T>(options: SelectOption<T>[], value?: strin
34
34
  * onClick only --> button
35
35
  * path & onClick --> button (onClick will be executed before navigating to path)
36
36
  *
37
+ * The reason we want to use links where possible, is because links can be opened in a new tab.
38
+ *
37
39
  * @param menuOption -- menuOption to generate the button/link props for
38
40
  * @param naviate -- pass useNavigate's navigate fn. used when onClick & path are both present to navigate to the path
39
41
  * @param onClickCallback -- (optional) called at the end of the onClick in case any additional execution is needed (ex. closing a modal)
@@ -43,21 +45,29 @@ export declare function generateButtonLinkProps(menuOption: MenuOption, navigate
43
45
  component?: undefined;
44
46
  to?: undefined;
45
47
  href?: undefined;
48
+ target?: undefined;
49
+ rel?: undefined;
46
50
  } | {
47
51
  component: import('react').ForwardRefExoticComponent<import('react-router-dom').LinkProps & import('react').RefAttributes<HTMLAnchorElement>>;
48
52
  to: string;
49
53
  onClick?: undefined;
50
54
  href?: undefined;
55
+ target?: undefined;
56
+ rel?: undefined;
51
57
  } | {
58
+ component: string;
52
59
  href: string;
60
+ target: string;
61
+ rel: string;
53
62
  onClick?: undefined;
54
- component?: undefined;
55
63
  to?: undefined;
56
64
  } | {
57
65
  onClick?: undefined;
58
66
  component?: undefined;
59
67
  to?: undefined;
60
68
  href?: undefined;
69
+ target?: undefined;
70
+ rel?: undefined;
61
71
  };
62
72
  /**
63
73
  * Opens the specified URL in a new tab
package/dist/index.cjs.js CHANGED
@@ -1,4 +1,4 @@
1
- "use strict";require('./index.css');var sF=Object.defineProperty;var aF=(t,e,n)=>e in t?sF(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n;var sc=(t,e,n)=>aF(t,typeof e!="symbol"?e+"":e,n);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const z=require("@mui/material"),b=require("react/jsx-runtime"),Z=require("react"),Ut=require("formik"),To=require("react-router-dom"),lF=require("@emotion/styled"),ti=require("@emotion/react"),Js=require("react-dom");function nO(t){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const n in t)if(n!=="default"){const r=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(e,n,r.get?r:{enumerable:!0,get:()=>t[n]})}}return e.default=t,Object.freeze(e)}const R=nO(Z),cF=nO(Js),uF="0px",dF="600px",fF="960px",pF="1100px",hF="1536px",mF="#4c98d7",gF="#005ea2",yF="#1a4480",bF="#9bb672",vF="#607f35",xF="#3c4a29",SF="rgba(0, 0, 0, 0.8705882353)",CF="rgba(0, 0, 0, 0.6)",wF="rgba(0, 0, 0, 0.3803921569)",TF="#dc5b52",EF="#d83933",kF="#b50909",OF="#ffbe2e",MF="#e5a000",_F="#c2850c",RF="#4c98d7",AF="#005ea2",DF="#1a4480",IF="#9bb672",PF="#607f35",NF="#3c4a29",$F="#f9f9f9",LF="#fff",jF="#252f3e",BF="#c9c9c9",FF="#98cbfb",VF="#4c98d7",zF="#005ea2",HF="#b8d293",WF="#9bb672",UF="#607f35",qF="#fff",KF="rgba(255, 255, 255, 0.7019607843)",YF="rgba(255, 255, 255, 0.5019607843)",GF="#f1928b",JF="#dc5b52",XF="#d83933",ZF="#ffe396",QF="#ffbe2e",e5="#e5a000",t5="#98cbfb",n5="#4c98d7",r5="#005ea2",o5="#b8d293",i5="#9bb672",s5="#607f35",a5="#121212",l5="#1b1b1b",c5="#2f3b4e",u5="#2e2e2e",d5="#f0f0f0",f5="#e6e6e6",p5="#c9c9c9",h5="#adadad",m5="#919191",g5="#757575",y5="#5c5c5c",b5="#454545",v5="#2e2e2e",x5="#1b1b1b",S5="#e6e6e6",C5="#c9c9c9",w5="#919191",T5="#454545",E5="#fff",k5="#000",O5="2px 2px 5px 0px rgba(0, 0, 0, 0.05)",M5="2px 2px 7px 0px rgba(0, 0, 0, 0.075)",_5="2px 3px 7px 0px rgba(0, 0, 0, 0.075), 0px 1px 10px 0px rgba(0, 0, 0, 0.05)",R5="2px 4px 8px 0px rgba(0, 0, 0, 0.075), 0px 1px 12px 0px rgba(0, 0, 0, 0.075)",A5="2px 5px 8px 0px rgba(0, 0, 0, 0.075), 0px 2px 14px 0px rgba(0, 0, 0, 0.1)",D5="2px 6px 10px 0px rgba(0, 0, 0, 0.1), 0px 2px 18px 0px rgba(0, 0, 0, 0.1)",I5="2px 7px 10px 1px rgba(0, 0, 0, 0.1), 0px 2px 16px 1px rgba(0, 0, 0, 0.12)",P5="2px 8px 10px 1px rgba(0, 0, 0, 0.1), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)",N5="2px 9px 12px 1px rgba(0, 0, 0, 0.1), 0px 3px 16px 2px rgba(0, 0, 0, 0.12)",$5="2px 10px 14px 1px rgba(0, 0, 0, 0.12), 0px 4px 18px 3px rgba(0, 0, 0, 0.12)",L5="2px 11px 15px 1px rgba(0, 0, 0, 0.12), 0px 4px 20px 3px rgba(0, 0, 0, 0.12)",j5="2px 12px 17px 2px rgba(0, 0, 0, 0.12), 0px 5px 22px 4px rgba(0, 0, 0, 0.12)",B5="2px 13px 19px 2px rgba(0, 0, 0, 0.12), 0px 5px 24px 4px rgba(0, 0, 0, 0.12)",F5="2px 14px 21px 2px rgba(0, 0, 0, 0.12), 0px 5px 26px 4px rgba(0, 0, 0, 0.12)",V5="2px 15px 22px 2px rgba(0, 0, 0, 0.12), 0px 6px 28px 5px rgba(0, 0, 0, 0.12)",z5="2px 16px 24px 2px rgba(0, 0, 0, 0.12), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)",H5="2px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12)",W5="2px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12)",U5="2px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12)",q5="2px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12)",K5="2px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12)",Y5="2px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12)",G5="2px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12)",J5="2px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12)",X5="3px",Z5="1px",Q5="2px",e3='"source-sans-pro", "helvetica", "arial", sans-serif',t3='"source-sans-pro", "helvetica", "arial", sans-serif',n3="700",r3="2rem",o3="normal",i3="normal",s3='"source-sans-pro", "helvetica", "arial", sans-serif',a3="700",l3="1.75rem",c3="normal",u3="normal",d3='"source-sans-pro", "helvetica", "arial", sans-serif',f3="700",p3="1.5rem",h3="normal",m3="normal",g3='"source-sans-pro", "helvetica", "arial", sans-serif',y3="700",b3="1.35rem",v3="normal",x3="normal",S3='"source-sans-pro", "helvetica", "arial", sans-serif',C3="700",w3="1.25rem",T3="normal",E3="normal",k3='"source-sans-pro", "helvetica", "arial", sans-serif',O3="700",M3="1.1rem",_3="normal",R3="normal",A3='"source-sans-pro", "helvetica", "arial", sans-serif',D3="600",I3="1.25rem",P3="normal",N3="normal",$3='"source-sans-pro", "helvetica", "arial", sans-serif',L3="600",j3="1.125rem",B3="normal",F3="normal",V3='"source-sans-pro", "helvetica", "arial", sans-serif',z3="400",H3="1.125rem",W3="normal",U3="normal",q3='"source-sans-pro", "helvetica", "arial", sans-serif',K3="400",Y3="1rem",G3="normal",J3="normal",X3='"source-sans-pro", "helvetica", "arial", sans-serif',Z3="600",Q3="1rem",eV="normal",tV="normal",nV='"source-sans-pro", "helvetica", "arial", sans-serif',rV="400",oV="0.75rem",iV="normal",sV="normal",aV='"source-sans-pro", "helvetica", "arial", sans-serif',lV="400",cV="0.75rem",uV="normal",dV="normal",de={breakpoints_xs:uF,breakpoints_sm:dF,breakpoints_md:fF,breakpoints_lg:pF,breakpoints_xl:hF,light_palette_primary_light:mF,light_palette_primary_main:gF,light_palette_primary_dark:yF,light_palette_secondary_light:bF,light_palette_secondary_main:vF,light_palette_secondary_dark:xF,light_palette_text_primary:SF,light_palette_text_secondary:CF,light_palette_text_disabled:wF,light_palette_error_light:TF,light_palette_error_main:EF,light_palette_error_dark:kF,light_palette_warning_light:OF,light_palette_warning_main:MF,light_palette_warning_dark:_F,light_palette_info_light:RF,light_palette_info_main:AF,light_palette_info_dark:DF,light_palette_success_light:IF,light_palette_success_main:PF,light_palette_success_dark:NF,light_palette_background_default:$F,light_palette_background_paper:LF,light_palette_background_appBar:jF,light_palette_divider_default:BF,dark_palette_primary_light:FF,dark_palette_primary_main:VF,dark_palette_primary_dark:zF,dark_palette_secondary_light:HF,dark_palette_secondary_main:WF,dark_palette_secondary_dark:UF,dark_palette_text_primary:qF,dark_palette_text_secondary:KF,dark_palette_text_disabled:YF,dark_palette_error_light:GF,dark_palette_error_main:JF,dark_palette_error_dark:XF,dark_palette_warning_light:ZF,dark_palette_warning_main:QF,dark_palette_warning_dark:e5,dark_palette_info_light:t5,dark_palette_info_main:n5,dark_palette_info_dark:r5,dark_palette_success_light:o5,dark_palette_success_main:i5,dark_palette_success_dark:s5,dark_palette_background_default:a5,dark_palette_background_paper:l5,dark_palette_background_appBar:c5,dark_palette_divider_default:u5,common_palette_grey_50:d5,common_palette_grey_100:f5,common_palette_grey_200:p5,common_palette_grey_300:h5,common_palette_grey_400:m5,common_palette_grey_500:g5,common_palette_grey_600:y5,common_palette_grey_700:b5,common_palette_grey_800:v5,common_palette_grey_900:x5,common_palette_grey_A100:S5,common_palette_grey_A200:C5,common_palette_grey_A400:w5,common_palette_grey_A700:T5,common_palette_common_white:E5,common_palette_common_black:k5,shadows_1:O5,shadows_2:M5,shadows_3:_5,shadows_4:R5,shadows_5:A5,shadows_6:D5,shadows_7:I5,shadows_8:P5,shadows_9:N5,shadows_10:$5,shadows_11:L5,shadows_12:j5,shadows_13:B5,shadows_14:F5,shadows_15:V5,shadows_16:z5,shadows_17:H5,shadows_18:W5,shadows_19:U5,shadows_20:q5,shadows_21:K5,shadows_22:Y5,shadows_23:G5,shadows_24:J5,shape_borderRadius:X5,shape_borderWidth:Z5,shape_buttonBorderWidth:Q5,typography_fontFamily_default:e3,typography_h1_fontFamily:t3,typography_h1_fontWeight:n3,typography_h1_fontSize:r3,typography_h1_lineHeight:o3,typography_h1_letterSpacing:i3,typography_h2_fontFamily:s3,typography_h2_fontWeight:a3,typography_h2_fontSize:l3,typography_h2_lineHeight:c3,typography_h2_letterSpacing:u3,typography_h3_fontFamily:d3,typography_h3_fontWeight:f3,typography_h3_fontSize:p3,typography_h3_lineHeight:h3,typography_h3_letterSpacing:m3,typography_h4_fontFamily:g3,typography_h4_fontWeight:y3,typography_h4_fontSize:b3,typography_h4_lineHeight:v3,typography_h4_letterSpacing:x3,typography_h5_fontFamily:S3,typography_h5_fontWeight:C3,typography_h5_fontSize:w3,typography_h5_lineHeight:T3,typography_h5_letterSpacing:E3,typography_h6_fontFamily:k3,typography_h6_fontWeight:O3,typography_h6_fontSize:M3,typography_h6_lineHeight:_3,typography_h6_letterSpacing:R3,typography_subtitle1_fontFamily:A3,typography_subtitle1_fontWeight:D3,typography_subtitle1_fontSize:I3,typography_subtitle1_lineHeight:P3,typography_subtitle1_letterSpacing:N3,typography_subtitle2_fontFamily:$3,typography_subtitle2_fontWeight:L3,typography_subtitle2_fontSize:j3,typography_subtitle2_lineHeight:B3,typography_subtitle2_letterSpacing:F3,typography_body1_fontFamily:V3,typography_body1_fontWeight:z3,typography_body1_fontSize:H3,typography_body1_lineHeight:W3,typography_body1_letterSpacing:U3,typography_body2_fontFamily:q3,typography_body2_fontWeight:K3,typography_body2_fontSize:Y3,typography_body2_lineHeight:G3,typography_body2_letterSpacing:J3,typography_button_fontFamily:X3,typography_button_fontWeight:Z3,typography_button_fontSize:Q3,typography_button_lineHeight:eV,typography_button_letterSpacing:tV,typography_caption_fontFamily:nV,typography_caption_fontWeight:rV,typography_caption_fontSize:oV,typography_caption_lineHeight:iV,typography_caption_letterSpacing:sV,typography_overline_fontFamily:aV,typography_overline_fontWeight:lV,typography_overline_fontSize:cV,typography_overline_lineHeight:uV,typography_overline_letterSpacing:dV},Rn={breakpoints:{values:{xs:parseInt(de.breakpoints_xs),sm:parseInt(de.breakpoints_sm),md:parseInt(de.breakpoints_md),lg:parseInt(de.breakpoints_lg),xl:parseInt(de.breakpoints_xl)}},shadows:["none",de.shadows_1,de.shadows_2,de.shadows_3,de.shadows_4,de.shadows_5,de.shadows_6,de.shadows_7,de.shadows_8,de.shadows_9,de.shadows_10,de.shadows_11,de.shadows_12,de.shadows_13,de.shadows_14,de.shadows_15,de.shadows_16,de.shadows_17,de.shadows_18,de.shadows_19,de.shadows_20,de.shadows_21,de.shadows_22,de.shadows_23,de.shadows_24],shape:{borderRadius:parseInt(de.shape_borderRadius)},typography:{fontFamily:de.typography_fontFamily_default,h1:{fontFamily:de.typography_h1_fontFamily,fontWeight:parseInt(de.typography_h1_fontWeight),fontSize:de.typography_h1_fontSize,lineHeight:de.typography_h1_lineHeight,letterSpacing:de.typography_h1_letterSpacing},h2:{fontFamily:de.typography_h2_fontFamily,fontWeight:parseInt(de.typography_h2_fontWeight),fontSize:de.typography_h2_fontSize,lineHeight:de.typography_h2_lineHeight,letterSpacing:de.typography_h2_letterSpacing},h3:{fontFamily:de.typography_h3_fontFamily,fontWeight:parseInt(de.typography_h3_fontWeight),fontSize:de.typography_h3_fontSize,lineHeight:de.typography_h3_lineHeight,letterSpacing:de.typography_h3_letterSpacing},h4:{fontFamily:de.typography_h4_fontFamily,fontWeight:parseInt(de.typography_h4_fontWeight),fontSize:de.typography_h4_fontSize,lineHeight:de.typography_h4_lineHeight,letterSpacing:de.typography_h4_letterSpacing},h5:{fontFamily:de.typography_h5_fontFamily,fontWeight:parseInt(de.typography_h5_fontWeight),fontSize:de.typography_h5_fontSize,lineHeight:de.typography_h5_lineHeight,letterSpacing:de.typography_h5_letterSpacing},h6:{fontFamily:de.typography_h6_fontFamily,fontWeight:parseInt(de.typography_h6_fontWeight),fontSize:de.typography_h6_fontSize,lineHeight:de.typography_h6_lineHeight,letterSpacing:de.typography_h6_letterSpacing},subtitle1:{fontFamily:de.typography_subtitle1_fontFamily,fontWeight:parseInt(de.typography_subtitle1_fontWeight),fontSize:de.typography_subtitle1_fontSize,lineHeight:de.typography_subtitle1_lineHeight,letterSpacing:de.typography_subtitle1_letterSpacing},subtitle2:{fontFamily:de.typography_subtitle2_fontFamily,fontWeight:parseInt(de.typography_subtitle2_fontWeight),fontSize:de.typography_subtitle2_fontSize,lineHeight:de.typography_subtitle2_lineHeight,letterSpacing:de.typography_subtitle2_letterSpacing},body1:{fontFamily:de.typography_body1_fontFamily,fontWeight:parseInt(de.typography_body1_fontWeight),fontSize:de.typography_body1_fontSize,lineHeight:de.typography_body1_lineHeight,letterSpacing:de.typography_body1_letterSpacing},body2:{fontFamily:de.typography_body2_fontFamily,fontWeight:parseInt(de.typography_body2_fontWeight),fontSize:de.typography_body2_fontSize,lineHeight:de.typography_body2_lineHeight,letterSpacing:de.typography_body2_letterSpacing},button:{fontFamily:de.typography_button_fontFamily,fontWeight:parseInt(de.typography_button_fontWeight),fontSize:de.typography_button_fontSize,lineHeight:de.typography_button_lineHeight,letterSpacing:de.typography_button_letterSpacing,textTransform:"none"},caption:{fontFamily:de.typography_caption_fontFamily,fontWeight:parseInt(de.typography_caption_fontWeight),fontSize:de.typography_caption_fontSize,lineHeight:de.typography_caption_lineHeight,letterSpacing:de.typography_caption_letterSpacing},overline:{fontFamily:de.typography_overline_fontFamily,fontWeight:parseInt(de.typography_overline_fontWeight),fontSize:de.typography_overline_fontSize,lineHeight:de.typography_overline_lineHeight,letterSpacing:de.typography_overline_letterSpacing}},palette:{grey:{50:de.common_palette_grey_50,100:de.common_palette_grey_100,200:de.common_palette_grey_200,300:de.common_palette_grey_300,400:de.common_palette_grey_400,500:de.common_palette_grey_500,600:de.common_palette_grey_600,700:de.common_palette_grey_700,800:de.common_palette_grey_800,900:de.common_palette_grey_900,A100:de.common_palette_grey_A100,A200:de.common_palette_grey_A200,A400:de.common_palette_grey_A400,A700:de.common_palette_grey_A700},common:{black:de.common_palette_common_black,white:de.common_palette_common_white},white:de.common_palette_common_white},components:{MuiCard:{defaultProps:{elevation:0},styleOverrides:{root:{borderStyle:"solid",borderWidth:de.shape_borderWidth}}},MuiAppBar:{styleOverrides:{root:{backgroundImage:"none"}}},MuiButton:{styleOverrides:{outlined:{borderWidth:de.shape_buttonBorderWidth,":hover":{borderWidth:de.shape_buttonBorderWidth}}}},MuiTable:{styleOverrides:{root:({ownerState:t})=>({...t.size==="x-small"&&{"& .MuiTableCell-root":{padding:"0px 16px"}}})}},MuiTooltip:{styleOverrides:{tooltip:{fontSize:".9rem"}}}}};var Dk,Ik,Pk,Nk,$k,Lk,jk,Bk,Fk,Vk,zk,Hk;const fV=z.createTheme({...Rn,palette:{...Rn.palette,mode:"light",primary:{light:de.light_palette_primary_light,main:de.light_palette_primary_main,dark:de.light_palette_primary_dark},secondary:{light:de.light_palette_secondary_light,main:de.light_palette_secondary_main,dark:de.light_palette_secondary_dark},text:{primary:de.light_palette_text_primary,secondary:de.light_palette_text_secondary,disabled:de.light_palette_text_disabled},background:{default:de.light_palette_background_default,paper:de.light_palette_background_paper,appBar:de.light_palette_background_appBar},error:{light:de.light_palette_error_light,main:de.light_palette_error_main,dark:de.light_palette_error_dark},success:{light:de.light_palette_success_light,main:de.light_palette_success_main,dark:de.light_palette_success_dark},info:{light:de.light_palette_info_light,main:de.light_palette_info_main,dark:de.light_palette_info_dark},warning:{light:de.light_palette_warning_light,main:de.light_palette_warning_main,dark:de.light_palette_warning_dark}},components:{...Rn.components,MuiAppBar:{...(Dk=Rn.components)==null?void 0:Dk.MuiAppBar,styleOverrides:{...(Pk=(Ik=Rn.components)==null?void 0:Ik.MuiAppBar)==null?void 0:Pk.styleOverrides,root:{...(Lk=($k=(Nk=Rn.components)==null?void 0:Nk.MuiAppBar)==null?void 0:$k.styleOverrides)==null?void 0:Lk.root,backgroundColor:de.light_palette_background_appBar}}},MuiCard:{...(jk=Rn.components)==null?void 0:jk.MuiCard,styleOverrides:{...(Fk=(Bk=Rn.components)==null?void 0:Bk.MuiCard)==null?void 0:Fk.styleOverrides,root:{...(Hk=(zk=(Vk=Rn.components)==null?void 0:Vk.MuiCard)==null?void 0:zk.styleOverrides)==null?void 0:Hk.root,borderColor:de.light_palette_divider_default}}}}});var Wk,Uk,qk,Kk,Yk,Gk,Jk,Xk,Zk,Qk,eO,tO;const pV=z.createTheme({...Rn,palette:{...Rn.palette,mode:"dark",primary:{light:de.dark_palette_primary_light,main:de.dark_palette_primary_main,dark:de.dark_palette_primary_dark},secondary:{light:de.dark_palette_secondary_light,main:de.dark_palette_secondary_main,dark:de.dark_palette_secondary_dark},text:{primary:de.dark_palette_text_primary,secondary:de.dark_palette_text_secondary,disabled:de.dark_palette_text_disabled},background:{default:de.dark_palette_background_default,paper:de.dark_palette_background_paper,appBar:de.dark_palette_background_appBar},error:{light:de.dark_palette_error_light,main:de.dark_palette_error_main,dark:de.dark_palette_error_dark},success:{light:de.dark_palette_success_light,main:de.dark_palette_success_main,dark:de.dark_palette_success_dark},info:{light:de.dark_palette_info_light,main:de.dark_palette_info_main,dark:de.dark_palette_info_dark},warning:{light:de.dark_palette_warning_light,main:de.dark_palette_warning_main,dark:de.dark_palette_warning_dark}},components:{...Rn.components,MuiAppBar:{...(Wk=Rn.components)==null?void 0:Wk.MuiAppBar,styleOverrides:{...(qk=(Uk=Rn.components)==null?void 0:Uk.MuiAppBar)==null?void 0:qk.styleOverrides,root:{...(Gk=(Yk=(Kk=Rn.components)==null?void 0:Kk.MuiAppBar)==null?void 0:Yk.styleOverrides)==null?void 0:Gk.root,backgroundColor:de.dark_palette_background_appBar,backgroundImage:"none"}}},MuiCard:{...(Jk=Rn.components)==null?void 0:Jk.MuiCard,styleOverrides:{...(Zk=(Xk=Rn.components)==null?void 0:Xk.MuiCard)==null?void 0:Zk.styleOverrides,root:{...(tO=(eO=(Qk=Rn.components)==null?void 0:Qk.MuiCard)==null?void 0:eO.styleOverrides)==null?void 0:tO.root,borderColor:de.dark_palette_divider_default}}}}}),hV=["w","xs","sm","md","lg","xl","alignment","justify","noMP","noGrid","gridClassName","gridStyle"],$S=t=>t>47&&t<58,LS=t=>t>64&&t<123&&(t<91||t>96),mV=(t,e,n,r)=>{let o="",i=0,s=0,a=0,c=0;const u=r.selectionStart;let f=!1;if(t.length<=e.length){for(let T=0;T<t.length&&T<e.length;T++){for(;i<e.length&&e[i]!=="X"&&e[i]!=="9";)a++,s++,i++;($S(t.charCodeAt(T))&&e[i]==="9"||LS(t.charCodeAt(T))&&e[i]==="X")&&(a>0&&(c=a,a=0),o+=t[T],i++)}const p=$S(t.charCodeAt(u-1))?"number":LS(t.charCodeAt(u-1))?"letter":"something else",m=p!=="number"&&e[u-1]==="9",y=p!=="letter"&&e[u-1]==="X";(m||y||p==="something else")&&(f=!0);let g="",x=0;Math.abs(n.length-t.length)<=1&&(s=0);let C=u+s;for(let T=0;T<o.length;T++){for(;x<e.length&&e[x]!=="X"&&e[x]!=="9";)g+=e[x],x++;g+=o[T],x++}t.length<n.length?window.requestAnimationFrame(()=>{r.selectionStart=C,r.selectionEnd=C}):e[C-1]!=="X"&&e[C-1]!=="9"?window.requestAnimationFrame(()=>{r.selectionStart=C+c,r.selectionEnd=C+c}):(f&&(C-=1),window.requestAnimationFrame(()=>{r.selectionStart=C,r.selectionEnd=C}));const E=e.slice(x);return E.indexOf("X")===-1&&E.indexOf("9")===-1&&(g+=E),g}return window.requestAnimationFrame(()=>{r.selectionStart=u-1,r.selectionEnd=u-1}),n};function fr(t,e){const r=Object.keys(t).filter(i=>e.includes(i)),o={...t};for(const i of hV)delete o[i];for(const i of r)delete o[i];return o}const Bn=t=>t.split(/(?=[A-Z])|[.\-_\s]+/).map(n=>n.charAt(0).toUpperCase()+n.slice(1).toLowerCase()).filter(Boolean).join(" ");function gV(t,e,n=!1,r=""){let o="";if(e==null||e.length==0)return r;if(n){let i="";const s=e.toString().split(",");let a=0;t.forEach(c=>{s.includes(String(c.value).toString())&&(i+=c.label,a<s.length-1&&(i+=", "),a++)}),o=i}else{const i=t.find(s=>e==s.value);i!=null&&(o=i.label)}return o}function Su(t,e,n){return t.onClick?{onClick:()=>{t.onClick(),t.path&&e(t.path),t.externalLink&&window.open(t.externalLink,"_blank","noopener"),n&&n()}}:t.path?{component:To.Link,to:t.path}:t.externalLink?{href:t.externalLink}:{}}function Li(t,e){return process.env.NODE_ENV==="production"?()=>null:function(...r){return t(...r)||e(...r)}}var ss=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function mr(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Pd={exports:{}},Nt={};/**
1
+ "use strict";require('./index.css');var sF=Object.defineProperty;var aF=(t,e,n)=>e in t?sF(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n;var sc=(t,e,n)=>aF(t,typeof e!="symbol"?e+"":e,n);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const z=require("@mui/material"),b=require("react/jsx-runtime"),Z=require("react"),Ut=require("formik"),To=require("react-router-dom"),lF=require("@emotion/styled"),ti=require("@emotion/react"),Js=require("react-dom");function nO(t){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const n in t)if(n!=="default"){const r=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(e,n,r.get?r:{enumerable:!0,get:()=>t[n]})}}return e.default=t,Object.freeze(e)}const R=nO(Z),cF=nO(Js),uF="0px",dF="600px",fF="960px",pF="1100px",hF="1536px",mF="#4c98d7",gF="#005ea2",yF="#1a4480",bF="#9bb672",vF="#607f35",xF="#3c4a29",SF="rgba(0, 0, 0, 0.8705882353)",CF="rgba(0, 0, 0, 0.6)",wF="rgba(0, 0, 0, 0.3803921569)",TF="#dc5b52",EF="#d83933",kF="#b50909",OF="#ffbe2e",MF="#e5a000",_F="#c2850c",RF="#4c98d7",AF="#005ea2",DF="#1a4480",IF="#9bb672",PF="#607f35",NF="#3c4a29",$F="#f9f9f9",LF="#fff",jF="#252f3e",BF="#c9c9c9",FF="#98cbfb",VF="#4c98d7",zF="#005ea2",HF="#b8d293",WF="#9bb672",UF="#607f35",qF="#fff",KF="rgba(255, 255, 255, 0.7019607843)",YF="rgba(255, 255, 255, 0.5019607843)",GF="#f1928b",JF="#dc5b52",XF="#d83933",ZF="#ffe396",QF="#ffbe2e",e5="#e5a000",t5="#98cbfb",n5="#4c98d7",r5="#005ea2",o5="#b8d293",i5="#9bb672",s5="#607f35",a5="#121212",l5="#1b1b1b",c5="#2f3b4e",u5="#2e2e2e",d5="#f0f0f0",f5="#e6e6e6",p5="#c9c9c9",h5="#adadad",m5="#919191",g5="#757575",y5="#5c5c5c",b5="#454545",v5="#2e2e2e",x5="#1b1b1b",S5="#e6e6e6",C5="#c9c9c9",w5="#919191",T5="#454545",E5="#fff",k5="#000",O5="2px 2px 5px 0px rgba(0, 0, 0, 0.05)",M5="2px 2px 7px 0px rgba(0, 0, 0, 0.075)",_5="2px 3px 7px 0px rgba(0, 0, 0, 0.075), 0px 1px 10px 0px rgba(0, 0, 0, 0.05)",R5="2px 4px 8px 0px rgba(0, 0, 0, 0.075), 0px 1px 12px 0px rgba(0, 0, 0, 0.075)",A5="2px 5px 8px 0px rgba(0, 0, 0, 0.075), 0px 2px 14px 0px rgba(0, 0, 0, 0.1)",D5="2px 6px 10px 0px rgba(0, 0, 0, 0.1), 0px 2px 18px 0px rgba(0, 0, 0, 0.1)",I5="2px 7px 10px 1px rgba(0, 0, 0, 0.1), 0px 2px 16px 1px rgba(0, 0, 0, 0.12)",P5="2px 8px 10px 1px rgba(0, 0, 0, 0.1), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)",N5="2px 9px 12px 1px rgba(0, 0, 0, 0.1), 0px 3px 16px 2px rgba(0, 0, 0, 0.12)",$5="2px 10px 14px 1px rgba(0, 0, 0, 0.12), 0px 4px 18px 3px rgba(0, 0, 0, 0.12)",L5="2px 11px 15px 1px rgba(0, 0, 0, 0.12), 0px 4px 20px 3px rgba(0, 0, 0, 0.12)",j5="2px 12px 17px 2px rgba(0, 0, 0, 0.12), 0px 5px 22px 4px rgba(0, 0, 0, 0.12)",B5="2px 13px 19px 2px rgba(0, 0, 0, 0.12), 0px 5px 24px 4px rgba(0, 0, 0, 0.12)",F5="2px 14px 21px 2px rgba(0, 0, 0, 0.12), 0px 5px 26px 4px rgba(0, 0, 0, 0.12)",V5="2px 15px 22px 2px rgba(0, 0, 0, 0.12), 0px 6px 28px 5px rgba(0, 0, 0, 0.12)",z5="2px 16px 24px 2px rgba(0, 0, 0, 0.12), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)",H5="2px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12)",W5="2px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12)",U5="2px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12)",q5="2px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12)",K5="2px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12)",Y5="2px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12)",G5="2px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12)",J5="2px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12)",X5="3px",Z5="1px",Q5="2px",e3='"source-sans-pro", "helvetica", "arial", sans-serif',t3='"source-sans-pro", "helvetica", "arial", sans-serif',n3="700",r3="2rem",o3="normal",i3="normal",s3='"source-sans-pro", "helvetica", "arial", sans-serif',a3="700",l3="1.75rem",c3="normal",u3="normal",d3='"source-sans-pro", "helvetica", "arial", sans-serif',f3="700",p3="1.5rem",h3="normal",m3="normal",g3='"source-sans-pro", "helvetica", "arial", sans-serif',y3="700",b3="1.35rem",v3="normal",x3="normal",S3='"source-sans-pro", "helvetica", "arial", sans-serif',C3="700",w3="1.25rem",T3="normal",E3="normal",k3='"source-sans-pro", "helvetica", "arial", sans-serif',O3="700",M3="1.1rem",_3="normal",R3="normal",A3='"source-sans-pro", "helvetica", "arial", sans-serif',D3="600",I3="1.25rem",P3="normal",N3="normal",$3='"source-sans-pro", "helvetica", "arial", sans-serif',L3="600",j3="1.125rem",B3="normal",F3="normal",V3='"source-sans-pro", "helvetica", "arial", sans-serif',z3="400",H3="1.125rem",W3="normal",U3="normal",q3='"source-sans-pro", "helvetica", "arial", sans-serif',K3="400",Y3="1rem",G3="normal",J3="normal",X3='"source-sans-pro", "helvetica", "arial", sans-serif',Z3="600",Q3="1rem",eV="normal",tV="normal",nV='"source-sans-pro", "helvetica", "arial", sans-serif',rV="400",oV="0.75rem",iV="normal",sV="normal",aV='"source-sans-pro", "helvetica", "arial", sans-serif',lV="400",cV="0.75rem",uV="normal",dV="normal",de={breakpoints_xs:uF,breakpoints_sm:dF,breakpoints_md:fF,breakpoints_lg:pF,breakpoints_xl:hF,light_palette_primary_light:mF,light_palette_primary_main:gF,light_palette_primary_dark:yF,light_palette_secondary_light:bF,light_palette_secondary_main:vF,light_palette_secondary_dark:xF,light_palette_text_primary:SF,light_palette_text_secondary:CF,light_palette_text_disabled:wF,light_palette_error_light:TF,light_palette_error_main:EF,light_palette_error_dark:kF,light_palette_warning_light:OF,light_palette_warning_main:MF,light_palette_warning_dark:_F,light_palette_info_light:RF,light_palette_info_main:AF,light_palette_info_dark:DF,light_palette_success_light:IF,light_palette_success_main:PF,light_palette_success_dark:NF,light_palette_background_default:$F,light_palette_background_paper:LF,light_palette_background_appBar:jF,light_palette_divider_default:BF,dark_palette_primary_light:FF,dark_palette_primary_main:VF,dark_palette_primary_dark:zF,dark_palette_secondary_light:HF,dark_palette_secondary_main:WF,dark_palette_secondary_dark:UF,dark_palette_text_primary:qF,dark_palette_text_secondary:KF,dark_palette_text_disabled:YF,dark_palette_error_light:GF,dark_palette_error_main:JF,dark_palette_error_dark:XF,dark_palette_warning_light:ZF,dark_palette_warning_main:QF,dark_palette_warning_dark:e5,dark_palette_info_light:t5,dark_palette_info_main:n5,dark_palette_info_dark:r5,dark_palette_success_light:o5,dark_palette_success_main:i5,dark_palette_success_dark:s5,dark_palette_background_default:a5,dark_palette_background_paper:l5,dark_palette_background_appBar:c5,dark_palette_divider_default:u5,common_palette_grey_50:d5,common_palette_grey_100:f5,common_palette_grey_200:p5,common_palette_grey_300:h5,common_palette_grey_400:m5,common_palette_grey_500:g5,common_palette_grey_600:y5,common_palette_grey_700:b5,common_palette_grey_800:v5,common_palette_grey_900:x5,common_palette_grey_A100:S5,common_palette_grey_A200:C5,common_palette_grey_A400:w5,common_palette_grey_A700:T5,common_palette_common_white:E5,common_palette_common_black:k5,shadows_1:O5,shadows_2:M5,shadows_3:_5,shadows_4:R5,shadows_5:A5,shadows_6:D5,shadows_7:I5,shadows_8:P5,shadows_9:N5,shadows_10:$5,shadows_11:L5,shadows_12:j5,shadows_13:B5,shadows_14:F5,shadows_15:V5,shadows_16:z5,shadows_17:H5,shadows_18:W5,shadows_19:U5,shadows_20:q5,shadows_21:K5,shadows_22:Y5,shadows_23:G5,shadows_24:J5,shape_borderRadius:X5,shape_borderWidth:Z5,shape_buttonBorderWidth:Q5,typography_fontFamily_default:e3,typography_h1_fontFamily:t3,typography_h1_fontWeight:n3,typography_h1_fontSize:r3,typography_h1_lineHeight:o3,typography_h1_letterSpacing:i3,typography_h2_fontFamily:s3,typography_h2_fontWeight:a3,typography_h2_fontSize:l3,typography_h2_lineHeight:c3,typography_h2_letterSpacing:u3,typography_h3_fontFamily:d3,typography_h3_fontWeight:f3,typography_h3_fontSize:p3,typography_h3_lineHeight:h3,typography_h3_letterSpacing:m3,typography_h4_fontFamily:g3,typography_h4_fontWeight:y3,typography_h4_fontSize:b3,typography_h4_lineHeight:v3,typography_h4_letterSpacing:x3,typography_h5_fontFamily:S3,typography_h5_fontWeight:C3,typography_h5_fontSize:w3,typography_h5_lineHeight:T3,typography_h5_letterSpacing:E3,typography_h6_fontFamily:k3,typography_h6_fontWeight:O3,typography_h6_fontSize:M3,typography_h6_lineHeight:_3,typography_h6_letterSpacing:R3,typography_subtitle1_fontFamily:A3,typography_subtitle1_fontWeight:D3,typography_subtitle1_fontSize:I3,typography_subtitle1_lineHeight:P3,typography_subtitle1_letterSpacing:N3,typography_subtitle2_fontFamily:$3,typography_subtitle2_fontWeight:L3,typography_subtitle2_fontSize:j3,typography_subtitle2_lineHeight:B3,typography_subtitle2_letterSpacing:F3,typography_body1_fontFamily:V3,typography_body1_fontWeight:z3,typography_body1_fontSize:H3,typography_body1_lineHeight:W3,typography_body1_letterSpacing:U3,typography_body2_fontFamily:q3,typography_body2_fontWeight:K3,typography_body2_fontSize:Y3,typography_body2_lineHeight:G3,typography_body2_letterSpacing:J3,typography_button_fontFamily:X3,typography_button_fontWeight:Z3,typography_button_fontSize:Q3,typography_button_lineHeight:eV,typography_button_letterSpacing:tV,typography_caption_fontFamily:nV,typography_caption_fontWeight:rV,typography_caption_fontSize:oV,typography_caption_lineHeight:iV,typography_caption_letterSpacing:sV,typography_overline_fontFamily:aV,typography_overline_fontWeight:lV,typography_overline_fontSize:cV,typography_overline_lineHeight:uV,typography_overline_letterSpacing:dV},Rn={breakpoints:{values:{xs:parseInt(de.breakpoints_xs),sm:parseInt(de.breakpoints_sm),md:parseInt(de.breakpoints_md),lg:parseInt(de.breakpoints_lg),xl:parseInt(de.breakpoints_xl)}},shadows:["none",de.shadows_1,de.shadows_2,de.shadows_3,de.shadows_4,de.shadows_5,de.shadows_6,de.shadows_7,de.shadows_8,de.shadows_9,de.shadows_10,de.shadows_11,de.shadows_12,de.shadows_13,de.shadows_14,de.shadows_15,de.shadows_16,de.shadows_17,de.shadows_18,de.shadows_19,de.shadows_20,de.shadows_21,de.shadows_22,de.shadows_23,de.shadows_24],shape:{borderRadius:parseInt(de.shape_borderRadius)},typography:{fontFamily:de.typography_fontFamily_default,h1:{fontFamily:de.typography_h1_fontFamily,fontWeight:parseInt(de.typography_h1_fontWeight),fontSize:de.typography_h1_fontSize,lineHeight:de.typography_h1_lineHeight,letterSpacing:de.typography_h1_letterSpacing},h2:{fontFamily:de.typography_h2_fontFamily,fontWeight:parseInt(de.typography_h2_fontWeight),fontSize:de.typography_h2_fontSize,lineHeight:de.typography_h2_lineHeight,letterSpacing:de.typography_h2_letterSpacing},h3:{fontFamily:de.typography_h3_fontFamily,fontWeight:parseInt(de.typography_h3_fontWeight),fontSize:de.typography_h3_fontSize,lineHeight:de.typography_h3_lineHeight,letterSpacing:de.typography_h3_letterSpacing},h4:{fontFamily:de.typography_h4_fontFamily,fontWeight:parseInt(de.typography_h4_fontWeight),fontSize:de.typography_h4_fontSize,lineHeight:de.typography_h4_lineHeight,letterSpacing:de.typography_h4_letterSpacing},h5:{fontFamily:de.typography_h5_fontFamily,fontWeight:parseInt(de.typography_h5_fontWeight),fontSize:de.typography_h5_fontSize,lineHeight:de.typography_h5_lineHeight,letterSpacing:de.typography_h5_letterSpacing},h6:{fontFamily:de.typography_h6_fontFamily,fontWeight:parseInt(de.typography_h6_fontWeight),fontSize:de.typography_h6_fontSize,lineHeight:de.typography_h6_lineHeight,letterSpacing:de.typography_h6_letterSpacing},subtitle1:{fontFamily:de.typography_subtitle1_fontFamily,fontWeight:parseInt(de.typography_subtitle1_fontWeight),fontSize:de.typography_subtitle1_fontSize,lineHeight:de.typography_subtitle1_lineHeight,letterSpacing:de.typography_subtitle1_letterSpacing},subtitle2:{fontFamily:de.typography_subtitle2_fontFamily,fontWeight:parseInt(de.typography_subtitle2_fontWeight),fontSize:de.typography_subtitle2_fontSize,lineHeight:de.typography_subtitle2_lineHeight,letterSpacing:de.typography_subtitle2_letterSpacing},body1:{fontFamily:de.typography_body1_fontFamily,fontWeight:parseInt(de.typography_body1_fontWeight),fontSize:de.typography_body1_fontSize,lineHeight:de.typography_body1_lineHeight,letterSpacing:de.typography_body1_letterSpacing},body2:{fontFamily:de.typography_body2_fontFamily,fontWeight:parseInt(de.typography_body2_fontWeight),fontSize:de.typography_body2_fontSize,lineHeight:de.typography_body2_lineHeight,letterSpacing:de.typography_body2_letterSpacing},button:{fontFamily:de.typography_button_fontFamily,fontWeight:parseInt(de.typography_button_fontWeight),fontSize:de.typography_button_fontSize,lineHeight:de.typography_button_lineHeight,letterSpacing:de.typography_button_letterSpacing,textTransform:"none"},caption:{fontFamily:de.typography_caption_fontFamily,fontWeight:parseInt(de.typography_caption_fontWeight),fontSize:de.typography_caption_fontSize,lineHeight:de.typography_caption_lineHeight,letterSpacing:de.typography_caption_letterSpacing},overline:{fontFamily:de.typography_overline_fontFamily,fontWeight:parseInt(de.typography_overline_fontWeight),fontSize:de.typography_overline_fontSize,lineHeight:de.typography_overline_lineHeight,letterSpacing:de.typography_overline_letterSpacing}},palette:{grey:{50:de.common_palette_grey_50,100:de.common_palette_grey_100,200:de.common_palette_grey_200,300:de.common_palette_grey_300,400:de.common_palette_grey_400,500:de.common_palette_grey_500,600:de.common_palette_grey_600,700:de.common_palette_grey_700,800:de.common_palette_grey_800,900:de.common_palette_grey_900,A100:de.common_palette_grey_A100,A200:de.common_palette_grey_A200,A400:de.common_palette_grey_A400,A700:de.common_palette_grey_A700},common:{black:de.common_palette_common_black,white:de.common_palette_common_white},white:de.common_palette_common_white},components:{MuiCard:{defaultProps:{elevation:0},styleOverrides:{root:{borderStyle:"solid",borderWidth:de.shape_borderWidth}}},MuiAppBar:{styleOverrides:{root:{backgroundImage:"none"}}},MuiButton:{styleOverrides:{outlined:{borderWidth:de.shape_buttonBorderWidth,":hover":{borderWidth:de.shape_buttonBorderWidth}}}},MuiTable:{styleOverrides:{root:({ownerState:t})=>({...t.size==="x-small"&&{"& .MuiTableCell-root":{padding:"0px 16px"}}})}},MuiTooltip:{styleOverrides:{tooltip:{fontSize:".9rem"}}}}};var Dk,Ik,Pk,Nk,$k,Lk,jk,Bk,Fk,Vk,zk,Hk;const fV=z.createTheme({...Rn,palette:{...Rn.palette,mode:"light",primary:{light:de.light_palette_primary_light,main:de.light_palette_primary_main,dark:de.light_palette_primary_dark},secondary:{light:de.light_palette_secondary_light,main:de.light_palette_secondary_main,dark:de.light_palette_secondary_dark},text:{primary:de.light_palette_text_primary,secondary:de.light_palette_text_secondary,disabled:de.light_palette_text_disabled},background:{default:de.light_palette_background_default,paper:de.light_palette_background_paper,appBar:de.light_palette_background_appBar},error:{light:de.light_palette_error_light,main:de.light_palette_error_main,dark:de.light_palette_error_dark},success:{light:de.light_palette_success_light,main:de.light_palette_success_main,dark:de.light_palette_success_dark},info:{light:de.light_palette_info_light,main:de.light_palette_info_main,dark:de.light_palette_info_dark},warning:{light:de.light_palette_warning_light,main:de.light_palette_warning_main,dark:de.light_palette_warning_dark}},components:{...Rn.components,MuiAppBar:{...(Dk=Rn.components)==null?void 0:Dk.MuiAppBar,styleOverrides:{...(Pk=(Ik=Rn.components)==null?void 0:Ik.MuiAppBar)==null?void 0:Pk.styleOverrides,root:{...(Lk=($k=(Nk=Rn.components)==null?void 0:Nk.MuiAppBar)==null?void 0:$k.styleOverrides)==null?void 0:Lk.root,backgroundColor:de.light_palette_background_appBar}}},MuiCard:{...(jk=Rn.components)==null?void 0:jk.MuiCard,styleOverrides:{...(Fk=(Bk=Rn.components)==null?void 0:Bk.MuiCard)==null?void 0:Fk.styleOverrides,root:{...(Hk=(zk=(Vk=Rn.components)==null?void 0:Vk.MuiCard)==null?void 0:zk.styleOverrides)==null?void 0:Hk.root,borderColor:de.light_palette_divider_default}}}}});var Wk,Uk,qk,Kk,Yk,Gk,Jk,Xk,Zk,Qk,eO,tO;const pV=z.createTheme({...Rn,palette:{...Rn.palette,mode:"dark",primary:{light:de.dark_palette_primary_light,main:de.dark_palette_primary_main,dark:de.dark_palette_primary_dark},secondary:{light:de.dark_palette_secondary_light,main:de.dark_palette_secondary_main,dark:de.dark_palette_secondary_dark},text:{primary:de.dark_palette_text_primary,secondary:de.dark_palette_text_secondary,disabled:de.dark_palette_text_disabled},background:{default:de.dark_palette_background_default,paper:de.dark_palette_background_paper,appBar:de.dark_palette_background_appBar},error:{light:de.dark_palette_error_light,main:de.dark_palette_error_main,dark:de.dark_palette_error_dark},success:{light:de.dark_palette_success_light,main:de.dark_palette_success_main,dark:de.dark_palette_success_dark},info:{light:de.dark_palette_info_light,main:de.dark_palette_info_main,dark:de.dark_palette_info_dark},warning:{light:de.dark_palette_warning_light,main:de.dark_palette_warning_main,dark:de.dark_palette_warning_dark}},components:{...Rn.components,MuiAppBar:{...(Wk=Rn.components)==null?void 0:Wk.MuiAppBar,styleOverrides:{...(qk=(Uk=Rn.components)==null?void 0:Uk.MuiAppBar)==null?void 0:qk.styleOverrides,root:{...(Gk=(Yk=(Kk=Rn.components)==null?void 0:Kk.MuiAppBar)==null?void 0:Yk.styleOverrides)==null?void 0:Gk.root,backgroundColor:de.dark_palette_background_appBar,backgroundImage:"none"}}},MuiCard:{...(Jk=Rn.components)==null?void 0:Jk.MuiCard,styleOverrides:{...(Zk=(Xk=Rn.components)==null?void 0:Xk.MuiCard)==null?void 0:Zk.styleOverrides,root:{...(tO=(eO=(Qk=Rn.components)==null?void 0:Qk.MuiCard)==null?void 0:eO.styleOverrides)==null?void 0:tO.root,borderColor:de.dark_palette_divider_default}}}}}),hV=["w","xs","sm","md","lg","xl","alignment","justify","noMP","noGrid","gridClassName","gridStyle"],$S=t=>t>47&&t<58,LS=t=>t>64&&t<123&&(t<91||t>96),mV=(t,e,n,r)=>{let o="",i=0,s=0,a=0,c=0;const u=r.selectionStart;let f=!1;if(t.length<=e.length){for(let T=0;T<t.length&&T<e.length;T++){for(;i<e.length&&e[i]!=="X"&&e[i]!=="9";)a++,s++,i++;($S(t.charCodeAt(T))&&e[i]==="9"||LS(t.charCodeAt(T))&&e[i]==="X")&&(a>0&&(c=a,a=0),o+=t[T],i++)}const p=$S(t.charCodeAt(u-1))?"number":LS(t.charCodeAt(u-1))?"letter":"something else",m=p!=="number"&&e[u-1]==="9",y=p!=="letter"&&e[u-1]==="X";(m||y||p==="something else")&&(f=!0);let g="",x=0;Math.abs(n.length-t.length)<=1&&(s=0);let C=u+s;for(let T=0;T<o.length;T++){for(;x<e.length&&e[x]!=="X"&&e[x]!=="9";)g+=e[x],x++;g+=o[T],x++}t.length<n.length?window.requestAnimationFrame(()=>{r.selectionStart=C,r.selectionEnd=C}):e[C-1]!=="X"&&e[C-1]!=="9"?window.requestAnimationFrame(()=>{r.selectionStart=C+c,r.selectionEnd=C+c}):(f&&(C-=1),window.requestAnimationFrame(()=>{r.selectionStart=C,r.selectionEnd=C}));const E=e.slice(x);return E.indexOf("X")===-1&&E.indexOf("9")===-1&&(g+=E),g}return window.requestAnimationFrame(()=>{r.selectionStart=u-1,r.selectionEnd=u-1}),n};function fr(t,e){const r=Object.keys(t).filter(i=>e.includes(i)),o={...t};for(const i of hV)delete o[i];for(const i of r)delete o[i];return o}const Bn=t=>t.split(/(?=[A-Z])|[.\-_\s]+/).map(n=>n.charAt(0).toUpperCase()+n.slice(1).toLowerCase()).filter(Boolean).join(" ");function gV(t,e,n=!1,r=""){let o="";if(e==null||e.length==0)return r;if(n){let i="";const s=e.toString().split(",");let a=0;t.forEach(c=>{s.includes(String(c.value).toString())&&(i+=c.label,a<s.length-1&&(i+=", "),a++)}),o=i}else{const i=t.find(s=>e==s.value);i!=null&&(o=i.label)}return o}function Su(t,e,n){return t.onClick?{onClick:()=>{t.onClick(),t.openInNewTab&&window.open(t.externalUrl??t.path,"_blank","noopener"),t.path&&!t.openInNewTab&&e(t.path),n&&n()}}:t.path&&!t.openInNewTab?{component:To.Link,to:t.path}:t.externalUrl||t.path?{component:"a",href:t.externalUrl??t.path,target:"_blank",rel:"noopener noreferrer"}:{}}function Li(t,e){return process.env.NODE_ENV==="production"?()=>null:function(...r){return t(...r)||e(...r)}}var ss=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function mr(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Pd={exports:{}},Nt={};/**
2
2
  * @license React
3
3
  * react-is.production.js
4
4
  *
package/dist/index.es.js CHANGED
@@ -604,13 +604,16 @@ function $4(t, e, n = !1, r = "") {
604
604
  function zu(t, e, n) {
605
605
  return t.onClick ? {
606
606
  onClick: () => {
607
- t.onClick(), t.path && e(t.path), t.externalLink && window.open(t.externalLink, "_blank", "noopener"), n && n();
607
+ t.onClick(), t.openInNewTab && window.open(t.externalUrl ?? t.path, "_blank", "noopener"), t.path && !t.openInNewTab && e(t.path), n && n();
608
608
  }
609
- } : t.path ? {
609
+ } : t.path && !t.openInNewTab ? {
610
610
  component: ZO,
611
611
  to: t.path
612
- } : t.externalLink ? {
613
- href: t.externalLink
612
+ } : t.externalUrl || t.path ? {
613
+ component: "a",
614
+ href: t.externalUrl ?? t.path,
615
+ target: "_blank",
616
+ rel: "noopener noreferrer"
614
617
  } : {};
615
618
  }
616
619
  function Ki(t, e) {
package/dist/index.umd.js CHANGED
@@ -1,5 +1,5 @@
1
1
  (function(Pe,V){typeof exports=="object"&&typeof module<"u"?V(exports,require("@mui/material"),require("react/jsx-runtime"),require("react"),require("formik"),require("react-router-dom"),require("@emotion/styled"),require("@emotion/react"),require("react-dom")):typeof define=="function"&&define.amd?define(["exports","@mui/material","react/jsx-runtime","react","formik","react-router-dom","@emotion/styled","@emotion/react","react-dom"],V):(Pe=typeof globalThis<"u"?globalThis:Pe||self,V(Pe["mui-bueno-v2"]={},Pe.MaterialUI,Pe["react/jsx-runtime"],Pe.React,Pe.Formik,Pe.ReactRouterDom,Pe.EmotionStyled,Pe.EmotionReact,Pe.ReactDom))})(this,(function(Pe,V,b,Z,jt,bo,FD,Po,Ms){"use strict";var Sae=Object.defineProperty;var wae=(Pe,V,b)=>V in Pe?Sae(Pe,V,{enumerable:!0,configurable:!0,writable:!0,value:b}):Pe[V]=b;var qu=(Pe,V,b)=>wae(Pe,typeof V!="symbol"?V+"":V,b);var z2,V2,H2,W2,j2,U2,q2,K2,Y2,G2,J2,X2,Z2,Q2,eA,tA,nA,rA,oA,iA,sA,aA,lA,cA;var d1=document.createElement("style");d1.textContent=`.sort-icon-asc{-moz-transform:scale(1,-1);-o-transform:scale(1,-1);-webkit-transform:scale(1,-1);transform:scaleY(-1)}.loading-page{width:100%;height:80%;display:flex;flex-direction:column;align-items:center;justify-content:center}.loading-page .text-content{display:flex;flex-direction:column}.citation-link,.selected-citation-link{vertical-align:super;font-size:smaller;padding:0 4px}.selected-citation-link{background-color:#e6e6e6}.citation-link:hover,.selected-citation-link:hover{cursor:pointer}.MuiTiptap-ControlledBubbleMenu-root{z-index:1300!important}.citation-tooltip .MuiTypography-subtitle2{font-size:.9rem}.citation-tooltip .citation-tooltip-divider{margin:6px 0;background-color:#adadad}
2
- /*$vite$:1*/`,document.head.appendChild(d1);function p1(t){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const n in t)if(n!=="default"){const r=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(e,n,r.get?r:{enumerable:!0,get:()=>t[n]})}}return e.default=t,Object.freeze(e)}const M=p1(Z),RD=p1(Ms),de={breakpoints_xs:"0px",breakpoints_sm:"600px",breakpoints_md:"960px",breakpoints_lg:"1100px",breakpoints_xl:"1536px",light_palette_primary_light:"#4c98d7",light_palette_primary_main:"#005ea2",light_palette_primary_dark:"#1a4480",light_palette_secondary_light:"#9bb672",light_palette_secondary_main:"#607f35",light_palette_secondary_dark:"#3c4a29",light_palette_text_primary:"rgba(0, 0, 0, 0.8705882353)",light_palette_text_secondary:"rgba(0, 0, 0, 0.6)",light_palette_text_disabled:"rgba(0, 0, 0, 0.3803921569)",light_palette_error_light:"#dc5b52",light_palette_error_main:"#d83933",light_palette_error_dark:"#b50909",light_palette_warning_light:"#ffbe2e",light_palette_warning_main:"#e5a000",light_palette_warning_dark:"#c2850c",light_palette_info_light:"#4c98d7",light_palette_info_main:"#005ea2",light_palette_info_dark:"#1a4480",light_palette_success_light:"#9bb672",light_palette_success_main:"#607f35",light_palette_success_dark:"#3c4a29",light_palette_background_default:"#f9f9f9",light_palette_background_paper:"#fff",light_palette_background_appBar:"#252f3e",light_palette_divider_default:"#c9c9c9",dark_palette_primary_light:"#98cbfb",dark_palette_primary_main:"#4c98d7",dark_palette_primary_dark:"#005ea2",dark_palette_secondary_light:"#b8d293",dark_palette_secondary_main:"#9bb672",dark_palette_secondary_dark:"#607f35",dark_palette_text_primary:"#fff",dark_palette_text_secondary:"rgba(255, 255, 255, 0.7019607843)",dark_palette_text_disabled:"rgba(255, 255, 255, 0.5019607843)",dark_palette_error_light:"#f1928b",dark_palette_error_main:"#dc5b52",dark_palette_error_dark:"#d83933",dark_palette_warning_light:"#ffe396",dark_palette_warning_main:"#ffbe2e",dark_palette_warning_dark:"#e5a000",dark_palette_info_light:"#98cbfb",dark_palette_info_main:"#4c98d7",dark_palette_info_dark:"#005ea2",dark_palette_success_light:"#b8d293",dark_palette_success_main:"#9bb672",dark_palette_success_dark:"#607f35",dark_palette_background_default:"#121212",dark_palette_background_paper:"#1b1b1b",dark_palette_background_appBar:"#2f3b4e",dark_palette_divider_default:"#2e2e2e",common_palette_grey_50:"#f0f0f0",common_palette_grey_100:"#e6e6e6",common_palette_grey_200:"#c9c9c9",common_palette_grey_300:"#adadad",common_palette_grey_400:"#919191",common_palette_grey_500:"#757575",common_palette_grey_600:"#5c5c5c",common_palette_grey_700:"#454545",common_palette_grey_800:"#2e2e2e",common_palette_grey_900:"#1b1b1b",common_palette_grey_A100:"#e6e6e6",common_palette_grey_A200:"#c9c9c9",common_palette_grey_A400:"#919191",common_palette_grey_A700:"#454545",common_palette_common_white:"#fff",common_palette_common_black:"#000",shadows_1:"2px 2px 5px 0px rgba(0, 0, 0, 0.05)",shadows_2:"2px 2px 7px 0px rgba(0, 0, 0, 0.075)",shadows_3:"2px 3px 7px 0px rgba(0, 0, 0, 0.075), 0px 1px 10px 0px rgba(0, 0, 0, 0.05)",shadows_4:"2px 4px 8px 0px rgba(0, 0, 0, 0.075), 0px 1px 12px 0px rgba(0, 0, 0, 0.075)",shadows_5:"2px 5px 8px 0px rgba(0, 0, 0, 0.075), 0px 2px 14px 0px rgba(0, 0, 0, 0.1)",shadows_6:"2px 6px 10px 0px rgba(0, 0, 0, 0.1), 0px 2px 18px 0px rgba(0, 0, 0, 0.1)",shadows_7:"2px 7px 10px 1px rgba(0, 0, 0, 0.1), 0px 2px 16px 1px rgba(0, 0, 0, 0.12)",shadows_8:"2px 8px 10px 1px rgba(0, 0, 0, 0.1), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)",shadows_9:"2px 9px 12px 1px rgba(0, 0, 0, 0.1), 0px 3px 16px 2px rgba(0, 0, 0, 0.12)",shadows_10:"2px 10px 14px 1px rgba(0, 0, 0, 0.12), 0px 4px 18px 3px rgba(0, 0, 0, 0.12)",shadows_11:"2px 11px 15px 1px rgba(0, 0, 0, 0.12), 0px 4px 20px 3px rgba(0, 0, 0, 0.12)",shadows_12:"2px 12px 17px 2px rgba(0, 0, 0, 0.12), 0px 5px 22px 4px rgba(0, 0, 0, 0.12)",shadows_13:"2px 13px 19px 2px rgba(0, 0, 0, 0.12), 0px 5px 24px 4px rgba(0, 0, 0, 0.12)",shadows_14:"2px 14px 21px 2px rgba(0, 0, 0, 0.12), 0px 5px 26px 4px rgba(0, 0, 0, 0.12)",shadows_15:"2px 15px 22px 2px rgba(0, 0, 0, 0.12), 0px 6px 28px 5px rgba(0, 0, 0, 0.12)",shadows_16:"2px 16px 24px 2px rgba(0, 0, 0, 0.12), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)",shadows_17:"2px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12)",shadows_18:"2px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12)",shadows_19:"2px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12)",shadows_20:"2px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12)",shadows_21:"2px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12)",shadows_22:"2px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12)",shadows_23:"2px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12)",shadows_24:"2px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12)",shape_borderRadius:"3px",shape_borderWidth:"1px",shape_buttonBorderWidth:"2px",typography_fontFamily_default:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h1_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h1_fontWeight:"700",typography_h1_fontSize:"2rem",typography_h1_lineHeight:"normal",typography_h1_letterSpacing:"normal",typography_h2_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h2_fontWeight:"700",typography_h2_fontSize:"1.75rem",typography_h2_lineHeight:"normal",typography_h2_letterSpacing:"normal",typography_h3_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h3_fontWeight:"700",typography_h3_fontSize:"1.5rem",typography_h3_lineHeight:"normal",typography_h3_letterSpacing:"normal",typography_h4_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h4_fontWeight:"700",typography_h4_fontSize:"1.35rem",typography_h4_lineHeight:"normal",typography_h4_letterSpacing:"normal",typography_h5_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h5_fontWeight:"700",typography_h5_fontSize:"1.25rem",typography_h5_lineHeight:"normal",typography_h5_letterSpacing:"normal",typography_h6_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h6_fontWeight:"700",typography_h6_fontSize:"1.1rem",typography_h6_lineHeight:"normal",typography_h6_letterSpacing:"normal",typography_subtitle1_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_subtitle1_fontWeight:"600",typography_subtitle1_fontSize:"1.25rem",typography_subtitle1_lineHeight:"normal",typography_subtitle1_letterSpacing:"normal",typography_subtitle2_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_subtitle2_fontWeight:"600",typography_subtitle2_fontSize:"1.125rem",typography_subtitle2_lineHeight:"normal",typography_subtitle2_letterSpacing:"normal",typography_body1_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_body1_fontWeight:"400",typography_body1_fontSize:"1.125rem",typography_body1_lineHeight:"normal",typography_body1_letterSpacing:"normal",typography_body2_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_body2_fontWeight:"400",typography_body2_fontSize:"1rem",typography_body2_lineHeight:"normal",typography_body2_letterSpacing:"normal",typography_button_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_button_fontWeight:"600",typography_button_fontSize:"1rem",typography_button_lineHeight:"normal",typography_button_letterSpacing:"normal",typography_caption_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_caption_fontWeight:"400",typography_caption_fontSize:"0.75rem",typography_caption_lineHeight:"normal",typography_caption_letterSpacing:"normal",typography_overline_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_overline_fontWeight:"400",typography_overline_fontSize:"0.75rem",typography_overline_lineHeight:"normal",typography_overline_letterSpacing:"normal"},_n={breakpoints:{values:{xs:parseInt(de.breakpoints_xs),sm:parseInt(de.breakpoints_sm),md:parseInt(de.breakpoints_md),lg:parseInt(de.breakpoints_lg),xl:parseInt(de.breakpoints_xl)}},shadows:["none",de.shadows_1,de.shadows_2,de.shadows_3,de.shadows_4,de.shadows_5,de.shadows_6,de.shadows_7,de.shadows_8,de.shadows_9,de.shadows_10,de.shadows_11,de.shadows_12,de.shadows_13,de.shadows_14,de.shadows_15,de.shadows_16,de.shadows_17,de.shadows_18,de.shadows_19,de.shadows_20,de.shadows_21,de.shadows_22,de.shadows_23,de.shadows_24],shape:{borderRadius:parseInt(de.shape_borderRadius)},typography:{fontFamily:de.typography_fontFamily_default,h1:{fontFamily:de.typography_h1_fontFamily,fontWeight:parseInt(de.typography_h1_fontWeight),fontSize:de.typography_h1_fontSize,lineHeight:de.typography_h1_lineHeight,letterSpacing:de.typography_h1_letterSpacing},h2:{fontFamily:de.typography_h2_fontFamily,fontWeight:parseInt(de.typography_h2_fontWeight),fontSize:de.typography_h2_fontSize,lineHeight:de.typography_h2_lineHeight,letterSpacing:de.typography_h2_letterSpacing},h3:{fontFamily:de.typography_h3_fontFamily,fontWeight:parseInt(de.typography_h3_fontWeight),fontSize:de.typography_h3_fontSize,lineHeight:de.typography_h3_lineHeight,letterSpacing:de.typography_h3_letterSpacing},h4:{fontFamily:de.typography_h4_fontFamily,fontWeight:parseInt(de.typography_h4_fontWeight),fontSize:de.typography_h4_fontSize,lineHeight:de.typography_h4_lineHeight,letterSpacing:de.typography_h4_letterSpacing},h5:{fontFamily:de.typography_h5_fontFamily,fontWeight:parseInt(de.typography_h5_fontWeight),fontSize:de.typography_h5_fontSize,lineHeight:de.typography_h5_lineHeight,letterSpacing:de.typography_h5_letterSpacing},h6:{fontFamily:de.typography_h6_fontFamily,fontWeight:parseInt(de.typography_h6_fontWeight),fontSize:de.typography_h6_fontSize,lineHeight:de.typography_h6_lineHeight,letterSpacing:de.typography_h6_letterSpacing},subtitle1:{fontFamily:de.typography_subtitle1_fontFamily,fontWeight:parseInt(de.typography_subtitle1_fontWeight),fontSize:de.typography_subtitle1_fontSize,lineHeight:de.typography_subtitle1_lineHeight,letterSpacing:de.typography_subtitle1_letterSpacing},subtitle2:{fontFamily:de.typography_subtitle2_fontFamily,fontWeight:parseInt(de.typography_subtitle2_fontWeight),fontSize:de.typography_subtitle2_fontSize,lineHeight:de.typography_subtitle2_lineHeight,letterSpacing:de.typography_subtitle2_letterSpacing},body1:{fontFamily:de.typography_body1_fontFamily,fontWeight:parseInt(de.typography_body1_fontWeight),fontSize:de.typography_body1_fontSize,lineHeight:de.typography_body1_lineHeight,letterSpacing:de.typography_body1_letterSpacing},body2:{fontFamily:de.typography_body2_fontFamily,fontWeight:parseInt(de.typography_body2_fontWeight),fontSize:de.typography_body2_fontSize,lineHeight:de.typography_body2_lineHeight,letterSpacing:de.typography_body2_letterSpacing},button:{fontFamily:de.typography_button_fontFamily,fontWeight:parseInt(de.typography_button_fontWeight),fontSize:de.typography_button_fontSize,lineHeight:de.typography_button_lineHeight,letterSpacing:de.typography_button_letterSpacing,textTransform:"none"},caption:{fontFamily:de.typography_caption_fontFamily,fontWeight:parseInt(de.typography_caption_fontWeight),fontSize:de.typography_caption_fontSize,lineHeight:de.typography_caption_lineHeight,letterSpacing:de.typography_caption_letterSpacing},overline:{fontFamily:de.typography_overline_fontFamily,fontWeight:parseInt(de.typography_overline_fontWeight),fontSize:de.typography_overline_fontSize,lineHeight:de.typography_overline_lineHeight,letterSpacing:de.typography_overline_letterSpacing}},palette:{grey:{50:de.common_palette_grey_50,100:de.common_palette_grey_100,200:de.common_palette_grey_200,300:de.common_palette_grey_300,400:de.common_palette_grey_400,500:de.common_palette_grey_500,600:de.common_palette_grey_600,700:de.common_palette_grey_700,800:de.common_palette_grey_800,900:de.common_palette_grey_900,A100:de.common_palette_grey_A100,A200:de.common_palette_grey_A200,A400:de.common_palette_grey_A400,A700:de.common_palette_grey_A700},common:{black:de.common_palette_common_black,white:de.common_palette_common_white},white:de.common_palette_common_white},components:{MuiCard:{defaultProps:{elevation:0},styleOverrides:{root:{borderStyle:"solid",borderWidth:de.shape_borderWidth}}},MuiAppBar:{styleOverrides:{root:{backgroundImage:"none"}}},MuiButton:{styleOverrides:{outlined:{borderWidth:de.shape_buttonBorderWidth,":hover":{borderWidth:de.shape_buttonBorderWidth}}}},MuiTable:{styleOverrides:{root:({ownerState:t})=>({...t.size==="x-small"&&{"& .MuiTableCell-root":{padding:"0px 16px"}}})}},MuiTooltip:{styleOverrides:{tooltip:{fontSize:".9rem"}}}}},zD=V.createTheme({..._n,palette:{..._n.palette,mode:"light",primary:{light:de.light_palette_primary_light,main:de.light_palette_primary_main,dark:de.light_palette_primary_dark},secondary:{light:de.light_palette_secondary_light,main:de.light_palette_secondary_main,dark:de.light_palette_secondary_dark},text:{primary:de.light_palette_text_primary,secondary:de.light_palette_text_secondary,disabled:de.light_palette_text_disabled},background:{default:de.light_palette_background_default,paper:de.light_palette_background_paper,appBar:de.light_palette_background_appBar},error:{light:de.light_palette_error_light,main:de.light_palette_error_main,dark:de.light_palette_error_dark},success:{light:de.light_palette_success_light,main:de.light_palette_success_main,dark:de.light_palette_success_dark},info:{light:de.light_palette_info_light,main:de.light_palette_info_main,dark:de.light_palette_info_dark},warning:{light:de.light_palette_warning_light,main:de.light_palette_warning_main,dark:de.light_palette_warning_dark}},components:{..._n.components,MuiAppBar:{...(z2=_n.components)==null?void 0:z2.MuiAppBar,styleOverrides:{...(H2=(V2=_n.components)==null?void 0:V2.MuiAppBar)==null?void 0:H2.styleOverrides,root:{...(U2=(j2=(W2=_n.components)==null?void 0:W2.MuiAppBar)==null?void 0:j2.styleOverrides)==null?void 0:U2.root,backgroundColor:de.light_palette_background_appBar}}},MuiCard:{...(q2=_n.components)==null?void 0:q2.MuiCard,styleOverrides:{...(Y2=(K2=_n.components)==null?void 0:K2.MuiCard)==null?void 0:Y2.styleOverrides,root:{...(X2=(J2=(G2=_n.components)==null?void 0:G2.MuiCard)==null?void 0:J2.styleOverrides)==null?void 0:X2.root,borderColor:de.light_palette_divider_default}}}}}),VD=V.createTheme({..._n,palette:{..._n.palette,mode:"dark",primary:{light:de.dark_palette_primary_light,main:de.dark_palette_primary_main,dark:de.dark_palette_primary_dark},secondary:{light:de.dark_palette_secondary_light,main:de.dark_palette_secondary_main,dark:de.dark_palette_secondary_dark},text:{primary:de.dark_palette_text_primary,secondary:de.dark_palette_text_secondary,disabled:de.dark_palette_text_disabled},background:{default:de.dark_palette_background_default,paper:de.dark_palette_background_paper,appBar:de.dark_palette_background_appBar},error:{light:de.dark_palette_error_light,main:de.dark_palette_error_main,dark:de.dark_palette_error_dark},success:{light:de.dark_palette_success_light,main:de.dark_palette_success_main,dark:de.dark_palette_success_dark},info:{light:de.dark_palette_info_light,main:de.dark_palette_info_main,dark:de.dark_palette_info_dark},warning:{light:de.dark_palette_warning_light,main:de.dark_palette_warning_main,dark:de.dark_palette_warning_dark}},components:{..._n.components,MuiAppBar:{...(Z2=_n.components)==null?void 0:Z2.MuiAppBar,styleOverrides:{...(eA=(Q2=_n.components)==null?void 0:Q2.MuiAppBar)==null?void 0:eA.styleOverrides,root:{...(rA=(nA=(tA=_n.components)==null?void 0:tA.MuiAppBar)==null?void 0:nA.styleOverrides)==null?void 0:rA.root,backgroundColor:de.dark_palette_background_appBar,backgroundImage:"none"}}},MuiCard:{...(oA=_n.components)==null?void 0:oA.MuiCard,styleOverrides:{...(sA=(iA=_n.components)==null?void 0:iA.MuiCard)==null?void 0:sA.styleOverrides,root:{...(cA=(lA=(aA=_n.components)==null?void 0:aA.MuiCard)==null?void 0:lA.styleOverrides)==null?void 0:cA.root,borderColor:de.dark_palette_divider_default}}}}}),HD=["w","xs","sm","md","lg","xl","alignment","justify","noMP","noGrid","gridClassName","gridStyle"],f1=t=>t>47&&t<58,h1=t=>t>64&&t<123&&(t<91||t>96),WD=(t,e,n,r)=>{let o="",i=0,s=0,a=0,c=0;const u=r.selectionStart;let p=!1;if(t.length<=e.length){for(let T=0;T<t.length&&T<e.length;T++){for(;i<e.length&&e[i]!=="X"&&e[i]!=="9";)a++,s++,i++;(f1(t.charCodeAt(T))&&e[i]==="9"||h1(t.charCodeAt(T))&&e[i]==="X")&&(a>0&&(c=a,a=0),o+=t[T],i++)}const f=f1(t.charCodeAt(u-1))?"number":h1(t.charCodeAt(u-1))?"letter":"something else",m=f!=="number"&&e[u-1]==="9",y=f!=="letter"&&e[u-1]==="X";(m||y||f==="something else")&&(p=!0);let g="",x=0;Math.abs(n.length-t.length)<=1&&(s=0);let w=u+s;for(let T=0;T<o.length;T++){for(;x<e.length&&e[x]!=="X"&&e[x]!=="9";)g+=e[x],x++;g+=o[T],x++}t.length<n.length?window.requestAnimationFrame(()=>{r.selectionStart=w,r.selectionEnd=w}):e[w-1]!=="X"&&e[w-1]!=="9"?window.requestAnimationFrame(()=>{r.selectionStart=w+c,r.selectionEnd=w+c}):(p&&(w-=1),window.requestAnimationFrame(()=>{r.selectionStart=w,r.selectionEnd=w}));const k=e.slice(x);return k.indexOf("X")===-1&&k.indexOf("9")===-1&&(g+=k),g}return window.requestAnimationFrame(()=>{r.selectionStart=u-1,r.selectionEnd=u-1}),n};function ar(t,e){const r=Object.keys(t).filter(i=>e.includes(i)),o={...t};for(const i of HD)delete o[i];for(const i of r)delete o[i];return o}const $n=t=>t.split(/(?=[A-Z])|[.\-_\s]+/).map(n=>n.charAt(0).toUpperCase()+n.slice(1).toLowerCase()).filter(Boolean).join(" ");function jD(t,e,n=!1,r=""){let o="";if(e==null||e.length==0)return r;if(n){let i="";const s=e.toString().split(",");let a=0;t.forEach(c=>{s.includes(String(c.value).toString())&&(i+=c.label,a<s.length-1&&(i+=", "),a++)}),o=i}else{const i=t.find(s=>e==s.value);i!=null&&(o=i.label)}return o}function ql(t,e,n){return t.onClick?{onClick:()=>{t.onClick(),t.path&&e(t.path),t.externalLink&&window.open(t.externalLink,"_blank","noopener"),n&&n()}}:t.path?{component:bo.Link,to:t.path}:t.externalLink?{href:t.externalLink}:{}}function ii(t,e){return process.env.NODE_ENV==="production"?()=>null:function(...r){return t(...r)||e(...r)}}var Vi=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function lr(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Ku={exports:{}},$t={};/**
2
+ /*$vite$:1*/`,document.head.appendChild(d1);function p1(t){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const n in t)if(n!=="default"){const r=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(e,n,r.get?r:{enumerable:!0,get:()=>t[n]})}}return e.default=t,Object.freeze(e)}const M=p1(Z),RD=p1(Ms),de={breakpoints_xs:"0px",breakpoints_sm:"600px",breakpoints_md:"960px",breakpoints_lg:"1100px",breakpoints_xl:"1536px",light_palette_primary_light:"#4c98d7",light_palette_primary_main:"#005ea2",light_palette_primary_dark:"#1a4480",light_palette_secondary_light:"#9bb672",light_palette_secondary_main:"#607f35",light_palette_secondary_dark:"#3c4a29",light_palette_text_primary:"rgba(0, 0, 0, 0.8705882353)",light_palette_text_secondary:"rgba(0, 0, 0, 0.6)",light_palette_text_disabled:"rgba(0, 0, 0, 0.3803921569)",light_palette_error_light:"#dc5b52",light_palette_error_main:"#d83933",light_palette_error_dark:"#b50909",light_palette_warning_light:"#ffbe2e",light_palette_warning_main:"#e5a000",light_palette_warning_dark:"#c2850c",light_palette_info_light:"#4c98d7",light_palette_info_main:"#005ea2",light_palette_info_dark:"#1a4480",light_palette_success_light:"#9bb672",light_palette_success_main:"#607f35",light_palette_success_dark:"#3c4a29",light_palette_background_default:"#f9f9f9",light_palette_background_paper:"#fff",light_palette_background_appBar:"#252f3e",light_palette_divider_default:"#c9c9c9",dark_palette_primary_light:"#98cbfb",dark_palette_primary_main:"#4c98d7",dark_palette_primary_dark:"#005ea2",dark_palette_secondary_light:"#b8d293",dark_palette_secondary_main:"#9bb672",dark_palette_secondary_dark:"#607f35",dark_palette_text_primary:"#fff",dark_palette_text_secondary:"rgba(255, 255, 255, 0.7019607843)",dark_palette_text_disabled:"rgba(255, 255, 255, 0.5019607843)",dark_palette_error_light:"#f1928b",dark_palette_error_main:"#dc5b52",dark_palette_error_dark:"#d83933",dark_palette_warning_light:"#ffe396",dark_palette_warning_main:"#ffbe2e",dark_palette_warning_dark:"#e5a000",dark_palette_info_light:"#98cbfb",dark_palette_info_main:"#4c98d7",dark_palette_info_dark:"#005ea2",dark_palette_success_light:"#b8d293",dark_palette_success_main:"#9bb672",dark_palette_success_dark:"#607f35",dark_palette_background_default:"#121212",dark_palette_background_paper:"#1b1b1b",dark_palette_background_appBar:"#2f3b4e",dark_palette_divider_default:"#2e2e2e",common_palette_grey_50:"#f0f0f0",common_palette_grey_100:"#e6e6e6",common_palette_grey_200:"#c9c9c9",common_palette_grey_300:"#adadad",common_palette_grey_400:"#919191",common_palette_grey_500:"#757575",common_palette_grey_600:"#5c5c5c",common_palette_grey_700:"#454545",common_palette_grey_800:"#2e2e2e",common_palette_grey_900:"#1b1b1b",common_palette_grey_A100:"#e6e6e6",common_palette_grey_A200:"#c9c9c9",common_palette_grey_A400:"#919191",common_palette_grey_A700:"#454545",common_palette_common_white:"#fff",common_palette_common_black:"#000",shadows_1:"2px 2px 5px 0px rgba(0, 0, 0, 0.05)",shadows_2:"2px 2px 7px 0px rgba(0, 0, 0, 0.075)",shadows_3:"2px 3px 7px 0px rgba(0, 0, 0, 0.075), 0px 1px 10px 0px rgba(0, 0, 0, 0.05)",shadows_4:"2px 4px 8px 0px rgba(0, 0, 0, 0.075), 0px 1px 12px 0px rgba(0, 0, 0, 0.075)",shadows_5:"2px 5px 8px 0px rgba(0, 0, 0, 0.075), 0px 2px 14px 0px rgba(0, 0, 0, 0.1)",shadows_6:"2px 6px 10px 0px rgba(0, 0, 0, 0.1), 0px 2px 18px 0px rgba(0, 0, 0, 0.1)",shadows_7:"2px 7px 10px 1px rgba(0, 0, 0, 0.1), 0px 2px 16px 1px rgba(0, 0, 0, 0.12)",shadows_8:"2px 8px 10px 1px rgba(0, 0, 0, 0.1), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)",shadows_9:"2px 9px 12px 1px rgba(0, 0, 0, 0.1), 0px 3px 16px 2px rgba(0, 0, 0, 0.12)",shadows_10:"2px 10px 14px 1px rgba(0, 0, 0, 0.12), 0px 4px 18px 3px rgba(0, 0, 0, 0.12)",shadows_11:"2px 11px 15px 1px rgba(0, 0, 0, 0.12), 0px 4px 20px 3px rgba(0, 0, 0, 0.12)",shadows_12:"2px 12px 17px 2px rgba(0, 0, 0, 0.12), 0px 5px 22px 4px rgba(0, 0, 0, 0.12)",shadows_13:"2px 13px 19px 2px rgba(0, 0, 0, 0.12), 0px 5px 24px 4px rgba(0, 0, 0, 0.12)",shadows_14:"2px 14px 21px 2px rgba(0, 0, 0, 0.12), 0px 5px 26px 4px rgba(0, 0, 0, 0.12)",shadows_15:"2px 15px 22px 2px rgba(0, 0, 0, 0.12), 0px 6px 28px 5px rgba(0, 0, 0, 0.12)",shadows_16:"2px 16px 24px 2px rgba(0, 0, 0, 0.12), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)",shadows_17:"2px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12)",shadows_18:"2px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12)",shadows_19:"2px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12)",shadows_20:"2px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12)",shadows_21:"2px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12)",shadows_22:"2px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12)",shadows_23:"2px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12)",shadows_24:"2px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12)",shape_borderRadius:"3px",shape_borderWidth:"1px",shape_buttonBorderWidth:"2px",typography_fontFamily_default:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h1_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h1_fontWeight:"700",typography_h1_fontSize:"2rem",typography_h1_lineHeight:"normal",typography_h1_letterSpacing:"normal",typography_h2_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h2_fontWeight:"700",typography_h2_fontSize:"1.75rem",typography_h2_lineHeight:"normal",typography_h2_letterSpacing:"normal",typography_h3_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h3_fontWeight:"700",typography_h3_fontSize:"1.5rem",typography_h3_lineHeight:"normal",typography_h3_letterSpacing:"normal",typography_h4_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h4_fontWeight:"700",typography_h4_fontSize:"1.35rem",typography_h4_lineHeight:"normal",typography_h4_letterSpacing:"normal",typography_h5_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h5_fontWeight:"700",typography_h5_fontSize:"1.25rem",typography_h5_lineHeight:"normal",typography_h5_letterSpacing:"normal",typography_h6_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_h6_fontWeight:"700",typography_h6_fontSize:"1.1rem",typography_h6_lineHeight:"normal",typography_h6_letterSpacing:"normal",typography_subtitle1_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_subtitle1_fontWeight:"600",typography_subtitle1_fontSize:"1.25rem",typography_subtitle1_lineHeight:"normal",typography_subtitle1_letterSpacing:"normal",typography_subtitle2_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_subtitle2_fontWeight:"600",typography_subtitle2_fontSize:"1.125rem",typography_subtitle2_lineHeight:"normal",typography_subtitle2_letterSpacing:"normal",typography_body1_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_body1_fontWeight:"400",typography_body1_fontSize:"1.125rem",typography_body1_lineHeight:"normal",typography_body1_letterSpacing:"normal",typography_body2_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_body2_fontWeight:"400",typography_body2_fontSize:"1rem",typography_body2_lineHeight:"normal",typography_body2_letterSpacing:"normal",typography_button_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_button_fontWeight:"600",typography_button_fontSize:"1rem",typography_button_lineHeight:"normal",typography_button_letterSpacing:"normal",typography_caption_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_caption_fontWeight:"400",typography_caption_fontSize:"0.75rem",typography_caption_lineHeight:"normal",typography_caption_letterSpacing:"normal",typography_overline_fontFamily:'"source-sans-pro", "helvetica", "arial", sans-serif',typography_overline_fontWeight:"400",typography_overline_fontSize:"0.75rem",typography_overline_lineHeight:"normal",typography_overline_letterSpacing:"normal"},_n={breakpoints:{values:{xs:parseInt(de.breakpoints_xs),sm:parseInt(de.breakpoints_sm),md:parseInt(de.breakpoints_md),lg:parseInt(de.breakpoints_lg),xl:parseInt(de.breakpoints_xl)}},shadows:["none",de.shadows_1,de.shadows_2,de.shadows_3,de.shadows_4,de.shadows_5,de.shadows_6,de.shadows_7,de.shadows_8,de.shadows_9,de.shadows_10,de.shadows_11,de.shadows_12,de.shadows_13,de.shadows_14,de.shadows_15,de.shadows_16,de.shadows_17,de.shadows_18,de.shadows_19,de.shadows_20,de.shadows_21,de.shadows_22,de.shadows_23,de.shadows_24],shape:{borderRadius:parseInt(de.shape_borderRadius)},typography:{fontFamily:de.typography_fontFamily_default,h1:{fontFamily:de.typography_h1_fontFamily,fontWeight:parseInt(de.typography_h1_fontWeight),fontSize:de.typography_h1_fontSize,lineHeight:de.typography_h1_lineHeight,letterSpacing:de.typography_h1_letterSpacing},h2:{fontFamily:de.typography_h2_fontFamily,fontWeight:parseInt(de.typography_h2_fontWeight),fontSize:de.typography_h2_fontSize,lineHeight:de.typography_h2_lineHeight,letterSpacing:de.typography_h2_letterSpacing},h3:{fontFamily:de.typography_h3_fontFamily,fontWeight:parseInt(de.typography_h3_fontWeight),fontSize:de.typography_h3_fontSize,lineHeight:de.typography_h3_lineHeight,letterSpacing:de.typography_h3_letterSpacing},h4:{fontFamily:de.typography_h4_fontFamily,fontWeight:parseInt(de.typography_h4_fontWeight),fontSize:de.typography_h4_fontSize,lineHeight:de.typography_h4_lineHeight,letterSpacing:de.typography_h4_letterSpacing},h5:{fontFamily:de.typography_h5_fontFamily,fontWeight:parseInt(de.typography_h5_fontWeight),fontSize:de.typography_h5_fontSize,lineHeight:de.typography_h5_lineHeight,letterSpacing:de.typography_h5_letterSpacing},h6:{fontFamily:de.typography_h6_fontFamily,fontWeight:parseInt(de.typography_h6_fontWeight),fontSize:de.typography_h6_fontSize,lineHeight:de.typography_h6_lineHeight,letterSpacing:de.typography_h6_letterSpacing},subtitle1:{fontFamily:de.typography_subtitle1_fontFamily,fontWeight:parseInt(de.typography_subtitle1_fontWeight),fontSize:de.typography_subtitle1_fontSize,lineHeight:de.typography_subtitle1_lineHeight,letterSpacing:de.typography_subtitle1_letterSpacing},subtitle2:{fontFamily:de.typography_subtitle2_fontFamily,fontWeight:parseInt(de.typography_subtitle2_fontWeight),fontSize:de.typography_subtitle2_fontSize,lineHeight:de.typography_subtitle2_lineHeight,letterSpacing:de.typography_subtitle2_letterSpacing},body1:{fontFamily:de.typography_body1_fontFamily,fontWeight:parseInt(de.typography_body1_fontWeight),fontSize:de.typography_body1_fontSize,lineHeight:de.typography_body1_lineHeight,letterSpacing:de.typography_body1_letterSpacing},body2:{fontFamily:de.typography_body2_fontFamily,fontWeight:parseInt(de.typography_body2_fontWeight),fontSize:de.typography_body2_fontSize,lineHeight:de.typography_body2_lineHeight,letterSpacing:de.typography_body2_letterSpacing},button:{fontFamily:de.typography_button_fontFamily,fontWeight:parseInt(de.typography_button_fontWeight),fontSize:de.typography_button_fontSize,lineHeight:de.typography_button_lineHeight,letterSpacing:de.typography_button_letterSpacing,textTransform:"none"},caption:{fontFamily:de.typography_caption_fontFamily,fontWeight:parseInt(de.typography_caption_fontWeight),fontSize:de.typography_caption_fontSize,lineHeight:de.typography_caption_lineHeight,letterSpacing:de.typography_caption_letterSpacing},overline:{fontFamily:de.typography_overline_fontFamily,fontWeight:parseInt(de.typography_overline_fontWeight),fontSize:de.typography_overline_fontSize,lineHeight:de.typography_overline_lineHeight,letterSpacing:de.typography_overline_letterSpacing}},palette:{grey:{50:de.common_palette_grey_50,100:de.common_palette_grey_100,200:de.common_palette_grey_200,300:de.common_palette_grey_300,400:de.common_palette_grey_400,500:de.common_palette_grey_500,600:de.common_palette_grey_600,700:de.common_palette_grey_700,800:de.common_palette_grey_800,900:de.common_palette_grey_900,A100:de.common_palette_grey_A100,A200:de.common_palette_grey_A200,A400:de.common_palette_grey_A400,A700:de.common_palette_grey_A700},common:{black:de.common_palette_common_black,white:de.common_palette_common_white},white:de.common_palette_common_white},components:{MuiCard:{defaultProps:{elevation:0},styleOverrides:{root:{borderStyle:"solid",borderWidth:de.shape_borderWidth}}},MuiAppBar:{styleOverrides:{root:{backgroundImage:"none"}}},MuiButton:{styleOverrides:{outlined:{borderWidth:de.shape_buttonBorderWidth,":hover":{borderWidth:de.shape_buttonBorderWidth}}}},MuiTable:{styleOverrides:{root:({ownerState:t})=>({...t.size==="x-small"&&{"& .MuiTableCell-root":{padding:"0px 16px"}}})}},MuiTooltip:{styleOverrides:{tooltip:{fontSize:".9rem"}}}}},zD=V.createTheme({..._n,palette:{..._n.palette,mode:"light",primary:{light:de.light_palette_primary_light,main:de.light_palette_primary_main,dark:de.light_palette_primary_dark},secondary:{light:de.light_palette_secondary_light,main:de.light_palette_secondary_main,dark:de.light_palette_secondary_dark},text:{primary:de.light_palette_text_primary,secondary:de.light_palette_text_secondary,disabled:de.light_palette_text_disabled},background:{default:de.light_palette_background_default,paper:de.light_palette_background_paper,appBar:de.light_palette_background_appBar},error:{light:de.light_palette_error_light,main:de.light_palette_error_main,dark:de.light_palette_error_dark},success:{light:de.light_palette_success_light,main:de.light_palette_success_main,dark:de.light_palette_success_dark},info:{light:de.light_palette_info_light,main:de.light_palette_info_main,dark:de.light_palette_info_dark},warning:{light:de.light_palette_warning_light,main:de.light_palette_warning_main,dark:de.light_palette_warning_dark}},components:{..._n.components,MuiAppBar:{...(z2=_n.components)==null?void 0:z2.MuiAppBar,styleOverrides:{...(H2=(V2=_n.components)==null?void 0:V2.MuiAppBar)==null?void 0:H2.styleOverrides,root:{...(U2=(j2=(W2=_n.components)==null?void 0:W2.MuiAppBar)==null?void 0:j2.styleOverrides)==null?void 0:U2.root,backgroundColor:de.light_palette_background_appBar}}},MuiCard:{...(q2=_n.components)==null?void 0:q2.MuiCard,styleOverrides:{...(Y2=(K2=_n.components)==null?void 0:K2.MuiCard)==null?void 0:Y2.styleOverrides,root:{...(X2=(J2=(G2=_n.components)==null?void 0:G2.MuiCard)==null?void 0:J2.styleOverrides)==null?void 0:X2.root,borderColor:de.light_palette_divider_default}}}}}),VD=V.createTheme({..._n,palette:{..._n.palette,mode:"dark",primary:{light:de.dark_palette_primary_light,main:de.dark_palette_primary_main,dark:de.dark_palette_primary_dark},secondary:{light:de.dark_palette_secondary_light,main:de.dark_palette_secondary_main,dark:de.dark_palette_secondary_dark},text:{primary:de.dark_palette_text_primary,secondary:de.dark_palette_text_secondary,disabled:de.dark_palette_text_disabled},background:{default:de.dark_palette_background_default,paper:de.dark_palette_background_paper,appBar:de.dark_palette_background_appBar},error:{light:de.dark_palette_error_light,main:de.dark_palette_error_main,dark:de.dark_palette_error_dark},success:{light:de.dark_palette_success_light,main:de.dark_palette_success_main,dark:de.dark_palette_success_dark},info:{light:de.dark_palette_info_light,main:de.dark_palette_info_main,dark:de.dark_palette_info_dark},warning:{light:de.dark_palette_warning_light,main:de.dark_palette_warning_main,dark:de.dark_palette_warning_dark}},components:{..._n.components,MuiAppBar:{...(Z2=_n.components)==null?void 0:Z2.MuiAppBar,styleOverrides:{...(eA=(Q2=_n.components)==null?void 0:Q2.MuiAppBar)==null?void 0:eA.styleOverrides,root:{...(rA=(nA=(tA=_n.components)==null?void 0:tA.MuiAppBar)==null?void 0:nA.styleOverrides)==null?void 0:rA.root,backgroundColor:de.dark_palette_background_appBar,backgroundImage:"none"}}},MuiCard:{...(oA=_n.components)==null?void 0:oA.MuiCard,styleOverrides:{...(sA=(iA=_n.components)==null?void 0:iA.MuiCard)==null?void 0:sA.styleOverrides,root:{...(cA=(lA=(aA=_n.components)==null?void 0:aA.MuiCard)==null?void 0:lA.styleOverrides)==null?void 0:cA.root,borderColor:de.dark_palette_divider_default}}}}}),HD=["w","xs","sm","md","lg","xl","alignment","justify","noMP","noGrid","gridClassName","gridStyle"],f1=t=>t>47&&t<58,h1=t=>t>64&&t<123&&(t<91||t>96),WD=(t,e,n,r)=>{let o="",i=0,s=0,a=0,c=0;const u=r.selectionStart;let p=!1;if(t.length<=e.length){for(let T=0;T<t.length&&T<e.length;T++){for(;i<e.length&&e[i]!=="X"&&e[i]!=="9";)a++,s++,i++;(f1(t.charCodeAt(T))&&e[i]==="9"||h1(t.charCodeAt(T))&&e[i]==="X")&&(a>0&&(c=a,a=0),o+=t[T],i++)}const f=f1(t.charCodeAt(u-1))?"number":h1(t.charCodeAt(u-1))?"letter":"something else",m=f!=="number"&&e[u-1]==="9",y=f!=="letter"&&e[u-1]==="X";(m||y||f==="something else")&&(p=!0);let g="",x=0;Math.abs(n.length-t.length)<=1&&(s=0);let w=u+s;for(let T=0;T<o.length;T++){for(;x<e.length&&e[x]!=="X"&&e[x]!=="9";)g+=e[x],x++;g+=o[T],x++}t.length<n.length?window.requestAnimationFrame(()=>{r.selectionStart=w,r.selectionEnd=w}):e[w-1]!=="X"&&e[w-1]!=="9"?window.requestAnimationFrame(()=>{r.selectionStart=w+c,r.selectionEnd=w+c}):(p&&(w-=1),window.requestAnimationFrame(()=>{r.selectionStart=w,r.selectionEnd=w}));const k=e.slice(x);return k.indexOf("X")===-1&&k.indexOf("9")===-1&&(g+=k),g}return window.requestAnimationFrame(()=>{r.selectionStart=u-1,r.selectionEnd=u-1}),n};function ar(t,e){const r=Object.keys(t).filter(i=>e.includes(i)),o={...t};for(const i of HD)delete o[i];for(const i of r)delete o[i];return o}const $n=t=>t.split(/(?=[A-Z])|[.\-_\s]+/).map(n=>n.charAt(0).toUpperCase()+n.slice(1).toLowerCase()).filter(Boolean).join(" ");function jD(t,e,n=!1,r=""){let o="";if(e==null||e.length==0)return r;if(n){let i="";const s=e.toString().split(",");let a=0;t.forEach(c=>{s.includes(String(c.value).toString())&&(i+=c.label,a<s.length-1&&(i+=", "),a++)}),o=i}else{const i=t.find(s=>e==s.value);i!=null&&(o=i.label)}return o}function ql(t,e,n){return t.onClick?{onClick:()=>{t.onClick(),t.openInNewTab&&window.open(t.externalUrl??t.path,"_blank","noopener"),t.path&&!t.openInNewTab&&e(t.path),n&&n()}}:t.path&&!t.openInNewTab?{component:bo.Link,to:t.path}:t.externalUrl||t.path?{component:"a",href:t.externalUrl??t.path,target:"_blank",rel:"noopener noreferrer"}:{}}function ii(t,e){return process.env.NODE_ENV==="production"?()=>null:function(...r){return t(...r)||e(...r)}}var Vi=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function lr(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Ku={exports:{}},$t={};/**
3
3
  * @license React
4
4
  * react-is.production.js
5
5
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@simoncomputing/mui-bueno-v2",
3
3
  "private": false,
4
- "version": "0.20.1",
4
+ "version": "0.21.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.js",
7
7
  "module": "./dist/index.es.js",