@undefine-ui/design-system 3.6.1 → 3.7.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/README.md +212 -0
- package/dist/index.cjs +198 -104
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +198 -104
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -50,6 +50,7 @@ __export(index_exports, {
|
|
|
50
50
|
CopyButton: () => CopyButton,
|
|
51
51
|
CustomDialog: () => CustomDialog,
|
|
52
52
|
CustomDrawer: () => CustomDrawer,
|
|
53
|
+
CustomFormLabel: () => CustomFormLabel,
|
|
53
54
|
DateRangeDropdown: () => DateRangeDropdown,
|
|
54
55
|
DateRangePicker: () => DateRangePicker,
|
|
55
56
|
Download: () => Download,
|
|
@@ -6116,7 +6117,7 @@ var MuiTextField = {
|
|
|
6116
6117
|
position: "relative",
|
|
6117
6118
|
fontSize: `${theme.typography.h8.fontSize} !important`,
|
|
6118
6119
|
fontWeight: `${theme.typography.fontWeightMedium} !important`,
|
|
6119
|
-
marginBottom: theme.spacing(
|
|
6120
|
+
marginBottom: theme.spacing(0.5),
|
|
6120
6121
|
color: `${theme.vars.palette.icon.black} !important`,
|
|
6121
6122
|
// Focused state
|
|
6122
6123
|
"&:not(.Mui-error).MuiFormLabel-colorPrimary.Mui-focused": {
|
|
@@ -6257,32 +6258,15 @@ var MuiTextField = {
|
|
|
6257
6258
|
overflowX: "hidden"
|
|
6258
6259
|
}
|
|
6259
6260
|
},
|
|
6260
|
-
// Autocomplete styling
|
|
6261
|
-
[`& .${import_Autocomplete2.autocompleteClasses.input}`]: {
|
|
6262
|
-
paddingLeft: "6px !important",
|
|
6263
|
-
paddingTop: "10px !important",
|
|
6264
|
-
paddingBottom: "10px !important",
|
|
6265
|
-
[`&.${import_InputBase.inputBaseClasses.sizeSmall}`]: {
|
|
6266
|
-
paddingLeft: "6px !important",
|
|
6267
|
-
paddingTop: "2.5px !important",
|
|
6268
|
-
paddingBottom: "2.5px !important"
|
|
6269
|
-
}
|
|
6270
|
-
},
|
|
6261
|
+
// Autocomplete styling - allow flexible height for multiple mode
|
|
6271
6262
|
[`& .${import_Autocomplete2.autocompleteClasses.inputRoot}`]: {
|
|
6272
|
-
|
|
6273
|
-
|
|
6274
|
-
paddingBottom: "15.5px !important",
|
|
6275
|
-
"&:not(.MuiInputBase-sizeSmall).MuiInputBase-adornedStart": {
|
|
6276
|
-
paddingLeft: "13px !important"
|
|
6277
|
-
},
|
|
6263
|
+
height: "auto",
|
|
6264
|
+
minHeight: 44,
|
|
6278
6265
|
[`&.${import_InputBase.inputBaseClasses.sizeSmall}`]: {
|
|
6279
|
-
|
|
6280
|
-
|
|
6281
|
-
|
|
6282
|
-
|
|
6283
|
-
margin: 2,
|
|
6284
|
-
height: 22
|
|
6285
|
-
}
|
|
6266
|
+
minHeight: 36
|
|
6267
|
+
},
|
|
6268
|
+
[`&.MuiInputBase-sizeLarge`]: {
|
|
6269
|
+
minHeight: 48
|
|
6286
6270
|
}
|
|
6287
6271
|
}
|
|
6288
6272
|
})
|
|
@@ -6459,6 +6443,7 @@ __export(components_exports2, {
|
|
|
6459
6443
|
CopyButton: () => CopyButton,
|
|
6460
6444
|
CustomDialog: () => CustomDialog,
|
|
6461
6445
|
CustomDrawer: () => CustomDrawer,
|
|
6446
|
+
CustomFormLabel: () => CustomFormLabel,
|
|
6462
6447
|
DateRangeDropdown: () => DateRangeDropdown,
|
|
6463
6448
|
DateRangePicker: () => DateRangePicker,
|
|
6464
6449
|
Download: () => Download,
|
|
@@ -10553,7 +10538,27 @@ var RHFGooglePlacesAutocomplete = ({
|
|
|
10553
10538
|
}
|
|
10554
10539
|
};
|
|
10555
10540
|
}
|
|
10556
|
-
|
|
10541
|
+
if (field.value.address || field.value.city || field.value.country) {
|
|
10542
|
+
const addressParts = [
|
|
10543
|
+
field.value.address,
|
|
10544
|
+
field.value.city,
|
|
10545
|
+
field.value.state,
|
|
10546
|
+
field.value.country
|
|
10547
|
+
].filter(Boolean);
|
|
10548
|
+
const displayText = addressParts.join(", ");
|
|
10549
|
+
return {
|
|
10550
|
+
description: displayText,
|
|
10551
|
+
structured_formatting: {
|
|
10552
|
+
main_text: field.value.address || field.value.city || displayText,
|
|
10553
|
+
main_text_matched_substrings: [],
|
|
10554
|
+
secondary_text: addressParts.slice(1).join(", ")
|
|
10555
|
+
}
|
|
10556
|
+
};
|
|
10557
|
+
}
|
|
10558
|
+
if (field.value.description) {
|
|
10559
|
+
return field.value;
|
|
10560
|
+
}
|
|
10561
|
+
return null;
|
|
10557
10562
|
};
|
|
10558
10563
|
const handleChange = (newValue) => {
|
|
10559
10564
|
onValueChange?.(newValue);
|
|
@@ -10791,20 +10796,38 @@ var Field = {
|
|
|
10791
10796
|
GooglePlacesAutocomplete: RHFGooglePlacesAutocomplete
|
|
10792
10797
|
};
|
|
10793
10798
|
|
|
10794
|
-
// src/components/
|
|
10799
|
+
// src/components/FormLabel/index.tsx
|
|
10795
10800
|
var import_Tooltip2 = __toESM(require("@mui/material/Tooltip"), 1);
|
|
10796
|
-
var
|
|
10801
|
+
var import_Typography15 = __toESM(require("@mui/material/Typography"), 1);
|
|
10802
|
+
var import_FormLabel4 = __toESM(require("@mui/material/FormLabel"), 1);
|
|
10797
10803
|
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
10804
|
+
var CustomFormLabel = ({
|
|
10805
|
+
label,
|
|
10806
|
+
tooltip: tooltip2,
|
|
10807
|
+
icon: icon2,
|
|
10808
|
+
optional,
|
|
10809
|
+
sx,
|
|
10810
|
+
...rest
|
|
10811
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(import_FormLabel4.default, { sx: { mb: 0.5, display: "flex", alignItems: "center", gap: 0.5, ...sx }, ...rest, children: [
|
|
10812
|
+
label,
|
|
10813
|
+
optional && /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_Typography15.default, { component: "span", variant: "caption", color: "text.secondary", children: "(Optional)" }),
|
|
10814
|
+
tooltip2 && /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_Tooltip2.default, { placement: "right", title: tooltip2, children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("span", { style: { display: "inline-flex" }, children: icon2 ?? /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(Icon, { icon: "InfoCircle", sx: { width: 16, height: 16, color: "icons.black" } }) }) })
|
|
10815
|
+
] });
|
|
10816
|
+
|
|
10817
|
+
// src/components/CopyButton/index.tsx
|
|
10818
|
+
var import_Tooltip3 = __toESM(require("@mui/material/Tooltip"), 1);
|
|
10819
|
+
var import_IconButton6 = __toESM(require("@mui/material/IconButton"), 1);
|
|
10820
|
+
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
10798
10821
|
var CopyButton = ({ text: text2, size = "small" }) => {
|
|
10799
10822
|
const { copy, isCopied } = useCopyToClipboard();
|
|
10800
|
-
return /* @__PURE__ */ (0,
|
|
10823
|
+
return /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_Tooltip3.default, { title: isCopied ? "Copied" : "Copy", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
10801
10824
|
import_IconButton6.default,
|
|
10802
10825
|
{
|
|
10803
10826
|
size,
|
|
10804
10827
|
onClick: () => copy(text2),
|
|
10805
10828
|
"aria-label": "copy token",
|
|
10806
10829
|
sx: { color: "icon.black" },
|
|
10807
|
-
children: /* @__PURE__ */ (0,
|
|
10830
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { icon: isCopied ? "ClipboardCheck" : "Copy", sx: { width: 20, height: 20 } })
|
|
10808
10831
|
}
|
|
10809
10832
|
) });
|
|
10810
10833
|
};
|
|
@@ -10813,9 +10836,9 @@ var CopyButton = ({ text: text2, size = "small" }) => {
|
|
|
10813
10836
|
var import_Portal2 = __toESM(require("@mui/material/Portal"), 1);
|
|
10814
10837
|
var import_Box25 = __toESM(require("@mui/material/Box"), 1);
|
|
10815
10838
|
var import_LinearProgress = __toESM(require("@mui/material/LinearProgress"), 1);
|
|
10816
|
-
var
|
|
10839
|
+
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
10817
10840
|
var LoadingScreen = ({ portal, sx, ...rest }) => {
|
|
10818
|
-
const content = /* @__PURE__ */ (0,
|
|
10841
|
+
const content = /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
10819
10842
|
import_Box25.default,
|
|
10820
10843
|
{
|
|
10821
10844
|
sx: {
|
|
@@ -10829,16 +10852,16 @@ var LoadingScreen = ({ portal, sx, ...rest }) => {
|
|
|
10829
10852
|
...sx
|
|
10830
10853
|
},
|
|
10831
10854
|
...rest,
|
|
10832
|
-
children: /* @__PURE__ */ (0,
|
|
10855
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_LinearProgress.default, { color: "primary", sx: { width: 1, maxWidth: 360 } })
|
|
10833
10856
|
}
|
|
10834
10857
|
);
|
|
10835
10858
|
if (portal) {
|
|
10836
|
-
return /* @__PURE__ */ (0,
|
|
10859
|
+
return /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_Portal2.default, { children: content });
|
|
10837
10860
|
}
|
|
10838
10861
|
return content;
|
|
10839
10862
|
};
|
|
10840
10863
|
var SplashScreen = ({ portal, sx, ...rest }) => {
|
|
10841
|
-
const content = /* @__PURE__ */ (0,
|
|
10864
|
+
const content = /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
10842
10865
|
import_Box25.default,
|
|
10843
10866
|
{
|
|
10844
10867
|
sx: {
|
|
@@ -10855,17 +10878,17 @@ var SplashScreen = ({ portal, sx, ...rest }) => {
|
|
|
10855
10878
|
...sx
|
|
10856
10879
|
},
|
|
10857
10880
|
...rest,
|
|
10858
|
-
children: /* @__PURE__ */ (0,
|
|
10881
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(AnimatedLogo, {})
|
|
10859
10882
|
}
|
|
10860
10883
|
);
|
|
10861
10884
|
if (portal) {
|
|
10862
|
-
return /* @__PURE__ */ (0,
|
|
10885
|
+
return /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_Portal2.default, { children: content });
|
|
10863
10886
|
}
|
|
10864
10887
|
return content;
|
|
10865
10888
|
};
|
|
10866
10889
|
|
|
10867
10890
|
// src/theme/core/components/mui-x-data-grid.tsx
|
|
10868
|
-
var
|
|
10891
|
+
var import_jsx_runtime106 = require("react/jsx-runtime");
|
|
10869
10892
|
var MuiDataGrid = {
|
|
10870
10893
|
/** **************************************
|
|
10871
10894
|
* DEFAULT PROPS
|
|
@@ -10873,9 +10896,9 @@ var MuiDataGrid = {
|
|
|
10873
10896
|
defaultProps: {
|
|
10874
10897
|
slots: {
|
|
10875
10898
|
/* Column */
|
|
10876
|
-
columnSortedAscendingIcon: (props) => /* @__PURE__ */ (0,
|
|
10877
|
-
columnSortedDescendingIcon: (props) => /* @__PURE__ */ (0,
|
|
10878
|
-
columnUnsortedIcon: (props) => /* @__PURE__ */ (0,
|
|
10899
|
+
columnSortedAscendingIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridArrowUpIcon, { sx: { color: "text.primary" }, ...props }),
|
|
10900
|
+
columnSortedDescendingIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridArrowDownIcon, { sx: { color: "text.primary" }, ...props }),
|
|
10901
|
+
columnUnsortedIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
10879
10902
|
DataGridArrowUpIcon,
|
|
10880
10903
|
{
|
|
10881
10904
|
fontSize: props.fontSize,
|
|
@@ -10883,28 +10906,28 @@ var MuiDataGrid = {
|
|
|
10883
10906
|
sx: { color: "text.disabled" }
|
|
10884
10907
|
}
|
|
10885
10908
|
),
|
|
10886
|
-
columnMenuIcon: (props) => /* @__PURE__ */ (0,
|
|
10887
|
-
columnMenuSortAscendingIcon: (props) => /* @__PURE__ */ (0,
|
|
10888
|
-
columnMenuSortDescendingIcon: (props) => /* @__PURE__ */ (0,
|
|
10889
|
-
columnMenuFilterIcon: (props) => /* @__PURE__ */ (0,
|
|
10890
|
-
columnMenuHideIcon: (props) => /* @__PURE__ */ (0,
|
|
10891
|
-
columnMenuManageColumnsIcon: (props) => /* @__PURE__ */ (0,
|
|
10892
|
-
columnSelectorIcon: (props) => /* @__PURE__ */ (0,
|
|
10909
|
+
columnMenuIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridMoreIcon, { width: 20, ...props }),
|
|
10910
|
+
columnMenuSortAscendingIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridArrowUpIcon, { ...props }),
|
|
10911
|
+
columnMenuSortDescendingIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridArrowDownIcon, { ...props }),
|
|
10912
|
+
columnMenuFilterIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridFilterIcon, { ...props }),
|
|
10913
|
+
columnMenuHideIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridEyeCloseIcon, { ...props }),
|
|
10914
|
+
columnMenuManageColumnsIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridEyeIcon, { ...props }),
|
|
10915
|
+
columnSelectorIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridEyeIcon, { ...props }),
|
|
10893
10916
|
/* Filter */
|
|
10894
|
-
filterPanelDeleteIcon: (props) => /* @__PURE__ */ (0,
|
|
10895
|
-
openFilterButtonIcon: (props) => /* @__PURE__ */ (0,
|
|
10896
|
-
columnFilteredIcon: (props) => /* @__PURE__ */ (0,
|
|
10917
|
+
filterPanelDeleteIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridCloseIcon, { ...props }),
|
|
10918
|
+
openFilterButtonIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridFilterIcon, { ...props }),
|
|
10919
|
+
columnFilteredIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridFilterIcon, { sx: { width: 16, color: "text.primary" }, ...props }),
|
|
10897
10920
|
/* Density */
|
|
10898
|
-
densityCompactIcon: (props) => /* @__PURE__ */ (0,
|
|
10899
|
-
densityStandardIcon: (props) => /* @__PURE__ */ (0,
|
|
10900
|
-
densityComfortableIcon: (props) => /* @__PURE__ */ (0,
|
|
10921
|
+
densityCompactIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridDensityCompactIcon, { ...props }),
|
|
10922
|
+
densityStandardIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridDensityStandardIcon, { ...props }),
|
|
10923
|
+
densityComfortableIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridDensityComfortableIcon, { ...props }),
|
|
10901
10924
|
/* Export */
|
|
10902
|
-
exportIcon: (props) => /* @__PURE__ */ (0,
|
|
10925
|
+
exportIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridExportIcon, { ...props }),
|
|
10903
10926
|
/* Quick Filter */
|
|
10904
|
-
quickFilterIcon: (props) => /* @__PURE__ */ (0,
|
|
10905
|
-
quickFilterClearIcon: (props) => /* @__PURE__ */ (0,
|
|
10927
|
+
quickFilterIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridSearchIcon, { sx: { width: 24, height: 24, color: "text.secondary" }, ...props }),
|
|
10928
|
+
quickFilterClearIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(DataGridCloseIcon, { ...props }),
|
|
10906
10929
|
/* Actions Column */
|
|
10907
|
-
moreActionsIcon: (props) => /* @__PURE__ */ (0,
|
|
10930
|
+
moreActionsIcon: (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(Icon, { icon: "MoreHorizontal", sx: { width: 20, height: 20 }, ...props })
|
|
10908
10931
|
},
|
|
10909
10932
|
slotProps: {
|
|
10910
10933
|
basePopper: { placement: "bottom-end" },
|
|
@@ -11081,15 +11104,15 @@ var MuiDataGrid = {
|
|
|
11081
11104
|
}
|
|
11082
11105
|
};
|
|
11083
11106
|
var dataGrid = { MuiDataGrid };
|
|
11084
|
-
var DataGridArrowUpIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11085
|
-
/* @__PURE__ */ (0,
|
|
11107
|
+
var DataGridArrowUpIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
|
|
11108
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11086
11109
|
"path",
|
|
11087
11110
|
{
|
|
11088
11111
|
fill: "currentColor",
|
|
11089
11112
|
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"
|
|
11090
11113
|
}
|
|
11091
11114
|
),
|
|
11092
|
-
/* @__PURE__ */ (0,
|
|
11115
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11093
11116
|
"path",
|
|
11094
11117
|
{
|
|
11095
11118
|
fill: "currentColor",
|
|
@@ -11098,15 +11121,15 @@ var DataGridArrowUpIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runti
|
|
|
11098
11121
|
}
|
|
11099
11122
|
)
|
|
11100
11123
|
] });
|
|
11101
|
-
var DataGridArrowDownIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11102
|
-
/* @__PURE__ */ (0,
|
|
11124
|
+
var DataGridArrowDownIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
|
|
11125
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11103
11126
|
"path",
|
|
11104
11127
|
{
|
|
11105
11128
|
fill: "currentColor",
|
|
11106
11129
|
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"
|
|
11107
11130
|
}
|
|
11108
11131
|
),
|
|
11109
|
-
/* @__PURE__ */ (0,
|
|
11132
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11110
11133
|
"path",
|
|
11111
11134
|
{
|
|
11112
11135
|
fill: "currentColor",
|
|
@@ -11115,15 +11138,15 @@ var DataGridArrowDownIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
11115
11138
|
}
|
|
11116
11139
|
)
|
|
11117
11140
|
] });
|
|
11118
|
-
var DataGridFilterIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11141
|
+
var DataGridFilterIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11119
11142
|
"path",
|
|
11120
11143
|
{
|
|
11121
11144
|
fill: "currentColor",
|
|
11122
11145
|
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"
|
|
11123
11146
|
}
|
|
11124
11147
|
) });
|
|
11125
|
-
var DataGridExportIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11126
|
-
/* @__PURE__ */ (0,
|
|
11148
|
+
var DataGridExportIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
|
|
11149
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11127
11150
|
"path",
|
|
11128
11151
|
{
|
|
11129
11152
|
fill: "currentColor",
|
|
@@ -11132,7 +11155,7 @@ var DataGridExportIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtim
|
|
|
11132
11155
|
clipRule: "evenodd"
|
|
11133
11156
|
}
|
|
11134
11157
|
),
|
|
11135
|
-
/* @__PURE__ */ (0,
|
|
11158
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11136
11159
|
"path",
|
|
11137
11160
|
{
|
|
11138
11161
|
fill: "currentColor",
|
|
@@ -11140,9 +11163,9 @@ var DataGridExportIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtim
|
|
|
11140
11163
|
}
|
|
11141
11164
|
)
|
|
11142
11165
|
] });
|
|
11143
|
-
var DataGridEyeIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11144
|
-
/* @__PURE__ */ (0,
|
|
11145
|
-
/* @__PURE__ */ (0,
|
|
11166
|
+
var DataGridEyeIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: [
|
|
11167
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)("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" }),
|
|
11168
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11146
11169
|
"path",
|
|
11147
11170
|
{
|
|
11148
11171
|
fill: "currentColor",
|
|
@@ -11152,7 +11175,7 @@ var DataGridEyeIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime10
|
|
|
11152
11175
|
}
|
|
11153
11176
|
)
|
|
11154
11177
|
] });
|
|
11155
|
-
var DataGridEyeCloseIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11178
|
+
var DataGridEyeCloseIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11156
11179
|
"path",
|
|
11157
11180
|
{
|
|
11158
11181
|
fill: "currentColor",
|
|
@@ -11161,23 +11184,23 @@ var DataGridEyeCloseIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runt
|
|
|
11161
11184
|
clipRule: "evenodd"
|
|
11162
11185
|
}
|
|
11163
11186
|
) });
|
|
11164
|
-
var DataGridSearchIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11187
|
+
var DataGridSearchIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11165
11188
|
"path",
|
|
11166
11189
|
{
|
|
11167
11190
|
fill: "currentColor",
|
|
11168
11191
|
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"
|
|
11169
11192
|
}
|
|
11170
11193
|
) });
|
|
11171
|
-
var DataGridCloseIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11194
|
+
var DataGridCloseIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11172
11195
|
"path",
|
|
11173
11196
|
{
|
|
11174
11197
|
fill: "currentColor",
|
|
11175
11198
|
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"
|
|
11176
11199
|
}
|
|
11177
11200
|
) });
|
|
11178
|
-
var DataGridMoreIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11179
|
-
/* @__PURE__ */ (0,
|
|
11180
|
-
/* @__PURE__ */ (0,
|
|
11201
|
+
var DataGridMoreIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("g", { fill: "none", children: [
|
|
11202
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)("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" }),
|
|
11203
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11181
11204
|
"path",
|
|
11182
11205
|
{
|
|
11183
11206
|
fill: "currentColor",
|
|
@@ -11185,16 +11208,16 @@ var DataGridMoreIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime1
|
|
|
11185
11208
|
}
|
|
11186
11209
|
)
|
|
11187
11210
|
] }) });
|
|
11188
|
-
var DataGridDensityCompactIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11211
|
+
var DataGridDensityCompactIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11189
11212
|
"path",
|
|
11190
11213
|
{
|
|
11191
11214
|
fill: "currentColor",
|
|
11192
11215
|
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"
|
|
11193
11216
|
}
|
|
11194
11217
|
) });
|
|
11195
|
-
var DataGridDensityComfortableIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11196
|
-
/* @__PURE__ */ (0,
|
|
11197
|
-
/* @__PURE__ */ (0,
|
|
11218
|
+
var DataGridDensityComfortableIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("g", { fill: "none", fillRule: "evenodd", children: [
|
|
11219
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)("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" }),
|
|
11220
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11198
11221
|
"path",
|
|
11199
11222
|
{
|
|
11200
11223
|
fill: "currentColor",
|
|
@@ -11202,9 +11225,9 @@ var DataGridDensityComfortableIcon = ({ ...props }) => /* @__PURE__ */ (0, impor
|
|
|
11202
11225
|
}
|
|
11203
11226
|
)
|
|
11204
11227
|
] }) });
|
|
11205
|
-
var DataGridDensityStandardIcon = ({ ...props }) => /* @__PURE__ */ (0,
|
|
11206
|
-
/* @__PURE__ */ (0,
|
|
11207
|
-
/* @__PURE__ */ (0,
|
|
11228
|
+
var DataGridDensityStandardIcon = ({ ...props }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_SvgIcon3.default, { sx: { width: 20, height: 20, ...props.sx }, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("g", { fill: "none", children: [
|
|
11229
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)("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" }),
|
|
11230
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
11208
11231
|
"path",
|
|
11209
11232
|
{
|
|
11210
11233
|
fill: "currentColor",
|
|
@@ -11362,19 +11385,25 @@ var MuiButtonGroup = {
|
|
|
11362
11385
|
var buttonGroup = { MuiButtonGroup };
|
|
11363
11386
|
|
|
11364
11387
|
// src/theme/core/components/autocomplete.tsx
|
|
11388
|
+
var import_Chip2 = require("@mui/material/Chip");
|
|
11365
11389
|
var import_SvgIcon4 = require("@mui/material/SvgIcon");
|
|
11390
|
+
var import_InputBase5 = require("@mui/material/InputBase");
|
|
11366
11391
|
var import_Autocomplete5 = require("@mui/material/Autocomplete");
|
|
11367
|
-
var
|
|
11392
|
+
var import_jsx_runtime107 = require("react/jsx-runtime");
|
|
11368
11393
|
var MuiAutocomplete = {
|
|
11369
11394
|
/** **************************************
|
|
11370
11395
|
* DEFAULT PROPS
|
|
11371
11396
|
*************************************** */
|
|
11372
|
-
defaultProps: {
|
|
11397
|
+
defaultProps: {
|
|
11398
|
+
popupIcon: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "NavArrowDown" }),
|
|
11399
|
+
forcePopupIcon: true
|
|
11400
|
+
},
|
|
11373
11401
|
/** **************************************
|
|
11374
11402
|
* STYLE
|
|
11375
11403
|
*************************************** */
|
|
11376
11404
|
styleOverrides: {
|
|
11377
11405
|
root: ({ theme }) => ({
|
|
11406
|
+
// Tag count badge (e.g., "+2")
|
|
11378
11407
|
[`& span.${import_Autocomplete5.autocompleteClasses.tag}`]: {
|
|
11379
11408
|
...theme.typography.subtitle2,
|
|
11380
11409
|
height: 24,
|
|
@@ -11382,9 +11411,65 @@ var MuiAutocomplete = {
|
|
|
11382
11411
|
lineHeight: "24px",
|
|
11383
11412
|
textAlign: "center",
|
|
11384
11413
|
padding: theme.spacing(0, 0.75),
|
|
11385
|
-
color: theme.vars.palette.
|
|
11386
|
-
borderRadius: theme.
|
|
11387
|
-
backgroundColor:
|
|
11414
|
+
color: theme.vars.palette.neutral[950],
|
|
11415
|
+
borderRadius: theme.radius["radius-sm"],
|
|
11416
|
+
backgroundColor: theme.vars.palette.neutral[100]
|
|
11417
|
+
},
|
|
11418
|
+
// Chip tags in multiple mode
|
|
11419
|
+
[`& .${import_Autocomplete5.autocompleteClasses.tag}.${import_Chip2.chipClasses.root}`]: {
|
|
11420
|
+
height: 26,
|
|
11421
|
+
margin: theme.spacing(0.5, 0.5, 0.5, 0),
|
|
11422
|
+
fontSize: theme.typography.caption.fontSize,
|
|
11423
|
+
fontWeight: theme.typography.fontWeightMedium,
|
|
11424
|
+
color: theme.vars.palette.neutral[950],
|
|
11425
|
+
backgroundColor: theme.vars.palette.neutral[100]
|
|
11426
|
+
}
|
|
11427
|
+
}),
|
|
11428
|
+
// Input root - override fixed heights for multiple mode
|
|
11429
|
+
inputRoot: ({ theme }) => ({
|
|
11430
|
+
// Allow flexible height for multiple selections
|
|
11431
|
+
height: "auto",
|
|
11432
|
+
minHeight: 44,
|
|
11433
|
+
flexWrap: "wrap",
|
|
11434
|
+
alignItems: "center",
|
|
11435
|
+
paddingTop: theme.spacing(0.75),
|
|
11436
|
+
paddingBottom: theme.spacing(0.75),
|
|
11437
|
+
paddingLeft: theme.spacing(1),
|
|
11438
|
+
paddingRight: `${theme.spacing(4)} !important`,
|
|
11439
|
+
// Space for clear/popup icons
|
|
11440
|
+
// Size small
|
|
11441
|
+
[`&.${import_InputBase5.inputBaseClasses.sizeSmall}`]: {
|
|
11442
|
+
height: "auto",
|
|
11443
|
+
minHeight: 36,
|
|
11444
|
+
paddingTop: theme.spacing(0.5),
|
|
11445
|
+
paddingBottom: theme.spacing(0.5),
|
|
11446
|
+
[`& .${import_Autocomplete5.autocompleteClasses.tag}.${import_Chip2.chipClasses.root}`]: {
|
|
11447
|
+
height: 22,
|
|
11448
|
+
margin: theme.spacing(0.25, 0.25, 0.25, 0)
|
|
11449
|
+
}
|
|
11450
|
+
},
|
|
11451
|
+
// Size large
|
|
11452
|
+
[`&.MuiInputBase-sizeLarge`]: {
|
|
11453
|
+
height: "auto",
|
|
11454
|
+
minHeight: 48,
|
|
11455
|
+
paddingTop: theme.spacing(1),
|
|
11456
|
+
paddingBottom: theme.spacing(1),
|
|
11457
|
+
[`& .${import_Autocomplete5.autocompleteClasses.tag}.${import_Chip2.chipClasses.root}`]: {
|
|
11458
|
+
height: 28,
|
|
11459
|
+
margin: theme.spacing(0.5, 0.5, 0.5, 0)
|
|
11460
|
+
}
|
|
11461
|
+
},
|
|
11462
|
+
// Adornment adjustments
|
|
11463
|
+
[`&.${import_InputBase5.inputBaseClasses.adornedStart}`]: {
|
|
11464
|
+
paddingLeft: theme.spacing(1.5)
|
|
11465
|
+
}
|
|
11466
|
+
}),
|
|
11467
|
+
// Input field inside autocomplete
|
|
11468
|
+
input: ({ theme }) => ({
|
|
11469
|
+
padding: `${theme.spacing(0.75, 0.75)} !important`,
|
|
11470
|
+
minWidth: 80,
|
|
11471
|
+
[`&.${import_InputBase5.inputBaseClasses.inputSizeSmall}`]: {
|
|
11472
|
+
padding: `${theme.spacing(0.5, 0.5)} !important`
|
|
11388
11473
|
}
|
|
11389
11474
|
}),
|
|
11390
11475
|
paper: ({ theme }) => ({
|
|
@@ -11396,7 +11481,15 @@ var MuiAutocomplete = {
|
|
|
11396
11481
|
...menuItem(theme)
|
|
11397
11482
|
}
|
|
11398
11483
|
}),
|
|
11399
|
-
endAdornment: {
|
|
11484
|
+
endAdornment: ({ theme }) => ({
|
|
11485
|
+
top: "50%",
|
|
11486
|
+
transform: "translateY(-50%)",
|
|
11487
|
+
right: theme.spacing(1),
|
|
11488
|
+
[`& .${import_SvgIcon4.svgIconClasses.root}`]: { width: 24, height: 24 }
|
|
11489
|
+
}),
|
|
11490
|
+
clearIndicator: ({ theme }) => ({
|
|
11491
|
+
marginRight: theme.spacing(0.5)
|
|
11492
|
+
})
|
|
11400
11493
|
}
|
|
11401
11494
|
};
|
|
11402
11495
|
var autocomplete = { MuiAutocomplete };
|
|
@@ -11494,11 +11587,11 @@ var toggleButton = { MuiToggleButton, MuiToggleButtonGroup };
|
|
|
11494
11587
|
|
|
11495
11588
|
// src/theme/core/components/mui-x-date-picker.tsx
|
|
11496
11589
|
var import_IconButton8 = __toESM(require("@mui/material/IconButton"), 1);
|
|
11497
|
-
var
|
|
11590
|
+
var import_Typography16 = __toESM(require("@mui/material/Typography"), 1);
|
|
11498
11591
|
var import_Button5 = require("@mui/material/Button");
|
|
11499
11592
|
var import_styles36 = require("@mui/material/styles");
|
|
11500
11593
|
var import_DialogActions = require("@mui/material/DialogActions");
|
|
11501
|
-
var
|
|
11594
|
+
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
11502
11595
|
var CustomCalendarHeaderRoot = (0, import_styles36.styled)("div")(({ theme }) => ({
|
|
11503
11596
|
display: "flex",
|
|
11504
11597
|
justifyContent: "space-between",
|
|
@@ -11536,10 +11629,10 @@ function CustomCalendarHeader(props) {
|
|
|
11536
11629
|
onViewChange("year");
|
|
11537
11630
|
}
|
|
11538
11631
|
};
|
|
11539
|
-
return /* @__PURE__ */ (0,
|
|
11540
|
-
/* @__PURE__ */ (0,
|
|
11541
|
-
/* @__PURE__ */ (0,
|
|
11542
|
-
|
|
11632
|
+
return /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)(CustomCalendarHeaderRoot, { children: [
|
|
11633
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)(CustomIconButton, { onClick: selectPreviousMonth, title: "Previous month", size: "small", children: /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(Icon, { icon: "NavArrowLeft", width: 16 }) }),
|
|
11634
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
11635
|
+
import_Typography16.default,
|
|
11543
11636
|
{
|
|
11544
11637
|
variant: "subtitle1",
|
|
11545
11638
|
onClick: handleLabelClick,
|
|
@@ -11553,7 +11646,7 @@ function CustomCalendarHeader(props) {
|
|
|
11553
11646
|
children: monthLabel
|
|
11554
11647
|
}
|
|
11555
11648
|
),
|
|
11556
|
-
/* @__PURE__ */ (0,
|
|
11649
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)(CustomIconButton, { onClick: selectNextMonth, title: "Next month", size: "small", children: /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(Icon, { icon: "NavArrowRight", width: 16 }) })
|
|
11557
11650
|
] });
|
|
11558
11651
|
}
|
|
11559
11652
|
var localeText = {
|
|
@@ -11561,13 +11654,13 @@ var localeText = {
|
|
|
11561
11654
|
};
|
|
11562
11655
|
var defaultProps = {
|
|
11563
11656
|
date: {
|
|
11564
|
-
openPickerIcon: () => /* @__PURE__ */ (0,
|
|
11657
|
+
openPickerIcon: () => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(Icon, { icon: "Calendar", sx: { width: 20, height: 20 } }),
|
|
11565
11658
|
calendarHeader: CustomCalendarHeader
|
|
11566
11659
|
},
|
|
11567
11660
|
time: {
|
|
11568
|
-
openPickerIcon: () => /* @__PURE__ */ (0,
|
|
11569
|
-
rightArrowIcon: () => /* @__PURE__ */ (0,
|
|
11570
|
-
switchViewIcon: () => /* @__PURE__ */ (0,
|
|
11661
|
+
openPickerIcon: () => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(Icon, { icon: "Clock", sx: { width: 20, height: 20 } }),
|
|
11662
|
+
rightArrowIcon: () => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(Icon, { icon: "NavArrowRight" }),
|
|
11663
|
+
switchViewIcon: () => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(Icon, { icon: "NavArrowDownSolid" })
|
|
11571
11664
|
}
|
|
11572
11665
|
};
|
|
11573
11666
|
var dateViews = ["year", "month", "day"];
|
|
@@ -11998,18 +12091,18 @@ var import__8 = require("@fontsource/geist/500.css");
|
|
|
11998
12091
|
var import__9 = require("@fontsource/geist/600.css");
|
|
11999
12092
|
var import__10 = require("@fontsource/geist/700.css");
|
|
12000
12093
|
var import_satoshi = require("./satoshi-4X3TX4PE.css");
|
|
12001
|
-
var
|
|
12094
|
+
var import_jsx_runtime109 = require("react/jsx-runtime");
|
|
12002
12095
|
var ThemeProvider = ({ children }) => {
|
|
12003
12096
|
const settings = useSettings();
|
|
12004
12097
|
const theme = createTheme(settings);
|
|
12005
|
-
return /* @__PURE__ */ (0,
|
|
12098
|
+
return /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)(
|
|
12006
12099
|
import_styles41.ThemeProvider,
|
|
12007
12100
|
{
|
|
12008
12101
|
theme,
|
|
12009
12102
|
defaultMode: schemeConfig.defaultMode,
|
|
12010
12103
|
modeStorageKey: schemeConfig.modeStorageKey,
|
|
12011
12104
|
children: [
|
|
12012
|
-
/* @__PURE__ */ (0,
|
|
12105
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)(import_CssBaseline.default, {}),
|
|
12013
12106
|
children
|
|
12014
12107
|
]
|
|
12015
12108
|
}
|
|
@@ -12039,6 +12132,7 @@ __reExport(index_exports, components_exports2, module.exports);
|
|
|
12039
12132
|
CopyButton,
|
|
12040
12133
|
CustomDialog,
|
|
12041
12134
|
CustomDrawer,
|
|
12135
|
+
CustomFormLabel,
|
|
12042
12136
|
DateRangeDropdown,
|
|
12043
12137
|
DateRangePicker,
|
|
12044
12138
|
Download,
|