@undefine-ui/design-system 3.6.2 → 3.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -38,6 +38,7 @@ __export(index_exports, {
38
38
  CopyButton: () => CopyButton,
39
39
  CustomDialog: () => CustomDialog,
40
40
  CustomDrawer: () => CustomDrawer,
41
+ CustomFormLabel: () => CustomFormLabel,
41
42
  DateRangeDropdown: () => DateRangeDropdown,
42
43
  DateRangePicker: () => DateRangePicker,
43
44
  Download: () => Download,
@@ -5038,7 +5039,7 @@ var MuiSelect = {
5038
5039
  * DEFAULT PROPS
5039
5040
  *************************************** */
5040
5041
  defaultProps: {
5041
- IconComponent: () => /* @__PURE__ */ jsx56(Icon, { icon: "NavArrowDown", sx: { width: 18, height: 18, position: "absolute", right: 10 } })
5042
+ IconComponent: () => /* @__PURE__ */ jsx56(Icon, { icon: "NavArrowDown", sx: { position: "absolute", right: 10 } })
5042
5043
  }
5043
5044
  };
5044
5045
  var MuiNativeSelect = {
@@ -5046,7 +5047,7 @@ var MuiNativeSelect = {
5046
5047
  * DEFAULT PROPS
5047
5048
  *************************************** */
5048
5049
  defaultProps: {
5049
- IconComponent: () => /* @__PURE__ */ jsx56(Icon, { icon: "NavArrowDown", sx: { width: 18, height: 18, position: "absolute", right: 10 } })
5050
+ IconComponent: () => /* @__PURE__ */ jsx56(Icon, { icon: "NavArrowDown", sx: { position: "absolute", right: 10 } })
5050
5051
  }
5051
5052
  };
5052
5053
  var select = { MuiSelect, MuiNativeSelect };
@@ -6103,7 +6104,7 @@ var MuiTextField = {
6103
6104
  position: "relative",
6104
6105
  fontSize: `${theme.typography.h8.fontSize} !important`,
6105
6106
  fontWeight: `${theme.typography.fontWeightMedium} !important`,
6106
- marginBottom: theme.spacing(1),
6107
+ marginBottom: theme.spacing(0.5),
6107
6108
  color: `${theme.vars.palette.icon.black} !important`,
6108
6109
  // Focused state
6109
6110
  "&:not(.Mui-error).MuiFormLabel-colorPrimary.Mui-focused": {
@@ -6171,19 +6172,27 @@ var MuiTextField = {
6171
6172
  borderColor: theme.vars.palette.surface.disable
6172
6173
  }
6173
6174
  },
6174
- // InputAdornment styling
6175
+ // InputAdornment styling (target MuiInputAdornment only, not autocomplete endAdornment)
6175
6176
  [`&.${inputBaseClasses.adornedStart}, &.${inputBaseClasses.adornedEnd}`]: {
6176
6177
  color: theme.vars.palette.icon.black,
6177
- svg: {
6178
+ [`& .${inputAdornmentClasses.root} svg`]: {
6178
6179
  width: 20,
6179
6180
  height: 20,
6180
6181
  color: theme.vars.palette.icon.black
6181
- },
6182
- [`& .${inputAdornmentClasses.sizeSmall}`]: {
6183
- svg: { width: 16, height: 16 }
6184
- },
6185
- [`& .MuiInputAdornment-sizeLarge`]: {
6186
- svg: { width: 24, height: 24 }
6182
+ }
6183
+ },
6184
+ // Size small - 16x16 icons
6185
+ [`&.${inputBaseClasses.sizeSmall}`]: {
6186
+ [`& .${inputAdornmentClasses.root} svg`]: {
6187
+ width: 16,
6188
+ height: 16
6189
+ }
6190
+ },
6191
+ // Size large - 24x24 icons
6192
+ [`&.MuiInputBase-sizeLarge`]: {
6193
+ [`& .${inputAdornmentClasses.root} svg`]: {
6194
+ width: 24,
6195
+ height: 24
6187
6196
  }
6188
6197
  },
6189
6198
  [`&.${inputBaseClasses.adornedStart}`]: {
@@ -6244,32 +6253,33 @@ var MuiTextField = {
6244
6253
  overflowX: "hidden"
6245
6254
  }
6246
6255
  },
6247
- // Autocomplete styling
6248
- [`& .${autocompleteClasses2.input}`]: {
6249
- paddingLeft: "6px !important",
6250
- paddingTop: "10px !important",
6251
- paddingBottom: "10px !important",
6256
+ // Autocomplete styling - allow flexible height for multiple mode
6257
+ [`& .${autocompleteClasses2.inputRoot}`]: {
6258
+ height: "auto",
6259
+ minHeight: 44,
6252
6260
  [`&.${inputBaseClasses.sizeSmall}`]: {
6253
- paddingLeft: "6px !important",
6254
- paddingTop: "2.5px !important",
6255
- paddingBottom: "2.5px !important"
6261
+ minHeight: 36
6262
+ },
6263
+ [`&.MuiInputBase-sizeLarge`]: {
6264
+ minHeight: 48
6256
6265
  }
6257
6266
  },
6258
- [`& .${autocompleteClasses2.inputRoot}`]: {
6259
- paddingTop: "15.5px !important",
6260
- paddingLeft: "8px !important",
6261
- paddingBottom: "15.5px !important",
6262
- "&:not(.MuiInputBase-sizeSmall).MuiInputBase-adornedStart": {
6263
- paddingLeft: "13px !important"
6267
+ // Select icon sizing
6268
+ [`& .MuiSelect-root`]: {
6269
+ // Default medium size - 20x20 icons
6270
+ "& svg": {
6271
+ width: 20,
6272
+ height: 20
6264
6273
  },
6265
- [`&.${inputBaseClasses.sizeSmall}`]: {
6266
- paddingTop: "7.5px !important",
6267
- paddingLeft: "5px !important",
6268
- paddingBottom: "7.5px !important",
6269
- "& .MuiAutocomplete-tag": {
6270
- margin: 2,
6271
- height: 22
6272
- }
6274
+ // Size small - 16x16 icons
6275
+ [`&.${inputBaseClasses.sizeSmall} svg`]: {
6276
+ width: 16,
6277
+ height: 16
6278
+ },
6279
+ // Size large - 24x24 icons
6280
+ [`&.MuiInputBase-sizeLarge svg`]: {
6281
+ width: 24,
6282
+ height: 24
6273
6283
  }
6274
6284
  }
6275
6285
  })
@@ -6446,6 +6456,7 @@ __export(components_exports2, {
6446
6456
  CopyButton: () => CopyButton,
6447
6457
  CustomDialog: () => CustomDialog,
6448
6458
  CustomDrawer: () => CustomDrawer,
6459
+ CustomFormLabel: () => CustomFormLabel,
6449
6460
  DateRangeDropdown: () => DateRangeDropdown,
6450
6461
  DateRangePicker: () => DateRangePicker,
6451
6462
  Download: () => Download,
@@ -10822,20 +10833,38 @@ var Field = {
10822
10833
  GooglePlacesAutocomplete: RHFGooglePlacesAutocomplete
10823
10834
  };
10824
10835
 
10825
- // src/components/CopyButton/index.tsx
10836
+ // src/components/FormLabel/index.tsx
10826
10837
  import Tooltip from "@mui/material/Tooltip";
10838
+ import Typography14 from "@mui/material/Typography";
10839
+ import FormLabel4 from "@mui/material/FormLabel";
10840
+ import { jsx as jsx103, jsxs as jsxs64 } from "react/jsx-runtime";
10841
+ var CustomFormLabel = ({
10842
+ label,
10843
+ tooltip: tooltip2,
10844
+ icon: icon2,
10845
+ optional,
10846
+ sx,
10847
+ ...rest
10848
+ }) => /* @__PURE__ */ jsxs64(FormLabel4, { sx: { mb: 0.5, display: "flex", alignItems: "center", gap: 0.5, ...sx }, ...rest, children: [
10849
+ label,
10850
+ optional && /* @__PURE__ */ jsx103(Typography14, { component: "span", variant: "caption", color: "text.secondary", children: "(Optional)" }),
10851
+ tooltip2 && /* @__PURE__ */ jsx103(Tooltip, { placement: "right", title: tooltip2, children: /* @__PURE__ */ jsx103("span", { style: { display: "inline-flex" }, children: icon2 ?? /* @__PURE__ */ jsx103(Icon, { icon: "InfoCircle", sx: { width: 16, height: 16, color: "icons.black" } }) }) })
10852
+ ] });
10853
+
10854
+ // src/components/CopyButton/index.tsx
10855
+ import Tooltip2 from "@mui/material/Tooltip";
10827
10856
  import IconButton6 from "@mui/material/IconButton";
10828
- import { jsx as jsx103 } from "react/jsx-runtime";
10857
+ import { jsx as jsx104 } from "react/jsx-runtime";
10829
10858
  var CopyButton = ({ text: text2, size = "small" }) => {
10830
10859
  const { copy, isCopied } = useCopyToClipboard();
10831
- return /* @__PURE__ */ jsx103(Tooltip, { title: isCopied ? "Copied" : "Copy", children: /* @__PURE__ */ jsx103(
10860
+ return /* @__PURE__ */ jsx104(Tooltip2, { title: isCopied ? "Copied" : "Copy", children: /* @__PURE__ */ jsx104(
10832
10861
  IconButton6,
10833
10862
  {
10834
10863
  size,
10835
10864
  onClick: () => copy(text2),
10836
10865
  "aria-label": "copy token",
10837
10866
  sx: { color: "icon.black" },
10838
- children: /* @__PURE__ */ jsx103(Icon, { icon: isCopied ? "ClipboardCheck" : "Copy", sx: { width: 20, height: 20 } })
10867
+ children: /* @__PURE__ */ jsx104(Icon, { icon: isCopied ? "ClipboardCheck" : "Copy", sx: { width: 20, height: 20 } })
10839
10868
  }
10840
10869
  ) });
10841
10870
  };
@@ -10844,9 +10873,9 @@ var CopyButton = ({ text: text2, size = "small" }) => {
10844
10873
  import Portal2 from "@mui/material/Portal";
10845
10874
  import Box25 from "@mui/material/Box";
10846
10875
  import LinearProgress from "@mui/material/LinearProgress";
10847
- import { jsx as jsx104 } from "react/jsx-runtime";
10876
+ import { jsx as jsx105 } from "react/jsx-runtime";
10848
10877
  var LoadingScreen = ({ portal, sx, ...rest }) => {
10849
- const content = /* @__PURE__ */ jsx104(
10878
+ const content = /* @__PURE__ */ jsx105(
10850
10879
  Box25,
10851
10880
  {
10852
10881
  sx: {
@@ -10860,16 +10889,16 @@ var LoadingScreen = ({ portal, sx, ...rest }) => {
10860
10889
  ...sx
10861
10890
  },
10862
10891
  ...rest,
10863
- children: /* @__PURE__ */ jsx104(LinearProgress, { color: "primary", sx: { width: 1, maxWidth: 360 } })
10892
+ children: /* @__PURE__ */ jsx105(LinearProgress, { color: "primary", sx: { width: 1, maxWidth: 360 } })
10864
10893
  }
10865
10894
  );
10866
10895
  if (portal) {
10867
- return /* @__PURE__ */ jsx104(Portal2, { children: content });
10896
+ return /* @__PURE__ */ jsx105(Portal2, { children: content });
10868
10897
  }
10869
10898
  return content;
10870
10899
  };
10871
10900
  var SplashScreen = ({ portal, sx, ...rest }) => {
10872
- const content = /* @__PURE__ */ jsx104(
10901
+ const content = /* @__PURE__ */ jsx105(
10873
10902
  Box25,
10874
10903
  {
10875
10904
  sx: {
@@ -10886,17 +10915,17 @@ var SplashScreen = ({ portal, sx, ...rest }) => {
10886
10915
  ...sx
10887
10916
  },
10888
10917
  ...rest,
10889
- children: /* @__PURE__ */ jsx104(AnimatedLogo, {})
10918
+ children: /* @__PURE__ */ jsx105(AnimatedLogo, {})
10890
10919
  }
10891
10920
  );
10892
10921
  if (portal) {
10893
- return /* @__PURE__ */ jsx104(Portal2, { children: content });
10922
+ return /* @__PURE__ */ jsx105(Portal2, { children: content });
10894
10923
  }
10895
10924
  return content;
10896
10925
  };
10897
10926
 
10898
10927
  // src/theme/core/components/mui-x-data-grid.tsx
10899
- import { jsx as jsx105, jsxs as jsxs64 } from "react/jsx-runtime";
10928
+ import { jsx as jsx106, jsxs as jsxs65 } from "react/jsx-runtime";
10900
10929
  var MuiDataGrid = {
10901
10930
  /** **************************************
10902
10931
  * DEFAULT PROPS
@@ -10904,9 +10933,9 @@ var MuiDataGrid = {
10904
10933
  defaultProps: {
10905
10934
  slots: {
10906
10935
  /* Column */
10907
- columnSortedAscendingIcon: (props) => /* @__PURE__ */ jsx105(DataGridArrowUpIcon, { sx: { color: "text.primary" }, ...props }),
10908
- columnSortedDescendingIcon: (props) => /* @__PURE__ */ jsx105(DataGridArrowDownIcon, { sx: { color: "text.primary" }, ...props }),
10909
- columnUnsortedIcon: (props) => /* @__PURE__ */ jsx105(
10936
+ columnSortedAscendingIcon: (props) => /* @__PURE__ */ jsx106(DataGridArrowUpIcon, { sx: { color: "text.primary" }, ...props }),
10937
+ columnSortedDescendingIcon: (props) => /* @__PURE__ */ jsx106(DataGridArrowDownIcon, { sx: { color: "text.primary" }, ...props }),
10938
+ columnUnsortedIcon: (props) => /* @__PURE__ */ jsx106(
10910
10939
  DataGridArrowUpIcon,
10911
10940
  {
10912
10941
  fontSize: props.fontSize,
@@ -10914,28 +10943,28 @@ var MuiDataGrid = {
10914
10943
  sx: { color: "text.disabled" }
10915
10944
  }
10916
10945
  ),
10917
- columnMenuIcon: (props) => /* @__PURE__ */ jsx105(DataGridMoreIcon, { width: 20, ...props }),
10918
- columnMenuSortAscendingIcon: (props) => /* @__PURE__ */ jsx105(DataGridArrowUpIcon, { ...props }),
10919
- columnMenuSortDescendingIcon: (props) => /* @__PURE__ */ jsx105(DataGridArrowDownIcon, { ...props }),
10920
- columnMenuFilterIcon: (props) => /* @__PURE__ */ jsx105(DataGridFilterIcon, { ...props }),
10921
- columnMenuHideIcon: (props) => /* @__PURE__ */ jsx105(DataGridEyeCloseIcon, { ...props }),
10922
- columnMenuManageColumnsIcon: (props) => /* @__PURE__ */ jsx105(DataGridEyeIcon, { ...props }),
10923
- columnSelectorIcon: (props) => /* @__PURE__ */ jsx105(DataGridEyeIcon, { ...props }),
10946
+ columnMenuIcon: (props) => /* @__PURE__ */ jsx106(DataGridMoreIcon, { width: 20, ...props }),
10947
+ columnMenuSortAscendingIcon: (props) => /* @__PURE__ */ jsx106(DataGridArrowUpIcon, { ...props }),
10948
+ columnMenuSortDescendingIcon: (props) => /* @__PURE__ */ jsx106(DataGridArrowDownIcon, { ...props }),
10949
+ columnMenuFilterIcon: (props) => /* @__PURE__ */ jsx106(DataGridFilterIcon, { ...props }),
10950
+ columnMenuHideIcon: (props) => /* @__PURE__ */ jsx106(DataGridEyeCloseIcon, { ...props }),
10951
+ columnMenuManageColumnsIcon: (props) => /* @__PURE__ */ jsx106(DataGridEyeIcon, { ...props }),
10952
+ columnSelectorIcon: (props) => /* @__PURE__ */ jsx106(DataGridEyeIcon, { ...props }),
10924
10953
  /* Filter */
10925
- filterPanelDeleteIcon: (props) => /* @__PURE__ */ jsx105(DataGridCloseIcon, { ...props }),
10926
- openFilterButtonIcon: (props) => /* @__PURE__ */ jsx105(DataGridFilterIcon, { ...props }),
10927
- columnFilteredIcon: (props) => /* @__PURE__ */ jsx105(DataGridFilterIcon, { sx: { width: 16, color: "text.primary" }, ...props }),
10954
+ filterPanelDeleteIcon: (props) => /* @__PURE__ */ jsx106(DataGridCloseIcon, { ...props }),
10955
+ openFilterButtonIcon: (props) => /* @__PURE__ */ jsx106(DataGridFilterIcon, { ...props }),
10956
+ columnFilteredIcon: (props) => /* @__PURE__ */ jsx106(DataGridFilterIcon, { sx: { width: 16, color: "text.primary" }, ...props }),
10928
10957
  /* Density */
10929
- densityCompactIcon: (props) => /* @__PURE__ */ jsx105(DataGridDensityCompactIcon, { ...props }),
10930
- densityStandardIcon: (props) => /* @__PURE__ */ jsx105(DataGridDensityStandardIcon, { ...props }),
10931
- densityComfortableIcon: (props) => /* @__PURE__ */ jsx105(DataGridDensityComfortableIcon, { ...props }),
10958
+ densityCompactIcon: (props) => /* @__PURE__ */ jsx106(DataGridDensityCompactIcon, { ...props }),
10959
+ densityStandardIcon: (props) => /* @__PURE__ */ jsx106(DataGridDensityStandardIcon, { ...props }),
10960
+ densityComfortableIcon: (props) => /* @__PURE__ */ jsx106(DataGridDensityComfortableIcon, { ...props }),
10932
10961
  /* Export */
10933
- exportIcon: (props) => /* @__PURE__ */ jsx105(DataGridExportIcon, { ...props }),
10962
+ exportIcon: (props) => /* @__PURE__ */ jsx106(DataGridExportIcon, { ...props }),
10934
10963
  /* Quick Filter */
10935
- quickFilterIcon: (props) => /* @__PURE__ */ jsx105(DataGridSearchIcon, { sx: { width: 24, height: 24, color: "text.secondary" }, ...props }),
10936
- quickFilterClearIcon: (props) => /* @__PURE__ */ jsx105(DataGridCloseIcon, { ...props }),
10964
+ quickFilterIcon: (props) => /* @__PURE__ */ jsx106(DataGridSearchIcon, { sx: { width: 24, height: 24, color: "text.secondary" }, ...props }),
10965
+ quickFilterClearIcon: (props) => /* @__PURE__ */ jsx106(DataGridCloseIcon, { ...props }),
10937
10966
  /* Actions Column */
10938
- moreActionsIcon: (props) => /* @__PURE__ */ jsx105(Icon, { icon: "MoreHorizontal", sx: { width: 20, height: 20 }, ...props })
10967
+ moreActionsIcon: (props) => /* @__PURE__ */ jsx106(Icon, { icon: "MoreHorizontal", sx: { width: 20, height: 20 }, ...props })
10939
10968
  },
10940
10969
  slotProps: {
10941
10970
  basePopper: { placement: "bottom-end" },
@@ -11112,15 +11141,15 @@ var MuiDataGrid = {
11112
11141
  }
11113
11142
  };
11114
11143
  var dataGrid = { MuiDataGrid };
11115
- var DataGridArrowUpIcon = ({ ...props }) => /* @__PURE__ */ jsxs64(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
11116
- /* @__PURE__ */ jsx105(
11144
+ var DataGridArrowUpIcon = ({ ...props }) => /* @__PURE__ */ jsxs65(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
11145
+ /* @__PURE__ */ jsx106(
11117
11146
  "path",
11118
11147
  {
11119
11148
  fill: "currentColor",
11120
11149
  d: "m8.303 11.596l3.327-3.431a.499.499 0 0 1 .74 0l6.43 6.63c.401.414.158 1.205-.37 1.205h-5.723z"
11121
11150
  }
11122
11151
  ),
11123
- /* @__PURE__ */ jsx105(
11152
+ /* @__PURE__ */ jsx106(
11124
11153
  "path",
11125
11154
  {
11126
11155
  fill: "currentColor",
@@ -11129,15 +11158,15 @@ var DataGridArrowUpIcon = ({ ...props }) => /* @__PURE__ */ jsxs64(SvgIcon3, { s
11129
11158
  }
11130
11159
  )
11131
11160
  ] });
11132
- var DataGridArrowDownIcon = ({ ...props }) => /* @__PURE__ */ jsxs64(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
11133
- /* @__PURE__ */ jsx105(
11161
+ var DataGridArrowDownIcon = ({ ...props }) => /* @__PURE__ */ jsxs65(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
11162
+ /* @__PURE__ */ jsx106(
11134
11163
  "path",
11135
11164
  {
11136
11165
  fill: "currentColor",
11137
11166
  d: "m8.303 12.404l3.327 3.431c.213.22.527.22.74 0l6.43-6.63C19.201 8.79 18.958 8 18.43 8h-5.723z"
11138
11167
  }
11139
11168
  ),
11140
- /* @__PURE__ */ jsx105(
11169
+ /* @__PURE__ */ jsx106(
11141
11170
  "path",
11142
11171
  {
11143
11172
  fill: "currentColor",
@@ -11146,15 +11175,15 @@ var DataGridArrowDownIcon = ({ ...props }) => /* @__PURE__ */ jsxs64(SvgIcon3, {
11146
11175
  }
11147
11176
  )
11148
11177
  ] });
11149
- var DataGridFilterIcon = ({ ...props }) => /* @__PURE__ */ jsx105(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsx105(
11178
+ var DataGridFilterIcon = ({ ...props }) => /* @__PURE__ */ jsx106(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsx106(
11150
11179
  "path",
11151
11180
  {
11152
11181
  fill: "currentColor",
11153
11182
  d: "M19 3H5c-1.414 0-2.121 0-2.56.412C2 3.824 2 4.488 2 5.815v.69c0 1.037 0 1.556.26 1.986c.26.43.733.698 1.682 1.232l2.913 1.64c.636.358.955.537 1.183.735c.474.411.766.895.898 1.49c.064.284.064.618.064 1.285v2.67c0 .909 0 1.364.252 1.718c.252.355.7.53 1.594.88c1.879.734 2.818 1.101 3.486.683c.668-.417.668-1.372.668-3.282v-2.67c0-.666 0-1 .064-1.285a2.68 2.68 0 0 1 .899-1.49c.227-.197.546-.376 1.182-.735l2.913-1.64c.948-.533 1.423-.8 1.682-1.23c.26-.43.26-.95.26-1.988v-.69c0-1.326 0-1.99-.44-2.402C21.122 3 20.415 3 19 3"
11154
11183
  }
11155
11184
  ) });
11156
- var DataGridExportIcon = ({ ...props }) => /* @__PURE__ */ jsxs64(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
11157
- /* @__PURE__ */ jsx105(
11185
+ var DataGridExportIcon = ({ ...props }) => /* @__PURE__ */ jsxs65(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
11186
+ /* @__PURE__ */ jsx106(
11158
11187
  "path",
11159
11188
  {
11160
11189
  fill: "currentColor",
@@ -11163,7 +11192,7 @@ var DataGridExportIcon = ({ ...props }) => /* @__PURE__ */ jsxs64(SvgIcon3, { sx
11163
11192
  clipRule: "evenodd"
11164
11193
  }
11165
11194
  ),
11166
- /* @__PURE__ */ jsx105(
11195
+ /* @__PURE__ */ jsx106(
11167
11196
  "path",
11168
11197
  {
11169
11198
  fill: "currentColor",
@@ -11171,9 +11200,9 @@ var DataGridExportIcon = ({ ...props }) => /* @__PURE__ */ jsxs64(SvgIcon3, { sx
11171
11200
  }
11172
11201
  )
11173
11202
  ] });
11174
- var DataGridEyeIcon = ({ ...props }) => /* @__PURE__ */ jsxs64(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
11175
- /* @__PURE__ */ jsx105("path", { fill: "currentColor", d: "M9.75 12a2.25 2.25 0 1 1 4.5 0a2.25 2.25 0 0 1-4.5 0" }),
11176
- /* @__PURE__ */ jsx105(
11203
+ var DataGridEyeIcon = ({ ...props }) => /* @__PURE__ */ jsxs65(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
11204
+ /* @__PURE__ */ jsx106("path", { fill: "currentColor", d: "M9.75 12a2.25 2.25 0 1 1 4.5 0a2.25 2.25 0 0 1-4.5 0" }),
11205
+ /* @__PURE__ */ jsx106(
11177
11206
  "path",
11178
11207
  {
11179
11208
  fill: "currentColor",
@@ -11183,7 +11212,7 @@ var DataGridEyeIcon = ({ ...props }) => /* @__PURE__ */ jsxs64(SvgIcon3, { sx: {
11183
11212
  }
11184
11213
  )
11185
11214
  ] });
11186
- var DataGridEyeCloseIcon = ({ ...props }) => /* @__PURE__ */ jsx105(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsx105(
11215
+ var DataGridEyeCloseIcon = ({ ...props }) => /* @__PURE__ */ jsx106(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsx106(
11187
11216
  "path",
11188
11217
  {
11189
11218
  fill: "currentColor",
@@ -11192,23 +11221,23 @@ var DataGridEyeCloseIcon = ({ ...props }) => /* @__PURE__ */ jsx105(SvgIcon3, {
11192
11221
  clipRule: "evenodd"
11193
11222
  }
11194
11223
  ) });
11195
- var DataGridSearchIcon = ({ ...props }) => /* @__PURE__ */ jsx105(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsx105(
11224
+ var DataGridSearchIcon = ({ ...props }) => /* @__PURE__ */ jsx106(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsx106(
11196
11225
  "path",
11197
11226
  {
11198
11227
  fill: "currentColor",
11199
11228
  d: "m20.71 19.29l-3.4-3.39A7.92 7.92 0 0 0 19 11a8 8 0 1 0-8 8a7.92 7.92 0 0 0 4.9-1.69l3.39 3.4a1 1 0 0 0 1.42 0a1 1 0 0 0 0-1.42M5 11a6 6 0 1 1 6 6a6 6 0 0 1-6-6"
11200
11229
  }
11201
11230
  ) });
11202
- var DataGridCloseIcon = ({ ...props }) => /* @__PURE__ */ jsx105(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsx105(
11231
+ var DataGridCloseIcon = ({ ...props }) => /* @__PURE__ */ jsx106(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsx106(
11203
11232
  "path",
11204
11233
  {
11205
11234
  fill: "currentColor",
11206
11235
  d: "m13.41 12l4.3-4.29a1 1 0 1 0-1.42-1.42L12 10.59l-4.29-4.3a1 1 0 0 0-1.42 1.42l4.3 4.29l-4.3 4.29a1 1 0 0 0 0 1.42a1 1 0 0 0 1.42 0l4.29-4.3l4.29 4.3a1 1 0 0 0 1.42 0a1 1 0 0 0 0-1.42Z"
11207
11236
  }
11208
11237
  ) });
11209
- var DataGridMoreIcon = ({ ...props }) => /* @__PURE__ */ jsx105(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsxs64("g", { fill: "none", children: [
11210
- /* @__PURE__ */ jsx105("path", { d: "M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" }),
11211
- /* @__PURE__ */ jsx105(
11238
+ var DataGridMoreIcon = ({ ...props }) => /* @__PURE__ */ jsx106(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsxs65("g", { fill: "none", children: [
11239
+ /* @__PURE__ */ jsx106("path", { d: "M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" }),
11240
+ /* @__PURE__ */ jsx106(
11212
11241
  "path",
11213
11242
  {
11214
11243
  fill: "currentColor",
@@ -11216,16 +11245,16 @@ var DataGridMoreIcon = ({ ...props }) => /* @__PURE__ */ jsx105(SvgIcon3, { sx:
11216
11245
  }
11217
11246
  )
11218
11247
  ] }) });
11219
- var DataGridDensityCompactIcon = ({ ...props }) => /* @__PURE__ */ jsx105(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsx105(
11248
+ var DataGridDensityCompactIcon = ({ ...props }) => /* @__PURE__ */ jsx106(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsx106(
11220
11249
  "path",
11221
11250
  {
11222
11251
  fill: "currentColor",
11223
11252
  d: "M4 15.5q-.425 0-.712-.288T3 14.5V14q0-.425.288-.712T4 13h16q.425 0 .713.288T21 14v.5q0 .425-.288.713T20 15.5zM4 11q-.425 0-.712-.288T3 10v-.5q0-.425.288-.712T4 8.5h16q.425 0 .713.288T21 9.5v.5q0 .425-.288.713T20 11zm0-4.5q-.425 0-.712-.288T3 5.5V5q0-.425.288-.712T4 4h16q.425 0 .713.288T21 5v.5q0 .425-.288.713T20 6.5zM4 20q-.425 0-.712-.288T3 19v-.5q0-.425.288-.712T4 17.5h16q.425 0 .713.288T21 18.5v.5q0 .425-.288.713T20 20z"
11224
11253
  }
11225
11254
  ) });
11226
- var DataGridDensityComfortableIcon = ({ ...props }) => /* @__PURE__ */ jsx105(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsxs64("g", { fill: "none", fillRule: "evenodd", children: [
11227
- /* @__PURE__ */ jsx105("path", { d: "M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" }),
11228
- /* @__PURE__ */ jsx105(
11255
+ var DataGridDensityComfortableIcon = ({ ...props }) => /* @__PURE__ */ jsx106(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsxs65("g", { fill: "none", fillRule: "evenodd", children: [
11256
+ /* @__PURE__ */ jsx106("path", { d: "M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" }),
11257
+ /* @__PURE__ */ jsx106(
11229
11258
  "path",
11230
11259
  {
11231
11260
  fill: "currentColor",
@@ -11233,9 +11262,9 @@ var DataGridDensityComfortableIcon = ({ ...props }) => /* @__PURE__ */ jsx105(Sv
11233
11262
  }
11234
11263
  )
11235
11264
  ] }) });
11236
- var DataGridDensityStandardIcon = ({ ...props }) => /* @__PURE__ */ jsx105(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsxs64("g", { fill: "none", children: [
11237
- /* @__PURE__ */ jsx105("path", { d: "M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" }),
11238
- /* @__PURE__ */ jsx105(
11265
+ var DataGridDensityStandardIcon = ({ ...props }) => /* @__PURE__ */ jsx106(SvgIcon3, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ jsxs65("g", { fill: "none", children: [
11266
+ /* @__PURE__ */ jsx106("path", { d: "M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" }),
11267
+ /* @__PURE__ */ jsx106(
11239
11268
  "path",
11240
11269
  {
11241
11270
  fill: "currentColor",
@@ -11393,19 +11422,24 @@ var MuiButtonGroup = {
11393
11422
  var buttonGroup = { MuiButtonGroup };
11394
11423
 
11395
11424
  // src/theme/core/components/autocomplete.tsx
11396
- import { svgIconClasses as svgIconClasses3 } from "@mui/material/SvgIcon";
11425
+ import { chipClasses as chipClasses2 } from "@mui/material/Chip";
11426
+ import { inputBaseClasses as inputBaseClasses4 } from "@mui/material/InputBase";
11397
11427
  import { autocompleteClasses as autocompleteClasses3 } from "@mui/material/Autocomplete";
11398
- import { jsx as jsx106 } from "react/jsx-runtime";
11428
+ import { jsx as jsx107 } from "react/jsx-runtime";
11399
11429
  var MuiAutocomplete = {
11400
11430
  /** **************************************
11401
11431
  * DEFAULT PROPS
11402
11432
  *************************************** */
11403
- defaultProps: { popupIcon: /* @__PURE__ */ jsx106(Icon, { icon: "NavArrowDown" }) },
11433
+ defaultProps: {
11434
+ popupIcon: /* @__PURE__ */ jsx107(Icon, { icon: "NavArrowDown" }),
11435
+ forcePopupIcon: true
11436
+ },
11404
11437
  /** **************************************
11405
11438
  * STYLE
11406
11439
  *************************************** */
11407
11440
  styleOverrides: {
11408
- root: ({ theme }) => ({
11441
+ root: ({ theme, ownerState }) => ({
11442
+ // Tag count badge (e.g., "+2")
11409
11443
  [`& span.${autocompleteClasses3.tag}`]: {
11410
11444
  ...theme.typography.subtitle2,
11411
11445
  height: 24,
@@ -11413,9 +11447,80 @@ var MuiAutocomplete = {
11413
11447
  lineHeight: "24px",
11414
11448
  textAlign: "center",
11415
11449
  padding: theme.spacing(0, 0.75),
11416
- color: theme.vars.palette.text.secondary,
11417
- borderRadius: theme.shape.borderRadius,
11418
- backgroundColor: varAlpha(theme.vars.palette.grey["500Channel"], 0.16)
11450
+ color: theme.vars.palette.neutral[950],
11451
+ borderRadius: theme.radius["radius-sm"],
11452
+ backgroundColor: theme.vars.palette.neutral[100]
11453
+ },
11454
+ // Chip tags in multiple mode
11455
+ [`& .${autocompleteClasses3.tag}.${chipClasses2.root}`]: {
11456
+ height: 26,
11457
+ margin: theme.spacing(0.5, 0.5, 0.5, 0),
11458
+ fontSize: theme.typography.caption.fontSize,
11459
+ fontWeight: theme.typography.fontWeightMedium,
11460
+ color: theme.vars.palette.neutral[950],
11461
+ backgroundColor: theme.vars.palette.neutral[100]
11462
+ },
11463
+ // Default medium size - 20x20 end adornment icons
11464
+ [`& .${autocompleteClasses3.endAdornment} svg`]: {
11465
+ width: 20,
11466
+ height: 20
11467
+ },
11468
+ // Size small - 16x16 end adornment icons
11469
+ ...ownerState.size === "small" && {
11470
+ [`& .${autocompleteClasses3.endAdornment} svg`]: {
11471
+ width: 16,
11472
+ height: 16
11473
+ }
11474
+ },
11475
+ // Size large - 24x24 end adornment icons
11476
+ ...ownerState.size === "large" && {
11477
+ [`& .${autocompleteClasses3.endAdornment} svg`]: {
11478
+ width: 24,
11479
+ height: 24
11480
+ }
11481
+ }
11482
+ }),
11483
+ // Input root - override fixed heights for multiple mode
11484
+ inputRoot: ({ theme, ownerState }) => ({
11485
+ // Allow flexible height for multiple selections
11486
+ height: "auto",
11487
+ minHeight: 44,
11488
+ flexWrap: "wrap",
11489
+ alignItems: "center",
11490
+ paddingTop: theme.spacing(0),
11491
+ paddingBottom: theme.spacing(0),
11492
+ paddingLeft: theme.spacing(1),
11493
+ paddingRight: `${theme.spacing(4)} !important`,
11494
+ // Space for clear/popup icons
11495
+ // Size small
11496
+ ...ownerState.size === "small" && {
11497
+ minHeight: 36,
11498
+ [`& .${autocompleteClasses3.tag}.${chipClasses2.root}`]: {
11499
+ height: 22,
11500
+ margin: theme.spacing(0.25, 0.25, 0.25, 0)
11501
+ }
11502
+ },
11503
+ // Size large
11504
+ ...ownerState.size === "large" && {
11505
+ minHeight: 48,
11506
+ paddingTop: theme.spacing(1),
11507
+ paddingBottom: theme.spacing(1),
11508
+ [`& .${autocompleteClasses3.tag}.${chipClasses2.root}`]: {
11509
+ height: 28,
11510
+ margin: theme.spacing(0.5, 0.5, 0.5, 0)
11511
+ }
11512
+ },
11513
+ // Adornment adjustments
11514
+ [`&.${inputBaseClasses4.adornedStart}`]: {
11515
+ paddingLeft: theme.spacing(1.5)
11516
+ }
11517
+ }),
11518
+ // Input field inside autocomplete
11519
+ input: ({ theme }) => ({
11520
+ padding: `${theme.spacing(0.75, 0.75)} !important`,
11521
+ minWidth: 80,
11522
+ [`&.${inputBaseClasses4.sizeSmall}`]: {
11523
+ padding: `${theme.spacing(0.5, 0.5)} !important`
11419
11524
  }
11420
11525
  }),
11421
11526
  paper: ({ theme }) => ({
@@ -11427,7 +11532,14 @@ var MuiAutocomplete = {
11427
11532
  ...menuItem(theme)
11428
11533
  }
11429
11534
  }),
11430
- endAdornment: { [`& .${svgIconClasses3.root}`]: { width: 24, height: 24 } }
11535
+ endAdornment: ({ theme }) => ({
11536
+ top: "50%",
11537
+ transform: "translateY(-50%)",
11538
+ right: theme.spacing(1)
11539
+ }),
11540
+ clearIndicator: ({ theme }) => ({
11541
+ marginRight: theme.spacing(0.5)
11542
+ })
11431
11543
  }
11432
11544
  };
11433
11545
  var autocomplete = { MuiAutocomplete };
@@ -11525,11 +11637,11 @@ var toggleButton = { MuiToggleButton, MuiToggleButtonGroup };
11525
11637
 
11526
11638
  // src/theme/core/components/mui-x-date-picker.tsx
11527
11639
  import IconButton7 from "@mui/material/IconButton";
11528
- import Typography14 from "@mui/material/Typography";
11640
+ import Typography15 from "@mui/material/Typography";
11529
11641
  import { buttonClasses as buttonClasses3 } from "@mui/material/Button";
11530
11642
  import { styled as styled3 } from "@mui/material/styles";
11531
11643
  import { dialogActionsClasses } from "@mui/material/DialogActions";
11532
- import { jsx as jsx107, jsxs as jsxs65 } from "react/jsx-runtime";
11644
+ import { jsx as jsx108, jsxs as jsxs66 } from "react/jsx-runtime";
11533
11645
  var CustomCalendarHeaderRoot = styled3("div")(({ theme }) => ({
11534
11646
  display: "flex",
11535
11647
  justifyContent: "space-between",
@@ -11567,10 +11679,10 @@ function CustomCalendarHeader(props) {
11567
11679
  onViewChange("year");
11568
11680
  }
11569
11681
  };
11570
- return /* @__PURE__ */ jsxs65(CustomCalendarHeaderRoot, { children: [
11571
- /* @__PURE__ */ jsx107(CustomIconButton, { onClick: selectPreviousMonth, title: "Previous month", size: "small", children: /* @__PURE__ */ jsx107(Icon, { icon: "NavArrowLeft", width: 16 }) }),
11572
- /* @__PURE__ */ jsx107(
11573
- Typography14,
11682
+ return /* @__PURE__ */ jsxs66(CustomCalendarHeaderRoot, { children: [
11683
+ /* @__PURE__ */ jsx108(CustomIconButton, { onClick: selectPreviousMonth, title: "Previous month", size: "small", children: /* @__PURE__ */ jsx108(Icon, { icon: "NavArrowLeft", width: 16 }) }),
11684
+ /* @__PURE__ */ jsx108(
11685
+ Typography15,
11574
11686
  {
11575
11687
  variant: "subtitle1",
11576
11688
  onClick: handleLabelClick,
@@ -11584,7 +11696,7 @@ function CustomCalendarHeader(props) {
11584
11696
  children: monthLabel
11585
11697
  }
11586
11698
  ),
11587
- /* @__PURE__ */ jsx107(CustomIconButton, { onClick: selectNextMonth, title: "Next month", size: "small", children: /* @__PURE__ */ jsx107(Icon, { icon: "NavArrowRight", width: 16 }) })
11699
+ /* @__PURE__ */ jsx108(CustomIconButton, { onClick: selectNextMonth, title: "Next month", size: "small", children: /* @__PURE__ */ jsx108(Icon, { icon: "NavArrowRight", width: 16 }) })
11588
11700
  ] });
11589
11701
  }
11590
11702
  var localeText = {
@@ -11592,13 +11704,13 @@ var localeText = {
11592
11704
  };
11593
11705
  var defaultProps = {
11594
11706
  date: {
11595
- openPickerIcon: () => /* @__PURE__ */ jsx107(Icon, { icon: "Calendar", sx: { width: 20, height: 20 } }),
11707
+ openPickerIcon: () => /* @__PURE__ */ jsx108(Icon, { icon: "Calendar", sx: { width: 20, height: 20 } }),
11596
11708
  calendarHeader: CustomCalendarHeader
11597
11709
  },
11598
11710
  time: {
11599
- openPickerIcon: () => /* @__PURE__ */ jsx107(Icon, { icon: "Clock", sx: { width: 20, height: 20 } }),
11600
- rightArrowIcon: () => /* @__PURE__ */ jsx107(Icon, { icon: "NavArrowRight" }),
11601
- switchViewIcon: () => /* @__PURE__ */ jsx107(Icon, { icon: "NavArrowDownSolid" })
11711
+ openPickerIcon: () => /* @__PURE__ */ jsx108(Icon, { icon: "Clock", sx: { width: 20, height: 20 } }),
11712
+ rightArrowIcon: () => /* @__PURE__ */ jsx108(Icon, { icon: "NavArrowRight" }),
11713
+ switchViewIcon: () => /* @__PURE__ */ jsx108(Icon, { icon: "NavArrowDownSolid" })
11602
11714
  }
11603
11715
  };
11604
11716
  var dateViews = ["year", "month", "day"];
@@ -12029,18 +12141,18 @@ import "@fontsource/geist/500.css";
12029
12141
  import "@fontsource/geist/600.css";
12030
12142
  import "@fontsource/geist/700.css";
12031
12143
  import "./satoshi-4X3TX4PE.css";
12032
- import { jsx as jsx108, jsxs as jsxs66 } from "react/jsx-runtime";
12144
+ import { jsx as jsx109, jsxs as jsxs67 } from "react/jsx-runtime";
12033
12145
  var ThemeProvider = ({ children }) => {
12034
12146
  const settings = useSettings();
12035
12147
  const theme = createTheme(settings);
12036
- return /* @__PURE__ */ jsxs66(
12148
+ return /* @__PURE__ */ jsxs67(
12037
12149
  MuiThemeProvider,
12038
12150
  {
12039
12151
  theme,
12040
12152
  defaultMode: schemeConfig.defaultMode,
12041
12153
  modeStorageKey: schemeConfig.modeStorageKey,
12042
12154
  children: [
12043
- /* @__PURE__ */ jsx108(CssBaseline, {}),
12155
+ /* @__PURE__ */ jsx109(CssBaseline, {}),
12044
12156
  children
12045
12157
  ]
12046
12158
  }
@@ -12069,6 +12181,7 @@ export {
12069
12181
  CopyButton,
12070
12182
  CustomDialog,
12071
12183
  CustomDrawer,
12184
+ CustomFormLabel,
12072
12185
  DateRangeDropdown,
12073
12186
  DateRangePicker,
12074
12187
  Download,