@natoora-libs/core 0.0.40 → 0.0.42

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.
@@ -320,7 +320,7 @@ __export(components_exports, {
320
320
  AlertDialog: () => AlertDialog_default,
321
321
  AlertDialogFullScreen: () => AlertDialogFullScreen_default,
322
322
  AppLabel: () => AppLabel_default,
323
- AutoComplete: () => AutoComplete_default,
323
+ Autocomplete: () => Autocomplete_default,
324
324
  BackHeader: () => BackHeader_default,
325
325
  BottomBar: () => BottomBar_default,
326
326
  BoxButton: () => BoxButton_default,
@@ -345,6 +345,8 @@ __export(components_exports, {
345
345
  FilterSimpleSelector: () => FilterSimpleSelector_default,
346
346
  FixedFooter: () => FixedFooter_default,
347
347
  Header: () => Header_default,
348
+ IconChart: () => IconChart_default,
349
+ IconCompare: () => IconCompare_default,
348
350
  ImageButton: () => ImageButton_default,
349
351
  LeftDrawer: () => LeftDrawer_default,
350
352
  List: () => VirtualizedList,
@@ -762,11 +764,11 @@ var AppLabel = ({ appName }) => {
762
764
  };
763
765
  var AppLabel_default = AppLabel;
764
766
 
765
- // src/components/AutoComplete/AutoComplete.tsx
767
+ // src/components/Autocomplete/Autocomplete.tsx
766
768
  var import_react = require("react");
767
769
  var import_material4 = require("@mui/material");
768
770
  var import_jsx_runtime4 = require("react/jsx-runtime");
769
- var AutoComplete = (0, import_react.forwardRef)(
771
+ var Autocomplete = (0, import_react.forwardRef)(
770
772
  ({
771
773
  value,
772
774
  defaultValue,
@@ -872,7 +874,7 @@ var AutoComplete = (0, import_react.forwardRef)(
872
874
  );
873
875
  }
874
876
  );
875
- var AutoComplete_default = AutoComplete;
877
+ var Autocomplete_default = Autocomplete;
876
878
 
877
879
  // src/components/BackHeader/BackHeader.tsx
878
880
  var import_react_router = require("react-router");
@@ -927,7 +929,34 @@ var import_react2 = require("react");
927
929
  var import_icons_material2 = require("@mui/icons-material");
928
930
  var import_material6 = require("@mui/material");
929
931
  var import_mui4 = require("tss-react/mui");
932
+
933
+ // src/components/icons/IconCompare.tsx
930
934
  var import_jsx_runtime6 = require("react/jsx-runtime");
935
+ var SvgIconCompare = (props) => {
936
+ const { fill } = props;
937
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
938
+ "svg",
939
+ {
940
+ width: "24",
941
+ height: "24",
942
+ viewBox: "0 0 18 18",
943
+ fill: "none",
944
+ xmlns: "http://www.w3.org/2000/svg",
945
+ ...props,
946
+ children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
947
+ "path",
948
+ {
949
+ d: "M9.75 17.25H8.25V0.75H9.75V17.25ZM6.75 14.25H3.75V3.75H6.75V2.25H3.75C2.9175 2.25 2.25 2.9175 2.25 3.75V14.25C2.25 15.0825 2.925 15.75 3.75 15.75H6.75V14.25ZM14.25 5.25V6.75H15.75V5.25H14.25ZM14.25 3.75H15.75C15.75 2.9175 15.075 2.25 14.25 2.25V3.75ZM15.75 11.25H14.25V12.75H15.75V11.25ZM14.25 8.25V9.75H15.75V8.25H14.25ZM12.75 2.25H11.25V3.75H12.75V2.25ZM14.25 15.75C15.0825 15.75 15.75 15.0825 15.75 14.25H14.25V15.75ZM12.75 14.25H11.25V15.75H12.75V14.25Z",
950
+ fill: fill ?? "#1976D2"
951
+ }
952
+ )
953
+ }
954
+ );
955
+ };
956
+ var IconCompare_default = SvgIconCompare;
957
+
958
+ // src/components/Buttons/ExtendedButton/ExtendedButton.tsx
959
+ var import_jsx_runtime7 = require("react/jsx-runtime");
931
960
  var useStyles4 = (0, import_mui4.makeStyles)()((theme) => ({
932
961
  default: {
933
962
  boxShadow: "none",
@@ -1017,10 +1046,11 @@ var ExtendedButton = ({
1017
1046
  upload: import_icons_material2.CloudUpload,
1018
1047
  refresh: import_icons_material2.Refresh,
1019
1048
  download: import_icons_material2.GetApp,
1020
- publish: import_icons_material2.Publish
1049
+ publish: import_icons_material2.Publish,
1050
+ compare: IconCompare_default
1021
1051
  };
1022
1052
  const IconComponent = icons2[type || "add"];
1023
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_material6.Tooltip, { title: tooltip, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_material6.Box, { children: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
1053
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_material6.Tooltip, { title: tooltip, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_material6.Box, { children: /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
1024
1054
  import_material6.Button,
1025
1055
  {
1026
1056
  className: cx(classes[color], className),
@@ -1033,15 +1063,22 @@ var ExtendedButton = ({
1033
1063
  type: buttonType,
1034
1064
  variant,
1035
1065
  children: [
1036
- type ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(IconComponent, { fontSize: "small", className: classes.icon }) : null,
1037
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
1066
+ type ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1067
+ IconComponent,
1068
+ {
1069
+ fontSize: "small",
1070
+ className: classes.icon,
1071
+ fill: colors.muiPrimary
1072
+ }
1073
+ ) : null,
1074
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
1038
1075
  "div",
1039
1076
  {
1040
1077
  className: classes.copy,
1041
1078
  style: { color: copyColor || "inherit" },
1042
1079
  children: [
1043
1080
  copy,
1044
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { children: subcopy })
1081
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { children: subcopy })
1045
1082
  ]
1046
1083
  }
1047
1084
  )
@@ -1052,7 +1089,7 @@ var ExtendedButton = ({
1052
1089
  var ExtendedButton_default = (0, import_react2.memo)(ExtendedButton);
1053
1090
 
1054
1091
  // src/components/BottomBar/BottomBar.tsx
1055
- var import_jsx_runtime7 = require("react/jsx-runtime");
1092
+ var import_jsx_runtime8 = require("react/jsx-runtime");
1056
1093
  var useStyles5 = (0, import_mui5.makeStyles)()((theme) => ({
1057
1094
  footer: {
1058
1095
  backgroundColor: colors.neutral100,
@@ -1074,7 +1111,7 @@ var BottomBar = ({
1074
1111
  onRefreshClick = null
1075
1112
  }) => {
1076
1113
  const { classes, cx } = useStyles5();
1077
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_material7.Paper, { className: cx(classes.footer, className), elevation: 1, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
1114
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_material7.Paper, { className: cx(classes.footer, className), elevation: 1, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
1078
1115
  import_material7.Box,
1079
1116
  {
1080
1117
  className: classes.insideWrapper,
@@ -1084,7 +1121,7 @@ var BottomBar = ({
1084
1121
  justifyContent: "space-between"
1085
1122
  },
1086
1123
  children: [
1087
- onRefreshClick && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1124
+ onRefreshClick && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1088
1125
  ExtendedButton_default,
1089
1126
  {
1090
1127
  className: classes.button,
@@ -1109,7 +1146,7 @@ var import_green = __toESM(require("@mui/material/colors/green"), 1);
1109
1146
  var import_orange = __toESM(require("@mui/material/colors/orange"), 1);
1110
1147
  var import_red = __toESM(require("@mui/material/colors/red"), 1);
1111
1148
  var import_mui6 = require("tss-react/mui");
1112
- var import_jsx_runtime8 = require("react/jsx-runtime");
1149
+ var import_jsx_runtime9 = require("react/jsx-runtime");
1113
1150
  var useStyles6 = (0, import_mui6.makeStyles)()((theme) => ({
1114
1151
  boxTab: {
1115
1152
  minWidth: 130,
@@ -1156,15 +1193,15 @@ var useStyles6 = (0, import_mui6.makeStyles)()((theme) => ({
1156
1193
  var BoxButton = (props) => {
1157
1194
  const { classes } = useStyles6();
1158
1195
  const { label, onClick, main, extra, borderColor } = props;
1159
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
1196
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
1160
1197
  import_material8.ButtonBase,
1161
1198
  {
1162
1199
  component: "button",
1163
1200
  className: [classes.boxTab, classes[borderColor]].join(" "),
1164
1201
  onClick,
1165
1202
  children: [
1166
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_material8.Typography, { variant: "button", children: label }),
1167
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
1203
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_material8.Typography, { variant: "button", children: label }),
1204
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
1168
1205
  import_material8.Grid2,
1169
1206
  {
1170
1207
  container: true,
@@ -1174,8 +1211,8 @@ var BoxButton = (props) => {
1174
1211
  alignItems: "center"
1175
1212
  },
1176
1213
  children: [
1177
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_material8.Grid2, { size: 9, children: main }),
1178
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_material8.Grid2, { className: classes.c_box_button__extra, size: 3, children: extra })
1214
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_material8.Grid2, { size: 9, children: main }),
1215
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_material8.Grid2, { className: classes.c_box_button__extra, size: 3, children: extra })
1179
1216
  ]
1180
1217
  }
1181
1218
  )
@@ -1189,7 +1226,7 @@ var BoxButton_default = (0, import_react3.memo)(BoxButton);
1189
1226
  var import_react4 = require("react");
1190
1227
  var import_material9 = require("@mui/material");
1191
1228
  var import_mui7 = require("tss-react/mui");
1192
- var import_jsx_runtime9 = require("react/jsx-runtime");
1229
+ var import_jsx_runtime10 = require("react/jsx-runtime");
1193
1230
  var useStyles7 = (0, import_mui7.makeStyles)()((theme) => ({
1194
1231
  button: {
1195
1232
  background: colors.default,
@@ -1258,7 +1295,7 @@ var FilledButton = ({
1258
1295
  variant = "contained"
1259
1296
  }) => {
1260
1297
  const { classes, cx } = useStyles7();
1261
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
1298
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
1262
1299
  import_material9.Button,
1263
1300
  {
1264
1301
  autoFocus,
@@ -1273,7 +1310,7 @@ var FilledButton = ({
1273
1310
  variant,
1274
1311
  children: [
1275
1312
  copy,
1276
- isLoading && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
1313
+ isLoading && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
1277
1314
  import_material9.CircularProgress,
1278
1315
  {
1279
1316
  className: classes.loadingText,
@@ -1291,7 +1328,7 @@ var FilledButton_default = (0, import_react4.memo)(FilledButton);
1291
1328
  var import_react5 = require("react");
1292
1329
  var import_material10 = require("@mui/material");
1293
1330
  var import_mui8 = require("tss-react/mui");
1294
- var import_jsx_runtime10 = require("react/jsx-runtime");
1331
+ var import_jsx_runtime11 = require("react/jsx-runtime");
1295
1332
  var FilledButtonLg = ({
1296
1333
  classes,
1297
1334
  disabled,
@@ -1301,14 +1338,14 @@ var FilledButtonLg = ({
1301
1338
  handleClick,
1302
1339
  loading = false,
1303
1340
  loadingProps
1304
- }) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
1341
+ }) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1305
1342
  import_material10.Button,
1306
1343
  {
1307
1344
  variant,
1308
1345
  className: classes[color],
1309
1346
  onClick: handleClick,
1310
1347
  disabled: disabled || loading,
1311
- children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
1348
+ children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
1312
1349
  import_material10.Box,
1313
1350
  {
1314
1351
  sx: {
@@ -1318,7 +1355,7 @@ var FilledButtonLg = ({
1318
1355
  },
1319
1356
  children: [
1320
1357
  copy,
1321
- loading && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
1358
+ loading && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1322
1359
  import_material10.CircularProgress,
1323
1360
  {
1324
1361
  color: loadingProps?.color || "inherit",
@@ -1398,7 +1435,7 @@ var FilledButtonLg_default = (0, import_react5.memo)(ActionButtonLg);
1398
1435
  var import_react6 = require("react");
1399
1436
  var import_material11 = require("@mui/material");
1400
1437
  var import_mui9 = require("tss-react/mui");
1401
- var import_jsx_runtime11 = require("react/jsx-runtime");
1438
+ var import_jsx_runtime12 = require("react/jsx-runtime");
1402
1439
  var useStyles8 = (0, import_mui9.makeStyles)()(() => ({
1403
1440
  root: {
1404
1441
  display: "flex",
@@ -1427,7 +1464,7 @@ var ImageButton = (props) => {
1427
1464
  const e = { target: { value } };
1428
1465
  onClick(e);
1429
1466
  };
1430
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(import_material11.Button, { onClick: handleClick, className: classes.image, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("img", { className: classes.imageSrc, src, alt: "a_image" }) });
1467
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_material11.Button, { onClick: handleClick, className: classes.image, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("img", { className: classes.imageSrc, src, alt: "a_image" }) });
1431
1468
  };
1432
1469
  var ImageButton_default = (0, import_react6.memo)(ImageButton);
1433
1470
 
@@ -1435,7 +1472,7 @@ var ImageButton_default = (0, import_react6.memo)(ImageButton);
1435
1472
  var import_icons_material3 = require("@mui/icons-material");
1436
1473
  var import_material12 = require("@mui/material");
1437
1474
  var import_mui10 = require("tss-react/mui");
1438
- var import_jsx_runtime12 = require("react/jsx-runtime");
1475
+ var import_jsx_runtime13 = require("react/jsx-runtime");
1439
1476
  var useStyles9 = (0, import_mui10.makeStyles)()((theme) => ({
1440
1477
  add: {
1441
1478
  backgroundColor: colors.neutral100
@@ -1471,10 +1508,10 @@ var SquareButton = ({
1471
1508
  }) => {
1472
1509
  const { classes, cx } = useStyles9();
1473
1510
  const icon = {
1474
- add: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_icons_material3.Add, { className: classes.icon }),
1475
- forward: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_icons_material3.ChevronRight, { className: classes.icon })
1511
+ add: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_icons_material3.Add, { className: classes.icon }),
1512
+ forward: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_icons_material3.ChevronRight, { className: classes.icon })
1476
1513
  };
1477
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1514
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1478
1515
  import_material12.Button,
1479
1516
  {
1480
1517
  className: cx(
@@ -1486,9 +1523,9 @@ var SquareButton = ({
1486
1523
  disableElevation: hasContentLeftSide,
1487
1524
  onClick,
1488
1525
  variant: "contained",
1489
- children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("span", { className: classes.textWrapper, children: [
1526
+ children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("span", { className: classes.textWrapper, children: [
1490
1527
  icon[type],
1491
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_material12.Typography, { className: classes.text, variant: "button", children })
1528
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_material12.Typography, { className: classes.text, variant: "button", children })
1492
1529
  ] })
1493
1530
  }
1494
1531
  );
@@ -1498,7 +1535,7 @@ var SquareButton_default = SquareButton;
1498
1535
  // src/components/Buttons/UploadButton/UploadButton.tsx
1499
1536
  var import_react7 = require("react");
1500
1537
  var import_material13 = require("@mui/material");
1501
- var import_jsx_runtime13 = require("react/jsx-runtime");
1538
+ var import_jsx_runtime14 = require("react/jsx-runtime");
1502
1539
  var UploadButton = (0, import_react7.forwardRef)(
1503
1540
  (props, ref) => {
1504
1541
  const [file, setFile] = (0, import_react7.useState)();
@@ -1508,7 +1545,7 @@ var UploadButton = (0, import_react7.forwardRef)(
1508
1545
  setFile(fileItem);
1509
1546
  props.onChange?.(e);
1510
1547
  };
1511
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
1548
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1512
1549
  import_material13.Box,
1513
1550
  {
1514
1551
  sx: {
@@ -1517,7 +1554,7 @@ var UploadButton = (0, import_react7.forwardRef)(
1517
1554
  alignItems: "center"
1518
1555
  },
1519
1556
  children: [
1520
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1557
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1521
1558
  "input",
1522
1559
  {
1523
1560
  ...props,
@@ -1530,7 +1567,7 @@ var UploadButton = (0, import_react7.forwardRef)(
1530
1567
  style: { display: "none" }
1531
1568
  }
1532
1569
  ),
1533
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1570
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1534
1571
  ExtendedButton_default,
1535
1572
  {
1536
1573
  buttonType: "button",
@@ -1554,7 +1591,7 @@ var UploadButton_default = UploadButton;
1554
1591
  var import_react8 = require("react");
1555
1592
  var import_material14 = require("@mui/material");
1556
1593
  var import_mui11 = require("tss-react/mui");
1557
- var import_jsx_runtime14 = require("react/jsx-runtime");
1594
+ var import_jsx_runtime15 = require("react/jsx-runtime");
1558
1595
  var useStyles10 = (0, import_mui11.makeStyles)()((theme) => ({
1559
1596
  default: {
1560
1597
  boxShadow: "none",
@@ -1635,7 +1672,7 @@ var OutlinedButton = ({
1635
1672
  type = "button"
1636
1673
  }) => {
1637
1674
  const { classes, cx } = useStyles10();
1638
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1675
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1639
1676
  import_material14.Button,
1640
1677
  {
1641
1678
  className: cx(color ? classes[color] : classes.default, className, {
@@ -1648,7 +1685,7 @@ var OutlinedButton = ({
1648
1685
  style,
1649
1686
  type,
1650
1687
  variant: "outlined",
1651
- children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1688
+ children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
1652
1689
  "div",
1653
1690
  {
1654
1691
  className: cx(classes.copy, {
@@ -1656,8 +1693,8 @@ var OutlinedButton = ({
1656
1693
  }),
1657
1694
  children: [
1658
1695
  copy,
1659
- subcopy && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { children: subcopy }),
1660
- isLoading && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1696
+ subcopy && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { children: subcopy }),
1697
+ isLoading && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1661
1698
  import_material14.CircularProgress,
1662
1699
  {
1663
1700
  className: classes.loadingIcon,
@@ -1677,8 +1714,8 @@ var OutlinedButton_default = (0, import_react8.memo)(OutlinedButton);
1677
1714
  var import_react9 = require("react");
1678
1715
  var import_material15 = require("@mui/material");
1679
1716
  var import_mui12 = require("tss-react/mui");
1680
- var import_jsx_runtime15 = require("react/jsx-runtime");
1681
- var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_material15.Button, { variant, className: classes[color], children: copy });
1717
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1718
+ var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_material15.Button, { variant, className: classes[color], children: copy });
1682
1719
  var FilterButtonLg = (0, import_mui12.withStyles)(AButton, (theme) => ({
1683
1720
  default: {
1684
1721
  boxShadow: "none",
@@ -1743,17 +1780,17 @@ var import_material16 = require("@mui/material");
1743
1780
  var import_mui13 = require("tss-react/mui");
1744
1781
 
1745
1782
  // src/components/icons/BallsLogo.tsx
1746
- var import_jsx_runtime16 = require("react/jsx-runtime");
1747
- var SvgBallsLogo = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("svg", { viewBox: "0 0 1024 305.8", ...props, fill: "currentColor", children: [
1748
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "M586.9,152.3c0,82.2-66,148.1-148.1,148.1s-148.1-66-148.1-148.1S356.6,4.2,438.8,4.2C520.9,2.9,586.9,70.2,586.9,152.3" }),
1749
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "M5.6,4.2c80.9,0,146.9,66,146.9,146.9S86.5,297.9,5.6,297.9C5.6,297.9,5.6,4.2,5.6,4.2z" }),
1750
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "M1018.9,152.3c0-82.2-66-148.1-148.1-148.1s-148.1,66-148.1,148.1s66,148.1,148.1,148.1L1018.9,152.3z" })
1783
+ var import_jsx_runtime17 = require("react/jsx-runtime");
1784
+ var SvgBallsLogo = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("svg", { viewBox: "0 0 1024 305.8", ...props, fill: "currentColor", children: [
1785
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { d: "M586.9,152.3c0,82.2-66,148.1-148.1,148.1s-148.1-66-148.1-148.1S356.6,4.2,438.8,4.2C520.9,2.9,586.9,70.2,586.9,152.3" }),
1786
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { d: "M5.6,4.2c80.9,0,146.9,66,146.9,146.9S86.5,297.9,5.6,297.9C5.6,297.9,5.6,4.2,5.6,4.2z" }),
1787
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { d: "M1018.9,152.3c0-82.2-66-148.1-148.1-148.1s-148.1,66-148.1,148.1s66,148.1,148.1,148.1L1018.9,152.3z" })
1751
1788
  ] });
1752
1789
  var BallsLogo_default = SvgBallsLogo;
1753
1790
 
1754
1791
  // src/components/icons/EmptyGlassIcon.tsx
1755
- var import_jsx_runtime17 = require("react/jsx-runtime");
1756
- var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
1792
+ var import_jsx_runtime18 = require("react/jsx-runtime");
1793
+ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
1757
1794
  "svg",
1758
1795
  {
1759
1796
  xmlns: "http://www.w3.org/2000/svg",
@@ -1763,8 +1800,8 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1763
1800
  fill: "none",
1764
1801
  ...props,
1765
1802
  children: [
1766
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Frame", clipPath: "url(#clip0_454_24067)", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("g", { id: "Clip path group", children: [
1767
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1803
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Frame", clipPath: "url(#clip0_454_24067)", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("g", { id: "Clip path group", children: [
1804
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1768
1805
  "mask",
1769
1806
  {
1770
1807
  id: "mask0_454_24067",
@@ -1773,11 +1810,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1773
1810
  y: "0",
1774
1811
  width: "140",
1775
1812
  height: "140",
1776
- children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "__lottie_element_11", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { id: "Vector", d: "M140 0H0V140H140V0Z", fill: "white" }) })
1813
+ children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "__lottie_element_11", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { id: "Vector", d: "M140 0H0V140H140V0Z", fill: "white" }) })
1777
1814
  }
1778
1815
  ),
1779
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { mask: "url(#mask0_454_24067)", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("g", { id: "Clip path group_2", children: [
1780
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1816
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { mask: "url(#mask0_454_24067)", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("g", { id: "Clip path group_2", children: [
1817
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1781
1818
  "mask",
1782
1819
  {
1783
1820
  id: "mask1_454_24067",
@@ -1786,11 +1823,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1786
1823
  y: "0",
1787
1824
  width: "140",
1788
1825
  height: "140",
1789
- children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "__lottie_element_13", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { id: "Vector_2", d: "M0 0H140V140H0V0Z", fill: "white" }) })
1826
+ children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "__lottie_element_13", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { id: "Vector_2", d: "M0 0H140V140H0V0Z", fill: "white" }) })
1790
1827
  }
1791
1828
  ),
1792
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { mask: "url(#mask1_454_24067)", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_2", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("g", { id: "Group_3", children: [
1793
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_4", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1829
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { mask: "url(#mask1_454_24067)", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_2", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("g", { id: "Group_3", children: [
1830
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_4", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1794
1831
  "path",
1795
1832
  {
1796
1833
  id: "Vector_3",
@@ -1798,7 +1835,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1798
1835
  fill: "#B6B2D8"
1799
1836
  }
1800
1837
  ) }),
1801
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_5", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1838
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_5", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1802
1839
  "path",
1803
1840
  {
1804
1841
  id: "Vector_4",
@@ -1806,7 +1843,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1806
1843
  fill: "#EECB3A"
1807
1844
  }
1808
1845
  ) }),
1809
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_6", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1846
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_6", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1810
1847
  "path",
1811
1848
  {
1812
1849
  id: "Vector_5",
@@ -1814,7 +1851,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1814
1851
  fill: "#F1F1F2"
1815
1852
  }
1816
1853
  ) }),
1817
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_7", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1854
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_7", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1818
1855
  "path",
1819
1856
  {
1820
1857
  id: "Vector_6",
@@ -1822,7 +1859,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1822
1859
  fill: "#EECB3A"
1823
1860
  }
1824
1861
  ) }),
1825
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_8", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1862
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_8", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1826
1863
  "path",
1827
1864
  {
1828
1865
  id: "Vector_7",
@@ -1830,7 +1867,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1830
1867
  fill: "#B6B2D8"
1831
1868
  }
1832
1869
  ) }),
1833
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_9", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1870
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_9", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1834
1871
  "path",
1835
1872
  {
1836
1873
  id: "Vector_8",
@@ -1838,7 +1875,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1838
1875
  fill: "#F6D977"
1839
1876
  }
1840
1877
  ) }),
1841
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_10", opacity: "0.655813", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1878
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_10", opacity: "0.655813", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1842
1879
  "path",
1843
1880
  {
1844
1881
  id: "Vector_9",
@@ -1846,7 +1883,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1846
1883
  fill: "#B6B2D8"
1847
1884
  }
1848
1885
  ) }),
1849
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_11", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1886
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_11", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1850
1887
  "path",
1851
1888
  {
1852
1889
  id: "Vector_10",
@@ -1854,7 +1891,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1854
1891
  fill: "#FFFEFF"
1855
1892
  }
1856
1893
  ) }),
1857
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_12", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1894
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_12", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1858
1895
  "path",
1859
1896
  {
1860
1897
  id: "Vector_11",
@@ -1862,7 +1899,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1862
1899
  fill: "#EECB3A"
1863
1900
  }
1864
1901
  ) }),
1865
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_13", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1902
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_13", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1866
1903
  "path",
1867
1904
  {
1868
1905
  id: "Vector_12",
@@ -1870,8 +1907,8 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1870
1907
  fill: "#FFFEFF"
1871
1908
  }
1872
1909
  ) }),
1873
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("g", { id: "Group_14", children: [
1874
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_15", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1910
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("g", { id: "Group_14", children: [
1911
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_15", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1875
1912
  "path",
1876
1913
  {
1877
1914
  id: "Vector_13",
@@ -1879,7 +1916,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1879
1916
  fill: "#BF7F42"
1880
1917
  }
1881
1918
  ) }),
1882
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_16", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1919
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_16", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1883
1920
  "path",
1884
1921
  {
1885
1922
  id: "Vector_14",
@@ -1887,7 +1924,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1887
1924
  fill: "#C2D1E0"
1888
1925
  }
1889
1926
  ) }),
1890
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_17", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1927
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_17", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1891
1928
  "path",
1892
1929
  {
1893
1930
  id: "Vector_15",
@@ -1895,7 +1932,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1895
1932
  fill: "#D2E0EA"
1896
1933
  }
1897
1934
  ) }),
1898
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_18", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1935
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_18", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1899
1936
  "path",
1900
1937
  {
1901
1938
  id: "Vector_16",
@@ -1903,7 +1940,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1903
1940
  fill: "#8EC5EA"
1904
1941
  }
1905
1942
  ) }),
1906
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_19", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1943
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_19", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1907
1944
  "path",
1908
1945
  {
1909
1946
  id: "Vector_17",
@@ -1911,7 +1948,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1911
1948
  fill: "#70AFDE"
1912
1949
  }
1913
1950
  ) }),
1914
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_20", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1951
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_20", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1915
1952
  "path",
1916
1953
  {
1917
1954
  id: "Vector_18",
@@ -1919,7 +1956,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1919
1956
  fill: "#B5713E"
1920
1957
  }
1921
1958
  ) }),
1922
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_21", opacity: "0.2", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1959
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { id: "Group_21", opacity: "0.2", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1923
1960
  "path",
1924
1961
  {
1925
1962
  id: "Vector_19",
@@ -1931,37 +1968,37 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs
1931
1968
  ] }) }) })
1932
1969
  ] }) }) })
1933
1970
  ] }) }),
1934
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("clipPath", { id: "clip0_454_24067", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("rect", { width: "140", height: "140", fill: "white" }) }) })
1971
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("clipPath", { id: "clip0_454_24067", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("rect", { width: "140", height: "140", fill: "white" }) }) })
1935
1972
  ]
1936
1973
  }
1937
1974
  );
1938
1975
  var EmptyGlassIcon_default = SvgEmptyGlassIcon;
1939
1976
 
1940
1977
  // src/components/icons/IconAccount.tsx
1941
- var import_jsx_runtime18 = require("react/jsx-runtime");
1942
- var SvgIconAccount = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
1943
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1978
+ var import_jsx_runtime19 = require("react/jsx-runtime");
1979
+ var SvgIconAccount = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
1980
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1944
1981
  "path",
1945
1982
  {
1946
1983
  className: "icon-account_svg__st0",
1947
1984
  d: "M672.6 1136.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c-.1-1.6-1.3-3-2.9-3zM683.4 1136.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c0-1.7-1.4-2.9-3-2.9z"
1948
1985
  }
1949
1986
  ),
1950
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1987
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1951
1988
  "path",
1952
1989
  {
1953
1990
  className: "icon-account_svg__st0",
1954
1991
  d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1z"
1955
1992
  }
1956
1993
  ),
1957
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1994
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1958
1995
  "path",
1959
1996
  {
1960
1997
  className: "icon-account_svg__st1",
1961
1998
  d: "M27.3 27.8c1.6 0 3.1-.6 4.2-1.7 1.2-1.2 1.7-2.5 1.7-4.2 0-1.5-.6-2.9-1.7-4.2-1.1-1.1-2.5-1.7-4.2-1.7s-3.1.6-4.2 1.7-1.7 2.5-1.7 4.2.6 3.1 1.7 4.2 2.6 1.7 4.2 1.7zm0-9.4c1 0 1.8.3 2.4.9.5.5 1 1.4 1 2.5s-.3 1.8-1 2.5-1.5 1-2.5 1-1.8-.3-2.5-1-1-1.5-1-2.5.3-1.8 1-2.5c.8-.6 1.6-.9 2.6-.9z"
1962
1999
  }
1963
2000
  ),
1964
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2001
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1965
2002
  "path",
1966
2003
  {
1967
2004
  className: "icon-account_svg__st1",
@@ -1972,8 +2009,8 @@ var SvgIconAccount = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("
1972
2009
  var IconAccount_default = SvgIconAccount;
1973
2010
 
1974
2011
  // src/components/icons/IconAccounts.tsx
1975
- var import_jsx_runtime19 = require("react/jsx-runtime");
1976
- var SvgIconAccounts = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2012
+ var import_jsx_runtime20 = require("react/jsx-runtime");
2013
+ var SvgIconAccounts = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1977
2014
  "path",
1978
2015
  {
1979
2016
  className: "icon-accounts_svg__st0",
@@ -1983,8 +2020,8 @@ var SvgIconAccounts = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("
1983
2020
  var IconAccounts_default = SvgIconAccounts;
1984
2021
 
1985
2022
  // src/components/icons/IconAvocado.tsx
1986
- var import_jsx_runtime20 = require("react/jsx-runtime");
1987
- var SvgIconAvocado = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
2023
+ var import_jsx_runtime21 = require("react/jsx-runtime");
2024
+ var SvgIconAvocado = () => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
1988
2025
  "svg",
1989
2026
  {
1990
2027
  width: "20",
@@ -1993,7 +2030,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
1993
2030
  fill: "none",
1994
2031
  xmlns: "http://www.w3.org/2000/svg",
1995
2032
  children: [
1996
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2033
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1997
2034
  "path",
1998
2035
  {
1999
2036
  d: "M19 14.3511C19 20.3582 14.9662 22.875 10 22.875C5.03376 22.875 1 20.3582 1 14.3511C1 8.34393 5.03376 1.125 10 1.125C14.9662 1.125 19 8.34393 19 14.3511Z",
@@ -2002,7 +2039,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
2002
2039
  strokeMiterlimit: "10"
2003
2040
  }
2004
2041
  ),
2005
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2042
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2006
2043
  "path",
2007
2044
  {
2008
2045
  d: "M10 19.125C12.8995 19.125 15.25 16.7745 15.25 13.875C15.25 10.9755 12.8995 8.625 10 8.625C7.1005 8.625 4.75 10.9755 4.75 13.875C4.75 16.7745 7.1005 19.125 10 19.125Z",
@@ -2017,8 +2054,8 @@ var SvgIconAvocado = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
2017
2054
  var IconAvocado_default = SvgIconAvocado;
2018
2055
 
2019
2056
  // src/components/icons/IconBanana.tsx
2020
- var import_jsx_runtime21 = require("react/jsx-runtime");
2021
- var SvgIconBanana = () => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
2057
+ var import_jsx_runtime22 = require("react/jsx-runtime");
2058
+ var SvgIconBanana = () => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
2022
2059
  "svg",
2023
2060
  {
2024
2061
  width: "24",
@@ -2027,52 +2064,52 @@ var SvgIconBanana = () => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
2027
2064
  fill: "none",
2028
2065
  xmlns: "http://www.w3.org/2000/svg",
2029
2066
  children: [
2030
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("g", { clipPath: "url(#clip0_0_2321)", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2067
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("g", { clipPath: "url(#clip0_0_2321)", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2031
2068
  "path",
2032
2069
  {
2033
2070
  d: "M23.0247 5.42267C22.7775 5.12356 22.4901 4.88302 22.1652 4.70103V0H18.8424V4.69592C18.6156 4.83467 18.3894 5.00524 18.1656 5.20705C17.4915 5.81607 16.9872 6.58066 16.7601 7.05064C16.4487 7.6948 15.6291 8.61014 15.3399 8.90835L15.3258 8.92337C13.0806 11.3673 9.5079 12.0928 6.9063 12.2709C4.0155 12.4691 1.6404 12.0544 1.617 12.0502L1.0053 11.9406L0 14.7755L0.1854 15.0752C0.633 15.7983 1.3155 16.438 2.2134 16.977C2.5812 17.1978 2.9691 17.3996 3.3732 17.584L3.2196 20.0912L3.4806 20.3279C4.1103 20.8991 4.9428 21.3252 5.9544 21.5949C6.9639 21.864 8.0517 22 9.1911 22C9.261 22 9.3315 21.9994 9.402 21.9985C12.8361 21.9483 16.1847 20.7919 18.831 18.7423C20.19 17.6897 21.3129 16.4416 22.1685 15.0325C23.0745 13.5403 23.6568 11.9039 23.8992 10.1681C24.0639 8.99004 24.1692 6.80679 23.0247 5.42237V5.42267ZM20.3082 1.46701H20.7V4.25027H20.3082V1.46701ZM4.203 15.2238C3.7473 14.9506 3.3876 14.6454 3.1308 14.3145L3.4125 13.5208C4.1535 13.6166 5.6514 13.7586 7.4016 13.6412C8.8503 13.5442 10.1715 13.2877 11.3289 12.8793C12.8013 12.3598 14.0127 11.5916 14.9295 10.5958C14.9484 10.5763 15.0021 10.5201 15.0792 10.4363C15.0783 10.4384 15.0771 10.4408 15.0762 10.4429C15.0687 10.4588 15.0612 10.4745 15.054 10.4898C15.0525 10.4928 15.051 10.4961 15.0495 10.4991C15.0219 10.5567 14.9958 10.6105 14.9715 10.6585C14.9709 10.6597 14.9703 10.661 14.9697 10.6622C14.9625 10.6769 14.9553 10.6907 14.9484 10.7045C14.9475 10.7063 14.9466 10.7081 14.9457 10.7102C14.9391 10.7234 14.9328 10.7357 14.9265 10.7477C14.9256 10.7492 14.925 10.7507 14.9241 10.7522C14.9103 10.779 14.8974 10.8033 14.8863 10.8243L14.8788 10.8387C14.8509 10.8946 14.8224 10.9498 14.793 11.0045C14.7834 11.0225 14.7732 11.0402 14.7633 11.0583C14.7432 11.0946 14.7234 11.1309 14.7027 11.167C14.6901 11.1886 14.6772 11.2099 14.6646 11.2312C14.646 11.2628 14.6274 11.2946 14.6082 11.3258C14.5941 11.3487 14.5797 11.3712 14.5653 11.3937C14.5467 11.4231 14.5284 11.4526 14.5095 11.4814C14.4945 11.5045 14.4786 11.5273 14.4633 11.5505C14.4444 11.5784 14.4261 11.6066 14.4069 11.6343C14.3907 11.6574 14.3742 11.6802 14.358 11.703C14.3388 11.7297 14.3199 11.7568 14.3004 11.7835C14.2836 11.8066 14.2659 11.8292 14.2488 11.8523C14.2293 11.8781 14.2098 11.9042 14.19 11.9298C14.1723 11.9526 14.154 11.9751 14.136 11.9976C14.1162 12.0229 14.0961 12.0481 14.076 12.0727C14.0574 12.0952 14.0388 12.1174 14.0199 12.14C13.9995 12.1643 13.9791 12.1889 13.9584 12.2129C13.9392 12.2352 13.9197 12.2574 13.9002 12.2793C13.8795 12.3027 13.8588 12.3265 13.8378 12.3499C13.818 12.3718 13.7976 12.3934 13.7775 12.4154C13.7562 12.4382 13.7352 12.4613 13.7136 12.4838C13.6932 12.5054 13.6722 12.5268 13.6515 12.5481C13.6299 12.5703 13.6083 12.5928 13.5864 12.6148C13.5654 12.6361 13.5441 12.6568 13.5228 12.6778C13.5009 12.6994 13.4787 12.7214 13.4565 12.7427C13.4349 12.7634 13.413 12.7841 13.3911 12.8049C13.3686 12.8259 13.3464 12.8472 13.3236 12.8679C13.3014 12.8883 13.2792 12.9085 13.2567 12.9286C13.2339 12.9493 13.2111 12.9697 13.1883 12.9901C13.1658 13.0103 13.1427 13.0301 13.1199 13.0499C13.0968 13.07 13.0737 13.0898 13.0506 13.1097C13.0275 13.1295 13.0041 13.1487 12.9807 13.1682C12.9573 13.1877 12.9339 13.207 12.9105 13.2262C12.8868 13.2454 12.8631 13.2643 12.8394 13.2835C12.8157 13.3025 12.792 13.3214 12.768 13.34C12.744 13.3589 12.7197 13.3775 12.6957 13.3959C12.6717 13.4142 12.6477 13.4328 12.6234 13.4508C12.5991 13.4691 12.5745 13.4875 12.5499 13.5055C12.5256 13.5235 12.5013 13.5412 12.477 13.5589C12.4521 13.5769 12.4272 13.595 12.4023 13.6127C12.378 13.6301 12.3534 13.6472 12.3288 13.6646C12.3036 13.6824 12.2781 13.6998 12.2526 13.7172C12.228 13.734 12.2034 13.7508 12.1785 13.7673C12.153 13.7845 12.1272 13.8016 12.1014 13.8187C12.0765 13.8352 12.0516 13.8514 12.0267 13.8676C12.0009 13.8845 11.9748 13.9013 11.9487 13.9178C11.9238 13.9337 11.8986 13.9496 11.8737 13.9652C11.8476 13.9818 11.8212 13.998 11.7948 14.0142C11.7696 14.0295 11.7444 14.0448 11.7192 14.0601C11.6925 14.0761 11.6661 14.0923 11.6394 14.1079C11.6142 14.1229 11.589 14.1376 11.5635 14.1523C11.5368 14.168 11.5098 14.1836 11.4831 14.1989C11.4579 14.2133 11.4324 14.2277 11.4069 14.2421C11.3799 14.2574 11.3529 14.2725 11.3256 14.2878C11.3001 14.3019 11.2749 14.3157 11.2494 14.3298C11.2221 14.3448 11.1948 14.3596 11.1675 14.3743C11.1423 14.3878 11.1168 14.4013 11.0916 14.4148C11.064 14.4295 11.0364 14.4439 11.0088 14.4584C10.9836 14.4716 10.9581 14.4845 10.9329 14.4974C10.9053 14.5115 10.8774 14.5259 10.8495 14.5397C10.8243 14.5526 10.7988 14.565 10.7733 14.5776C10.7454 14.5914 10.7175 14.6052 10.6896 14.6187C10.6644 14.631 10.6389 14.643 10.6137 14.6554C10.5858 14.6689 10.5576 14.6824 10.5297 14.6956C10.5045 14.7076 10.4793 14.7193 10.4541 14.731C10.4259 14.7442 10.3977 14.7572 10.3695 14.7701C10.3446 14.7815 10.3194 14.7926 10.2945 14.804C10.266 14.8169 10.2375 14.8298 10.209 14.8424C10.1841 14.8536 10.1595 14.8641 10.1346 14.8749C10.1061 14.8875 10.0773 14.8998 10.0488 14.9121C10.0239 14.9226 9.9993 14.9331 9.9747 14.9437C9.9462 14.9557 9.9174 14.968 9.8889 14.98C9.8646 14.9902 9.8403 15.0001 9.816 15.01C9.7872 15.022 9.7584 15.0337 9.7293 15.0455C9.705 15.0554 9.681 15.065 9.6567 15.0746C9.6279 15.086 9.5991 15.0977 9.5703 15.1091C9.5466 15.1184 9.5232 15.1274 9.4995 15.1364C9.4701 15.1479 9.441 15.1593 9.4116 15.1704C9.3888 15.1791 9.3663 15.1875 9.3435 15.1959C9.3138 15.207 9.2838 15.2184 9.2541 15.2295C9.2319 15.2377 9.2097 15.2458 9.1878 15.2539C9.1578 15.265 9.1275 15.2761 9.0975 15.2866C9.0765 15.2941 9.0555 15.3016 9.0345 15.3088C9.0036 15.3199 8.9727 15.3307 8.9418 15.3416C8.922 15.3485 8.9025 15.3551 8.883 15.362C8.8512 15.3731 8.8191 15.3839 8.7876 15.3947C8.7702 15.4004 8.7531 15.4061 8.736 15.4121C8.7021 15.4235 8.6682 15.435 8.6346 15.4461C8.6274 15.4485 8.6199 15.4509 8.6127 15.4533C8.4822 15.4962 8.3535 15.5368 8.2266 15.5755C8.2137 15.5794 8.2005 15.5836 8.1876 15.5875C8.1573 15.5965 8.1276 15.6055 8.0976 15.6142C8.0787 15.6199 8.0598 15.6257 8.0409 15.6311C8.0133 15.6392 7.986 15.647 7.9587 15.6548C7.938 15.6608 7.917 15.6671 7.8963 15.6728C7.8696 15.6803 7.8432 15.6878 7.8165 15.6953C7.7958 15.701 7.7748 15.7073 7.7541 15.713C7.728 15.7202 7.7025 15.7272 7.6767 15.7344C7.6557 15.7401 7.6347 15.7461 7.6137 15.7515C7.5888 15.7581 7.5639 15.7647 7.5393 15.7713C7.5183 15.777 7.497 15.7827 7.476 15.7881C7.4517 15.7944 7.4277 15.8007 7.4037 15.807C7.3827 15.8124 7.3614 15.8181 7.3407 15.8233C7.3176 15.8293 7.2948 15.835 7.2717 15.8407C7.2504 15.8461 7.2291 15.8515 7.2078 15.8566C7.1853 15.8623 7.1631 15.8677 7.1409 15.8731C7.1199 15.8782 7.0989 15.8833 7.0782 15.8884C7.0563 15.8938 7.0347 15.8989 7.0128 15.904C6.9921 15.9088 6.9714 15.9139 6.951 15.9188C6.9297 15.9239 6.9087 15.9287 6.8874 15.9335C6.8673 15.938 6.8472 15.9428 6.8274 15.9473C6.8067 15.9521 6.7863 15.9566 6.7656 15.9611C6.7458 15.9656 6.726 15.9701 6.7065 15.9743C6.6867 15.9788 6.6675 15.983 6.648 15.9872C6.6282 15.9914 6.6084 15.9959 6.5889 16.0001C6.5703 16.004 6.552 16.0079 6.5337 16.0118C6.5139 16.0161 6.4941 16.0203 6.4746 16.0245C6.4569 16.0281 6.4395 16.0317 6.4224 16.0353C6.4029 16.0392 6.3834 16.0434 6.3645 16.0473C6.3477 16.0506 6.3312 16.0539 6.3147 16.0575C6.2958 16.0614 6.2769 16.065 6.2583 16.0689C6.2421 16.0722 6.2262 16.0752 6.2106 16.0782C6.1992 16.0803 6.1881 16.0827 6.1767 16.0848C5.4552 15.8656 4.7916 15.5758 4.2021 15.222L4.203 15.2238ZM21.7242 10.2258C20.9643 15.6665 15.8076 19.8363 9.7296 19.9252C8.7369 19.9396 7.7952 19.8303 6.9309 19.5999C6.3408 19.4429 5.847 19.22 5.4582 18.936L5.5173 17.969C5.667 17.9458 5.8437 17.917 6.0429 17.8813H6.0441L6.2007 17.8524C6.2448 17.8443 6.2895 17.8356 6.3348 17.8269C7.1979 17.6608 8.3028 17.4002 9.4947 16.9987C10.2474 16.7449 11.0349 16.4353 11.8182 16.0575C14.3601 14.8319 16.1742 13.2211 17.2134 11.2679C17.247 11.2048 17.2797 11.1414 17.3115 11.0778C17.3808 10.9474 18.063 9.64561 18.2292 8.68012C18.2418 8.60624 18.2598 8.52546 18.282 8.44017C18.4971 7.61582 19.1388 6.35333 19.86 6.35333C19.9008 6.35333 19.9443 6.35453 19.9962 6.35723C20.5296 6.38366 20.9292 6.56594 21.2172 6.9146C21.7362 7.54285 21.9258 8.78042 21.7239 10.2258H21.7242Z",
2034
2071
  fill: colors.neutral800
2035
2072
  }
2036
2073
  ) }),
2037
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("clipPath", { id: "clip0_0_2321", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("rect", { width: "24", height: "22", fill: "white" }) }) })
2074
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("clipPath", { id: "clip0_0_2321", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("rect", { width: "24", height: "22", fill: "white" }) }) })
2038
2075
  ]
2039
2076
  }
2040
2077
  );
2041
2078
  var IconBanana_default = SvgIconBanana;
2042
2079
 
2043
2080
  // src/components/icons/IconBuying.tsx
2044
- var import_jsx_runtime22 = require("react/jsx-runtime");
2045
- var SvgIconBuying = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2046
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2081
+ var import_jsx_runtime23 = require("react/jsx-runtime");
2082
+ var SvgIconBuying = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2083
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2047
2084
  "path",
2048
2085
  {
2049
2086
  className: "icon-buying_svg__st0",
2050
2087
  d: "M672.6 1136.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c-.1-1.6-1.3-3-2.9-3zM683.4 1136.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c0-1.7-1.4-2.9-3-2.9z"
2051
2088
  }
2052
2089
  ),
2053
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2090
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2054
2091
  "path",
2055
2092
  {
2056
2093
  className: "icon-buying_svg__st0",
2057
2094
  d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1zM39 18.7c-.3-.1-.7-.1-.9-.1H21.2c-.5 0-.6-.1-.7-.4-.1-.3-.3-.6-.4-.8-.1-.2-.2-.5-.4-.8l-.1-.1c-.1-.1-.2-.3-.3-.3h-3.9v2.7h2.1c.2 0 .4 0 .5.3.5.9.9 1.9 1.4 2.8.9 1.8 1.9 3.7 2.7 5.7 0 0 .1.1.1.2s0 .2-.1.2c-.2.5-.5 1-.8 1.5-.2.3-.3.5-.5.9-.5.9-.6 2-.1 2.8.5.8 1.3 1.3 2.4 1.3h14.4V32H23.4c-.3 0-.5 0-.5-.1s.1-.3.1-.5c.3-.3.5-.7.7-1.2.2-.3.4-.4.8-.4h8.3c1.1 0 2-.5 2.6-1.7.7-1.3 1.4-2.7 2.3-4.1.6-1.1 1.3-2.3 1.9-3.5.4-.8-.1-1.5-.6-1.8zm-2.2 2.1c-.4.7-.8 1.4-1.1 2-.8 1.4-1.6 2.8-2.3 4.1-.3.5-.4.5-.6.5H24.2c0-.3-.1-.7-.3-.9-.8-2-1.8-3.8-2.7-5.7v-.1h15.6zM22.8 35.5c-1.4 0-2.6 1.2-2.6 2.6s1.2 2.6 2.6 2.6 2.6-1.2 2.6-2.6-1.2-2.6-2.6-2.6z"
2058
2095
  }
2059
2096
  ),
2060
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("circle", { className: "icon-buying_svg__st0", cx: 34.7, cy: 38.1, r: 2.6 })
2097
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("circle", { className: "icon-buying_svg__st0", cx: 34.7, cy: 38.1, r: 2.6 })
2061
2098
  ] });
2062
2099
  var IconBuying_default = SvgIconBuying;
2063
2100
 
2064
2101
  // src/components/icons/IconContentManagement.tsx
2065
- var import_jsx_runtime23 = require("react/jsx-runtime");
2066
- var IconContentManagement = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, fill: "0000", strokeWidth: "0px", children: [
2067
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2102
+ var import_jsx_runtime24 = require("react/jsx-runtime");
2103
+ var IconContentManagement = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, fill: "0000", strokeWidth: "0px", children: [
2104
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2068
2105
  "path",
2069
2106
  {
2070
2107
  className: "cls-1",
2071
2108
  d: "M33,38.1c0,1.2-1.2,2.2-2.8,2.2h-11c-1.6,0-2.8-1.2-2.8-2.8v-18.3c0-1.5,1.1-2.8,2.5-2.9,1.1-.1,3.2-.1,4.4-.1h1.6v2.1h-5.2c-1.2,0-1.3.1-1.3,1.3v16.9c0,1.1.2,1.3,1.3,1.3h9.7c1.2,0,1.3,0,1.3-1.4v-5.9h2.2v2.6c0,1.7.2,3.4,0,5Z"
2072
2109
  }
2073
2110
  ),
2074
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("rect", { className: "cls-1", x: "21.6", y: "34.1", width: "3.6", height: "5.2" }),
2075
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2111
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("rect", { className: "cls-1", x: "21.6", y: "34.1", width: "3.6", height: "5.2" }),
2112
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2076
2113
  "path",
2077
2114
  {
2078
2115
  className: "cls-1",
@@ -2083,23 +2120,23 @@ var IconContentManagement = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.
2083
2120
  var IconContentManagement_default = IconContentManagement;
2084
2121
 
2085
2122
  // src/components/icons/IconGoodsin.tsx
2086
- var import_jsx_runtime24 = require("react/jsx-runtime");
2087
- var SvgIconGoodsin = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2088
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2123
+ var import_jsx_runtime25 = require("react/jsx-runtime");
2124
+ var SvgIconGoodsin = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2125
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2089
2126
  "path",
2090
2127
  {
2091
2128
  className: "icon-goodsin_svg__st0",
2092
2129
  d: "M672.6 1136.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c-.1-1.6-1.3-3-2.9-3zM683.4 1136.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c0-1.7-1.4-2.9-3-2.9z"
2093
2130
  }
2094
2131
  ),
2095
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2132
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2096
2133
  "path",
2097
2134
  {
2098
2135
  className: "icon-goodsin_svg__st0",
2099
2136
  d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1zM19.5 34.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c0-1.6-1.3-3-2.9-3zM30.4 34.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c-.1-1.7-1.4-2.9-3-2.9z"
2100
2137
  }
2101
2138
  ),
2102
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2139
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2103
2140
  "path",
2104
2141
  {
2105
2142
  className: "icon-goodsin_svg__st0",
@@ -2110,8 +2147,8 @@ var SvgIconGoodsin = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("
2110
2147
  var IconGoodsin_default = SvgIconGoodsin;
2111
2148
 
2112
2149
  // src/components/icons/IconGrape.tsx
2113
- var import_jsx_runtime25 = require("react/jsx-runtime");
2114
- var SvgIconGrape = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2150
+ var import_jsx_runtime26 = require("react/jsx-runtime");
2151
+ var SvgIconGrape = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2115
2152
  "svg",
2116
2153
  {
2117
2154
  width: "24",
@@ -2120,7 +2157,7 @@ var SvgIconGrape = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2120
2157
  fill: "none",
2121
2158
  xmlns: "http://www.w3.org/2000/svg",
2122
2159
  ...props,
2123
- children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2160
+ children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2124
2161
  "path",
2125
2162
  {
2126
2163
  d: "M21 12C20.9984 10.6744 20.4711 9.40355 19.5338 8.46621C18.5964 7.52888 17.3256 7.00158 16 6.99999C14.9141 7.00504 13.86 7.36695 13 8.02999C13 8.02099 13.005 8.01399 13.005 8.00499C12.9832 7.60549 13.0456 7.20586 13.1882 6.83205C13.3309 6.45824 13.5506 6.11862 13.833 5.83523C14.1154 5.55185 14.4543 5.33104 14.8277 5.18714C15.201 5.04325 15.6004 4.97948 16 4.99999C16.2652 4.99999 16.5196 4.89464 16.7071 4.7071C16.8946 4.51956 17 4.26521 17 3.99999C17 3.73478 16.8946 3.48042 16.7071 3.29289C16.5196 3.10535 16.2652 2.99999 16 2.99999C15.3032 2.96439 14.6071 3.08408 13.9622 3.35041C13.3173 3.61675 12.7396 4.02307 12.271 4.53999C11.8704 3.47457 11.1471 2.56079 10.2022 1.92617C9.25727 1.29156 8.1378 0.967771 6.99999 0.999994C6.73478 0.999994 6.48042 1.10535 6.29289 1.29289C6.10535 1.48042 5.99999 1.73478 5.99999 1.99999C5.99703 3.81487 6.5846 5.58144 7.67399 7.03299C6.45538 7.10841 5.30691 7.62879 4.44673 8.49528C3.58655 9.36177 3.07458 10.514 3.00807 11.7331C2.94156 12.9523 3.32514 14.1534 4.08596 15.1083C4.84677 16.0632 5.93182 16.7055 7.13499 16.913C7.04927 17.2691 7.00398 17.6337 6.99999 18C6.99557 18.7054 7.14048 19.4038 7.4252 20.0493C7.70991 20.6947 8.12799 21.2726 8.65196 21.745C9.17592 22.2174 9.79392 22.5735 10.4653 22.79C11.1367 23.0065 11.8464 23.0785 12.5476 23.0012C13.2488 22.924 13.9257 22.6992 14.5339 22.3417C15.142 21.9841 15.6676 21.502 16.0762 20.9268C16.4847 20.3517 16.7669 19.6967 16.9042 19.0047C17.0416 18.3127 17.0309 17.5995 16.873 16.912C18.0277 16.7072 19.0738 16.1031 19.8282 15.2052C20.5826 14.3073 20.9974 13.1728 21 12ZM10.882 6.85099C8.99399 6.30899 8.34299 4.40599 8.11799 3.15099C10.006 3.69099 10.657 5.59299 10.882 6.85099ZM4.99999 12C4.99999 11.2043 5.31606 10.4413 5.87867 9.87867C6.44128 9.31606 7.20434 8.99999 7.99999 8.99999C8.79564 8.99999 9.55871 9.31606 10.1213 9.87867C10.6839 10.4413 11 11.2043 11 12C11 15.975 4.99999 15.976 4.99999 12ZM12 21C11.2043 21 10.4413 20.6839 9.87867 20.1213C9.31606 19.5587 8.99999 18.7956 8.99999 18C8.9999 17.5953 9.08544 17.1952 9.25099 16.826C10.3394 16.5388 11.3007 15.8961 11.982 15C12.4994 15.0066 13.0067 15.1437 13.457 15.3985C13.9073 15.6534 14.286 16.0178 14.558 16.458C14.8368 16.911 14.9893 17.4304 14.9996 17.9622C15.01 18.494 14.8778 19.0189 14.6167 19.4824C14.3557 19.9459 13.9754 20.331 13.5152 20.5979C13.0551 20.8648 12.5319 21.0036 12 21ZM16 15H15.982C15.3229 14.1283 14.3951 13.4979 13.342 13.206C13.311 13.197 13.282 13.182 13.251 13.174C13.0854 12.8047 12.9999 12.4047 13 12C13 11.4066 13.1759 10.8266 13.5056 10.3333C13.8352 9.83994 14.3038 9.45542 14.8519 9.22835C15.4001 9.00129 16.0033 8.94188 16.5853 9.05764C17.1672 9.17339 17.7018 9.45912 18.1213 9.87867C18.5409 10.2982 18.8266 10.8328 18.9424 11.4147C19.0581 11.9967 18.9987 12.5999 18.7716 13.148C18.5446 13.6962 18.1601 14.1648 17.6667 14.4944C17.1734 14.824 16.5933 15 16 15Z",
@@ -2132,23 +2169,23 @@ var SvgIconGrape = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2132
2169
  var IconGrape_default = SvgIconGrape;
2133
2170
 
2134
2171
  // src/components/icons/IconHome.tsx
2135
- var import_jsx_runtime26 = require("react/jsx-runtime");
2136
- var SvgIconHome = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2137
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2172
+ var import_jsx_runtime27 = require("react/jsx-runtime");
2173
+ var SvgIconHome = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2174
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
2138
2175
  "path",
2139
2176
  {
2140
2177
  className: "icon-home_svg__st0",
2141
2178
  d: "M672.6 1136.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c-.1-1.6-1.3-3-2.9-3zM683.4 1136.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c0-1.7-1.4-2.9-3-2.9z"
2142
2179
  }
2143
2180
  ),
2144
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2181
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
2145
2182
  "path",
2146
2183
  {
2147
2184
  className: "icon-home_svg__st0",
2148
2185
  d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1z"
2149
2186
  }
2150
2187
  ),
2151
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2188
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
2152
2189
  "path",
2153
2190
  {
2154
2191
  className: "icon-home_svg__st1",
@@ -2159,8 +2196,8 @@ var SvgIconHome = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("svg
2159
2196
  var IconHome_default = SvgIconHome;
2160
2197
 
2161
2198
  // src/components/icons/IconImport.tsx
2162
- var import_jsx_runtime27 = require("react/jsx-runtime");
2163
- var SvgIconImport = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "-8 -8 40 40", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
2199
+ var import_jsx_runtime28 = require("react/jsx-runtime");
2200
+ var SvgIconImport = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "-8 -8 40 40", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
2164
2201
  "path",
2165
2202
  {
2166
2203
  className: "icon-runs_svg__st0",
@@ -2170,16 +2207,16 @@ var SvgIconImport = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("sv
2170
2207
  var IconImport_default = SvgIconImport;
2171
2208
 
2172
2209
  // src/components/icons/IconLocation.tsx
2173
- var import_jsx_runtime28 = require("react/jsx-runtime");
2174
- var SvgIconLocation = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2175
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
2210
+ var import_jsx_runtime29 = require("react/jsx-runtime");
2211
+ var SvgIconLocation = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2212
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
2176
2213
  "path",
2177
2214
  {
2178
2215
  className: "icon-location_svg__st0",
2179
2216
  d: "M36.8 25.4c-.1-2.5-1.1-4.8-2.9-6.5-1.8-1.8-4.1-2.7-6.6-2.7-5.1 0-9.2 4.2-9.2 9.3 0 1.8.5 3.5 1.6 5.1 1.6 2.6 3.4 5.3 5.5 8.5.8 1.1 1.7 1.4 2.3 1.4h.1c.6 0 1.5-.3 2.2-1.4.5-.7.9-1.4 1.4-2.2l.1-.2c1.2-1.9 2.5-3.8 3.7-5.7 1.3-1.7 1.9-3.6 1.8-5.6zm-9.4-6.6h.1c1.7 0 3.4.7 4.6 1.9 1.3 1.3 2.1 3 2.1 4.8.1 1.7-.7 3.1-1.3 4l-.1.1c-1.2 1.9-2.4 3.8-3.7 5.7-.5.8-1 1.5-1.5 2.3-.1.1-.1.2-.2.2l-.2-.2c-2.1-3.1-3.8-5.8-5.5-8.4-.8-1.1-1.1-2.4-1.1-3.7.1-3.7 3.1-6.7 6.8-6.7zm.1 21.3z"
2180
2217
  }
2181
2218
  ),
2182
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
2219
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
2183
2220
  "path",
2184
2221
  {
2185
2222
  className: "icon-location_svg__st0",
@@ -2190,16 +2227,16 @@ var SvgIconLocation = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
2190
2227
  var IconLocation_default = SvgIconLocation;
2191
2228
 
2192
2229
  // src/components/icons/IconLogin.tsx
2193
- var import_jsx_runtime29 = require("react/jsx-runtime");
2194
- var SvgIconLogin = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2195
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
2230
+ var import_jsx_runtime30 = require("react/jsx-runtime");
2231
+ var SvgIconLogin = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2232
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2196
2233
  "path",
2197
2234
  {
2198
2235
  className: "icon-login_svg__st0",
2199
2236
  d: "M24.4 35.7h-4.1c-1.4 0-2.2-.9-2.2-2.2v-9.9c0-1.4.9-2.2 2.2-2.2h4.2c.6 0 1-.4 1-1v-.5c0-.8-.4-1-1-1H20c-1 0-2 .4-2.9 1.2-.8.7-1.2 1.8-1.4 2.6v11.4c0 .1 0 .2.1.3v.1c.4 1.9 2.1 3.4 3.9 3.4h4.8c.2 0 .6 0 .6-.3.1-.4.2-1 .1-1.3 0-.5-.7-.6-.8-.6z"
2200
2237
  }
2201
2238
  ),
2202
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
2239
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2203
2240
  "path",
2204
2241
  {
2205
2242
  className: "icon-login_svg__st0",
@@ -2210,16 +2247,16 @@ var SvgIconLogin = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("sv
2210
2247
  var IconLogin_default = SvgIconLogin;
2211
2248
 
2212
2249
  // src/components/icons/IconNotification.tsx
2213
- var import_jsx_runtime30 = require("react/jsx-runtime");
2214
- var SvgIconNotification = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2215
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2250
+ var import_jsx_runtime31 = require("react/jsx-runtime");
2251
+ var SvgIconNotification = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2252
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
2216
2253
  "path",
2217
2254
  {
2218
2255
  className: "icon-notification_svg__st0",
2219
2256
  d: "M33 38.1c-.1 1.2-1.2 2.2-2.8 2.2h-11c-1.6 0-2.8-1.2-2.8-2.8V19.2c0-1.5 1.1-2.8 2.5-2.9 1.1-.1 3.2-.1 4.4-.1H24.9v2.1H19.7c-1.2 0-1.3.1-1.3 1.3v16.9c0 1.1.2 1.3 1.3 1.3h9.7c1.2 0 1.3-.1 1.3-1.4v-5.9h2.2v2.6c.1 1.7.2 3.4.1 5z"
2220
2257
  }
2221
2258
  ),
2222
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2259
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
2223
2260
  "path",
2224
2261
  {
2225
2262
  className: "icon-notification_svg__st0",
@@ -2230,24 +2267,24 @@ var SvgIconNotification = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.js
2230
2267
  var IconNotification_default = SvgIconNotification;
2231
2268
 
2232
2269
  // src/components/icons/IconOpsMetrics.tsx
2233
- var import_jsx_runtime31 = require("react/jsx-runtime");
2234
- var SvgIconOpsMetrics = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2235
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M672.6 1136.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c-.1-1.6-1.3-3-2.9-3zM683.4 1136.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c0-1.7-1.4-2.9-3-2.9z" }),
2236
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3s2.9.9 3.7 2.4c.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1zM39.5 40.7H29V28.2h10.5v12.5zm-8-2.5H37v-7.5h-5.5v7.5zm-6 2.5H15v-8.5h10.5v8.5zm-8-2.5H23v-3.5h-5.5v3.5zm8-9.5H15V16.2h10.5v12.5zm-8-2.5H23v-7.5h-5.5v7.5zm22-1.5H29v-8.5h10.5v8.5zm-8-2.5H37v-3.5h-5.5v3.5z" })
2270
+ var import_jsx_runtime32 = require("react/jsx-runtime");
2271
+ var SvgIconOpsMetrics = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2272
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M672.6 1136.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c-.1-1.6-1.3-3-2.9-3zM683.4 1136.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c0-1.7-1.4-2.9-3-2.9z" }),
2273
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3s2.9.9 3.7 2.4c.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1zM39.5 40.7H29V28.2h10.5v12.5zm-8-2.5H37v-7.5h-5.5v7.5zm-6 2.5H15v-8.5h10.5v8.5zm-8-2.5H23v-3.5h-5.5v3.5zm8-9.5H15V16.2h10.5v12.5zm-8-2.5H23v-7.5h-5.5v7.5zm22-1.5H29v-8.5h10.5v8.5zm-8-2.5H37v-3.5h-5.5v3.5z" })
2237
2274
  ] });
2238
2275
  var IconOpsMetrics_default = SvgIconOpsMetrics;
2239
2276
 
2240
2277
  // src/components/icons/IconOrders.tsx
2241
- var import_jsx_runtime32 = require("react/jsx-runtime");
2242
- var SvgIconOrders = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2243
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
2278
+ var import_jsx_runtime33 = require("react/jsx-runtime");
2279
+ var SvgIconOrders = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2280
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
2244
2281
  "path",
2245
2282
  {
2246
2283
  className: "icon-orders_svg__st0",
2247
2284
  d: "M36.1 23.3l-6.6-6.6c-.2-.2-.5-.3-.8-.3h-8.8c-1.8 0-3.3 1.5-3.3 3.3v17.7c0 1.8 1.5 3.3 3.3 3.3h13.2c1.8 0 3.3-1.5 3.3-3.3V24.1c0-.3-.1-.6-.3-.8zm-1.9 14.1c0 .6-.5 1.1-1.1 1.1H19.9c-.6 0-1.1-.5-1.1-1.1V19.7c0-.6.5-1.1 1.1-1.1h8.4l6 6-.1 12.8z"
2248
2285
  }
2249
2286
  ),
2250
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
2287
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
2251
2288
  "path",
2252
2289
  {
2253
2290
  className: "icon-orders_svg__st0",
@@ -2258,8 +2295,8 @@ var SvgIconOrders = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("s
2258
2295
  var IconOrders_default = SvgIconOrders;
2259
2296
 
2260
2297
  // src/components/icons/IconPhone.tsx
2261
- var import_jsx_runtime33 = require("react/jsx-runtime");
2262
- var SvgIconPhone = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
2298
+ var import_jsx_runtime34 = require("react/jsx-runtime");
2299
+ var SvgIconPhone = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
2263
2300
  "path",
2264
2301
  {
2265
2302
  className: "icon-phone_svg__st0",
@@ -2269,30 +2306,30 @@ var SvgIconPhone = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("svg
2269
2306
  var IconPhone_default = SvgIconPhone;
2270
2307
 
2271
2308
  // src/components/icons/IconPriceList.tsx
2272
- var import_jsx_runtime34 = require("react/jsx-runtime");
2273
- var SvgIconPriceList = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2274
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
2309
+ var import_jsx_runtime35 = require("react/jsx-runtime");
2310
+ var SvgIconPriceList = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2311
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2275
2312
  "path",
2276
2313
  {
2277
2314
  className: "icon-price-list_svg__st0",
2278
2315
  d: "M672.6 1136.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c-.1-1.6-1.3-3-2.9-3zM683.4 1136.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c0-1.7-1.4-2.9-3-2.9z"
2279
2316
  }
2280
2317
  ),
2281
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
2318
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2282
2319
  "path",
2283
2320
  {
2284
2321
  className: "icon-price-list_svg__st0",
2285
2322
  d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1z"
2286
2323
  }
2287
2324
  ),
2288
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
2325
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2289
2326
  "path",
2290
2327
  {
2291
2328
  className: "icon-price-list_svg__st1",
2292
2329
  d: "M27.3 33c2.6 0 4.8-2.1 4.8-4.7 0-2.5-2.1-4.6-4.8-4.6-2.6 0-4.8 2.1-4.8 4.7 0 1.2.5 2.3 1.4 3.2.9.9 2.1 1.4 3.4 1.4zm-2.4-4.6c0-1.3 1.1-2.3 2.4-2.3 1.3 0 2.4 1 2.4 2.2 0 1.3-1.1 2.3-2.4 2.3-.7 0-1.3-.3-1.7-.7-.5-.4-.7-1-.7-1.5z"
2293
2330
  }
2294
2331
  ),
2295
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
2332
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2296
2333
  "path",
2297
2334
  {
2298
2335
  className: "icon-price-list_svg__st1",
@@ -2303,16 +2340,16 @@ var SvgIconPriceList = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)
2303
2340
  var IconPriceList_default = SvgIconPriceList;
2304
2341
 
2305
2342
  // src/components/icons/IconProducts.tsx
2306
- var import_jsx_runtime35 = require("react/jsx-runtime");
2307
- var SvgIconProducts = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2308
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2343
+ var import_jsx_runtime36 = require("react/jsx-runtime");
2344
+ var SvgIconProducts = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2345
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2309
2346
  "path",
2310
2347
  {
2311
2348
  className: "icon-products_svg__st0",
2312
2349
  d: "M23.2 30.2c0-.9-.6-1.5-1.5-1.5-.8 0-1.7.8-1.7 1.5 0 1 .8 1.6 1.6 1.7h.2c.3 0 .6-.1.8-.3.4-.3.6-.8.6-1.4zM23.1 32c-.3-.1-.6 0-.8.1-.3.2-.5.6-.5 1 .1.5.3 1 1.1 1 .7 0 1.1-.4 1.1-1.1 0-.7-.6-.9-.9-1zM22.5 23.4c-1.4 0-2.5 1.1-2.5 2.5s1 2.3 2.5 2.4h.2c.6 0 1.2-.3 1.7-.8.4-.5.6-1.1.5-1.6-.2-1.5-1.1-2.5-2.4-2.5z"
2313
2350
  }
2314
2351
  ),
2315
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2352
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2316
2353
  "path",
2317
2354
  {
2318
2355
  className: "icon-products_svg__st0",
@@ -2323,79 +2360,79 @@ var SvgIconProducts = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
2323
2360
  var IconProducts_default = SvgIconProducts;
2324
2361
 
2325
2362
  // src/components/icons/IconPromoCode.tsx
2326
- var import_jsx_runtime36 = require("react/jsx-runtime");
2327
- var SvgIconPromoCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("svg", { viewBox: "0 0 42.5 42.5", ...props, children: [
2328
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2363
+ var import_jsx_runtime37 = require("react/jsx-runtime");
2364
+ var SvgIconPromoCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("svg", { viewBox: "0 0 42.5 42.5", ...props, children: [
2365
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2329
2366
  "path",
2330
2367
  {
2331
2368
  className: "promo_code_svg_st0",
2332
2369
  d: "M11.5,15.9c1.2,0,0.8-1,0.8-1.7c0-1.5,0.2-1.5,1.7-1.7c0.7,0,1.7,0.3,1.7-0.8c0,0,0,0,0-0.1\n c0-0.3-0.1-0.4-0.2-0.5c-0.3-0.4-1.1-0.2-1.5-0.2c-2.7,0-3.5,0.8-3.3,3.3c0,0.3,0,0.6,0,0.8C10.7,15.6,10.8,16,11.5,15.9z"
2333
2370
  }
2334
2371
  ),
2335
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2372
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2336
2373
  "path",
2337
2374
  {
2338
2375
  className: "promo_code_svg_st0",
2339
2376
  d: "M14.9,17.5C14.9,17.6,14.9,17.6,14.9,17.5C14.9,17.6,14.9,17.6,14.9,17.5c0,1.5,1.1,2.5,2.5,2.5c0,0,0,0,0,0\n c0,0,0,0,0,0s0,0,0,0c1.4,0,2.5-1.1,2.5-2.4c0,0,0-0.1,0-0.1c0-1.4-1.1-2.5-2.5-2.5c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0\n C16,15.1,14.9,16.2,14.9,17.5z"
2340
2377
  }
2341
2378
  ),
2342
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2379
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2343
2380
  "path",
2344
2381
  {
2345
2382
  className: "promo_code_svg_st0",
2346
2383
  d: "M26.7,24.4C26.7,24.4,26.7,24.4,26.7,24.4C26.7,24.4,26.7,24.4,26.7,24.4c0-1.4-1.1-2.5-2.5-2.5\n c-0.1,0-0.1,0-0.2,0c-1.4,0-2.5,1.2-2.5,2.7c0,1.4,1.2,2.5,2.7,2.5C25.6,27,26.8,25.9,26.7,24.4z"
2347
2384
  }
2348
2385
  ),
2349
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2386
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2350
2387
  "path",
2351
2388
  {
2352
2389
  className: "promo_code_svg_st0",
2353
2390
  d: "M30,18.4c-0.5,0-0.8,0.4-0.8,0.8v0v3.5v0c0,0.5,0.4,0.8,0.8,0.8s0.8-0.4,0.8-0.8v0v-1.7v0v0v-1.8v0\n C30.9,18.8,30.5,18.4,30,18.4z"
2354
2391
  }
2355
2392
  ),
2356
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2393
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2357
2394
  "path",
2358
2395
  {
2359
2396
  className: "promo_code_svg_st0",
2360
2397
  d: "M25.9,16.8c0-0.3-0.2-0.5-0.5-0.7c-0.5-0.3-0.8,0-1.2,0.3c0,0-0.1,0.1-0.1,0.1L16,24.6\n c-0.1,0.1-0.2,0.1-0.3,0.2c-0.2,0.3-0.2,0.8,0.1,1c0,0,0,0,0.1,0.1c0.5,0.5,1,0.2,1.3-0.2l0.2-0.2c0,0,0,0,0,0l8-8\n C25.7,17.4,25.9,17.1,25.9,16.8z"
2361
2398
  }
2362
2399
  ),
2363
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2400
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2364
2401
  "path",
2365
2402
  {
2366
2403
  className: "promo_code_svg_st0",
2367
2404
  d: "M19,12.6L19,12.6C19.1,12.6,19.1,12.6,19,12.6c0.1,0,0.1,0,0.2,0h3.3c0.4,0,0.8-0.3,0.8-0.7c0,0,0-0.1,0-0.1\n c0-0.4-0.3-0.8-0.7-0.8c0,0-0.1,0-0.1,0h-0.2c0,0,0,0,0,0h-1.5h-1.7c-0.7,0-1,0.2-1,0.8c0,0,0,0.1,0,0.1\n C18.2,12.3,18.6,12.6,19,12.6z"
2368
2405
  }
2369
2406
  ),
2370
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2407
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2371
2408
  "path",
2372
2409
  {
2373
2410
  className: "promo_code_svg_st0",
2374
2411
  d: "M12.4,19.2c0-0.4-0.4-0.8-0.8-0.7c0,0-0.1,0-0.1,0c-0.4,0-0.8,0.4-0.7,0.8v0.2v3.2v0.1v0.1\n c0,0.4,0.3,0.8,0.7,0.8c0,0,0.1,0,0.1,0c0.4,0,0.8-0.3,0.8-0.7c0,0,0-0.1,0-0.1l0-1.7v-1.7c0,0,0,0,0,0V19.2\n C12.4,19.2,12.4,19.2,12.4,19.2z"
2375
2412
  }
2376
2413
  ),
2377
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2414
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2378
2415
  "path",
2379
2416
  {
2380
2417
  className: "promo_code_svg_st0",
2381
2418
  d: "M22.4,29.4H22h-1.3h-1.2h-0.3c-0.5,0-0.9,0.3-1,0.8c0,0.4,0.3,0.8,0.7,0.8c0,0,0.1,0,0.1,0h0.3h2.8h0.3\n c0,0,0.1,0,0.1,0c0.4,0,0.8-0.4,0.7-0.8C23.3,29.8,22.9,29.4,22.4,29.4z"
2382
2419
  }
2383
2420
  ),
2384
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2421
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2385
2422
  "path",
2386
2423
  {
2387
2424
  className: "promo_code_svg_st0",
2388
2425
  d: "M27.5,12.6L27.5,12.6c1.5,0,1.7,0.2,1.7,1.6v0.1c0,0.7-0.3,1.6,0.8,1.6c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0.2,0,0.3,0,0.4-0.1c0,0,0,0,0,0c0.6-0.2,0.4-1,0.4-1.6l0-0.2c0.1-0.8-0.1-1.6-0.5-2.3c-1.1-0.9-2.6-1.2-4-0.8\n c-0.1,0-0.1,0.1-0.1,0.1c-0.2,0.1-0.4,0.3-0.4,0.7C25.9,12.9,26.9,12.6,27.5,12.6z"
2389
2426
  }
2390
2427
  ),
2391
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2428
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2392
2429
  "path",
2393
2430
  {
2394
2431
  className: "promo_code_svg_st0",
2395
2432
  d: "M30.1,26.1C30.1,26.1,30.1,26.1,30.1,26.1C30,26.1,30,26.1,30.1,26.1c-1.2,0-0.8,1-0.8,1.7\n c0,0.5,0,0.9-0.1,1.1c0,0.1-0.1,0.2-0.2,0.3c0,0,0,0,0,0c-0.1,0.1-0.2,0.1-0.3,0.2c-0.2,0.1-0.6,0.1-1.1,0.1h-0.1\n c-0.4,0-0.9-0.1-1.2,0c-0.3,0.1-0.6,0.4-0.6,0.7c0,0,0,0.1,0,0.1c0,0.5,0.3,0.7,0.7,0.8c1.6,0.5,2.8,0.2,3.6-0.6\n c0.4-0.4,0.7-0.9,0.8-1.6c0,0,0,0,0,0c0-0.2,0.1-0.5,0.1-0.7c0-0.1,0-0.1,0-0.2v-0.2C30.9,27.1,31.2,26.1,30.1,26.1z"
2396
2433
  }
2397
2434
  ),
2398
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2435
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2399
2436
  "path",
2400
2437
  {
2401
2438
  className: "promo_code_svg_st0",
@@ -2406,8 +2443,8 @@ var SvgIconPromoCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)
2406
2443
  var IconPromoCode_default = SvgIconPromoCode;
2407
2444
 
2408
2445
  // src/components/icons/IconQc.tsx
2409
- var import_jsx_runtime37 = require("react/jsx-runtime");
2410
- var SvgIconQc = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2446
+ var import_jsx_runtime38 = require("react/jsx-runtime");
2447
+ var SvgIconQc = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
2411
2448
  "path",
2412
2449
  {
2413
2450
  className: "icon-qc_svg__st0",
@@ -2417,8 +2454,8 @@ var SvgIconQc = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("svg",
2417
2454
  var IconQc_default = SvgIconQc;
2418
2455
 
2419
2456
  // src/components/icons/IconReports.tsx
2420
- var import_jsx_runtime38 = require("react/jsx-runtime");
2421
- var SvgIconReports = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
2457
+ var import_jsx_runtime39 = require("react/jsx-runtime");
2458
+ var SvgIconReports = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2422
2459
  "path",
2423
2460
  {
2424
2461
  className: "icon-reports_svg__st0",
@@ -2428,23 +2465,23 @@ var SvgIconReports = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("s
2428
2465
  var IconReports_default = SvgIconReports;
2429
2466
 
2430
2467
  // src/components/icons/IconRetail.tsx
2431
- var import_jsx_runtime39 = require("react/jsx-runtime");
2432
- var SvgIconRetail = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2433
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2468
+ var import_jsx_runtime40 = require("react/jsx-runtime");
2469
+ var SvgIconRetail = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2470
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2434
2471
  "path",
2435
2472
  {
2436
2473
  className: "icon-retail_svg__st0",
2437
2474
  d: "M38.2 25.5c1 0 1.7-.2 2.5-1 .7-.7 1-1.5 1-2.5s-.4-1.7-1-2.5c-.7-.7-1.6-1-2.5-1-1 0-1.7.2-2.5 1-.6.6-1 1.5-1 2.5s.2 1.7 1 2.5 1.6 1 2.5 1zm-1.1-4.6c.3-.3.5-.4 1.1-.4.4 0 .7.1 1 .4.4.5.5.8.5 1.1 0 .6-.1.8-.4 1.1-.3.3-.5.4-1.1.4-.5 0-.8-.1-1.1-.4-.3-.3-.4-.5-.4-1.1 0-.4.2-.8.4-1.1zM27.5 28.5c1.1 0 2.1-.4 3-1.2.9-.9 1.2-1.7 1.2-3 0-1.1-.5-2.1-1.2-3-.9-.9-1.9-1.2-3-1.2s-2.1.4-3 1.2c-.9.9-1.2 1.9-1.2 3s.4 2.1 1.2 3c.9.8 1.9 1.2 3 1.2zm-1.6-5.8c.5-.5.9-.7 1.6-.7.6 0 1.1.2 1.5.6.5.6.7 1.1.7 1.6 0 .7-.2 1.1-.7 1.6-.5.5-.9.7-1.6.7-.6 0-1.1-.2-1.6-.7-.5-.5-.7-.9-.7-1.6.2-.6.4-1.1.8-1.5zM16.8 25.7c1 0 1.7-.2 2.5-1 .7-.7 1-1.5 1-2.5s-.4-1.7-1-2.5c-.7-.7-1.6-1-2.5-1-1 0-1.7.2-2.5 1-.6.6-1 1.5-1 2.5s.2 1.7 1 2.5 1.6 1 2.5 1zm-1.1-4.5c.3-.3.5-.4 1.1-.4.4 0 .7.1 1 .4.4.5.5.8.5 1.1 0 .6-.1.8-.4 1.1-.3.3-.5.4-1.1.4-.5 0-.8-.1-1.1-.4-.3-.3-.4-.5-.4-1.1 0-.5.2-.8.4-1.1z"
2438
2475
  }
2439
2476
  ),
2440
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2477
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2441
2478
  "path",
2442
2479
  {
2443
2480
  className: "icon-retail_svg__st0",
2444
2481
  d: "M44.4 29.1c-.1-.4-.1-.7-.2-1-.1-.2-.2-.6-.4-.9-.1-.2-.2-.5-.5-.7-.2-.2-.5-.4-.7-.5-.2 0-.6-.1-1-.1-.1 0-.1 0-.4.2-.2.2-.5.2-.7.5s-.6.4-1 .5c-.4.1-.9.2-1.2.2s-.9 0-1.2-.2c-.4-.2-.7-.4-1-.5-.2-.2-.5-.4-.7-.5-.4-.1-.4-.2-.6-.2-.4 0-.7 0-1 .1s-.5.2-.7.5c-.1.2-.4.5-.5.7-.1.2-.2.6-.4.9-.1.2-.1.5-.2.8.2 0 .4.1.6.1.4.1.7.4 1 .6.2.4.4.6.6 1 .2.4.4.7.5 1.1.1.4.2.7.2 1.1 0 0 .1.1.1.4h-.9c-.7 0-1.2-.2-1.7-.6-.5-.4-.7-1-.7-1.7V30c0-.2 0-.6.1-1h-.4c-.1 0-.2 0-.5.2-.2.2-.6.4-.9.6s-.7.4-1.2.6c-.5.1-1 .2-1.5.2s-1 0-1.5-.2-1-.4-1.2-.6c-.2-.2-.6-.4-.9-.6-.2-.1-.4-.2-.5-.2h-.4c.1.1.1.2.1.4 0 0 .2 1.1.2 1.9s-.1 1.2-.6 1.7c-.4.5-1 .6-1.7.7h-1.1c0-.2.1-.4.1-.6 0-.5.1-.9.2-1.2 0-.1.1-.3.1-.4v-.2.2l.3-.6c.1-.4.4-.7.6-1 .4-.4.6-.5 1-.6.2-.1.5-.1.7-.1h-.1c0-.2-.1-.4-.1-.6-.1-.2-.2-.6-.4-.9-.1-.2-.2-.5-.5-.7s-.5-.4-.7-.5c-.2 0-.6-.1-1-.1-.1 0-.1.1-.4.2-.2.2-.5.2-.7.5-.2.2-.6.4-1 .5s-.9.2-1.2.2-.9-.1-1.2-.2c-.4-.2-.7-.4-1-.5-.2-.2-.5-.4-.7-.5s-.2-.2-.4-.2c-.4 0-.7 0-1 .1-.2.1-.5.2-.7.5-.1.2-.4.5-.5.7-.1.2-.2.6-.4.9-.1.2-.1.6-.2 1 0 .4-.1.7-.1 1v.9c0 .7.2 1.2.7 1.7.4.4 1 .6 1.7.6h6.8c-.1.2-.1.4-.1.6v1.1c0 .9.2 1.5.9 2.1.5.5 1.1.7 2.1.7h9.8c.9 0 1.5-.2 2.1-.7.6-.5.9-1.1.9-2.1 0-.6-.1-1.5-.2-2h7.1c.7 0 1.2-.1 1.7-.6s.7-1 .7-1.7c.1-.9-.2-2.1-.2-2.1zm-25.6.5c-.3.3-.6.8-.6 1.3 0 .1-.1.2-.1.3 0 .1-.1.2-.1.4h-5.5c-.2-.2-.2-.2-.2-.3v-.8-.1c0-.2.1-.4.1-.6 0-.2.1-.3.1-.5v-.1c.1-.1.1-.3.2-.5 0-.1.1-.2.1-.2l.1-.1v-.1c.2.2.3.3.5.4.1.1.2.1.4.2s.3.1.4.2c.1.1.3.2.5.2.5.2 1.2.4 1.9.4s1.4-.2 1.9-.4c.2-.1.4-.1.6-.2-.1.1-.2.3-.3.5zm14.5 6.2c-.4.3-.6.4-.9.4h-9.8c-.5 0-.6-.1-.7-.2-.2-.2-.2-.3-.3-.4.8-.2 1.7-.4 2.5-1.3.6-.6.9-1.2 1.1-1.9.9.4 1.6.4 2.2.4.7 0 1.4-.2 2-.3.1 0 .3-.1.4-.2.1 0 .1 0 .2-.1.2.8.7 1.5 1.4 2 .5.4 1.1.8 2.1.9v.2c-.2.4-.2.5-.2.5zm9.2-4.5h-5.8c0-.1-.1-.2-.1-.2-.1-.4-.3-1-.7-1.6-.1-.2-.2-.3-.3-.4-.1-.2-.2-.4-.4-.6 0 0 .1 0 .2.1.2.1.3.1.4.2.9.6 1.8.6 2.4.6.7 0 1.4-.2 1.9-.4s1.1-.4 1.7-.9c.1 0 .1-.1.2-.1 0 0 0 .1.1.1 0 .1.1.2.1.3.1.2.1.3.2.5v.1c0 .2.1.4.1.6.1.5.2 1.1.2 1.4 0 .1 0 .1-.2.3z"
2445
2482
  }
2446
2483
  ),
2447
- /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2484
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2448
2485
  "path",
2449
2486
  {
2450
2487
  className: "icon-retail_svg__st0",
@@ -2455,8 +2492,8 @@ var SvgIconRetail = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("s
2455
2492
  var IconRetail_default = SvgIconRetail;
2456
2493
 
2457
2494
  // src/components/icons/IconRuns.tsx
2458
- var import_jsx_runtime40 = require("react/jsx-runtime");
2459
- var SvgIconRuns = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2495
+ var import_jsx_runtime41 = require("react/jsx-runtime");
2496
+ var SvgIconRuns = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
2460
2497
  "path",
2461
2498
  {
2462
2499
  className: "icon-runs_svg__st0",
@@ -2466,23 +2503,23 @@ var SvgIconRuns = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("svg"
2466
2503
  var IconRuns_default = SvgIconRuns;
2467
2504
 
2468
2505
  // src/components/icons/IconScales.tsx
2469
- var import_jsx_runtime41 = require("react/jsx-runtime");
2470
- var SvgIconScales = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2471
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
2506
+ var import_jsx_runtime42 = require("react/jsx-runtime");
2507
+ var SvgIconScales = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2508
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2472
2509
  "path",
2473
2510
  {
2474
2511
  className: "icon-scales_svg__st0",
2475
2512
  d: "M27.7 28.9c-2.7 0-4.9 2.2-4.9 4.9s2.2 4.9 4.9 4.9 4.9-2.2 4.9-4.9-2.2-4.9-4.9-4.9z"
2476
2513
  }
2477
2514
  ),
2478
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
2515
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2479
2516
  "path",
2480
2517
  {
2481
2518
  className: "icon-scales_svg__st0",
2482
2519
  d: "M34.1 25.5h-2.5c-.1-.2-.2-.3-.2-.5 0-.3.2-.6.4-.9 3.2-.6 4.6-1.7 4.6-1.7 1.8-1.3 2-2.4 2-2.8 0-.6-.5-1.1-1.1-1.1H18.2c-.6 0-1.1.5-1.1 1.1 0 .5.3 1.5 2 2.8.2.1 1.6 1.1 4.7 1.7.2.3.4.6.4.9 0 .2-.1.4-.2.5h-2.7c-1.4 0-2.6 1.2-2.6 2.5l-1.5 11.4v.1c0 1.4 1.2 2.6 2.6 2.6h15.9c1.4 0 2.6-1.2 2.6-2.7L36.7 28c0-1.4-1.2-2.5-2.6-2.5zm.7-4.8c-.5.3-2.6 1.6-7.1 1.6-.2 0-1.3 0-2.3-.1h-.2c-2.7-.4-4.2-1.1-4.6-1.4h14.2zm.8 19.1H19.7c-.2 0-.4-.2-.4-.3l1.5-11.3v-.1c0-.2.2-.4.4-.4h12.9c.2 0 .4.2.4.4L36 39.4c0 .3-.2.4-.4.4z"
2483
2520
  }
2484
2521
  ),
2485
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
2522
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2486
2523
  "path",
2487
2524
  {
2488
2525
  className: "icon-scales_svg__st1",
@@ -2493,8 +2530,8 @@ var SvgIconScales = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("s
2493
2530
  var IconScales_default = SvgIconScales;
2494
2531
 
2495
2532
  // src/components/icons/IconSearchCategories.tsx
2496
- var import_jsx_runtime42 = require("react/jsx-runtime");
2497
- var SvgIconSearchCategories = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2533
+ var import_jsx_runtime43 = require("react/jsx-runtime");
2534
+ var SvgIconSearchCategories = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
2498
2535
  "path",
2499
2536
  {
2500
2537
  className: "icon-search-categories_svg__st0",
@@ -2504,8 +2541,8 @@ var SvgIconSearchCategories = (props) => /* @__PURE__ */ (0, import_jsx_runtime4
2504
2541
  var IconSearchCategories_default = SvgIconSearchCategories;
2505
2542
 
2506
2543
  // src/components/icons/IconSetting.tsx
2507
- var import_jsx_runtime43 = require("react/jsx-runtime");
2508
- var SvgIconSetting = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
2544
+ var import_jsx_runtime44 = require("react/jsx-runtime");
2545
+ var SvgIconSetting = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
2509
2546
  "path",
2510
2547
  {
2511
2548
  className: "icon-setting_svg__st0",
@@ -2515,8 +2552,8 @@ var SvgIconSetting = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("s
2515
2552
  var IconSetting_default = SvgIconSetting;
2516
2553
 
2517
2554
  // src/components/icons/IconSnail.tsx
2518
- var import_jsx_runtime44 = require("react/jsx-runtime");
2519
- var SvgIconSnail = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
2555
+ var import_jsx_runtime45 = require("react/jsx-runtime");
2556
+ var SvgIconSnail = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2520
2557
  "svg",
2521
2558
  {
2522
2559
  xmlns: "http://www.w3.org/2000/svg",
@@ -2524,36 +2561,36 @@ var SvgIconSnail = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
2524
2561
  height: "24",
2525
2562
  viewBox: "0 0 24 24",
2526
2563
  ...props,
2527
- children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("path", { d: "M20.31 8.03L21.24 4.95C21.67 4.85 22 4.47 22 4C22 3.45 21.55 3 21 3C20.45 3 20 3.45 20 4C20 4.26 20.11 4.5 20.27 4.68L19.5 7.26L18.73 4.68C18.89 4.5 19 4.26 19 4C19 3.45 18.55 3 18 3C17.45 3 17 3.45 17 4C17 4.47 17.33 4.85 17.76 4.95L18.69 8.03C17.73 8.18 17 9 17 10V12.25C15.65 9.16 12.63 7 9.11 7C5.19 7 2 10.26 2 14.26C2 16.1 2.82 17.75 4.1 18.85L2.88 19C2.38 19.06 2 19.5 2 20C2 20.55 2.45 21 3 21H19.12C20.16 21 21 20.16 21 19.12V11.72C21.6 11.38 22 10.74 22 10C22 9 21.27 8.18 20.31 8.03ZM15.6 17.41L12.07 17.86C12.5 17.1 12.8 16.21 12.8 15.26C12.8 12.94 10.95 11.06 8.67 11.06C8.14 11.06 7.62 11.18 7.14 11.41C6.65 11.66 6.44 12.26 6.69 12.75C6.93 13.25 7.53 13.45 8.03 13.21C8.23 13.11 8.45 13.06 8.67 13.06C9.85 13.06 10.8 14.04 10.8 15.26C10.8 16.92 9.5 18.27 7.89 18.27C5.75 18.27 4 16.47 4 14.26C4 11.36 6.29 9 9.11 9C12.77 9 15.75 12.06 15.75 15.82C15.75 16.36 15.69 16.89 15.6 17.41Z" })
2564
+ children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { d: "M20.31 8.03L21.24 4.95C21.67 4.85 22 4.47 22 4C22 3.45 21.55 3 21 3C20.45 3 20 3.45 20 4C20 4.26 20.11 4.5 20.27 4.68L19.5 7.26L18.73 4.68C18.89 4.5 19 4.26 19 4C19 3.45 18.55 3 18 3C17.45 3 17 3.45 17 4C17 4.47 17.33 4.85 17.76 4.95L18.69 8.03C17.73 8.18 17 9 17 10V12.25C15.65 9.16 12.63 7 9.11 7C5.19 7 2 10.26 2 14.26C2 16.1 2.82 17.75 4.1 18.85L2.88 19C2.38 19.06 2 19.5 2 20C2 20.55 2.45 21 3 21H19.12C20.16 21 21 20.16 21 19.12V11.72C21.6 11.38 22 10.74 22 10C22 9 21.27 8.18 20.31 8.03ZM15.6 17.41L12.07 17.86C12.5 17.1 12.8 16.21 12.8 15.26C12.8 12.94 10.95 11.06 8.67 11.06C8.14 11.06 7.62 11.18 7.14 11.41C6.65 11.66 6.44 12.26 6.69 12.75C6.93 13.25 7.53 13.45 8.03 13.21C8.23 13.11 8.45 13.06 8.67 13.06C9.85 13.06 10.8 14.04 10.8 15.26C10.8 16.92 9.5 18.27 7.89 18.27C5.75 18.27 4 16.47 4 14.26C4 11.36 6.29 9 9.11 9C12.77 9 15.75 12.06 15.75 15.82C15.75 16.36 15.69 16.89 15.6 17.41Z" })
2528
2565
  }
2529
2566
  );
2530
2567
  var IconSnail_default = SvgIconSnail;
2531
2568
 
2532
2569
  // src/components/icons/IconSpecialPrice.tsx
2533
- var import_jsx_runtime45 = require("react/jsx-runtime");
2534
- var SvgIconSpecialPrice = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2535
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2570
+ var import_jsx_runtime46 = require("react/jsx-runtime");
2571
+ var SvgIconSpecialPrice = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2572
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2536
2573
  "path",
2537
2574
  {
2538
2575
  className: "icon-special-price_svg__st0",
2539
2576
  d: "M672.6 1136.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c-.1-1.6-1.3-3-2.9-3zM683.4 1136.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c0-1.7-1.4-2.9-3-2.9z"
2540
2577
  }
2541
2578
  ),
2542
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2579
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2543
2580
  "path",
2544
2581
  {
2545
2582
  className: "icon-special-price_svg__st0",
2546
2583
  d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1zM28.5 38.1h-.1c-.7-.4-6.9-6.2-8.9-8.7-2.1-2.6-2.6-5.6-2.6-5.6l-.2-1.3-.3 1.3c-.7 3.2 4.9 15.6 5.6 16.3.3.3.8.5 1.3.5.4 0 .7-.1.7-.1 4.7-1.9 4.7-1.9 4.7-2.1l-.2-.3z"
2547
2584
  }
2548
2585
  ),
2549
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2586
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2550
2587
  "path",
2551
2588
  {
2552
2589
  className: "icon-special-price_svg__st0",
2553
2590
  d: "M38.5 28.6l-.1-.1.1-.1-10.3-10.3c-2.1-1.2-4.2-1.9-6.3-1.9-2.3 0-3.6.7-3.7.7l-.4.4v.1c-.1.2-2.2 4.2 1.1 10l10.2 10.2c.1.1.4.6 1 .6.4 0 .7-.2 1.1-.6l7.2-7.2c.8-.8.3-1.5.1-1.8zm-2.6.7L30 35.2 20.8 26c-1.9-3.4-1.4-5.9-1.1-7 .4-.1 1.2-.3 2.1-.3 1.6 0 3.2.5 4.8 1.4l9.3 9.2z"
2554
2591
  }
2555
2592
  ),
2556
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2593
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2557
2594
  "path",
2558
2595
  {
2559
2596
  className: "icon-special-price_svg__st0",
@@ -2564,16 +2601,16 @@ var SvgIconSpecialPrice = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.js
2564
2601
  var IconSpecialPrice_default = SvgIconSpecialPrice;
2565
2602
 
2566
2603
  // src/components/icons/IconStock.tsx
2567
- var import_jsx_runtime46 = require("react/jsx-runtime");
2568
- var SvgIconStock = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2569
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2604
+ var import_jsx_runtime47 = require("react/jsx-runtime");
2605
+ var SvgIconStock = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2606
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2570
2607
  "path",
2571
2608
  {
2572
2609
  className: "icon-stock_svg__st0",
2573
2610
  d: "M29.5 16.4v8.8H38v-8.8h-8.5zm6.6 6.8h-4.5v-4.8h4.5v4.8zM29.5 36H38v-8.9h-8.5V36zm2-6.9H36V34h-4.5v-4.9zM18.9 36.2h8.5v-8.9h-8.5v8.9zm2-6.9h4.5v4.9h-4.5v-4.9z"
2574
2611
  }
2575
2612
  ),
2576
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2613
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2577
2614
  "path",
2578
2615
  {
2579
2616
  className: "icon-stock_svg__st0",
@@ -2584,8 +2621,8 @@ var SvgIconStock = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("sv
2584
2621
  var IconStock_default = SvgIconStock;
2585
2622
 
2586
2623
  // src/components/icons/IconStrawberry.tsx
2587
- var import_jsx_runtime47 = require("react/jsx-runtime");
2588
- var SvgIconStrawberry = () => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2624
+ var import_jsx_runtime48 = require("react/jsx-runtime");
2625
+ var SvgIconStrawberry = () => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2589
2626
  "svg",
2590
2627
  {
2591
2628
  width: "24",
@@ -2593,7 +2630,7 @@ var SvgIconStrawberry = () => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2593
2630
  viewBox: "0 0 24 24",
2594
2631
  fill: "none",
2595
2632
  xmlns: "http://www.w3.org/2000/svg",
2596
- children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2633
+ children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2597
2634
  "path",
2598
2635
  {
2599
2636
  fillRule: "evenodd",
@@ -2607,23 +2644,23 @@ var SvgIconStrawberry = () => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2607
2644
  var IconStrawberry_default = SvgIconStrawberry;
2608
2645
 
2609
2646
  // src/components/icons/IconSupplier.tsx
2610
- var import_jsx_runtime48 = require("react/jsx-runtime");
2611
- var SvgIconSupplier = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2612
- /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2647
+ var import_jsx_runtime49 = require("react/jsx-runtime");
2648
+ var SvgIconSupplier = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2649
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2613
2650
  "path",
2614
2651
  {
2615
2652
  className: "icon-supplier_svg__st0",
2616
2653
  d: "M18.3 27.5c-2.9 0-5.3 2.4-5.3 5.3s2.3 5.3 5.3 5.3 5.4-2.3 5.3-5.2c.1-2.9-2.3-5.4-5.3-5.4zm-.1 7.6c-1.2 0-2.1-1-2.1-2.1 0-1.2 1-2.1 2.1-2.1 1.3 0 2.2 1 2.1 2.1.1 1.1-.9 2.1-2.1 2.1z"
2617
2654
  }
2618
2655
  ),
2619
- /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2656
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2620
2657
  "path",
2621
2658
  {
2622
2659
  className: "icon-supplier_svg__st0",
2623
2660
  d: "M32.9 29.2c1.2-1.2 2.6-1.6 4.2-1.6 0-1.1-.6-1.8-1.8-1.9-.8 0-1.4-.1-2.2-.1-1.4-.1-2.7-.1-4.1-.2-.1-1.6-.2-3.1-.3-4.7 0-.2.1-.4.2-.5.4-.4.3-.8-.1-1.1-.3-.1-.8-.3-1.1-.3-2.3-.1-4.4-.1-6.6-.1-1.4 0-1.7.4-1.8 1.8-.1 1.4-.2 2.8-.4 4.3h-2.4c-1.4.1-1.9 1-1.6 2.3 2.5-1.6 5-1.6 7.4-.2 2.6 1.4 3.2 3.9 2.9 6.8h6.4c-.2-1.8.3-3.4 1.3-4.5zm-10-4.2c-1.2-.1-1.8-.1-3.1-.2.1-1.6.2-3.1.3-4.6h2.8V25zm3.5 4.2c-.1-.1-.3-.2-.4-.4-.6-1.1-1.4-2.2-2-3.3-.1-.2-.2-.4-.2-.6v-4.6h4.4c.1 2.9.3 5.9.5 9.1-.9-.2-1.6-.2-2.3-.2z"
2624
2661
  }
2625
2662
  ),
2626
- /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2663
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2627
2664
  "path",
2628
2665
  {
2629
2666
  className: "icon-supplier_svg__st0",
@@ -2634,45 +2671,45 @@ var SvgIconSupplier = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
2634
2671
  var IconSupplier_default = SvgIconSupplier;
2635
2672
 
2636
2673
  // src/components/icons/IconSupplierPrices.tsx
2637
- var import_jsx_runtime49 = require("react/jsx-runtime");
2638
- var SvgIconSupplierPrices = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2639
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2674
+ var import_jsx_runtime50 = require("react/jsx-runtime");
2675
+ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
2676
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2640
2677
  "path",
2641
2678
  {
2642
2679
  className: "icon-supplier-prices_svg__st0",
2643
2680
  d: "M13.9 30.6c.2 0 5.7-2.6 7.7-4 2-1.3 2.9-3.2 2.9-3.2-.2 2.1-6.2 9.1-6.8 9.4-.6.3-1.2-.1-1.2-.1s-2.7-2.2-2.6-2.1z"
2644
2681
  }
2645
2682
  ),
2646
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2683
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2647
2684
  "path",
2648
2685
  {
2649
2686
  className: "icon-supplier-prices_svg__st0",
2650
2687
  d: "M20.3 18.8c1.5 0 2.5.5 3 .8 0 .7-.2 2.4-2.1 4.2l-7.8 4.1-1.2-2.2-.2-.3-1.2-2.3 7.8-4.1c.7-.1 1.2-.2 1.7-.2m0-1.6c-.7 0-1.4.1-2.2.3l-8.7 4.6c0 .2-.8.4-.3 1.2.5.9 1.6 2.9 1.6 2.9l.2.3s1.1 2.1 1.6 2.9c.2.4.5.5.7.5.3 0 .5-.2.5-.2l8.7-4.6c3.3-3.1 2.7-6.2 2.7-6.2l-.2-.3c-.1.1-1.7-1.4-4.6-1.4z"
2651
2688
  }
2652
2689
  ),
2653
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2690
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2654
2691
  "path",
2655
2692
  {
2656
2693
  className: "icon-supplier-prices_svg__st0",
2657
2694
  d: "M21.5 19.9c-.3 0-.6.2-.6.5-.1.4.1.7.4.8h.2c.3 0 .6-.2.6-.5.1-.4-.1-.7-.4-.8h-.2z"
2658
2695
  }
2659
2696
  ),
2660
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("g", { children: [
2661
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2697
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("g", { children: [
2698
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2662
2699
  "path",
2663
2700
  {
2664
2701
  className: "icon-supplier-prices_svg__st0",
2665
2702
  d: "M24.2 29.7c-2.7 0-4.9 2.2-4.9 4.9s2.2 4.9 4.9 4.9 5-2.2 4.9-4.8c0-2.8-2.2-5-4.9-5zm-.1 7c-1.1 0-2-.9-2-2s.9-2 2-2c1.2 0 2.1.9 2 2 0 1.1-.9 2-2 2z"
2666
2703
  }
2667
2704
  ),
2668
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2705
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2669
2706
  "path",
2670
2707
  {
2671
2708
  className: "icon-supplier-prices_svg__st0",
2672
2709
  d: "M37.7 31.2c1.1-1.1 2.4-1.5 3.9-1.5 0-1-.6-1.7-1.7-1.8-.7 0-1.3-.1-2-.1-1.3-.1-2.5-.1-3.8-.2-.1-1.5-.2-2.9-.3-4.4 0-.2.1-.4.2-.5.4-.4.3-.7-.1-1-.3-.1-.7-.3-1-.3-2.1-.1-4.1-.1-6.1-.1-1.3 0-1.6.4-1.7 1.7-.1 1.3-.2 2.6-.4 4h-2.2c-1.3.1-1.8.9-1.5 2.1 2.3-1.5 4.6-1.5 6.9-.2 2.4 1.3 3 3.6 2.7 6.3h5.9c-.2-1.5.2-2.9 1.2-4zm-9.3-3.9c-1.1-.1-1.7-.1-2.9-.2.1-1.5.2-2.9.3-4.3h2.6v4.5zm3.2 3.9c-.1-.1-.3-.2-.4-.4-.6-1-1.3-2-1.9-3.1-.1-.2-.2-.4-.2-.6v-4.3h4.1c.1 2.7.3 5.5.5 8.4h-2.1z"
2673
2710
  }
2674
2711
  ),
2675
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2712
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2676
2713
  "path",
2677
2714
  {
2678
2715
  className: "icon-supplier-prices_svg__st0",
@@ -2684,18 +2721,18 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.
2684
2721
  var IconSupplierPrices_default = SvgIconSupplierPrices;
2685
2722
 
2686
2723
  // src/components/icons/IconUserManagement.tsx
2687
- var import_jsx_runtime50 = require("react/jsx-runtime");
2688
- var SvgIconUserManagement = () => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 55 56.7", children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("g", { id: "Layer_1", children: [
2689
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M672.6,1136.6c-1.6,0-3,1.3-3,2.9s1.4,3,3,3,3-1.4,2.9-2.9c0-1.6-1.3-3-2.9-3h0Z" }),
2690
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M683.4,1136.5c-1.7,0-3,1.4-3,3s1.4,3,3,3,3-1.4,3-3.1-1.4-2.9-3-2.9h0Z" }),
2691
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M672.4,1130.2h.9v1.2c0,1.1.9,2,2,2h6.9c-1.6.3-3,1.3-4,2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7s-2.3.3-3.3.9v-3.7h0c0,0,.2-.2.7-.3M687.2,1133.4v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4,0,.7,0,1.2-.2.2,0,.3,0,.3,0M688,1118.3c-.7,0-1.3.5-1.4,1.1v12.1c-.4,0-.7,0-.9,0-.4,0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1,0-1.6.3-1.6,1.6v8.1c-1.6.2-2.4,1-2.4,2.3v6.8c0,.2.2.7.5.7s.3,0,.5,0,.4,0,.6-.4c.8-1.6,2.1-2.4,3.8-2.4s2.9.8,3.7,2.3c0,.3.3.5.7.5h1.9c.5,0,.6-.2.8-.6.8-1.5,2.1-2.3,3.8-2.3s2.9.9,3.7,2.4c.5.9.5,1.8.2,3h5.4c.7,0,1.1-.6,1.1-1,0-.7-.3-1.1-.9-1.4-.2,0-.6,0-.8,0h-2.9v-18.7c-.3-.8-.7-1.2-1.4-1.2h0ZM672.4,1128.2v-7.2h5.5c0,0,.3,0,.3.3,1.4,3.3,2.9,6.6,4.2,9.9h0c-2.3,0-4.7,0-7.2,0v-2.3c0-.8,0-.9-.9-.9-.7,0-1.3,0-1.9,0h0Z" }),
2692
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M29.3,26.7c1-1.3,1.5-3,1.5-4.6s-.5-3.3-1.5-4.6c.9-.6,2-.9,3.1-.9,1.5,0,2.9.6,3.9,1.6,1,1,1.6,2.5,1.6,3.9s-.6,2.9-1.6,3.9-2.5,1.6-3.9,1.6c-1.1,0-2.2-.3-3.1-.9ZM17.3,22.1c0-1.1.3-2.2.9-3.1.6-.9,1.5-1.6,2.5-2,1-.4,2.1-.5,3.2-.3,1.1.2,2.1.7,2.8,1.5.8.8,1.3,1.8,1.5,2.8.2,1.1.1,2.2-.3,3.2-.4,1-1.1,1.9-2,2.5-.9.6-2,.9-3.1.9s-2.9-.6-3.9-1.6-1.6-2.5-1.6-3.9ZM20.5,22.1c0,.5.1.9.4,1.3.3.4.6.7,1.1.9.4.2.9.2,1.4.1.5,0,.9-.3,1.2-.7.3-.3.6-.8.7-1.2,0-.5,0-.9-.1-1.4-.2-.4-.5-.8-.9-1.1-.4-.3-.9-.4-1.3-.4s-1.2.3-1.7.7c-.4.4-.7,1.1-.7,1.7ZM34,37.1v3.2H11.8v-3.2s0-6.3,11.1-6.3,11.1,6.3,11.1,6.3ZM30.8,37.1c-.2-1.2-2.1-3.2-7.9-3.2s-7.8,2.1-7.9,3.2M33.9,30.8c1,.8,1.8,1.7,2.3,2.8.6,1.1.9,2.3.9,3.5v3.2h6.3v-3.2s0-5.8-9.6-6.3h0Z" })
2724
+ var import_jsx_runtime51 = require("react/jsx-runtime");
2725
+ var SvgIconUserManagement = () => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 55 56.7", children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("g", { id: "Layer_1", children: [
2726
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M672.6,1136.6c-1.6,0-3,1.3-3,2.9s1.4,3,3,3,3-1.4,2.9-2.9c0-1.6-1.3-3-2.9-3h0Z" }),
2727
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M683.4,1136.5c-1.7,0-3,1.4-3,3s1.4,3,3,3,3-1.4,3-3.1-1.4-2.9-3-2.9h0Z" }),
2728
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M672.4,1130.2h.9v1.2c0,1.1.9,2,2,2h6.9c-1.6.3-3,1.3-4,2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7s-2.3.3-3.3.9v-3.7h0c0,0,.2-.2.7-.3M687.2,1133.4v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4,0,.7,0,1.2-.2.2,0,.3,0,.3,0M688,1118.3c-.7,0-1.3.5-1.4,1.1v12.1c-.4,0-.7,0-.9,0-.4,0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1,0-1.6.3-1.6,1.6v8.1c-1.6.2-2.4,1-2.4,2.3v6.8c0,.2.2.7.5.7s.3,0,.5,0,.4,0,.6-.4c.8-1.6,2.1-2.4,3.8-2.4s2.9.8,3.7,2.3c0,.3.3.5.7.5h1.9c.5,0,.6-.2.8-.6.8-1.5,2.1-2.3,3.8-2.3s2.9.9,3.7,2.4c.5.9.5,1.8.2,3h5.4c.7,0,1.1-.6,1.1-1,0-.7-.3-1.1-.9-1.4-.2,0-.6,0-.8,0h-2.9v-18.7c-.3-.8-.7-1.2-1.4-1.2h0ZM672.4,1128.2v-7.2h5.5c0,0,.3,0,.3.3,1.4,3.3,2.9,6.6,4.2,9.9h0c-2.3,0-4.7,0-7.2,0v-2.3c0-.8,0-.9-.9-.9-.7,0-1.3,0-1.9,0h0Z" }),
2729
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M29.3,26.7c1-1.3,1.5-3,1.5-4.6s-.5-3.3-1.5-4.6c.9-.6,2-.9,3.1-.9,1.5,0,2.9.6,3.9,1.6,1,1,1.6,2.5,1.6,3.9s-.6,2.9-1.6,3.9-2.5,1.6-3.9,1.6c-1.1,0-2.2-.3-3.1-.9ZM17.3,22.1c0-1.1.3-2.2.9-3.1.6-.9,1.5-1.6,2.5-2,1-.4,2.1-.5,3.2-.3,1.1.2,2.1.7,2.8,1.5.8.8,1.3,1.8,1.5,2.8.2,1.1.1,2.2-.3,3.2-.4,1-1.1,1.9-2,2.5-.9.6-2,.9-3.1.9s-2.9-.6-3.9-1.6-1.6-2.5-1.6-3.9ZM20.5,22.1c0,.5.1.9.4,1.3.3.4.6.7,1.1.9.4.2.9.2,1.4.1.5,0,.9-.3,1.2-.7.3-.3.6-.8.7-1.2,0-.5,0-.9-.1-1.4-.2-.4-.5-.8-.9-1.1-.4-.3-.9-.4-1.3-.4s-1.2.3-1.7.7c-.4.4-.7,1.1-.7,1.7ZM34,37.1v3.2H11.8v-3.2s0-6.3,11.1-6.3,11.1,6.3,11.1,6.3ZM30.8,37.1c-.2-1.2-2.1-3.2-7.9-3.2s-7.8,2.1-7.9,3.2M33.9,30.8c1,.8,1.8,1.7,2.3,2.8.6,1.1.9,2.3.9,3.5v3.2h6.3v-3.2s0-5.8-9.6-6.3h0Z" })
2693
2730
  ] }) }) });
2694
2731
  var IconUserManagement_default = SvgIconUserManagement;
2695
2732
 
2696
2733
  // src/components/icons/IconVkc.tsx
2697
- var import_jsx_runtime51 = require("react/jsx-runtime");
2698
- var SvgIconVkc = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
2734
+ var import_jsx_runtime52 = require("react/jsx-runtime");
2735
+ var SvgIconVkc = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2699
2736
  "path",
2700
2737
  {
2701
2738
  className: "icon-vkc_svg__st0",
@@ -2705,16 +2742,16 @@ var SvgIconVkc = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("svg",
2705
2742
  var IconVkc_default = SvgIconVkc;
2706
2743
 
2707
2744
  // src/components/icons/SamsaraLogo.tsx
2708
- var import_jsx_runtime52 = require("react/jsx-runtime");
2709
- var SvgSamsaraLogo = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("svg", { viewBox: "0 0 36 52.4", ...props, children: [
2710
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2745
+ var import_jsx_runtime53 = require("react/jsx-runtime");
2746
+ var SvgSamsaraLogo = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("svg", { viewBox: "0 0 36 52.4", ...props, children: [
2747
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2711
2748
  "path",
2712
2749
  {
2713
2750
  className: "samsara_logo_svg__st0",
2714
2751
  d: "M27.2 17.6c-.4.9-1 1.6-1.8 2.2-.7.5-1.5.7-2.4.7-.4 0-.7-.3-.7-.6 0-.4.3-.7.6-.7.6 0 1.2-.2 1.7-.5.6-.4 1-.9 1.3-1.6.2-.4.1-.8-.1-1.2-.2-.4-.6-.6-1-.6-.9-.1-1.6.2-2.2.8-.9 1-1.3 2.7-1.5 3.4-.1.6-1.7 7.4-2.3 10.1-.1.4-.5.7-.9.7s-.8-.3-.9-.7l-.2-1c-.7-3.1-2-8.6-2.1-9.1-.2-.7-.5-2.4-1.5-3.4-.6-.6-1.3-.9-2.2-.8-.4 0-.8.2-1 .6-.2.4-.3.8-.1 1.2.3.7.7 1.2 1.3 1.6.5.3 1.1.5 1.7.5.4 0 .7.3.6.7 0 .4-.3.7-.7.6-.9 0-1.7-.3-2.4-.7-.8-.5-1.4-1.2-1.8-2.2-.3-.8-.3-1.7.2-2.5.4-.7 1.2-1.2 2.1-1.3 1.3-.1 2.4.3 3.2 1.2 1.2 1.2 1.7 3.2 1.8 4 .1.5 1.2 5.3 2 8.4.7-3.2 1.8-7.9 2-8.4.2-.8.6-2.8 1.8-4 .8-.9 2-1.3 3.2-1.2.8 0 1.6.5 2.1 1.3s.6 1.7.2 2.5M21.3 7c-.9 0-1.8.2-2.7.5-.4.1-.9.1-1.3 0-.8-.4-1.7-.5-2.6-.5-5.1 0-9.4 5.2-9.4 11.3 0 6.8 5.1 12.8 12.5 14.6h.5c7.4-1.8 12.5-7.8 12.5-14.6C30.7 12.1 26.4 7 21.3 7"
2715
2752
  }
2716
2753
  ),
2717
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2754
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2718
2755
  "path",
2719
2756
  {
2720
2757
  className: "samsara_logo_svg__st0",
@@ -2767,8 +2804,8 @@ var icons = {
2767
2804
  var icons_default = icons;
2768
2805
 
2769
2806
  // src/components/icons/IconAirplane.tsx
2770
- var import_jsx_runtime53 = require("react/jsx-runtime");
2771
- var SvgIconAirplane = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2807
+ var import_jsx_runtime54 = require("react/jsx-runtime");
2808
+ var SvgIconAirplane = (props) => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2772
2809
  "svg",
2773
2810
  {
2774
2811
  width: "24",
@@ -2777,7 +2814,7 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2777
2814
  fill: "none",
2778
2815
  xmlns: "http://www.w3.org/2000/svg",
2779
2816
  ...props,
2780
- children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2817
+ children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2781
2818
  "path",
2782
2819
  {
2783
2820
  d: "M20.56 3.90998C21.15 4.49998 21.15 5.44998 20.56 6.02998L16.67 9.91998L18.79 19.11L17.38 20.53L13.5 13.1L9.6 17L9.96 19.47L8.89 20.53L7.13 17.35L3.94 15.58L5 14.5L7.5 14.87L11.37 11L3.94 7.08998L5.36 5.67998L14.55 7.79998L18.44 3.90998C19 3.32998 20 3.32998 20.56 3.90998Z",
@@ -2789,8 +2826,8 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2789
2826
  var IconAirplane_default = SvgIconAirplane;
2790
2827
 
2791
2828
  // src/components/icons/IconBicycle.tsx
2792
- var import_jsx_runtime54 = require("react/jsx-runtime");
2793
- var SvgIconBicycle = () => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2829
+ var import_jsx_runtime55 = require("react/jsx-runtime");
2830
+ var SvgIconBicycle = () => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2794
2831
  "svg",
2795
2832
  {
2796
2833
  width: "24",
@@ -2798,7 +2835,7 @@ var SvgIconBicycle = () => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2798
2835
  viewBox: "0 0 24 24",
2799
2836
  fill: "none",
2800
2837
  xmlns: "http://www.w3.org/2000/svg",
2801
- children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2838
+ children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2802
2839
  "path",
2803
2840
  {
2804
2841
  d: "M19 10C18.44 10 17.91 10.11 17.41 10.28L14.46 4.5H11V6H13.54L14.42 7.72L12 13.13L10.23 8.95C10.5 8.85 10.74 8.58 10.74 8.25C10.74 7.84 10.41 7.5 10 7.5H8C7.58 7.5 7.24 7.84 7.24 8.25C7.24 8.66 7.58 9 8 9H8.61L10.86 14.25H9.92C9.56 11.85 7.5 10 5 10C2.24 10 0 12.24 0 15C0 17.76 2.24 20 5 20C7.5 20 9.56 18.15 9.92 15.75H12.5L15.29 9.43L16.08 10.96C14.82 11.87 14 13.34 14 15C14 17.76 16.24 20 19 20C21.76 20 24 17.76 24 15C24 12.24 21.76 10 19 10ZM5 18.5C3.07 18.5 1.5 16.93 1.5 15C1.5 13.07 3.07 11.5 5 11.5C6.67 11.5 8.07 12.68 8.41 14.25H4V15.75H8.41C8.07 17.32 6.67 18.5 5 18.5ZM19 18.5C17.07 18.5 15.5 16.93 15.5 15C15.5 13.92 16 12.97 16.77 12.33L18.57 15.85L19.89 15.13L18.1 11.63C18.39 11.56 18.69 11.5 19 11.5C20.93 11.5 22.5 13.07 22.5 15C22.5 16.93 20.93 18.5 19 18.5Z",
@@ -2810,8 +2847,8 @@ var SvgIconBicycle = () => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2810
2847
  var IconBicycle_default = SvgIconBicycle;
2811
2848
 
2812
2849
  // src/components/icons/IconBus.tsx
2813
- var import_jsx_runtime55 = require("react/jsx-runtime");
2814
- var SvgIconBus = () => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2850
+ var import_jsx_runtime56 = require("react/jsx-runtime");
2851
+ var SvgIconBus = () => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2815
2852
  "svg",
2816
2853
  {
2817
2854
  width: "24",
@@ -2819,7 +2856,7 @@ var SvgIconBus = () => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2819
2856
  viewBox: "0 0 24 24",
2820
2857
  fill: "none",
2821
2858
  xmlns: "http://www.w3.org/2000/svg",
2822
- children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2859
+ children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2823
2860
  "path",
2824
2861
  {
2825
2862
  d: "M3 4C1.89 4 1 4.89 1 6V17H3C3 17.7956 3.31607 18.5587 3.87868 19.1213C4.44129 19.6839 5.20435 20 6 20C6.79565 20 7.55871 19.6839 8.12132 19.1213C8.68393 18.5587 9 17.7956 9 17H15C15 17.7956 15.3161 18.5587 15.8787 19.1213C16.4413 19.6839 17.2044 20 18 20C18.7956 20 19.5587 19.6839 20.1213 19.1213C20.6839 18.5587 21 17.7956 21 17H23V14C23 12.89 22.11 12 21 12H19V9.5H23V6C23 4.89 22.11 4 21 4H3ZM2.5 5.5H6.5V8H2.5V5.5ZM8 5.5H12V8H8V5.5ZM13.5 5.5H17.5V8H13.5V5.5ZM19 5.5H21.5V8H19V5.5ZM13.5 9.5H17.5V12H13.5V9.5ZM2.5 9.5H6.5V12H2.5V9.5ZM8 9.5H12V12H8V9.5ZM6 15.5C6.39782 15.5 6.77936 15.658 7.06066 15.9393C7.34196 16.2206 7.5 16.6022 7.5 17C7.5 17.3978 7.34196 17.7794 7.06066 18.0607C6.77936 18.342 6.39782 18.5 6 18.5C5.60218 18.5 5.22064 18.342 4.93934 18.0607C4.65804 17.7794 4.5 17.3978 4.5 17C4.5 16.6022 4.65804 16.2206 4.93934 15.9393C5.22064 15.658 5.60218 15.5 6 15.5ZM18 15.5C18.3978 15.5 18.7794 15.658 19.0607 15.9393C19.342 16.2206 19.5 16.6022 19.5 17C19.5 17.3978 19.342 17.7794 19.0607 18.0607C18.7794 18.342 18.3978 18.5 18 18.5C17.6022 18.5 17.2206 18.342 16.9393 18.0607C16.658 17.7794 16.5 17.3978 16.5 17C16.5 16.6022 16.658 16.2206 16.9393 15.9393C17.2206 15.658 17.6022 15.5 18 15.5Z",
@@ -2831,8 +2868,8 @@ var SvgIconBus = () => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2831
2868
  var IconBus_default = SvgIconBus;
2832
2869
 
2833
2870
  // src/components/icons/IconCar.tsx
2834
- var import_jsx_runtime56 = require("react/jsx-runtime");
2835
- var SvgIconCar = () => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2871
+ var import_jsx_runtime57 = require("react/jsx-runtime");
2872
+ var SvgIconCar = () => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2836
2873
  "svg",
2837
2874
  {
2838
2875
  width: "24",
@@ -2840,7 +2877,7 @@ var SvgIconCar = () => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2840
2877
  viewBox: "0 0 24 24",
2841
2878
  fill: "none",
2842
2879
  xmlns: "http://www.w3.org/2000/svg",
2843
- children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2880
+ children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2844
2881
  "path",
2845
2882
  {
2846
2883
  d: "M3 6H16L19 10H21C22.11 10 23 10.89 23 12V15H21C21 15.7956 20.6839 16.5587 20.1213 17.1213C19.5587 17.6839 18.7956 18 18 18C17.2044 18 16.4413 17.6839 15.8787 17.1213C15.3161 16.5587 15 15.7956 15 15H9C9 15.7956 8.68393 16.5587 8.12132 17.1213C7.55871 17.6839 6.79565 18 6 18C5.20435 18 4.44129 17.6839 3.87868 17.1213C3.31607 16.5587 3 15.7956 3 15H1V8C1 6.89 1.89 6 3 6ZM2.5 7.5V10H10.5V7.5H2.5ZM12 7.5V10H17.14L15.25 7.5H12ZM6 13.5C5.60218 13.5 5.22064 13.658 4.93934 13.9393C4.65804 14.2206 4.5 14.6022 4.5 15C4.5 15.3978 4.65804 15.7794 4.93934 16.0607C5.22064 16.342 5.60218 16.5 6 16.5C6.39782 16.5 6.77936 16.342 7.06066 16.0607C7.34196 15.7794 7.5 15.3978 7.5 15C7.5 14.6022 7.34196 14.2206 7.06066 13.9393C6.77936 13.658 6.39782 13.5 6 13.5ZM18 13.5C17.6022 13.5 17.2206 13.658 16.9393 13.9393C16.658 14.2206 16.5 14.6022 16.5 15C16.5 15.3978 16.658 15.7794 16.9393 16.0607C17.2206 16.342 17.6022 16.5 18 16.5C18.3978 16.5 18.7794 16.342 19.0607 16.0607C19.342 15.7794 19.5 15.3978 19.5 15C19.5 14.6022 19.342 14.2206 19.0607 13.9393C18.7794 13.658 18.3978 13.5 18 13.5Z",
@@ -2852,8 +2889,8 @@ var SvgIconCar = () => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2852
2889
  var IconCar_default = SvgIconCar;
2853
2890
 
2854
2891
  // src/components/icons/IconFork.tsx
2855
- var import_jsx_runtime57 = require("react/jsx-runtime");
2856
- var SvgIconFork = () => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2892
+ var import_jsx_runtime58 = require("react/jsx-runtime");
2893
+ var SvgIconFork = () => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2857
2894
  "svg",
2858
2895
  {
2859
2896
  width: "20",
@@ -2861,7 +2898,7 @@ var SvgIconFork = () => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2861
2898
  viewBox: "0 0 20 20",
2862
2899
  fill: "none",
2863
2900
  xmlns: "http://www.w3.org/2000/svg",
2864
- children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2901
+ children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2865
2902
  "path",
2866
2903
  {
2867
2904
  d: "M2.17501 19.235L0.765015 17.825L10.415 8.16502L10.215 7.94501C9.43501 7.17501 9.43501 5.91501 10.215 5.13501L14.555 0.765015L15.485 1.68501L12.245 4.94501L13.205 5.88501L16.445 2.63501L17.365 3.55501L14.115 6.79502L15.055 7.75502L18.315 4.50501L19.235 5.44501L14.865 9.78502C14.085 10.565 12.825 10.565 12.055 9.78502L11.835 9.58502L2.17501 19.235Z",
@@ -2873,8 +2910,8 @@ var SvgIconFork = () => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2873
2910
  var IconFork_default = SvgIconFork;
2874
2911
 
2875
2912
  // src/components/icons/IconHeart.tsx
2876
- var import_jsx_runtime58 = require("react/jsx-runtime");
2877
- var SvgIconHeart = () => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2913
+ var import_jsx_runtime59 = require("react/jsx-runtime");
2914
+ var SvgIconHeart = () => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2878
2915
  "svg",
2879
2916
  {
2880
2917
  width: "20",
@@ -2882,7 +2919,7 @@ var SvgIconHeart = () => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2882
2919
  viewBox: "0 0 20 20",
2883
2920
  fill: "none",
2884
2921
  xmlns: "http://www.w3.org/2000/svg",
2885
- children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2922
+ children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2886
2923
  "path",
2887
2924
  {
2888
2925
  d: "M10 19.175L8.55 17.855C3.4 13.185 0 10.095 0 6.32501C0 3.23501 2.42 0.825012 5.5 0.825012C7.24 0.825012 8.91 1.63501 10 2.90501C11.09 1.63501 12.76 0.825012 14.5 0.825012C17.58 0.825012 20 3.23501 20 6.32501C20 10.095 16.6 13.185 11.45 17.855L10 19.175Z",
@@ -2894,8 +2931,8 @@ var SvgIconHeart = () => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2894
2931
  var IconHeart_default = SvgIconHeart;
2895
2932
 
2896
2933
  // src/components/icons/IconKnife.tsx
2897
- var import_jsx_runtime59 = require("react/jsx-runtime");
2898
- var SvgIconKnife = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2934
+ var import_jsx_runtime60 = require("react/jsx-runtime");
2935
+ var SvgIconKnife = (props) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2899
2936
  "svg",
2900
2937
  {
2901
2938
  width: "20",
@@ -2904,7 +2941,7 @@ var SvgIconKnife = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2904
2941
  fill: "none",
2905
2942
  xmlns: "http://www.w3.org/2000/svg",
2906
2943
  ...props,
2907
- children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2944
+ children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2908
2945
  "path",
2909
2946
  {
2910
2947
  d: "M18.6191 0C21.9691 5.61 10.4691 18.15 10.4691 18.15L7.5991 15.28L2.9091 20L0.769104 17.86L18.6191 0Z",
@@ -2916,8 +2953,8 @@ var SvgIconKnife = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2916
2953
  var IconKnife_default = SvgIconKnife;
2917
2954
 
2918
2955
  // src/components/icons/IconSpoon.tsx
2919
- var import_jsx_runtime60 = require("react/jsx-runtime");
2920
- var SvgIconSpoon = () => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2956
+ var import_jsx_runtime61 = require("react/jsx-runtime");
2957
+ var SvgIconSpoon = () => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
2921
2958
  "svg",
2922
2959
  {
2923
2960
  width: "20",
@@ -2925,7 +2962,7 @@ var SvgIconSpoon = () => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2925
2962
  viewBox: "0 0 20 20",
2926
2963
  fill: "none",
2927
2964
  xmlns: "http://www.w3.org/2000/svg",
2928
- children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2965
+ children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
2929
2966
  "path",
2930
2967
  {
2931
2968
  d: "M12.093 9.31795L2.33303 19.0779L0.923035 17.6679L10.683 7.90795C9.97303 6.37795 10.473 4.22795 12.063 2.63795C13.973 0.717946 16.713 0.357947 18.173 1.81795C19.643 3.28795 19.283 6.02795 17.363 7.93795C15.773 9.52795 13.623 10.0279 12.093 9.31795Z",
@@ -2937,8 +2974,8 @@ var SvgIconSpoon = () => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2937
2974
  var IconSpoon_default = SvgIconSpoon;
2938
2975
 
2939
2976
  // src/resources/icons/BulkIcon.tsx
2940
- var import_jsx_runtime61 = require("react/jsx-runtime");
2941
- var BulkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
2977
+ var import_jsx_runtime62 = require("react/jsx-runtime");
2978
+ var BulkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
2942
2979
  "svg",
2943
2980
  {
2944
2981
  height: 24,
@@ -2946,13 +2983,13 @@ var BulkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
2946
2983
  width: 24,
2947
2984
  xmlns: "http://www.w3.org/2000/svg",
2948
2985
  ...props,
2949
- children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "M4 3h14a2 2 0 012 2v7.08a6.01 6.01 0 00-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 01-2-2V5c0-1.1.9-2 2-2zm0 4v4h6V7H4zm8 0v4h6V7h-6zm-8 6v4h6v-4H4zM18 19h-2l3 3 3-3h-2v-4h-2v4z" })
2986
+ children: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "M4 3h14a2 2 0 012 2v7.08a6.01 6.01 0 00-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 01-2-2V5c0-1.1.9-2 2-2zm0 4v4h6V7H4zm8 0v4h6V7h-6zm-8 6v4h6v-4H4zM18 19h-2l3 3 3-3h-2v-4h-2v4z" })
2950
2987
  }
2951
2988
  );
2952
2989
  var BulkIcon_default = BulkIcon;
2953
2990
 
2954
2991
  // src/components/Buttons/RoundButton/RoundButton.tsx
2955
- var import_jsx_runtime62 = require("react/jsx-runtime");
2992
+ var import_jsx_runtime63 = require("react/jsx-runtime");
2956
2993
  var useStyles11 = (0, import_mui13.makeStyles)()(() => ({
2957
2994
  base: {
2958
2995
  backgroundColor: "transparent",
@@ -3070,48 +3107,48 @@ var RoundButton = ({
3070
3107
  const { classes, cx } = useStyles11();
3071
3108
  const iconSize = size === "small" ? "small" : "medium";
3072
3109
  const iconComponentMap = {
3073
- add: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Add, { fontSize: iconSize }),
3074
- apps: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Apps, { fontSize: iconSize }),
3075
- arrowBack: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.ArrowBack, { fontSize: iconSize }),
3076
- arrowForward: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.ArrowForward, { fontSize: iconSize }),
3077
- avocado: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconAvocado_default, {}),
3078
- backspaceOutlined: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.BackspaceOutlined, { fontSize: iconSize }),
3079
- banana: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconBanana_default, {}),
3080
- block: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Block, { fontSize: iconSize }),
3081
- bulk: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(BulkIcon_default, { fill: colors.contrast }),
3082
- callSplit: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.CallSplit, { fontSize: iconSize }),
3083
- chevronRight: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.ChevronRight, { fontSize: iconSize }),
3084
- chevronUp: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.KeyboardArrowUp, { fontSize: iconSize }),
3085
- chevronDown: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.KeyboardArrowDown, { fontSize: iconSize }),
3086
- close: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Close, { fontSize: iconSize }),
3087
- delete: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Delete, { fontSize: iconSize, fill: colors.neutral800 }),
3088
- done: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Done, { fontSize: iconSize }),
3089
- edit: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Edit, { fontSize: iconSize }),
3090
- email: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Email, { fontSize: iconSize }),
3091
- grape: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconGrape_default, {}),
3092
- groupAdd: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.GroupAdd, { fontSize: iconSize }),
3093
- history: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.History, { fontSize: iconSize }),
3094
- menu: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Menu, { fontSize: iconSize }),
3095
- threeDots: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.MoreHoriz, { fontSize: iconSize, color: iconColor }),
3096
- notes: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Comment, { fontSize: iconSize }),
3097
- refresh: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Refresh, { fontSize: iconSize }),
3098
- remove: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Remove, { fontSize: iconSize }),
3099
- search: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Search, { fontSize: iconSize }),
3100
- send: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Send, { fontSize: iconSize }),
3101
- strawberry: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconStrawberry_default, {}),
3102
- thumbDown: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.ThumbDown, { fontSize: iconSize }),
3103
- thumbUp: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.ThumbUp, { fontSize: iconSize }),
3104
- undo: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Undo, { fontSize: iconSize }),
3105
- play: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.PlayArrowRounded, { fontSize: iconSize }),
3106
- snail: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(icons_default.SvgIconSnail, { fontSize: iconSize, fill: colors.muiPrimary }),
3107
- bus: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconBus_default, {}),
3108
- spoon: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconSpoon_default, {}),
3109
- fork: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconFork_default, {}),
3110
- car: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconCar_default, {}),
3111
- knife: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconKnife_default, {}),
3112
- bicycle: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconBicycle_default, {}),
3113
- heart: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconHeart_default, {}),
3114
- airplane: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconAirplane_default, {})
3110
+ add: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Add, { fontSize: iconSize }),
3111
+ apps: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Apps, { fontSize: iconSize }),
3112
+ arrowBack: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.ArrowBack, { fontSize: iconSize }),
3113
+ arrowForward: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.ArrowForward, { fontSize: iconSize }),
3114
+ avocado: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconAvocado_default, {}),
3115
+ backspaceOutlined: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.BackspaceOutlined, { fontSize: iconSize }),
3116
+ banana: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconBanana_default, {}),
3117
+ block: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Block, { fontSize: iconSize }),
3118
+ bulk: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(BulkIcon_default, { fill: colors.contrast }),
3119
+ callSplit: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.CallSplit, { fontSize: iconSize }),
3120
+ chevronRight: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.ChevronRight, { fontSize: iconSize }),
3121
+ chevronUp: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.KeyboardArrowUp, { fontSize: iconSize }),
3122
+ chevronDown: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.KeyboardArrowDown, { fontSize: iconSize }),
3123
+ close: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Close, { fontSize: iconSize }),
3124
+ delete: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Delete, { fontSize: iconSize, fill: colors.neutral800 }),
3125
+ done: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Done, { fontSize: iconSize }),
3126
+ edit: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Edit, { fontSize: iconSize }),
3127
+ email: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Email, { fontSize: iconSize }),
3128
+ grape: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconGrape_default, {}),
3129
+ groupAdd: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.GroupAdd, { fontSize: iconSize }),
3130
+ history: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.History, { fontSize: iconSize }),
3131
+ menu: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Menu, { fontSize: iconSize }),
3132
+ threeDots: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.MoreHoriz, { fontSize: iconSize, color: iconColor }),
3133
+ notes: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Comment, { fontSize: iconSize }),
3134
+ refresh: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Refresh, { fontSize: iconSize }),
3135
+ remove: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Remove, { fontSize: iconSize }),
3136
+ search: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Search, { fontSize: iconSize }),
3137
+ send: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Send, { fontSize: iconSize }),
3138
+ strawberry: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconStrawberry_default, {}),
3139
+ thumbDown: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.ThumbDown, { fontSize: iconSize }),
3140
+ thumbUp: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.ThumbUp, { fontSize: iconSize }),
3141
+ undo: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.Undo, { fontSize: iconSize }),
3142
+ play: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons_material4.PlayArrowRounded, { fontSize: iconSize }),
3143
+ snail: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(icons_default.SvgIconSnail, { fontSize: iconSize, fill: colors.muiPrimary }),
3144
+ bus: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconBus_default, {}),
3145
+ spoon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconSpoon_default, {}),
3146
+ fork: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconFork_default, {}),
3147
+ car: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconCar_default, {}),
3148
+ knife: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconKnife_default, {}),
3149
+ bicycle: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconBicycle_default, {}),
3150
+ heart: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconHeart_default, {}),
3151
+ airplane: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(IconAirplane_default, {})
3115
3152
  };
3116
3153
  const filteredSize = size === "double" ? void 0 : size;
3117
3154
  const handleClick = (e) => {
@@ -3119,7 +3156,7 @@ var RoundButton = ({
3119
3156
  onClick(e);
3120
3157
  }
3121
3158
  };
3122
- const Button14 = /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
3159
+ const Button14 = /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
3123
3160
  import_material16.Fab,
3124
3161
  {
3125
3162
  className: cx(
@@ -3143,7 +3180,7 @@ var RoundButton = ({
3143
3180
  children: icon ? iconComponentMap[icon] : children || ""
3144
3181
  }
3145
3182
  );
3146
- return tooltip ? /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_material16.Tooltip, { title: tooltip, children: Button14 }) : Button14;
3183
+ return tooltip ? /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_material16.Tooltip, { title: tooltip, children: Button14 }) : Button14;
3147
3184
  };
3148
3185
  var RoundButton_default = RoundButton;
3149
3186
 
@@ -3151,7 +3188,7 @@ var RoundButton_default = RoundButton;
3151
3188
  var import_react10 = require("react");
3152
3189
  var import_mdi_material_ui = require("mdi-material-ui");
3153
3190
  var import_mui14 = require("tss-react/mui");
3154
- var import_jsx_runtime63 = require("react/jsx-runtime");
3191
+ var import_jsx_runtime64 = require("react/jsx-runtime");
3155
3192
  var useStyles12 = (0, import_mui14.makeStyles)()(() => ({
3156
3193
  root: {
3157
3194
  opacity: 0.5
@@ -3162,14 +3199,14 @@ var useStyles12 = (0, import_mui14.makeStyles)()(() => ({
3162
3199
  }));
3163
3200
  var PinButton = () => {
3164
3201
  const { classes } = useStyles12();
3165
- return /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_mdi_material_ui.Pin, { className: classes.root });
3202
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_mdi_material_ui.Pin, { className: classes.root });
3166
3203
  };
3167
3204
  var Pin_default = (0, import_react10.memo)(PinButton);
3168
3205
 
3169
3206
  // src/components/Buttons/PinnedApp.tsx
3170
3207
  var import_material17 = require("@mui/material");
3171
3208
  var import_mui15 = require("tss-react/mui");
3172
- var import_jsx_runtime64 = require("react/jsx-runtime");
3209
+ var import_jsx_runtime65 = require("react/jsx-runtime");
3173
3210
  var useStyles13 = (0, import_mui15.makeStyles)()((theme) => ({
3174
3211
  root: {
3175
3212
  "& > *": {
@@ -3183,12 +3220,12 @@ var useStyles13 = (0, import_mui15.makeStyles)()((theme) => ({
3183
3220
  function ActionButton(props) {
3184
3221
  const { app } = props;
3185
3222
  const { classes } = useStyles13();
3186
- return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: classes.root, children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_material17.Fab, { color: "primary", "aria-label": "add", children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_material17.Icon, { children: app.icon }) }) });
3223
+ return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { className: classes.root, children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(import_material17.Fab, { color: "primary", "aria-label": "add", children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(import_material17.Icon, { children: app.icon }) }) });
3187
3224
  }
3188
3225
 
3189
3226
  // src/components/CompanyLogo/CompanyLogo.tsx
3190
3227
  var import_mui16 = require("tss-react/mui");
3191
- var import_jsx_runtime65 = require("react/jsx-runtime");
3228
+ var import_jsx_runtime66 = require("react/jsx-runtime");
3192
3229
  var useStyles14 = (0, import_mui16.makeStyles)()((theme, { imageLogoDarkSmall, imageLogoLightSmall }) => ({
3193
3230
  logoSmall: {
3194
3231
  height: 46,
@@ -3221,14 +3258,14 @@ var CompanyLogo = ({
3221
3258
  [classes.logoLight]: color === "light",
3222
3259
  [classes.logoDark]: color === "dark"
3223
3260
  });
3224
- return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { className });
3261
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className });
3225
3262
  };
3226
3263
  var CompanyLogo_default = CompanyLogo;
3227
3264
 
3228
3265
  // src/components/ConfirmationDialog/ConfirmationDialog.tsx
3229
3266
  var import_material18 = require("@mui/material");
3230
3267
  var import_mui17 = require("tss-react/mui");
3231
- var import_jsx_runtime66 = require("react/jsx-runtime");
3268
+ var import_jsx_runtime67 = require("react/jsx-runtime");
3232
3269
  var useStyles15 = (0, import_mui17.makeStyles)()((theme) => ({
3233
3270
  content: {
3234
3271
  width: "660px"
@@ -3266,14 +3303,14 @@ var ConfirmationDialog = ({
3266
3303
  };
3267
3304
  const contentComponent = () => {
3268
3305
  if (typeof content === "string") {
3269
- return /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_material18.Typography, { variant: "body1", children: content });
3306
+ return /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_material18.Typography, { variant: "body1", children: content });
3270
3307
  }
3271
3308
  return content;
3272
3309
  };
3273
- return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(import_material18.Dialog, { onClose: closeModal, open: isOpen, maxWidth: "lg", children: [
3274
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(import_material18.Box, { className: classes.content, children: [
3275
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_material18.Typography, { className: classes.title, variant: "h6", children: title }),
3276
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
3310
+ return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(import_material18.Dialog, { onClose: closeModal, open: isOpen, maxWidth: "lg", children: [
3311
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(import_material18.Box, { className: classes.content, children: [
3312
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_material18.Typography, { className: classes.title, variant: "h6", children: title }),
3313
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
3277
3314
  import_material18.Box,
3278
3315
  {
3279
3316
  sx: {
@@ -3286,9 +3323,9 @@ var ConfirmationDialog = ({
3286
3323
  }
3287
3324
  )
3288
3325
  ] }),
3289
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_material18.Divider, {}),
3290
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(import_material18.DialogActions, { className: classes.footer, children: [
3291
- !hideCancel && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
3326
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_material18.Divider, {}),
3327
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(import_material18.DialogActions, { className: classes.footer, children: [
3328
+ !hideCancel && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
3292
3329
  FilledButton_default,
3293
3330
  {
3294
3331
  className: classes.button,
@@ -3298,7 +3335,7 @@ var ConfirmationDialog = ({
3298
3335
  onClick: closeModal
3299
3336
  }
3300
3337
  ),
3301
- !hideConfirm && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
3338
+ !hideConfirm && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
3302
3339
  FilledButton_default,
3303
3340
  {
3304
3341
  className: classes.button,
@@ -3323,7 +3360,7 @@ var ConfirmationDialog_default = ConfirmationDialog;
3323
3360
  // src/components/ControlledCheckbox/ControlledCheckbox.tsx
3324
3361
  var import_react_hook_form = require("react-hook-form");
3325
3362
  var import_material19 = require("@mui/material");
3326
- var import_jsx_runtime67 = require("react/jsx-runtime");
3363
+ var import_jsx_runtime68 = require("react/jsx-runtime");
3327
3364
  var ControlledCheckbox = ({
3328
3365
  name,
3329
3366
  label,
@@ -3335,18 +3372,18 @@ var ControlledCheckbox = ({
3335
3372
  color,
3336
3373
  handleChange,
3337
3374
  disabled
3338
- }) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
3375
+ }) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
3339
3376
  import_react_hook_form.Controller,
3340
3377
  {
3341
3378
  name,
3342
3379
  control,
3343
3380
  render: ({ field }) => {
3344
- const checkbox = /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
3381
+ const checkbox = /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
3345
3382
  import_material19.FormControlLabel,
3346
3383
  {
3347
3384
  label,
3348
3385
  className,
3349
- control: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
3386
+ control: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
3350
3387
  import_material19.Checkbox,
3351
3388
  {
3352
3389
  ...field,
@@ -3360,7 +3397,7 @@ var ControlledCheckbox = ({
3360
3397
  )
3361
3398
  }
3362
3399
  );
3363
- return tooltipDescription ? /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_material19.Tooltip, { title: tooltipDescription, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { children: checkbox }) }) : checkbox;
3400
+ return tooltipDescription ? /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_material19.Tooltip, { title: tooltipDescription, children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { children: checkbox }) }) : checkbox;
3364
3401
  }
3365
3402
  }
3366
3403
  );
@@ -3370,7 +3407,7 @@ var ControlledCheckbox_default = ControlledCheckbox;
3370
3407
  var import_react_hook_form2 = require("react-hook-form");
3371
3408
  var import_material20 = require("@mui/material");
3372
3409
  var import_mui18 = require("tss-react/mui");
3373
- var import_jsx_runtime68 = require("react/jsx-runtime");
3410
+ var import_jsx_runtime69 = require("react/jsx-runtime");
3374
3411
  var useStyles16 = (0, import_mui18.makeStyles)()(() => ({
3375
3412
  selectInput: {
3376
3413
  minWidth: 122
@@ -3403,12 +3440,12 @@ var ControlledNumberInput = ({
3403
3440
  "Backspace",
3404
3441
  "Tab"
3405
3442
  ].includes(input.key) && input.preventDefault();
3406
- return /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
3443
+ return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3407
3444
  import_react_hook_form2.Controller,
3408
3445
  {
3409
3446
  control,
3410
3447
  name,
3411
- render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
3448
+ render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3412
3449
  import_material20.TextField,
3413
3450
  {
3414
3451
  variant: "standard",
@@ -3444,7 +3481,7 @@ var import_react_hook_form3 = require("react-hook-form");
3444
3481
  var import_icons_material5 = require("@mui/icons-material");
3445
3482
  var import_material21 = require("@mui/material");
3446
3483
  var import_mui19 = require("tss-react/mui");
3447
- var import_jsx_runtime69 = require("react/jsx-runtime");
3484
+ var import_jsx_runtime70 = require("react/jsx-runtime");
3448
3485
  var convertUnderscoreToHyphen = (str) => str.replace(/_/g, "-");
3449
3486
  var useStyles17 = (0, import_mui19.makeStyles)()((theme) => ({
3450
3487
  textFieldButtons: {
@@ -3545,17 +3582,17 @@ var ControlledNumericField = ({
3545
3582
  decrementValue(field)();
3546
3583
  }
3547
3584
  };
3548
- return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3585
+ return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3549
3586
  import_material21.Box,
3550
3587
  {
3551
3588
  className,
3552
3589
  "data-testid": dataTestId || `${convertUnderscoreToHyphen(fieldName)}`,
3553
- children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3590
+ children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3554
3591
  import_react_hook_form3.Controller,
3555
3592
  {
3556
3593
  control,
3557
3594
  name: fieldName,
3558
- render: ({ field, fieldState }) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3595
+ render: ({ field, fieldState }) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3559
3596
  import_material21.TextField,
3560
3597
  {
3561
3598
  ...field,
@@ -3590,25 +3627,25 @@ var ControlledNumericField = ({
3590
3627
  slotProps: {
3591
3628
  htmlInput: { min, max, step },
3592
3629
  input: {
3593
- endAdornment: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_material21.InputAdornment, { position: "end", children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(import_material21.Box, { className: classes.textFieldButtons, children: [
3594
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3630
+ endAdornment: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_material21.InputAdornment, { position: "end", children: /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(import_material21.Box, { className: classes.textFieldButtons, children: [
3631
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3595
3632
  import_material21.IconButton,
3596
3633
  {
3597
3634
  disableRipple: true,
3598
3635
  className: classes.arrowButton,
3599
3636
  onClick: incrementValue(field),
3600
3637
  "data-testid": "arrow-up",
3601
- children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons_material5.KeyboardArrowUp, { sx: { fontSize: 15 } })
3638
+ children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_icons_material5.KeyboardArrowUp, { sx: { fontSize: 15 } })
3602
3639
  }
3603
3640
  ),
3604
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3641
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3605
3642
  import_material21.IconButton,
3606
3643
  {
3607
3644
  disableRipple: true,
3608
3645
  className: classes.arrowButton,
3609
3646
  onClick: decrementValue(field),
3610
3647
  "data-testid": "arrow-down",
3611
- children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons_material5.KeyboardArrowDown, { sx: { fontSize: 15 } })
3648
+ children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_icons_material5.KeyboardArrowDown, { sx: { fontSize: 15 } })
3612
3649
  }
3613
3650
  )
3614
3651
  ] }) })
@@ -3627,7 +3664,7 @@ var ControlledNumericField_default = ControlledNumericField;
3627
3664
  var import_react_hook_form4 = require("react-hook-form");
3628
3665
  var import_material22 = require("@mui/material");
3629
3666
  var import_mui20 = require("tss-react/mui");
3630
- var import_jsx_runtime70 = require("react/jsx-runtime");
3667
+ var import_jsx_runtime71 = require("react/jsx-runtime");
3631
3668
  var useStyles18 = (0, import_mui20.makeStyles)()(() => ({
3632
3669
  selectInput: {
3633
3670
  minWidth: 122
@@ -3644,7 +3681,7 @@ var ControlledSelectWithArray = ({
3644
3681
  revalidateFormFunction
3645
3682
  }) => {
3646
3683
  const { classes } = useStyles18();
3647
- return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3684
+ return /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3648
3685
  import_react_hook_form4.Controller,
3649
3686
  {
3650
3687
  control,
@@ -3652,14 +3689,14 @@ var ControlledSelectWithArray = ({
3652
3689
  render: ({
3653
3690
  field: { onChange: fieldOnChange, ...field },
3654
3691
  fieldState
3655
- }) => /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
3692
+ }) => /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
3656
3693
  import_material22.FormControl,
3657
3694
  {
3658
3695
  className: className || classes.selectInput,
3659
3696
  variant: "standard",
3660
3697
  children: [
3661
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_material22.InputLabel, { shrink: true, error: !!fieldState.error, children: label }),
3662
- /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
3698
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_material22.InputLabel, { shrink: true, error: !!fieldState.error, children: label }),
3699
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
3663
3700
  import_material22.Select,
3664
3701
  {
3665
3702
  variant: "standard",
@@ -3678,12 +3715,12 @@ var ControlledSelectWithArray = ({
3678
3715
  },
3679
3716
  error: !!fieldState.error,
3680
3717
  children: [
3681
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("option", { "aria-label": "None" }),
3682
- options?.map((item) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("option", { value: item, children: item }, item))
3718
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("option", { "aria-label": "None" }),
3719
+ options?.map((item) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("option", { value: item, children: item }, item))
3683
3720
  ]
3684
3721
  }
3685
3722
  ),
3686
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_material22.FormHelperText, { error: !!fieldState.error, children: fieldState.error?.message || error })
3723
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_material22.FormHelperText, { error: !!fieldState.error, children: fieldState.error?.message || error })
3687
3724
  ]
3688
3725
  }
3689
3726
  )
@@ -3696,7 +3733,7 @@ var ControlledSelectWithArray_default = ControlledSelectWithArray;
3696
3733
  var import_react_hook_form5 = require("react-hook-form");
3697
3734
  var import_material23 = require("@mui/material");
3698
3735
  var import_mui21 = require("tss-react/mui");
3699
- var import_jsx_runtime71 = require("react/jsx-runtime");
3736
+ var import_jsx_runtime72 = require("react/jsx-runtime");
3700
3737
  var useStyles19 = (0, import_mui21.makeStyles)()(() => ({
3701
3738
  selectInput: {
3702
3739
  minWidth: 122
@@ -3714,7 +3751,7 @@ var ControlledSelectWithObject = ({
3714
3751
  revalidateFormFunction
3715
3752
  }) => {
3716
3753
  const { classes } = useStyles19();
3717
- return /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3754
+ return /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3718
3755
  import_react_hook_form5.Controller,
3719
3756
  {
3720
3757
  control,
@@ -3722,14 +3759,14 @@ var ControlledSelectWithObject = ({
3722
3759
  render: ({
3723
3760
  field: { onChange: fieldOnChange, ...field },
3724
3761
  fieldState
3725
- }) => /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
3762
+ }) => /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
3726
3763
  import_material23.FormControl,
3727
3764
  {
3728
3765
  className: className || classes.selectInput,
3729
3766
  variant: "standard",
3730
3767
  children: [
3731
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_material23.InputLabel, { error: !!fieldState.error, children: label }),
3732
- /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
3768
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(import_material23.InputLabel, { error: !!fieldState.error, children: label }),
3769
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
3733
3770
  import_material23.Select,
3734
3771
  {
3735
3772
  variant: "standard",
@@ -3748,8 +3785,8 @@ var ControlledSelectWithObject = ({
3748
3785
  },
3749
3786
  error: !!fieldState.error,
3750
3787
  children: [
3751
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("option", { "aria-label": "None" }),
3752
- options?.map((option) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3788
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("option", { "aria-label": "None" }),
3789
+ options?.map((option) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3753
3790
  "option",
3754
3791
  {
3755
3792
  disabled: listToDisableFromOptions ? listToDisableFromOptions.includes(option.value) : false,
@@ -3761,7 +3798,7 @@ var ControlledSelectWithObject = ({
3761
3798
  ]
3762
3799
  }
3763
3800
  ),
3764
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_material23.FormHelperText, { error: !!fieldState.error, children: fieldState.error?.message || error })
3801
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(import_material23.FormHelperText, { error: !!fieldState.error, children: fieldState.error?.message || error })
3765
3802
  ]
3766
3803
  }
3767
3804
  )
@@ -3775,7 +3812,7 @@ var import_react_hook_form6 = require("react-hook-form");
3775
3812
  var import_material24 = require("@mui/material");
3776
3813
  var import_classnames = __toESM(require("classnames"), 1);
3777
3814
  var import_mui22 = require("tss-react/mui");
3778
- var import_jsx_runtime72 = require("react/jsx-runtime");
3815
+ var import_jsx_runtime73 = require("react/jsx-runtime");
3779
3816
  var useStyles20 = (0, import_mui22.makeStyles)()(() => ({
3780
3817
  fullWidthWrapper: {
3781
3818
  maxWidth: "100%"
@@ -3823,17 +3860,17 @@ var ControlledValidTextInput = ({
3823
3860
  defaultHandleBlurValidationAndSubmit(controlledField, fieldState.isDirty);
3824
3861
  }
3825
3862
  };
3826
- return /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3863
+ return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3827
3864
  import_material24.Box,
3828
3865
  {
3829
3866
  className,
3830
3867
  "data-testid": dataTestId || `${convertUnderscoreToHyphen2(fieldName)}`,
3831
- children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3868
+ children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3832
3869
  import_react_hook_form6.Controller,
3833
3870
  {
3834
3871
  control,
3835
3872
  name: fieldName,
3836
- render: ({ field: controlledField, fieldState }) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(import_material24.Box, { className: classes.fullWidthWrapper, children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3873
+ render: ({ field: controlledField, fieldState }) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(import_material24.Box, { className: classes.fullWidthWrapper, children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3837
3874
  import_material24.TextField,
3838
3875
  {
3839
3876
  ...controlledField,
@@ -3847,7 +3884,7 @@ var ControlledValidTextInput = ({
3847
3884
  autoComplete: "off",
3848
3885
  disabled,
3849
3886
  variant,
3850
- helperText: /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
3887
+ helperText: /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
3851
3888
  import_material24.Box,
3852
3889
  {
3853
3890
  component: "span",
@@ -3857,7 +3894,7 @@ var ControlledValidTextInput = ({
3857
3894
  }),
3858
3895
  "data-testid": `${dataTestId}-helper-text` || `${convertUnderscoreToHyphen2(fieldName)}-helper-text`,
3859
3896
  children: [
3860
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3897
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3861
3898
  import_material24.Box,
3862
3899
  {
3863
3900
  component: "span",
@@ -3867,7 +3904,7 @@ var ControlledValidTextInput = ({
3867
3904
  children: fieldState.error?.message ?? helperText
3868
3905
  }
3869
3906
  ),
3870
- !!maxLength && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(import_material24.Box, { component: "span", children: `${watch(fieldName)?.length ?? 0}/${maxLength}` })
3907
+ !!maxLength && /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(import_material24.Box, { component: "span", children: `${watch(fieldName)?.length ?? 0}/${maxLength}` })
3871
3908
  ]
3872
3909
  }
3873
3910
  ),
@@ -3886,7 +3923,7 @@ var import_react12 = require("react");
3886
3923
  var import_material25 = require("@mui/material");
3887
3924
  var import_x_data_grid = require("@mui/x-data-grid");
3888
3925
  var import_mui23 = require("tss-react/mui");
3889
- var import_jsx_runtime73 = require("react/jsx-runtime");
3926
+ var import_jsx_runtime74 = require("react/jsx-runtime");
3890
3927
  var useStyles21 = (0, import_mui23.makeStyles)()(() => ({
3891
3928
  root: {
3892
3929
  justifyContent: "space-between",
@@ -3933,14 +3970,14 @@ var DataGrid = ({
3933
3970
  ]);
3934
3971
  const rowHeight = 56;
3935
3972
  const headerAndFooterHeight = 52 + 56;
3936
- return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3973
+ return /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
3937
3974
  "div",
3938
3975
  {
3939
3976
  className: classes.root,
3940
3977
  style: {
3941
3978
  height: height || rows.length * rowHeight + headerAndFooterHeight
3942
3979
  },
3943
- children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(import_material25.Paper, { className: classes.paper, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { children: [...Array(Math.floor(10))].map((i) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3980
+ children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(import_material25.Paper, { className: classes.paper, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { children: [...Array(Math.floor(10))].map((i) => /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
3944
3981
  import_material25.Skeleton,
3945
3982
  {
3946
3983
  animation: "pulse",
@@ -3949,8 +3986,8 @@ var DataGrid = ({
3949
3986
  height: rowHeight
3950
3987
  },
3951
3988
  i
3952
- )) }) : /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(import_jsx_runtime73.Fragment, { children: [
3953
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3989
+ )) }) : /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(import_jsx_runtime74.Fragment, { children: [
3990
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
3954
3991
  import_x_data_grid.DataGrid,
3955
3992
  {
3956
3993
  rows,
@@ -4055,10 +4092,10 @@ localizedMoment.locale(constants_default.locale);
4055
4092
  var moment_default = localizedMoment;
4056
4093
 
4057
4094
  // src/components/Date/Date.tsx
4058
- var import_jsx_runtime74 = require("react/jsx-runtime");
4095
+ var import_jsx_runtime75 = require("react/jsx-runtime");
4059
4096
  var Date = ({ datetime, format = "L" }) => {
4060
4097
  const formattedDate = moment_default(datetime).format(format);
4061
- return /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { children: formattedDate === "Invalid date" ? "-" : formattedDate });
4098
+ return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { children: formattedDate === "Invalid date" ? "-" : formattedDate });
4062
4099
  };
4063
4100
  var Date_default = Date;
4064
4101
 
@@ -4066,7 +4103,7 @@ var Date_default = Date;
4066
4103
  var import_react13 = require("react");
4067
4104
  var import_material26 = require("@mui/material");
4068
4105
  var import_mui24 = require("tss-react/mui");
4069
- var import_jsx_runtime75 = require("react/jsx-runtime");
4106
+ var import_jsx_runtime76 = require("react/jsx-runtime");
4070
4107
  var useStyles22 = (0, import_mui24.makeStyles)()(() => ({
4071
4108
  alert: { marginBottom: 16 },
4072
4109
  bottomBar: {
@@ -4084,19 +4121,19 @@ var DeleteSubstitutionDialogContent = ({
4084
4121
  deleteSubstitution
4085
4122
  }) => {
4086
4123
  const { classes } = useStyles22();
4087
- return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_jsx_runtime75.Fragment, { children: [
4088
- /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_material26.Alert, { severity: "warning", className: classes.alert, children: [
4089
- /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_material26.AlertTitle, { children: [
4124
+ return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_jsx_runtime76.Fragment, { children: [
4125
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_material26.Alert, { severity: "warning", className: classes.alert, children: [
4126
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_material26.AlertTitle, { children: [
4090
4127
  "Are you sure you want to delete the substitution \u201C",
4091
4128
  substitutionName,
4092
4129
  "\u201D?"
4093
4130
  ] }),
4094
4131
  "This action will permanently remove all data and history associated with this substitution, and it cannot be undone."
4095
4132
  ] }),
4096
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_material26.Typography, { variant: "body1", children: "Please confirm if you wish to proceed." }),
4097
- /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_material26.Box, { className: classes.bottomBar, children: [
4098
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(ExtendedButton_default, { copy: "Cancel", onClick: closeDialog }),
4099
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
4133
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(import_material26.Typography, { variant: "body1", children: "Please confirm if you wish to proceed." }),
4134
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_material26.Box, { className: classes.bottomBar, children: [
4135
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(ExtendedButton_default, { copy: "Cancel", onClick: closeDialog }),
4136
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
4100
4137
  ExtendedButton_default,
4101
4138
  {
4102
4139
  copy: "Confirm",
@@ -4114,7 +4151,7 @@ var DeleteSubstitutionDialogContent_default = (0, import_react13.memo)(DeleteSub
4114
4151
  var import_react14 = require("react");
4115
4152
  var import_material27 = require("@mui/material");
4116
4153
  var import_mui25 = require("tss-react/mui");
4117
- var import_jsx_runtime76 = require("react/jsx-runtime");
4154
+ var import_jsx_runtime77 = require("react/jsx-runtime");
4118
4155
  var useStyles23 = (0, import_mui25.makeStyles)()(() => ({
4119
4156
  alert: { marginBottom: 16 },
4120
4157
  bottomBar: {
@@ -4132,19 +4169,19 @@ var DeleteUserDialogContent = ({
4132
4169
  deleteUser
4133
4170
  }) => {
4134
4171
  const { classes } = useStyles23();
4135
- return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_jsx_runtime76.Fragment, { children: [
4136
- /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_material27.Alert, { severity: "warning", className: classes.alert, children: [
4137
- /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_material27.AlertTitle, { children: [
4172
+ return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(import_jsx_runtime77.Fragment, { children: [
4173
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(import_material27.Alert, { severity: "warning", className: classes.alert, children: [
4174
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(import_material27.AlertTitle, { children: [
4138
4175
  "Are you sure you want to delete the user ",
4139
4176
  userName,
4140
4177
  "?"
4141
4178
  ] }),
4142
4179
  "This action will permanently remove all data and history associated with this user, and it cannot be undone."
4143
4180
  ] }),
4144
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(import_material27.Typography, { variant: "body1", children: "Please confirm if you wish to proceed." }),
4145
- /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_material27.Box, { className: classes.bottomBar, children: [
4146
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(ExtendedButton_default, { color: "default", copy: "Cancel", onClick: closeDialog }),
4147
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
4181
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(import_material27.Typography, { variant: "body1", children: "Please confirm if you wish to proceed." }),
4182
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(import_material27.Box, { className: classes.bottomBar, children: [
4183
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(ExtendedButton_default, { color: "default", copy: "Cancel", onClick: closeDialog }),
4184
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
4148
4185
  ExtendedButton_default,
4149
4186
  {
4150
4187
  copy: "Confirm",
@@ -4161,7 +4198,7 @@ var DeleteUserDialogContent_default = (0, import_react14.memo)(DeleteUserDialogC
4161
4198
  // src/components/FileCard/FileCard.tsx
4162
4199
  var import_icons_material6 = require("@mui/icons-material");
4163
4200
  var import_material28 = require("@mui/material");
4164
- var import_jsx_runtime77 = require("react/jsx-runtime");
4201
+ var import_jsx_runtime78 = require("react/jsx-runtime");
4165
4202
  var getFileMetadata = (file) => {
4166
4203
  const fullFilename = file.substring(file.lastIndexOf("/") + 1);
4167
4204
  const extension = file.substring(file.lastIndexOf("."));
@@ -4173,7 +4210,7 @@ var FileCard = ({ document: document2 }) => {
4173
4210
  const handleOpenDocument = () => {
4174
4211
  window.open(document2, "_blank");
4175
4212
  };
4176
- return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
4213
+ return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
4177
4214
  import_material28.Box,
4178
4215
  {
4179
4216
  onClick: handleOpenDocument,
@@ -4186,7 +4223,7 @@ var FileCard = ({ document: document2 }) => {
4186
4223
  minWidth: "250px"
4187
4224
  },
4188
4225
  children: [
4189
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
4226
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
4190
4227
  import_material28.Box,
4191
4228
  {
4192
4229
  sx: {
@@ -4194,10 +4231,10 @@ var FileCard = ({ document: document2 }) => {
4194
4231
  justifyContent: "center",
4195
4232
  alignItems: "center"
4196
4233
  },
4197
- children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(import_icons_material6.Description, { fontSize: "medium", color: "action" })
4234
+ children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(import_icons_material6.Description, { fontSize: "medium", color: "action" })
4198
4235
  }
4199
4236
  ),
4200
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
4237
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
4201
4238
  import_material28.Box,
4202
4239
  {
4203
4240
  sx: {
@@ -4205,7 +4242,7 @@ var FileCard = ({ document: document2 }) => {
4205
4242
  alignItems: "center",
4206
4243
  width: "100%"
4207
4244
  },
4208
- children: /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(import_material28.Typography, { variant: "body1", children: [
4245
+ children: /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(import_material28.Typography, { variant: "body1", children: [
4209
4246
  metadata.filename,
4210
4247
  metadata.extension
4211
4248
  ] })
@@ -4223,7 +4260,7 @@ var import_material29 = require("@mui/material");
4223
4260
  var import_brown = __toESM(require("@mui/material/colors/brown"), 1);
4224
4261
  var import_teal = __toESM(require("@mui/material/colors/teal"), 1);
4225
4262
  var import_mui26 = require("tss-react/mui");
4226
- var import_jsx_runtime78 = require("react/jsx-runtime");
4263
+ var import_jsx_runtime79 = require("react/jsx-runtime");
4227
4264
  var useStyles24 = (0, import_mui26.makeStyles)()((theme) => ({
4228
4265
  siteOne: {
4229
4266
  backgroundColor: import_teal.default["50"],
@@ -4251,7 +4288,7 @@ var useStyles24 = (0, import_mui26.makeStyles)()((theme) => ({
4251
4288
  var FilledLabel = (props) => {
4252
4289
  const { color, copy } = props;
4253
4290
  const { classes } = useStyles24();
4254
- return /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(import_material29.Typography, { variant: "caption", className: classes[color], children: copy });
4291
+ return /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material29.Typography, { variant: "caption", className: classes[color], children: copy });
4255
4292
  };
4256
4293
  var FilledLabel_default = (0, import_react15.memo)(FilledLabel);
4257
4294
 
@@ -4259,7 +4296,7 @@ var FilledLabel_default = (0, import_react15.memo)(FilledLabel);
4259
4296
  var import_react16 = require("react");
4260
4297
  var import_icons_material7 = require("@mui/icons-material");
4261
4298
  var import_material30 = require("@mui/material");
4262
- var import_jsx_runtime79 = require("react/jsx-runtime");
4299
+ var import_jsx_runtime80 = require("react/jsx-runtime");
4263
4300
  var FilterGroupSelector = ({
4264
4301
  name = "Filter Selector",
4265
4302
  optionsList = [{ category: "Category", options: ["Option 1"] }],
@@ -4284,8 +4321,8 @@ var FilterGroupSelector = ({
4284
4321
  (prev) => prev.includes(option) ? prev.filter((o) => o !== option) : [...prev, option]
4285
4322
  );
4286
4323
  };
4287
- return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_jsx_runtime79.Fragment, { children: [
4288
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
4324
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(import_jsx_runtime80.Fragment, { children: [
4325
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
4289
4326
  import_material30.Box,
4290
4327
  {
4291
4328
  display: "flex",
@@ -4294,12 +4331,12 @@ var FilterGroupSelector = ({
4294
4331
  onClick: handleClick,
4295
4332
  sx: { cursor: "pointer" },
4296
4333
  children: [
4297
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material30.Typography, { variant: "button", fontSize: 12, children: name }),
4298
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_icons_material7.FilterList, {})
4334
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Typography, { variant: "button", fontSize: 12, children: name }),
4335
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_icons_material7.FilterList, {})
4299
4336
  ]
4300
4337
  }
4301
4338
  ),
4302
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
4339
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
4303
4340
  import_material30.Menu,
4304
4341
  {
4305
4342
  anchorEl,
@@ -4308,10 +4345,10 @@ var FilterGroupSelector = ({
4308
4345
  anchorOrigin: { vertical: "bottom", horizontal: "left" },
4309
4346
  transformOrigin: { vertical: "top", horizontal: "left" },
4310
4347
  children: [
4311
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material30.Box, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material30.Typography, { variant: "button", children: `Search ${name}` }) }),
4312
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material30.Divider, {}),
4313
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material30.Box, { overflow: "auto", height: 450, children: optionsList.map(({ category, options }, index) => /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_material30.Box, { children: [
4314
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
4348
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Box, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Typography, { variant: "button", children: `Search ${name}` }) }),
4349
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Divider, {}),
4350
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Box, { overflow: "auto", height: 450, children: optionsList.map(({ category, options }, index) => /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(import_material30.Box, { children: [
4351
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
4315
4352
  import_material30.Typography,
4316
4353
  {
4317
4354
  variant: "subtitle2",
@@ -4321,14 +4358,14 @@ var FilterGroupSelector = ({
4321
4358
  ),
4322
4359
  options.map((value) => {
4323
4360
  const key = `${category.replaceAll(" ", "_").toLocaleLowerCase()}${categoryIdentification ? `_${categoryIdentification}` : ""}: ${value}`;
4324
- return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_material30.MenuItem, { onClick: () => toggleOption(key), children: [
4325
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material30.Checkbox, { checked: values.includes(key) }),
4326
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material30.ListItemText, { primary: value })
4361
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(import_material30.MenuItem, { onClick: () => toggleOption(key), children: [
4362
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Checkbox, { checked: values.includes(key) }),
4363
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.ListItemText, { primary: value })
4327
4364
  ] }, value);
4328
4365
  })
4329
4366
  ] }, category)) }),
4330
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_material30.Box, { display: "flex", children: [
4331
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
4367
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(import_material30.Box, { display: "flex", children: [
4368
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
4332
4369
  ExtendedButton_default,
4333
4370
  {
4334
4371
  variant: "text",
@@ -4340,7 +4377,7 @@ var FilterGroupSelector = ({
4340
4377
  }
4341
4378
  }
4342
4379
  ),
4343
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
4380
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
4344
4381
  ExtendedButton_default,
4345
4382
  {
4346
4383
  color: "primary",
@@ -4364,7 +4401,7 @@ var FilterGroupSelector_default = FilterGroupSelector;
4364
4401
  var import_react17 = require("react");
4365
4402
  var import_icons_material8 = require("@mui/icons-material");
4366
4403
  var import_material31 = require("@mui/material");
4367
- var import_jsx_runtime80 = require("react/jsx-runtime");
4404
+ var import_jsx_runtime81 = require("react/jsx-runtime");
4368
4405
  var FilterSimpleSelector = ({
4369
4406
  name = "Filter Selector",
4370
4407
  options = ["No Options"],
@@ -4388,8 +4425,8 @@ var FilterSimpleSelector = ({
4388
4425
  (prev) => prev.includes(option) ? prev.filter((o) => o !== option) : [...prev, option]
4389
4426
  );
4390
4427
  };
4391
- return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(import_jsx_runtime80.Fragment, { children: [
4392
- /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
4428
+ return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(import_jsx_runtime81.Fragment, { children: [
4429
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
4393
4430
  import_material31.Box,
4394
4431
  {
4395
4432
  display: "flex",
@@ -4398,12 +4435,12 @@ var FilterSimpleSelector = ({
4398
4435
  onClick: handleClick,
4399
4436
  sx: { cursor: "pointer" },
4400
4437
  children: [
4401
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material31.Typography, { variant: "button", fontSize: 12, children: name }),
4402
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_icons_material8.FilterList, {})
4438
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_material31.Typography, { variant: "button", fontSize: 12, children: name }),
4439
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_icons_material8.FilterList, {})
4403
4440
  ]
4404
4441
  }
4405
4442
  ),
4406
- /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
4443
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
4407
4444
  import_material31.Menu,
4408
4445
  {
4409
4446
  anchorEl,
@@ -4412,15 +4449,15 @@ var FilterSimpleSelector = ({
4412
4449
  anchorOrigin: { vertical: "bottom", horizontal: "left" },
4413
4450
  transformOrigin: { vertical: "top", horizontal: "left" },
4414
4451
  children: [
4415
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material31.Box, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material31.Typography, { variant: "button", children: `Search ${name}` }) }),
4416
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material31.Divider, {}),
4417
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material31.Box, { overflow: "auto", height: 450, children: options.map((option) => /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(import_material31.MenuItem, { onClick: () => toggleOption(option), children: [
4418
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material31.Checkbox, { checked: values.includes(option) }),
4419
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material31.ListItemText, { primary: option })
4452
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_material31.Box, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_material31.Typography, { variant: "button", children: `Search ${name}` }) }),
4453
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_material31.Divider, {}),
4454
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_material31.Box, { overflow: "auto", height: 450, children: options.map((option) => /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(import_material31.MenuItem, { onClick: () => toggleOption(option), children: [
4455
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_material31.Checkbox, { checked: values.includes(option) }),
4456
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_material31.ListItemText, { primary: option })
4420
4457
  ] }, option)) }),
4421
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material31.Divider, {}),
4422
- /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(import_material31.Box, { display: "flex", children: [
4423
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
4458
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_material31.Divider, {}),
4459
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(import_material31.Box, { display: "flex", children: [
4460
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
4424
4461
  ExtendedButton_default,
4425
4462
  {
4426
4463
  variant: "text",
@@ -4432,7 +4469,7 @@ var FilterSimpleSelector = ({
4432
4469
  }
4433
4470
  }
4434
4471
  ),
4435
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
4472
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
4436
4473
  ExtendedButton_default,
4437
4474
  {
4438
4475
  color: "primary",
@@ -4456,7 +4493,7 @@ var FilterSimpleSelector_default = FilterSimpleSelector;
4456
4493
  var React = __toESM(require("react"), 1);
4457
4494
  var import_material32 = require("@mui/material");
4458
4495
  var import_mui27 = require("tss-react/mui");
4459
- var import_jsx_runtime81 = require("react/jsx-runtime");
4496
+ var import_jsx_runtime82 = require("react/jsx-runtime");
4460
4497
  var footerHeight = "64px";
4461
4498
  var useStyles25 = (0, import_mui27.makeStyles)()((theme) => ({
4462
4499
  root: {
@@ -4477,9 +4514,9 @@ var useStyles25 = (0, import_mui27.makeStyles)()((theme) => ({
4477
4514
  }));
4478
4515
  var FixedFooter = ({ justifyContent, children }) => {
4479
4516
  const { classes } = useStyles25();
4480
- return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(import_material32.Box, { children: [
4481
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_material32.Box, { className: classes.fixedOffset }),
4482
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
4517
+ return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(import_material32.Box, { children: [
4518
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(import_material32.Box, { className: classes.fixedOffset }),
4519
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
4483
4520
  import_material32.Box,
4484
4521
  {
4485
4522
  className: classes.root,
@@ -4496,7 +4533,7 @@ var FixedFooter_default = React.memo(FixedFooter);
4496
4533
  // src/components/Header/Header.tsx
4497
4534
  var import_material33 = require("@mui/material");
4498
4535
  var import_mui28 = require("tss-react/mui");
4499
- var import_jsx_runtime82 = require("react/jsx-runtime");
4536
+ var import_jsx_runtime83 = require("react/jsx-runtime");
4500
4537
  var useStyles26 = (0, import_mui28.makeStyles)()((theme) => ({
4501
4538
  container: {
4502
4539
  margin: theme.spacing(1)
@@ -4519,16 +4556,16 @@ var Header = ({
4519
4556
  wrappedHeader = false
4520
4557
  }) => {
4521
4558
  const { classes, cx } = useStyles26();
4522
- return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
4559
+ return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
4523
4560
  import_material33.Paper,
4524
4561
  {
4525
4562
  className: cx({
4526
4563
  [classes.container]: !wrappedHeader
4527
4564
  }),
4528
4565
  elevation: wrappedHeader ? 0 : 1,
4529
- children: /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("header", { className: classes.header, children: [
4530
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(AppLabel_default, { appName }),
4531
- children ? /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("div", { className: classes.rightContent, children }) : null
4566
+ children: /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("header", { className: classes.header, children: [
4567
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(AppLabel_default, { appName }),
4568
+ children ? /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("div", { className: classes.rightContent, children }) : null
4532
4569
  ] })
4533
4570
  }
4534
4571
  );
@@ -4545,9 +4582,9 @@ var import_mui29 = require("tss-react/mui");
4545
4582
  // src/components/UserBust/UserBust.tsx
4546
4583
  var import_react18 = require("react");
4547
4584
  var import_material34 = require("@mui/material");
4548
- var import_jsx_runtime83 = require("react/jsx-runtime");
4549
- var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { children: [
4550
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
4585
+ var import_jsx_runtime84 = require("react/jsx-runtime");
4586
+ var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { children: [
4587
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
4551
4588
  import_material34.Avatar,
4552
4589
  {
4553
4590
  src: user.profile_picture,
@@ -4555,9 +4592,9 @@ var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ (0, i
4555
4592
  style: { width: avatarProps.width, height: avatarProps.height }
4556
4593
  }
4557
4594
  ),
4558
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { style: { paddingTop: 16 }, children: [
4559
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(import_material34.Typography, { ...typographyProps.name, children: `${user.first_name} ${user.last_name}` }),
4560
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(import_material34.Typography, { ...typographyProps.username, children: user.username })
4595
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { style: { paddingTop: 16 }, children: [
4596
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(import_material34.Typography, { ...typographyProps.name, children: `${user.first_name} ${user.last_name}` }),
4597
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(import_material34.Typography, { ...typographyProps.username, children: user.username })
4561
4598
  ] })
4562
4599
  ] });
4563
4600
  var UserBust_default = (0, import_react18.memo)(UserBust);
@@ -4596,7 +4633,7 @@ var featureName = {
4596
4633
  var featureName_default = featureName;
4597
4634
 
4598
4635
  // src/components/LeftDrawer/helpers/drawerAppList.tsx
4599
- var import_jsx_runtime84 = require("react/jsx-runtime");
4636
+ var import_jsx_runtime85 = require("react/jsx-runtime");
4600
4637
  var drawerAppList = [
4601
4638
  {
4602
4639
  groupName: "Home",
@@ -4607,7 +4644,7 @@ var drawerAppList = [
4607
4644
  alwaysDisplay: true,
4608
4645
  featureNames: [],
4609
4646
  pinned: null,
4610
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconHome, {}),
4647
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconHome, {}),
4611
4648
  url: `/`
4612
4649
  }
4613
4650
  ]
@@ -4621,7 +4658,7 @@ var drawerAppList = [
4621
4658
  alwaysDisplay: false,
4622
4659
  featureNames: [featureName_default.NOTIFICATIONS],
4623
4660
  pinned: null,
4624
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconNotification, {}),
4661
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconNotification, {}),
4625
4662
  url: `/notifications`
4626
4663
  },
4627
4664
  {
@@ -4630,7 +4667,7 @@ var drawerAppList = [
4630
4667
  alwaysDisplay: false,
4631
4668
  featureNames: [featureName_default.PROMO_CODES],
4632
4669
  pinned: null,
4633
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconPromoCode, {}),
4670
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconPromoCode, {}),
4634
4671
  url: "/react/promo_codes"
4635
4672
  },
4636
4673
  {
@@ -4639,7 +4676,7 @@ var drawerAppList = [
4639
4676
  alwaysDisplay: false,
4640
4677
  featureNames: [featureName_default.SEARCH_CATEGORIES],
4641
4678
  pinned: null,
4642
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconSearchCategories, {}),
4679
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconSearchCategories, {}),
4643
4680
  url: "/react/search-categories"
4644
4681
  },
4645
4682
  {
@@ -4648,7 +4685,7 @@ var drawerAppList = [
4648
4685
  alwaysDisplay: false,
4649
4686
  featureNames: ["cms"],
4650
4687
  pinned: null,
4651
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconContentManagement, {}),
4688
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconContentManagement, {}),
4652
4689
  url: "/react/content-management"
4653
4690
  }
4654
4691
  ]
@@ -4662,7 +4699,7 @@ var drawerAppList = [
4662
4699
  alwaysDisplay: false,
4663
4700
  featureNames: [featureName_default.AIRCALL],
4664
4701
  pinned: "recorded_calls",
4665
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconPhone, {}),
4702
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconPhone, {}),
4666
4703
  url: "/react/air-call"
4667
4704
  },
4668
4705
  {
@@ -4671,7 +4708,7 @@ var drawerAppList = [
4671
4708
  alwaysDisplay: false,
4672
4709
  featureNames: [featureName_default.CUSTOMERS],
4673
4710
  pinned: "customers",
4674
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconAccount, {}),
4711
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconAccount, {}),
4675
4712
  url: `/customer-list`,
4676
4713
  children: [
4677
4714
  {
@@ -4694,7 +4731,7 @@ var drawerAppList = [
4694
4731
  alwaysDisplay: false,
4695
4732
  featureNames: [featureName_default.ORDERS],
4696
4733
  pinned: "orders",
4697
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconOrders, {}),
4734
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconOrders, {}),
4698
4735
  url: `/orders`
4699
4736
  },
4700
4737
  {
@@ -4703,7 +4740,7 @@ var drawerAppList = [
4703
4740
  alwaysDisplay: false,
4704
4741
  featureNames: [featureName_default.PRICE_LIST],
4705
4742
  pinned: "price_list",
4706
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconPriceList, {}),
4743
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconPriceList, {}),
4707
4744
  url: `/price-list`
4708
4745
  },
4709
4746
  {
@@ -4712,7 +4749,7 @@ var drawerAppList = [
4712
4749
  alwaysDisplay: false,
4713
4750
  featureNames: [featureName_default.SPECIAL_PRICES],
4714
4751
  pinned: "special_prices",
4715
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconSpecialPrice, {}),
4752
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconSpecialPrice, {}),
4716
4753
  url: `/pricing/special-prices`
4717
4754
  }
4718
4755
  ]
@@ -4726,7 +4763,7 @@ var drawerAppList = [
4726
4763
  alwaysDisplay: false,
4727
4764
  featureNames: [featureName_default.PURCHASE_ORDERS],
4728
4765
  pinned: "purchase_orders",
4729
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconBuying, {}),
4766
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconBuying, {}),
4730
4767
  url: "/react/purchase-orders"
4731
4768
  },
4732
4769
  {
@@ -4735,7 +4772,7 @@ var drawerAppList = [
4735
4772
  alwaysDisplay: false,
4736
4773
  featureNames: [featureName_default.PRODUCTS],
4737
4774
  pinned: "products",
4738
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconProducts, {}),
4775
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconProducts, {}),
4739
4776
  url: `/product-base-list`
4740
4777
  },
4741
4778
  {
@@ -4744,7 +4781,7 @@ var drawerAppList = [
4744
4781
  alwaysDisplay: false,
4745
4782
  featureNames: [featureName_default.SUPPLIERS],
4746
4783
  pinned: "suppliers",
4747
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconSupplier, {}),
4784
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconSupplier, {}),
4748
4785
  url: "/react/suppliers"
4749
4786
  },
4750
4787
  {
@@ -4753,7 +4790,7 @@ var drawerAppList = [
4753
4790
  alwaysDisplay: false,
4754
4791
  featureNames: [featureName_default.SUPPLIER_PRICES],
4755
4792
  pinned: "supplier_prices",
4756
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconSupplierPrices, {}),
4793
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconSupplierPrices, {}),
4757
4794
  url: `/supplier-prices`
4758
4795
  },
4759
4796
  {
@@ -4762,7 +4799,7 @@ var drawerAppList = [
4762
4799
  alwaysDisplay: false,
4763
4800
  featureNames: [featureName_default.BULK_UPDATE],
4764
4801
  pinned: "bulk-update",
4765
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconImport, {}),
4802
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconImport, {}),
4766
4803
  url: "/react/bulk_update"
4767
4804
  }
4768
4805
  ]
@@ -4776,7 +4813,7 @@ var drawerAppList = [
4776
4813
  alwaysDisplay: false,
4777
4814
  featureNames: [featureName_default.GOODS_IN],
4778
4815
  pinned: "goods_in",
4779
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconGoodsin, {}),
4816
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconGoodsin, {}),
4780
4817
  url: "/react/goodsin-list"
4781
4818
  },
4782
4819
  {
@@ -4785,7 +4822,7 @@ var drawerAppList = [
4785
4822
  alwaysDisplay: false,
4786
4823
  featureNames: [featureName_default.RETURNS],
4787
4824
  pinned: "goods_in",
4788
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconGoodsin, {}),
4825
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconGoodsin, {}),
4789
4826
  url: "/react/returns"
4790
4827
  },
4791
4828
  {
@@ -4794,11 +4831,11 @@ var drawerAppList = [
4794
4831
  alwaysDisplay: false,
4795
4832
  featureNames: [featureName_default.KANBAN],
4796
4833
  pinned: "kanbancards",
4797
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconVkc, {}),
4834
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconVkc, {}),
4798
4835
  url: `/kanban`
4799
4836
  },
4800
4837
  {
4801
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconLocation, {}),
4838
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconLocation, {}),
4802
4839
  name: "Stock and Locations",
4803
4840
  pinned: "locations",
4804
4841
  routeName: "locations",
@@ -4820,7 +4857,7 @@ var drawerAppList = [
4820
4857
  alwaysDisplay: false,
4821
4858
  featureNames: [featureName_default.PICKING_STATIONS],
4822
4859
  pinned: "picking_stations",
4823
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconScales, {}),
4860
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconScales, {}),
4824
4861
  url: `/pickingstation`
4825
4862
  },
4826
4863
  {
@@ -4829,7 +4866,7 @@ var drawerAppList = [
4829
4866
  alwaysDisplay: false,
4830
4867
  featureNames: [featureName_default.QUALITY_CONTROL],
4831
4868
  pinned: "quality_control",
4832
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconQc, {}),
4869
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconQc, {}),
4833
4870
  url: `/quality-control`
4834
4871
  },
4835
4872
  {
@@ -4838,7 +4875,7 @@ var drawerAppList = [
4838
4875
  alwaysDisplay: false,
4839
4876
  featureNames: [featureName_default.RETAIL],
4840
4877
  pinned: "retail",
4841
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconRetail, {}),
4878
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconRetail, {}),
4842
4879
  url: `/retail/product-availability`
4843
4880
  },
4844
4881
  {
@@ -4847,7 +4884,7 @@ var drawerAppList = [
4847
4884
  alwaysDisplay: false,
4848
4885
  featureNames: [featureName_default.SERVICE_DELIVERY],
4849
4886
  pinned: "runs",
4850
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconRuns, {}),
4887
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconRuns, {}),
4851
4888
  url: `/runs`
4852
4889
  },
4853
4890
  {
@@ -4856,7 +4893,7 @@ var drawerAppList = [
4856
4893
  alwaysDisplay: false,
4857
4894
  featureNames: [featureName_default.OPS_METRICS],
4858
4895
  pinned: "ops-metrics",
4859
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconOpsMetrics, {}),
4896
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconOpsMetrics, {}),
4860
4897
  url: "/react/ops-metrics"
4861
4898
  }
4862
4899
  ]
@@ -4870,7 +4907,7 @@ var drawerAppList = [
4870
4907
  alwaysDisplay: false,
4871
4908
  featureNames: [featureName_default.ACCOUNTS],
4872
4909
  pinned: "accounts",
4873
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconAccounts, {}),
4910
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconAccounts, {}),
4874
4911
  url: `/accounts`
4875
4912
  },
4876
4913
  {
@@ -4879,7 +4916,7 @@ var drawerAppList = [
4879
4916
  alwaysDisplay: false,
4880
4917
  featureNames: [featureName_default.REPORTS],
4881
4918
  pinned: "reports",
4882
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconReports, {}),
4919
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconReports, {}),
4883
4920
  url: `/reports`
4884
4921
  }
4885
4922
  ]
@@ -4893,7 +4930,7 @@ var drawerAppList = [
4893
4930
  alwaysDisplay: false,
4894
4931
  featureNames: [featureName_default.ADMIN],
4895
4932
  pinned: "admin",
4896
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconSetting, {}),
4933
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconSetting, {}),
4897
4934
  url: `/admin`
4898
4935
  },
4899
4936
  {
@@ -4902,7 +4939,7 @@ var drawerAppList = [
4902
4939
  alwaysDisplay: false,
4903
4940
  featureNames: [featureName_default.USER_MANAGEMENT],
4904
4941
  pinned: "users",
4905
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconUserManagement, {}),
4942
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconUserManagement, {}),
4906
4943
  url: "/react/user-management"
4907
4944
  },
4908
4945
  {
@@ -4911,7 +4948,7 @@ var drawerAppList = [
4911
4948
  alwaysDisplay: true,
4912
4949
  featureNames: [],
4913
4950
  pinned: null,
4914
- icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconLogin, {}),
4951
+ icon: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(icons_default.SvgIconLogin, {}),
4915
4952
  url: "/react/logout"
4916
4953
  }
4917
4954
  ]
@@ -4972,7 +5009,7 @@ var useGetFilteredDrawerAppList = (featureSettings) => {
4972
5009
  var useGetFilteredDrawerAppList_default = useGetFilteredDrawerAppList;
4973
5010
 
4974
5011
  // src/components/LeftDrawer/LeftDrawer.tsx
4975
- var import_jsx_runtime85 = require("react/jsx-runtime");
5012
+ var import_jsx_runtime86 = require("react/jsx-runtime");
4976
5013
  var useStyles27 = (0, import_mui29.makeStyles)()((theme) => ({
4977
5014
  subheader: {
4978
5015
  textTransform: "uppercase",
@@ -5046,7 +5083,7 @@ var LeftDrawer = ({
5046
5083
  setOpenCollapse(tempOpenCollapse);
5047
5084
  };
5048
5085
  const { classes } = useStyles27();
5049
- return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
5086
+ return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
5050
5087
  import_material35.SwipeableDrawer,
5051
5088
  {
5052
5089
  className: classes.drawer,
@@ -5055,8 +5092,8 @@ var LeftDrawer = ({
5055
5092
  onOpen: handleOpen,
5056
5093
  open,
5057
5094
  children: [
5058
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material35.AppBar, { position: "static", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_material35.Toolbar, { className: classes.topBar, children: [
5059
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5095
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material35.AppBar, { position: "static", children: /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(import_material35.Toolbar, { className: classes.topBar, children: [
5096
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
5060
5097
  UserBust_default,
5061
5098
  {
5062
5099
  user,
@@ -5067,7 +5104,7 @@ var LeftDrawer = ({
5067
5104
  }
5068
5105
  }
5069
5106
  ),
5070
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material35.Box, { children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5107
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material35.Box, { children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
5071
5108
  RoundButton_default,
5072
5109
  {
5073
5110
  icon: "edit",
@@ -5078,10 +5115,10 @@ var LeftDrawer = ({
5078
5115
  }
5079
5116
  ) })
5080
5117
  ] }) }),
5081
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material35.List, { children: filteredDrawerAppList.map((group) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_react19.Fragment, { children: [
5082
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material35.ListSubheader, { disableSticky: true, className: classes.subheader, children: group.groupName }),
5083
- group.apps.map((app) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_react19.Fragment, { children: [
5084
- /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
5118
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material35.List, { children: filteredDrawerAppList.map((group) => /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(import_react19.Fragment, { children: [
5119
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material35.ListSubheader, { disableSticky: true, className: classes.subheader, children: group.groupName }),
5120
+ group.apps.map((app) => /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(import_react19.Fragment, { children: [
5121
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
5085
5122
  import_material35.ListItem,
5086
5123
  {
5087
5124
  title: app.url,
@@ -5092,8 +5129,8 @@ var LeftDrawer = ({
5092
5129
  return window.location.assign(app.url);
5093
5130
  },
5094
5131
  children: [
5095
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material35.ListItemIcon, { children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_Icon.default, { className: classes.iconMenu, children: app.icon }) }),
5096
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5132
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material35.ListItemIcon, { children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_Icon.default, { className: classes.iconMenu, children: app.icon }) }),
5133
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
5097
5134
  import_material35.ListItemText,
5098
5135
  {
5099
5136
  className: classes.appName,
@@ -5103,13 +5140,13 @@ var LeftDrawer = ({
5103
5140
  }
5104
5141
  }
5105
5142
  ),
5106
- app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5143
+ app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
5107
5144
  import_icons_material9.ExpandLess,
5108
5145
  {
5109
5146
  "data-testid": "svg-close-collapse",
5110
5147
  onClick: (e) => handleCollapse(e, app.routeName)
5111
5148
  }
5112
- ) : /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5149
+ ) : /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
5113
5150
  import_icons_material9.ExpandMore,
5114
5151
  {
5115
5152
  "data-testid": "svg-open-collapse",
@@ -5120,7 +5157,7 @@ var LeftDrawer = ({
5120
5157
  },
5121
5158
  app.name
5122
5159
  ),
5123
- app.children?.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material35.Collapse, { in: openCollapse[app.routeName], children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material35.List, { children: app.children.map((child) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
5160
+ app.children?.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material35.Collapse, { in: openCollapse[app.routeName], children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material35.List, { children: app.children.map((child) => /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
5124
5161
  import_material35.ListItemButton,
5125
5162
  {
5126
5163
  className: classes.nested,
@@ -5128,8 +5165,8 @@ var LeftDrawer = ({
5128
5165
  onClick: () => window.location.assign(child.url),
5129
5166
  title: child.url,
5130
5167
  children: [
5131
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material35.ListItemIcon, { children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_icons_material9.FiberManualRecord, { style: { height: 12 } }) }),
5132
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5168
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material35.ListItemIcon, { children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_icons_material9.FiberManualRecord, { style: { height: 12 } }) }),
5169
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
5133
5170
  import_material35.ListItemText,
5134
5171
  {
5135
5172
  primary: child.name,
@@ -5153,20 +5190,20 @@ var LeftDrawer_default = (0, import_react19.memo)(LeftDrawer);
5153
5190
  // src/components/List/List.tsx
5154
5191
  var import_react_window = require("react-window");
5155
5192
  var import_material36 = require("@mui/material");
5156
- var import_jsx_runtime86 = (
5193
+ var import_jsx_runtime87 = (
5157
5194
  // eslint-disable-next-line react/no-array-index-key
5158
5195
  require("react/jsx-runtime")
5159
5196
  );
5160
5197
  var ListHeader = (props) => {
5161
5198
  const headers = props.headers || [];
5162
- return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material36.ListItem, { children: headers.map((header, i) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material36.ListItemText, { primary: header.text }, i)) });
5199
+ return /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(import_material36.ListItem, { children: headers.map((header, i) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(import_material36.ListItemText, { primary: header.text }, i)) });
5163
5200
  };
5164
5201
  function VirtualizedList(props) {
5165
5202
  const { innerWidth, innerHeight } = window;
5166
5203
  const { headers, items, renderItem } = props;
5167
- return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(import_jsx_runtime86.Fragment, { children: [
5168
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(ListHeader, { headers }),
5169
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
5204
+ return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(import_jsx_runtime87.Fragment, { children: [
5205
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(ListHeader, { headers }),
5206
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
5170
5207
  import_react_window.FixedSizeList,
5171
5208
  {
5172
5209
  height: innerHeight - 150,
@@ -5183,7 +5220,7 @@ function VirtualizedList(props) {
5183
5220
  // src/components/Loading/Loading.tsx
5184
5221
  var import_material37 = require("@mui/material");
5185
5222
  var import_mui30 = require("tss-react/mui");
5186
- var import_jsx_runtime87 = require("react/jsx-runtime");
5223
+ var import_jsx_runtime88 = require("react/jsx-runtime");
5187
5224
  var useStyles28 = (0, import_mui30.makeStyles)()(() => ({
5188
5225
  wrapper: {
5189
5226
  /**
@@ -5195,14 +5232,14 @@ var useStyles28 = (0, import_mui30.makeStyles)()(() => ({
5195
5232
  }));
5196
5233
  var Loading = ({ isLoading }) => {
5197
5234
  const { classes } = useStyles28();
5198
- return /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
5235
+ return /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
5199
5236
  import_material37.Backdrop,
5200
5237
  {
5201
5238
  "aria-hidden": !isLoading,
5202
5239
  className: classes.wrapper,
5203
5240
  open: isLoading,
5204
5241
  "data-testid": "backdrop-loading",
5205
- children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(import_material37.CircularProgress, { color: "primary" })
5242
+ children: /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(import_material37.CircularProgress, { color: "primary" })
5206
5243
  }
5207
5244
  );
5208
5245
  };
@@ -5214,7 +5251,7 @@ var import_material38 = require("@mui/material");
5214
5251
  var import_colors32 = require("@mui/material/colors");
5215
5252
  var import_classnames2 = __toESM(require("classnames"), 1);
5216
5253
  var import_mui31 = require("tss-react/mui");
5217
- var import_jsx_runtime88 = require("react/jsx-runtime");
5254
+ var import_jsx_runtime89 = require("react/jsx-runtime");
5218
5255
  var useStyles29 = (0, import_mui31.makeStyles)()(() => ({
5219
5256
  container: {
5220
5257
  display: "flex",
@@ -5260,8 +5297,8 @@ var LocationsSectionInfo = ({
5260
5297
  }
5261
5298
  return "STOCK";
5262
5299
  };
5263
- return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(import_material38.Box, { className: classes.container, children: [
5264
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
5300
+ return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(import_material38.Box, { className: classes.container, children: [
5301
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
5265
5302
  import_material38.Chip,
5266
5303
  {
5267
5304
  className: (0, import_classnames2.default)(classes.defaultChip, {
@@ -5272,10 +5309,10 @@ var LocationsSectionInfo = ({
5272
5309
  label: getLocationLabel()
5273
5310
  }
5274
5311
  ),
5275
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(import_material38.Typography, { className: classes.locationText, color: "primary", children: principalLocation }),
5276
- secondaryLocation?.map((loc) => /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(import_react20.Fragment, { children: [
5277
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(import_material38.Typography, { className: classes.smallTitle, children: "/" }),
5278
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(import_material38.Typography, { className: classes.locationText, children: loc })
5312
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(import_material38.Typography, { className: classes.locationText, color: "primary", children: principalLocation }),
5313
+ secondaryLocation?.map((loc) => /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(import_react20.Fragment, { children: [
5314
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(import_material38.Typography, { className: classes.smallTitle, children: "/" }),
5315
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(import_material38.Typography, { className: classes.locationText, children: loc })
5279
5316
  ] }, loc))
5280
5317
  ] });
5281
5318
  };
@@ -5285,7 +5322,7 @@ var LocationsSectionInfo_default = LocationsSectionInfo;
5285
5322
  var import_react21 = require("react");
5286
5323
  var import_material39 = require("@mui/material");
5287
5324
  var import_mui32 = require("tss-react/mui");
5288
- var import_jsx_runtime89 = require("react/jsx-runtime");
5325
+ var import_jsx_runtime90 = require("react/jsx-runtime");
5289
5326
  var useStyles30 = (0, import_mui32.makeStyles)()((theme) => ({
5290
5327
  wrapper: {
5291
5328
  padding: theme.spacing(3),
@@ -5328,13 +5365,13 @@ var Notes2 = ({
5328
5365
  }
5329
5366
  };
5330
5367
  const { classes } = useStyles30();
5331
- return /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("div", { className: classes.wrapper, children: /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(import_material39.FormControl, { fullWidth: true, children: [
5332
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(import_material39.InputLabel, { htmlFor: "notes", children: "Notes" }),
5333
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
5368
+ return /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("div", { className: classes.wrapper, children: /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(import_material39.FormControl, { fullWidth: true, children: [
5369
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(import_material39.InputLabel, { htmlFor: "notes", children: "Notes" }),
5370
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5334
5371
  import_material39.Input,
5335
5372
  {
5336
5373
  disabled: isDisabled || isLoading,
5337
- endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(import_material39.InputAdornment, { position: "end", children: /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
5374
+ endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(import_material39.InputAdornment, { position: "end", children: /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5338
5375
  RoundButton_default,
5339
5376
  {
5340
5377
  disabled: isLoading,
@@ -5360,8 +5397,8 @@ var Notes2 = ({
5360
5397
  var Notes_default = Notes2;
5361
5398
 
5362
5399
  // src/components/Numpad/Numpad.tsx
5363
- var import_jsx_runtime90 = require("react/jsx-runtime");
5364
- var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
5400
+ var import_jsx_runtime91 = require("react/jsx-runtime");
5401
+ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
5365
5402
  "div",
5366
5403
  {
5367
5404
  style: {
@@ -5373,9 +5410,9 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5373
5410
  padding: 8
5374
5411
  },
5375
5412
  children: [
5376
- /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("div", { children: [
5377
- /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("div", { children: [
5378
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5413
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { children: [
5414
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { children: [
5415
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5379
5416
  RoundButton_default,
5380
5417
  {
5381
5418
  onClick: () => handleClick("1"),
@@ -5384,7 +5421,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5384
5421
  children: "1"
5385
5422
  }
5386
5423
  ),
5387
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5424
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5388
5425
  RoundButton_default,
5389
5426
  {
5390
5427
  onClick: () => handleClick("2"),
@@ -5393,7 +5430,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5393
5430
  children: "2"
5394
5431
  }
5395
5432
  ),
5396
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5433
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5397
5434
  RoundButton_default,
5398
5435
  {
5399
5436
  onClick: () => handleClick("3"),
@@ -5403,8 +5440,8 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5403
5440
  }
5404
5441
  )
5405
5442
  ] }),
5406
- /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("div", { children: [
5407
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5443
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { children: [
5444
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5408
5445
  RoundButton_default,
5409
5446
  {
5410
5447
  onClick: () => handleClick("4"),
@@ -5413,7 +5450,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5413
5450
  children: "4"
5414
5451
  }
5415
5452
  ),
5416
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5453
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5417
5454
  RoundButton_default,
5418
5455
  {
5419
5456
  onClick: () => handleClick("5"),
@@ -5422,7 +5459,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5422
5459
  children: "5"
5423
5460
  }
5424
5461
  ),
5425
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5462
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5426
5463
  RoundButton_default,
5427
5464
  {
5428
5465
  onClick: () => handleClick("6"),
@@ -5432,8 +5469,8 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5432
5469
  }
5433
5470
  )
5434
5471
  ] }),
5435
- /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("div", { children: [
5436
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5472
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { children: [
5473
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5437
5474
  RoundButton_default,
5438
5475
  {
5439
5476
  onClick: () => handleClick("7"),
@@ -5442,7 +5479,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5442
5479
  children: "7"
5443
5480
  }
5444
5481
  ),
5445
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5482
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5446
5483
  RoundButton_default,
5447
5484
  {
5448
5485
  onClick: () => handleClick("8"),
@@ -5451,7 +5488,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5451
5488
  children: "8"
5452
5489
  }
5453
5490
  ),
5454
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5491
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5455
5492
  RoundButton_default,
5456
5493
  {
5457
5494
  onClick: () => handleClick("9"),
@@ -5461,8 +5498,8 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5461
5498
  }
5462
5499
  )
5463
5500
  ] }),
5464
- /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("div", { children: [
5465
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5501
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { children: [
5502
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5466
5503
  RoundButton_default,
5467
5504
  {
5468
5505
  onClick: () => handleClick("0"),
@@ -5471,7 +5508,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5471
5508
  children: "0"
5472
5509
  }
5473
5510
  ),
5474
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5511
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5475
5512
  RoundButton_default,
5476
5513
  {
5477
5514
  onClick: () => handleClick("."),
@@ -5482,7 +5519,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5482
5519
  )
5483
5520
  ] })
5484
5521
  ] }),
5485
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5522
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5486
5523
  "div",
5487
5524
  {
5488
5525
  style: {
@@ -5491,7 +5528,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
5491
5528
  justifyContent: "space-between",
5492
5529
  borderLeft: `1px solid ${colors.neutral250}`
5493
5530
  },
5494
- children: /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5531
+ children: /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5495
5532
  RoundButton_default,
5496
5533
  {
5497
5534
  icon: "backspaceOutlined",
@@ -5511,7 +5548,7 @@ var Numpad_default = Numpad;
5511
5548
  var import_react22 = require("react");
5512
5549
  var import_material40 = require("@mui/material");
5513
5550
  var import_mui33 = require("tss-react/mui");
5514
- var import_jsx_runtime91 = require("react/jsx-runtime");
5551
+ var import_jsx_runtime92 = require("react/jsx-runtime");
5515
5552
  var useStyles31 = (0, import_mui33.makeStyles)()(() => ({
5516
5553
  c_numpadinput__textfield: {
5517
5554
  "& .MuiInputLabel-outlined.MuiInputLabel-shrink": {
@@ -5548,13 +5585,13 @@ var NumpadInput = (props) => {
5548
5585
  function handleSubmit() {
5549
5586
  handleNextClick?.(state);
5550
5587
  }
5551
- const DefaultInput = /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { children: [
5552
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(import_material40.Typography, { variant: "h5", style: { padding: "16px 0 3rem" }, children: inputLabel }),
5553
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("form", { noValidate: true, autoComplete: "off", children: /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5588
+ const DefaultInput = /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { children: [
5589
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_material40.Typography, { variant: "h5", style: { padding: "16px 0 3rem" }, children: inputLabel }),
5590
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("form", { noValidate: true, autoComplete: "off", children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5554
5591
  import_material40.TextField,
5555
5592
  {
5556
5593
  id: "outlined-basic",
5557
- label: /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(import_material40.Typography, { style: { fontSize: "1.5rem" }, children: "Insert" }),
5594
+ label: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_material40.Typography, { style: { fontSize: "1.5rem" }, children: "Insert" }),
5558
5595
  value: state,
5559
5596
  variant: "outlined",
5560
5597
  autoFocus: true,
@@ -5569,19 +5606,19 @@ var NumpadInput = (props) => {
5569
5606
  ) }),
5570
5607
  children
5571
5608
  ] });
5572
- return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { children: [
5573
- /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { className: classes.c_numpadinput__body, children: [
5609
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { children: [
5610
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: classes.c_numpadinput__body, children: [
5574
5611
  children || DefaultInput,
5575
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(Numpad_default, { handleClick: handleNumpadClick, handleUndo })
5612
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(Numpad_default, { handleClick: handleNumpadClick, handleUndo })
5576
5613
  ] }),
5577
- state ? /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
5614
+ state ? /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5578
5615
  FilledButtonLg_default,
5579
5616
  {
5580
5617
  color: "primary",
5581
5618
  copy: "next",
5582
5619
  handleClick: handleSubmit
5583
5620
  }
5584
- ) : /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(FilledButtonLg_default, { copy: "next", disabled: true })
5621
+ ) : /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(FilledButtonLg_default, { copy: "next", disabled: true })
5585
5622
  ] });
5586
5623
  };
5587
5624
  var NumpadInput_default = (0, import_react22.memo)(NumpadInput);
@@ -5589,7 +5626,7 @@ var NumpadInput_default = (0, import_react22.memo)(NumpadInput);
5589
5626
  // src/components/NumpadPlus/NumpadPlus.tsx
5590
5627
  var import_material41 = require("@mui/material");
5591
5628
  var import_mui34 = require("tss-react/mui");
5592
- var import_jsx_runtime92 = require("react/jsx-runtime");
5629
+ var import_jsx_runtime93 = require("react/jsx-runtime");
5593
5630
  var useStyles32 = (0, import_mui34.makeStyles)()(() => ({
5594
5631
  numpadContainer: {
5595
5632
  display: "flex",
@@ -5621,10 +5658,10 @@ var useStyles32 = (0, import_mui34.makeStyles)()(() => ({
5621
5658
  }));
5622
5659
  var NumpadPlus = ({ handleClick, handleUndo }) => {
5623
5660
  const { classes: styles } = useStyles32();
5624
- return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material41.Box, { className: styles.numpadContainer, children: [
5625
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material41.Box, { className: styles.numpadNumbersContainer, children: [
5626
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material41.Box, { className: styles.numpadRow, children: [
5627
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5661
+ return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_material41.Box, { className: styles.numpadContainer, children: [
5662
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_material41.Box, { className: styles.numpadNumbersContainer, children: [
5663
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_material41.Box, { className: styles.numpadRow, children: [
5664
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5628
5665
  RoundButton_default,
5629
5666
  {
5630
5667
  onClick: () => handleClick("1"),
@@ -5633,7 +5670,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5633
5670
  children: "1"
5634
5671
  }
5635
5672
  ),
5636
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5673
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5637
5674
  RoundButton_default,
5638
5675
  {
5639
5676
  onClick: () => handleClick("2"),
@@ -5642,7 +5679,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5642
5679
  children: "2"
5643
5680
  }
5644
5681
  ),
5645
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5682
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5646
5683
  RoundButton_default,
5647
5684
  {
5648
5685
  onClick: () => handleClick("3"),
@@ -5652,8 +5689,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5652
5689
  }
5653
5690
  )
5654
5691
  ] }),
5655
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material41.Box, { className: styles.numpadRow, children: [
5656
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5692
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_material41.Box, { className: styles.numpadRow, children: [
5693
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5657
5694
  RoundButton_default,
5658
5695
  {
5659
5696
  onClick: () => handleClick("4"),
@@ -5662,7 +5699,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5662
5699
  children: "4"
5663
5700
  }
5664
5701
  ),
5665
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5702
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5666
5703
  RoundButton_default,
5667
5704
  {
5668
5705
  onClick: () => handleClick("5"),
@@ -5671,7 +5708,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5671
5708
  children: "5"
5672
5709
  }
5673
5710
  ),
5674
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5711
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5675
5712
  RoundButton_default,
5676
5713
  {
5677
5714
  onClick: () => handleClick("6"),
@@ -5681,8 +5718,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5681
5718
  }
5682
5719
  )
5683
5720
  ] }),
5684
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material41.Box, { className: styles.numpadRow, children: [
5685
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5721
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_material41.Box, { className: styles.numpadRow, children: [
5722
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5686
5723
  RoundButton_default,
5687
5724
  {
5688
5725
  onClick: () => handleClick("7"),
@@ -5691,7 +5728,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5691
5728
  children: "7"
5692
5729
  }
5693
5730
  ),
5694
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5731
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5695
5732
  RoundButton_default,
5696
5733
  {
5697
5734
  onClick: () => handleClick("8"),
@@ -5700,7 +5737,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5700
5737
  children: "8"
5701
5738
  }
5702
5739
  ),
5703
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5740
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5704
5741
  RoundButton_default,
5705
5742
  {
5706
5743
  onClick: () => handleClick("9"),
@@ -5710,8 +5747,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5710
5747
  }
5711
5748
  )
5712
5749
  ] }),
5713
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material41.Box, { className: styles.numpadRow, children: [
5714
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5750
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_material41.Box, { className: styles.numpadRow, children: [
5751
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5715
5752
  RoundButton_default,
5716
5753
  {
5717
5754
  onClick: () => handleClick("0"),
@@ -5720,7 +5757,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5720
5757
  children: "0"
5721
5758
  }
5722
5759
  ),
5723
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5760
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5724
5761
  RoundButton_default,
5725
5762
  {
5726
5763
  onClick: () => handleClick("."),
@@ -5729,7 +5766,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5729
5766
  children: "."
5730
5767
  }
5731
5768
  ),
5732
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5769
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5733
5770
  RoundButton_default,
5734
5771
  {
5735
5772
  onClick: () => handleClick("-"),
@@ -5740,7 +5777,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
5740
5777
  )
5741
5778
  ] })
5742
5779
  ] }),
5743
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_material41.Box, { className: styles.numpadBackspace, children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
5780
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(import_material41.Box, { className: styles.numpadBackspace, children: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5744
5781
  RoundButton_default,
5745
5782
  {
5746
5783
  icon: "backspaceOutlined",
@@ -5756,7 +5793,7 @@ var NumpadPlus_default = NumpadPlus;
5756
5793
  // src/components/Pagination/Pagination.tsx
5757
5794
  var import_material42 = require("@mui/material");
5758
5795
  var import_mui35 = require("tss-react/mui");
5759
- var import_jsx_runtime93 = require("react/jsx-runtime");
5796
+ var import_jsx_runtime94 = require("react/jsx-runtime");
5760
5797
  var paginationHeight = "56px";
5761
5798
  var useStyles33 = (0, import_mui35.makeStyles)()((theme) => ({
5762
5799
  root: {
@@ -5799,7 +5836,7 @@ var PaginationForTable = ({
5799
5836
  updateFilters({ ...appliedFilters, page: value });
5800
5837
  };
5801
5838
  const isFixed = position === "fixed";
5802
- return /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(import_material42.Paper, { children: /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
5839
+ return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(import_material42.Paper, { children: /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
5803
5840
  "div",
5804
5841
  {
5805
5842
  style,
@@ -5807,11 +5844,11 @@ var PaginationForTable = ({
5807
5844
  [classes.fixed]: isFixed
5808
5845
  }),
5809
5846
  children: [
5810
- /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_material42.Typography, { variant: "body1", children: [
5847
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(import_material42.Typography, { variant: "body1", children: [
5811
5848
  "Page: ",
5812
5849
  page
5813
5850
  ] }),
5814
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
5851
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
5815
5852
  import_material42.Pagination,
5816
5853
  {
5817
5854
  count: pagination.num_pages,
@@ -5828,8 +5865,8 @@ var Pagination_default = PaginationForTable;
5828
5865
  // src/components/PhoneInput/PhoneInput.tsx
5829
5866
  var import_react_phone_input_material_ui = __toESM(require("react-phone-input-material-ui"), 1);
5830
5867
  var import_material43 = require("@mui/material");
5831
- var import_jsx_runtime94 = require("react/jsx-runtime");
5832
- var TextInput = (props) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(import_material43.TextField, { ...props, variant: "standard" });
5868
+ var import_jsx_runtime95 = require("react/jsx-runtime");
5869
+ var TextInput = (props) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(import_material43.TextField, { ...props, variant: "standard" });
5833
5870
  var PhoneInput = ({
5834
5871
  value,
5835
5872
  onChange,
@@ -5837,7 +5874,7 @@ var PhoneInput = ({
5837
5874
  label = "Phone",
5838
5875
  className,
5839
5876
  error = false
5840
- }) => /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
5877
+ }) => /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
5841
5878
  import_material43.Box,
5842
5879
  {
5843
5880
  sx: {
@@ -5846,7 +5883,7 @@ var PhoneInput = ({
5846
5883
  },
5847
5884
  className,
5848
5885
  children: [
5849
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
5886
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
5850
5887
  import_react_phone_input_material_ui.default,
5851
5888
  {
5852
5889
  label,
@@ -5861,7 +5898,7 @@ var PhoneInput = ({
5861
5898
  }
5862
5899
  }
5863
5900
  ),
5864
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
5901
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
5865
5902
  import_material43.Typography,
5866
5903
  {
5867
5904
  variant: "caption",
@@ -5885,7 +5922,7 @@ var import_react23 = require("react");
5885
5922
  var import_react_hook_form7 = require("react-hook-form");
5886
5923
  var import_material44 = require("@mui/material");
5887
5924
  var import_mui36 = require("tss-react/mui");
5888
- var import_jsx_runtime95 = require("react/jsx-runtime");
5925
+ var import_jsx_runtime96 = require("react/jsx-runtime");
5889
5926
  var useStyles34 = (0, import_mui36.makeStyles)()((theme) => ({
5890
5927
  container: {
5891
5928
  position: "relative",
@@ -6028,7 +6065,7 @@ var PlusMinusInput = ({
6028
6065
  updateInputValue(value);
6029
6066
  };
6030
6067
  const { classes, cx } = useStyles34();
6031
- return /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("div", { className: classes.container, children: /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
6068
+ return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("div", { className: classes.container, children: /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
6032
6069
  import_material44.FormGroup,
6033
6070
  {
6034
6071
  className: cx(classes.wrapper, {
@@ -6036,7 +6073,7 @@ var PlusMinusInput = ({
6036
6073
  [classes.rightButtons]: buttonsPosition === "right"
6037
6074
  }),
6038
6075
  children: [
6039
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6076
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6040
6077
  RoundButton_default,
6041
6078
  {
6042
6079
  className: classes.minus,
@@ -6046,18 +6083,18 @@ var PlusMinusInput = ({
6046
6083
  size: "small"
6047
6084
  }
6048
6085
  ),
6049
- /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { children: [
6050
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6086
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { children: [
6087
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6051
6088
  import_react_hook_form7.Controller,
6052
6089
  {
6053
6090
  control,
6054
6091
  name: "inputValue",
6055
- render: ({ field }) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6092
+ render: ({ field }) => /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6056
6093
  import_material44.FormControlLabel,
6057
6094
  {
6058
6095
  ...field,
6059
6096
  className: classes.formControlLabel,
6060
- control: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6097
+ control: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6061
6098
  import_material44.TextField,
6062
6099
  {
6063
6100
  className: classes.input,
@@ -6074,7 +6111,7 @@ var PlusMinusInput = ({
6074
6111
  )
6075
6112
  }
6076
6113
  ),
6077
- errors.inputValue && /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6114
+ errors.inputValue && /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6078
6115
  import_material44.Typography,
6079
6116
  {
6080
6117
  className: classes.errorText,
@@ -6085,7 +6122,7 @@ var PlusMinusInput = ({
6085
6122
  }
6086
6123
  )
6087
6124
  ] }),
6088
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6125
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6089
6126
  RoundButton_default,
6090
6127
  {
6091
6128
  className: classes.plus,
@@ -6109,21 +6146,21 @@ var import_mui38 = require("tss-react/mui");
6109
6146
  // src/components/ProductImage/ProductImage.tsx
6110
6147
  var import_material45 = require("@mui/material");
6111
6148
  var import_mui37 = require("tss-react/mui");
6112
- var import_jsx_runtime96 = require("react/jsx-runtime");
6149
+ var import_jsx_runtime97 = require("react/jsx-runtime");
6113
6150
  var PImage = ({
6114
6151
  classes,
6115
6152
  image,
6116
6153
  size = "c_productbust__image_xs",
6117
6154
  status
6118
- }) => /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: classes.c_productbust__image, children: [
6119
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6155
+ }) => /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: classes.c_productbust__image, children: [
6156
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6120
6157
  import_material45.CardMedia,
6121
6158
  {
6122
6159
  className: classes[size],
6123
6160
  image: image || "@/resources/img/peas.jpg"
6124
6161
  }
6125
6162
  ),
6126
- status && status !== "ACTIVE" && /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("div", { className: classes.c_productbust__label_status, children: status })
6163
+ status && status !== "ACTIVE" && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("div", { className: classes.c_productbust__label_status, children: status })
6127
6164
  ] });
6128
6165
  var ProductImage = (0, import_mui37.withStyles)(PImage, (theme) => ({
6129
6166
  c_productbust__label_status: {
@@ -6205,7 +6242,7 @@ var ProductImage = (0, import_mui37.withStyles)(PImage, (theme) => ({
6205
6242
  var ProductImage_default = ProductImage;
6206
6243
 
6207
6244
  // src/components/ProductBust/ProductBust.tsx
6208
- var import_jsx_runtime97 = require("react/jsx-runtime");
6245
+ var import_jsx_runtime98 = require("react/jsx-runtime");
6209
6246
  var PBust = ({
6210
6247
  classes,
6211
6248
  size,
@@ -6248,7 +6285,7 @@ var PBust = ({
6248
6285
  break;
6249
6286
  }
6250
6287
  const [historyVisible, setHistoryVisible] = (0, import_react24.useState)(false);
6251
- const historyDataIcon = () => /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6288
+ const historyDataIcon = () => /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
6252
6289
  RoundButton_default,
6253
6290
  {
6254
6291
  icon: "history",
@@ -6256,8 +6293,8 @@ var PBust = ({
6256
6293
  size: "small"
6257
6294
  }
6258
6295
  );
6259
- return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: classes.c_productbust, children: [
6260
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6296
+ return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: classes.c_productbust, children: [
6297
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
6261
6298
  ProductImage_default,
6262
6299
  {
6263
6300
  image: product?.image,
@@ -6265,10 +6302,10 @@ var PBust = ({
6265
6302
  size: imageSize
6266
6303
  }
6267
6304
  ),
6268
- /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: classes.c_productbust__container, children: [
6269
- /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: classes.c_productbust__heading, children: [
6270
- /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { children: [
6271
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6305
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: classes.c_productbust__container, children: [
6306
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: classes.c_productbust__heading, children: [
6307
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { children: [
6308
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
6272
6309
  import_material46.Typography,
6273
6310
  {
6274
6311
  component: "span",
@@ -6277,10 +6314,10 @@ var PBust = ({
6277
6314
  children: !!locationData && locationData
6278
6315
  }
6279
6316
  ),
6280
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_material46.Typography, { component: "span", className: classes[titleSize], children: product?.name }),
6281
- !product && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_material46.Typography, { component: "span", className: classes[titleSize], children: "Empty Position" }),
6282
- primaryData || /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)(import_jsx_runtime97.Fragment, { children: [
6283
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6317
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(import_material46.Typography, { component: "span", className: classes[titleSize], children: product?.name }),
6318
+ !product && /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(import_material46.Typography, { component: "span", className: classes[titleSize], children: "Empty Position" }),
6319
+ primaryData || /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)(import_jsx_runtime98.Fragment, { children: [
6320
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
6284
6321
  import_material46.Typography,
6285
6322
  {
6286
6323
  style: { color: "#555" },
@@ -6288,7 +6325,7 @@ var PBust = ({
6288
6325
  children: product?.category.name
6289
6326
  }
6290
6327
  ),
6291
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6328
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
6292
6329
  import_material46.Typography,
6293
6330
  {
6294
6331
  style: { color: "#A42966", textTransform: "uppercase" },
@@ -6298,14 +6335,14 @@ var PBust = ({
6298
6335
  )
6299
6336
  ] })
6300
6337
  ] }),
6301
- /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: classes.c_productbust__btns, children: [
6302
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("div", { children: buttonData }),
6303
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("div", { children: !!locationId && historyDataIcon() })
6338
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: classes.c_productbust__btns, children: [
6339
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("div", { children: buttonData }),
6340
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("div", { children: !!locationId && historyDataIcon() })
6304
6341
  ] })
6305
6342
  ] }),
6306
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("div", { children: !!secondaryData && secondaryData })
6343
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("div", { children: !!secondaryData && secondaryData })
6307
6344
  ] }),
6308
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6345
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
6309
6346
  LocationHistoryDialog,
6310
6347
  {
6311
6348
  handleVisible: setHistoryVisible,
@@ -6409,7 +6446,7 @@ var ProductBust_default = ProductBust;
6409
6446
  // src/components/RenderAvatar/RenderAvatar.tsx
6410
6447
  var import_material47 = require("@mui/material");
6411
6448
  var import_mui39 = require("tss-react/mui");
6412
- var import_jsx_runtime98 = require("react/jsx-runtime");
6449
+ var import_jsx_runtime99 = require("react/jsx-runtime");
6413
6450
  var RenderAvatar = ({ active }) => {
6414
6451
  const StyledBadge = (0, import_mui39.withStyles)(import_material47.Badge, () => ({
6415
6452
  root: {
@@ -6418,12 +6455,12 @@ var RenderAvatar = ({ active }) => {
6418
6455
  }
6419
6456
  }
6420
6457
  }));
6421
- return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)(
6458
+ return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)(
6422
6459
  import_material47.Box,
6423
6460
  {
6424
6461
  sx: { display: "flex", flexDirection: "column", alignItems: "center" },
6425
6462
  children: [
6426
- /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
6463
+ /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
6427
6464
  StyledBadge,
6428
6465
  {
6429
6466
  overlap: "circular",
@@ -6432,10 +6469,10 @@ var RenderAvatar = ({ active }) => {
6432
6469
  horizontal: "right"
6433
6470
  },
6434
6471
  variant: "dot",
6435
- children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(import_material47.Avatar, {})
6472
+ children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(import_material47.Avatar, {})
6436
6473
  }
6437
6474
  ),
6438
- /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(import_material47.Typography, { variant: "caption", children: active ? "Active" : "Disabled" })
6475
+ /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(import_material47.Typography, { variant: "caption", children: active ? "Active" : "Disabled" })
6439
6476
  ]
6440
6477
  }
6441
6478
  );
@@ -6453,7 +6490,7 @@ var import_react25 = require("react");
6453
6490
  var transformNameToID = (name) => name.replaceAll(" ", "-").toLocaleLowerCase();
6454
6491
 
6455
6492
  // src/components/RenderContentList/RenderContentList.tsx
6456
- var import_jsx_runtime99 = require("react/jsx-runtime");
6493
+ var import_jsx_runtime100 = require("react/jsx-runtime");
6457
6494
  var useStyles35 = (0, import_mui40.makeStyles)()(
6458
6495
  (_theme, _params, classes) => ({
6459
6496
  root: {
@@ -6507,15 +6544,15 @@ var RenderContentList = ({
6507
6544
  observer.current?.disconnect();
6508
6545
  };
6509
6546
  }, [items]);
6510
- return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
6547
+ return /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
6511
6548
  import_material48.List,
6512
6549
  {
6513
6550
  component: "nav",
6514
6551
  "aria-labelledby": "nested-list-subheader",
6515
- subheader: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(import_material48.ListSubheader, { component: "div", id: "nested-list-subheader", children: "Contents" }),
6552
+ subheader: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material48.ListSubheader, { component: "div", id: "nested-list-subheader", children: "Contents" }),
6516
6553
  children: items.map((item) => {
6517
6554
  const id = transformNameToID(item);
6518
- return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)(
6555
+ return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
6519
6556
  import_material48.ListItemButton,
6520
6557
  {
6521
6558
  component: "a",
@@ -6524,8 +6561,8 @@ var RenderContentList = ({
6524
6561
  selected: active === id,
6525
6562
  classes: { root: classes.root, selected: classes.selected },
6526
6563
  children: [
6527
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(import_material48.ListItemText, { primary: item }),
6528
- warningItems?.includes(item) && /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(import_material48.Tooltip, { title: warningMessage, children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(import_icons_material10.WarningAmber, { color: "warning" }) })
6564
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material48.ListItemText, { primary: item }),
6565
+ warningItems?.includes(item) && /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material48.Tooltip, { title: warningMessage, children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_icons_material10.WarningAmber, { color: "warning" }) })
6529
6566
  ]
6530
6567
  },
6531
6568
  id
@@ -6539,7 +6576,7 @@ var RenderContentList_default = RenderContentList;
6539
6576
  // src/components/RowProductCard/RowProductCard.tsx
6540
6577
  var import_material49 = require("@mui/material");
6541
6578
  var import_mui41 = require("tss-react/mui");
6542
- var import_jsx_runtime100 = require("react/jsx-runtime");
6579
+ var import_jsx_runtime101 = require("react/jsx-runtime");
6543
6580
  var useStyles36 = (0, import_mui41.makeStyles)()((theme) => ({
6544
6581
  wrapper: {
6545
6582
  display: "flex",
@@ -6578,8 +6615,8 @@ var RowProductCard = ({
6578
6615
  medium: "c_productbust__image_md",
6579
6616
  large: "c_productbust__image_lg"
6580
6617
  };
6581
- return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(import_material49.Paper, { className: classes.wrapper, children: [
6582
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
6618
+ return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(import_material49.Paper, { className: classes.wrapper, children: [
6619
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6583
6620
  ProductImage_default,
6584
6621
  {
6585
6622
  image: product.image,
@@ -6587,14 +6624,14 @@ var RowProductCard = ({
6587
6624
  size: imageSize[size]
6588
6625
  }
6589
6626
  ),
6590
- /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
6627
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(
6591
6628
  "div",
6592
6629
  {
6593
6630
  className: cx(classes.content, {
6594
6631
  [classes.onlyProductName]: !hasColumns && !location
6595
6632
  }),
6596
6633
  children: [
6597
- /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
6634
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(
6598
6635
  import_material49.Box,
6599
6636
  {
6600
6637
  className: classes.upperRow,
@@ -6604,26 +6641,26 @@ var RowProductCard = ({
6604
6641
  alignItems: "center"
6605
6642
  },
6606
6643
  children: [
6607
- /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { children: [
6608
- location ? /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material49.Typography, { className: classes.smallTitle, variant: "caption", children: `Location: ${location}` }) : null,
6609
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material49.Typography, { variant: "h6", children: product.name })
6644
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { children: [
6645
+ location ? /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(import_material49.Typography, { className: classes.smallTitle, variant: "caption", children: `Location: ${location}` }) : null,
6646
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(import_material49.Typography, { variant: "h6", children: product.name })
6610
6647
  ] }),
6611
6648
  children
6612
6649
  ]
6613
6650
  }
6614
6651
  ),
6615
- hasColumns ? /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(import_jsx_runtime100.Fragment, { children: [
6616
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material49.Divider, { className: classes.divider }),
6617
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
6652
+ hasColumns ? /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(import_jsx_runtime101.Fragment, { children: [
6653
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(import_material49.Divider, { className: classes.divider }),
6654
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6618
6655
  import_material49.Box,
6619
6656
  {
6620
6657
  sx: {
6621
6658
  display: "flex",
6622
6659
  gap: "24px"
6623
6660
  },
6624
- children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { children: [
6625
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material49.Typography, { className: classes.smallTitle, variant: "caption", children: column.title }),
6626
- typeof column.value === "string" ? /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material49.Typography, { variant: "body1", children: column.value }) : column.value
6661
+ children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { children: [
6662
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(import_material49.Typography, { className: classes.smallTitle, variant: "caption", children: column.title }),
6663
+ typeof column.value === "string" ? /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(import_material49.Typography, { variant: "body1", children: column.value }) : column.value
6627
6664
  ] }, column.title))
6628
6665
  }
6629
6666
  )
@@ -6639,7 +6676,7 @@ var RowProductCard_default = RowProductCard;
6639
6676
  var import_react27 = require("react");
6640
6677
  var import_material50 = require("@mui/material");
6641
6678
  var import_mui42 = require("tss-react/mui");
6642
- var import_jsx_runtime101 = require("react/jsx-runtime");
6679
+ var import_jsx_runtime102 = require("react/jsx-runtime");
6643
6680
  var useStyles37 = (0, import_mui42.makeStyles)()((theme) => ({
6644
6681
  dialog: {
6645
6682
  margin: "0 auto",
@@ -6732,10 +6769,10 @@ var ScrollableDialog = ({
6732
6769
  setDialogBodyMaxHeight();
6733
6770
  }
6734
6771
  }, [isOpen, maxDialogHeight, header]);
6735
- return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(import_material50.Dialog, { className: classes.dialog, fullWidth: true, maxWidth: false, open: isOpen, children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(import_material50.Fade, { in: isOpen, children: /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(import_material50.Paper, { className: classes.wrapper, children: [
6736
- header ? /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: classes.header, id: "dialog-header", children: header }) : null,
6737
- /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: classes.body, children: [
6738
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6772
+ return /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(import_material50.Dialog, { className: classes.dialog, fullWidth: true, maxWidth: false, open: isOpen, children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(import_material50.Fade, { in: isOpen, children: /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(import_material50.Paper, { className: classes.wrapper, children: [
6773
+ header ? /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("div", { className: classes.header, id: "dialog-header", children: header }) : null,
6774
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: classes.body, children: [
6775
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
6739
6776
  import_material50.Typography,
6740
6777
  {
6741
6778
  className: classes.title,
@@ -6744,7 +6781,7 @@ var ScrollableDialog = ({
6744
6781
  children: title
6745
6782
  }
6746
6783
  ),
6747
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6784
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
6748
6785
  "div",
6749
6786
  {
6750
6787
  className: cx(classes.scrollableContainer, {
@@ -6758,8 +6795,8 @@ var ScrollableDialog = ({
6758
6795
  }
6759
6796
  )
6760
6797
  ] }),
6761
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(import_material50.Divider, {}),
6762
- footer ? /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6798
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(import_material50.Divider, {}),
6799
+ footer ? /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
6763
6800
  import_material50.Box,
6764
6801
  {
6765
6802
  className: classes.footer,
@@ -6785,7 +6822,7 @@ var React2 = __toESM(require("react"), 1);
6785
6822
  var import_icons_material11 = require("@mui/icons-material");
6786
6823
  var import_material51 = require("@mui/material");
6787
6824
  var import_mui43 = require("tss-react/mui");
6788
- var import_jsx_runtime102 = require("react/jsx-runtime");
6825
+ var import_jsx_runtime103 = require("react/jsx-runtime");
6789
6826
  var useStyles38 = (0, import_mui43.makeStyles)()((theme) => ({
6790
6827
  searchContainer: {
6791
6828
  height: 46,
@@ -6845,9 +6882,9 @@ var SearchWithFilters = ({
6845
6882
  (0, import_react28.useEffect)(() => {
6846
6883
  setSearchText(searchValue);
6847
6884
  }, [searchValue]);
6848
- return /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(import_material51.Paper, { className: classes.searchContainer, children: [
6849
- /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(import_icons_material11.Search, { className: classes.icon, fontSize: "small" }),
6850
- /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
6885
+ return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(import_material51.Paper, { className: classes.searchContainer, children: [
6886
+ /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_icons_material11.Search, { className: classes.icon, fontSize: "small" }),
6887
+ /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
6851
6888
  import_material51.InputBase,
6852
6889
  {
6853
6890
  className: classes.input,
@@ -6859,8 +6896,8 @@ var SearchWithFilters = ({
6859
6896
  inputProps: { "aria-label": "search" }
6860
6897
  }
6861
6898
  ),
6862
- /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(import_material51.Divider, { className: classes.divider, orientation: "vertical" }),
6863
- /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
6899
+ /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_material51.Divider, { className: classes.divider, orientation: "vertical" }),
6900
+ /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(
6864
6901
  import_material51.Button,
6865
6902
  {
6866
6903
  className: classes.filterButton,
@@ -6868,7 +6905,7 @@ var SearchWithFilters = ({
6868
6905
  disabled,
6869
6906
  children: [
6870
6907
  "Filters",
6871
- showFilters ? /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(import_icons_material11.ArrowDropUp, {}) : /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(import_icons_material11.ArrowDropDown, {})
6908
+ showFilters ? /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_icons_material11.ArrowDropUp, {}) : /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_icons_material11.ArrowDropDown, {})
6872
6909
  ]
6873
6910
  }
6874
6911
  )
@@ -6877,7 +6914,7 @@ var SearchWithFilters = ({
6877
6914
  var SearchWithFilters_default = React2.memo(SearchWithFilters);
6878
6915
 
6879
6916
  // src/components/SearchAndFilterHeader/SearchAndFilterHeader.tsx
6880
- var import_jsx_runtime103 = require("react/jsx-runtime");
6917
+ var import_jsx_runtime104 = require("react/jsx-runtime");
6881
6918
  var useStyles39 = (0, import_mui44.makeStyles)()((theme) => ({
6882
6919
  wrapper: {
6883
6920
  display: "flex",
@@ -6913,11 +6950,11 @@ var SearchAndFilterHeader = ({
6913
6950
  searchValue
6914
6951
  }) => {
6915
6952
  const { classes } = useStyles39();
6916
- return /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_material52.Paper, { children: /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(import_material52.Box, { className: classes.wrapper, children: [
6917
- /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(import_material52.Box, { className: classes.container, children: [
6918
- /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(import_material52.Box, { className: classes.leftSection, children: [
6919
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(AppLabel_default, { appName }),
6920
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
6953
+ return /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_material52.Paper, { children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(import_material52.Box, { className: classes.wrapper, children: [
6954
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(import_material52.Box, { className: classes.container, children: [
6955
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(import_material52.Box, { className: classes.leftSection, children: [
6956
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(AppLabel_default, { appName }),
6957
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
6921
6958
  SearchWithFilters_default,
6922
6959
  {
6923
6960
  searchValue,
@@ -6928,9 +6965,9 @@ var SearchAndFilterHeader = ({
6928
6965
  }
6929
6966
  )
6930
6967
  ] }),
6931
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_material52.Box, { children: extraButton })
6968
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_material52.Box, { children: extraButton })
6932
6969
  ] }),
6933
- showFilters ? /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_material52.Box, { children: filtersComponent }) : null,
6970
+ showFilters ? /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_material52.Box, { children: filtersComponent }) : null,
6934
6971
  appliedFiltersComponent
6935
6972
  ] }) });
6936
6973
  };
@@ -6946,7 +6983,7 @@ var import_react29 = require("react");
6946
6983
  var import_icons_material12 = require("@mui/icons-material");
6947
6984
  var import_material53 = require("@mui/material");
6948
6985
  var import_mui45 = require("tss-react/mui");
6949
- var import_jsx_runtime104 = require("react/jsx-runtime");
6986
+ var import_jsx_runtime105 = require("react/jsx-runtime");
6950
6987
  var useStyles40 = (0, import_mui45.makeStyles)()((theme) => ({
6951
6988
  c_search: {
6952
6989
  height: 46,
@@ -7021,9 +7058,9 @@ var SearchWithFiltersForTable = (props) => {
7021
7058
  }
7022
7059
  };
7023
7060
  const ArrowIcon = isOpen ? import_icons_material12.ArrowDropUp : import_icons_material12.ArrowDropDown;
7024
- return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(import_material53.Paper, { className: classes.c_search, children: [
7025
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_material53.Box, { className: classes.c_search__icon, children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_icons_material12.Search, { className: classes.icon, fontSize: "small" }) }),
7026
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7061
+ return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(import_material53.Paper, { className: classes.c_search, children: [
7062
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_material53.Box, { className: classes.c_search__icon, children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_icons_material12.Search, { className: classes.icon, fontSize: "small" }) }),
7063
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7027
7064
  import_material53.InputBase,
7028
7065
  {
7029
7066
  className: classes.c_search__input,
@@ -7033,22 +7070,22 @@ var SearchWithFiltersForTable = (props) => {
7033
7070
  onKeyDown: handleKeyPress
7034
7071
  }
7035
7072
  ),
7036
- showFilterButton && /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(import_jsx_runtime104.Fragment, { children: [
7037
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7073
+ showFilterButton && /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(import_jsx_runtime105.Fragment, { children: [
7074
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7038
7075
  import_material53.Divider,
7039
7076
  {
7040
7077
  className: classes.c_search__divider,
7041
7078
  orientation: "vertical"
7042
7079
  }
7043
7080
  ),
7044
- /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
7081
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
7045
7082
  import_material53.Button,
7046
7083
  {
7047
7084
  className: classes.c_search__bt_filter,
7048
7085
  onClick: handleFilterButtonClick,
7049
7086
  children: [
7050
7087
  "Filters",
7051
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(ArrowIcon, { className: classes.c_search__bt_icon_filter })
7088
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(ArrowIcon, { className: classes.c_search__bt_icon_filter })
7052
7089
  ]
7053
7090
  }
7054
7091
  )
@@ -7058,7 +7095,7 @@ var SearchWithFiltersForTable = (props) => {
7058
7095
  var SearchWithFiltersForTable_default = (0, import_react29.memo)(SearchWithFiltersForTable);
7059
7096
 
7060
7097
  // src/components/SearchAndFilterHeader/SearchAndFilterHeaderForTable.tsx
7061
- var import_jsx_runtime105 = require("react/jsx-runtime");
7098
+ var import_jsx_runtime106 = require("react/jsx-runtime");
7062
7099
  var useStyles41 = (0, import_mui46.makeStyles)()((theme) => ({
7063
7100
  container: {
7064
7101
  display: "flex",
@@ -7090,10 +7127,10 @@ var SearchAndFilterHeaderForTable = (props) => {
7090
7127
  searchedValue
7091
7128
  } = props;
7092
7129
  const { classes } = useStyles41();
7093
- return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(import_material54.Box, { className: classes.container, children: [
7094
- /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(import_material54.Box, { className: classes.leftSection, children: [
7095
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(AppLabel_default, { appName }),
7096
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7130
+ return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_material54.Box, { className: classes.container, children: [
7131
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_material54.Box, { className: classes.leftSection, children: [
7132
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(AppLabel_default, { appName }),
7133
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7097
7134
  SearchWithFiltersForTable_default,
7098
7135
  {
7099
7136
  onFilterButtonClick,
@@ -7104,17 +7141,17 @@ var SearchAndFilterHeaderForTable = (props) => {
7104
7141
  searchedValue
7105
7142
  }
7106
7143
  ),
7107
- copy && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7144
+ copy && /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7108
7145
  import_material54.Box,
7109
7146
  {
7110
7147
  sx: {
7111
7148
  margin: 0.5
7112
7149
  },
7113
- children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(OutlinedButton_default, { copy })
7150
+ children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(OutlinedButton_default, { copy })
7114
7151
  }
7115
7152
  )
7116
7153
  ] }),
7117
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_material54.Box, { children: button })
7154
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_material54.Box, { children: button })
7118
7155
  ] });
7119
7156
  };
7120
7157
  var SearchAndFilterHeaderForTable_default = React3.memo(SearchAndFilterHeaderForTable);
@@ -7123,7 +7160,7 @@ var SearchAndFilterHeaderForTable_default = React3.memo(SearchAndFilterHeaderFor
7123
7160
  var import_icons_material13 = require("@mui/icons-material");
7124
7161
  var import_material55 = require("@mui/material");
7125
7162
  var import_mui47 = require("tss-react/mui");
7126
- var import_jsx_runtime106 = require("react/jsx-runtime");
7163
+ var import_jsx_runtime107 = require("react/jsx-runtime");
7127
7164
  var useStyles42 = (0, import_mui47.makeStyles)()((theme) => ({
7128
7165
  container: {
7129
7166
  display: "flex",
@@ -7166,9 +7203,9 @@ var SectionName = ({
7166
7203
  openHistoryLog
7167
7204
  }) => {
7168
7205
  const { classes } = useStyles42();
7169
- return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_material55.Box, { className: classes.container, children: [
7170
- /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_material55.Box, { className: classes.titleContainer, children: [
7171
- /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7206
+ return /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(import_material55.Box, { className: classes.container, children: [
7207
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(import_material55.Box, { className: classes.titleContainer, children: [
7208
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7172
7209
  import_material55.Typography,
7173
7210
  {
7174
7211
  variant: "h5",
@@ -7178,7 +7215,7 @@ var SectionName = ({
7178
7215
  children: name
7179
7216
  }
7180
7217
  ),
7181
- tooltipDescription ? /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_material55.Tooltip, { title: tooltipDescription, placement: "right", children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7218
+ tooltipDescription ? /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(import_material55.Tooltip, { title: tooltipDescription, placement: "right", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7182
7219
  import_icons_material13.Info,
7183
7220
  {
7184
7221
  fontSize: "small",
@@ -7187,8 +7224,8 @@ var SectionName = ({
7187
7224
  }
7188
7225
  ) }) : null
7189
7226
  ] }),
7190
- /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_material55.Box, { className: classes.actionButtons, children: [
7191
- buttonText ? /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7227
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(import_material55.Box, { className: classes.actionButtons, children: [
7228
+ buttonText ? /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7192
7229
  ExtendedButton_default,
7193
7230
  {
7194
7231
  type: buttonType,
@@ -7201,8 +7238,8 @@ var SectionName = ({
7201
7238
  variant: "text"
7202
7239
  }
7203
7240
  ) : null,
7204
- openHistoryLog && buttonText && /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_material55.Divider, { orientation: "vertical", sx: { height: "24px" } }),
7205
- openHistoryLog && /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_material55.IconButton, { size: "small", onClick: () => openHistoryLog(), children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_icons_material13.History, {}) })
7241
+ openHistoryLog && buttonText && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(import_material55.Divider, { orientation: "vertical", sx: { height: "24px" } }),
7242
+ openHistoryLog && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(import_material55.IconButton, { size: "small", onClick: () => openHistoryLog(), children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(import_icons_material13.History, {}) })
7206
7243
  ] })
7207
7244
  ] });
7208
7245
  };
@@ -7212,7 +7249,7 @@ var SectionName_default = SectionName;
7212
7249
  var import_react30 = require("react");
7213
7250
  var import_material56 = require("@mui/material");
7214
7251
  var import_mui48 = require("tss-react/mui");
7215
- var import_jsx_runtime107 = require("react/jsx-runtime");
7252
+ var import_jsx_runtime108 = require("react/jsx-runtime");
7216
7253
  var useStyles43 = (0, import_mui48.makeStyles)()(() => ({
7217
7254
  container: {
7218
7255
  display: "flex",
@@ -7279,7 +7316,7 @@ var SmartSelect = (0, import_react30.forwardRef)(
7279
7316
  onChange(selectedOption);
7280
7317
  }
7281
7318
  };
7282
- return /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(
7319
+ return /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)(
7283
7320
  import_material56.FormControl,
7284
7321
  {
7285
7322
  fullWidth: true,
@@ -7289,7 +7326,7 @@ var SmartSelect = (0, import_react30.forwardRef)(
7289
7326
  "data-testid": dataTestId,
7290
7327
  disabled,
7291
7328
  children: [
7292
- inputLabel && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7329
+ inputLabel && /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
7293
7330
  import_material56.InputLabel,
7294
7331
  {
7295
7332
  id: "smart-select-label",
@@ -7297,7 +7334,7 @@ var SmartSelect = (0, import_react30.forwardRef)(
7297
7334
  children: inputLabel
7298
7335
  }
7299
7336
  ),
7300
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(
7337
+ /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)(
7301
7338
  import_material56.Select,
7302
7339
  {
7303
7340
  ref,
@@ -7314,17 +7351,17 @@ var SmartSelect = (0, import_react30.forwardRef)(
7314
7351
  MenuProps: menuProps,
7315
7352
  label: inputLabel,
7316
7353
  children: [
7317
- isFetching && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7354
+ isFetching && /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
7318
7355
  import_material56.MenuItem,
7319
7356
  {
7320
7357
  disabled: true,
7321
7358
  "data-testid": `${dataTestId}-loading`,
7322
7359
  id: `${dataTestId}-loading`,
7323
- children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(import_material56.CircularProgress, { size: 24 })
7360
+ children: /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(import_material56.CircularProgress, { size: 24 })
7324
7361
  }
7325
7362
  ),
7326
- (defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(import_material56.MenuItem, { disabled: true, "data-testid": `${dataTestId}-empty-message`, children: emptyMessage }),
7327
- localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7363
+ (defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(import_material56.MenuItem, { disabled: true, "data-testid": `${dataTestId}-empty-message`, children: emptyMessage }),
7364
+ localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
7328
7365
  import_material56.MenuItem,
7329
7366
  {
7330
7367
  value: defaultOption?.value,
@@ -7332,7 +7369,7 @@ var SmartSelect = (0, import_react30.forwardRef)(
7332
7369
  children: defaultOption?.label
7333
7370
  }
7334
7371
  ),
7335
- !isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7372
+ !isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
7336
7373
  import_material56.MenuItem,
7337
7374
  {
7338
7375
  value: option?.value,
@@ -7345,7 +7382,7 @@ var SmartSelect = (0, import_react30.forwardRef)(
7345
7382
  ]
7346
7383
  }
7347
7384
  ),
7348
- helperText && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(import_material56.FormHelperText, { "data-testid": `${dataTestId}-helper-text`, children: helperText })
7385
+ helperText && /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(import_material56.FormHelperText, { "data-testid": `${dataTestId}-helper-text`, children: helperText })
7349
7386
  ]
7350
7387
  }
7351
7388
  );
@@ -7358,7 +7395,7 @@ var import_react31 = require("react");
7358
7395
  var import_material57 = require("@mui/material");
7359
7396
  var import_red2 = __toESM(require("@mui/material/colors/red"), 1);
7360
7397
  var import_mui49 = require("tss-react/mui");
7361
- var import_jsx_runtime108 = require("react/jsx-runtime");
7398
+ var import_jsx_runtime109 = require("react/jsx-runtime");
7362
7399
  var useStyles44 = (0, import_mui49.makeStyles)()((theme) => ({
7363
7400
  red: {
7364
7401
  backgroundColor: import_red2.default["50"],
@@ -7373,7 +7410,7 @@ var useStyles44 = (0, import_mui49.makeStyles)()((theme) => ({
7373
7410
  }));
7374
7411
  var SquareLabel = ({ color, copy }) => {
7375
7412
  const { classes } = useStyles44();
7376
- return /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(import_material57.Typography, { className: classes[color], children: copy });
7413
+ return /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(import_material57.Typography, { className: classes[color], children: copy });
7377
7414
  };
7378
7415
  var SquareLabel_default = (0, import_react31.memo)(SquareLabel);
7379
7416
 
@@ -7381,7 +7418,7 @@ var SquareLabel_default = (0, import_react31.memo)(SquareLabel);
7381
7418
  var import_react32 = require("react");
7382
7419
  var import_material58 = require("@mui/material");
7383
7420
  var import_mui50 = require("tss-react/mui");
7384
- var import_jsx_runtime109 = require("react/jsx-runtime");
7421
+ var import_jsx_runtime110 = require("react/jsx-runtime");
7385
7422
  var LSwitch = ({
7386
7423
  checked,
7387
7424
  labelOn,
@@ -7389,7 +7426,7 @@ var LSwitch = ({
7389
7426
  handleChange,
7390
7427
  classes,
7391
7428
  disabled
7392
- }) => /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("div", { className: classes.c_switch, children: /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)(
7429
+ }) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("div", { className: classes.c_switch, children: /* @__PURE__ */ (0, import_jsx_runtime110.jsxs)(
7393
7430
  import_material58.Grid2,
7394
7431
  {
7395
7432
  component: "label",
@@ -7399,8 +7436,8 @@ var LSwitch = ({
7399
7436
  alignItems: "center"
7400
7437
  },
7401
7438
  children: [
7402
- labelOff && /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(import_material58.Grid2, { children: labelOff }),
7403
- /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(import_material58.Grid2, { children: /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
7439
+ labelOff && /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_material58.Grid2, { children: labelOff }),
7440
+ /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_material58.Grid2, { children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
7404
7441
  import_material58.Switch,
7405
7442
  {
7406
7443
  checked,
@@ -7409,7 +7446,7 @@ var LSwitch = ({
7409
7446
  disabled
7410
7447
  }
7411
7448
  ) }),
7412
- labelOn && /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(import_material58.Grid2, { children: labelOn })
7449
+ labelOn && /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_material58.Grid2, { children: labelOn })
7413
7450
  ]
7414
7451
  }
7415
7452
  ) });
@@ -7437,7 +7474,7 @@ var Switch_default = (0, import_react32.memo)(LabelledSwitch);
7437
7474
  var import_react33 = require("react");
7438
7475
  var import_material59 = require("@mui/material");
7439
7476
  var import_mui51 = require("tss-react/mui");
7440
- var import_jsx_runtime110 = require("react/jsx-runtime");
7477
+ var import_jsx_runtime111 = require("react/jsx-runtime");
7441
7478
  var useStyles45 = (0, import_mui51.makeStyles)()(() => ({
7442
7479
  root: {
7443
7480
  backgroundColor: colors.neutral100,
@@ -7471,13 +7508,13 @@ var SmartTableHeader = (props) => {
7471
7508
  const createSortHandler = (property) => (event) => {
7472
7509
  onRequestSort?.(event, property);
7473
7510
  };
7474
- return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_material59.TableHead, { className: classes.root, children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_material59.TableRow, { children: props.headCells.map((headCell) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
7511
+ return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(import_material59.TableHead, { className: classes.root, children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(import_material59.TableRow, { children: props.headCells.map((headCell) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
7475
7512
  import_material59.TableCell,
7476
7513
  {
7477
7514
  className: classes.containerTh,
7478
7515
  align: "left",
7479
7516
  sortDirection: orderBy === headCell.id ? order : false,
7480
- children: /* @__PURE__ */ (0, import_jsx_runtime110.jsxs)(
7517
+ children: /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(
7481
7518
  import_material59.TableSortLabel,
7482
7519
  {
7483
7520
  active: orderBy === headCell.id,
@@ -7485,7 +7522,7 @@ var SmartTableHeader = (props) => {
7485
7522
  onClick: createSortHandler(headCell.id),
7486
7523
  children: [
7487
7524
  headCell.label,
7488
- orderBy === headCell.id ? /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("span", { className: classes.visuallyHidden, children: order === "desc" ? "sorted descending" : "sorted ascending" }) : null
7525
+ orderBy === headCell.id ? /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: classes.visuallyHidden, children: order === "desc" ? "sorted descending" : "sorted ascending" }) : null
7489
7526
  ]
7490
7527
  }
7491
7528
  )
@@ -7539,8 +7576,8 @@ function calculateRowsPerPage(rowHeight) {
7539
7576
 
7540
7577
  // src/components/Table/TableLoading.tsx
7541
7578
  var import_material60 = require("@mui/material");
7542
- var import_jsx_runtime111 = require("react/jsx-runtime");
7543
- var TableLoading = ({ rowsPerPage = 0, rowHeight }) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(import_material60.Box, { children: Array.from({ length: rowsPerPage }).map((x, i) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
7579
+ var import_jsx_runtime112 = require("react/jsx-runtime");
7580
+ var TableLoading = ({ rowsPerPage = 0, rowHeight }) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material60.Box, { children: Array.from({ length: rowsPerPage }).map((x, i) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
7544
7581
  import_material60.Skeleton,
7545
7582
  {
7546
7583
  animation: "pulse",
@@ -7553,7 +7590,7 @@ var TableLoading = ({ rowsPerPage = 0, rowHeight }) => /* @__PURE__ */ (0, impor
7553
7590
  var TableLoading_default = TableLoading;
7554
7591
 
7555
7592
  // src/components/Table/Table.tsx
7556
- var import_jsx_runtime112 = require("react/jsx-runtime");
7593
+ var import_jsx_runtime113 = require("react/jsx-runtime");
7557
7594
  var useStyles46 = (0, import_mui52.makeStyles)()(() => ({
7558
7595
  root: {
7559
7596
  height: "calc(100vh - 262px)",
@@ -7631,24 +7668,24 @@ var Table = ({
7631
7668
  );
7632
7669
  const rowsComponents = rows.map((row) => {
7633
7670
  if (RenderItem) {
7634
- return /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(RenderItem, { ...row }, row.id);
7671
+ return /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(RenderItem, { ...row }, row.id);
7635
7672
  }
7636
- return /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material61.TableRow, { hover: true, onClick: () => onRowClick?.(row), children: headCells?.map((column) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material61.TableCell, { children: row[column.id] }, column.id)) }, row.id);
7673
+ return /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableRow, { hover: true, onClick: () => onRowClick?.(row), children: headCells?.map((column) => /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableCell, { children: row[column.id] }, column.id)) }, row.id);
7637
7674
  });
7638
7675
  if (emptyRows > 0 && rowsPerPage > emptyRows) {
7639
7676
  rowsComponents.push(
7640
- /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material61.TableRow, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material61.TableCell, { colSpan: 8 }) }, (0, import_uuid.v4)())
7677
+ /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableRow, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableCell, { colSpan: 8 }) }, (0, import_uuid.v4)())
7641
7678
  );
7642
7679
  }
7643
7680
  return rowsComponents;
7644
7681
  };
7645
- return /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material61.Paper, { className: classes.root, children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material61.Box, { className: classes.paper, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(TableLoading_default, { rowHeight, rowsPerPage }) : /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material61.TableContainer, { className: classes.container, children: /* @__PURE__ */ (0, import_jsx_runtime112.jsxs)(import_material61.Table, { size: "medium", stickyHeader: true, children: [
7646
- /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material61.TableHead, { className: classes.header, children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material61.TableRow, { children: headCells?.map((headCell) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
7682
+ return /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.Paper, { className: classes.root, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.Box, { className: classes.paper, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(TableLoading_default, { rowHeight, rowsPerPage }) : /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableContainer, { className: classes.container, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(import_material61.Table, { size: "medium", stickyHeader: true, children: [
7683
+ /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableHead, { className: classes.header, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableRow, { children: headCells?.map((headCell) => /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
7647
7684
  import_material61.TableCell,
7648
7685
  {
7649
7686
  align: "left",
7650
7687
  sortDirection: orderBy === headCell.id ? order : void 0,
7651
- children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
7688
+ children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
7652
7689
  import_material61.TableSortLabel,
7653
7690
  {
7654
7691
  active: orderBy === headCell.id,
@@ -7660,9 +7697,9 @@ var Table = ({
7660
7697
  },
7661
7698
  headCell.id
7662
7699
  )) }) }),
7663
- /* @__PURE__ */ (0, import_jsx_runtime112.jsxs)(import_material61.TableBody, { children: [
7700
+ /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(import_material61.TableBody, { children: [
7664
7701
  getTableRows(),
7665
- rowsPerPage === emptyRows && /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material61.TableRow, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material61.TableCell, { colSpan: 8, align: "center", children: "Nothing to display" }) })
7702
+ rowsPerPage === emptyRows && /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableRow, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableCell, { colSpan: 8, align: "center", children: "Nothing to display" }) })
7666
7703
  ] })
7667
7704
  ] }) }) }) });
7668
7705
  };
@@ -7677,7 +7714,7 @@ var import_uuid2 = require("uuid");
7677
7714
  // src/components/Table/TableEmptyResult.tsx
7678
7715
  var import_material62 = require("@mui/material");
7679
7716
  var import_mui53 = require("tss-react/mui");
7680
- var import_jsx_runtime113 = require("react/jsx-runtime");
7717
+ var import_jsx_runtime114 = require("react/jsx-runtime");
7681
7718
  var useStyles47 = (0, import_mui53.makeStyles)()(() => ({
7682
7719
  tableCellIcon: { padding: 24, height: "calc(100vh - 320px)" },
7683
7720
  tableCellDefault: { padding: 24 }
@@ -7688,11 +7725,11 @@ var TableEmptyResult = ({
7688
7725
  }
7689
7726
  }) => {
7690
7727
  const { classes } = useStyles47();
7691
- return showClearFilterButton ? /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material62.TableRow, { children: /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(import_material62.TableCell, { className: classes.tableCellIcon, colSpan: 8, align: "center", children: [
7692
- /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(EmptyGlassIcon_default, {}),
7693
- /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material62.Typography, { variant: "h6", children: "No results found." }),
7694
- /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material62.Typography, { variant: "subtitle1", children: "Search without applied filters?" }),
7695
- /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
7728
+ return showClearFilterButton ? /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(import_material62.TableRow, { children: /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(import_material62.TableCell, { className: classes.tableCellIcon, colSpan: 8, align: "center", children: [
7729
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(EmptyGlassIcon_default, {}),
7730
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(import_material62.Typography, { variant: "h6", children: "No results found." }),
7731
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(import_material62.Typography, { variant: "subtitle1", children: "Search without applied filters?" }),
7732
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
7696
7733
  FilledButton_default,
7697
7734
  {
7698
7735
  copy: "Search",
@@ -7701,7 +7738,7 @@ var TableEmptyResult = ({
7701
7738
  onClick: handleClickOnClearFiltersButton
7702
7739
  }
7703
7740
  )
7704
- ] }) }) : /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material62.TableRow, { children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
7741
+ ] }) }) : /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(import_material62.TableRow, { children: /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
7705
7742
  import_material62.TableCell,
7706
7743
  {
7707
7744
  className: classes.tableCellDefault,
@@ -7714,7 +7751,7 @@ var TableEmptyResult = ({
7714
7751
  var TableEmptyResult_default = TableEmptyResult;
7715
7752
 
7716
7753
  // src/components/Table/TableDesktop.tsx
7717
- var import_jsx_runtime114 = require("react/jsx-runtime");
7754
+ var import_jsx_runtime115 = require("react/jsx-runtime");
7718
7755
  var useStyles48 = (0, import_mui54.makeStyles)()(() => ({
7719
7756
  root: {
7720
7757
  justifyContent: "space-between",
@@ -7777,7 +7814,7 @@ var TableDesktop = ({
7777
7814
  updateSort(property, orderDir);
7778
7815
  };
7779
7816
  const emptyRows = rowsPerPage - data.length;
7780
- return /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("div", { className: classes.root, style: { height }, children: /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(import_material63.Paper, { className: classes.paper, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("div", { children: [...Array(Math.floor(rowsPerPage))].map(() => /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
7817
+ return /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("div", { className: classes.root, style: { height }, children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material63.Paper, { className: classes.paper, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("div", { children: [...Array(Math.floor(rowsPerPage))].map(() => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
7781
7818
  import_material63.Skeleton,
7782
7819
  {
7783
7820
  animation: "pulse",
@@ -7786,15 +7823,15 @@ var TableDesktop = ({
7786
7823
  height: rowHeight
7787
7824
  },
7788
7825
  Math.random()
7789
- )) }) : /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(import_jsx_runtime114.Fragment, { children: [
7790
- /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(import_material63.TableContainer, { className: classes.container, children: /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
7826
+ )) }) : /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(import_jsx_runtime115.Fragment, { children: [
7827
+ /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material63.TableContainer, { className: classes.container, children: /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
7791
7828
  import_material63.Table,
7792
7829
  {
7793
7830
  "aria-labelledby": "tableTitle",
7794
7831
  "aria-label": "sticky table",
7795
7832
  stickyHeader: true,
7796
7833
  children: [
7797
- /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
7834
+ /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
7798
7835
  SmartTableHeader_default,
7799
7836
  {
7800
7837
  headCells,
@@ -7803,15 +7840,15 @@ var TableDesktop = ({
7803
7840
  onRequestSort: handleRequestSort
7804
7841
  }
7805
7842
  ),
7806
- /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(import_material63.TableBody, { children: [
7807
- stableSort2(data, getSorting2(order, orderBy)).slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map((item, index) => /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
7843
+ /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(import_material63.TableBody, { children: [
7844
+ stableSort2(data, getSorting2(order, orderBy)).slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map((item, index) => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
7808
7845
  RenderItem,
7809
7846
  {
7810
7847
  ...{ ...item, index, deleteItem }
7811
7848
  },
7812
7849
  item[keyField] || (0, import_uuid2.v4)()
7813
7850
  )),
7814
- rowsPerPage === emptyRows && /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
7851
+ rowsPerPage === emptyRows && /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
7815
7852
  TableEmptyResult_default,
7816
7853
  {
7817
7854
  showClearFilterButton,
@@ -7832,7 +7869,7 @@ var import_react36 = require("react");
7832
7869
  var import_icons_material14 = require("@mui/icons-material");
7833
7870
  var import_material64 = require("@mui/material");
7834
7871
  var import_mui55 = require("tss-react/mui");
7835
- var import_jsx_runtime115 = require("react/jsx-runtime");
7872
+ var import_jsx_runtime116 = require("react/jsx-runtime");
7836
7873
  var useStyles49 = (0, import_mui55.makeStyles)()(() => ({
7837
7874
  sortLabel: {
7838
7875
  "& .MuiTableSortLabel-icon": {
@@ -7877,7 +7914,7 @@ var TableHeader = ({ cells, onSort = null }) => {
7877
7914
  });
7878
7915
  setSortableCells(sortedCells);
7879
7916
  };
7880
- return /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material64.TableHead, { children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material64.TableRow, { children: sortableCells.map((cell, key) => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material64.TableCell, { children: cell.isSortable ? /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
7917
+ return /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(import_material64.TableHead, { children: /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(import_material64.TableRow, { children: sortableCells.map((cell, key) => /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(import_material64.TableCell, { children: cell.isSortable ? /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
7881
7918
  import_material64.TableSortLabel,
7882
7919
  {
7883
7920
  className: classes.sortLabel,
@@ -7893,7 +7930,7 @@ var TableHeader_default = (0, import_react36.memo)(TableHeader);
7893
7930
  // src/components/TextDivider/TextDivider.tsx
7894
7931
  var import_material65 = require("@mui/material");
7895
7932
  var import_mui56 = require("tss-react/mui");
7896
- var import_jsx_runtime116 = require("react/jsx-runtime");
7933
+ var import_jsx_runtime117 = require("react/jsx-runtime");
7897
7934
  var useStyles50 = (0, import_mui56.makeStyles)()(() => ({
7898
7935
  icon: {
7899
7936
  fontSize: 20
@@ -7930,7 +7967,7 @@ var TextDivider = ({
7930
7967
  }) => {
7931
7968
  const { classes } = useStyles50();
7932
7969
  const iconColor = color ?? colors.neutral900;
7933
- return /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
7970
+ return /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
7934
7971
  import_material65.Box,
7935
7972
  {
7936
7973
  display: "flex",
@@ -7938,10 +7975,10 @@ var TextDivider = ({
7938
7975
  justifyContent: "space-between",
7939
7976
  className: classes.container,
7940
7977
  children: [
7941
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(import_material65.Divider, { className: classes.leftDivider }),
7942
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(import_material65.Button, { onClick, disabled: !onClick, className: classes.button, children: /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(import_material65.Box, { className: classes.center, children: [
7943
- Icon3 && iconPosition === "left" && /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(Icon3, { className: classes.icon, style: { color: iconColor } }),
7944
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
7978
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(import_material65.Divider, { className: classes.leftDivider }),
7979
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(import_material65.Button, { onClick, disabled: !onClick, className: classes.button, children: /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(import_material65.Box, { className: classes.center, children: [
7980
+ Icon3 && iconPosition === "left" && /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(Icon3, { className: classes.icon, style: { color: iconColor } }),
7981
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
7945
7982
  import_material65.Typography,
7946
7983
  {
7947
7984
  color: "textSecondary",
@@ -7950,9 +7987,9 @@ var TextDivider = ({
7950
7987
  children: title
7951
7988
  }
7952
7989
  ),
7953
- Icon3 && iconPosition === "right" && /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(Icon3, { className: classes.icon, style: { color: iconColor } })
7990
+ Icon3 && iconPosition === "right" && /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(Icon3, { className: classes.icon, style: { color: iconColor } })
7954
7991
  ] }) }),
7955
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(import_material65.Divider, { className: classes.rightDivider })
7992
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(import_material65.Divider, { className: classes.rightDivider })
7956
7993
  ]
7957
7994
  }
7958
7995
  );
@@ -7964,8 +8001,7 @@ var import_react_dates = require("react-dates");
7964
8001
  var import_mui57 = require("tss-react/mui");
7965
8002
  var import_initialize = require("react-dates/initialize");
7966
8003
  var import_datepicker = require("react-dates/lib/css/_datepicker.css");
7967
- var import_classnames3 = __toESM(require("classnames"), 1);
7968
- var import_jsx_runtime117 = require("react/jsx-runtime");
8004
+ var import_jsx_runtime118 = require("react/jsx-runtime");
7969
8005
  var useStyles51 = (0, import_mui57.makeStyles)()((theme) => ({
7970
8006
  wrapper: {
7971
8007
  "& .DateRangePicker": {
@@ -7979,7 +8015,8 @@ var useStyles51 = (0, import_mui57.makeStyles)()((theme) => ({
7979
8015
  "& .DateRangePickerInput": {
7980
8016
  backgroundColor: "transparent",
7981
8017
  color: theme.palette.mode === "dark" ? "theme.palette.common.white" : theme.palette.text.primary,
7982
- borderRadius: 4
8018
+ borderRadius: 4,
8019
+ paddingTop: "2px"
7983
8020
  },
7984
8021
  "& .DateInput": {
7985
8022
  backgroundColor: theme.palette.mode === "dark" ? theme.palette.grey[900] : colors.neutral100,
@@ -8059,8 +8096,8 @@ var ThemedDateRangePicker = ({
8059
8096
  className,
8060
8097
  ...props
8061
8098
  }) => {
8062
- const { classes } = useStyles51();
8063
- return /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("div", { className: (0, import_classnames3.default)(classes.wrapper, className), children: /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(import_react_dates.DateRangePicker, { ...props }) });
8099
+ const { classes, cx } = useStyles51();
8100
+ return /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("div", { className: cx(classes.wrapper, className), children: /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(import_react_dates.DateRangePicker, { ...props }) });
8064
8101
  };
8065
8102
  var ThemedDateRangePicker_default = ThemedDateRangePicker;
8066
8103
 
@@ -8068,7 +8105,7 @@ var ThemedDateRangePicker_default = ThemedDateRangePicker;
8068
8105
  var import_react37 = require("react");
8069
8106
  var import_material66 = require("@mui/material");
8070
8107
  var import_mui58 = require("tss-react/mui");
8071
- var import_jsx_runtime118 = require("react/jsx-runtime");
8108
+ var import_jsx_runtime119 = require("react/jsx-runtime");
8072
8109
  var useStyles52 = (0, import_mui58.makeStyles)()((theme) => ({
8073
8110
  menuButton: {
8074
8111
  color: theme.palette.primary.contrastText
@@ -8107,9 +8144,9 @@ var TheToolbar = ({
8107
8144
  LeftDrawer: LeftDrawer2
8108
8145
  }) => {
8109
8146
  const { classes } = useStyles52();
8110
- return /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)(import_material66.Box, { children: [
8111
- /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(import_material66.AppBar, { children: /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)(import_material66.Toolbar, { className: classes.topBar, children: [
8112
- /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
8147
+ return /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(import_material66.Box, { children: [
8148
+ /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(import_material66.AppBar, { children: /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(import_material66.Toolbar, { className: classes.topBar, children: [
8149
+ /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
8113
8150
  RoundButton_default,
8114
8151
  {
8115
8152
  className: classes.menuButton,
@@ -8118,7 +8155,7 @@ var TheToolbar = ({
8118
8155
  onClick: handleOpen
8119
8156
  }
8120
8157
  ),
8121
- /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
8158
+ /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
8122
8159
  CompanyLogo_default,
8123
8160
  {
8124
8161
  size: "small",
@@ -8128,7 +8165,7 @@ var TheToolbar = ({
8128
8165
  }
8129
8166
  )
8130
8167
  ] }) }),
8131
- /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(import_material66.Box, { className: classes.offset }),
8168
+ /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(import_material66.Box, { className: classes.offset }),
8132
8169
  LeftDrawer2
8133
8170
  ] });
8134
8171
  };
@@ -8136,20 +8173,20 @@ var TheToolbar_default = (0, import_react37.memo)(TheToolbar);
8136
8173
 
8137
8174
  // src/components/ToastMessage/ToastMessage.tsx
8138
8175
  var import_material67 = require("@mui/material");
8139
- var import_jsx_runtime119 = require("react/jsx-runtime");
8176
+ var import_jsx_runtime120 = require("react/jsx-runtime");
8140
8177
  var ToastMessage = ({
8141
8178
  toastType,
8142
8179
  toastMessage,
8143
8180
  open,
8144
8181
  onClose
8145
- }) => /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
8182
+ }) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
8146
8183
  import_material67.Snackbar,
8147
8184
  {
8148
8185
  open,
8149
8186
  autoHideDuration: 1500,
8150
8187
  onClose,
8151
8188
  anchorOrigin: { vertical: "top", horizontal: "right" },
8152
- children: /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
8189
+ children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
8153
8190
  import_material67.Alert,
8154
8191
  {
8155
8192
  elevation: 6,
@@ -8178,7 +8215,7 @@ var ToastMessage_default = ToastMessage;
8178
8215
  // src/components/TwoButtonDialog/TwoButtonDialog.tsx
8179
8216
  var import_material68 = require("@mui/material");
8180
8217
  var import_mui59 = require("tss-react/mui");
8181
- var import_jsx_runtime120 = require("react/jsx-runtime");
8218
+ var import_jsx_runtime121 = require("react/jsx-runtime");
8182
8219
  var useStyles53 = (0, import_mui59.makeStyles)()((theme) => ({
8183
8220
  paper: {
8184
8221
  padding: theme.spacing(2)
@@ -8208,7 +8245,7 @@ var TwoButtonDialog = ({
8208
8245
  cancelButton
8209
8246
  }) => {
8210
8247
  const { classes } = useStyles53();
8211
- return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
8248
+ return /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
8212
8249
  import_material68.Dialog,
8213
8250
  {
8214
8251
  open,
@@ -8220,9 +8257,9 @@ var TwoButtonDialog = ({
8220
8257
  BackdropProps: {
8221
8258
  timeout: 500
8222
8259
  },
8223
- children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_material68.Fade, { in: open, children: /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_material68.Paper, { className: classes.paper, children: [
8224
- /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_material68.Box, { className: classes.mb, children: [
8225
- /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_material68.Typography, { variant: "h5", component: "div", children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
8260
+ children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(import_material68.Fade, { in: open, children: /* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(import_material68.Paper, { className: classes.paper, children: [
8261
+ /* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(import_material68.Box, { className: classes.mb, children: [
8262
+ /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(import_material68.Typography, { variant: "h5", component: "div", children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
8226
8263
  import_material68.Box,
8227
8264
  {
8228
8265
  sx: {
@@ -8231,7 +8268,7 @@ var TwoButtonDialog = ({
8231
8268
  children: title
8232
8269
  }
8233
8270
  ) }),
8234
- /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
8271
+ /* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(
8235
8272
  import_material68.Box,
8236
8273
  {
8237
8274
  className: classes.mt,
@@ -8239,15 +8276,15 @@ var TwoButtonDialog = ({
8239
8276
  fontWeight: 600
8240
8277
  },
8241
8278
  children: [
8242
- subtitle1 && /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_material68.Typography, { variant: "subtitle1", children: subtitle1 }),
8243
- subtitle2 && /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_material68.Typography, { variant: "subtitle1", children: subtitle2 })
8279
+ subtitle1 && /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(import_material68.Typography, { variant: "subtitle1", children: subtitle1 }),
8280
+ subtitle2 && /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(import_material68.Typography, { variant: "subtitle1", children: subtitle2 })
8244
8281
  ]
8245
8282
  }
8246
8283
  )
8247
8284
  ] }),
8248
- /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_material68.Divider, {}),
8249
- /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_material68.Box, { className: classes.buttonContainer, children: [
8250
- /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
8285
+ /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(import_material68.Divider, {}),
8286
+ /* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(import_material68.Box, { className: classes.buttonContainer, children: [
8287
+ /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
8251
8288
  FilledButton_default,
8252
8289
  {
8253
8290
  copy: cancelLabel,
@@ -8260,7 +8297,7 @@ var TwoButtonDialog = ({
8260
8297
  }
8261
8298
  }
8262
8299
  ),
8263
- /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
8300
+ /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
8264
8301
  FilledButton_default,
8265
8302
  {
8266
8303
  color: "primary",
@@ -8269,18 +8306,43 @@ var TwoButtonDialog = ({
8269
8306
  }
8270
8307
  )
8271
8308
  ] }),
8272
- /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Loading_default, { isLoading: dialogLoading })
8309
+ /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(Loading_default, { isLoading: dialogLoading })
8273
8310
  ] }) })
8274
8311
  }
8275
8312
  );
8276
8313
  };
8277
8314
  var TwoButtonDialog_default = TwoButtonDialog;
8315
+
8316
+ // src/components/icons/IconChart.tsx
8317
+ var import_jsx_runtime122 = require("react/jsx-runtime");
8318
+ var SvgIconChart = (props) => {
8319
+ const { fill } = props;
8320
+ return /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
8321
+ "svg",
8322
+ {
8323
+ width: "20",
8324
+ height: "20",
8325
+ viewBox: "0 0 20 20",
8326
+ fill: "none",
8327
+ xmlns: "http://www.w3.org/2000/svg",
8328
+ ...props,
8329
+ children: /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
8330
+ "path",
8331
+ {
8332
+ d: "M2.49967 11.6667L2.91634 11.725L6.72467 7.91667C6.57467 7.375 6.71634 6.75833 7.15801 6.325C7.80801 5.66667 8.85801 5.66667 9.50801 6.325C9.94967 6.75833 10.0913 7.375 9.94134 7.91667L12.083 10.0583L12.4997 10C12.6497 10 12.7913 10 12.9163 10.0583L15.8913 7.08333C15.833 6.95833 15.833 6.81667 15.833 6.66667C15.833 6.22464 16.0086 5.80072 16.3212 5.48816C16.6337 5.17559 17.0576 5 17.4997 5C17.9417 5 18.3656 5.17559 18.6782 5.48816C18.9907 5.80072 19.1663 6.22464 19.1663 6.66667C19.1663 7.10869 18.9907 7.53262 18.6782 7.84518C18.3656 8.15774 17.9417 8.33333 17.4997 8.33333C17.3497 8.33333 17.208 8.33333 17.083 8.275L14.108 11.25C14.1663 11.375 14.1663 11.5167 14.1663 11.6667C14.1663 12.1087 13.9907 12.5326 13.6782 12.8452C13.3656 13.1577 12.9417 13.3333 12.4997 13.3333C12.0576 13.3333 11.6337 13.1577 11.3212 12.8452C11.0086 12.5326 10.833 12.1087 10.833 11.6667L10.8913 11.25L8.74967 9.10833C8.48301 9.16667 8.18301 9.16667 7.91634 9.10833L4.10801 12.9167L4.16634 13.3333C4.16634 13.7754 3.99075 14.1993 3.67819 14.5118C3.36563 14.8244 2.9417 15 2.49967 15C2.05765 15 1.63372 14.8244 1.32116 14.5118C1.0086 14.1993 0.833008 13.7754 0.833008 13.3333C0.833008 12.8913 1.0086 12.4674 1.32116 12.1548C1.63372 11.8423 2.05765 11.6667 2.49967 11.6667Z",
8333
+ fill: fill ?? "#1976D2"
8334
+ }
8335
+ )
8336
+ }
8337
+ );
8338
+ };
8339
+ var IconChart_default = SvgIconChart;
8278
8340
  // Annotate the CommonJS export names for ESM import in node:
8279
8341
  0 && (module.exports = {
8280
8342
  AlertDialog,
8281
8343
  AlertDialogFullScreen,
8282
8344
  AppLabel,
8283
- AutoComplete,
8345
+ Autocomplete,
8284
8346
  BackHeader,
8285
8347
  BottomBar,
8286
8348
  BoxButton,
@@ -8305,6 +8367,8 @@ var TwoButtonDialog_default = TwoButtonDialog;
8305
8367
  FilterSimpleSelector,
8306
8368
  FixedFooter,
8307
8369
  Header,
8370
+ IconChart,
8371
+ IconCompare,
8308
8372
  ImageButton,
8309
8373
  LeftDrawer,
8310
8374
  List,