@natoora-libs/core 0.1.15 → 0.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/index.cjs +1598 -2012
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +1550 -1966
- package/dist/components/index.js.map +1 -1
- package/package.json +1 -1
package/dist/components/index.js
CHANGED
|
@@ -41,7 +41,7 @@ var require_root = __commonJS({
|
|
|
41
41
|
var require_now = __commonJS({
|
|
42
42
|
"../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/now.js"(exports, module) {
|
|
43
43
|
var root = require_root();
|
|
44
|
-
var now = function
|
|
44
|
+
var now = function() {
|
|
45
45
|
return root.Date.now();
|
|
46
46
|
};
|
|
47
47
|
module.exports = now;
|
|
@@ -377,23 +377,17 @@ var AlertDialog = ({
|
|
|
377
377
|
maxWidth,
|
|
378
378
|
fullScreen,
|
|
379
379
|
fullWidth,
|
|
380
|
-
children: /* @__PURE__ */ jsxs2(Box, {
|
|
381
|
-
children: [
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
description ? /* @__PURE__ */ jsx2(Typography2, { variant: "body1", children: description }) : null
|
|
386
|
-
]
|
|
387
|
-
}),
|
|
380
|
+
children: /* @__PURE__ */ jsxs2(Box, { children: [
|
|
381
|
+
/* @__PURE__ */ jsxs2(Box, { className: classes.topSection, children: [
|
|
382
|
+
alertTitle ? /* @__PURE__ */ jsx2(Typography2, { variant: "h5", className: classes.title, children: alertTitle }) : null,
|
|
383
|
+
description ? /* @__PURE__ */ jsx2(Typography2, { variant: "body1", children: description }) : null
|
|
384
|
+
] }),
|
|
388
385
|
/* @__PURE__ */ jsx2(Box, { padding: disabledContentPadding ? "" : "24px", children: content || null }),
|
|
389
|
-
|
|
390
|
-
className: classes.bottomSection, children: [
|
|
386
|
+
rejectCopy || acceptCopy ? /* @__PURE__ */ jsxs2(Box, { className: classes.bottomSection, children: [
|
|
391
387
|
/* @__PURE__ */ jsx2(Button, { onClick: handleAlertReject, children: rejectCopy || "Reject" }),
|
|
392
388
|
/* @__PURE__ */ jsx2(Button, { onClick: handleAlertAccept, color: "primary", autoFocus: true, children: acceptCopy || "Accept" })
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
]
|
|
396
|
-
})
|
|
389
|
+
] }) : null
|
|
390
|
+
] })
|
|
397
391
|
}
|
|
398
392
|
);
|
|
399
393
|
};
|
|
@@ -417,17 +411,13 @@ var AlertDialogFullScreen = ({
|
|
|
417
411
|
"aria-labelledby": "alert-dialog-title",
|
|
418
412
|
fullScreen,
|
|
419
413
|
open: open || false,
|
|
420
|
-
children: /* @__PURE__ */ jsxs3("div", {
|
|
421
|
-
children: [
|
|
414
|
+
children: /* @__PURE__ */ jsxs3("div", { children: [
|
|
422
415
|
/* @__PURE__ */ jsx3(DialogContent, { style: { padding: 0 }, children: content }),
|
|
423
|
-
|
|
424
|
-
style: { padding: 24 }, children: [
|
|
416
|
+
(rejectCopy || acceptCopy) && /* @__PURE__ */ jsxs3(DialogActions, { style: { padding: 24 }, children: [
|
|
425
417
|
/* @__PURE__ */ jsx3(Button2, { onClick: handleAlertReject, children: rejectCopy || "Reject" }),
|
|
426
418
|
/* @__PURE__ */ jsx3(Button2, { onClick: handleAlertAccept, color: "primary", autoFocus: true, children: acceptCopy || "Accept" })
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
]
|
|
430
|
-
})
|
|
419
|
+
] })
|
|
420
|
+
] })
|
|
431
421
|
}
|
|
432
422
|
);
|
|
433
423
|
var AlertDialogFullScreen_default = AlertDialogFullScreen;
|
|
@@ -505,16 +495,10 @@ var BackHeader = ({ appName, onGoBackClick }) => {
|
|
|
505
495
|
}
|
|
506
496
|
return navigate(-1);
|
|
507
497
|
};
|
|
508
|
-
return /* @__PURE__ */ jsx5(Box3, {
|
|
509
|
-
component: "header", className: classes.header, children: /* @__PURE__ */ jsx5(Button3, {
|
|
510
|
-
className: classes.button, onClick: handleBackClick, children: /* @__PURE__ */ jsxs4(Box3, {
|
|
511
|
-
component: "span", className: classes.text, children: [
|
|
498
|
+
return /* @__PURE__ */ jsx5(Box3, { component: "header", className: classes.header, children: /* @__PURE__ */ jsx5(Button3, { className: classes.button, onClick: handleBackClick, children: /* @__PURE__ */ jsxs4(Box3, { component: "span", className: classes.text, children: [
|
|
512
499
|
/* @__PURE__ */ jsx5(KeyboardBackspaceIcon, { className: classes.icon }),
|
|
513
500
|
/* @__PURE__ */ jsx5(Typography4, { variant: "body1", children: appName })
|
|
514
|
-
|
|
515
|
-
})
|
|
516
|
-
})
|
|
517
|
-
});
|
|
501
|
+
] }) }) });
|
|
518
502
|
};
|
|
519
503
|
var BackHeader_default = BackHeader;
|
|
520
504
|
|
|
@@ -662,45 +646,41 @@ var ExtendedButton = ({
|
|
|
662
646
|
compare: IconCompare_default
|
|
663
647
|
};
|
|
664
648
|
const IconComponent = icons2[type || "add"];
|
|
665
|
-
return /* @__PURE__ */ jsx7(Tooltip, {
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
}
|
|
687
|
-
) : null,
|
|
649
|
+
return /* @__PURE__ */ jsx7(Tooltip, { title: tooltip, children: /* @__PURE__ */ jsx7(Box4, { children: /* @__PURE__ */ jsxs5(
|
|
650
|
+
Button4,
|
|
651
|
+
{
|
|
652
|
+
className: cx(classes[color], className),
|
|
653
|
+
color: color === "noOutline" ? "default" : color,
|
|
654
|
+
component,
|
|
655
|
+
"data-testid": copy ? `extended-button-${copy.toLowerCase()}` : "extended-button",
|
|
656
|
+
disabled,
|
|
657
|
+
href: href ? href : void 0,
|
|
658
|
+
onClick,
|
|
659
|
+
type: buttonType,
|
|
660
|
+
variant,
|
|
661
|
+
children: [
|
|
662
|
+
type ? /* @__PURE__ */ jsx7(
|
|
663
|
+
IconComponent,
|
|
664
|
+
{
|
|
665
|
+
fontSize: "small",
|
|
666
|
+
className: classes.icon,
|
|
667
|
+
fill: colors.muiPrimary
|
|
668
|
+
}
|
|
669
|
+
) : null,
|
|
688
670
|
/* @__PURE__ */ jsxs5(
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
671
|
+
"div",
|
|
672
|
+
{
|
|
673
|
+
className: classes.copy,
|
|
674
|
+
style: { color: copyColor || "inherit" },
|
|
675
|
+
children: [
|
|
676
|
+
copy,
|
|
695
677
|
/* @__PURE__ */ jsx7("span", { children: subcopy })
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
})
|
|
703
|
-
});
|
|
678
|
+
]
|
|
679
|
+
}
|
|
680
|
+
)
|
|
681
|
+
]
|
|
682
|
+
}
|
|
683
|
+
) }) });
|
|
704
684
|
};
|
|
705
685
|
var ExtendedButton_default = memo2(ExtendedButton);
|
|
706
686
|
|
|
@@ -727,33 +707,31 @@ var BottomBar = ({
|
|
|
727
707
|
onRefreshClick = null
|
|
728
708
|
}) => {
|
|
729
709
|
const { classes, cx } = useStyles5();
|
|
730
|
-
return /* @__PURE__ */ jsx8(Paper, {
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
)
|
|
756
|
-
});
|
|
710
|
+
return /* @__PURE__ */ jsx8(Paper, { className: cx(classes.footer, className), elevation: 1, children: /* @__PURE__ */ jsxs6(
|
|
711
|
+
Box5,
|
|
712
|
+
{
|
|
713
|
+
className: classes.insideWrapper,
|
|
714
|
+
sx: {
|
|
715
|
+
display: "flex",
|
|
716
|
+
alignItems: "center",
|
|
717
|
+
justifyContent: "space-between"
|
|
718
|
+
},
|
|
719
|
+
children: [
|
|
720
|
+
onRefreshClick && /* @__PURE__ */ jsx8(
|
|
721
|
+
ExtendedButton_default,
|
|
722
|
+
{
|
|
723
|
+
className: classes.button,
|
|
724
|
+
copy: "Refresh",
|
|
725
|
+
disabled: isLoading,
|
|
726
|
+
onClick: onRefreshClick,
|
|
727
|
+
type: "refresh",
|
|
728
|
+
variant: "outlined"
|
|
729
|
+
}
|
|
730
|
+
),
|
|
731
|
+
children
|
|
732
|
+
]
|
|
733
|
+
}
|
|
734
|
+
) });
|
|
757
735
|
};
|
|
758
736
|
var BottomBar_default = BottomBar;
|
|
759
737
|
|
|
@@ -820,20 +798,20 @@ var BoxButton = (props) => {
|
|
|
820
798
|
children: [
|
|
821
799
|
/* @__PURE__ */ jsx9(Typography5, { variant: "button", children: label }),
|
|
822
800
|
/* @__PURE__ */ jsxs7(
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
801
|
+
Grid,
|
|
802
|
+
{
|
|
803
|
+
container: true,
|
|
804
|
+
direction: "row",
|
|
805
|
+
sx: {
|
|
806
|
+
justifyContent: "center",
|
|
807
|
+
alignItems: "center"
|
|
808
|
+
},
|
|
809
|
+
children: [
|
|
832
810
|
/* @__PURE__ */ jsx9(Grid, { size: 9, children: main }),
|
|
833
811
|
/* @__PURE__ */ jsx9(Grid, { className: classes.c_box_button__extra, size: 3, children: extra })
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
812
|
+
]
|
|
813
|
+
}
|
|
814
|
+
)
|
|
837
815
|
]
|
|
838
816
|
}
|
|
839
817
|
);
|
|
@@ -1141,12 +1119,10 @@ var SquareButton = ({
|
|
|
1141
1119
|
disableElevation: hasContentLeftSide,
|
|
1142
1120
|
onClick,
|
|
1143
1121
|
variant: "contained",
|
|
1144
|
-
children: /* @__PURE__ */ jsxs10("span", {
|
|
1145
|
-
|
|
1146
|
-
icon[type],
|
|
1122
|
+
children: /* @__PURE__ */ jsxs10("span", { className: classes.textWrapper, children: [
|
|
1123
|
+
icon[type],
|
|
1147
1124
|
/* @__PURE__ */ jsx13(Typography6, { className: classes.text, variant: "button", children })
|
|
1148
|
-
|
|
1149
|
-
})
|
|
1125
|
+
] })
|
|
1150
1126
|
}
|
|
1151
1127
|
);
|
|
1152
1128
|
};
|
|
@@ -1175,31 +1151,31 @@ var UploadButton = forwardRef(
|
|
|
1175
1151
|
},
|
|
1176
1152
|
children: [
|
|
1177
1153
|
/* @__PURE__ */ jsx14(
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1154
|
+
"input",
|
|
1155
|
+
{
|
|
1156
|
+
...props,
|
|
1157
|
+
type: "file",
|
|
1158
|
+
ref: (e) => {
|
|
1159
|
+
ref(e);
|
|
1160
|
+
sharedRef.current = e;
|
|
1161
|
+
},
|
|
1162
|
+
onChange: handleFileInput,
|
|
1163
|
+
style: { display: "none" }
|
|
1164
|
+
}
|
|
1165
|
+
),
|
|
1190
1166
|
/* @__PURE__ */ jsx14(
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1167
|
+
ExtendedButton_default,
|
|
1168
|
+
{
|
|
1169
|
+
buttonType: "button",
|
|
1170
|
+
variant: "outlined",
|
|
1171
|
+
color: "default",
|
|
1172
|
+
type: "upload",
|
|
1173
|
+
copy: file?.name ?? "Upload Document",
|
|
1174
|
+
onClick: () => {
|
|
1175
|
+
sharedRef?.current?.click();
|
|
1176
|
+
}
|
|
1200
1177
|
}
|
|
1201
|
-
|
|
1202
|
-
)
|
|
1178
|
+
)
|
|
1203
1179
|
]
|
|
1204
1180
|
}
|
|
1205
1181
|
);
|
|
@@ -1430,13 +1406,11 @@ import { makeStyles as makeStyles11 } from "tss-react/mui";
|
|
|
1430
1406
|
|
|
1431
1407
|
// src/components/icons/BallsLogo.tsx
|
|
1432
1408
|
import { jsx as jsx17, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1433
|
-
var SvgBallsLogo = (props) => /* @__PURE__ */ jsxs13("svg", {
|
|
1434
|
-
viewBox: "0 0 1024 305.8", ...props, fill: "currentColor", children: [
|
|
1409
|
+
var SvgBallsLogo = (props) => /* @__PURE__ */ jsxs13("svg", { viewBox: "0 0 1024 305.8", ...props, fill: "currentColor", children: [
|
|
1435
1410
|
/* @__PURE__ */ jsx17("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" }),
|
|
1436
1411
|
/* @__PURE__ */ jsx17("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" }),
|
|
1437
1412
|
/* @__PURE__ */ jsx17("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" })
|
|
1438
|
-
|
|
1439
|
-
});
|
|
1413
|
+
] });
|
|
1440
1414
|
var BallsLogo_default = SvgBallsLogo;
|
|
1441
1415
|
|
|
1442
1416
|
// src/components/icons/EmptyGlassIcon.tsx
|
|
@@ -1451,9 +1425,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs14(
|
|
|
1451
1425
|
fill: "none",
|
|
1452
1426
|
...props,
|
|
1453
1427
|
children: [
|
|
1454
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1455
|
-
id: "Frame", clipPath: "url(#clip0_454_24067)", children: /* @__PURE__ */ jsxs14("g", {
|
|
1456
|
-
id: "Clip path group", children: [
|
|
1428
|
+
/* @__PURE__ */ jsx18("g", { id: "Frame", clipPath: "url(#clip0_454_24067)", children: /* @__PURE__ */ jsxs14("g", { id: "Clip path group", children: [
|
|
1457
1429
|
/* @__PURE__ */ jsx18(
|
|
1458
1430
|
"mask",
|
|
1459
1431
|
{
|
|
@@ -1466,211 +1438,161 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs14(
|
|
|
1466
1438
|
children: /* @__PURE__ */ jsx18("g", { id: "__lottie_element_11", children: /* @__PURE__ */ jsx18("path", { id: "Vector", d: "M140 0H0V140H140V0Z", fill: "white" }) })
|
|
1467
1439
|
}
|
|
1468
1440
|
),
|
|
1469
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1470
|
-
mask: "url(#mask0_454_24067)", children: /* @__PURE__ */ jsx18("g", {
|
|
1471
|
-
id: "Group", children: /* @__PURE__ */ jsxs14("g", {
|
|
1472
|
-
id: "Clip path group_2", children: [
|
|
1441
|
+
/* @__PURE__ */ jsx18("g", { mask: "url(#mask0_454_24067)", children: /* @__PURE__ */ jsx18("g", { id: "Group", children: /* @__PURE__ */ jsxs14("g", { id: "Clip path group_2", children: [
|
|
1473
1442
|
/* @__PURE__ */ jsx18(
|
|
1474
|
-
|
|
1443
|
+
"mask",
|
|
1444
|
+
{
|
|
1445
|
+
id: "mask1_454_24067",
|
|
1446
|
+
maskUnits: "userSpaceOnUse",
|
|
1447
|
+
x: "0",
|
|
1448
|
+
y: "0",
|
|
1449
|
+
width: "140",
|
|
1450
|
+
height: "140",
|
|
1451
|
+
children: /* @__PURE__ */ jsx18("g", { id: "__lottie_element_13", children: /* @__PURE__ */ jsx18("path", { id: "Vector_2", d: "M0 0H140V140H0V0Z", fill: "white" }) })
|
|
1452
|
+
}
|
|
1453
|
+
),
|
|
1454
|
+
/* @__PURE__ */ jsx18("g", { mask: "url(#mask1_454_24067)", children: /* @__PURE__ */ jsx18("g", { id: "Group_2", children: /* @__PURE__ */ jsxs14("g", { id: "Group_3", children: [
|
|
1455
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_4", children: /* @__PURE__ */ jsx18(
|
|
1456
|
+
"path",
|
|
1457
|
+
{
|
|
1458
|
+
id: "Vector_3",
|
|
1459
|
+
d: "M18.3421 33.0791C16.7957 33.0791 15.5421 34.3327 15.5421 35.8791C15.5421 37.4255 16.7957 38.6791 18.3421 38.6791C19.8886 38.6791 21.1421 37.4255 21.1421 35.8791C21.1421 34.3327 19.8886 33.0791 18.3421 33.0791Z",
|
|
1460
|
+
fill: "#B6B2D8"
|
|
1461
|
+
}
|
|
1462
|
+
) }),
|
|
1463
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_5", children: /* @__PURE__ */ jsx18(
|
|
1464
|
+
"path",
|
|
1465
|
+
{
|
|
1466
|
+
id: "Vector_4",
|
|
1467
|
+
d: "M108.08 14C107.307 14 106.68 14.6269 106.68 15.4C106.68 16.1731 107.307 16.8 108.08 16.8C108.853 16.8 109.48 16.1731 109.48 15.4C109.48 14.6269 108.853 14 108.08 14Z",
|
|
1468
|
+
fill: "#EECB3A"
|
|
1469
|
+
}
|
|
1470
|
+
) }),
|
|
1471
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_6", children: /* @__PURE__ */ jsx18(
|
|
1472
|
+
"path",
|
|
1473
|
+
{
|
|
1474
|
+
id: "Vector_5",
|
|
1475
|
+
d: "M70.28 15.3994C41.6715 15.3994 18.48 38.591 18.48 67.1994C18.48 95.8079 41.6715 118.999 70.28 118.999C98.8884 118.999 122.08 95.8079 122.08 67.1994C122.08 38.591 98.8884 15.3994 70.28 15.3994Z",
|
|
1476
|
+
fill: "#F1F1F2"
|
|
1477
|
+
}
|
|
1478
|
+
) }),
|
|
1479
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_7", children: /* @__PURE__ */ jsx18(
|
|
1480
|
+
"path",
|
|
1481
|
+
{
|
|
1482
|
+
id: "Vector_6",
|
|
1483
|
+
d: "M116.48 12.9854C113.6 12.9854 111.266 15.3199 111.266 18.1999C111.266 21.0798 113.6 23.4144 116.48 23.4144C119.36 23.4144 121.695 21.0798 121.695 18.1999C121.695 15.3199 119.36 12.9854 116.48 12.9854Z",
|
|
1484
|
+
fill: "#EECB3A"
|
|
1485
|
+
}
|
|
1486
|
+
) }),
|
|
1487
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_8", children: /* @__PURE__ */ jsx18(
|
|
1488
|
+
"path",
|
|
1489
|
+
{
|
|
1490
|
+
id: "Vector_7",
|
|
1491
|
+
d: "M122.927 31.1133C121.381 31.1133 120.127 32.3668 120.127 33.9133C120.127 35.4597 121.381 36.7133 122.927 36.7133C124.473 36.7133 125.727 35.4597 125.727 33.9133C125.727 32.3668 124.473 31.1133 122.927 31.1133Z",
|
|
1492
|
+
fill: "#B6B2D8"
|
|
1493
|
+
}
|
|
1494
|
+
) }),
|
|
1495
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_9", children: /* @__PURE__ */ jsx18(
|
|
1496
|
+
"path",
|
|
1497
|
+
{
|
|
1498
|
+
id: "Vector_8",
|
|
1499
|
+
d: "M110.403 100.27C108.964 100.27 107.796 101.438 107.796 102.877C107.796 104.317 108.964 105.485 110.403 105.485C111.843 105.485 113.011 104.317 113.011 102.877C113.011 101.438 111.843 100.27 110.403 100.27ZM24.3639 80.7158C21.4839 80.7158 19.1494 83.0504 19.1494 85.9303C19.1494 88.8103 21.4839 91.1448 24.3639 91.1448C27.2439 91.1448 29.5784 88.8103 29.5784 85.9303C29.5784 83.0504 27.2439 80.7158 24.3639 80.7158Z",
|
|
1500
|
+
fill: "#F6D977"
|
|
1501
|
+
}
|
|
1502
|
+
) }),
|
|
1503
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_10", opacity: "0.655813", children: /* @__PURE__ */ jsx18(
|
|
1504
|
+
"path",
|
|
1505
|
+
{
|
|
1506
|
+
id: "Vector_9",
|
|
1507
|
+
d: "M35.28 116.2C33.7335 116.2 32.48 117.454 32.48 119C32.48 120.546 33.7335 121.8 35.28 121.8C36.8264 121.8 38.08 120.546 38.08 119C38.08 117.454 36.8264 116.2 35.28 116.2Z",
|
|
1508
|
+
fill: "#B6B2D8"
|
|
1509
|
+
}
|
|
1510
|
+
) }),
|
|
1511
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_11", children: /* @__PURE__ */ jsx18(
|
|
1512
|
+
"path",
|
|
1513
|
+
{
|
|
1514
|
+
id: "Vector_10",
|
|
1515
|
+
d: "M26.18 68.5996C24.2472 68.5996 22.68 70.1668 22.68 72.0996C22.68 74.0324 24.2472 75.5996 26.18 75.5996C28.1128 75.5996 29.68 74.0324 29.68 72.0996C29.68 70.1668 28.1128 68.5996 26.18 68.5996Z",
|
|
1516
|
+
fill: "#FFFEFF"
|
|
1517
|
+
}
|
|
1518
|
+
) }),
|
|
1519
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_12", children: /* @__PURE__ */ jsx18(
|
|
1520
|
+
"path",
|
|
1521
|
+
{
|
|
1522
|
+
id: "Vector_11",
|
|
1523
|
+
d: "M32.6867 90.4473C31.9136 90.4473 31.2867 91.0739 31.2867 91.8473C31.2867 92.6206 31.9136 93.2473 32.6867 93.2473C33.4598 93.2473 34.0867 92.6206 34.0867 91.8473C34.0867 91.0739 33.4598 90.4473 32.6867 90.4473Z",
|
|
1524
|
+
fill: "#EECB3A"
|
|
1525
|
+
}
|
|
1526
|
+
) }),
|
|
1527
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_13", children: /* @__PURE__ */ jsx18(
|
|
1528
|
+
"path",
|
|
1529
|
+
{
|
|
1530
|
+
id: "Vector_12",
|
|
1531
|
+
d: "M112.28 43.3994C111.507 43.3994 110.88 44.0263 110.88 44.7994C110.88 45.5725 111.507 46.1994 112.28 46.1994C113.053 46.1994 113.68 45.5725 113.68 44.7994C113.68 44.0263 113.053 43.3994 112.28 43.3994Z",
|
|
1532
|
+
fill: "#FFFEFF"
|
|
1533
|
+
}
|
|
1534
|
+
) }),
|
|
1535
|
+
/* @__PURE__ */ jsxs14("g", { id: "Group_14", children: [
|
|
1536
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_15", children: /* @__PURE__ */ jsx18(
|
|
1537
|
+
"path",
|
|
1475
1538
|
{
|
|
1476
|
-
id: "
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
y: "0",
|
|
1480
|
-
width: "140",
|
|
1481
|
-
height: "140",
|
|
1482
|
-
children: /* @__PURE__ */ jsx18("g", { id: "__lottie_element_13", children: /* @__PURE__ */ jsx18("path", { id: "Vector_2", d: "M0 0H140V140H0V0Z", fill: "white" }) })
|
|
1539
|
+
id: "Vector_13",
|
|
1540
|
+
d: "M109.38 118.149C108.369 121.418 104.765 123.318 101.497 122.307C99.7765 121.774 98.4414 120.607 97.6098 119.03L84.8399 92.0818C84.365 91.1808 84.6845 90.1484 85.5855 89.6735L91.4423 86.5854C92.343 86.1103 93.3751 86.4295 93.8503 87.3308L108.819 113.264C109.704 114.668 109.86 116.601 109.38 118.149Z",
|
|
1541
|
+
fill: "#BF7F42"
|
|
1483
1542
|
}
|
|
1484
|
-
),
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
)
|
|
1538
|
-
}),
|
|
1539
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1540
|
-
id: "Group_9", children: /* @__PURE__ */ jsx18(
|
|
1541
|
-
"path",
|
|
1542
|
-
{
|
|
1543
|
-
id: "Vector_8",
|
|
1544
|
-
d: "M110.403 100.27C108.964 100.27 107.796 101.438 107.796 102.877C107.796 104.317 108.964 105.485 110.403 105.485C111.843 105.485 113.011 104.317 113.011 102.877C113.011 101.438 111.843 100.27 110.403 100.27ZM24.3639 80.7158C21.4839 80.7158 19.1494 83.0504 19.1494 85.9303C19.1494 88.8103 21.4839 91.1448 24.3639 91.1448C27.2439 91.1448 29.5784 88.8103 29.5784 85.9303C29.5784 83.0504 27.2439 80.7158 24.3639 80.7158Z",
|
|
1545
|
-
fill: "#F6D977"
|
|
1546
|
-
}
|
|
1547
|
-
)
|
|
1548
|
-
}),
|
|
1549
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1550
|
-
id: "Group_10", opacity: "0.655813", children: /* @__PURE__ */ jsx18(
|
|
1551
|
-
"path",
|
|
1552
|
-
{
|
|
1553
|
-
id: "Vector_9",
|
|
1554
|
-
d: "M35.28 116.2C33.7335 116.2 32.48 117.454 32.48 119C32.48 120.546 33.7335 121.8 35.28 121.8C36.8264 121.8 38.08 120.546 38.08 119C38.08 117.454 36.8264 116.2 35.28 116.2Z",
|
|
1555
|
-
fill: "#B6B2D8"
|
|
1556
|
-
}
|
|
1557
|
-
)
|
|
1558
|
-
}),
|
|
1559
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1560
|
-
id: "Group_11", children: /* @__PURE__ */ jsx18(
|
|
1561
|
-
"path",
|
|
1562
|
-
{
|
|
1563
|
-
id: "Vector_10",
|
|
1564
|
-
d: "M26.18 68.5996C24.2472 68.5996 22.68 70.1668 22.68 72.0996C22.68 74.0324 24.2472 75.5996 26.18 75.5996C28.1128 75.5996 29.68 74.0324 29.68 72.0996C29.68 70.1668 28.1128 68.5996 26.18 68.5996Z",
|
|
1565
|
-
fill: "#FFFEFF"
|
|
1566
|
-
}
|
|
1567
|
-
)
|
|
1568
|
-
}),
|
|
1569
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1570
|
-
id: "Group_12", children: /* @__PURE__ */ jsx18(
|
|
1571
|
-
"path",
|
|
1572
|
-
{
|
|
1573
|
-
id: "Vector_11",
|
|
1574
|
-
d: "M32.6867 90.4473C31.9136 90.4473 31.2867 91.0739 31.2867 91.8473C31.2867 92.6206 31.9136 93.2473 32.6867 93.2473C33.4598 93.2473 34.0867 92.6206 34.0867 91.8473C34.0867 91.0739 33.4598 90.4473 32.6867 90.4473Z",
|
|
1575
|
-
fill: "#EECB3A"
|
|
1576
|
-
}
|
|
1577
|
-
)
|
|
1578
|
-
}),
|
|
1579
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1580
|
-
id: "Group_13", children: /* @__PURE__ */ jsx18(
|
|
1581
|
-
"path",
|
|
1582
|
-
{
|
|
1583
|
-
id: "Vector_12",
|
|
1584
|
-
d: "M112.28 43.3994C111.507 43.3994 110.88 44.0263 110.88 44.7994C110.88 45.5725 111.507 46.1994 112.28 46.1994C113.053 46.1994 113.68 45.5725 113.68 44.7994C113.68 44.0263 113.053 43.3994 112.28 43.3994Z",
|
|
1585
|
-
fill: "#FFFEFF"
|
|
1586
|
-
}
|
|
1587
|
-
)
|
|
1588
|
-
}),
|
|
1589
|
-
/* @__PURE__ */ jsxs14("g", {
|
|
1590
|
-
id: "Group_14", children: [
|
|
1591
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1592
|
-
id: "Group_15", children: /* @__PURE__ */ jsx18(
|
|
1593
|
-
"path",
|
|
1594
|
-
{
|
|
1595
|
-
id: "Vector_13",
|
|
1596
|
-
d: "M109.38 118.149C108.369 121.418 104.765 123.318 101.497 122.307C99.7765 121.774 98.4414 120.607 97.6098 119.03L84.8399 92.0818C84.365 91.1808 84.6845 90.1484 85.5855 89.6735L91.4423 86.5854C92.343 86.1103 93.3751 86.4295 93.8503 87.3308L108.819 113.264C109.704 114.668 109.86 116.601 109.38 118.149Z",
|
|
1597
|
-
fill: "#BF7F42"
|
|
1598
|
-
}
|
|
1599
|
-
)
|
|
1600
|
-
}),
|
|
1601
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1602
|
-
id: "Group_16", children: /* @__PURE__ */ jsx18(
|
|
1603
|
-
"path",
|
|
1604
|
-
{
|
|
1605
|
-
id: "Vector_14",
|
|
1606
|
-
d: "M90.7249 86.9195L86.2654 89.2707L82.7382 82.5815L87.1975 80.2295L90.7249 86.9195Z",
|
|
1607
|
-
fill: "#C2D1E0"
|
|
1608
|
-
}
|
|
1609
|
-
)
|
|
1610
|
-
}),
|
|
1611
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1612
|
-
id: "Group_17", children: /* @__PURE__ */ jsx18(
|
|
1613
|
-
"path",
|
|
1614
|
-
{
|
|
1615
|
-
id: "Vector_15",
|
|
1616
|
-
d: "M81.0593 33.0454C66.7827 28.6265 51.691 36.5844 47.272 50.861C42.8531 65.1379 50.8107 80.2296 65.0876 84.6489C79.3642 89.0676 94.4565 81.11 98.8752 66.8333C103.294 52.5564 95.3363 37.4644 81.0593 33.0454ZM66.6847 79.4882C55.3321 75.9742 48.9184 63.8113 52.4324 52.4584C55.9461 41.1055 68.1093 34.6916 79.4622 38.2056C90.8151 41.7193 97.2285 53.8833 93.7145 65.2359C90.2008 76.5888 78.0376 83.0022 66.6847 79.4882Z",
|
|
1617
|
-
fill: "#D2E0EA"
|
|
1618
|
-
}
|
|
1619
|
-
)
|
|
1620
|
-
}),
|
|
1621
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1622
|
-
id: "Group_18", children: /* @__PURE__ */ jsx18(
|
|
1623
|
-
"path",
|
|
1624
|
-
{
|
|
1625
|
-
id: "Vector_16",
|
|
1626
|
-
d: "M79.4625 38.2053C90.8624 41.7339 97.2433 53.8355 93.7148 65.2354C90.1865 76.6353 78.0843 83.0165 66.6844 79.4879C55.2845 75.9594 48.9036 63.8575 52.4321 52.4576C55.9604 41.0579 68.0626 34.6767 79.4625 38.2053Z",
|
|
1627
|
-
fill: "#8EC5EA"
|
|
1628
|
-
}
|
|
1629
|
-
)
|
|
1630
|
-
}),
|
|
1631
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1632
|
-
id: "Group_19", children: /* @__PURE__ */ jsx18(
|
|
1633
|
-
"path",
|
|
1634
|
-
{
|
|
1635
|
-
id: "Vector_17",
|
|
1636
|
-
d: "M53.6196 54.7106C57.1336 43.358 69.2971 36.9443 80.6497 40.4583C85.9823 42.1086 89.9877 45.6103 92.8137 49.8778C90.3604 44.406 85.6547 40.1223 79.4622 38.2057C68.1096 34.6917 55.9458 41.1054 52.4321 52.4583C50.5152 58.6505 51.5638 65.0068 54.5206 70.0686C52.5959 65.3262 51.969 60.0429 53.6196 54.7106Z",
|
|
1637
|
-
fill: "#70AFDE"
|
|
1638
|
-
}
|
|
1639
|
-
)
|
|
1640
|
-
}),
|
|
1641
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1642
|
-
id: "Group_20", children: /* @__PURE__ */ jsx18(
|
|
1643
|
-
"path",
|
|
1644
|
-
{
|
|
1645
|
-
id: "Vector_18",
|
|
1646
|
-
d: "M108.7 113.039L107.935 111.859C108.475 113.158 108.565 114.693 108.139 116.069C107.447 118.306 104.428 118.314 103.36 116.287L90.889 92.6353C90.1764 91.2838 88.628 90.8044 87.2767 91.5173L85.0244 92.7048L97.5443 118.633C98.2572 119.985 99.3669 121.271 100.69 121.869C102.529 122.626 104.634 122.524 106.21 121.693C107.787 120.861 109.061 119.182 109.475 117.237C109.9 115.86 109.413 114.39 108.7 113.039Z",
|
|
1647
|
-
fill: "#B5713E"
|
|
1648
|
-
}
|
|
1649
|
-
)
|
|
1650
|
-
}),
|
|
1651
|
-
/* @__PURE__ */ jsx18("g", {
|
|
1652
|
-
id: "Group_21", opacity: "0.2", children: /* @__PURE__ */ jsx18(
|
|
1653
|
-
"path",
|
|
1654
|
-
{
|
|
1655
|
-
id: "Vector_19",
|
|
1656
|
-
d: "M72.9785 53.375C69.8053 53.375 67.2329 55.9474 67.2329 59.1206C67.2329 62.2938 69.8053 64.8662 72.9785 64.8662C76.1518 64.8662 78.7244 62.2938 78.7244 59.1206C78.7244 55.9474 76.1518 53.375 72.9785 53.375Z",
|
|
1657
|
-
fill: "#FFFEFF"
|
|
1658
|
-
}
|
|
1659
|
-
)
|
|
1660
|
-
})
|
|
1661
|
-
]
|
|
1662
|
-
})
|
|
1663
|
-
]
|
|
1664
|
-
})
|
|
1665
|
-
})
|
|
1666
|
-
})
|
|
1667
|
-
]
|
|
1668
|
-
})
|
|
1669
|
-
})
|
|
1670
|
-
})
|
|
1671
|
-
]
|
|
1672
|
-
})
|
|
1673
|
-
}),
|
|
1543
|
+
) }),
|
|
1544
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_16", children: /* @__PURE__ */ jsx18(
|
|
1545
|
+
"path",
|
|
1546
|
+
{
|
|
1547
|
+
id: "Vector_14",
|
|
1548
|
+
d: "M90.7249 86.9195L86.2654 89.2707L82.7382 82.5815L87.1975 80.2295L90.7249 86.9195Z",
|
|
1549
|
+
fill: "#C2D1E0"
|
|
1550
|
+
}
|
|
1551
|
+
) }),
|
|
1552
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_17", children: /* @__PURE__ */ jsx18(
|
|
1553
|
+
"path",
|
|
1554
|
+
{
|
|
1555
|
+
id: "Vector_15",
|
|
1556
|
+
d: "M81.0593 33.0454C66.7827 28.6265 51.691 36.5844 47.272 50.861C42.8531 65.1379 50.8107 80.2296 65.0876 84.6489C79.3642 89.0676 94.4565 81.11 98.8752 66.8333C103.294 52.5564 95.3363 37.4644 81.0593 33.0454ZM66.6847 79.4882C55.3321 75.9742 48.9184 63.8113 52.4324 52.4584C55.9461 41.1055 68.1093 34.6916 79.4622 38.2056C90.8151 41.7193 97.2285 53.8833 93.7145 65.2359C90.2008 76.5888 78.0376 83.0022 66.6847 79.4882Z",
|
|
1557
|
+
fill: "#D2E0EA"
|
|
1558
|
+
}
|
|
1559
|
+
) }),
|
|
1560
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_18", children: /* @__PURE__ */ jsx18(
|
|
1561
|
+
"path",
|
|
1562
|
+
{
|
|
1563
|
+
id: "Vector_16",
|
|
1564
|
+
d: "M79.4625 38.2053C90.8624 41.7339 97.2433 53.8355 93.7148 65.2354C90.1865 76.6353 78.0843 83.0165 66.6844 79.4879C55.2845 75.9594 48.9036 63.8575 52.4321 52.4576C55.9604 41.0579 68.0626 34.6767 79.4625 38.2053Z",
|
|
1565
|
+
fill: "#8EC5EA"
|
|
1566
|
+
}
|
|
1567
|
+
) }),
|
|
1568
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_19", children: /* @__PURE__ */ jsx18(
|
|
1569
|
+
"path",
|
|
1570
|
+
{
|
|
1571
|
+
id: "Vector_17",
|
|
1572
|
+
d: "M53.6196 54.7106C57.1336 43.358 69.2971 36.9443 80.6497 40.4583C85.9823 42.1086 89.9877 45.6103 92.8137 49.8778C90.3604 44.406 85.6547 40.1223 79.4622 38.2057C68.1096 34.6917 55.9458 41.1054 52.4321 52.4583C50.5152 58.6505 51.5638 65.0068 54.5206 70.0686C52.5959 65.3262 51.969 60.0429 53.6196 54.7106Z",
|
|
1573
|
+
fill: "#70AFDE"
|
|
1574
|
+
}
|
|
1575
|
+
) }),
|
|
1576
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_20", children: /* @__PURE__ */ jsx18(
|
|
1577
|
+
"path",
|
|
1578
|
+
{
|
|
1579
|
+
id: "Vector_18",
|
|
1580
|
+
d: "M108.7 113.039L107.935 111.859C108.475 113.158 108.565 114.693 108.139 116.069C107.447 118.306 104.428 118.314 103.36 116.287L90.889 92.6353C90.1764 91.2838 88.628 90.8044 87.2767 91.5173L85.0244 92.7048L97.5443 118.633C98.2572 119.985 99.3669 121.271 100.69 121.869C102.529 122.626 104.634 122.524 106.21 121.693C107.787 120.861 109.061 119.182 109.475 117.237C109.9 115.86 109.413 114.39 108.7 113.039Z",
|
|
1581
|
+
fill: "#B5713E"
|
|
1582
|
+
}
|
|
1583
|
+
) }),
|
|
1584
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_21", opacity: "0.2", children: /* @__PURE__ */ jsx18(
|
|
1585
|
+
"path",
|
|
1586
|
+
{
|
|
1587
|
+
id: "Vector_19",
|
|
1588
|
+
d: "M72.9785 53.375C69.8053 53.375 67.2329 55.9474 67.2329 59.1206C67.2329 62.2938 69.8053 64.8662 72.9785 64.8662C76.1518 64.8662 78.7244 62.2938 78.7244 59.1206C78.7244 55.9474 76.1518 53.375 72.9785 53.375Z",
|
|
1589
|
+
fill: "#FFFEFF"
|
|
1590
|
+
}
|
|
1591
|
+
) })
|
|
1592
|
+
] })
|
|
1593
|
+
] }) }) })
|
|
1594
|
+
] }) }) })
|
|
1595
|
+
] }) }),
|
|
1674
1596
|
/* @__PURE__ */ jsx18("defs", { children: /* @__PURE__ */ jsx18("clipPath", { id: "clip0_454_24067", children: /* @__PURE__ */ jsx18("rect", { width: "140", height: "140", fill: "white" }) }) })
|
|
1675
1597
|
]
|
|
1676
1598
|
}
|
|
@@ -1679,8 +1601,7 @@ var EmptyGlassIcon_default = SvgEmptyGlassIcon;
|
|
|
1679
1601
|
|
|
1680
1602
|
// src/components/icons/IconAccount.tsx
|
|
1681
1603
|
import { jsx as jsx19, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1682
|
-
var SvgIconAccount = (props) => /* @__PURE__ */ jsxs15("svg", {
|
|
1683
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
1604
|
+
var SvgIconAccount = (props) => /* @__PURE__ */ jsxs15("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1684
1605
|
/* @__PURE__ */ jsx19(
|
|
1685
1606
|
"path",
|
|
1686
1607
|
{
|
|
@@ -1709,21 +1630,18 @@ var SvgIconAccount = (props) => /* @__PURE__ */ jsxs15("svg", {
|
|
|
1709
1630
|
d: "M37.8 33.4c-.1-.6-.2-1.1-.4-1.6-.1-.5-.4-1-.6-1.6-.3-.6-.5-.9-1-1.4-.1-.1-.2-.1-.3-.2-.3-.2-.6-.5-1.1-.6-.5-.1-1-.3-1.7-.3-.2 0-.3.1-.5.2-.1.1-.2.1-.3.2l-1 .9c-.4.2-1 .5-1.6.7-.6.2-1.3.4-1.9.4-.6 0-1.4-.1-1.9-.4-.6-.2-1.2-.5-1.6-.7l-1.1-.8c-.1-.1-.2-.1-.3-.2-.2-.1-.3-.2-.5-.2-.6 0-1.2 0-1.7.3-.5.1-.9.4-1.4.9-.1.1-.2.3-.3.4-.2.3-.4.5-.6.9-.3.5-.5 1-.6 1.5-.1.5-.3 1-.4 1.6l-.1.3c-.1.5-.2.9-.2 1.4v1.5c0 1.3.4 2.2 1.2 3.1.9.7 1.8 1.1 3 1.1h13c1.4 0 2.3-.3 3.1-1.1.8-.8 1.2-1.8 1.2-3.1.1-1.1-.4-3.1-.4-3.2zm-16.5-3.1l1.2.7c.6.4 1.3.7 2 1 .8.3 1.9.5 2.8.5.9 0 2-.2 2.8-.5.8-.3 1.5-.6 2-1l1.1-.7c.2 0 .3.1.5.1.1 0 .2.1.2.2.1.1.1.1.2.1.1.2.2.3.4.6.2.4.4.8.5 1.1.1.5.2.9.3 1.5v.1c.1.5.4 2 .4 2.6 0 .7-.2 1-.5 1.3-.2.2-.4.4-1.3.4H21c-.7 0-1.1-.2-1.4-.4-.3-.3-.4-.6-.4-1.3v-1.5c0-.2.1-.5.1-.9l.1-.3c.1-.6.2-1 .4-1.5.1-.3.3-.6.5-1.1.1-.1.2-.3.3-.5.1-.1.2-.2.2-.3l.1-.1c.1 0 .3-.1.4-.1z"
|
|
1710
1631
|
}
|
|
1711
1632
|
)
|
|
1712
|
-
|
|
1713
|
-
});
|
|
1633
|
+
] });
|
|
1714
1634
|
var IconAccount_default = SvgIconAccount;
|
|
1715
1635
|
|
|
1716
1636
|
// src/components/icons/IconAccounts.tsx
|
|
1717
1637
|
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
1718
|
-
var SvgIconAccounts = (props) => /* @__PURE__ */ jsx20("svg", {
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
)
|
|
1726
|
-
});
|
|
1638
|
+
var SvgIconAccounts = (props) => /* @__PURE__ */ jsx20("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx20(
|
|
1639
|
+
"path",
|
|
1640
|
+
{
|
|
1641
|
+
className: "icon-accounts_svg__st0",
|
|
1642
|
+
d: "M21.6 27.2h-2.4v8.3h2.4v-8.3zm7.1 0h-2.4v8.3h2.4v-8.3zm10.1 10.6H16.2v2.4h22.5v-2.4zm-3-10.6h-2.4v8.3h2.4v-8.3zm-8.3-8l6.2 3.3H21.3l6.2-3.3m0-2.7l-11.3 5.9v2.4h22.5v-2.4l-11.2-5.9z"
|
|
1643
|
+
}
|
|
1644
|
+
) });
|
|
1727
1645
|
var IconAccounts_default = SvgIconAccounts;
|
|
1728
1646
|
|
|
1729
1647
|
// src/components/icons/IconAvocado.tsx
|
|
@@ -1738,23 +1656,23 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs16(
|
|
|
1738
1656
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1739
1657
|
children: [
|
|
1740
1658
|
/* @__PURE__ */ jsx21(
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1659
|
+
"path",
|
|
1660
|
+
{
|
|
1661
|
+
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",
|
|
1662
|
+
stroke: colors.neutral800,
|
|
1663
|
+
strokeWidth: "2",
|
|
1664
|
+
strokeMiterlimit: "10"
|
|
1665
|
+
}
|
|
1666
|
+
),
|
|
1749
1667
|
/* @__PURE__ */ jsx21(
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1668
|
+
"path",
|
|
1669
|
+
{
|
|
1670
|
+
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",
|
|
1671
|
+
stroke: colors.neutral800,
|
|
1672
|
+
strokeWidth: "2",
|
|
1673
|
+
strokeMiterlimit: "10"
|
|
1674
|
+
}
|
|
1675
|
+
)
|
|
1758
1676
|
]
|
|
1759
1677
|
}
|
|
1760
1678
|
);
|
|
@@ -1771,15 +1689,13 @@ var SvgIconBanana = () => /* @__PURE__ */ jsxs17(
|
|
|
1771
1689
|
fill: "none",
|
|
1772
1690
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1773
1691
|
children: [
|
|
1774
|
-
/* @__PURE__ */ jsx22("g", {
|
|
1775
|
-
clipPath: "url(#clip0_0_2321)", children: /* @__PURE__ */ jsx22(
|
|
1692
|
+
/* @__PURE__ */ jsx22("g", { clipPath: "url(#clip0_0_2321)", children: /* @__PURE__ */ jsx22(
|
|
1776
1693
|
"path",
|
|
1777
1694
|
{
|
|
1778
1695
|
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",
|
|
1779
1696
|
fill: colors.neutral800
|
|
1780
1697
|
}
|
|
1781
|
-
)
|
|
1782
|
-
}),
|
|
1698
|
+
) }),
|
|
1783
1699
|
/* @__PURE__ */ jsx22("defs", { children: /* @__PURE__ */ jsx22("clipPath", { id: "clip0_0_2321", children: /* @__PURE__ */ jsx22("rect", { width: "24", height: "22", fill: "white" }) }) })
|
|
1784
1700
|
]
|
|
1785
1701
|
}
|
|
@@ -1788,8 +1704,7 @@ var IconBanana_default = SvgIconBanana;
|
|
|
1788
1704
|
|
|
1789
1705
|
// src/components/icons/IconBuying.tsx
|
|
1790
1706
|
import { jsx as jsx23, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1791
|
-
var SvgIconBuying = (props) => /* @__PURE__ */ jsxs18("svg", {
|
|
1792
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
1707
|
+
var SvgIconBuying = (props) => /* @__PURE__ */ jsxs18("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1793
1708
|
/* @__PURE__ */ jsx23(
|
|
1794
1709
|
"path",
|
|
1795
1710
|
{
|
|
@@ -1805,14 +1720,12 @@ var SvgIconBuying = (props) => /* @__PURE__ */ jsxs18("svg", {
|
|
|
1805
1720
|
}
|
|
1806
1721
|
),
|
|
1807
1722
|
/* @__PURE__ */ jsx23("circle", { className: "icon-buying_svg__st0", cx: 34.7, cy: 38.1, r: 2.6 })
|
|
1808
|
-
|
|
1809
|
-
});
|
|
1723
|
+
] });
|
|
1810
1724
|
var IconBuying_default = SvgIconBuying;
|
|
1811
1725
|
|
|
1812
1726
|
// src/components/icons/IconContentManagement.tsx
|
|
1813
1727
|
import { jsx as jsx24, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1814
|
-
var IconContentManagement = (props) => /* @__PURE__ */ jsxs19("svg", {
|
|
1815
|
-
viewBox: "0 0 55 56.7", ...props, fill: "0000", strokeWidth: "0px", children: [
|
|
1728
|
+
var IconContentManagement = (props) => /* @__PURE__ */ jsxs19("svg", { viewBox: "0 0 55 56.7", ...props, fill: "0000", strokeWidth: "0px", children: [
|
|
1816
1729
|
/* @__PURE__ */ jsx24(
|
|
1817
1730
|
"path",
|
|
1818
1731
|
{
|
|
@@ -1828,14 +1741,12 @@ var IconContentManagement = (props) => /* @__PURE__ */ jsxs19("svg", {
|
|
|
1828
1741
|
d: "M31.9,23.5c-.5,0-1-.2-1.3-.5-.3-.3-.5-.8-.5-1.3s.2-.9.5-1.3c.3-.3.8-.5,1.3-.5s1,.2,1.3.5c.3.3.5.8.5,1.3s-.2.9-.5,1.3c-.3.3-.8.5-1.3.5ZM35.8,22.2c0-.2,0-.3,0-.5s0-.3,0-.5l1.1-.8c0,0,.1-.2,0-.3l-1.1-1.8c0-.1-.2-.2-.3-.1l-1.3.5c-.3-.2-.6-.4-.9-.5l-.2-1.4c0-.1-.1-.2-.3-.2h-2.1c-.1,0-.2,0-.3.2l-.2,1.4c-.3.1-.6.3-.9.5l-1.3-.5c-.1,0-.3,0-.3.1l-1.1,1.8c0,.1,0,.3,0,.3l1.1.8c0,.2,0,.3,0,.5s0,.3,0,.5l-1.1.8c0,0-.1.2,0,.3l1.1,1.8c0,.1.2.2.3.1l1.3-.5c.3.2.6.4.9.5l.2,1.4c0,.1.1.2.3.2h2.1c.1,0,.2,0,.3-.2l.2-1.4c.3-.1.6-.3.9-.5l1.3.5c.1,0,.3,0,.3-.1l1.1-1.8c0-.1,0-.3,0-.3l-1.1-.8Z"
|
|
1829
1742
|
}
|
|
1830
1743
|
)
|
|
1831
|
-
|
|
1832
|
-
});
|
|
1744
|
+
] });
|
|
1833
1745
|
var IconContentManagement_default = IconContentManagement;
|
|
1834
1746
|
|
|
1835
1747
|
// src/components/icons/IconGoodsin.tsx
|
|
1836
1748
|
import { jsx as jsx25, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1837
|
-
var SvgIconGoodsin = (props) => /* @__PURE__ */ jsxs20("svg", {
|
|
1838
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
1749
|
+
var SvgIconGoodsin = (props) => /* @__PURE__ */ jsxs20("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1839
1750
|
/* @__PURE__ */ jsx25(
|
|
1840
1751
|
"path",
|
|
1841
1752
|
{
|
|
@@ -1857,8 +1768,7 @@ var SvgIconGoodsin = (props) => /* @__PURE__ */ jsxs20("svg", {
|
|
|
1857
1768
|
d: "M19.3 28.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.3 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.1.1.2 0 .3 0m.7-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-.2-.8-.7-1.2-1.4-1.2zm-15.6 9.9V19h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2V27c0-.8-.1-.9-.9-.9-.7.1-1.2.1-1.9.1z"
|
|
1858
1769
|
}
|
|
1859
1770
|
)
|
|
1860
|
-
|
|
1861
|
-
});
|
|
1771
|
+
] });
|
|
1862
1772
|
var IconGoodsin_default = SvgIconGoodsin;
|
|
1863
1773
|
|
|
1864
1774
|
// src/components/icons/IconGrape.tsx
|
|
@@ -1885,8 +1795,7 @@ var IconGrape_default = SvgIconGrape;
|
|
|
1885
1795
|
|
|
1886
1796
|
// src/components/icons/IconHome.tsx
|
|
1887
1797
|
import { jsx as jsx27, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1888
|
-
var SvgIconHome = (props) => /* @__PURE__ */ jsxs21("svg", {
|
|
1889
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
1798
|
+
var SvgIconHome = (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1890
1799
|
/* @__PURE__ */ jsx27(
|
|
1891
1800
|
"path",
|
|
1892
1801
|
{
|
|
@@ -1908,27 +1817,23 @@ var SvgIconHome = (props) => /* @__PURE__ */ jsxs21("svg", {
|
|
|
1908
1817
|
d: "M38 24.3l-9.1-7.6c-.4-.4-.9-.6-1.4-.6-.5 0-1 .2-1.3.5l-9.4 7.9c-.6.5-.8 1.5-.6 2.2.3.9 1.2 1.4 2 1.4h.1v9.2c0 1.9 1.5 3.4 3.4 3.4h2.8c.6 0 1.2-.5 1.2-1.2v-5.7H29v5.7c0 .6.5 1.2 1.2 1.2h3.1c1.9 0 3.4-1.5 3.4-3.4V28h.2c1.1 0 2-1 2-2 0-.7-.4-1.4-.9-1.7zm-4.7 14h-1.9v-4.9c0-1.1-.9-1.9-1.9-1.9h-4.1c-1.1 0-1.9.9-1.9 1.9v4.9h-1.7c-.6 0-1-.5-1-1v-13l6.7-5.7 6.9 5.7v13c-.1.5-.6 1-1.1 1z"
|
|
1909
1818
|
}
|
|
1910
1819
|
)
|
|
1911
|
-
|
|
1912
|
-
});
|
|
1820
|
+
] });
|
|
1913
1821
|
var IconHome_default = SvgIconHome;
|
|
1914
1822
|
|
|
1915
1823
|
// src/components/icons/IconImport.tsx
|
|
1916
1824
|
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
1917
|
-
var SvgIconImport = (props) => /* @__PURE__ */ jsx28("svg", {
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
)
|
|
1925
|
-
});
|
|
1825
|
+
var SvgIconImport = (props) => /* @__PURE__ */ jsx28("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "-8 -8 40 40", ...props, children: /* @__PURE__ */ jsx28(
|
|
1826
|
+
"path",
|
|
1827
|
+
{
|
|
1828
|
+
className: "icon-runs_svg__st0",
|
|
1829
|
+
d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6m-.5 14v3h-3v-3H8l4-4 4 4h-2.5M13 9V3.5L18.5 9H13Z"
|
|
1830
|
+
}
|
|
1831
|
+
) });
|
|
1926
1832
|
var IconImport_default = SvgIconImport;
|
|
1927
1833
|
|
|
1928
1834
|
// src/components/icons/IconLocation.tsx
|
|
1929
1835
|
import { jsx as jsx29, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1930
|
-
var SvgIconLocation = (props) => /* @__PURE__ */ jsxs22("svg", {
|
|
1931
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
1836
|
+
var SvgIconLocation = (props) => /* @__PURE__ */ jsxs22("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1932
1837
|
/* @__PURE__ */ jsx29(
|
|
1933
1838
|
"path",
|
|
1934
1839
|
{
|
|
@@ -1943,14 +1848,12 @@ var SvgIconLocation = (props) => /* @__PURE__ */ jsxs22("svg", {
|
|
|
1943
1848
|
d: "M27.6 30.2c-2.5 0-4.6-2.1-4.6-4.6 0-2.5 2.1-4.6 4.6-4.6 2.6 0 4.7 2.1 4.6 4.6l-4.6 4.6z"
|
|
1944
1849
|
}
|
|
1945
1850
|
)
|
|
1946
|
-
|
|
1947
|
-
});
|
|
1851
|
+
] });
|
|
1948
1852
|
var IconLocation_default = SvgIconLocation;
|
|
1949
1853
|
|
|
1950
1854
|
// src/components/icons/IconLogin.tsx
|
|
1951
1855
|
import { jsx as jsx30, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1952
|
-
var SvgIconLogin = (props) => /* @__PURE__ */ jsxs23("svg", {
|
|
1953
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
1856
|
+
var SvgIconLogin = (props) => /* @__PURE__ */ jsxs23("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1954
1857
|
/* @__PURE__ */ jsx30(
|
|
1955
1858
|
"path",
|
|
1956
1859
|
{
|
|
@@ -1965,14 +1868,12 @@ var SvgIconLogin = (props) => /* @__PURE__ */ jsxs23("svg", {
|
|
|
1965
1868
|
d: "M39.2 28.1c-.2-.2-.2-.3-.3-.4-.1-.1-.1-.2-.2-.2l-7.9-7.9c-.4-.4-1-.6-1.4-.4-.8.3-.8 1-.8 1.3v3.9h-6.1c-1.1 0-1.5.4-1.5 1.5v5.2c0 1.1.4 1.5 1.5 1.5h6.2v3.9c0 .5.3.9.8 1.1.2.1.3.1.5.1.3 0 .5-.1.8-.4l.2-.2c.9-.9 1.7-1.7 2.6-2.5 1.7-1.6 3.4-3.3 5-5 .1-.1.2-.2.3-.4l.3-.3.1-.1v-.1c0-.1 0-.3-.1-.6zm-10.2 2h-5.4v-3.2h5.3c1.2 0 2.2-1 2.2-2.2v-1.2l5.1 5.1-4.3 4.3-.6.6v-1.1c0-1.3-1-2.3-2.3-2.3z"
|
|
1966
1869
|
}
|
|
1967
1870
|
)
|
|
1968
|
-
|
|
1969
|
-
});
|
|
1871
|
+
] });
|
|
1970
1872
|
var IconLogin_default = SvgIconLogin;
|
|
1971
1873
|
|
|
1972
1874
|
// src/components/icons/IconNotification.tsx
|
|
1973
1875
|
import { jsx as jsx31, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1974
|
-
var SvgIconNotification = (props) => /* @__PURE__ */ jsxs24("svg", {
|
|
1975
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
1876
|
+
var SvgIconNotification = (props) => /* @__PURE__ */ jsxs24("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1976
1877
|
/* @__PURE__ */ jsx31(
|
|
1977
1878
|
"path",
|
|
1978
1879
|
{
|
|
@@ -1987,24 +1888,20 @@ var SvgIconNotification = (props) => /* @__PURE__ */ jsxs24("svg", {
|
|
|
1987
1888
|
d: "M21.6 34.1h6.6v2.2h-6.6zM37.2 26.8H26.7v-.5l1.2-1.2v-3.4c0-1.9 1.2-3.5 3.1-3.9v-.4c0-.5.4-.9.9-.9.6 0 .9.4.9.9v.4c1.8.4 3.1 2 3.1 3.9v3.4l1.2 1.2.1.5z"
|
|
1988
1889
|
}
|
|
1989
1890
|
)
|
|
1990
|
-
|
|
1991
|
-
});
|
|
1891
|
+
] });
|
|
1992
1892
|
var IconNotification_default = SvgIconNotification;
|
|
1993
1893
|
|
|
1994
1894
|
// src/components/icons/IconOpsMetrics.tsx
|
|
1995
1895
|
import { jsx as jsx32, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1996
|
-
var SvgIconOpsMetrics = (props) => /* @__PURE__ */ jsxs25("svg", {
|
|
1997
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
1896
|
+
var SvgIconOpsMetrics = (props) => /* @__PURE__ */ jsxs25("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1998
1897
|
/* @__PURE__ */ jsx32("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" }),
|
|
1999
1898
|
/* @__PURE__ */ jsx32("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" })
|
|
2000
|
-
|
|
2001
|
-
});
|
|
1899
|
+
] });
|
|
2002
1900
|
var IconOpsMetrics_default = SvgIconOpsMetrics;
|
|
2003
1901
|
|
|
2004
1902
|
// src/components/icons/IconOrders.tsx
|
|
2005
1903
|
import { jsx as jsx33, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
2006
|
-
var SvgIconOrders = (props) => /* @__PURE__ */ jsxs26("svg", {
|
|
2007
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
1904
|
+
var SvgIconOrders = (props) => /* @__PURE__ */ jsxs26("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2008
1905
|
/* @__PURE__ */ jsx33(
|
|
2009
1906
|
"path",
|
|
2010
1907
|
{
|
|
@@ -2019,27 +1916,23 @@ var SvgIconOrders = (props) => /* @__PURE__ */ jsxs26("svg", {
|
|
|
2019
1916
|
d: "M22.1 33h8.8v2.2h-8.8zM22.1 28.6h8.8v2.2h-8.8zM26.8 25.9h6l-6-6.1z"
|
|
2020
1917
|
}
|
|
2021
1918
|
)
|
|
2022
|
-
|
|
2023
|
-
});
|
|
1919
|
+
] });
|
|
2024
1920
|
var IconOrders_default = SvgIconOrders;
|
|
2025
1921
|
|
|
2026
1922
|
// src/components/icons/IconPhone.tsx
|
|
2027
1923
|
import { jsx as jsx34 } from "react/jsx-runtime";
|
|
2028
|
-
var SvgIconPhone = (props) => /* @__PURE__ */ jsx34("svg", {
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
)
|
|
2036
|
-
});
|
|
1924
|
+
var SvgIconPhone = (props) => /* @__PURE__ */ jsx34("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx34(
|
|
1925
|
+
"path",
|
|
1926
|
+
{
|
|
1927
|
+
className: "icon-phone_svg__st0",
|
|
1928
|
+
d: "M34 22.9c-3 0-5.5 2.5-5.5 5.5 0 1.3.5 2.6 1.3 3.5h-4.5c.8-.9 1.3-2.2 1.3-3.5 0-3-2.5-5.5-5.5-5.5s-5.5 2.5-5.5 5.5 2.5 5.5 5.5 5.5h13c3 0 5.5-2.5 5.5-5.5S37 22.9 34 22.9zm-13 9c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm13 0c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z"
|
|
1929
|
+
}
|
|
1930
|
+
) });
|
|
2037
1931
|
var IconPhone_default = SvgIconPhone;
|
|
2038
1932
|
|
|
2039
1933
|
// src/components/icons/IconPriceList.tsx
|
|
2040
1934
|
import { jsx as jsx35, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
2041
|
-
var SvgIconPriceList = (props) => /* @__PURE__ */ jsxs27("svg", {
|
|
2042
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
1935
|
+
var SvgIconPriceList = (props) => /* @__PURE__ */ jsxs27("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2043
1936
|
/* @__PURE__ */ jsx35(
|
|
2044
1937
|
"path",
|
|
2045
1938
|
{
|
|
@@ -2068,14 +1961,12 @@ var SvgIconPriceList = (props) => /* @__PURE__ */ jsxs27("svg", {
|
|
|
2068
1961
|
d: "M39.4 33.9l-2-1.8c.5-1.2.7-2.5.7-3.7 0-1.4-.2-2.6-.7-3.9l1.9-1.9c.4-.4.6-.9.6-1.5s-.3-1.1-.7-1.5l-3.2-3c-.8-.8-2.2-.7-2.9.1l-1.7 1.8c-.7-.3-1.3-.5-2-.6-1-.2-1.9-.2-3-.1-1 .1-2 .3-3 .7l-1.3-1.2-.1-.1-.6-.6c-.8-.7-2.1-.6-2.9.1l-3 3.1c-.4.4-.6.9-.6 1.5s.3 1.1.7 1.5l1.7 1.6c-.5 1.2-.7 2.5-.7 3.8 0 1.4.2 2.6.7 3.9l-1.8 1.8c-.4.4-.6.9-.6 1.5v.6c0 .6.2 1.2.7 1.5l3 2.8c.8.7 2.1.7 2.9-.1l1.9-1.9c1.2.5 2.6.8 4 .8s2.8-.3 4-.8l2.1 2c.4.4.9.6 1.4.6.6 0 1.1-.2 1.5-.6l3-3.1c.4-.4.6-1 .6-1.5.1-.9-.2-1.4-.6-1.8zm-22.1 1.5l2.8-2.9-.1-.2c-.7-1.4-1.1-2.7-1.1-4.2s.4-2.9 1.2-4.1l.1-.2-2.8-2.6 2.7-2.8.5.4 2.4 2.3.2-.1c1.1-.6 2.2-1 3.5-1.1.9-.1 1.6-.1 2.3.1.9.2 1.9.5 2.8 1.1l.2.1 2.7-2.8 2.9 2.7-3 2.9.1.2c.7 1.4 1.1 2.7 1.1 4.2 0 1.4-.4 2.8-1.2 4.1l-.1.2 3.1 2.8-2.7 2.8-3.1-2.9-.2.1c-1.3.8-2.7 1.2-4.3 1.2s-3-.4-4.3-1.2v-.2l-3 3-2.8-2.5v-.4z"
|
|
2069
1962
|
}
|
|
2070
1963
|
)
|
|
2071
|
-
|
|
2072
|
-
});
|
|
1964
|
+
] });
|
|
2073
1965
|
var IconPriceList_default = SvgIconPriceList;
|
|
2074
1966
|
|
|
2075
1967
|
// src/components/icons/IconProducts.tsx
|
|
2076
1968
|
import { jsx as jsx36, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
2077
|
-
var SvgIconProducts = (props) => /* @__PURE__ */ jsxs28("svg", {
|
|
2078
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
1969
|
+
var SvgIconProducts = (props) => /* @__PURE__ */ jsxs28("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2079
1970
|
/* @__PURE__ */ jsx36(
|
|
2080
1971
|
"path",
|
|
2081
1972
|
{
|
|
@@ -2090,14 +1981,12 @@ var SvgIconProducts = (props) => /* @__PURE__ */ jsxs28("svg", {
|
|
|
2090
1981
|
d: "M38.7 10.5c-2.5-.4-4.3-.4-5.8 0-2.7.7-4.6 2.6-5.1 5.2-.1-.2-.1-.4-.2-.6l-.3-.5c-.4-.6-.7-1.2-1.2-1.8-.1-.1-.6-.3-.8-.2l-.3.1v.1c-.1.2-.1.4-.1.7 0 .3.2.5.3.6h.1c.8 1 1 1.7 1.2 2.8-.4.1-1.2.2-1.4.2-5.6.8-9.9 6.4-9.1 12.1.8 5.8 5.2 9.8 10.9 9.8.7 0 1.4-.1 2.1-.2 2.8-.5 5.3-2.2 7-4.8 1.7-2.5 2.2-5.7 1.5-8.5-1.1-4.7-4.7-7.8-9.5-8.5 0-.3-.1-.6-.2-.9h.2c.6-.1 1.2-.2 1.9-.2 1.2-.1 2.4-.2 3.4-.5 2-.5 3.5-1.3 4.4-2.5.3-.4.5-.7.7-1.1.1-.3.3-.5.5-.8l.2-.3-.4-.2zM35.4 26c.5 2.3.1 4.7-1.2 6.8-1.3 2-3.2 3.3-5.4 3.8-.6.1-1.2.2-1.7.2-4.5 0-8-3.1-8.6-7.8-.6-4.4 2.7-8.8 7-9.5.6 0 1.2-.2 1.6-.3.2.1.3.1.5.2h.3c3.7.4 6.5 2.8 7.5 6.6zm-8.5-8.9z"
|
|
2091
1982
|
}
|
|
2092
1983
|
)
|
|
2093
|
-
|
|
2094
|
-
});
|
|
1984
|
+
] });
|
|
2095
1985
|
var IconProducts_default = SvgIconProducts;
|
|
2096
1986
|
|
|
2097
1987
|
// src/components/icons/IconPromoCode.tsx
|
|
2098
1988
|
import { jsx as jsx37, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
2099
|
-
var SvgIconPromoCode = (props) => /* @__PURE__ */ jsxs29("svg", {
|
|
2100
|
-
viewBox: "0 0 42.5 42.5", ...props, children: [
|
|
1989
|
+
var SvgIconPromoCode = (props) => /* @__PURE__ */ jsxs29("svg", { viewBox: "0 0 42.5 42.5", ...props, children: [
|
|
2101
1990
|
/* @__PURE__ */ jsx37(
|
|
2102
1991
|
"path",
|
|
2103
1992
|
{
|
|
@@ -2175,40 +2064,34 @@ var SvgIconPromoCode = (props) => /* @__PURE__ */ jsxs29("svg", {
|
|
|
2175
2064
|
d: "M15.7,30.3c0-1.2-1-0.8-1.7-0.8c-1.5,0-1.7-0.2-1.7-1.7c0-0.7,0.3-1.7-0.8-1.7c-0.8,0-0.9,0.5-0.9,1\n c-0.4,1.2-0.2,2.3,0.5,3.1c0.1,0.1,0.2,0.2,0.2,0.3c0.1,0.1,0.1,0.1,0.2,0.1c0.1,0,0.1,0.1,0.2,0.1c0.5,0.3,1.2,0.5,2,0.5h0h0.8\n c0.3,0,0.6-0.1,0.8-0.4c0,0,0,0,0,0c0,0,0-0.1,0.1-0.1c0,0,0-0.1,0-0.2c0,0,0-0.1,0-0.1C15.7,30.4,15.7,30.4,15.7,30.3\n C15.7,30.3,15.7,30.3,15.7,30.3z"
|
|
2176
2065
|
}
|
|
2177
2066
|
)
|
|
2178
|
-
|
|
2179
|
-
});
|
|
2067
|
+
] });
|
|
2180
2068
|
var IconPromoCode_default = SvgIconPromoCode;
|
|
2181
2069
|
|
|
2182
2070
|
// src/components/icons/IconQc.tsx
|
|
2183
2071
|
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
2184
|
-
var SvgIconQc = (props) => /* @__PURE__ */ jsx38("svg", {
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
)
|
|
2192
|
-
});
|
|
2072
|
+
var SvgIconQc = (props) => /* @__PURE__ */ jsx38("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx38(
|
|
2073
|
+
"path",
|
|
2074
|
+
{
|
|
2075
|
+
className: "icon-qc_svg__st0",
|
|
2076
|
+
d: "M19.4 24h-4.6v14h4.6V24zM28.6 19.6l-.6 2.9c-.2.8 0 1.5.5 2.1.5.6 1.2.9 2 .9h7.2V27c0 .1-.1.1-.1.2l-3.5 8.1h-10V24l4.5-4.4M29.9 14.7l-7.7 7.7c-.4.4-.6 1-.6 1.7v11.6c0 1.3 1 2.3 2.3 2.3h10.5c.8 0 1.7-.6 2-1.4l3.6-8.3c.1-.4.3-.5.3-.9v-2.2c0-1.2-.9-2.2-2.2-2.2h-7.5l1.2-5.4v-.4c0-.5-.1-.9-.5-1.3l-1.4-1.2z"
|
|
2077
|
+
}
|
|
2078
|
+
) });
|
|
2193
2079
|
var IconQc_default = SvgIconQc;
|
|
2194
2080
|
|
|
2195
2081
|
// src/components/icons/IconReports.tsx
|
|
2196
2082
|
import { jsx as jsx39 } from "react/jsx-runtime";
|
|
2197
|
-
var SvgIconReports = (props) => /* @__PURE__ */ jsx39("svg", {
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
)
|
|
2205
|
-
});
|
|
2083
|
+
var SvgIconReports = (props) => /* @__PURE__ */ jsx39("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx39(
|
|
2084
|
+
"path",
|
|
2085
|
+
{
|
|
2086
|
+
className: "icon-reports_svg__st0",
|
|
2087
|
+
d: "M36.3 18.4l-1.8-1.8-1.8 1.8-1.7-1.8-1.8 1.8-1.8-1.8-1.8 1.8-1.6-1.8-1.8 1.8-1.8-1.8-1.8 1.8-1.8-1.8v23.5l1.8-1.8 1.8 1.8 1.8-1.8 1.8 1.8 1.8-1.8 1.8 1.8 1.8-1.8 1.8 1.8 1.8-1.8 1.8 1.8 1.8-1.8 1.8 1.8V16.6l-2.1 1.8zm-.6 18.3H19.3V20h16.4v16.7zm-15.2-4.8h14.1v2.3H20.5v-2.3zm0-4.7h14.1v2.3H20.5v-2.3zm0-4.7h14.1v2.3H20.5v-2.3z"
|
|
2088
|
+
}
|
|
2089
|
+
) });
|
|
2206
2090
|
var IconReports_default = SvgIconReports;
|
|
2207
2091
|
|
|
2208
2092
|
// src/components/icons/IconRetail.tsx
|
|
2209
2093
|
import { jsx as jsx40, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
2210
|
-
var SvgIconRetail = (props) => /* @__PURE__ */ jsxs30("svg", {
|
|
2211
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
2094
|
+
var SvgIconRetail = (props) => /* @__PURE__ */ jsxs30("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2212
2095
|
/* @__PURE__ */ jsx40(
|
|
2213
2096
|
"path",
|
|
2214
2097
|
{
|
|
@@ -2230,27 +2113,23 @@ var SvgIconRetail = (props) => /* @__PURE__ */ jsxs30("svg", {
|
|
|
2230
2113
|
d: "M32 28.9h-.2v.1c.1 0 .1 0 .2-.1z"
|
|
2231
2114
|
}
|
|
2232
2115
|
)
|
|
2233
|
-
|
|
2234
|
-
});
|
|
2116
|
+
] });
|
|
2235
2117
|
var IconRetail_default = SvgIconRetail;
|
|
2236
2118
|
|
|
2237
2119
|
// src/components/icons/IconRuns.tsx
|
|
2238
2120
|
import { jsx as jsx41 } from "react/jsx-runtime";
|
|
2239
|
-
var SvgIconRuns = (props) => /* @__PURE__ */ jsx41("svg", {
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
)
|
|
2247
|
-
});
|
|
2121
|
+
var SvgIconRuns = (props) => /* @__PURE__ */ jsx41("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx41(
|
|
2122
|
+
"path",
|
|
2123
|
+
{
|
|
2124
|
+
className: "icon-runs_svg__st0",
|
|
2125
|
+
d: "M37.2 23.5h-3.7v-4.9h-17c-1.3 0-2.4 1.1-2.4 2.4v13.4h2.4c0 2 1.6 3.7 3.7 3.7s3.7-1.6 3.7-3.7h7.3c0 2 1.6 3.7 3.7 3.7s3.7-1.6 3.7-3.7H41v-6.1l-3.8-4.8zm-.6 1.8l2.4 3h-5.4v-3h3zM20.2 35.7c-.7 0-1.2-.5-1.2-1.2s.5-1.2 1.2-1.2 1.2.5 1.2 1.2-.5 1.2-1.2 1.2zm2.7-3.7c-.7-.7-1.6-1.2-2.7-1.2s-2 .5-2.7 1.2h-.9V21h14.6v11h-8.3zm11.9 3.7c-.7 0-1.2-.5-1.2-1.2s.5-1.2 1.2-1.2 1.2.5 1.2 1.2-.5 1.2-1.2 1.2z"
|
|
2126
|
+
}
|
|
2127
|
+
) });
|
|
2248
2128
|
var IconRuns_default = SvgIconRuns;
|
|
2249
2129
|
|
|
2250
2130
|
// src/components/icons/IconScales.tsx
|
|
2251
2131
|
import { jsx as jsx42, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
2252
|
-
var SvgIconScales = (props) => /* @__PURE__ */ jsxs31("svg", {
|
|
2253
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
2132
|
+
var SvgIconScales = (props) => /* @__PURE__ */ jsxs31("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2254
2133
|
/* @__PURE__ */ jsx42(
|
|
2255
2134
|
"path",
|
|
2256
2135
|
{
|
|
@@ -2272,34 +2151,29 @@ var SvgIconScales = (props) => /* @__PURE__ */ jsxs31("svg", {
|
|
|
2272
2151
|
d: "M28.2 32.8v-1.1c0-.3-.2-.5-.5-.5s-.5.2-.5.5v1.1c-.3.2-.5.5-.5.9 0 .6.5 1 1 1s1-.5 1-1c0-.3-.2-.7-.5-.9z"
|
|
2273
2152
|
}
|
|
2274
2153
|
)
|
|
2275
|
-
|
|
2276
|
-
});
|
|
2154
|
+
] });
|
|
2277
2155
|
var IconScales_default = SvgIconScales;
|
|
2278
2156
|
|
|
2279
2157
|
// src/components/icons/IconSearchCategories.tsx
|
|
2280
2158
|
import { jsx as jsx43 } from "react/jsx-runtime";
|
|
2281
|
-
var SvgIconSearchCategories = (props) => /* @__PURE__ */ jsx43("svg", {
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
)
|
|
2289
|
-
});
|
|
2159
|
+
var SvgIconSearchCategories = (props) => /* @__PURE__ */ jsx43("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx43(
|
|
2160
|
+
"path",
|
|
2161
|
+
{
|
|
2162
|
+
className: "icon-search-categories_svg__st0",
|
|
2163
|
+
d: "M32.9,31h-1l-0.4-0.4c1.3-1.4,2-3.3,2-5.3c0-4.5-3.7-8.2-8.2-8.2s-8.2,3.7-8.2,8.2s3.7,8.2,8.2,8.2\n c2,0,3.9-0.8,5.3-2l0.4,0.4v1l6.3,6.3l1.9-1.9L32.9,31z M25.3,31c-3.1,0-5.7-2.5-5.7-5.7s2.5-5.7,5.7-5.7s5.7,2.5,5.7,5.7\n S28.4,31,25.3,31z"
|
|
2164
|
+
}
|
|
2165
|
+
) });
|
|
2290
2166
|
var IconSearchCategories_default = SvgIconSearchCategories;
|
|
2291
2167
|
|
|
2292
2168
|
// src/components/icons/IconSetting.tsx
|
|
2293
2169
|
import { jsx as jsx44 } from "react/jsx-runtime";
|
|
2294
|
-
var SvgIconSetting = (props) => /* @__PURE__ */ jsx44("svg", {
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
)
|
|
2302
|
-
});
|
|
2170
|
+
var SvgIconSetting = (props) => /* @__PURE__ */ jsx44("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx44(
|
|
2171
|
+
"path",
|
|
2172
|
+
{
|
|
2173
|
+
className: "icon-setting_svg__st0",
|
|
2174
|
+
d: "M36.3 29.5c0-.4.1-.8.1-1.2 0-.4 0-.8-.1-1.2l2.5-2c.2-.2.3-.5.1-.8l-2.4-4.1c-.1-.2-.3-.3-.5-.3h-.2l-3 1.2c-.6-.5-1.3-.9-2-1.2l-.3-2.9c0-.3-.3-.5-.6-.5h-4.7c-.3 0-.5.2-.6.5l-.5 3.1c-.7.3-1.4.7-2 1.2l-3-1.2h-.2c-.2 0-.4.1-.5.3L16 24.5c-.2.3-.1.6.1.8l2.5 2c0 .4-.1.8-.1 1.2 0 .4 0 .8.1 1.2l-2.5 2c-.1-.1-.2.3-.1.5l2.4 4.1c.1.2.3.3.5.3h.2l3-1.2c.6.5 1.3.9 2 1.2l.5 3.1c0 .3.3.5.6.5h4.7c.3 0 .5-.2.6-.5l.5-3.1c.7-.3 1.4-.7 2-1.2l3 1.2h.2c.2 0 .4-.1.5-.3l2.4-4.1c.1-.3.1-.6-.1-.8l-2.7-1.9zm-2.3-2c0 .4.1.6.1.9 0 .2 0 .5-.1.9l-.2 1.3 1.1.8 1.3 1-.8 1.4-1.5-.6-1.2-.5-1.1.8c-.5.4-1 .7-1.5.9l-1.3.5-.2 1.3-.2 1.6h-1.7l-.2-1.6-.2-1.3-1.3-.5c-.5-.2-1-.5-1.5-.8l-1.1-.8-1.3.5-1.5.6-.8-1.4 1.3-1 1.1-.8-.2-1.5c0-.4-.1-.6-.1-.9 0-.2 0-.5.1-.9l.2-1.3-1.1-.8-1.3-1 .8-1.4 1.5.6 1.2.5 1.1-.8c.5-.4 1-.7 1.5-.9l1.3-.5.2-1.3.2-1.6h1.6l.2 1.6.2 1.3 1.3.5c.5.2 1 .5 1.5.8l1.1.8 1.3-.5 1.5-.6.8 1.4-1.3 1-1.1.8c.1.1.3 1.5.3 1.5zm-6.5-3.9c-2.6 0-4.7 2.1-4.7 4.7s2.1 4.7 4.7 4.7 4.7-2.1 4.7-4.7-2.1-4.7-4.7-4.7zm0 7.1c-1.3 0-2.4-1.1-2.4-2.4 0-1.3 1.1-2.4 2.4-2.4s2.4 1.1 2.4 2.4c0 1.4-1.1 2.4-2.4 2.4z"
|
|
2175
|
+
}
|
|
2176
|
+
) });
|
|
2303
2177
|
var IconSetting_default = SvgIconSetting;
|
|
2304
2178
|
|
|
2305
2179
|
// src/components/icons/IconSnail.tsx
|
|
@@ -2319,8 +2193,7 @@ var IconSnail_default = SvgIconSnail;
|
|
|
2319
2193
|
|
|
2320
2194
|
// src/components/icons/IconSpecialPrice.tsx
|
|
2321
2195
|
import { jsx as jsx46, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
2322
|
-
var SvgIconSpecialPrice = (props) => /* @__PURE__ */ jsxs32("svg", {
|
|
2323
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
2196
|
+
var SvgIconSpecialPrice = (props) => /* @__PURE__ */ jsxs32("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2324
2197
|
/* @__PURE__ */ jsx46(
|
|
2325
2198
|
"path",
|
|
2326
2199
|
{
|
|
@@ -2349,14 +2222,12 @@ var SvgIconSpecialPrice = (props) => /* @__PURE__ */ jsxs32("svg", {
|
|
|
2349
2222
|
d: "M21.4 19.3c-.7 0-1.2.6-1.2 1.2s.6 1.2 1.2 1.2c.7 0 1.2-.6 1.2-1.2s-.5-1.2-1.2-1.2z"
|
|
2350
2223
|
}
|
|
2351
2224
|
)
|
|
2352
|
-
|
|
2353
|
-
});
|
|
2225
|
+
] });
|
|
2354
2226
|
var IconSpecialPrice_default = SvgIconSpecialPrice;
|
|
2355
2227
|
|
|
2356
2228
|
// src/components/icons/IconStock.tsx
|
|
2357
2229
|
import { jsx as jsx47, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2358
|
-
var SvgIconStock = (props) => /* @__PURE__ */ jsxs33("svg", {
|
|
2359
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
2230
|
+
var SvgIconStock = (props) => /* @__PURE__ */ jsxs33("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2360
2231
|
/* @__PURE__ */ jsx47(
|
|
2361
2232
|
"path",
|
|
2362
2233
|
{
|
|
@@ -2371,8 +2242,7 @@ var SvgIconStock = (props) => /* @__PURE__ */ jsxs33("svg", {
|
|
|
2371
2242
|
d: "M40.2 40.3H14.8V21.6h2.3v16.5h23.1z"
|
|
2372
2243
|
}
|
|
2373
2244
|
)
|
|
2374
|
-
|
|
2375
|
-
});
|
|
2245
|
+
] });
|
|
2376
2246
|
var IconStock_default = SvgIconStock;
|
|
2377
2247
|
|
|
2378
2248
|
// src/components/icons/IconStrawberry.tsx
|
|
@@ -2400,8 +2270,7 @@ var IconStrawberry_default = SvgIconStrawberry;
|
|
|
2400
2270
|
|
|
2401
2271
|
// src/components/icons/IconSupplier.tsx
|
|
2402
2272
|
import { jsx as jsx49, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2403
|
-
var SvgIconSupplier = (props) => /* @__PURE__ */ jsxs34("svg", {
|
|
2404
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
2273
|
+
var SvgIconSupplier = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2405
2274
|
/* @__PURE__ */ jsx49(
|
|
2406
2275
|
"path",
|
|
2407
2276
|
{
|
|
@@ -2423,14 +2292,12 @@ var SvgIconSupplier = (props) => /* @__PURE__ */ jsxs34("svg", {
|
|
|
2423
2292
|
d: "M37.4 29.2c-2.4 0-4.5 2-4.5 4.6s2 4.5 4.6 4.5c2.4 0 4.5-2 4.5-4.6 0-2.5-2-4.5-4.6-4.5zm-.1 6.5c-1.1 0-1.9-.9-1.9-1.9 0-1 .9-1.9 1.9-1.9 1.1 0 1.9.9 1.9 1.9.1 1-.8 1.9-1.9 1.9z"
|
|
2424
2293
|
}
|
|
2425
2294
|
)
|
|
2426
|
-
|
|
2427
|
-
});
|
|
2295
|
+
] });
|
|
2428
2296
|
var IconSupplier_default = SvgIconSupplier;
|
|
2429
2297
|
|
|
2430
2298
|
// src/components/icons/IconSupplierPrices.tsx
|
|
2431
2299
|
import { jsx as jsx50, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
2432
|
-
var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs35("svg", {
|
|
2433
|
-
viewBox: "0 0 55 56.7", ...props, children: [
|
|
2300
|
+
var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs35("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2434
2301
|
/* @__PURE__ */ jsx50(
|
|
2435
2302
|
"path",
|
|
2436
2303
|
{
|
|
@@ -2452,8 +2319,7 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs35("svg", {
|
|
|
2452
2319
|
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"
|
|
2453
2320
|
}
|
|
2454
2321
|
),
|
|
2455
|
-
/* @__PURE__ */ jsxs35("g", {
|
|
2456
|
-
children: [
|
|
2322
|
+
/* @__PURE__ */ jsxs35("g", { children: [
|
|
2457
2323
|
/* @__PURE__ */ jsx50(
|
|
2458
2324
|
"path",
|
|
2459
2325
|
{
|
|
@@ -2475,45 +2341,34 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs35("svg", {
|
|
|
2475
2341
|
d: "M41.8 31.2c-2.3 0-4.1 1.9-4.1 4.2 0 2.3 1.9 4.1 4.2 4.1 2.3 0 4.1-1.9 4.1-4.2.1-2.2-1.8-4.1-4.2-4.1zm-.1 6c-1 0-1.8-.8-1.8-1.8 0-.9.8-1.7 1.8-1.7s1.8.8 1.8 1.7c0 1-.8 1.8-1.8 1.8z"
|
|
2476
2342
|
}
|
|
2477
2343
|
)
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
]
|
|
2481
|
-
});
|
|
2344
|
+
] })
|
|
2345
|
+
] });
|
|
2482
2346
|
var IconSupplierPrices_default = SvgIconSupplierPrices;
|
|
2483
2347
|
|
|
2484
2348
|
// src/components/icons/IconUserManagement.tsx
|
|
2485
2349
|
import { jsx as jsx51, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
2486
|
-
var SvgIconUserManagement = () => /* @__PURE__ */ jsx51("svg", {
|
|
2487
|
-
xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 55 56.7", children: /* @__PURE__ */ jsx51("g", {
|
|
2488
|
-
children: /* @__PURE__ */ jsxs36("g", {
|
|
2489
|
-
id: "Layer_1", children: [
|
|
2350
|
+
var SvgIconUserManagement = () => /* @__PURE__ */ jsx51("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 55 56.7", children: /* @__PURE__ */ jsx51("g", { children: /* @__PURE__ */ jsxs36("g", { id: "Layer_1", children: [
|
|
2490
2351
|
/* @__PURE__ */ jsx51("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" }),
|
|
2491
2352
|
/* @__PURE__ */ jsx51("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" }),
|
|
2492
2353
|
/* @__PURE__ */ jsx51("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" }),
|
|
2493
2354
|
/* @__PURE__ */ jsx51("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" })
|
|
2494
|
-
|
|
2495
|
-
})
|
|
2496
|
-
})
|
|
2497
|
-
});
|
|
2355
|
+
] }) }) });
|
|
2498
2356
|
var IconUserManagement_default = SvgIconUserManagement;
|
|
2499
2357
|
|
|
2500
2358
|
// src/components/icons/IconVkc.tsx
|
|
2501
2359
|
import { jsx as jsx52 } from "react/jsx-runtime";
|
|
2502
|
-
var SvgIconVkc = (props) => /* @__PURE__ */ jsx52("svg", {
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
)
|
|
2510
|
-
});
|
|
2360
|
+
var SvgIconVkc = (props) => /* @__PURE__ */ jsx52("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx52(
|
|
2361
|
+
"path",
|
|
2362
|
+
{
|
|
2363
|
+
className: "icon-vkc_svg__st0",
|
|
2364
|
+
d: "M32.8 16.6h.9c.8 0 1.4.7 1.4 1.4s-.7 1.4-1.4 1.4h-.9c-.8 0-1.4-.7-1.4-1.4s.6-1.4 1.4-1.4zM17.3 16.6h9.2c.8 0 1.4.7 1.4 1.4s-.7 1.4-1.4 1.4h-9.2c-.8 0-1.4-.7-1.4-1.4s.6-1.4 1.4-1.4zM18.2 40.1h-.9c-.8 0-1.4-.7-1.4-1.4 0-.8.7-1.4 1.4-1.4h.9c.8 0 1.4.7 1.4 1.4s-.6 1.4-1.4 1.4zM26.5 40.1h-.9c-.8 0-1.4-.7-1.4-1.4 0-.8.7-1.4 1.4-1.4h.9c.8 0 1.4.7 1.4 1.4.1.7-.6 1.4-1.4 1.4zM38.6 39.7c-.3.3-.7.4-1 .4-.4 0-.8-.1-1-.4-.3-.3-.4-.7-.4-1 0-.4.1-.8.4-1 .5-.5 1.4-.5 2 0 .3.3.4.7.4 1 0 .3-.1.6-.4 1zM37.6 33.2H17.3c-.8 0-1.4-.7-1.4-1.4s.7-1.4 1.4-1.4h20.4c.8 0 1.4.7 1.4 1.4-.1.7-.7 1.4-1.5 1.4zM37.6 26.4H17.3c-.8 0-1.4-.7-1.4-1.4s.7-1.4 1.4-1.4h20.4c.8 0 1.4.7 1.4 1.4s-.7 1.4-1.5 1.4z"
|
|
2365
|
+
}
|
|
2366
|
+
) });
|
|
2511
2367
|
var IconVkc_default = SvgIconVkc;
|
|
2512
2368
|
|
|
2513
2369
|
// src/components/icons/SamsaraLogo.tsx
|
|
2514
2370
|
import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2515
|
-
var SvgSamsaraLogo = (props) => /* @__PURE__ */ jsxs37("svg", {
|
|
2516
|
-
viewBox: "0 0 36 52.4", ...props, children: [
|
|
2371
|
+
var SvgSamsaraLogo = (props) => /* @__PURE__ */ jsxs37("svg", { viewBox: "0 0 36 52.4", ...props, children: [
|
|
2517
2372
|
/* @__PURE__ */ jsx53(
|
|
2518
2373
|
"path",
|
|
2519
2374
|
{
|
|
@@ -2528,8 +2383,7 @@ var SvgSamsaraLogo = (props) => /* @__PURE__ */ jsxs37("svg", {
|
|
|
2528
2383
|
d: "M18.5 34.2c-.2 0-.4.1-.5.1-.2 0-.4 0-.5-.1-8-1.9-13.5-8.5-13.5-16C4 11.3 8.9 5.5 14.7 5.5c1 0 2.1.2 3.1.5h.4c1-.3 2.1-.5 3.1-.5 5.8 0 10.7 5.8 10.7 12.7 0 7.5-5.5 14.1-13.5 16zm12.8-1.8c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zm0 4.2c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zm-4.2 2.2c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zm0 4.2c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zm-4.2-2.1c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7V40c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zm0 4.3c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zm-4.3-6.4c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zm0 4.2c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zm-4.2-2.1c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7V40c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zm0 4.3c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zm-4.2-6.4c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zm0 4.2c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v.9zM6 32.4c0 .3-.3.6-.6.6s-.7-.3-.7-.7v-.9c0-.4.3-.7.7-.7s.6.4.6.7v1zm0 4.2c0 .4-.3.7-.7.7s-.6-.3-.6-.7v-.9c0-.4.3-.7.7-.7s.6.3.6.7v.9zM18 2.2C8.9 2.2 1.5 9.7 1.5 18.9v14.5c0 9.2 7.4 16.7 16.5 16.7s16.5-7.5 16.5-16.7V18.9c0-9.2-7.4-16.7-16.5-16.7z"
|
|
2529
2384
|
}
|
|
2530
2385
|
)
|
|
2531
|
-
|
|
2532
|
-
});
|
|
2386
|
+
] });
|
|
2533
2387
|
var SamsaraLogo_default = SvgSamsaraLogo;
|
|
2534
2388
|
|
|
2535
2389
|
// src/components/icons/index.tsx
|
|
@@ -3078,10 +2932,8 @@ var ConfirmationDialog = ({
|
|
|
3078
2932
|
}
|
|
3079
2933
|
return content;
|
|
3080
2934
|
};
|
|
3081
|
-
return /* @__PURE__ */ jsxs38(Dialog3, {
|
|
3082
|
-
|
|
3083
|
-
/* @__PURE__ */ jsxs38(Box8, {
|
|
3084
|
-
className: classes.content, children: [
|
|
2935
|
+
return /* @__PURE__ */ jsxs38(Dialog3, { onClose: closeModal, open: isOpen, maxWidth: "lg", children: [
|
|
2936
|
+
/* @__PURE__ */ jsxs38(Box8, { className: classes.content, children: [
|
|
3085
2937
|
/* @__PURE__ */ jsx67(Typography7, { className: classes.title, variant: "h6", children: title }),
|
|
3086
2938
|
/* @__PURE__ */ jsx67(
|
|
3087
2939
|
Box8,
|
|
@@ -3095,35 +2947,31 @@ var ConfirmationDialog = ({
|
|
|
3095
2947
|
children: contentComponent()
|
|
3096
2948
|
}
|
|
3097
2949
|
)
|
|
3098
|
-
|
|
3099
|
-
}),
|
|
2950
|
+
] }),
|
|
3100
2951
|
/* @__PURE__ */ jsx67(Divider, {}),
|
|
3101
|
-
/* @__PURE__ */ jsxs38(DialogActions2, {
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
})
|
|
3125
|
-
]
|
|
3126
|
-
});
|
|
2952
|
+
/* @__PURE__ */ jsxs38(DialogActions2, { className: classes.footer, children: [
|
|
2953
|
+
!hideCancel && /* @__PURE__ */ jsx67(
|
|
2954
|
+
FilledButton_default,
|
|
2955
|
+
{
|
|
2956
|
+
className: classes.button,
|
|
2957
|
+
color: "default",
|
|
2958
|
+
copy: cancelCopy || "Cancel",
|
|
2959
|
+
disabled: isLoading,
|
|
2960
|
+
onClick: closeModal
|
|
2961
|
+
}
|
|
2962
|
+
),
|
|
2963
|
+
!hideConfirm && /* @__PURE__ */ jsx67(
|
|
2964
|
+
FilledButton_default,
|
|
2965
|
+
{
|
|
2966
|
+
className: classes.button,
|
|
2967
|
+
color: "primary",
|
|
2968
|
+
copy: ctaText || "Confirm",
|
|
2969
|
+
disabled: isLoading,
|
|
2970
|
+
onClick: handleConfirm
|
|
2971
|
+
}
|
|
2972
|
+
)
|
|
2973
|
+
] })
|
|
2974
|
+
] });
|
|
3127
2975
|
};
|
|
3128
2976
|
ConfirmationDialog.defaultProps = {
|
|
3129
2977
|
ctaText: "",
|
|
@@ -3414,32 +3262,28 @@ var ControlledNumericField = ({
|
|
|
3414
3262
|
slotProps: {
|
|
3415
3263
|
htmlInput: { min, max, step },
|
|
3416
3264
|
input: {
|
|
3417
|
-
endAdornment: /* @__PURE__ */ jsx70(InputAdornment, {
|
|
3418
|
-
position: "end", children: /* @__PURE__ */ jsxs39(Box9, {
|
|
3419
|
-
className: classes.textFieldButtons, children: [
|
|
3265
|
+
endAdornment: /* @__PURE__ */ jsx70(InputAdornment, { position: "end", children: /* @__PURE__ */ jsxs39(Box9, { className: classes.textFieldButtons, children: [
|
|
3420
3266
|
/* @__PURE__ */ jsx70(
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3267
|
+
IconButton2,
|
|
3268
|
+
{
|
|
3269
|
+
disableRipple: true,
|
|
3270
|
+
className: classes.arrowButton,
|
|
3271
|
+
onClick: incrementValue(field),
|
|
3272
|
+
"data-testid": "arrow-up",
|
|
3273
|
+
children: /* @__PURE__ */ jsx70(KeyboardArrowUpIcon, { sx: { fontSize: 15 } })
|
|
3274
|
+
}
|
|
3275
|
+
),
|
|
3430
3276
|
/* @__PURE__ */ jsx70(
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
})
|
|
3442
|
-
})
|
|
3277
|
+
IconButton2,
|
|
3278
|
+
{
|
|
3279
|
+
disableRipple: true,
|
|
3280
|
+
className: classes.arrowButton,
|
|
3281
|
+
onClick: decrementValue(field),
|
|
3282
|
+
"data-testid": "arrow-down",
|
|
3283
|
+
children: /* @__PURE__ */ jsx70(KeyboardArrowDownIcon, { sx: { fontSize: 15 } })
|
|
3284
|
+
}
|
|
3285
|
+
)
|
|
3286
|
+
] }) })
|
|
3443
3287
|
}
|
|
3444
3288
|
}
|
|
3445
3289
|
}
|
|
@@ -3488,29 +3332,29 @@ var ControlledSelectWithArray = ({
|
|
|
3488
3332
|
children: [
|
|
3489
3333
|
/* @__PURE__ */ jsx71(InputLabel, { shrink: true, error: !!fieldState.error, children: label }),
|
|
3490
3334
|
/* @__PURE__ */ jsxs40(
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3335
|
+
Select,
|
|
3336
|
+
{
|
|
3337
|
+
variant: "standard",
|
|
3338
|
+
native: true,
|
|
3339
|
+
...field,
|
|
3340
|
+
value: field.value ?? "",
|
|
3341
|
+
onChange: (e) => {
|
|
3342
|
+
const selectedValue = e.target.value;
|
|
3343
|
+
if (onChange) {
|
|
3344
|
+
onChange(selectedValue);
|
|
3345
|
+
}
|
|
3346
|
+
fieldOnChange(e);
|
|
3347
|
+
if (revalidateFormFunction) {
|
|
3348
|
+
revalidateFormFunction();
|
|
3349
|
+
}
|
|
3350
|
+
},
|
|
3351
|
+
error: !!fieldState.error,
|
|
3352
|
+
children: [
|
|
3509
3353
|
/* @__PURE__ */ jsx71("option", { "aria-label": "None" }),
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3354
|
+
options?.map((item) => /* @__PURE__ */ jsx71("option", { value: item, children: item }, item))
|
|
3355
|
+
]
|
|
3356
|
+
}
|
|
3357
|
+
),
|
|
3514
3358
|
/* @__PURE__ */ jsx71(FormHelperText, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3515
3359
|
]
|
|
3516
3360
|
}
|
|
@@ -3558,37 +3402,37 @@ var ControlledSelectWithObject = ({
|
|
|
3558
3402
|
children: [
|
|
3559
3403
|
/* @__PURE__ */ jsx72(InputLabel2, { error: !!fieldState.error, children: label }),
|
|
3560
3404
|
/* @__PURE__ */ jsxs41(
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3405
|
+
Select2,
|
|
3406
|
+
{
|
|
3407
|
+
variant: "standard",
|
|
3408
|
+
native: true,
|
|
3409
|
+
...field,
|
|
3410
|
+
value: field.value ?? "",
|
|
3411
|
+
onChange: (e) => {
|
|
3412
|
+
const selectedValue = e.target.value;
|
|
3413
|
+
if (onChange) {
|
|
3414
|
+
onChange(selectedValue);
|
|
3415
|
+
}
|
|
3416
|
+
fieldOnChange(e);
|
|
3417
|
+
if (revalidateFormFunction) {
|
|
3418
|
+
revalidateFormFunction();
|
|
3419
|
+
}
|
|
3420
|
+
},
|
|
3421
|
+
error: !!fieldState.error,
|
|
3422
|
+
children: [
|
|
3579
3423
|
/* @__PURE__ */ jsx72("option", { "aria-label": "None" }),
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3424
|
+
options?.map((option) => /* @__PURE__ */ jsx72(
|
|
3425
|
+
"option",
|
|
3426
|
+
{
|
|
3427
|
+
disabled: listToDisableFromOptions ? listToDisableFromOptions.includes(option.value) : false,
|
|
3428
|
+
value: option.value,
|
|
3429
|
+
children: option.label
|
|
3430
|
+
},
|
|
3431
|
+
option.value
|
|
3432
|
+
))
|
|
3433
|
+
]
|
|
3434
|
+
}
|
|
3435
|
+
),
|
|
3592
3436
|
/* @__PURE__ */ jsx72(FormHelperText2, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3593
3437
|
]
|
|
3594
3438
|
}
|
|
@@ -3663,31 +3507,30 @@ var ControlledValidTextInput = ({
|
|
|
3663
3507
|
{
|
|
3664
3508
|
control,
|
|
3665
3509
|
name: fieldName,
|
|
3666
|
-
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */ jsx73(Box10, {
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
children: [
|
|
3510
|
+
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */ jsx73(Box10, { className: classes.fullWidthWrapper, children: /* @__PURE__ */ jsx73(
|
|
3511
|
+
TextField3,
|
|
3512
|
+
{
|
|
3513
|
+
...controlledField,
|
|
3514
|
+
value: controlledField?.value || "",
|
|
3515
|
+
fullWidth: true,
|
|
3516
|
+
id: fieldName,
|
|
3517
|
+
"data-testid": dataTestId ? `${dataTestId}-input` : `${convertUnderscoreToHyphen2(fieldName)}-input`,
|
|
3518
|
+
label,
|
|
3519
|
+
error: !!fieldState.error,
|
|
3520
|
+
multiline: true,
|
|
3521
|
+
autoComplete: "off",
|
|
3522
|
+
disabled,
|
|
3523
|
+
variant,
|
|
3524
|
+
helperText: /* @__PURE__ */ jsxs42(
|
|
3525
|
+
Box10,
|
|
3526
|
+
{
|
|
3527
|
+
component: "span",
|
|
3528
|
+
sx: { whiteSpace: "pre-wrap" },
|
|
3529
|
+
className: classNames({
|
|
3530
|
+
[classes.helperTextWrapper]: !!maxLength
|
|
3531
|
+
}),
|
|
3532
|
+
"data-testid": dataTestId ? `${dataTestId}-helper-text` : `${convertUnderscoreToHyphen2(fieldName)}-helper-text`,
|
|
3533
|
+
children: [
|
|
3691
3534
|
/* @__PURE__ */ jsx73(
|
|
3692
3535
|
Box10,
|
|
3693
3536
|
{
|
|
@@ -3698,14 +3541,13 @@ var ControlledValidTextInput = ({
|
|
|
3698
3541
|
children: fieldState.error?.message ?? helperText
|
|
3699
3542
|
}
|
|
3700
3543
|
),
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
})
|
|
3544
|
+
!!maxLength && /* @__PURE__ */ jsx73(Box10, { component: "span", children: `${watch(fieldName)?.length ?? 0}/${maxLength}` })
|
|
3545
|
+
]
|
|
3546
|
+
}
|
|
3547
|
+
),
|
|
3548
|
+
onBlur: () => handleBlurValidationAndSubmit(controlledField, fieldState)
|
|
3549
|
+
}
|
|
3550
|
+
) })
|
|
3709
3551
|
}
|
|
3710
3552
|
)
|
|
3711
3553
|
}
|
|
@@ -3772,34 +3614,28 @@ var DataGrid = ({
|
|
|
3772
3614
|
style: {
|
|
3773
3615
|
height: height || rows.length * rowHeight + headerAndFooterHeight
|
|
3774
3616
|
},
|
|
3775
|
-
children: /* @__PURE__ */ jsx74(Paper2, {
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
i
|
|
3786
|
-
))
|
|
3787
|
-
}) : /* @__PURE__ */ jsxs43(Fragment, {
|
|
3788
|
-
children: [
|
|
3617
|
+
children: /* @__PURE__ */ jsx74(Paper2, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx74("div", { children: [...Array(Math.floor(10))].map((i) => /* @__PURE__ */ jsx74(
|
|
3618
|
+
Skeleton,
|
|
3619
|
+
{
|
|
3620
|
+
animation: "pulse",
|
|
3621
|
+
style: { margin: "8px", opacity: 0.4 },
|
|
3622
|
+
variant: "rectangular",
|
|
3623
|
+
height: rowHeight
|
|
3624
|
+
},
|
|
3625
|
+
i
|
|
3626
|
+
)) }) : /* @__PURE__ */ jsxs43(Fragment, { children: [
|
|
3789
3627
|
/* @__PURE__ */ jsx74(
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
})
|
|
3802
|
-
})
|
|
3628
|
+
MUIDataGrid,
|
|
3629
|
+
{
|
|
3630
|
+
rows,
|
|
3631
|
+
columns,
|
|
3632
|
+
loading: isLoading,
|
|
3633
|
+
sortModel,
|
|
3634
|
+
onSortModelChange: (model) => setSortModel(model)
|
|
3635
|
+
}
|
|
3636
|
+
),
|
|
3637
|
+
children
|
|
3638
|
+
] }) })
|
|
3803
3639
|
}
|
|
3804
3640
|
);
|
|
3805
3641
|
};
|
|
@@ -3922,23 +3758,17 @@ var DeleteSubstitutionDialogContent = ({
|
|
|
3922
3758
|
deleteSubstitution
|
|
3923
3759
|
}) => {
|
|
3924
3760
|
const { classes } = useStyles22();
|
|
3925
|
-
return /* @__PURE__ */ jsxs44(Fragment2, {
|
|
3926
|
-
children: [
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
]
|
|
3935
|
-
}),
|
|
3936
|
-
"This action will permanently remove all data and history associated with this substitution, and it cannot be undone."
|
|
3937
|
-
]
|
|
3938
|
-
}),
|
|
3761
|
+
return /* @__PURE__ */ jsxs44(Fragment2, { children: [
|
|
3762
|
+
/* @__PURE__ */ jsxs44(Alert, { severity: "warning", className: classes.alert, children: [
|
|
3763
|
+
/* @__PURE__ */ jsxs44(AlertTitle, { children: [
|
|
3764
|
+
"Are you sure you want to delete the substitution \u201C",
|
|
3765
|
+
substitutionName,
|
|
3766
|
+
"\u201D?"
|
|
3767
|
+
] }),
|
|
3768
|
+
"This action will permanently remove all data and history associated with this substitution, and it cannot be undone."
|
|
3769
|
+
] }),
|
|
3939
3770
|
/* @__PURE__ */ jsx76(Typography8, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
3940
|
-
/* @__PURE__ */ jsxs44(Box11, {
|
|
3941
|
-
className: classes.bottomBar, children: [
|
|
3771
|
+
/* @__PURE__ */ jsxs44(Box11, { className: classes.bottomBar, children: [
|
|
3942
3772
|
/* @__PURE__ */ jsx76(ExtendedButton_default, { copy: "Cancel", onClick: closeDialog }),
|
|
3943
3773
|
/* @__PURE__ */ jsx76(
|
|
3944
3774
|
ExtendedButton_default,
|
|
@@ -3949,10 +3779,8 @@ var DeleteSubstitutionDialogContent = ({
|
|
|
3949
3779
|
onClick: deleteSubstitution
|
|
3950
3780
|
}
|
|
3951
3781
|
)
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
]
|
|
3955
|
-
});
|
|
3782
|
+
] })
|
|
3783
|
+
] });
|
|
3956
3784
|
};
|
|
3957
3785
|
var DeleteSubstitutionDialogContent_default = memo10(DeleteSubstitutionDialogContent);
|
|
3958
3786
|
|
|
@@ -3978,23 +3806,17 @@ var DeleteUserDialogContent = ({
|
|
|
3978
3806
|
deleteUser
|
|
3979
3807
|
}) => {
|
|
3980
3808
|
const { classes } = useStyles23();
|
|
3981
|
-
return /* @__PURE__ */ jsxs45(Fragment3, {
|
|
3982
|
-
children: [
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
]
|
|
3991
|
-
}),
|
|
3992
|
-
"This action will permanently remove all data and history associated with this user, and it cannot be undone."
|
|
3993
|
-
]
|
|
3994
|
-
}),
|
|
3809
|
+
return /* @__PURE__ */ jsxs45(Fragment3, { children: [
|
|
3810
|
+
/* @__PURE__ */ jsxs45(Alert2, { severity: "warning", className: classes.alert, children: [
|
|
3811
|
+
/* @__PURE__ */ jsxs45(AlertTitle2, { children: [
|
|
3812
|
+
"Are you sure you want to delete the user ",
|
|
3813
|
+
userName,
|
|
3814
|
+
"?"
|
|
3815
|
+
] }),
|
|
3816
|
+
"This action will permanently remove all data and history associated with this user, and it cannot be undone."
|
|
3817
|
+
] }),
|
|
3995
3818
|
/* @__PURE__ */ jsx77(Typography9, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
3996
|
-
/* @__PURE__ */ jsxs45(Box12, {
|
|
3997
|
-
className: classes.bottomBar, children: [
|
|
3819
|
+
/* @__PURE__ */ jsxs45(Box12, { className: classes.bottomBar, children: [
|
|
3998
3820
|
/* @__PURE__ */ jsx77(ExtendedButton_default, { color: "default", copy: "Cancel", onClick: closeDialog }),
|
|
3999
3821
|
/* @__PURE__ */ jsx77(
|
|
4000
3822
|
ExtendedButton_default,
|
|
@@ -4005,10 +3827,8 @@ var DeleteUserDialogContent = ({
|
|
|
4005
3827
|
onClick: deleteUser
|
|
4006
3828
|
}
|
|
4007
3829
|
)
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
]
|
|
4011
|
-
});
|
|
3830
|
+
] })
|
|
3831
|
+
] });
|
|
4012
3832
|
};
|
|
4013
3833
|
var DeleteUserDialogContent_default = memo11(DeleteUserDialogContent);
|
|
4014
3834
|
|
|
@@ -4041,32 +3861,30 @@ var FileCard = ({ document: document2 }) => {
|
|
|
4041
3861
|
},
|
|
4042
3862
|
children: [
|
|
4043
3863
|
/* @__PURE__ */ jsx78(
|
|
4044
|
-
|
|
4045
|
-
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
|
|
4053
|
-
|
|
3864
|
+
Box13,
|
|
3865
|
+
{
|
|
3866
|
+
sx: {
|
|
3867
|
+
display: "flex",
|
|
3868
|
+
justifyContent: "center",
|
|
3869
|
+
alignItems: "center"
|
|
3870
|
+
},
|
|
3871
|
+
children: /* @__PURE__ */ jsx78(DescriptionIcon, { fontSize: "medium", color: "action" })
|
|
3872
|
+
}
|
|
3873
|
+
),
|
|
4054
3874
|
/* @__PURE__ */ jsx78(
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4063
|
-
variant: "body1", children: [
|
|
3875
|
+
Box13,
|
|
3876
|
+
{
|
|
3877
|
+
sx: {
|
|
3878
|
+
display: "flex",
|
|
3879
|
+
alignItems: "center",
|
|
3880
|
+
width: "100%"
|
|
3881
|
+
},
|
|
3882
|
+
children: /* @__PURE__ */ jsxs46(Typography10, { variant: "body1", children: [
|
|
4064
3883
|
metadata.filename,
|
|
4065
3884
|
metadata.extension
|
|
4066
|
-
]
|
|
4067
|
-
}
|
|
4068
|
-
|
|
4069
|
-
)
|
|
3885
|
+
] })
|
|
3886
|
+
}
|
|
3887
|
+
)
|
|
4070
3888
|
]
|
|
4071
3889
|
}
|
|
4072
3890
|
);
|
|
@@ -4170,8 +3988,7 @@ var FilterGroupSelector = ({
|
|
|
4170
3988
|
(prev) => prev.includes(option) ? prev.filter((o) => o !== option) : [...prev, option]
|
|
4171
3989
|
);
|
|
4172
3990
|
};
|
|
4173
|
-
return /* @__PURE__ */ jsxs47(Fragment4, {
|
|
4174
|
-
children: [
|
|
3991
|
+
return /* @__PURE__ */ jsxs47(Fragment4, { children: [
|
|
4175
3992
|
/* @__PURE__ */ jsx80(
|
|
4176
3993
|
ActiveFiltersIconButton_default,
|
|
4177
3994
|
{
|
|
@@ -4191,9 +4008,7 @@ var FilterGroupSelector = ({
|
|
|
4191
4008
|
children: [
|
|
4192
4009
|
/* @__PURE__ */ jsx80(Box14, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ jsx80(Typography12, { variant: "button", children: `Search ${name}` }) }),
|
|
4193
4010
|
/* @__PURE__ */ jsx80(Divider2, {}),
|
|
4194
|
-
/* @__PURE__ */ jsx80(Box14, {
|
|
4195
|
-
className: classes.filterOptions, children: optionsList.map(({ category, options }, index) => /* @__PURE__ */ jsxs47(Box14, {
|
|
4196
|
-
children: [
|
|
4011
|
+
/* @__PURE__ */ jsx80(Box14, { className: classes.filterOptions, children: optionsList.map(({ category, options }, index) => /* @__PURE__ */ jsxs47(Box14, { children: [
|
|
4197
4012
|
/* @__PURE__ */ jsx80(
|
|
4198
4013
|
Typography12,
|
|
4199
4014
|
{
|
|
@@ -4202,51 +4017,44 @@ var FilterGroupSelector = ({
|
|
|
4202
4017
|
children: category
|
|
4203
4018
|
}
|
|
4204
4019
|
),
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
onClick: () => toggleOption(key), children: [
|
|
4020
|
+
options.map((value) => {
|
|
4021
|
+
const key = `${category.replaceAll(" ", "_").toLocaleLowerCase()}${categoryIdentification ? `_${categoryIdentification}` : ""}: ${value}`;
|
|
4022
|
+
return /* @__PURE__ */ jsxs47(MenuItem, { onClick: () => toggleOption(key), children: [
|
|
4209
4023
|
/* @__PURE__ */ jsx80(Checkbox2, { checked: values.includes(key) }),
|
|
4210
4024
|
/* @__PURE__ */ jsx80(ListItemText, { primary: value })
|
|
4211
|
-
|
|
4212
|
-
|
|
4213
|
-
|
|
4214
|
-
|
|
4215
|
-
}, category))
|
|
4216
|
-
}),
|
|
4217
|
-
/* @__PURE__ */ jsxs47(Box14, {
|
|
4218
|
-
display: "flex", children: [
|
|
4025
|
+
] }, value);
|
|
4026
|
+
})
|
|
4027
|
+
] }, category)) }),
|
|
4028
|
+
/* @__PURE__ */ jsxs47(Box14, { display: "flex", children: [
|
|
4219
4029
|
/* @__PURE__ */ jsx80(
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
|
|
4227
|
-
|
|
4030
|
+
ExtendedButton_default,
|
|
4031
|
+
{
|
|
4032
|
+
variant: "text",
|
|
4033
|
+
copy: "Deselect All",
|
|
4034
|
+
disabled: !values.length,
|
|
4035
|
+
onClick: () => {
|
|
4036
|
+
setSelectedOptions([]);
|
|
4037
|
+
setValues([]);
|
|
4038
|
+
}
|
|
4228
4039
|
}
|
|
4229
|
-
|
|
4230
|
-
),
|
|
4040
|
+
),
|
|
4231
4041
|
/* @__PURE__ */ jsx80(
|
|
4232
|
-
|
|
4233
|
-
|
|
4234
|
-
|
|
4235
|
-
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
|
|
4042
|
+
ExtendedButton_default,
|
|
4043
|
+
{
|
|
4044
|
+
color: "primary",
|
|
4045
|
+
variant: "text",
|
|
4046
|
+
copy: "Apply",
|
|
4047
|
+
onClick: () => {
|
|
4048
|
+
handleClickOnApply();
|
|
4049
|
+
handleClose();
|
|
4050
|
+
}
|
|
4240
4051
|
}
|
|
4241
|
-
|
|
4242
|
-
)
|
|
4243
|
-
]
|
|
4244
|
-
})
|
|
4052
|
+
)
|
|
4053
|
+
] })
|
|
4245
4054
|
]
|
|
4246
4055
|
}
|
|
4247
4056
|
)
|
|
4248
|
-
|
|
4249
|
-
});
|
|
4057
|
+
] });
|
|
4250
4058
|
};
|
|
4251
4059
|
var FilterGroupSelector_default = FilterGroupSelector;
|
|
4252
4060
|
|
|
@@ -4308,8 +4116,7 @@ var FilterSimpleSelector = ({
|
|
|
4308
4116
|
(prev) => prev.includes(option) ? prev.filter((o) => o !== option) : [...prev, option]
|
|
4309
4117
|
);
|
|
4310
4118
|
};
|
|
4311
|
-
return /* @__PURE__ */ jsxs48(Fragment5, {
|
|
4312
|
-
children: [
|
|
4119
|
+
return /* @__PURE__ */ jsxs48(Fragment5, { children: [
|
|
4313
4120
|
/* @__PURE__ */ jsx81(
|
|
4314
4121
|
ActiveFiltersIconButton_default,
|
|
4315
4122
|
{
|
|
@@ -4329,48 +4136,41 @@ var FilterSimpleSelector = ({
|
|
|
4329
4136
|
children: [
|
|
4330
4137
|
/* @__PURE__ */ jsx81(Box15, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ jsx81(Typography13, { variant: "button", children: `Search ${name}` }) }),
|
|
4331
4138
|
/* @__PURE__ */ jsx81(Divider3, {}),
|
|
4332
|
-
/* @__PURE__ */ jsx81(Box15, {
|
|
4333
|
-
className: classes.filterOptions, children: options.map((option) => /* @__PURE__ */ jsxs48(MenuItem2, {
|
|
4334
|
-
onClick: () => toggleOption(option), children: [
|
|
4139
|
+
/* @__PURE__ */ jsx81(Box15, { className: classes.filterOptions, children: options.map((option) => /* @__PURE__ */ jsxs48(MenuItem2, { onClick: () => toggleOption(option), children: [
|
|
4335
4140
|
/* @__PURE__ */ jsx81(Checkbox3, { checked: values.includes(option) }),
|
|
4336
4141
|
/* @__PURE__ */ jsx81(ListItemText2, { primary: option })
|
|
4337
|
-
|
|
4338
|
-
}, option))
|
|
4339
|
-
}),
|
|
4142
|
+
] }, option)) }),
|
|
4340
4143
|
/* @__PURE__ */ jsx81(Divider3, {}),
|
|
4341
|
-
/* @__PURE__ */ jsxs48(Box15, {
|
|
4342
|
-
display: "flex", children: [
|
|
4144
|
+
/* @__PURE__ */ jsxs48(Box15, { display: "flex", children: [
|
|
4343
4145
|
/* @__PURE__ */ jsx81(
|
|
4344
|
-
|
|
4345
|
-
|
|
4346
|
-
|
|
4347
|
-
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
|
|
4351
|
-
|
|
4146
|
+
ExtendedButton_default,
|
|
4147
|
+
{
|
|
4148
|
+
variant: "text",
|
|
4149
|
+
copy: "Deselect All",
|
|
4150
|
+
disabled: !values.length,
|
|
4151
|
+
onClick: () => {
|
|
4152
|
+
setSelectedOptions([]);
|
|
4153
|
+
setValues([]);
|
|
4154
|
+
}
|
|
4352
4155
|
}
|
|
4353
|
-
|
|
4354
|
-
),
|
|
4156
|
+
),
|
|
4355
4157
|
/* @__PURE__ */ jsx81(
|
|
4356
|
-
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4158
|
+
ExtendedButton_default,
|
|
4159
|
+
{
|
|
4160
|
+
color: "primary",
|
|
4161
|
+
variant: "text",
|
|
4162
|
+
copy: "Apply",
|
|
4163
|
+
onClick: () => {
|
|
4164
|
+
handleClickOnApply();
|
|
4165
|
+
handleClose();
|
|
4166
|
+
}
|
|
4364
4167
|
}
|
|
4365
|
-
|
|
4366
|
-
)
|
|
4367
|
-
]
|
|
4368
|
-
})
|
|
4168
|
+
)
|
|
4169
|
+
] })
|
|
4369
4170
|
]
|
|
4370
4171
|
}
|
|
4371
4172
|
)
|
|
4372
|
-
|
|
4373
|
-
});
|
|
4173
|
+
] });
|
|
4374
4174
|
};
|
|
4375
4175
|
var FilterSimpleSelector_default = FilterSimpleSelector;
|
|
4376
4176
|
|
|
@@ -4399,8 +4199,7 @@ var useStyles27 = makeStyles27()((theme) => ({
|
|
|
4399
4199
|
}));
|
|
4400
4200
|
var FixedFooter = ({ justifyContent, children }) => {
|
|
4401
4201
|
const { classes } = useStyles27();
|
|
4402
|
-
return /* @__PURE__ */ jsxs49(Box16, {
|
|
4403
|
-
children: [
|
|
4202
|
+
return /* @__PURE__ */ jsxs49(Box16, { children: [
|
|
4404
4203
|
/* @__PURE__ */ jsx82(Box16, { className: classes.fixedOffset }),
|
|
4405
4204
|
/* @__PURE__ */ jsx82(
|
|
4406
4205
|
Box16,
|
|
@@ -4412,8 +4211,7 @@ var FixedFooter = ({ justifyContent, children }) => {
|
|
|
4412
4211
|
children
|
|
4413
4212
|
}
|
|
4414
4213
|
)
|
|
4415
|
-
|
|
4416
|
-
});
|
|
4214
|
+
] });
|
|
4417
4215
|
};
|
|
4418
4216
|
var FixedFooter_default = React.memo(FixedFooter);
|
|
4419
4217
|
|
|
@@ -4450,12 +4248,10 @@ var Header = ({
|
|
|
4450
4248
|
[classes.container]: !wrappedHeader
|
|
4451
4249
|
}),
|
|
4452
4250
|
elevation: wrappedHeader ? 0 : 1,
|
|
4453
|
-
children: /* @__PURE__ */ jsxs50("header", {
|
|
4454
|
-
className: classes.header, children: [
|
|
4251
|
+
children: /* @__PURE__ */ jsxs50("header", { className: classes.header, children: [
|
|
4455
4252
|
/* @__PURE__ */ jsx83(AppLabel_default, { appName }),
|
|
4456
|
-
|
|
4457
|
-
|
|
4458
|
-
})
|
|
4253
|
+
children ? /* @__PURE__ */ jsx83("div", { className: classes.rightContent, children }) : null
|
|
4254
|
+
] })
|
|
4459
4255
|
}
|
|
4460
4256
|
);
|
|
4461
4257
|
};
|
|
@@ -4467,18 +4263,15 @@ import { ListItem, ListItemText as ListItemText3 } from "@mui/material";
|
|
|
4467
4263
|
import { Fragment as Fragment6, jsx as jsx84, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
4468
4264
|
var ListHeader = (props) => {
|
|
4469
4265
|
const headers = props.headers || [];
|
|
4470
|
-
return /* @__PURE__ */ jsx84(ListItem, {
|
|
4471
|
-
children: headers.map((header, i) => (
|
|
4266
|
+
return /* @__PURE__ */ jsx84(ListItem, { children: headers.map((header, i) => (
|
|
4472
4267
|
// eslint-disable-next-line react/no-array-index-key
|
|
4473
4268
|
/* @__PURE__ */ jsx84(ListItemText3, { primary: header.text }, i)
|
|
4474
|
-
|
|
4475
|
-
});
|
|
4269
|
+
)) });
|
|
4476
4270
|
};
|
|
4477
4271
|
function VirtualizedList(props) {
|
|
4478
4272
|
const { innerWidth, innerHeight } = window;
|
|
4479
4273
|
const { headers, items, renderItem } = props;
|
|
4480
|
-
return /* @__PURE__ */ jsxs51(Fragment6, {
|
|
4481
|
-
children: [
|
|
4274
|
+
return /* @__PURE__ */ jsxs51(Fragment6, { children: [
|
|
4482
4275
|
/* @__PURE__ */ jsx84(ListHeader, { headers }),
|
|
4483
4276
|
/* @__PURE__ */ jsx84(
|
|
4484
4277
|
FixedSizeList,
|
|
@@ -4491,8 +4284,7 @@ function VirtualizedList(props) {
|
|
|
4491
4284
|
children: renderItem
|
|
4492
4285
|
}
|
|
4493
4286
|
)
|
|
4494
|
-
|
|
4495
|
-
});
|
|
4287
|
+
] });
|
|
4496
4288
|
}
|
|
4497
4289
|
|
|
4498
4290
|
// src/components/LocationsSectionInfo/LocationsSectionInfo.tsx
|
|
@@ -4547,8 +4339,7 @@ var LocationsSectionInfo = ({
|
|
|
4547
4339
|
}
|
|
4548
4340
|
return "STOCK";
|
|
4549
4341
|
};
|
|
4550
|
-
return /* @__PURE__ */ jsxs52(Box17, {
|
|
4551
|
-
className: classes.container, children: [
|
|
4342
|
+
return /* @__PURE__ */ jsxs52(Box17, { className: classes.container, children: [
|
|
4552
4343
|
/* @__PURE__ */ jsx85(
|
|
4553
4344
|
Chip2,
|
|
4554
4345
|
{
|
|
@@ -4561,14 +4352,11 @@ var LocationsSectionInfo = ({
|
|
|
4561
4352
|
}
|
|
4562
4353
|
),
|
|
4563
4354
|
/* @__PURE__ */ jsx85(Typography14, { className: classes.locationText, color: "primary", children: principalLocation }),
|
|
4564
|
-
|
|
4565
|
-
children: [
|
|
4355
|
+
secondaryLocation?.map((loc) => /* @__PURE__ */ jsxs52(Fragment7, { children: [
|
|
4566
4356
|
/* @__PURE__ */ jsx85(Typography14, { className: classes.smallTitle, children: "/" }),
|
|
4567
4357
|
/* @__PURE__ */ jsx85(Typography14, { className: classes.locationText, children: loc })
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
]
|
|
4571
|
-
});
|
|
4358
|
+
] }, loc))
|
|
4359
|
+
] });
|
|
4572
4360
|
};
|
|
4573
4361
|
var LocationsSectionInfo_default = LocationsSectionInfo;
|
|
4574
4362
|
|
|
@@ -4619,40 +4407,34 @@ var Notes2 = ({
|
|
|
4619
4407
|
}
|
|
4620
4408
|
};
|
|
4621
4409
|
const { classes } = useStyles30();
|
|
4622
|
-
return /* @__PURE__ */ jsx86("div", {
|
|
4623
|
-
className: classes.wrapper, children: /* @__PURE__ */ jsxs53(FormControl3, {
|
|
4624
|
-
fullWidth: true, children: [
|
|
4410
|
+
return /* @__PURE__ */ jsx86("div", { className: classes.wrapper, children: /* @__PURE__ */ jsxs53(FormControl3, { fullWidth: true, children: [
|
|
4625
4411
|
/* @__PURE__ */ jsx86(InputLabel3, { htmlFor: "notes", children: "Notes" }),
|
|
4626
4412
|
/* @__PURE__ */ jsx86(
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4649
|
-
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
)
|
|
4653
|
-
]
|
|
4654
|
-
})
|
|
4655
|
-
});
|
|
4413
|
+
Input,
|
|
4414
|
+
{
|
|
4415
|
+
disabled: isDisabled || isLoading,
|
|
4416
|
+
endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */ jsx86(InputAdornment2, { position: "end", children: /* @__PURE__ */ jsx86(
|
|
4417
|
+
RoundButton_default,
|
|
4418
|
+
{
|
|
4419
|
+
disabled: isLoading,
|
|
4420
|
+
icon: "close",
|
|
4421
|
+
noStrokes: true,
|
|
4422
|
+
onClick: handleClearNotes,
|
|
4423
|
+
size: "small"
|
|
4424
|
+
}
|
|
4425
|
+
) }),
|
|
4426
|
+
fullWidth: true,
|
|
4427
|
+
id: "notes",
|
|
4428
|
+
inputProps: {
|
|
4429
|
+
maxLength
|
|
4430
|
+
},
|
|
4431
|
+
onBlur: handleNotesBlur,
|
|
4432
|
+
onInput: handleNotesChanges,
|
|
4433
|
+
type: "text",
|
|
4434
|
+
value: notes
|
|
4435
|
+
}
|
|
4436
|
+
)
|
|
4437
|
+
] }) });
|
|
4656
4438
|
};
|
|
4657
4439
|
var Notes_default = Notes2;
|
|
4658
4440
|
|
|
@@ -4670,145 +4452,135 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs54(
|
|
|
4670
4452
|
padding: 8
|
|
4671
4453
|
},
|
|
4672
4454
|
children: [
|
|
4673
|
-
/* @__PURE__ */ jsxs54("div", {
|
|
4674
|
-
|
|
4675
|
-
/* @__PURE__ */ jsxs54("div", {
|
|
4676
|
-
children: [
|
|
4455
|
+
/* @__PURE__ */ jsxs54("div", { children: [
|
|
4456
|
+
/* @__PURE__ */ jsxs54("div", { children: [
|
|
4677
4457
|
/* @__PURE__ */ jsx87(
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
|
|
4685
|
-
|
|
4458
|
+
RoundButton_default,
|
|
4459
|
+
{
|
|
4460
|
+
onClick: () => handleClick("1"),
|
|
4461
|
+
size: "large",
|
|
4462
|
+
variant: "filled",
|
|
4463
|
+
children: "1"
|
|
4464
|
+
}
|
|
4465
|
+
),
|
|
4686
4466
|
/* @__PURE__ */ jsx87(
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4467
|
+
RoundButton_default,
|
|
4468
|
+
{
|
|
4469
|
+
onClick: () => handleClick("2"),
|
|
4470
|
+
size: "large",
|
|
4471
|
+
variant: "filled",
|
|
4472
|
+
children: "2"
|
|
4473
|
+
}
|
|
4474
|
+
),
|
|
4695
4475
|
/* @__PURE__ */ jsx87(
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
]
|
|
4705
|
-
|
|
4706
|
-
/* @__PURE__ */ jsxs54("div", {
|
|
4707
|
-
children: [
|
|
4476
|
+
RoundButton_default,
|
|
4477
|
+
{
|
|
4478
|
+
onClick: () => handleClick("3"),
|
|
4479
|
+
size: "large",
|
|
4480
|
+
variant: "filled",
|
|
4481
|
+
children: "3"
|
|
4482
|
+
}
|
|
4483
|
+
)
|
|
4484
|
+
] }),
|
|
4485
|
+
/* @__PURE__ */ jsxs54("div", { children: [
|
|
4708
4486
|
/* @__PURE__ */ jsx87(
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
|
|
4487
|
+
RoundButton_default,
|
|
4488
|
+
{
|
|
4489
|
+
onClick: () => handleClick("4"),
|
|
4490
|
+
size: "large",
|
|
4491
|
+
variant: "filled",
|
|
4492
|
+
children: "4"
|
|
4493
|
+
}
|
|
4494
|
+
),
|
|
4717
4495
|
/* @__PURE__ */ jsx87(
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4496
|
+
RoundButton_default,
|
|
4497
|
+
{
|
|
4498
|
+
onClick: () => handleClick("5"),
|
|
4499
|
+
size: "large",
|
|
4500
|
+
variant: "filled",
|
|
4501
|
+
children: "5"
|
|
4502
|
+
}
|
|
4503
|
+
),
|
|
4726
4504
|
/* @__PURE__ */ jsx87(
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
4735
|
-
]
|
|
4736
|
-
|
|
4737
|
-
/* @__PURE__ */ jsxs54("div", {
|
|
4738
|
-
children: [
|
|
4505
|
+
RoundButton_default,
|
|
4506
|
+
{
|
|
4507
|
+
onClick: () => handleClick("6"),
|
|
4508
|
+
size: "large",
|
|
4509
|
+
variant: "filled",
|
|
4510
|
+
children: "6"
|
|
4511
|
+
}
|
|
4512
|
+
)
|
|
4513
|
+
] }),
|
|
4514
|
+
/* @__PURE__ */ jsxs54("div", { children: [
|
|
4739
4515
|
/* @__PURE__ */ jsx87(
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
|
|
4744
|
-
|
|
4745
|
-
|
|
4746
|
-
|
|
4747
|
-
|
|
4516
|
+
RoundButton_default,
|
|
4517
|
+
{
|
|
4518
|
+
onClick: () => handleClick("7"),
|
|
4519
|
+
size: "large",
|
|
4520
|
+
variant: "filled",
|
|
4521
|
+
children: "7"
|
|
4522
|
+
}
|
|
4523
|
+
),
|
|
4748
4524
|
/* @__PURE__ */ jsx87(
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4756
|
-
|
|
4525
|
+
RoundButton_default,
|
|
4526
|
+
{
|
|
4527
|
+
onClick: () => handleClick("8"),
|
|
4528
|
+
size: "large",
|
|
4529
|
+
variant: "filled",
|
|
4530
|
+
children: "8"
|
|
4531
|
+
}
|
|
4532
|
+
),
|
|
4757
4533
|
/* @__PURE__ */ jsx87(
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
]
|
|
4767
|
-
|
|
4768
|
-
/* @__PURE__ */ jsxs54("div", {
|
|
4769
|
-
children: [
|
|
4534
|
+
RoundButton_default,
|
|
4535
|
+
{
|
|
4536
|
+
onClick: () => handleClick("9"),
|
|
4537
|
+
size: "large",
|
|
4538
|
+
variant: "filled",
|
|
4539
|
+
children: "9"
|
|
4540
|
+
}
|
|
4541
|
+
)
|
|
4542
|
+
] }),
|
|
4543
|
+
/* @__PURE__ */ jsxs54("div", { children: [
|
|
4770
4544
|
/* @__PURE__ */ jsx87(
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4545
|
+
RoundButton_default,
|
|
4546
|
+
{
|
|
4547
|
+
onClick: () => handleClick("0"),
|
|
4548
|
+
size: "large",
|
|
4549
|
+
variant: "filled",
|
|
4550
|
+
children: "0"
|
|
4551
|
+
}
|
|
4552
|
+
),
|
|
4779
4553
|
/* @__PURE__ */ jsx87(
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
]
|
|
4789
|
-
})
|
|
4790
|
-
]
|
|
4791
|
-
}),
|
|
4554
|
+
RoundButton_default,
|
|
4555
|
+
{
|
|
4556
|
+
onClick: () => handleClick("."),
|
|
4557
|
+
size: "large",
|
|
4558
|
+
variant: "filled",
|
|
4559
|
+
children: "."
|
|
4560
|
+
}
|
|
4561
|
+
)
|
|
4562
|
+
] })
|
|
4563
|
+
] }),
|
|
4792
4564
|
/* @__PURE__ */ jsx87(
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
|
|
4808
|
-
|
|
4809
|
-
|
|
4810
|
-
|
|
4811
|
-
|
|
4565
|
+
"div",
|
|
4566
|
+
{
|
|
4567
|
+
style: {
|
|
4568
|
+
display: "flex",
|
|
4569
|
+
flexDirection: "column",
|
|
4570
|
+
justifyContent: "space-between",
|
|
4571
|
+
borderLeft: `1px solid ${colors.neutral250}`
|
|
4572
|
+
},
|
|
4573
|
+
children: /* @__PURE__ */ jsx87(
|
|
4574
|
+
RoundButton_default,
|
|
4575
|
+
{
|
|
4576
|
+
icon: "backspaceOutlined",
|
|
4577
|
+
onClick: handleUndo,
|
|
4578
|
+
size: "large",
|
|
4579
|
+
variant: "filled"
|
|
4580
|
+
}
|
|
4581
|
+
)
|
|
4582
|
+
}
|
|
4583
|
+
)
|
|
4812
4584
|
]
|
|
4813
4585
|
}
|
|
4814
4586
|
);
|
|
@@ -4855,49 +4627,41 @@ var NumpadInput = (props) => {
|
|
|
4855
4627
|
function handleSubmit() {
|
|
4856
4628
|
handleNextClick?.(state);
|
|
4857
4629
|
}
|
|
4858
|
-
const DefaultInput = /* @__PURE__ */ jsxs55("div", {
|
|
4859
|
-
children: [
|
|
4630
|
+
const DefaultInput = /* @__PURE__ */ jsxs55("div", { children: [
|
|
4860
4631
|
/* @__PURE__ */ jsx88(Typography15, { variant: "h5", style: { padding: "16px 0 3rem" }, children: inputLabel }),
|
|
4861
|
-
/* @__PURE__ */ jsx88("form", {
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
4870
|
-
|
|
4871
|
-
|
|
4872
|
-
|
|
4873
|
-
|
|
4874
|
-
style: { fontSize: "1.5rem", width: "160px" }
|
|
4875
|
-
}
|
|
4632
|
+
/* @__PURE__ */ jsx88("form", { noValidate: true, autoComplete: "off", children: /* @__PURE__ */ jsx88(
|
|
4633
|
+
TextField4,
|
|
4634
|
+
{
|
|
4635
|
+
id: "outlined-basic",
|
|
4636
|
+
label: /* @__PURE__ */ jsx88(Typography15, { style: { fontSize: "1.5rem" }, children: "Insert" }),
|
|
4637
|
+
value: state,
|
|
4638
|
+
variant: "outlined",
|
|
4639
|
+
autoFocus: true,
|
|
4640
|
+
helperText: "",
|
|
4641
|
+
className: classes.c_numpadinput__textfield,
|
|
4642
|
+
slotProps: {
|
|
4643
|
+
htmlInput: {
|
|
4644
|
+
style: { fontSize: "1.5rem", width: "160px" }
|
|
4876
4645
|
}
|
|
4877
4646
|
}
|
|
4878
|
-
|
|
4879
|
-
}),
|
|
4880
|
-
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
|
|
4885
|
-
/* @__PURE__ */ jsxs55("div", {
|
|
4886
|
-
className: classes.c_numpadinput__body, children: [
|
|
4887
|
-
children || DefaultInput,
|
|
4647
|
+
}
|
|
4648
|
+
) }),
|
|
4649
|
+
children
|
|
4650
|
+
] });
|
|
4651
|
+
return /* @__PURE__ */ jsxs55("div", { children: [
|
|
4652
|
+
/* @__PURE__ */ jsxs55("div", { className: classes.c_numpadinput__body, children: [
|
|
4653
|
+
children || DefaultInput,
|
|
4888
4654
|
/* @__PURE__ */ jsx88(Numpad_default, { handleClick: handleNumpadClick, handleUndo })
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
|
|
4898
|
-
|
|
4899
|
-
]
|
|
4900
|
-
});
|
|
4655
|
+
] }),
|
|
4656
|
+
state ? /* @__PURE__ */ jsx88(
|
|
4657
|
+
FilledButtonLg_default,
|
|
4658
|
+
{
|
|
4659
|
+
color: "primary",
|
|
4660
|
+
copy: "next",
|
|
4661
|
+
handleClick: handleSubmit
|
|
4662
|
+
}
|
|
4663
|
+
) : /* @__PURE__ */ jsx88(FilledButtonLg_default, { copy: "next", disabled: true })
|
|
4664
|
+
] });
|
|
4901
4665
|
};
|
|
4902
4666
|
var NumpadInput_default = memo14(NumpadInput);
|
|
4903
4667
|
|
|
@@ -4936,12 +4700,9 @@ var useStyles32 = makeStyles32()(() => ({
|
|
|
4936
4700
|
}));
|
|
4937
4701
|
var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
4938
4702
|
const { classes: styles } = useStyles32();
|
|
4939
|
-
return /* @__PURE__ */ jsxs56(Box18, {
|
|
4940
|
-
className: styles.
|
|
4941
|
-
|
|
4942
|
-
className: styles.numpadNumbersContainer, children: [
|
|
4943
|
-
/* @__PURE__ */ jsxs56(Box18, {
|
|
4944
|
-
className: styles.numpadRow, children: [
|
|
4703
|
+
return /* @__PURE__ */ jsxs56(Box18, { className: styles.numpadContainer, children: [
|
|
4704
|
+
/* @__PURE__ */ jsxs56(Box18, { className: styles.numpadNumbersContainer, children: [
|
|
4705
|
+
/* @__PURE__ */ jsxs56(Box18, { className: styles.numpadRow, children: [
|
|
4945
4706
|
/* @__PURE__ */ jsx89(
|
|
4946
4707
|
RoundButton_default,
|
|
4947
4708
|
{
|
|
@@ -4969,10 +4730,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
4969
4730
|
children: "3"
|
|
4970
4731
|
}
|
|
4971
4732
|
)
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
/* @__PURE__ */ jsxs56(Box18, {
|
|
4975
|
-
className: styles.numpadRow, children: [
|
|
4733
|
+
] }),
|
|
4734
|
+
/* @__PURE__ */ jsxs56(Box18, { className: styles.numpadRow, children: [
|
|
4976
4735
|
/* @__PURE__ */ jsx89(
|
|
4977
4736
|
RoundButton_default,
|
|
4978
4737
|
{
|
|
@@ -5000,10 +4759,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5000
4759
|
children: "6"
|
|
5001
4760
|
}
|
|
5002
4761
|
)
|
|
5003
|
-
|
|
5004
|
-
|
|
5005
|
-
/* @__PURE__ */ jsxs56(Box18, {
|
|
5006
|
-
className: styles.numpadRow, children: [
|
|
4762
|
+
] }),
|
|
4763
|
+
/* @__PURE__ */ jsxs56(Box18, { className: styles.numpadRow, children: [
|
|
5007
4764
|
/* @__PURE__ */ jsx89(
|
|
5008
4765
|
RoundButton_default,
|
|
5009
4766
|
{
|
|
@@ -5031,10 +4788,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5031
4788
|
children: "9"
|
|
5032
4789
|
}
|
|
5033
4790
|
)
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
/* @__PURE__ */ jsxs56(Box18, {
|
|
5037
|
-
className: styles.numpadRow, children: [
|
|
4791
|
+
] }),
|
|
4792
|
+
/* @__PURE__ */ jsxs56(Box18, { className: styles.numpadRow, children: [
|
|
5038
4793
|
/* @__PURE__ */ jsx89(
|
|
5039
4794
|
RoundButton_default,
|
|
5040
4795
|
{
|
|
@@ -5062,23 +4817,18 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5062
4817
|
children: "-"
|
|
5063
4818
|
}
|
|
5064
4819
|
)
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5076
|
-
|
|
5077
|
-
}
|
|
5078
|
-
)
|
|
5079
|
-
})
|
|
5080
|
-
]
|
|
5081
|
-
});
|
|
4820
|
+
] })
|
|
4821
|
+
] }),
|
|
4822
|
+
/* @__PURE__ */ jsx89(Box18, { className: styles.numpadBackspace, children: /* @__PURE__ */ jsx89(
|
|
4823
|
+
RoundButton_default,
|
|
4824
|
+
{
|
|
4825
|
+
icon: "backspaceOutlined",
|
|
4826
|
+
onClick: handleUndo,
|
|
4827
|
+
size: "large",
|
|
4828
|
+
variant: "filled"
|
|
4829
|
+
}
|
|
4830
|
+
) })
|
|
4831
|
+
] });
|
|
5082
4832
|
};
|
|
5083
4833
|
var NumpadPlus_default = NumpadPlus;
|
|
5084
4834
|
|
|
@@ -5128,21 +4878,18 @@ var PaginationForTable = ({
|
|
|
5128
4878
|
updateFilters({ ...appliedFilters, page: value });
|
|
5129
4879
|
};
|
|
5130
4880
|
const isFixed = position === "fixed";
|
|
5131
|
-
return /* @__PURE__ */ jsx90(Paper4, {
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
children: [
|
|
5140
|
-
|
|
5141
|
-
|
|
5142
|
-
|
|
5143
|
-
page
|
|
5144
|
-
]
|
|
5145
|
-
}),
|
|
4881
|
+
return /* @__PURE__ */ jsx90(Paper4, { children: /* @__PURE__ */ jsxs57(
|
|
4882
|
+
"div",
|
|
4883
|
+
{
|
|
4884
|
+
style,
|
|
4885
|
+
className: cx(classes.root, className, {
|
|
4886
|
+
[classes.fixed]: isFixed
|
|
4887
|
+
}),
|
|
4888
|
+
children: [
|
|
4889
|
+
/* @__PURE__ */ jsxs57(Typography16, { variant: "body1", children: [
|
|
4890
|
+
"Page: ",
|
|
4891
|
+
page
|
|
4892
|
+
] }),
|
|
5146
4893
|
/* @__PURE__ */ jsx90(
|
|
5147
4894
|
Pagination,
|
|
5148
4895
|
{
|
|
@@ -5151,10 +4898,9 @@ var PaginationForTable = ({
|
|
|
5151
4898
|
onChange: handleChange
|
|
5152
4899
|
}
|
|
5153
4900
|
)
|
|
5154
|
-
|
|
5155
|
-
|
|
5156
|
-
|
|
5157
|
-
});
|
|
4901
|
+
]
|
|
4902
|
+
}
|
|
4903
|
+
) });
|
|
5158
4904
|
};
|
|
5159
4905
|
var Pagination_default = PaginationForTable;
|
|
5160
4906
|
|
|
@@ -5180,34 +4926,34 @@ var PhoneInput = ({
|
|
|
5180
4926
|
className,
|
|
5181
4927
|
children: [
|
|
5182
4928
|
/* @__PURE__ */ jsx91(
|
|
5183
|
-
|
|
5184
|
-
|
|
5185
|
-
|
|
5186
|
-
|
|
5187
|
-
|
|
5188
|
-
|
|
5189
|
-
|
|
5190
|
-
|
|
5191
|
-
|
|
5192
|
-
|
|
5193
|
-
|
|
4929
|
+
ReactPhoneInput,
|
|
4930
|
+
{
|
|
4931
|
+
label,
|
|
4932
|
+
value,
|
|
4933
|
+
onChange,
|
|
4934
|
+
component: TextInput,
|
|
4935
|
+
containerStyle: { width: "100%", height: "100%" },
|
|
4936
|
+
placeholder: " ",
|
|
4937
|
+
inputProps: {
|
|
4938
|
+
// @ts-ignore
|
|
4939
|
+
error
|
|
4940
|
+
}
|
|
5194
4941
|
}
|
|
5195
|
-
|
|
5196
|
-
),
|
|
4942
|
+
),
|
|
5197
4943
|
/* @__PURE__ */ jsx91(
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
|
|
5201
|
-
|
|
5202
|
-
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
|
|
5206
|
-
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
4944
|
+
Typography17,
|
|
4945
|
+
{
|
|
4946
|
+
variant: "caption",
|
|
4947
|
+
sx: {
|
|
4948
|
+
color: error ? "red" : colors.neutral500,
|
|
4949
|
+
fontSize: "0.75rem",
|
|
4950
|
+
paddingTop: "4px",
|
|
4951
|
+
minHeight: "24px",
|
|
4952
|
+
display: "block"
|
|
4953
|
+
},
|
|
4954
|
+
children: placeholder ?? " "
|
|
4955
|
+
}
|
|
4956
|
+
)
|
|
5211
4957
|
]
|
|
5212
4958
|
}
|
|
5213
4959
|
);
|
|
@@ -5366,15 +5112,14 @@ var PlusMinusInput = ({
|
|
|
5366
5112
|
updateInputValue(value);
|
|
5367
5113
|
};
|
|
5368
5114
|
const { classes, cx } = useStyles34();
|
|
5369
|
-
return /* @__PURE__ */ jsx92("div", {
|
|
5370
|
-
|
|
5371
|
-
|
|
5372
|
-
{
|
|
5373
|
-
|
|
5374
|
-
|
|
5375
|
-
|
|
5376
|
-
|
|
5377
|
-
children: [
|
|
5115
|
+
return /* @__PURE__ */ jsx92("div", { className: classes.container, children: /* @__PURE__ */ jsxs59(
|
|
5116
|
+
FormGroup,
|
|
5117
|
+
{
|
|
5118
|
+
className: cx(classes.wrapper, {
|
|
5119
|
+
[classes.leftButtons]: buttonsPosition === "left",
|
|
5120
|
+
[classes.rightButtons]: buttonsPosition === "right"
|
|
5121
|
+
}),
|
|
5122
|
+
children: [
|
|
5378
5123
|
/* @__PURE__ */ jsx92(
|
|
5379
5124
|
RoundButton_default,
|
|
5380
5125
|
{
|
|
@@ -5385,8 +5130,7 @@ var PlusMinusInput = ({
|
|
|
5385
5130
|
size: "small"
|
|
5386
5131
|
}
|
|
5387
5132
|
),
|
|
5388
|
-
/* @__PURE__ */ jsxs59("div", {
|
|
5389
|
-
children: [
|
|
5133
|
+
/* @__PURE__ */ jsxs59("div", { children: [
|
|
5390
5134
|
/* @__PURE__ */ jsx92(
|
|
5391
5135
|
Controller7,
|
|
5392
5136
|
{
|
|
@@ -5414,18 +5158,17 @@ var PlusMinusInput = ({
|
|
|
5414
5158
|
)
|
|
5415
5159
|
}
|
|
5416
5160
|
),
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
|
|
5423
|
-
|
|
5424
|
-
|
|
5425
|
-
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
}),
|
|
5161
|
+
errors.inputValue && /* @__PURE__ */ jsx92(
|
|
5162
|
+
Typography18,
|
|
5163
|
+
{
|
|
5164
|
+
className: classes.errorText,
|
|
5165
|
+
color: "error",
|
|
5166
|
+
id: "input-error",
|
|
5167
|
+
variant: "caption",
|
|
5168
|
+
children: errors.inputValue.message
|
|
5169
|
+
}
|
|
5170
|
+
)
|
|
5171
|
+
] }),
|
|
5429
5172
|
/* @__PURE__ */ jsx92(
|
|
5430
5173
|
RoundButton_default,
|
|
5431
5174
|
{
|
|
@@ -5436,10 +5179,9 @@ var PlusMinusInput = ({
|
|
|
5436
5179
|
size: "small"
|
|
5437
5180
|
}
|
|
5438
5181
|
)
|
|
5439
|
-
|
|
5440
|
-
|
|
5441
|
-
|
|
5442
|
-
});
|
|
5182
|
+
]
|
|
5183
|
+
}
|
|
5184
|
+
) });
|
|
5443
5185
|
};
|
|
5444
5186
|
var PlusMinusInput_default = PlusMinusInput;
|
|
5445
5187
|
|
|
@@ -5457,8 +5199,7 @@ var PImage = ({
|
|
|
5457
5199
|
image,
|
|
5458
5200
|
size = "c_productbust__image_xs",
|
|
5459
5201
|
status
|
|
5460
|
-
}) => /* @__PURE__ */ jsxs60("div", {
|
|
5461
|
-
className: classes.c_productbust__image, children: [
|
|
5202
|
+
}) => /* @__PURE__ */ jsxs60("div", { className: classes.c_productbust__image, children: [
|
|
5462
5203
|
/* @__PURE__ */ jsx93(
|
|
5463
5204
|
CardMedia,
|
|
5464
5205
|
{
|
|
@@ -5466,9 +5207,8 @@ var PImage = ({
|
|
|
5466
5207
|
image: image || "@/resources/img/peas.jpg"
|
|
5467
5208
|
}
|
|
5468
5209
|
),
|
|
5469
|
-
|
|
5470
|
-
|
|
5471
|
-
});
|
|
5210
|
+
status && status !== "ACTIVE" && /* @__PURE__ */ jsx93("div", { className: classes.c_productbust__label_status, children: status })
|
|
5211
|
+
] });
|
|
5472
5212
|
var ProductImage = withStyles3(PImage, (theme) => ({
|
|
5473
5213
|
c_productbust__label_status: {
|
|
5474
5214
|
position: "absolute",
|
|
@@ -5600,8 +5340,7 @@ var PBust = ({
|
|
|
5600
5340
|
size: "small"
|
|
5601
5341
|
}
|
|
5602
5342
|
);
|
|
5603
|
-
return /* @__PURE__ */ jsxs61("div", {
|
|
5604
|
-
className: classes.c_productbust, children: [
|
|
5343
|
+
return /* @__PURE__ */ jsxs61("div", { className: classes.c_productbust, children: [
|
|
5605
5344
|
/* @__PURE__ */ jsx94(
|
|
5606
5345
|
ProductImage_default,
|
|
5607
5346
|
{
|
|
@@ -5610,12 +5349,9 @@ var PBust = ({
|
|
|
5610
5349
|
size: imageSize
|
|
5611
5350
|
}
|
|
5612
5351
|
),
|
|
5613
|
-
/* @__PURE__ */ jsxs61("div", {
|
|
5614
|
-
className: classes.
|
|
5615
|
-
|
|
5616
|
-
className: classes.c_productbust__heading, children: [
|
|
5617
|
-
/* @__PURE__ */ jsxs61("div", {
|
|
5618
|
-
children: [
|
|
5352
|
+
/* @__PURE__ */ jsxs61("div", { className: classes.c_productbust__container, children: [
|
|
5353
|
+
/* @__PURE__ */ jsxs61("div", { className: classes.c_productbust__heading, children: [
|
|
5354
|
+
/* @__PURE__ */ jsxs61("div", { children: [
|
|
5619
5355
|
/* @__PURE__ */ jsx94(
|
|
5620
5356
|
Typography19,
|
|
5621
5357
|
{
|
|
@@ -5626,40 +5362,33 @@ var PBust = ({
|
|
|
5626
5362
|
}
|
|
5627
5363
|
),
|
|
5628
5364
|
/* @__PURE__ */ jsx94(Typography19, { component: "span", className: classes[titleSize], children: product?.name }),
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
children: [
|
|
5365
|
+
!product && /* @__PURE__ */ jsx94(Typography19, { component: "span", className: classes[titleSize], children: "Empty Position" }),
|
|
5366
|
+
primaryData || /* @__PURE__ */ jsxs61(Fragment8, { children: [
|
|
5632
5367
|
/* @__PURE__ */ jsx94(
|
|
5633
|
-
|
|
5634
|
-
|
|
5635
|
-
|
|
5636
|
-
|
|
5637
|
-
|
|
5638
|
-
|
|
5639
|
-
|
|
5368
|
+
Typography19,
|
|
5369
|
+
{
|
|
5370
|
+
style: { color: "#555" },
|
|
5371
|
+
className: classes[subtitle1Size],
|
|
5372
|
+
children: product?.category.name
|
|
5373
|
+
}
|
|
5374
|
+
),
|
|
5640
5375
|
/* @__PURE__ */ jsx94(
|
|
5641
|
-
|
|
5642
|
-
|
|
5643
|
-
|
|
5644
|
-
|
|
5645
|
-
|
|
5646
|
-
|
|
5647
|
-
|
|
5648
|
-
|
|
5649
|
-
|
|
5650
|
-
|
|
5651
|
-
}),
|
|
5652
|
-
/* @__PURE__ */ jsxs61("div", {
|
|
5653
|
-
className: classes.c_productbust__btns, children: [
|
|
5376
|
+
Typography19,
|
|
5377
|
+
{
|
|
5378
|
+
style: { color: "#A42966", textTransform: "uppercase" },
|
|
5379
|
+
className: classes[subtitle2Size],
|
|
5380
|
+
children: product?.attributes
|
|
5381
|
+
}
|
|
5382
|
+
)
|
|
5383
|
+
] })
|
|
5384
|
+
] }),
|
|
5385
|
+
/* @__PURE__ */ jsxs61("div", { className: classes.c_productbust__btns, children: [
|
|
5654
5386
|
/* @__PURE__ */ jsx94("div", { children: buttonData }),
|
|
5655
5387
|
/* @__PURE__ */ jsx94("div", { children: !!locationId && historyDataIcon() })
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
]
|
|
5659
|
-
}),
|
|
5388
|
+
] })
|
|
5389
|
+
] }),
|
|
5660
5390
|
/* @__PURE__ */ jsx94("div", { children: !!secondaryData && secondaryData })
|
|
5661
|
-
|
|
5662
|
-
}),
|
|
5391
|
+
] }),
|
|
5663
5392
|
/* @__PURE__ */ jsx94(
|
|
5664
5393
|
LocationHistoryDialog,
|
|
5665
5394
|
{
|
|
@@ -5669,8 +5398,7 @@ var PBust = ({
|
|
|
5669
5398
|
visible: historyVisible
|
|
5670
5399
|
}
|
|
5671
5400
|
)
|
|
5672
|
-
|
|
5673
|
-
});
|
|
5401
|
+
] });
|
|
5674
5402
|
};
|
|
5675
5403
|
var ProductBust = withStyles4(PBust, (theme) => ({
|
|
5676
5404
|
c_productbust: {
|
|
@@ -5780,17 +5508,17 @@ var RenderAvatar = ({ active }) => {
|
|
|
5780
5508
|
sx: { display: "flex", flexDirection: "column", alignItems: "center" },
|
|
5781
5509
|
children: [
|
|
5782
5510
|
/* @__PURE__ */ jsx95(
|
|
5783
|
-
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
|
|
5787
|
-
|
|
5788
|
-
|
|
5789
|
-
|
|
5790
|
-
|
|
5791
|
-
|
|
5792
|
-
|
|
5793
|
-
|
|
5511
|
+
StyledBadge,
|
|
5512
|
+
{
|
|
5513
|
+
overlap: "circular",
|
|
5514
|
+
anchorOrigin: {
|
|
5515
|
+
vertical: "bottom",
|
|
5516
|
+
horizontal: "right"
|
|
5517
|
+
},
|
|
5518
|
+
variant: "dot",
|
|
5519
|
+
children: /* @__PURE__ */ jsx95(Avatar, {})
|
|
5520
|
+
}
|
|
5521
|
+
),
|
|
5794
5522
|
/* @__PURE__ */ jsx95(Typography20, { variant: "caption", children: active ? "Active" : "Disabled" })
|
|
5795
5523
|
]
|
|
5796
5524
|
}
|
|
@@ -5948,8 +5676,7 @@ var RowProductCard = ({
|
|
|
5948
5676
|
medium: "c_productbust__image_md",
|
|
5949
5677
|
large: "c_productbust__image_lg"
|
|
5950
5678
|
};
|
|
5951
|
-
return /* @__PURE__ */ jsxs64(Paper5, {
|
|
5952
|
-
className: classes.wrapper, children: [
|
|
5679
|
+
return /* @__PURE__ */ jsxs64(Paper5, { className: classes.wrapper, children: [
|
|
5953
5680
|
/* @__PURE__ */ jsx97(
|
|
5954
5681
|
ProductImage_default,
|
|
5955
5682
|
{
|
|
@@ -5966,27 +5693,24 @@ var RowProductCard = ({
|
|
|
5966
5693
|
}),
|
|
5967
5694
|
children: [
|
|
5968
5695
|
/* @__PURE__ */ jsxs64(
|
|
5969
|
-
|
|
5970
|
-
|
|
5971
|
-
|
|
5972
|
-
|
|
5973
|
-
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
|
|
5977
|
-
children: [
|
|
5978
|
-
/* @__PURE__ */ jsxs64("div", {
|
|
5696
|
+
Box21,
|
|
5697
|
+
{
|
|
5698
|
+
className: classes.upperRow,
|
|
5699
|
+
sx: {
|
|
5700
|
+
display: "flex",
|
|
5701
|
+
justifyContent: "space-between",
|
|
5702
|
+
alignItems: "center"
|
|
5703
|
+
},
|
|
5979
5704
|
children: [
|
|
5980
|
-
|
|
5705
|
+
/* @__PURE__ */ jsxs64("div", { children: [
|
|
5706
|
+
location ? /* @__PURE__ */ jsx97(Typography21, { className: classes.smallTitle, variant: "caption", children: `Location: ${location}` }) : null,
|
|
5981
5707
|
/* @__PURE__ */ jsx97(Typography21, { variant: "h6", children: product.name })
|
|
5708
|
+
] }),
|
|
5709
|
+
children
|
|
5982
5710
|
]
|
|
5983
|
-
}
|
|
5984
|
-
|
|
5985
|
-
|
|
5986
|
-
}
|
|
5987
|
-
),
|
|
5988
|
-
hasColumns ? /* @__PURE__ */ jsxs64(Fragment9, {
|
|
5989
|
-
children: [
|
|
5711
|
+
}
|
|
5712
|
+
),
|
|
5713
|
+
hasColumns ? /* @__PURE__ */ jsxs64(Fragment9, { children: [
|
|
5990
5714
|
/* @__PURE__ */ jsx97(Divider4, { className: classes.divider }),
|
|
5991
5715
|
/* @__PURE__ */ jsx97(
|
|
5992
5716
|
Box21,
|
|
@@ -5995,21 +5719,17 @@ var RowProductCard = ({
|
|
|
5995
5719
|
display: "flex",
|
|
5996
5720
|
gap: "24px"
|
|
5997
5721
|
},
|
|
5998
|
-
children: columns.map((column) => /* @__PURE__ */ jsxs64("div", {
|
|
5999
|
-
children: [
|
|
5722
|
+
children: columns.map((column) => /* @__PURE__ */ jsxs64("div", { children: [
|
|
6000
5723
|
/* @__PURE__ */ jsx97(Typography21, { className: classes.smallTitle, variant: "caption", children: column.title }),
|
|
6001
|
-
|
|
6002
|
-
|
|
6003
|
-
}, column.title))
|
|
5724
|
+
typeof column.value === "string" ? /* @__PURE__ */ jsx97(Typography21, { variant: "body1", children: column.value }) : column.value
|
|
5725
|
+
] }, column.title))
|
|
6004
5726
|
}
|
|
6005
5727
|
)
|
|
6006
|
-
|
|
6007
|
-
}) : null
|
|
5728
|
+
] }) : null
|
|
6008
5729
|
]
|
|
6009
5730
|
}
|
|
6010
5731
|
)
|
|
6011
|
-
|
|
6012
|
-
});
|
|
5732
|
+
] });
|
|
6013
5733
|
};
|
|
6014
5734
|
var RowProductCard_default = RowProductCard;
|
|
6015
5735
|
|
|
@@ -6092,61 +5812,55 @@ var ScrollableDialog = ({
|
|
|
6092
5812
|
requestAnimationFrame(measureHeights);
|
|
6093
5813
|
}
|
|
6094
5814
|
}, [isOpen, header, footer, title, maxDialogHeight]);
|
|
6095
|
-
return /* @__PURE__ */ jsx98(Dialog4, {
|
|
6096
|
-
|
|
6097
|
-
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
6101
|
-
|
|
6102
|
-
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
header ? /* @__PURE__ */ jsx98("div", { className: classes.header, id: "dialog-header", children: header }) : null,
|
|
6106
|
-
/* @__PURE__ */ jsxs65("div", {
|
|
6107
|
-
className: classes.body, children: [
|
|
5815
|
+
return /* @__PURE__ */ jsx98(Dialog4, { className: classes.dialog, fullWidth: true, maxWidth: false, open: isOpen, children: /* @__PURE__ */ jsx98(
|
|
5816
|
+
Fade,
|
|
5817
|
+
{
|
|
5818
|
+
in: isOpen,
|
|
5819
|
+
onEntered: () => {
|
|
5820
|
+
requestAnimationFrame(measureHeights);
|
|
5821
|
+
},
|
|
5822
|
+
children: /* @__PURE__ */ jsxs65(Paper6, { className: classes.wrapper, children: [
|
|
5823
|
+
header ? /* @__PURE__ */ jsx98("div", { className: classes.header, id: "dialog-header", children: header }) : null,
|
|
5824
|
+
/* @__PURE__ */ jsxs65("div", { className: classes.body, children: [
|
|
6108
5825
|
/* @__PURE__ */ jsx98(
|
|
6109
|
-
|
|
6110
|
-
|
|
6111
|
-
|
|
6112
|
-
|
|
6113
|
-
|
|
6114
|
-
|
|
6115
|
-
|
|
6116
|
-
|
|
5826
|
+
Typography22,
|
|
5827
|
+
{
|
|
5828
|
+
className: classes.title,
|
|
5829
|
+
id: "dialog-title",
|
|
5830
|
+
variant: "h6",
|
|
5831
|
+
children: title
|
|
5832
|
+
}
|
|
5833
|
+
),
|
|
6117
5834
|
/* @__PURE__ */ jsx98(
|
|
6118
|
-
|
|
6119
|
-
|
|
6120
|
-
|
|
6121
|
-
|
|
6122
|
-
|
|
6123
|
-
|
|
6124
|
-
|
|
6125
|
-
|
|
6126
|
-
|
|
6127
|
-
|
|
6128
|
-
|
|
6129
|
-
|
|
6130
|
-
|
|
6131
|
-
}),
|
|
5835
|
+
"div",
|
|
5836
|
+
{
|
|
5837
|
+
className: cx(classes.scrollableContainer, {
|
|
5838
|
+
[classes.smallContainer]: !hasScrollBar
|
|
5839
|
+
}),
|
|
5840
|
+
id: "dialog-body",
|
|
5841
|
+
style: {
|
|
5842
|
+
maxHeight: bodyHeight
|
|
5843
|
+
},
|
|
5844
|
+
children: body
|
|
5845
|
+
}
|
|
5846
|
+
)
|
|
5847
|
+
] }),
|
|
6132
5848
|
/* @__PURE__ */ jsx98(Divider5, {}),
|
|
6133
|
-
|
|
6134
|
-
|
|
6135
|
-
|
|
6136
|
-
|
|
6137
|
-
|
|
6138
|
-
|
|
6139
|
-
|
|
6140
|
-
|
|
6141
|
-
|
|
6142
|
-
|
|
6143
|
-
|
|
6144
|
-
|
|
6145
|
-
|
|
6146
|
-
|
|
6147
|
-
|
|
6148
|
-
)
|
|
6149
|
-
});
|
|
5849
|
+
footer ? /* @__PURE__ */ jsx98(
|
|
5850
|
+
Box22,
|
|
5851
|
+
{
|
|
5852
|
+
className: classes.footer,
|
|
5853
|
+
id: "dialog-footer",
|
|
5854
|
+
sx: {
|
|
5855
|
+
display: "flex",
|
|
5856
|
+
justifyContent: "center"
|
|
5857
|
+
},
|
|
5858
|
+
children: footer
|
|
5859
|
+
}
|
|
5860
|
+
) : null
|
|
5861
|
+
] })
|
|
5862
|
+
}
|
|
5863
|
+
) });
|
|
6150
5864
|
};
|
|
6151
5865
|
var ScrollableDialog_default = ScrollableDialog;
|
|
6152
5866
|
|
|
@@ -6224,8 +5938,7 @@ var SearchWithFilters = ({
|
|
|
6224
5938
|
useEffect7(() => {
|
|
6225
5939
|
setSearchText(searchValue);
|
|
6226
5940
|
}, [searchValue]);
|
|
6227
|
-
return /* @__PURE__ */ jsxs66(Paper7, {
|
|
6228
|
-
className: classes.searchContainer, children: [
|
|
5941
|
+
return /* @__PURE__ */ jsxs66(Paper7, { className: classes.searchContainer, children: [
|
|
6229
5942
|
/* @__PURE__ */ jsx99(SearchIcon, { className: classes.icon, fontSize: "small" }),
|
|
6230
5943
|
/* @__PURE__ */ jsx99(
|
|
6231
5944
|
InputBase,
|
|
@@ -6252,8 +5965,7 @@ var SearchWithFilters = ({
|
|
|
6252
5965
|
]
|
|
6253
5966
|
}
|
|
6254
5967
|
)
|
|
6255
|
-
|
|
6256
|
-
});
|
|
5968
|
+
] });
|
|
6257
5969
|
};
|
|
6258
5970
|
var SearchWithFilters_default = React3.memo(SearchWithFilters);
|
|
6259
5971
|
|
|
@@ -6294,34 +6006,26 @@ var SearchAndFilterHeader = ({
|
|
|
6294
6006
|
searchValue
|
|
6295
6007
|
}) => {
|
|
6296
6008
|
const { classes } = useStyles39();
|
|
6297
|
-
return /* @__PURE__ */ jsx100(Paper8, {
|
|
6298
|
-
|
|
6299
|
-
className: classes.
|
|
6300
|
-
/* @__PURE__ */ jsxs67(Box23, {
|
|
6301
|
-
className: classes.container, children: [
|
|
6302
|
-
/* @__PURE__ */ jsxs67(Box23, {
|
|
6303
|
-
className: classes.leftSection, children: [
|
|
6009
|
+
return /* @__PURE__ */ jsx100(Paper8, { children: /* @__PURE__ */ jsxs67(Box23, { className: classes.wrapper, children: [
|
|
6010
|
+
/* @__PURE__ */ jsxs67(Box23, { className: classes.container, children: [
|
|
6011
|
+
/* @__PURE__ */ jsxs67(Box23, { className: classes.leftSection, children: [
|
|
6304
6012
|
/* @__PURE__ */ jsx100(AppLabel_default, { appName }),
|
|
6305
6013
|
/* @__PURE__ */ jsx100(
|
|
6306
|
-
|
|
6307
|
-
|
|
6308
|
-
|
|
6309
|
-
|
|
6310
|
-
|
|
6311
|
-
|
|
6312
|
-
|
|
6313
|
-
|
|
6314
|
-
|
|
6315
|
-
|
|
6316
|
-
}),
|
|
6014
|
+
SearchWithFilters_default,
|
|
6015
|
+
{
|
|
6016
|
+
searchValue,
|
|
6017
|
+
enterPressedInSearch,
|
|
6018
|
+
filterClick,
|
|
6019
|
+
showFilters,
|
|
6020
|
+
updateFilters
|
|
6021
|
+
}
|
|
6022
|
+
)
|
|
6023
|
+
] }),
|
|
6317
6024
|
/* @__PURE__ */ jsx100(Box23, { children: extraButton })
|
|
6318
|
-
|
|
6319
|
-
|
|
6320
|
-
|
|
6321
|
-
|
|
6322
|
-
]
|
|
6323
|
-
})
|
|
6324
|
-
});
|
|
6025
|
+
] }),
|
|
6026
|
+
showFilters ? /* @__PURE__ */ jsx100(Box23, { children: filtersComponent }) : null,
|
|
6027
|
+
appliedFiltersComponent
|
|
6028
|
+
] }) });
|
|
6325
6029
|
};
|
|
6326
6030
|
var SearchAndFilterHeader_default = SearchAndFilterHeader;
|
|
6327
6031
|
|
|
@@ -6414,8 +6118,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6414
6118
|
}
|
|
6415
6119
|
};
|
|
6416
6120
|
const ArrowIcon = isOpen ? ArrowDropUpIcon2 : ArrowDropDownIcon2;
|
|
6417
|
-
return /* @__PURE__ */ jsxs68(Paper9, {
|
|
6418
|
-
className: classes.c_search, children: [
|
|
6121
|
+
return /* @__PURE__ */ jsxs68(Paper9, { className: classes.c_search, children: [
|
|
6419
6122
|
/* @__PURE__ */ jsx101(Box24, { className: classes.c_search__icon, children: /* @__PURE__ */ jsx101(SearchIcon2, { className: classes.icon, fontSize: "small" }) }),
|
|
6420
6123
|
/* @__PURE__ */ jsx101(
|
|
6421
6124
|
InputBase2,
|
|
@@ -6427,30 +6130,27 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6427
6130
|
onKeyDown: handleKeyPress
|
|
6428
6131
|
}
|
|
6429
6132
|
),
|
|
6430
|
-
|
|
6431
|
-
children: [
|
|
6133
|
+
showFilterButton && /* @__PURE__ */ jsxs68(Fragment10, { children: [
|
|
6432
6134
|
/* @__PURE__ */ jsx101(
|
|
6433
|
-
|
|
6434
|
-
|
|
6435
|
-
|
|
6436
|
-
|
|
6437
|
-
|
|
6438
|
-
|
|
6135
|
+
Divider7,
|
|
6136
|
+
{
|
|
6137
|
+
className: classes.c_search__divider,
|
|
6138
|
+
orientation: "vertical"
|
|
6139
|
+
}
|
|
6140
|
+
),
|
|
6439
6141
|
/* @__PURE__ */ jsxs68(
|
|
6440
|
-
|
|
6441
|
-
|
|
6442
|
-
|
|
6443
|
-
|
|
6444
|
-
|
|
6445
|
-
|
|
6142
|
+
Button12,
|
|
6143
|
+
{
|
|
6144
|
+
className: classes.c_search__bt_filter,
|
|
6145
|
+
onClick: handleFilterButtonClick,
|
|
6146
|
+
children: [
|
|
6147
|
+
"Filters",
|
|
6446
6148
|
/* @__PURE__ */ jsx101(ArrowIcon, { className: classes.c_search__bt_icon_filter })
|
|
6447
|
-
|
|
6448
|
-
|
|
6449
|
-
|
|
6450
|
-
|
|
6451
|
-
|
|
6452
|
-
]
|
|
6453
|
-
});
|
|
6149
|
+
]
|
|
6150
|
+
}
|
|
6151
|
+
)
|
|
6152
|
+
] })
|
|
6153
|
+
] });
|
|
6454
6154
|
};
|
|
6455
6155
|
var SearchWithFiltersForTable_default = memo16(SearchWithFiltersForTable);
|
|
6456
6156
|
|
|
@@ -6487,10 +6187,8 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
6487
6187
|
searchedValue
|
|
6488
6188
|
} = props;
|
|
6489
6189
|
const { classes } = useStyles41();
|
|
6490
|
-
return /* @__PURE__ */ jsxs69(Box25, {
|
|
6491
|
-
className: classes.
|
|
6492
|
-
/* @__PURE__ */ jsxs69(Box25, {
|
|
6493
|
-
className: classes.leftSection, children: [
|
|
6190
|
+
return /* @__PURE__ */ jsxs69(Box25, { className: classes.container, children: [
|
|
6191
|
+
/* @__PURE__ */ jsxs69(Box25, { className: classes.leftSection, children: [
|
|
6494
6192
|
/* @__PURE__ */ jsx102(AppLabel_default, { appName }),
|
|
6495
6193
|
/* @__PURE__ */ jsx102(
|
|
6496
6194
|
SearchWithFiltersForTable_default,
|
|
@@ -6503,20 +6201,18 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
6503
6201
|
searchedValue
|
|
6504
6202
|
}
|
|
6505
6203
|
),
|
|
6506
|
-
|
|
6507
|
-
|
|
6508
|
-
|
|
6509
|
-
|
|
6510
|
-
|
|
6511
|
-
|
|
6512
|
-
|
|
6513
|
-
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
}),
|
|
6204
|
+
copy && /* @__PURE__ */ jsx102(
|
|
6205
|
+
Box25,
|
|
6206
|
+
{
|
|
6207
|
+
sx: {
|
|
6208
|
+
margin: 0.5
|
|
6209
|
+
},
|
|
6210
|
+
children: /* @__PURE__ */ jsx102(OutlinedButton_default, { copy })
|
|
6211
|
+
}
|
|
6212
|
+
)
|
|
6213
|
+
] }),
|
|
6517
6214
|
/* @__PURE__ */ jsx102(Box25, { children: button })
|
|
6518
|
-
|
|
6519
|
-
});
|
|
6215
|
+
] });
|
|
6520
6216
|
};
|
|
6521
6217
|
var SearchAndFilterHeaderForTable_default = React4.memo(SearchAndFilterHeaderForTable);
|
|
6522
6218
|
|
|
@@ -6547,28 +6243,26 @@ var SearchFieldDebounced = ({
|
|
|
6547
6243
|
if (debounceRef.current) clearTimeout(debounceRef.current);
|
|
6548
6244
|
};
|
|
6549
6245
|
}, []);
|
|
6550
|
-
return /* @__PURE__ */ jsx103(Box26, {
|
|
6551
|
-
|
|
6552
|
-
|
|
6553
|
-
|
|
6554
|
-
|
|
6555
|
-
|
|
6556
|
-
|
|
6557
|
-
|
|
6558
|
-
|
|
6559
|
-
|
|
6560
|
-
|
|
6561
|
-
|
|
6562
|
-
|
|
6563
|
-
|
|
6564
|
-
|
|
6565
|
-
|
|
6566
|
-
startAdornment: /* @__PURE__ */ jsx103(InputAdornment3, { position: "start", children: /* @__PURE__ */ jsx103(Search2, { fontSize: "small" }) })
|
|
6567
|
-
}
|
|
6246
|
+
return /* @__PURE__ */ jsx103(Box26, { width: 285, children: /* @__PURE__ */ jsx103(
|
|
6247
|
+
TextField7,
|
|
6248
|
+
{
|
|
6249
|
+
fullWidth: true,
|
|
6250
|
+
variant: "outlined",
|
|
6251
|
+
placeholder: "Search",
|
|
6252
|
+
value,
|
|
6253
|
+
onChange: handleChange,
|
|
6254
|
+
slotProps: {
|
|
6255
|
+
input: {
|
|
6256
|
+
sx: {
|
|
6257
|
+
maxHeight: 5,
|
|
6258
|
+
px: 2,
|
|
6259
|
+
py: 2.5
|
|
6260
|
+
},
|
|
6261
|
+
startAdornment: /* @__PURE__ */ jsx103(InputAdornment3, { position: "start", children: /* @__PURE__ */ jsx103(Search2, { fontSize: "small" }) })
|
|
6568
6262
|
}
|
|
6569
6263
|
}
|
|
6570
|
-
|
|
6571
|
-
});
|
|
6264
|
+
}
|
|
6265
|
+
) });
|
|
6572
6266
|
};
|
|
6573
6267
|
|
|
6574
6268
|
// src/components/SectionName/SectionName.tsx
|
|
@@ -6618,10 +6312,8 @@ var SectionName = ({
|
|
|
6618
6312
|
openHistoryLog
|
|
6619
6313
|
}) => {
|
|
6620
6314
|
const { classes } = useStyles42();
|
|
6621
|
-
return /* @__PURE__ */ jsxs70(Box27, {
|
|
6622
|
-
className: classes.
|
|
6623
|
-
/* @__PURE__ */ jsxs70(Box27, {
|
|
6624
|
-
className: classes.titleContainer, children: [
|
|
6315
|
+
return /* @__PURE__ */ jsxs70(Box27, { className: classes.container, children: [
|
|
6316
|
+
/* @__PURE__ */ jsxs70(Box27, { className: classes.titleContainer, children: [
|
|
6625
6317
|
/* @__PURE__ */ jsx104(
|
|
6626
6318
|
Typography23,
|
|
6627
6319
|
{
|
|
@@ -6632,39 +6324,33 @@ var SectionName = ({
|
|
|
6632
6324
|
children: name
|
|
6633
6325
|
}
|
|
6634
6326
|
),
|
|
6635
|
-
|
|
6636
|
-
|
|
6637
|
-
|
|
6638
|
-
|
|
6639
|
-
|
|
6640
|
-
|
|
6641
|
-
|
|
6642
|
-
|
|
6643
|
-
|
|
6644
|
-
|
|
6645
|
-
|
|
6646
|
-
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
|
|
6658
|
-
|
|
6659
|
-
|
|
6660
|
-
|
|
6661
|
-
|
|
6662
|
-
openHistoryLog && buttonText && /* @__PURE__ */ jsx104(Divider8, { orientation: "vertical", sx: { height: "24px" } }),
|
|
6663
|
-
openHistoryLog && /* @__PURE__ */ jsx104(IconButton3, { size: "small", onClick: () => openHistoryLog(), children: /* @__PURE__ */ jsx104(History2, {}) })
|
|
6664
|
-
]
|
|
6665
|
-
})
|
|
6666
|
-
]
|
|
6667
|
-
});
|
|
6327
|
+
tooltipDescription ? /* @__PURE__ */ jsx104(Tooltip5, { title: tooltipDescription, placement: "right", children: /* @__PURE__ */ jsx104(
|
|
6328
|
+
InfoIcon,
|
|
6329
|
+
{
|
|
6330
|
+
fontSize: "small",
|
|
6331
|
+
"data-testid": "InfoIcon",
|
|
6332
|
+
className: classes.icon
|
|
6333
|
+
}
|
|
6334
|
+
) }) : null
|
|
6335
|
+
] }),
|
|
6336
|
+
/* @__PURE__ */ jsxs70(Box27, { className: classes.actionButtons, children: [
|
|
6337
|
+
buttonText ? /* @__PURE__ */ jsx104(
|
|
6338
|
+
ExtendedButton_default,
|
|
6339
|
+
{
|
|
6340
|
+
type: buttonType,
|
|
6341
|
+
buttonType: "button",
|
|
6342
|
+
className: classes.addButton,
|
|
6343
|
+
color: "inherit",
|
|
6344
|
+
copy: buttonText || "",
|
|
6345
|
+
disabled: buttonDisabled,
|
|
6346
|
+
onClick: handleButtonClick,
|
|
6347
|
+
variant: "text"
|
|
6348
|
+
}
|
|
6349
|
+
) : null,
|
|
6350
|
+
openHistoryLog && buttonText && /* @__PURE__ */ jsx104(Divider8, { orientation: "vertical", sx: { height: "24px" } }),
|
|
6351
|
+
openHistoryLog && /* @__PURE__ */ jsx104(IconButton3, { size: "small", onClick: () => openHistoryLog(), children: /* @__PURE__ */ jsx104(History2, {}) })
|
|
6352
|
+
] })
|
|
6353
|
+
] });
|
|
6668
6354
|
};
|
|
6669
6355
|
var SectionName_default = SectionName;
|
|
6670
6356
|
|
|
@@ -6856,34 +6542,30 @@ var LSwitch = ({
|
|
|
6856
6542
|
handleChange,
|
|
6857
6543
|
classes,
|
|
6858
6544
|
disabled
|
|
6859
|
-
}) => /* @__PURE__ */ jsx107("div", {
|
|
6860
|
-
|
|
6861
|
-
|
|
6862
|
-
|
|
6863
|
-
|
|
6864
|
-
|
|
6865
|
-
|
|
6866
|
-
|
|
6867
|
-
|
|
6868
|
-
|
|
6869
|
-
children:
|
|
6870
|
-
|
|
6871
|
-
|
|
6872
|
-
|
|
6873
|
-
|
|
6874
|
-
|
|
6875
|
-
|
|
6876
|
-
|
|
6877
|
-
|
|
6878
|
-
|
|
6879
|
-
|
|
6880
|
-
|
|
6881
|
-
|
|
6882
|
-
|
|
6883
|
-
]
|
|
6884
|
-
}
|
|
6885
|
-
)
|
|
6886
|
-
});
|
|
6545
|
+
}) => /* @__PURE__ */ jsx107("div", { className: classes.c_switch, children: /* @__PURE__ */ jsxs72(
|
|
6546
|
+
Grid2,
|
|
6547
|
+
{
|
|
6548
|
+
component: "label",
|
|
6549
|
+
container: true,
|
|
6550
|
+
spacing: 1,
|
|
6551
|
+
sx: {
|
|
6552
|
+
alignItems: "center"
|
|
6553
|
+
},
|
|
6554
|
+
children: [
|
|
6555
|
+
labelOff && /* @__PURE__ */ jsx107(Grid2, { children: labelOff }),
|
|
6556
|
+
/* @__PURE__ */ jsx107(Grid2, { children: /* @__PURE__ */ jsx107(
|
|
6557
|
+
Switch,
|
|
6558
|
+
{
|
|
6559
|
+
checked,
|
|
6560
|
+
color: "primary",
|
|
6561
|
+
onChange: handleChange,
|
|
6562
|
+
disabled
|
|
6563
|
+
}
|
|
6564
|
+
) }),
|
|
6565
|
+
labelOn && /* @__PURE__ */ jsx107(Grid2, { children: labelOn })
|
|
6566
|
+
]
|
|
6567
|
+
}
|
|
6568
|
+
) });
|
|
6887
6569
|
var LabelledSwitch = withStyles6(LSwitch, (theme) => ({
|
|
6888
6570
|
c_switch: {},
|
|
6889
6571
|
default: {
|
|
@@ -7023,69 +6705,61 @@ var SmartTableHeader = ({
|
|
|
7023
6705
|
onRequestSort(event, property);
|
|
7024
6706
|
};
|
|
7025
6707
|
const isSortActive = (headCellId) => orderBy === headCellId;
|
|
7026
|
-
return /* @__PURE__ */ jsx108(TableHead, {
|
|
7027
|
-
|
|
7028
|
-
|
|
7029
|
-
|
|
7030
|
-
|
|
7031
|
-
|
|
7032
|
-
|
|
7033
|
-
|
|
7034
|
-
|
|
7035
|
-
|
|
7036
|
-
|
|
7037
|
-
|
|
7038
|
-
|
|
7039
|
-
|
|
7040
|
-
|
|
7041
|
-
|
|
7042
|
-
|
|
6708
|
+
return /* @__PURE__ */ jsx108(TableHead, { className: classes.root, children: /* @__PURE__ */ jsxs73(TableRow, { children: [
|
|
6709
|
+
enableCheckboxSelection ? /* @__PURE__ */ jsx108(TableCell, { padding: "checkbox", children: /* @__PURE__ */ jsx108(
|
|
6710
|
+
Checkbox4,
|
|
6711
|
+
{
|
|
6712
|
+
color: "primary",
|
|
6713
|
+
disableRipple: true,
|
|
6714
|
+
indeterminate: numSelected > 0 && numSelected < numRows,
|
|
6715
|
+
checked: numRows > 0 && numSelected === numRows,
|
|
6716
|
+
onChange: onSelectAllClick
|
|
6717
|
+
}
|
|
6718
|
+
) }) : null,
|
|
6719
|
+
headCells.map((headCell) => /* @__PURE__ */ jsx108(
|
|
6720
|
+
TableCell,
|
|
6721
|
+
{
|
|
6722
|
+
className: classes.tableHeaderContent,
|
|
6723
|
+
align: "left",
|
|
6724
|
+
width: headCell.width ?? "auto",
|
|
6725
|
+
sortDirection: orderBy === headCell.id ? order : false,
|
|
6726
|
+
children: /* @__PURE__ */ jsxs73(
|
|
6727
|
+
Box28,
|
|
7043
6728
|
{
|
|
7044
|
-
|
|
7045
|
-
|
|
7046
|
-
|
|
7047
|
-
|
|
7048
|
-
|
|
7049
|
-
|
|
7050
|
-
|
|
7051
|
-
|
|
7052
|
-
|
|
7053
|
-
|
|
7054
|
-
|
|
7055
|
-
|
|
7056
|
-
|
|
7057
|
-
|
|
7058
|
-
|
|
7059
|
-
|
|
7060
|
-
|
|
7061
|
-
|
|
7062
|
-
|
|
7063
|
-
|
|
7064
|
-
|
|
7065
|
-
|
|
7066
|
-
|
|
7067
|
-
|
|
7068
|
-
|
|
7069
|
-
|
|
7070
|
-
|
|
7071
|
-
|
|
7072
|
-
|
|
7073
|
-
|
|
7074
|
-
|
|
7075
|
-
|
|
7076
|
-
|
|
7077
|
-
|
|
7078
|
-
}
|
|
7079
|
-
) : null
|
|
7080
|
-
]
|
|
7081
|
-
}
|
|
7082
|
-
)
|
|
7083
|
-
},
|
|
7084
|
-
headCell.id
|
|
7085
|
-
))
|
|
7086
|
-
]
|
|
7087
|
-
})
|
|
7088
|
-
});
|
|
6729
|
+
display: "flex",
|
|
6730
|
+
flexDirection: "row",
|
|
6731
|
+
gap: headCell.disableSort ? 1 : 0,
|
|
6732
|
+
children: [
|
|
6733
|
+
headCell.disableSort ? headCell.RenderHeader ?? /* @__PURE__ */ jsx108(Tooltip6, { title: headCell.labelTooltip ?? "", arrow: true, children: /* @__PURE__ */ jsx108(Typography25, { variant: "subtitle2", mt: 0.25, fontWeight: 600, children: headCell.label }) }) : /* @__PURE__ */ jsx108(Tooltip6, { title: headCell.labelTooltip ?? "", arrow: true, children: /* @__PURE__ */ jsxs73(
|
|
6734
|
+
TableSortLabel,
|
|
6735
|
+
{
|
|
6736
|
+
"data-testid": "table-sort-label",
|
|
6737
|
+
active: isSortActive(headCell.id),
|
|
6738
|
+
direction: orderBy === headCell.id ? order : "asc",
|
|
6739
|
+
onClick: createSortHandler(headCell.id),
|
|
6740
|
+
children: [
|
|
6741
|
+
headCell.RenderHeader ?? headCell.label,
|
|
6742
|
+
orderBy === headCell.id ? /* @__PURE__ */ jsx108("span", { className: classes.visuallyHidden, children: order === "desc" ? "sorted descending" : "sorted ascending" }) : null
|
|
6743
|
+
]
|
|
6744
|
+
}
|
|
6745
|
+
) }),
|
|
6746
|
+
headCell.refetchFilterOptions ? /* @__PURE__ */ jsx108(
|
|
6747
|
+
SmartTableHeaderFilterMenu_default,
|
|
6748
|
+
{
|
|
6749
|
+
headCell,
|
|
6750
|
+
headerFilters,
|
|
6751
|
+
numActiveFilters: headerFilters[headCell.id]?.length ?? 0,
|
|
6752
|
+
onApplyFilters,
|
|
6753
|
+
shouldShowCheckOnFilter
|
|
6754
|
+
}
|
|
6755
|
+
) : null
|
|
6756
|
+
]
|
|
6757
|
+
}
|
|
6758
|
+
)
|
|
6759
|
+
},
|
|
6760
|
+
headCell.id
|
|
6761
|
+
))
|
|
6762
|
+
] }) });
|
|
7089
6763
|
};
|
|
7090
6764
|
var SmartTableHeader_default = memo20(SmartTableHeader);
|
|
7091
6765
|
|
|
@@ -7095,34 +6769,28 @@ import TableCell2 from "@mui/material/TableCell";
|
|
|
7095
6769
|
import TableRow2 from "@mui/material/TableRow";
|
|
7096
6770
|
import Typography26 from "@mui/material/Typography";
|
|
7097
6771
|
import { jsx as jsx109, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
7098
|
-
var TableDesktopNoColumnsMessage = () => /* @__PURE__ */ jsx109(TableBody, {
|
|
7099
|
-
|
|
7100
|
-
|
|
7101
|
-
|
|
7102
|
-
|
|
7103
|
-
|
|
7104
|
-
|
|
7105
|
-
|
|
7106
|
-
|
|
7107
|
-
|
|
7108
|
-
|
|
7109
|
-
|
|
7110
|
-
|
|
7111
|
-
},
|
|
7112
|
-
children: [
|
|
6772
|
+
var TableDesktopNoColumnsMessage = () => /* @__PURE__ */ jsx109(TableBody, { children: /* @__PURE__ */ jsx109(TableRow2, { children: /* @__PURE__ */ jsxs74(
|
|
6773
|
+
TableCell2,
|
|
6774
|
+
{
|
|
6775
|
+
sx: {
|
|
6776
|
+
py: 8,
|
|
6777
|
+
gap: 2,
|
|
6778
|
+
borderBottom: "none",
|
|
6779
|
+
display: "flex",
|
|
6780
|
+
flexDirection: "column",
|
|
6781
|
+
justifyContent: "center",
|
|
6782
|
+
alignItems: "center"
|
|
6783
|
+
},
|
|
6784
|
+
children: [
|
|
7113
6785
|
/* @__PURE__ */ jsx109(Typography26, { variant: "subtitle2", fontSize: 16, children: "Customise your view" }),
|
|
7114
|
-
/* @__PURE__ */ jsxs74(Typography26, {
|
|
7115
|
-
|
|
7116
|
-
"Use the column selector on the right to choose which fields",
|
|
6786
|
+
/* @__PURE__ */ jsxs74(Typography26, { variant: "subtitle1", align: "center", color: "textSecondary", children: [
|
|
6787
|
+
"Use the column selector on the right to choose which fields",
|
|
7117
6788
|
/* @__PURE__ */ jsx109("br", {}),
|
|
7118
|
-
|
|
7119
|
-
|
|
7120
|
-
|
|
7121
|
-
|
|
7122
|
-
|
|
7123
|
-
)
|
|
7124
|
-
})
|
|
7125
|
-
});
|
|
6789
|
+
"you want to display in the table"
|
|
6790
|
+
] })
|
|
6791
|
+
]
|
|
6792
|
+
}
|
|
6793
|
+
) }) });
|
|
7126
6794
|
|
|
7127
6795
|
// src/components/TableEmptyResult/TableEmptyResult.tsx
|
|
7128
6796
|
import { TableCell as TableCell3, TableRow as TableRow3, Typography as Typography27 } from "@mui/material";
|
|
@@ -7139,14 +6807,13 @@ var TableEmptyResult = ({
|
|
|
7139
6807
|
}
|
|
7140
6808
|
}) => {
|
|
7141
6809
|
const { classes } = useStyles46();
|
|
7142
|
-
return showClearFilterButton ? /* @__PURE__ */ jsx110(TableRow3, {
|
|
7143
|
-
|
|
7144
|
-
|
|
7145
|
-
|
|
7146
|
-
|
|
7147
|
-
|
|
7148
|
-
|
|
7149
|
-
children: [
|
|
6810
|
+
return showClearFilterButton ? /* @__PURE__ */ jsx110(TableRow3, { children: /* @__PURE__ */ jsxs75(
|
|
6811
|
+
TableCell3,
|
|
6812
|
+
{
|
|
6813
|
+
className: classes.tableCellIcon,
|
|
6814
|
+
colSpan,
|
|
6815
|
+
align: "center",
|
|
6816
|
+
children: [
|
|
7150
6817
|
/* @__PURE__ */ jsx110(EmptyGlassIcon_default, {}),
|
|
7151
6818
|
/* @__PURE__ */ jsx110(Typography27, { variant: "h6", children: "No results found." }),
|
|
7152
6819
|
/* @__PURE__ */ jsx110(Typography27, { variant: "subtitle1", children: "Search without applied filters?" }),
|
|
@@ -7159,20 +6826,17 @@ var TableEmptyResult = ({
|
|
|
7159
6826
|
onClick: handleClickOnClearFiltersButton
|
|
7160
6827
|
}
|
|
7161
6828
|
)
|
|
7162
|
-
|
|
7163
|
-
|
|
7164
|
-
|
|
7165
|
-
|
|
7166
|
-
|
|
7167
|
-
|
|
7168
|
-
|
|
7169
|
-
|
|
7170
|
-
|
|
7171
|
-
|
|
7172
|
-
|
|
7173
|
-
}
|
|
7174
|
-
)
|
|
7175
|
-
});
|
|
6829
|
+
]
|
|
6830
|
+
}
|
|
6831
|
+
) }) : /* @__PURE__ */ jsx110(TableRow3, { children: /* @__PURE__ */ jsx110(
|
|
6832
|
+
TableCell3,
|
|
6833
|
+
{
|
|
6834
|
+
className: classes.tableCellDefault,
|
|
6835
|
+
colSpan,
|
|
6836
|
+
align: "center",
|
|
6837
|
+
children: "Nothing to display"
|
|
6838
|
+
}
|
|
6839
|
+
) });
|
|
7176
6840
|
};
|
|
7177
6841
|
var TableEmptyResult_default = TableEmptyResult;
|
|
7178
6842
|
|
|
@@ -7316,20 +6980,16 @@ var TableDesktop = ({
|
|
|
7316
6980
|
);
|
|
7317
6981
|
const renderTableRows = useMemo2(() => {
|
|
7318
6982
|
if (isLoading) {
|
|
7319
|
-
return [...Array(Math.min(numRows, rowsPerPage))].map((_, rowIndex) => /* @__PURE__ */ jsx111(TableRow4, {
|
|
7320
|
-
|
|
7321
|
-
|
|
7322
|
-
|
|
7323
|
-
|
|
7324
|
-
|
|
7325
|
-
|
|
7326
|
-
|
|
7327
|
-
|
|
7328
|
-
|
|
7329
|
-
}
|
|
7330
|
-
)
|
|
7331
|
-
}, cellIndex))
|
|
7332
|
-
}, rowIndex));
|
|
6983
|
+
return [...Array(Math.min(numRows, rowsPerPage))].map((_, rowIndex) => /* @__PURE__ */ jsx111(TableRow4, { children: [...Array(visibleHeadCells.length)].map((_2, cellIndex) => /* @__PURE__ */ jsx111(TableCell4, { children: /* @__PURE__ */ jsx111(
|
|
6984
|
+
Skeleton2,
|
|
6985
|
+
{
|
|
6986
|
+
animation: "pulse",
|
|
6987
|
+
variant: "rounded",
|
|
6988
|
+
height: ROW_HEIGHT - 33,
|
|
6989
|
+
sx: { bgcolor: colors.neutral100 },
|
|
6990
|
+
"data-testid": "loading-skeleton"
|
|
6991
|
+
}
|
|
6992
|
+
) }, cellIndex)) }, rowIndex));
|
|
7333
6993
|
}
|
|
7334
6994
|
const sortedData = disableInternalSort ? data : stableSort(data, getComparator(order, orderBy));
|
|
7335
6995
|
return sortedData.slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map((row, index) => {
|
|
@@ -7374,54 +7034,44 @@ var TableDesktop = ({
|
|
|
7374
7034
|
setSelected(/* @__PURE__ */ new Set());
|
|
7375
7035
|
}
|
|
7376
7036
|
}, [enableCheckboxSelection]);
|
|
7377
|
-
return /* @__PURE__ */ jsx111("div", {
|
|
7378
|
-
|
|
7379
|
-
|
|
7380
|
-
|
|
7381
|
-
|
|
7382
|
-
|
|
7383
|
-
|
|
7384
|
-
|
|
7385
|
-
|
|
7386
|
-
"aria-label": "sticky table",
|
|
7387
|
-
style: { tableLayout },
|
|
7388
|
-
children: visibleHeadCells.length === 0 ? /* @__PURE__ */ jsx111(TableDesktopNoColumnsMessage, {}) : /* @__PURE__ */ jsxs76(Fragment11, {
|
|
7389
|
-
children: [
|
|
7037
|
+
return /* @__PURE__ */ jsx111("div", { className: classes.root, style: { height }, children: /* @__PURE__ */ jsxs76(Paper10, { className: classes.paper, children: [
|
|
7038
|
+
/* @__PURE__ */ jsx111(TableContainer, { className: classes.container, children: /* @__PURE__ */ jsx111(
|
|
7039
|
+
Table,
|
|
7040
|
+
{
|
|
7041
|
+
stickyHeader: true,
|
|
7042
|
+
"aria-labelledby": "tableTitle",
|
|
7043
|
+
"aria-label": "sticky table",
|
|
7044
|
+
style: { tableLayout },
|
|
7045
|
+
children: visibleHeadCells.length === 0 ? /* @__PURE__ */ jsx111(TableDesktopNoColumnsMessage, {}) : /* @__PURE__ */ jsxs76(Fragment11, { children: [
|
|
7390
7046
|
/* @__PURE__ */ jsx111(
|
|
7391
|
-
|
|
7392
|
-
|
|
7393
|
-
|
|
7394
|
-
|
|
7395
|
-
|
|
7396
|
-
|
|
7397
|
-
|
|
7398
|
-
|
|
7399
|
-
|
|
7400
|
-
|
|
7401
|
-
|
|
7402
|
-
|
|
7403
|
-
|
|
7404
|
-
|
|
7405
|
-
|
|
7406
|
-
/* @__PURE__ */ jsx111(TableBody2, {
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
|
|
7411
|
-
|
|
7412
|
-
|
|
7413
|
-
|
|
7414
|
-
|
|
7415
|
-
|
|
7416
|
-
|
|
7417
|
-
|
|
7418
|
-
|
|
7419
|
-
)
|
|
7420
|
-
}),
|
|
7421
|
-
children
|
|
7422
|
-
]
|
|
7423
|
-
})
|
|
7424
|
-
});
|
|
7047
|
+
SmartTableHeader_default,
|
|
7048
|
+
{
|
|
7049
|
+
headCells: visibleHeadCells,
|
|
7050
|
+
order,
|
|
7051
|
+
orderBy,
|
|
7052
|
+
numSelected: selected.size,
|
|
7053
|
+
numRows,
|
|
7054
|
+
enableCheckboxSelection,
|
|
7055
|
+
headerFilters: headerFilters ?? {},
|
|
7056
|
+
onRequestSort: handleRequestSort,
|
|
7057
|
+
onSelectAllClick: handleSelectAllClick,
|
|
7058
|
+
onApplyFilters,
|
|
7059
|
+
shouldShowCheckOnFilter
|
|
7060
|
+
}
|
|
7061
|
+
),
|
|
7062
|
+
/* @__PURE__ */ jsx111(TableBody2, { children: rowsPerPage !== emptyRows ? renderTableRows : /* @__PURE__ */ jsx111(
|
|
7063
|
+
TableEmptyResult_default,
|
|
7064
|
+
{
|
|
7065
|
+
colSpan: enableCheckboxSelection ? visibleHeadCells.length + 1 : visibleHeadCells.length,
|
|
7066
|
+
showClearFilterButton,
|
|
7067
|
+
handleClickOnClearFiltersButton
|
|
7068
|
+
}
|
|
7069
|
+
) })
|
|
7070
|
+
] })
|
|
7071
|
+
}
|
|
7072
|
+
) }),
|
|
7073
|
+
children
|
|
7074
|
+
] }) });
|
|
7425
7075
|
};
|
|
7426
7076
|
var TableDesktop_default = TableDesktop;
|
|
7427
7077
|
|
|
@@ -7538,8 +7188,7 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7538
7188
|
const isOptionChecked = useMemo3(() => (resolvedOption) => !!selectedFilters?.some(
|
|
7539
7189
|
(value) => resolveOptionType(value, headCell.fieldName ?? "") === resolvedOption
|
|
7540
7190
|
), [selectedFilters]);
|
|
7541
|
-
const loadingSkeletons = /* @__PURE__ */ jsxs77(Box29, {
|
|
7542
|
-
"data-testid": "loading-skeletons", width: 272, children: [
|
|
7191
|
+
const loadingSkeletons = /* @__PURE__ */ jsxs77(Box29, { "data-testid": "loading-skeletons", width: 272, children: [
|
|
7543
7192
|
/* @__PURE__ */ jsx112(Skeleton3, { variant: "rounded", className: classes.skeleton }),
|
|
7544
7193
|
/* @__PURE__ */ jsx112(Divider9, {}),
|
|
7545
7194
|
/* @__PURE__ */ jsx112(Skeleton3, { variant: "rounded", className: classes.skeleton }),
|
|
@@ -7548,10 +7197,8 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7548
7197
|
/* @__PURE__ */ jsx112(Skeleton3, { variant: "rounded", className: classes.skeleton }),
|
|
7549
7198
|
/* @__PURE__ */ jsx112(Divider9, {}),
|
|
7550
7199
|
/* @__PURE__ */ jsx112(Skeleton3, { variant: "rounded", className: classes.skeleton })
|
|
7551
|
-
|
|
7552
|
-
|
|
7553
|
-
return /* @__PURE__ */ jsxs77(Fragment12, {
|
|
7554
|
-
children: [
|
|
7200
|
+
] });
|
|
7201
|
+
return /* @__PURE__ */ jsxs77(Fragment12, { children: [
|
|
7555
7202
|
/* @__PURE__ */ jsx112(
|
|
7556
7203
|
ActiveFiltersIconButton_default,
|
|
7557
7204
|
{
|
|
@@ -7571,41 +7218,37 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7571
7218
|
"data-testid": "filter-menu",
|
|
7572
7219
|
anchorOrigin: { vertical: "bottom", horizontal: "right" },
|
|
7573
7220
|
transformOrigin: { vertical: "top", horizontal: "right" },
|
|
7574
|
-
children: headCell.isFetchingFilterOptions ? loadingSkeletons : /* @__PURE__ */ jsxs77(Box29, {
|
|
7575
|
-
|
|
7576
|
-
|
|
7577
|
-
|
|
7578
|
-
|
|
7579
|
-
|
|
7580
|
-
|
|
7581
|
-
|
|
7582
|
-
|
|
7583
|
-
|
|
7584
|
-
|
|
7585
|
-
|
|
7586
|
-
|
|
7587
|
-
|
|
7588
|
-
|
|
7589
|
-
|
|
7590
|
-
} else {
|
|
7591
|
-
setSelectedFilters([]);
|
|
7592
|
-
}
|
|
7221
|
+
children: headCell.isFetchingFilterOptions ? loadingSkeletons : /* @__PURE__ */ jsxs77(Box29, { className: classes.filterMenu, children: [
|
|
7222
|
+
/* @__PURE__ */ jsx112(Box29, { px: 3, mb: 0.5, children: /* @__PURE__ */ jsx112(
|
|
7223
|
+
FormControlLabel3,
|
|
7224
|
+
{
|
|
7225
|
+
label: "Select All",
|
|
7226
|
+
control: /* @__PURE__ */ jsx112(
|
|
7227
|
+
Checkbox5,
|
|
7228
|
+
{
|
|
7229
|
+
disableRipple: true,
|
|
7230
|
+
checked: numCurrentSelectedFilters === numFilterOptions,
|
|
7231
|
+
indeterminate: numCurrentSelectedFilters > 0 && numCurrentSelectedFilters < numFilterOptions,
|
|
7232
|
+
onChange: ({ target: { checked } }) => {
|
|
7233
|
+
if (checked) {
|
|
7234
|
+
setSelectedFilters([...filterOptionsData]);
|
|
7235
|
+
} else {
|
|
7236
|
+
setSelectedFilters([]);
|
|
7593
7237
|
}
|
|
7594
7238
|
}
|
|
7595
|
-
|
|
7596
|
-
|
|
7597
|
-
|
|
7598
|
-
}),
|
|
7239
|
+
}
|
|
7240
|
+
)
|
|
7241
|
+
}
|
|
7242
|
+
) }),
|
|
7599
7243
|
/* @__PURE__ */ jsx112(Divider9, { sx: { mb: 0.5 } }),
|
|
7600
|
-
/* @__PURE__ */ jsx112(Box29, {
|
|
7601
|
-
|
|
7602
|
-
(option
|
|
7603
|
-
|
|
7604
|
-
|
|
7605
|
-
|
|
7606
|
-
|
|
7607
|
-
|
|
7608
|
-
children: [
|
|
7244
|
+
/* @__PURE__ */ jsx112(Box29, { className: classes.filterOptions, children: filterOptionsData?.map(
|
|
7245
|
+
(option) => {
|
|
7246
|
+
const resolvedOption = resolveOptionType(option, headCell.fieldName ?? "");
|
|
7247
|
+
return /* @__PURE__ */ jsxs77(
|
|
7248
|
+
Box29,
|
|
7249
|
+
{
|
|
7250
|
+
className: classes.filter,
|
|
7251
|
+
children: [
|
|
7609
7252
|
/* @__PURE__ */ jsx112(
|
|
7610
7253
|
FormControlLabel3,
|
|
7611
7254
|
{
|
|
@@ -7621,17 +7264,15 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7621
7264
|
},
|
|
7622
7265
|
resolvedOption
|
|
7623
7266
|
),
|
|
7624
|
-
|
|
7625
|
-
|
|
7626
|
-
|
|
7627
|
-
|
|
7628
|
-
|
|
7629
|
-
|
|
7630
|
-
|
|
7631
|
-
}),
|
|
7267
|
+
shouldShowCheckOnFilter?.(headCell.id, option) ? /* @__PURE__ */ jsx112(Tooltip7, { title: "This filter is saved as default", children: /* @__PURE__ */ jsx112(CheckIcon, { fontSize: "small", color: "action" }) }) : null
|
|
7268
|
+
]
|
|
7269
|
+
},
|
|
7270
|
+
resolvedOption
|
|
7271
|
+
);
|
|
7272
|
+
}
|
|
7273
|
+
) }),
|
|
7632
7274
|
/* @__PURE__ */ jsx112(Divider9, { sx: { mb: 0.5 } }),
|
|
7633
|
-
/* @__PURE__ */ jsxs77(Box29, {
|
|
7634
|
-
className: classes.applyFilterButtonsContainer, children: [
|
|
7275
|
+
/* @__PURE__ */ jsxs77(Box29, { className: classes.applyFilterButtonsContainer, children: [
|
|
7635
7276
|
/* @__PURE__ */ jsx112(
|
|
7636
7277
|
ExtendedButton_default,
|
|
7637
7278
|
{
|
|
@@ -7652,14 +7293,11 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7652
7293
|
onClick: () => handleApplyFilters(false)
|
|
7653
7294
|
}
|
|
7654
7295
|
)
|
|
7655
|
-
|
|
7656
|
-
|
|
7657
|
-
]
|
|
7658
|
-
})
|
|
7296
|
+
] })
|
|
7297
|
+
] })
|
|
7659
7298
|
}
|
|
7660
7299
|
)
|
|
7661
|
-
|
|
7662
|
-
});
|
|
7300
|
+
] });
|
|
7663
7301
|
};
|
|
7664
7302
|
var SmartTableHeaderFilterMenu_default = memo21(SmartTableHeaderFilterMenu);
|
|
7665
7303
|
|
|
@@ -7686,19 +7324,17 @@ import { jsx as jsx113 } from "react/jsx-runtime";
|
|
|
7686
7324
|
var TableLoading = ({
|
|
7687
7325
|
rowsPerPage,
|
|
7688
7326
|
rowHeight
|
|
7689
|
-
}) => /* @__PURE__ */ jsx113(Box30, {
|
|
7690
|
-
|
|
7691
|
-
|
|
7692
|
-
|
|
7693
|
-
|
|
7694
|
-
|
|
7695
|
-
|
|
7696
|
-
|
|
7697
|
-
|
|
7698
|
-
|
|
7699
|
-
|
|
7700
|
-
))
|
|
7701
|
-
});
|
|
7327
|
+
}) => /* @__PURE__ */ jsx113(Box30, { children: Array.from({ length: rowsPerPage ?? 0 }).map((_, index) => /* @__PURE__ */ jsx113(
|
|
7328
|
+
Skeleton4,
|
|
7329
|
+
{
|
|
7330
|
+
animation: "pulse",
|
|
7331
|
+
"data-testid": "table-loading-skeleton",
|
|
7332
|
+
style: { margin: "8px", opacity: 0.4 },
|
|
7333
|
+
variant: "rectangular",
|
|
7334
|
+
height: rowHeight
|
|
7335
|
+
},
|
|
7336
|
+
index
|
|
7337
|
+
)) });
|
|
7702
7338
|
var TableLoading_default = TableLoading;
|
|
7703
7339
|
|
|
7704
7340
|
// src/components/Table/helpers.tsx
|
|
@@ -7826,43 +7462,29 @@ var Table2 = ({
|
|
|
7826
7462
|
}
|
|
7827
7463
|
return rowsComponents;
|
|
7828
7464
|
};
|
|
7829
|
-
return /* @__PURE__ */ jsx114(Paper11, {
|
|
7830
|
-
className: classes.
|
|
7831
|
-
|
|
7832
|
-
|
|
7833
|
-
|
|
7834
|
-
|
|
7835
|
-
|
|
7836
|
-
|
|
7837
|
-
|
|
7838
|
-
|
|
7839
|
-
|
|
7840
|
-
|
|
7841
|
-
|
|
7842
|
-
|
|
7843
|
-
|
|
7844
|
-
|
|
7845
|
-
|
|
7846
|
-
|
|
7847
|
-
|
|
7848
|
-
|
|
7849
|
-
|
|
7850
|
-
|
|
7851
|
-
|
|
7852
|
-
))
|
|
7853
|
-
})
|
|
7854
|
-
}),
|
|
7855
|
-
/* @__PURE__ */ jsxs78(TableBody3, {
|
|
7856
|
-
children: [
|
|
7857
|
-
getTableRows(),
|
|
7858
|
-
rowsPerPage === emptyRows && /* @__PURE__ */ jsx114(TableRow5, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ jsx114(TableCell5, { colSpan: 8, align: "center", children: "Nothing to display" }) })
|
|
7859
|
-
]
|
|
7860
|
-
})
|
|
7861
|
-
]
|
|
7862
|
-
})
|
|
7863
|
-
})
|
|
7864
|
-
})
|
|
7865
|
-
});
|
|
7465
|
+
return /* @__PURE__ */ jsx114(Paper11, { className: classes.root, children: /* @__PURE__ */ jsx114(Box31, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx114(TableLoading_default, { rowHeight, rowsPerPage }) : /* @__PURE__ */ jsx114(TableContainer2, { className: classes.container, children: /* @__PURE__ */ jsxs78(MUITable, { size: "medium", stickyHeader: true, children: [
|
|
7466
|
+
/* @__PURE__ */ jsx114(TableHead2, { className: classes.header, children: /* @__PURE__ */ jsx114(TableRow5, { children: headCells?.map((headCell) => /* @__PURE__ */ jsx114(
|
|
7467
|
+
TableCell5,
|
|
7468
|
+
{
|
|
7469
|
+
align: "left",
|
|
7470
|
+
sortDirection: orderBy === headCell.id ? order : void 0,
|
|
7471
|
+
children: /* @__PURE__ */ jsx114(
|
|
7472
|
+
TableSortLabel2,
|
|
7473
|
+
{
|
|
7474
|
+
active: orderBy === headCell.id,
|
|
7475
|
+
direction: orderBy === headCell.id ? order : "asc",
|
|
7476
|
+
onClick: createSortHandler(headCell.id),
|
|
7477
|
+
children: headCell.label
|
|
7478
|
+
}
|
|
7479
|
+
)
|
|
7480
|
+
},
|
|
7481
|
+
headCell.id
|
|
7482
|
+
)) }) }),
|
|
7483
|
+
/* @__PURE__ */ jsxs78(TableBody3, { children: [
|
|
7484
|
+
getTableRows(),
|
|
7485
|
+
rowsPerPage === emptyRows && /* @__PURE__ */ jsx114(TableRow5, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ jsx114(TableCell5, { colSpan: 8, align: "center", children: "Nothing to display" }) })
|
|
7486
|
+
] })
|
|
7487
|
+
] }) }) }) });
|
|
7866
7488
|
};
|
|
7867
7489
|
var Table_default = Table2;
|
|
7868
7490
|
|
|
@@ -7892,59 +7514,55 @@ var TableDesktopFooter = ({
|
|
|
7892
7514
|
bgcolor: (theme) => theme.palette.background.default,
|
|
7893
7515
|
children: [
|
|
7894
7516
|
/* @__PURE__ */ jsxs79(
|
|
7895
|
-
|
|
7896
|
-
|
|
7897
|
-
|
|
7898
|
-
|
|
7899
|
-
|
|
7900
|
-
|
|
7901
|
-
|
|
7902
|
-
|
|
7903
|
-
|
|
7904
|
-
|
|
7905
|
-
|
|
7906
|
-
|
|
7907
|
-
|
|
7908
|
-
|
|
7517
|
+
Button13,
|
|
7518
|
+
{
|
|
7519
|
+
disableRipple: true,
|
|
7520
|
+
variant: "outlined",
|
|
7521
|
+
onClick: () => refetch(),
|
|
7522
|
+
disabled: isFetching,
|
|
7523
|
+
sx: {
|
|
7524
|
+
ml: 1,
|
|
7525
|
+
gap: 1,
|
|
7526
|
+
borderRadius: 25,
|
|
7527
|
+
color: colors.neutral800,
|
|
7528
|
+
borderColor: colors.neutral600
|
|
7529
|
+
},
|
|
7530
|
+
children: [
|
|
7909
7531
|
/* @__PURE__ */ jsx115(
|
|
7910
|
-
|
|
7911
|
-
|
|
7912
|
-
|
|
7913
|
-
|
|
7914
|
-
|
|
7915
|
-
|
|
7916
|
-
|
|
7917
|
-
|
|
7918
|
-
|
|
7919
|
-
|
|
7920
|
-
/* @__PURE__ */ jsxs79(Box32, {
|
|
7921
|
-
|
|
7922
|
-
/* @__PURE__ */ jsxs79(Stack, {
|
|
7923
|
-
direction: "row", spacing: 2, alignItems: "center", children: [
|
|
7532
|
+
Refresh3,
|
|
7533
|
+
{
|
|
7534
|
+
fontSize: "small",
|
|
7535
|
+
color: isFetching ? "disabled" : "primary"
|
|
7536
|
+
}
|
|
7537
|
+
),
|
|
7538
|
+
"REFRESH"
|
|
7539
|
+
]
|
|
7540
|
+
}
|
|
7541
|
+
),
|
|
7542
|
+
/* @__PURE__ */ jsxs79(Box32, { display: "flex", children: [
|
|
7543
|
+
/* @__PURE__ */ jsxs79(Stack, { direction: "row", spacing: 2, alignItems: "center", children: [
|
|
7924
7544
|
/* @__PURE__ */ jsx115(Typography28, { children: "Rows per page:" }),
|
|
7925
7545
|
/* @__PURE__ */ jsx115(
|
|
7926
|
-
|
|
7546
|
+
Select4,
|
|
7547
|
+
{
|
|
7548
|
+
value: pageSize,
|
|
7549
|
+
onChange: handlePageSizeChange,
|
|
7550
|
+
size: "small",
|
|
7551
|
+
variant: "standard",
|
|
7552
|
+
children: pageSizeOptions.map((size) => /* @__PURE__ */ jsx115(MenuItem4, { value: size, children: size }, size))
|
|
7553
|
+
}
|
|
7554
|
+
)
|
|
7555
|
+
] }),
|
|
7556
|
+
/* @__PURE__ */ jsx115(
|
|
7557
|
+
Pagination2,
|
|
7927
7558
|
{
|
|
7928
|
-
|
|
7929
|
-
|
|
7930
|
-
|
|
7931
|
-
|
|
7932
|
-
children: pageSizeOptions.map((size) => /* @__PURE__ */ jsx115(MenuItem4, { value: size, children: size }, size))
|
|
7559
|
+
color: "standard",
|
|
7560
|
+
count: numPages,
|
|
7561
|
+
page,
|
|
7562
|
+
onChange: handlePageChange
|
|
7933
7563
|
}
|
|
7934
7564
|
)
|
|
7935
|
-
|
|
7936
|
-
}),
|
|
7937
|
-
/* @__PURE__ */ jsx115(
|
|
7938
|
-
Pagination2,
|
|
7939
|
-
{
|
|
7940
|
-
color: "standard",
|
|
7941
|
-
count: numPages,
|
|
7942
|
-
page,
|
|
7943
|
-
onChange: handlePageChange
|
|
7944
|
-
}
|
|
7945
|
-
)
|
|
7946
|
-
]
|
|
7947
|
-
})
|
|
7565
|
+
] })
|
|
7948
7566
|
]
|
|
7949
7567
|
}
|
|
7950
7568
|
);
|
|
@@ -7953,9 +7571,9 @@ var TableDesktopFooter = ({
|
|
|
7953
7571
|
// src/components/TableDesktopRowCell/TableDesktopRowCell.tsx
|
|
7954
7572
|
import { useEffect as useEffect13, useRef as useRef5, useState as useState20 } from "react";
|
|
7955
7573
|
import CheckIcon2 from "@mui/icons-material/Check";
|
|
7956
|
-
import
|
|
7957
|
-
import
|
|
7958
|
-
import { Box as Box33, Checkbox as Checkbox6, IconButton as IconButton4, TableCell as
|
|
7574
|
+
import CloseIcon from "@mui/icons-material/Close";
|
|
7575
|
+
import EditIcon from "@mui/icons-material/Edit";
|
|
7576
|
+
import { Box as Box33, Checkbox as Checkbox6, IconButton as IconButton4, TableCell as TableCell6, TextField as TextField9, Tooltip as Tooltip8 } from "@mui/material";
|
|
7959
7577
|
|
|
7960
7578
|
// src/components/TableDesktopRowCell/TableDesktopSmartSelect.tsx
|
|
7961
7579
|
import { useState as useState18, memo as memo22, useEffect as useEffect12 } from "react";
|
|
@@ -8016,7 +7634,7 @@ var TableDesktopSmartSelect = memo22(({
|
|
|
8016
7634
|
// src/components/TableDesktopRowCell/TableDesktopTextField.tsx
|
|
8017
7635
|
import { useMemo as useMemo4, useState as useState19 } from "react";
|
|
8018
7636
|
import { TextField as TextField8 } from "@mui/material";
|
|
8019
|
-
import { jsx as
|
|
7637
|
+
import { jsx as jsx117 } from "react/jsx-runtime";
|
|
8020
7638
|
var TableDesktopTextField = ({
|
|
8021
7639
|
rowId,
|
|
8022
7640
|
editInitialValue,
|
|
@@ -8039,7 +7657,7 @@ var TableDesktopTextField = ({
|
|
|
8039
7657
|
commitValue(input);
|
|
8040
7658
|
}
|
|
8041
7659
|
};
|
|
8042
|
-
return /* @__PURE__ */
|
|
7660
|
+
return /* @__PURE__ */ jsx117(
|
|
8043
7661
|
TextField8,
|
|
8044
7662
|
{
|
|
8045
7663
|
fullWidth: true,
|
|
@@ -8060,10 +7678,10 @@ var TableDesktopTextField = ({
|
|
|
8060
7678
|
};
|
|
8061
7679
|
|
|
8062
7680
|
// src/components/TableDesktopRowCell/TableDesktopRowCell.tsx
|
|
8063
|
-
import { jsx as
|
|
7681
|
+
import { jsx as jsx118, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
8064
7682
|
var getReadOnlyBooleanIcon = (value) => {
|
|
8065
7683
|
if (value) {
|
|
8066
|
-
return /* @__PURE__ */
|
|
7684
|
+
return /* @__PURE__ */ jsx118(CheckIcon2, { sx: { fontSize: 16 } });
|
|
8067
7685
|
}
|
|
8068
7686
|
return "-";
|
|
8069
7687
|
};
|
|
@@ -8175,61 +7793,57 @@ var TableDesktopRowCell = ({
|
|
|
8175
7793
|
e.stopPropagation();
|
|
8176
7794
|
setIsEditMode((prev) => !prev);
|
|
8177
7795
|
};
|
|
8178
|
-
return /* @__PURE__ */
|
|
8179
|
-
|
|
8180
|
-
|
|
8181
|
-
|
|
8182
|
-
|
|
8183
|
-
|
|
8184
|
-
|
|
8185
|
-
|
|
8186
|
-
|
|
8187
|
-
|
|
8188
|
-
|
|
8189
|
-
|
|
8190
|
-
|
|
8191
|
-
|
|
8192
|
-
|
|
8193
|
-
background: isEditMode ? colors.lightBlueBackground : colors.neutral100
|
|
8194
|
-
},
|
|
8195
|
-
background: isEditMode ? colors.lightBlueBackground : (theme) => theme.palette.background.default
|
|
7796
|
+
return /* @__PURE__ */ jsx118(Tooltip8, { title: isOverflowed ? String(readOnlyValue) : "", arrow: true, children: /* @__PURE__ */ jsx118(
|
|
7797
|
+
TableCell6,
|
|
7798
|
+
{
|
|
7799
|
+
align: "left",
|
|
7800
|
+
onMouseEnter: () => editableCellType && !disabled && setIsCellHovered(true),
|
|
7801
|
+
onMouseLeave: () => editableCellType && !disabled && setIsCellHovered(false),
|
|
7802
|
+
onClick: (event) => !disabled && onCellClick?.(event, isEditMode),
|
|
7803
|
+
sx: {
|
|
7804
|
+
padding: 1,
|
|
7805
|
+
width: width ?? "auto",
|
|
7806
|
+
position: "relative",
|
|
7807
|
+
cursor: disabled ? "default" : "pointer",
|
|
7808
|
+
opacity: disabled ? 0.2 : 1,
|
|
7809
|
+
":hover": editableCellType && {
|
|
7810
|
+
background: isEditMode ? colors.lightBlueBackground : colors.neutral100
|
|
8196
7811
|
},
|
|
8197
|
-
|
|
8198
|
-
|
|
8199
|
-
|
|
8200
|
-
|
|
8201
|
-
|
|
8202
|
-
|
|
8203
|
-
|
|
8204
|
-
|
|
8205
|
-
|
|
8206
|
-
|
|
8207
|
-
|
|
8208
|
-
|
|
8209
|
-
|
|
8210
|
-
|
|
8211
|
-
|
|
8212
|
-
|
|
8213
|
-
|
|
8214
|
-
|
|
8215
|
-
|
|
8216
|
-
|
|
8217
|
-
|
|
8218
|
-
|
|
8219
|
-
|
|
8220
|
-
|
|
8221
|
-
},
|
|
8222
|
-
children: isEditMode ? /* @__PURE__ */ jsx118(Close2, { fontSize: "small", color: "error" }) : /* @__PURE__ */ jsx118(Edit3, { fontSize: "small" })
|
|
7812
|
+
background: isEditMode ? colors.lightBlueBackground : (theme) => theme.palette.background.default
|
|
7813
|
+
},
|
|
7814
|
+
children: /* @__PURE__ */ jsxs80(
|
|
7815
|
+
Box33,
|
|
7816
|
+
{
|
|
7817
|
+
p: 1,
|
|
7818
|
+
ref: cellRef,
|
|
7819
|
+
overflow: "hidden",
|
|
7820
|
+
textOverflow: "ellipsis",
|
|
7821
|
+
whiteSpace: "nowrap",
|
|
7822
|
+
children: [
|
|
7823
|
+
isCellHovered ? /* @__PURE__ */ jsx118(Tooltip8, { title: isEditMode ? "" : "Toggle Edit Mode", children: /* @__PURE__ */ jsx118(
|
|
7824
|
+
IconButton4,
|
|
7825
|
+
{
|
|
7826
|
+
onClick: handleEditClick,
|
|
7827
|
+
sx: {
|
|
7828
|
+
top: 0,
|
|
7829
|
+
right: 0,
|
|
7830
|
+
zIndex: 1,
|
|
7831
|
+
borderRadius: 0,
|
|
7832
|
+
position: "absolute",
|
|
7833
|
+
background: isEditMode ? colors.lightBlueBackground : colors.neutral100,
|
|
7834
|
+
"&:hover": {
|
|
7835
|
+
backgroundColor: isEditMode ? colors.lightBlueBackground : colors.neutral150
|
|
8223
7836
|
}
|
|
8224
|
-
|
|
8225
|
-
|
|
8226
|
-
|
|
8227
|
-
|
|
8228
|
-
|
|
8229
|
-
|
|
8230
|
-
|
|
8231
|
-
|
|
8232
|
-
|
|
7837
|
+
},
|
|
7838
|
+
children: isEditMode ? /* @__PURE__ */ jsx118(CloseIcon, { fontSize: "small", color: "error" }) : /* @__PURE__ */ jsx118(EditIcon, { fontSize: "small" })
|
|
7839
|
+
}
|
|
7840
|
+
) }) : null,
|
|
7841
|
+
isEditMode && editableCellType ? editableComponents[editableCellType] : renderReadOnlyValue(readOnlyValue)
|
|
7842
|
+
]
|
|
7843
|
+
}
|
|
7844
|
+
)
|
|
7845
|
+
}
|
|
7846
|
+
) });
|
|
8233
7847
|
};
|
|
8234
7848
|
|
|
8235
7849
|
// src/components/TableHeader/TableHeader.tsx
|
|
@@ -8282,22 +7896,16 @@ var TableHeader = ({ cells, onSort = null }) => {
|
|
|
8282
7896
|
});
|
|
8283
7897
|
setSortableCells(sortedCells);
|
|
8284
7898
|
};
|
|
8285
|
-
return /* @__PURE__ */ jsx119(TableHead3, {
|
|
8286
|
-
|
|
8287
|
-
|
|
8288
|
-
|
|
8289
|
-
|
|
8290
|
-
|
|
8291
|
-
|
|
8292
|
-
|
|
8293
|
-
|
|
8294
|
-
|
|
8295
|
-
children: cell.label
|
|
8296
|
-
}
|
|
8297
|
-
) : cell.label
|
|
8298
|
-
}, cell.label || key))
|
|
8299
|
-
})
|
|
8300
|
-
});
|
|
7899
|
+
return /* @__PURE__ */ jsx119(TableHead3, { children: /* @__PURE__ */ jsx119(TableRow6, { children: sortableCells.map((cell, key) => /* @__PURE__ */ jsx119(TableCell7, { children: cell.isSortable ? /* @__PURE__ */ jsx119(
|
|
7900
|
+
TableSortLabel3,
|
|
7901
|
+
{
|
|
7902
|
+
className: classes.sortLabel,
|
|
7903
|
+
direction: cell?.direction || "asc",
|
|
7904
|
+
IconComponent: ImportExportIcon,
|
|
7905
|
+
onClick: () => handleSortClick(cell),
|
|
7906
|
+
children: cell.label
|
|
7907
|
+
}
|
|
7908
|
+
) : cell.label }, cell.label || key)) }) });
|
|
8301
7909
|
};
|
|
8302
7910
|
var TableHeader_default = memo23(TableHeader);
|
|
8303
7911
|
|
|
@@ -8350,23 +7958,19 @@ var TextDivider = ({
|
|
|
8350
7958
|
className: classes.container,
|
|
8351
7959
|
children: [
|
|
8352
7960
|
/* @__PURE__ */ jsx120(Divider10, { className: classes.leftDivider }),
|
|
8353
|
-
/* @__PURE__ */ jsx120(Button14, {
|
|
8354
|
-
|
|
8355
|
-
className: classes.center, children: [
|
|
8356
|
-
Icon2 && iconPosition === "left" && /* @__PURE__ */ jsx120(Icon2, { className: classes.icon, style: { color: iconColor } }),
|
|
7961
|
+
/* @__PURE__ */ jsx120(Button14, { onClick, disabled: !onClick, className: classes.button, children: /* @__PURE__ */ jsxs81(Box34, { className: classes.center, children: [
|
|
7962
|
+
Icon2 && iconPosition === "left" && /* @__PURE__ */ jsx120(Icon2, { className: classes.icon, style: { color: iconColor } }),
|
|
8357
7963
|
/* @__PURE__ */ jsx120(
|
|
8358
|
-
|
|
8359
|
-
|
|
8360
|
-
|
|
8361
|
-
|
|
8362
|
-
|
|
8363
|
-
|
|
8364
|
-
|
|
8365
|
-
|
|
8366
|
-
|
|
8367
|
-
|
|
8368
|
-
})
|
|
8369
|
-
}),
|
|
7964
|
+
Typography29,
|
|
7965
|
+
{
|
|
7966
|
+
color: "textSecondary",
|
|
7967
|
+
className: classes.title,
|
|
7968
|
+
style: { color: iconColor, fontWeight: titleWeight },
|
|
7969
|
+
children: title
|
|
7970
|
+
}
|
|
7971
|
+
),
|
|
7972
|
+
Icon2 && iconPosition === "right" && /* @__PURE__ */ jsx120(Icon2, { className: classes.icon, style: { color: iconColor } })
|
|
7973
|
+
] }) }),
|
|
8370
7974
|
/* @__PURE__ */ jsx120(Divider10, { className: classes.rightDivider })
|
|
8371
7975
|
]
|
|
8372
7976
|
}
|
|
@@ -8503,37 +8107,31 @@ var TheToolbar = ({
|
|
|
8503
8107
|
rightSection
|
|
8504
8108
|
}) => {
|
|
8505
8109
|
const { classes } = useStyles53();
|
|
8506
|
-
return /* @__PURE__ */ jsxs82(Box35, {
|
|
8507
|
-
children: [
|
|
8508
|
-
/* @__PURE__ */ jsx122(AppBar, {
|
|
8509
|
-
children: /* @__PURE__ */ jsxs82(Toolbar, {
|
|
8510
|
-
className: classes.topBar, children: [
|
|
8110
|
+
return /* @__PURE__ */ jsxs82(Box35, { children: [
|
|
8111
|
+
/* @__PURE__ */ jsx122(AppBar, { children: /* @__PURE__ */ jsxs82(Toolbar, { className: classes.topBar, children: [
|
|
8511
8112
|
/* @__PURE__ */ jsx122(
|
|
8512
|
-
|
|
8513
|
-
|
|
8514
|
-
|
|
8515
|
-
|
|
8516
|
-
|
|
8517
|
-
|
|
8518
|
-
|
|
8519
|
-
|
|
8113
|
+
RoundButton_default,
|
|
8114
|
+
{
|
|
8115
|
+
className: classes.menuButton,
|
|
8116
|
+
icon: "menu",
|
|
8117
|
+
noStrokes: true,
|
|
8118
|
+
onClick: handleOpen
|
|
8119
|
+
}
|
|
8120
|
+
),
|
|
8520
8121
|
/* @__PURE__ */ jsx122(
|
|
8521
|
-
|
|
8522
|
-
|
|
8523
|
-
|
|
8524
|
-
|
|
8525
|
-
|
|
8526
|
-
|
|
8527
|
-
|
|
8528
|
-
|
|
8122
|
+
CompanyLogo_default,
|
|
8123
|
+
{
|
|
8124
|
+
size: "small",
|
|
8125
|
+
color: "light",
|
|
8126
|
+
imageLogoDarkSmall,
|
|
8127
|
+
imageLogoLightSmall
|
|
8128
|
+
}
|
|
8129
|
+
),
|
|
8529
8130
|
/* @__PURE__ */ jsx122(Box35, { ml: 2, children: leftSection }),
|
|
8530
8131
|
/* @__PURE__ */ jsx122(Box35, { ml: "auto", children: rightSection })
|
|
8531
|
-
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
LeftDrawer
|
|
8535
|
-
]
|
|
8536
|
-
});
|
|
8132
|
+
] }) }),
|
|
8133
|
+
LeftDrawer
|
|
8134
|
+
] });
|
|
8537
8135
|
};
|
|
8538
8136
|
var TheToolbar_default = memo24(TheToolbar);
|
|
8539
8137
|
|
|
@@ -8629,67 +8227,57 @@ var TwoButtonDialog = ({
|
|
|
8629
8227
|
closeAfterTransition: true,
|
|
8630
8228
|
BackdropComponent: Backdrop,
|
|
8631
8229
|
BackdropProps: { timeout: 500 },
|
|
8632
|
-
children: /* @__PURE__ */ jsx124(Fade2, {
|
|
8633
|
-
|
|
8634
|
-
|
|
8635
|
-
|
|
8636
|
-
|
|
8637
|
-
|
|
8638
|
-
|
|
8639
|
-
|
|
8640
|
-
|
|
8641
|
-
|
|
8642
|
-
|
|
8643
|
-
},
|
|
8644
|
-
children: title
|
|
8645
|
-
}
|
|
8646
|
-
)
|
|
8647
|
-
}),
|
|
8230
|
+
children: /* @__PURE__ */ jsx124(Fade2, { in: open, children: /* @__PURE__ */ jsxs83(Paper12, { className: classes.paper, children: [
|
|
8231
|
+
/* @__PURE__ */ jsxs83(Box36, { className: classes.mb, children: [
|
|
8232
|
+
/* @__PURE__ */ jsx124(Typography30, { variant: "h5", component: "div", children: /* @__PURE__ */ jsx124(
|
|
8233
|
+
Box36,
|
|
8234
|
+
{
|
|
8235
|
+
sx: {
|
|
8236
|
+
fontWeight: 600
|
|
8237
|
+
},
|
|
8238
|
+
children: title
|
|
8239
|
+
}
|
|
8240
|
+
) }),
|
|
8648
8241
|
/* @__PURE__ */ jsxs83(
|
|
8649
|
-
|
|
8650
|
-
|
|
8651
|
-
|
|
8652
|
-
|
|
8653
|
-
|
|
8654
|
-
|
|
8655
|
-
|
|
8656
|
-
|
|
8657
|
-
|
|
8658
|
-
|
|
8659
|
-
|
|
8660
|
-
|
|
8661
|
-
|
|
8662
|
-
}),
|
|
8242
|
+
Box36,
|
|
8243
|
+
{
|
|
8244
|
+
className: classes.mt,
|
|
8245
|
+
sx: {
|
|
8246
|
+
fontWeight: 600
|
|
8247
|
+
},
|
|
8248
|
+
children: [
|
|
8249
|
+
subtitle1 && /* @__PURE__ */ jsx124(Typography30, { variant: "subtitle1", children: subtitle1 }),
|
|
8250
|
+
subtitle2 && /* @__PURE__ */ jsx124(Typography30, { variant: "subtitle1", children: subtitle2 })
|
|
8251
|
+
]
|
|
8252
|
+
}
|
|
8253
|
+
)
|
|
8254
|
+
] }),
|
|
8663
8255
|
/* @__PURE__ */ jsx124(Divider11, {}),
|
|
8664
|
-
/* @__PURE__ */ jsxs83(Box36, {
|
|
8665
|
-
className: classes.buttonContainer, children: [
|
|
8256
|
+
/* @__PURE__ */ jsxs83(Box36, { className: classes.buttonContainer, children: [
|
|
8666
8257
|
/* @__PURE__ */ jsx124(
|
|
8667
|
-
|
|
8668
|
-
|
|
8669
|
-
|
|
8670
|
-
|
|
8671
|
-
|
|
8672
|
-
|
|
8673
|
-
|
|
8674
|
-
}
|
|
8675
|
-
setOpen(false);
|
|
8258
|
+
FilledButton_default,
|
|
8259
|
+
{
|
|
8260
|
+
copy: cancelLabel,
|
|
8261
|
+
color: "default",
|
|
8262
|
+
onClick: () => {
|
|
8263
|
+
if (cancelButton) {
|
|
8264
|
+
cancelButton();
|
|
8676
8265
|
}
|
|
8266
|
+
setOpen(false);
|
|
8677
8267
|
}
|
|
8678
|
-
|
|
8268
|
+
}
|
|
8269
|
+
),
|
|
8679
8270
|
/* @__PURE__ */ jsx124(
|
|
8680
|
-
|
|
8681
|
-
|
|
8682
|
-
|
|
8683
|
-
|
|
8684
|
-
|
|
8685
|
-
|
|
8686
|
-
|
|
8687
|
-
|
|
8688
|
-
}),
|
|
8271
|
+
FilledButton_default,
|
|
8272
|
+
{
|
|
8273
|
+
color: "primary",
|
|
8274
|
+
copy: confirmLabel,
|
|
8275
|
+
onClick: confirmButton
|
|
8276
|
+
}
|
|
8277
|
+
)
|
|
8278
|
+
] }),
|
|
8689
8279
|
/* @__PURE__ */ jsx124(Loading_default, { isLoading: dialogLoading })
|
|
8690
|
-
|
|
8691
|
-
})
|
|
8692
|
-
})
|
|
8280
|
+
] }) })
|
|
8693
8281
|
}
|
|
8694
8282
|
);
|
|
8695
8283
|
};
|
|
@@ -8699,8 +8287,7 @@ var TwoButtonDialog_default = TwoButtonDialog;
|
|
|
8699
8287
|
import { memo as memo25 } from "react";
|
|
8700
8288
|
import { Avatar as Avatar2, Typography as Typography31 } from "@mui/material";
|
|
8701
8289
|
import { jsx as jsx125, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
8702
|
-
var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ jsxs84("div", {
|
|
8703
|
-
children: [
|
|
8290
|
+
var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ jsxs84("div", { children: [
|
|
8704
8291
|
/* @__PURE__ */ jsx125(
|
|
8705
8292
|
Avatar2,
|
|
8706
8293
|
{
|
|
@@ -8709,14 +8296,11 @@ var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ jsxs8
|
|
|
8709
8296
|
style: { width: avatarProps.width, height: avatarProps.height }
|
|
8710
8297
|
}
|
|
8711
8298
|
),
|
|
8712
|
-
/* @__PURE__ */ jsxs84("div", {
|
|
8713
|
-
style: { paddingTop: 16 }, children: [
|
|
8299
|
+
/* @__PURE__ */ jsxs84("div", { style: { paddingTop: 16 }, children: [
|
|
8714
8300
|
/* @__PURE__ */ jsx125(Typography31, { ...typographyProps.name, children: `${user.first_name} ${user.last_name}` }),
|
|
8715
8301
|
/* @__PURE__ */ jsx125(Typography31, { ...typographyProps.username, children: user.username })
|
|
8716
|
-
|
|
8717
|
-
|
|
8718
|
-
]
|
|
8719
|
-
});
|
|
8302
|
+
] })
|
|
8303
|
+
] });
|
|
8720
8304
|
var UserBust_default = memo25(UserBust);
|
|
8721
8305
|
|
|
8722
8306
|
// src/components/icons/IconChart.tsx
|