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