@natoora-libs/core 0.1.4 → 0.1.5
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 +845 -881
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.cts +10 -9
- package/dist/components/index.d.ts +10 -9
- package/dist/components/index.js +719 -755
- package/dist/components/index.js.map +1 -1
- package/package.json +7 -7
package/dist/components/index.js
CHANGED
|
@@ -490,34 +490,7 @@ import {
|
|
|
490
490
|
} from "@mui/icons-material";
|
|
491
491
|
import { Box as Box4, Button as Button4, Tooltip } from "@mui/material";
|
|
492
492
|
import { makeStyles as makeStyles4 } from "tss-react/mui";
|
|
493
|
-
|
|
494
|
-
// src/components/icons/IconCompare.tsx
|
|
495
|
-
import { jsx as jsx5 } from "react/jsx-runtime";
|
|
496
|
-
var SvgIconCompare = (props) => {
|
|
497
|
-
const { fill } = props;
|
|
498
|
-
return /* @__PURE__ */ jsx5(
|
|
499
|
-
"svg",
|
|
500
|
-
{
|
|
501
|
-
width: "24",
|
|
502
|
-
height: "24",
|
|
503
|
-
viewBox: "0 0 18 18",
|
|
504
|
-
fill: "none",
|
|
505
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
506
|
-
...props,
|
|
507
|
-
children: /* @__PURE__ */ jsx5(
|
|
508
|
-
"path",
|
|
509
|
-
{
|
|
510
|
-
d: "M9.75 17.25H8.25V0.75H9.75V17.25ZM6.75 14.25H3.75V3.75H6.75V2.25H3.75C2.9175 2.25 2.25 2.9175 2.25 3.75V14.25C2.25 15.0825 2.925 15.75 3.75 15.75H6.75V14.25ZM14.25 5.25V6.75H15.75V5.25H14.25ZM14.25 3.75H15.75C15.75 2.9175 15.075 2.25 14.25 2.25V3.75ZM15.75 11.25H14.25V12.75H15.75V11.25ZM14.25 8.25V9.75H15.75V8.25H14.25ZM12.75 2.25H11.25V3.75H12.75V2.25ZM14.25 15.75C15.0825 15.75 15.75 15.0825 15.75 14.25H14.25V15.75ZM12.75 14.25H11.25V15.75H12.75V14.25Z",
|
|
511
|
-
fill: fill ?? "#1976D2"
|
|
512
|
-
}
|
|
513
|
-
)
|
|
514
|
-
}
|
|
515
|
-
);
|
|
516
|
-
};
|
|
517
|
-
var IconCompare_default = SvgIconCompare;
|
|
518
|
-
|
|
519
|
-
// src/components/Buttons/ExtendedButton/ExtendedButton.tsx
|
|
520
|
-
import { jsx as jsx6, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
493
|
+
import { jsx as jsx5, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
521
494
|
var useStyles4 = makeStyles4()((theme) => ({
|
|
522
495
|
default: {
|
|
523
496
|
boxShadow: "none",
|
|
@@ -607,11 +580,10 @@ var ExtendedButton = ({
|
|
|
607
580
|
upload: CloudUpload,
|
|
608
581
|
refresh: Refresh,
|
|
609
582
|
download: GetApp,
|
|
610
|
-
publish: Publish
|
|
611
|
-
compare: IconCompare_default
|
|
583
|
+
publish: Publish
|
|
612
584
|
};
|
|
613
585
|
const IconComponent = icons2[type || "add"];
|
|
614
|
-
return /* @__PURE__ */
|
|
586
|
+
return /* @__PURE__ */ jsx5(Tooltip, { title: tooltip, children: /* @__PURE__ */ jsx5(Box4, { children: /* @__PURE__ */ jsxs4(
|
|
615
587
|
Button4,
|
|
616
588
|
{
|
|
617
589
|
className: cx(classes[color], className),
|
|
@@ -624,14 +596,7 @@ var ExtendedButton = ({
|
|
|
624
596
|
type: buttonType,
|
|
625
597
|
variant,
|
|
626
598
|
children: [
|
|
627
|
-
type ? /* @__PURE__ */
|
|
628
|
-
IconComponent,
|
|
629
|
-
{
|
|
630
|
-
fontSize: "small",
|
|
631
|
-
className: classes.icon,
|
|
632
|
-
fill: colors.muiPrimary
|
|
633
|
-
}
|
|
634
|
-
) : null,
|
|
599
|
+
type ? /* @__PURE__ */ jsx5(IconComponent, { fontSize: "small", className: classes.icon }) : null,
|
|
635
600
|
/* @__PURE__ */ jsxs4(
|
|
636
601
|
"div",
|
|
637
602
|
{
|
|
@@ -639,7 +604,7 @@ var ExtendedButton = ({
|
|
|
639
604
|
style: { color: copyColor || "inherit" },
|
|
640
605
|
children: [
|
|
641
606
|
copy,
|
|
642
|
-
/* @__PURE__ */
|
|
607
|
+
/* @__PURE__ */ jsx5("span", { children: subcopy })
|
|
643
608
|
]
|
|
644
609
|
}
|
|
645
610
|
)
|
|
@@ -650,7 +615,7 @@ var ExtendedButton = ({
|
|
|
650
615
|
var ExtendedButton_default = memo(ExtendedButton);
|
|
651
616
|
|
|
652
617
|
// src/components/BottomBar/BottomBar.tsx
|
|
653
|
-
import { jsx as
|
|
618
|
+
import { jsx as jsx6, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
654
619
|
var useStyles5 = makeStyles5()((theme) => ({
|
|
655
620
|
footer: {
|
|
656
621
|
backgroundColor: colors.neutral100,
|
|
@@ -672,7 +637,7 @@ var BottomBar = ({
|
|
|
672
637
|
onRefreshClick = null
|
|
673
638
|
}) => {
|
|
674
639
|
const { classes, cx } = useStyles5();
|
|
675
|
-
return /* @__PURE__ */
|
|
640
|
+
return /* @__PURE__ */ jsx6(Paper, { className: cx(classes.footer, className), elevation: 1, children: /* @__PURE__ */ jsxs5(
|
|
676
641
|
Box5,
|
|
677
642
|
{
|
|
678
643
|
className: classes.insideWrapper,
|
|
@@ -682,7 +647,7 @@ var BottomBar = ({
|
|
|
682
647
|
justifyContent: "space-between"
|
|
683
648
|
},
|
|
684
649
|
children: [
|
|
685
|
-
onRefreshClick && /* @__PURE__ */
|
|
650
|
+
onRefreshClick && /* @__PURE__ */ jsx6(
|
|
686
651
|
ExtendedButton_default,
|
|
687
652
|
{
|
|
688
653
|
className: classes.button,
|
|
@@ -707,7 +672,7 @@ import green from "@mui/material/colors/green";
|
|
|
707
672
|
import orange from "@mui/material/colors/orange";
|
|
708
673
|
import red from "@mui/material/colors/red";
|
|
709
674
|
import { makeStyles as makeStyles6 } from "tss-react/mui";
|
|
710
|
-
import { jsx as
|
|
675
|
+
import { jsx as jsx7, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
711
676
|
var useStyles6 = makeStyles6()((theme) => ({
|
|
712
677
|
boxTab: {
|
|
713
678
|
minWidth: 130,
|
|
@@ -761,7 +726,7 @@ var BoxButton = (props) => {
|
|
|
761
726
|
className: [classes.boxTab, classes[borderColor]].join(" "),
|
|
762
727
|
onClick,
|
|
763
728
|
children: [
|
|
764
|
-
/* @__PURE__ */
|
|
729
|
+
/* @__PURE__ */ jsx7(Typography4, { variant: "button", children: label }),
|
|
765
730
|
/* @__PURE__ */ jsxs6(
|
|
766
731
|
Grid,
|
|
767
732
|
{
|
|
@@ -772,8 +737,8 @@ var BoxButton = (props) => {
|
|
|
772
737
|
alignItems: "center"
|
|
773
738
|
},
|
|
774
739
|
children: [
|
|
775
|
-
/* @__PURE__ */
|
|
776
|
-
/* @__PURE__ */
|
|
740
|
+
/* @__PURE__ */ jsx7(Grid, { size: 9, children: main }),
|
|
741
|
+
/* @__PURE__ */ jsx7(Grid, { className: classes.c_box_button__extra, size: 3, children: extra })
|
|
777
742
|
]
|
|
778
743
|
}
|
|
779
744
|
)
|
|
@@ -787,7 +752,7 @@ var BoxButton_default = memo2(BoxButton);
|
|
|
787
752
|
import { memo as memo3 } from "react";
|
|
788
753
|
import { CircularProgress, Button as Button5 } from "@mui/material";
|
|
789
754
|
import { makeStyles as makeStyles7 } from "tss-react/mui";
|
|
790
|
-
import { jsx as
|
|
755
|
+
import { jsx as jsx8, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
791
756
|
var useStyles7 = makeStyles7()((theme) => ({
|
|
792
757
|
button: {
|
|
793
758
|
background: colors.default,
|
|
@@ -871,7 +836,7 @@ var FilledButton = ({
|
|
|
871
836
|
variant,
|
|
872
837
|
children: [
|
|
873
838
|
copy,
|
|
874
|
-
isLoading && /* @__PURE__ */
|
|
839
|
+
isLoading && /* @__PURE__ */ jsx8(
|
|
875
840
|
CircularProgress,
|
|
876
841
|
{
|
|
877
842
|
className: classes.loadingText,
|
|
@@ -889,7 +854,7 @@ var FilledButton_default = memo3(FilledButton);
|
|
|
889
854
|
import { memo as memo4 } from "react";
|
|
890
855
|
import { Box as Box6, CircularProgress as CircularProgress2, Button as Button6 } from "@mui/material";
|
|
891
856
|
import { withStyles } from "tss-react/mui";
|
|
892
|
-
import { jsx as
|
|
857
|
+
import { jsx as jsx9, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
893
858
|
var FilledButtonLg = ({
|
|
894
859
|
classes,
|
|
895
860
|
disabled,
|
|
@@ -899,7 +864,7 @@ var FilledButtonLg = ({
|
|
|
899
864
|
handleClick,
|
|
900
865
|
loading = false,
|
|
901
866
|
loadingProps
|
|
902
|
-
}) => /* @__PURE__ */
|
|
867
|
+
}) => /* @__PURE__ */ jsx9(
|
|
903
868
|
Button6,
|
|
904
869
|
{
|
|
905
870
|
variant,
|
|
@@ -916,7 +881,7 @@ var FilledButtonLg = ({
|
|
|
916
881
|
},
|
|
917
882
|
children: [
|
|
918
883
|
copy,
|
|
919
|
-
loading && /* @__PURE__ */
|
|
884
|
+
loading && /* @__PURE__ */ jsx9(
|
|
920
885
|
CircularProgress2,
|
|
921
886
|
{
|
|
922
887
|
color: loadingProps?.color || "inherit",
|
|
@@ -996,7 +961,7 @@ var FilledButtonLg_default = memo4(ActionButtonLg);
|
|
|
996
961
|
import { memo as memo5 } from "react";
|
|
997
962
|
import { Button as Button7 } from "@mui/material";
|
|
998
963
|
import { makeStyles as makeStyles8 } from "tss-react/mui";
|
|
999
|
-
import { jsx as
|
|
964
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
1000
965
|
var useStyles8 = makeStyles8()(() => ({
|
|
1001
966
|
root: {
|
|
1002
967
|
display: "flex",
|
|
@@ -1025,7 +990,7 @@ var ImageButton = (props) => {
|
|
|
1025
990
|
const e = { target: { value } };
|
|
1026
991
|
onClick(e);
|
|
1027
992
|
};
|
|
1028
|
-
return /* @__PURE__ */
|
|
993
|
+
return /* @__PURE__ */ jsx10(Button7, { onClick: handleClick, className: classes.image, children: /* @__PURE__ */ jsx10("img", { className: classes.imageSrc, src, alt: "a_image" }) });
|
|
1029
994
|
};
|
|
1030
995
|
var ImageButton_default = memo5(ImageButton);
|
|
1031
996
|
|
|
@@ -1033,7 +998,7 @@ var ImageButton_default = memo5(ImageButton);
|
|
|
1033
998
|
import { Add as Add2, ChevronRight } from "@mui/icons-material";
|
|
1034
999
|
import { Typography as Typography5, Button as Button8 } from "@mui/material";
|
|
1035
1000
|
import { makeStyles as makeStyles9 } from "tss-react/mui";
|
|
1036
|
-
import { jsx as
|
|
1001
|
+
import { jsx as jsx11, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
1037
1002
|
var useStyles9 = makeStyles9()((theme) => ({
|
|
1038
1003
|
add: {
|
|
1039
1004
|
backgroundColor: colors.neutral100
|
|
@@ -1069,10 +1034,10 @@ var SquareButton = ({
|
|
|
1069
1034
|
}) => {
|
|
1070
1035
|
const { classes, cx } = useStyles9();
|
|
1071
1036
|
const icon = {
|
|
1072
|
-
add: /* @__PURE__ */
|
|
1073
|
-
forward: /* @__PURE__ */
|
|
1037
|
+
add: /* @__PURE__ */ jsx11(Add2, { className: classes.icon }),
|
|
1038
|
+
forward: /* @__PURE__ */ jsx11(ChevronRight, { className: classes.icon })
|
|
1074
1039
|
};
|
|
1075
|
-
return /* @__PURE__ */
|
|
1040
|
+
return /* @__PURE__ */ jsx11(
|
|
1076
1041
|
Button8,
|
|
1077
1042
|
{
|
|
1078
1043
|
className: cx(
|
|
@@ -1086,7 +1051,7 @@ var SquareButton = ({
|
|
|
1086
1051
|
variant: "contained",
|
|
1087
1052
|
children: /* @__PURE__ */ jsxs9("span", { className: classes.textWrapper, children: [
|
|
1088
1053
|
icon[type],
|
|
1089
|
-
/* @__PURE__ */
|
|
1054
|
+
/* @__PURE__ */ jsx11(Typography5, { className: classes.text, variant: "button", children })
|
|
1090
1055
|
] })
|
|
1091
1056
|
}
|
|
1092
1057
|
);
|
|
@@ -1096,7 +1061,7 @@ var SquareButton_default = SquareButton;
|
|
|
1096
1061
|
// src/components/Buttons/UploadButton/UploadButton.tsx
|
|
1097
1062
|
import { useRef, useState, forwardRef } from "react";
|
|
1098
1063
|
import { Box as Box7 } from "@mui/material";
|
|
1099
|
-
import { jsx as
|
|
1064
|
+
import { jsx as jsx12, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1100
1065
|
var UploadButton = forwardRef(
|
|
1101
1066
|
(props, ref) => {
|
|
1102
1067
|
const [file, setFile] = useState();
|
|
@@ -1115,7 +1080,7 @@ var UploadButton = forwardRef(
|
|
|
1115
1080
|
alignItems: "center"
|
|
1116
1081
|
},
|
|
1117
1082
|
children: [
|
|
1118
|
-
/* @__PURE__ */
|
|
1083
|
+
/* @__PURE__ */ jsx12(
|
|
1119
1084
|
"input",
|
|
1120
1085
|
{
|
|
1121
1086
|
...props,
|
|
@@ -1128,7 +1093,7 @@ var UploadButton = forwardRef(
|
|
|
1128
1093
|
style: { display: "none" }
|
|
1129
1094
|
}
|
|
1130
1095
|
),
|
|
1131
|
-
/* @__PURE__ */
|
|
1096
|
+
/* @__PURE__ */ jsx12(
|
|
1132
1097
|
ExtendedButton_default,
|
|
1133
1098
|
{
|
|
1134
1099
|
buttonType: "button",
|
|
@@ -1152,7 +1117,7 @@ var UploadButton_default = UploadButton;
|
|
|
1152
1117
|
import { memo as memo6 } from "react";
|
|
1153
1118
|
import { Button as Button9, CircularProgress as CircularProgress3 } from "@mui/material";
|
|
1154
1119
|
import { makeStyles as makeStyles10 } from "tss-react/mui";
|
|
1155
|
-
import { jsx as
|
|
1120
|
+
import { jsx as jsx13, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1156
1121
|
var useStyles10 = makeStyles10()((theme) => ({
|
|
1157
1122
|
default: {
|
|
1158
1123
|
boxShadow: "none",
|
|
@@ -1233,7 +1198,7 @@ var OutlinedButton = ({
|
|
|
1233
1198
|
type = "button"
|
|
1234
1199
|
}) => {
|
|
1235
1200
|
const { classes, cx } = useStyles10();
|
|
1236
|
-
return /* @__PURE__ */
|
|
1201
|
+
return /* @__PURE__ */ jsx13(
|
|
1237
1202
|
Button9,
|
|
1238
1203
|
{
|
|
1239
1204
|
className: cx(color ? classes[color] : classes.default, className, {
|
|
@@ -1254,8 +1219,8 @@ var OutlinedButton = ({
|
|
|
1254
1219
|
}),
|
|
1255
1220
|
children: [
|
|
1256
1221
|
copy,
|
|
1257
|
-
subcopy && /* @__PURE__ */
|
|
1258
|
-
isLoading && /* @__PURE__ */
|
|
1222
|
+
subcopy && /* @__PURE__ */ jsx13("span", { children: subcopy }),
|
|
1223
|
+
isLoading && /* @__PURE__ */ jsx13(
|
|
1259
1224
|
CircularProgress3,
|
|
1260
1225
|
{
|
|
1261
1226
|
className: classes.loadingIcon,
|
|
@@ -1275,8 +1240,8 @@ var OutlinedButton_default = memo6(OutlinedButton);
|
|
|
1275
1240
|
import { memo as memo7 } from "react";
|
|
1276
1241
|
import { Button as Button10 } from "@mui/material";
|
|
1277
1242
|
import { withStyles as withStyles2 } from "tss-react/mui";
|
|
1278
|
-
import { jsx as
|
|
1279
|
-
var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */
|
|
1243
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
1244
|
+
var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */ jsx14(Button10, { variant, className: classes[color], children: copy });
|
|
1280
1245
|
var FilterButtonLg = withStyles2(AButton, (theme) => ({
|
|
1281
1246
|
default: {
|
|
1282
1247
|
boxShadow: "none",
|
|
@@ -1370,16 +1335,16 @@ import { Fab, Tooltip as Tooltip2 } from "@mui/material";
|
|
|
1370
1335
|
import { makeStyles as makeStyles11 } from "tss-react/mui";
|
|
1371
1336
|
|
|
1372
1337
|
// src/components/icons/BallsLogo.tsx
|
|
1373
|
-
import { jsx as
|
|
1338
|
+
import { jsx as jsx15, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1374
1339
|
var SvgBallsLogo = (props) => /* @__PURE__ */ jsxs12("svg", { viewBox: "0 0 1024 305.8", ...props, fill: "currentColor", children: [
|
|
1375
|
-
/* @__PURE__ */
|
|
1376
|
-
/* @__PURE__ */
|
|
1377
|
-
/* @__PURE__ */
|
|
1340
|
+
/* @__PURE__ */ jsx15("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" }),
|
|
1341
|
+
/* @__PURE__ */ jsx15("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" }),
|
|
1342
|
+
/* @__PURE__ */ jsx15("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" })
|
|
1378
1343
|
] });
|
|
1379
1344
|
var BallsLogo_default = SvgBallsLogo;
|
|
1380
1345
|
|
|
1381
1346
|
// src/components/icons/EmptyGlassIcon.tsx
|
|
1382
|
-
import { jsx as
|
|
1347
|
+
import { jsx as jsx16, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1383
1348
|
var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
1384
1349
|
"svg",
|
|
1385
1350
|
{
|
|
@@ -1390,8 +1355,8 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1390
1355
|
fill: "none",
|
|
1391
1356
|
...props,
|
|
1392
1357
|
children: [
|
|
1393
|
-
/* @__PURE__ */
|
|
1394
|
-
/* @__PURE__ */
|
|
1358
|
+
/* @__PURE__ */ jsx16("g", { id: "Frame", clipPath: "url(#clip0_454_24067)", children: /* @__PURE__ */ jsxs13("g", { id: "Clip path group", children: [
|
|
1359
|
+
/* @__PURE__ */ jsx16(
|
|
1395
1360
|
"mask",
|
|
1396
1361
|
{
|
|
1397
1362
|
id: "mask0_454_24067",
|
|
@@ -1400,11 +1365,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1400
1365
|
y: "0",
|
|
1401
1366
|
width: "140",
|
|
1402
1367
|
height: "140",
|
|
1403
|
-
children: /* @__PURE__ */
|
|
1368
|
+
children: /* @__PURE__ */ jsx16("g", { id: "__lottie_element_11", children: /* @__PURE__ */ jsx16("path", { id: "Vector", d: "M140 0H0V140H140V0Z", fill: "white" }) })
|
|
1404
1369
|
}
|
|
1405
1370
|
),
|
|
1406
|
-
/* @__PURE__ */
|
|
1407
|
-
/* @__PURE__ */
|
|
1371
|
+
/* @__PURE__ */ jsx16("g", { mask: "url(#mask0_454_24067)", children: /* @__PURE__ */ jsx16("g", { id: "Group", children: /* @__PURE__ */ jsxs13("g", { id: "Clip path group_2", children: [
|
|
1372
|
+
/* @__PURE__ */ jsx16(
|
|
1408
1373
|
"mask",
|
|
1409
1374
|
{
|
|
1410
1375
|
id: "mask1_454_24067",
|
|
@@ -1413,11 +1378,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1413
1378
|
y: "0",
|
|
1414
1379
|
width: "140",
|
|
1415
1380
|
height: "140",
|
|
1416
|
-
children: /* @__PURE__ */
|
|
1381
|
+
children: /* @__PURE__ */ jsx16("g", { id: "__lottie_element_13", children: /* @__PURE__ */ jsx16("path", { id: "Vector_2", d: "M0 0H140V140H0V0Z", fill: "white" }) })
|
|
1417
1382
|
}
|
|
1418
1383
|
),
|
|
1419
|
-
/* @__PURE__ */
|
|
1420
|
-
/* @__PURE__ */
|
|
1384
|
+
/* @__PURE__ */ jsx16("g", { mask: "url(#mask1_454_24067)", children: /* @__PURE__ */ jsx16("g", { id: "Group_2", children: /* @__PURE__ */ jsxs13("g", { id: "Group_3", children: [
|
|
1385
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_4", children: /* @__PURE__ */ jsx16(
|
|
1421
1386
|
"path",
|
|
1422
1387
|
{
|
|
1423
1388
|
id: "Vector_3",
|
|
@@ -1425,7 +1390,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1425
1390
|
fill: "#B6B2D8"
|
|
1426
1391
|
}
|
|
1427
1392
|
) }),
|
|
1428
|
-
/* @__PURE__ */
|
|
1393
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_5", children: /* @__PURE__ */ jsx16(
|
|
1429
1394
|
"path",
|
|
1430
1395
|
{
|
|
1431
1396
|
id: "Vector_4",
|
|
@@ -1433,7 +1398,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1433
1398
|
fill: "#EECB3A"
|
|
1434
1399
|
}
|
|
1435
1400
|
) }),
|
|
1436
|
-
/* @__PURE__ */
|
|
1401
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_6", children: /* @__PURE__ */ jsx16(
|
|
1437
1402
|
"path",
|
|
1438
1403
|
{
|
|
1439
1404
|
id: "Vector_5",
|
|
@@ -1441,7 +1406,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1441
1406
|
fill: "#F1F1F2"
|
|
1442
1407
|
}
|
|
1443
1408
|
) }),
|
|
1444
|
-
/* @__PURE__ */
|
|
1409
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_7", children: /* @__PURE__ */ jsx16(
|
|
1445
1410
|
"path",
|
|
1446
1411
|
{
|
|
1447
1412
|
id: "Vector_6",
|
|
@@ -1449,7 +1414,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1449
1414
|
fill: "#EECB3A"
|
|
1450
1415
|
}
|
|
1451
1416
|
) }),
|
|
1452
|
-
/* @__PURE__ */
|
|
1417
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_8", children: /* @__PURE__ */ jsx16(
|
|
1453
1418
|
"path",
|
|
1454
1419
|
{
|
|
1455
1420
|
id: "Vector_7",
|
|
@@ -1457,7 +1422,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1457
1422
|
fill: "#B6B2D8"
|
|
1458
1423
|
}
|
|
1459
1424
|
) }),
|
|
1460
|
-
/* @__PURE__ */
|
|
1425
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_9", children: /* @__PURE__ */ jsx16(
|
|
1461
1426
|
"path",
|
|
1462
1427
|
{
|
|
1463
1428
|
id: "Vector_8",
|
|
@@ -1465,7 +1430,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1465
1430
|
fill: "#F6D977"
|
|
1466
1431
|
}
|
|
1467
1432
|
) }),
|
|
1468
|
-
/* @__PURE__ */
|
|
1433
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_10", opacity: "0.655813", children: /* @__PURE__ */ jsx16(
|
|
1469
1434
|
"path",
|
|
1470
1435
|
{
|
|
1471
1436
|
id: "Vector_9",
|
|
@@ -1473,7 +1438,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1473
1438
|
fill: "#B6B2D8"
|
|
1474
1439
|
}
|
|
1475
1440
|
) }),
|
|
1476
|
-
/* @__PURE__ */
|
|
1441
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_11", children: /* @__PURE__ */ jsx16(
|
|
1477
1442
|
"path",
|
|
1478
1443
|
{
|
|
1479
1444
|
id: "Vector_10",
|
|
@@ -1481,7 +1446,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1481
1446
|
fill: "#FFFEFF"
|
|
1482
1447
|
}
|
|
1483
1448
|
) }),
|
|
1484
|
-
/* @__PURE__ */
|
|
1449
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_12", children: /* @__PURE__ */ jsx16(
|
|
1485
1450
|
"path",
|
|
1486
1451
|
{
|
|
1487
1452
|
id: "Vector_11",
|
|
@@ -1489,7 +1454,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1489
1454
|
fill: "#EECB3A"
|
|
1490
1455
|
}
|
|
1491
1456
|
) }),
|
|
1492
|
-
/* @__PURE__ */
|
|
1457
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_13", children: /* @__PURE__ */ jsx16(
|
|
1493
1458
|
"path",
|
|
1494
1459
|
{
|
|
1495
1460
|
id: "Vector_12",
|
|
@@ -1498,7 +1463,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1498
1463
|
}
|
|
1499
1464
|
) }),
|
|
1500
1465
|
/* @__PURE__ */ jsxs13("g", { id: "Group_14", children: [
|
|
1501
|
-
/* @__PURE__ */
|
|
1466
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_15", children: /* @__PURE__ */ jsx16(
|
|
1502
1467
|
"path",
|
|
1503
1468
|
{
|
|
1504
1469
|
id: "Vector_13",
|
|
@@ -1506,7 +1471,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1506
1471
|
fill: "#BF7F42"
|
|
1507
1472
|
}
|
|
1508
1473
|
) }),
|
|
1509
|
-
/* @__PURE__ */
|
|
1474
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_16", children: /* @__PURE__ */ jsx16(
|
|
1510
1475
|
"path",
|
|
1511
1476
|
{
|
|
1512
1477
|
id: "Vector_14",
|
|
@@ -1514,7 +1479,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1514
1479
|
fill: "#C2D1E0"
|
|
1515
1480
|
}
|
|
1516
1481
|
) }),
|
|
1517
|
-
/* @__PURE__ */
|
|
1482
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_17", children: /* @__PURE__ */ jsx16(
|
|
1518
1483
|
"path",
|
|
1519
1484
|
{
|
|
1520
1485
|
id: "Vector_15",
|
|
@@ -1522,7 +1487,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1522
1487
|
fill: "#D2E0EA"
|
|
1523
1488
|
}
|
|
1524
1489
|
) }),
|
|
1525
|
-
/* @__PURE__ */
|
|
1490
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_18", children: /* @__PURE__ */ jsx16(
|
|
1526
1491
|
"path",
|
|
1527
1492
|
{
|
|
1528
1493
|
id: "Vector_16",
|
|
@@ -1530,7 +1495,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1530
1495
|
fill: "#8EC5EA"
|
|
1531
1496
|
}
|
|
1532
1497
|
) }),
|
|
1533
|
-
/* @__PURE__ */
|
|
1498
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_19", children: /* @__PURE__ */ jsx16(
|
|
1534
1499
|
"path",
|
|
1535
1500
|
{
|
|
1536
1501
|
id: "Vector_17",
|
|
@@ -1538,7 +1503,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1538
1503
|
fill: "#70AFDE"
|
|
1539
1504
|
}
|
|
1540
1505
|
) }),
|
|
1541
|
-
/* @__PURE__ */
|
|
1506
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_20", children: /* @__PURE__ */ jsx16(
|
|
1542
1507
|
"path",
|
|
1543
1508
|
{
|
|
1544
1509
|
id: "Vector_18",
|
|
@@ -1546,7 +1511,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1546
1511
|
fill: "#B5713E"
|
|
1547
1512
|
}
|
|
1548
1513
|
) }),
|
|
1549
|
-
/* @__PURE__ */
|
|
1514
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_21", opacity: "0.2", children: /* @__PURE__ */ jsx16(
|
|
1550
1515
|
"path",
|
|
1551
1516
|
{
|
|
1552
1517
|
id: "Vector_19",
|
|
@@ -1558,37 +1523,37 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1558
1523
|
] }) }) })
|
|
1559
1524
|
] }) }) })
|
|
1560
1525
|
] }) }),
|
|
1561
|
-
/* @__PURE__ */
|
|
1526
|
+
/* @__PURE__ */ jsx16("defs", { children: /* @__PURE__ */ jsx16("clipPath", { id: "clip0_454_24067", children: /* @__PURE__ */ jsx16("rect", { width: "140", height: "140", fill: "white" }) }) })
|
|
1562
1527
|
]
|
|
1563
1528
|
}
|
|
1564
1529
|
);
|
|
1565
1530
|
var EmptyGlassIcon_default = SvgEmptyGlassIcon;
|
|
1566
1531
|
|
|
1567
1532
|
// src/components/icons/IconAccount.tsx
|
|
1568
|
-
import { jsx as
|
|
1533
|
+
import { jsx as jsx17, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1569
1534
|
var SvgIconAccount = (props) => /* @__PURE__ */ jsxs14("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1570
|
-
/* @__PURE__ */
|
|
1535
|
+
/* @__PURE__ */ jsx17(
|
|
1571
1536
|
"path",
|
|
1572
1537
|
{
|
|
1573
1538
|
className: "icon-account_svg__st0",
|
|
1574
1539
|
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"
|
|
1575
1540
|
}
|
|
1576
1541
|
),
|
|
1577
|
-
/* @__PURE__ */
|
|
1542
|
+
/* @__PURE__ */ jsx17(
|
|
1578
1543
|
"path",
|
|
1579
1544
|
{
|
|
1580
1545
|
className: "icon-account_svg__st0",
|
|
1581
1546
|
d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1z"
|
|
1582
1547
|
}
|
|
1583
1548
|
),
|
|
1584
|
-
/* @__PURE__ */
|
|
1549
|
+
/* @__PURE__ */ jsx17(
|
|
1585
1550
|
"path",
|
|
1586
1551
|
{
|
|
1587
1552
|
className: "icon-account_svg__st1",
|
|
1588
1553
|
d: "M27.3 27.8c1.6 0 3.1-.6 4.2-1.7 1.2-1.2 1.7-2.5 1.7-4.2 0-1.5-.6-2.9-1.7-4.2-1.1-1.1-2.5-1.7-4.2-1.7s-3.1.6-4.2 1.7-1.7 2.5-1.7 4.2.6 3.1 1.7 4.2 2.6 1.7 4.2 1.7zm0-9.4c1 0 1.8.3 2.4.9.5.5 1 1.4 1 2.5s-.3 1.8-1 2.5-1.5 1-2.5 1-1.8-.3-2.5-1-1-1.5-1-2.5.3-1.8 1-2.5c.8-.6 1.6-.9 2.6-.9z"
|
|
1589
1554
|
}
|
|
1590
1555
|
),
|
|
1591
|
-
/* @__PURE__ */
|
|
1556
|
+
/* @__PURE__ */ jsx17(
|
|
1592
1557
|
"path",
|
|
1593
1558
|
{
|
|
1594
1559
|
className: "icon-account_svg__st1",
|
|
@@ -1599,8 +1564,8 @@ var SvgIconAccount = (props) => /* @__PURE__ */ jsxs14("svg", { viewBox: "0 0 55
|
|
|
1599
1564
|
var IconAccount_default = SvgIconAccount;
|
|
1600
1565
|
|
|
1601
1566
|
// src/components/icons/IconAccounts.tsx
|
|
1602
|
-
import { jsx as
|
|
1603
|
-
var SvgIconAccounts = (props) => /* @__PURE__ */
|
|
1567
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
1568
|
+
var SvgIconAccounts = (props) => /* @__PURE__ */ jsx18("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx18(
|
|
1604
1569
|
"path",
|
|
1605
1570
|
{
|
|
1606
1571
|
className: "icon-accounts_svg__st0",
|
|
@@ -1610,7 +1575,7 @@ var SvgIconAccounts = (props) => /* @__PURE__ */ jsx19("svg", { viewBox: "0 0 55
|
|
|
1610
1575
|
var IconAccounts_default = SvgIconAccounts;
|
|
1611
1576
|
|
|
1612
1577
|
// src/components/icons/IconAvocado.tsx
|
|
1613
|
-
import { jsx as
|
|
1578
|
+
import { jsx as jsx19, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1614
1579
|
var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
1615
1580
|
"svg",
|
|
1616
1581
|
{
|
|
@@ -1620,7 +1585,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1620
1585
|
fill: "none",
|
|
1621
1586
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1622
1587
|
children: [
|
|
1623
|
-
/* @__PURE__ */
|
|
1588
|
+
/* @__PURE__ */ jsx19(
|
|
1624
1589
|
"path",
|
|
1625
1590
|
{
|
|
1626
1591
|
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",
|
|
@@ -1629,7 +1594,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1629
1594
|
strokeMiterlimit: "10"
|
|
1630
1595
|
}
|
|
1631
1596
|
),
|
|
1632
|
-
/* @__PURE__ */
|
|
1597
|
+
/* @__PURE__ */ jsx19(
|
|
1633
1598
|
"path",
|
|
1634
1599
|
{
|
|
1635
1600
|
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",
|
|
@@ -1644,7 +1609,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1644
1609
|
var IconAvocado_default = SvgIconAvocado;
|
|
1645
1610
|
|
|
1646
1611
|
// src/components/icons/IconBanana.tsx
|
|
1647
|
-
import { jsx as
|
|
1612
|
+
import { jsx as jsx20, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1648
1613
|
var SvgIconBanana = () => /* @__PURE__ */ jsxs16(
|
|
1649
1614
|
"svg",
|
|
1650
1615
|
{
|
|
@@ -1654,52 +1619,52 @@ var SvgIconBanana = () => /* @__PURE__ */ jsxs16(
|
|
|
1654
1619
|
fill: "none",
|
|
1655
1620
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1656
1621
|
children: [
|
|
1657
|
-
/* @__PURE__ */
|
|
1622
|
+
/* @__PURE__ */ jsx20("g", { clipPath: "url(#clip0_0_2321)", children: /* @__PURE__ */ jsx20(
|
|
1658
1623
|
"path",
|
|
1659
1624
|
{
|
|
1660
1625
|
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",
|
|
1661
1626
|
fill: colors.neutral800
|
|
1662
1627
|
}
|
|
1663
1628
|
) }),
|
|
1664
|
-
/* @__PURE__ */
|
|
1629
|
+
/* @__PURE__ */ jsx20("defs", { children: /* @__PURE__ */ jsx20("clipPath", { id: "clip0_0_2321", children: /* @__PURE__ */ jsx20("rect", { width: "24", height: "22", fill: "white" }) }) })
|
|
1665
1630
|
]
|
|
1666
1631
|
}
|
|
1667
1632
|
);
|
|
1668
1633
|
var IconBanana_default = SvgIconBanana;
|
|
1669
1634
|
|
|
1670
1635
|
// src/components/icons/IconBuying.tsx
|
|
1671
|
-
import { jsx as
|
|
1636
|
+
import { jsx as jsx21, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1672
1637
|
var SvgIconBuying = (props) => /* @__PURE__ */ jsxs17("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1673
|
-
/* @__PURE__ */
|
|
1638
|
+
/* @__PURE__ */ jsx21(
|
|
1674
1639
|
"path",
|
|
1675
1640
|
{
|
|
1676
1641
|
className: "icon-buying_svg__st0",
|
|
1677
1642
|
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"
|
|
1678
1643
|
}
|
|
1679
1644
|
),
|
|
1680
|
-
/* @__PURE__ */
|
|
1645
|
+
/* @__PURE__ */ jsx21(
|
|
1681
1646
|
"path",
|
|
1682
1647
|
{
|
|
1683
1648
|
className: "icon-buying_svg__st0",
|
|
1684
1649
|
d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1zM39 18.7c-.3-.1-.7-.1-.9-.1H21.2c-.5 0-.6-.1-.7-.4-.1-.3-.3-.6-.4-.8-.1-.2-.2-.5-.4-.8l-.1-.1c-.1-.1-.2-.3-.3-.3h-3.9v2.7h2.1c.2 0 .4 0 .5.3.5.9.9 1.9 1.4 2.8.9 1.8 1.9 3.7 2.7 5.7 0 0 .1.1.1.2s0 .2-.1.2c-.2.5-.5 1-.8 1.5-.2.3-.3.5-.5.9-.5.9-.6 2-.1 2.8.5.8 1.3 1.3 2.4 1.3h14.4V32H23.4c-.3 0-.5 0-.5-.1s.1-.3.1-.5c.3-.3.5-.7.7-1.2.2-.3.4-.4.8-.4h8.3c1.1 0 2-.5 2.6-1.7.7-1.3 1.4-2.7 2.3-4.1.6-1.1 1.3-2.3 1.9-3.5.4-.8-.1-1.5-.6-1.8zm-2.2 2.1c-.4.7-.8 1.4-1.1 2-.8 1.4-1.6 2.8-2.3 4.1-.3.5-.4.5-.6.5H24.2c0-.3-.1-.7-.3-.9-.8-2-1.8-3.8-2.7-5.7v-.1h15.6zM22.8 35.5c-1.4 0-2.6 1.2-2.6 2.6s1.2 2.6 2.6 2.6 2.6-1.2 2.6-2.6-1.2-2.6-2.6-2.6z"
|
|
1685
1650
|
}
|
|
1686
1651
|
),
|
|
1687
|
-
/* @__PURE__ */
|
|
1652
|
+
/* @__PURE__ */ jsx21("circle", { className: "icon-buying_svg__st0", cx: 34.7, cy: 38.1, r: 2.6 })
|
|
1688
1653
|
] });
|
|
1689
1654
|
var IconBuying_default = SvgIconBuying;
|
|
1690
1655
|
|
|
1691
1656
|
// src/components/icons/IconContentManagement.tsx
|
|
1692
|
-
import { jsx as
|
|
1657
|
+
import { jsx as jsx22, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1693
1658
|
var IconContentManagement = (props) => /* @__PURE__ */ jsxs18("svg", { viewBox: "0 0 55 56.7", ...props, fill: "0000", strokeWidth: "0px", children: [
|
|
1694
|
-
/* @__PURE__ */
|
|
1659
|
+
/* @__PURE__ */ jsx22(
|
|
1695
1660
|
"path",
|
|
1696
1661
|
{
|
|
1697
1662
|
className: "cls-1",
|
|
1698
1663
|
d: "M33,38.1c0,1.2-1.2,2.2-2.8,2.2h-11c-1.6,0-2.8-1.2-2.8-2.8v-18.3c0-1.5,1.1-2.8,2.5-2.9,1.1-.1,3.2-.1,4.4-.1h1.6v2.1h-5.2c-1.2,0-1.3.1-1.3,1.3v16.9c0,1.1.2,1.3,1.3,1.3h9.7c1.2,0,1.3,0,1.3-1.4v-5.9h2.2v2.6c0,1.7.2,3.4,0,5Z"
|
|
1699
1664
|
}
|
|
1700
1665
|
),
|
|
1701
|
-
/* @__PURE__ */
|
|
1702
|
-
/* @__PURE__ */
|
|
1666
|
+
/* @__PURE__ */ jsx22("rect", { className: "cls-1", x: "21.6", y: "34.1", width: "3.6", height: "5.2" }),
|
|
1667
|
+
/* @__PURE__ */ jsx22(
|
|
1703
1668
|
"path",
|
|
1704
1669
|
{
|
|
1705
1670
|
className: "cls-1",
|
|
@@ -1710,23 +1675,23 @@ var IconContentManagement = (props) => /* @__PURE__ */ jsxs18("svg", { viewBox:
|
|
|
1710
1675
|
var IconContentManagement_default = IconContentManagement;
|
|
1711
1676
|
|
|
1712
1677
|
// src/components/icons/IconGoodsin.tsx
|
|
1713
|
-
import { jsx as
|
|
1678
|
+
import { jsx as jsx23, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1714
1679
|
var SvgIconGoodsin = (props) => /* @__PURE__ */ jsxs19("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1715
|
-
/* @__PURE__ */
|
|
1680
|
+
/* @__PURE__ */ jsx23(
|
|
1716
1681
|
"path",
|
|
1717
1682
|
{
|
|
1718
1683
|
className: "icon-goodsin_svg__st0",
|
|
1719
1684
|
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"
|
|
1720
1685
|
}
|
|
1721
1686
|
),
|
|
1722
|
-
/* @__PURE__ */
|
|
1687
|
+
/* @__PURE__ */ jsx23(
|
|
1723
1688
|
"path",
|
|
1724
1689
|
{
|
|
1725
1690
|
className: "icon-goodsin_svg__st0",
|
|
1726
1691
|
d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1zM19.5 34.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c0-1.6-1.3-3-2.9-3zM30.4 34.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c-.1-1.7-1.4-2.9-3-2.9z"
|
|
1727
1692
|
}
|
|
1728
1693
|
),
|
|
1729
|
-
/* @__PURE__ */
|
|
1694
|
+
/* @__PURE__ */ jsx23(
|
|
1730
1695
|
"path",
|
|
1731
1696
|
{
|
|
1732
1697
|
className: "icon-goodsin_svg__st0",
|
|
@@ -1737,8 +1702,8 @@ var SvgIconGoodsin = (props) => /* @__PURE__ */ jsxs19("svg", { viewBox: "0 0 55
|
|
|
1737
1702
|
var IconGoodsin_default = SvgIconGoodsin;
|
|
1738
1703
|
|
|
1739
1704
|
// src/components/icons/IconGrape.tsx
|
|
1740
|
-
import { jsx as
|
|
1741
|
-
var SvgIconGrape = (props) => /* @__PURE__ */
|
|
1705
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
1706
|
+
var SvgIconGrape = (props) => /* @__PURE__ */ jsx24(
|
|
1742
1707
|
"svg",
|
|
1743
1708
|
{
|
|
1744
1709
|
width: "24",
|
|
@@ -1747,7 +1712,7 @@ var SvgIconGrape = (props) => /* @__PURE__ */ jsx25(
|
|
|
1747
1712
|
fill: "none",
|
|
1748
1713
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1749
1714
|
...props,
|
|
1750
|
-
children: /* @__PURE__ */
|
|
1715
|
+
children: /* @__PURE__ */ jsx24(
|
|
1751
1716
|
"path",
|
|
1752
1717
|
{
|
|
1753
1718
|
d: "M21 12C20.9984 10.6744 20.4711 9.40355 19.5338 8.46621C18.5964 7.52888 17.3256 7.00158 16 6.99999C14.9141 7.00504 13.86 7.36695 13 8.02999C13 8.02099 13.005 8.01399 13.005 8.00499C12.9832 7.60549 13.0456 7.20586 13.1882 6.83205C13.3309 6.45824 13.5506 6.11862 13.833 5.83523C14.1154 5.55185 14.4543 5.33104 14.8277 5.18714C15.201 5.04325 15.6004 4.97948 16 4.99999C16.2652 4.99999 16.5196 4.89464 16.7071 4.7071C16.8946 4.51956 17 4.26521 17 3.99999C17 3.73478 16.8946 3.48042 16.7071 3.29289C16.5196 3.10535 16.2652 2.99999 16 2.99999C15.3032 2.96439 14.6071 3.08408 13.9622 3.35041C13.3173 3.61675 12.7396 4.02307 12.271 4.53999C11.8704 3.47457 11.1471 2.56079 10.2022 1.92617C9.25727 1.29156 8.1378 0.967771 6.99999 0.999994C6.73478 0.999994 6.48042 1.10535 6.29289 1.29289C6.10535 1.48042 5.99999 1.73478 5.99999 1.99999C5.99703 3.81487 6.5846 5.58144 7.67399 7.03299C6.45538 7.10841 5.30691 7.62879 4.44673 8.49528C3.58655 9.36177 3.07458 10.514 3.00807 11.7331C2.94156 12.9523 3.32514 14.1534 4.08596 15.1083C4.84677 16.0632 5.93182 16.7055 7.13499 16.913C7.04927 17.2691 7.00398 17.6337 6.99999 18C6.99557 18.7054 7.14048 19.4038 7.4252 20.0493C7.70991 20.6947 8.12799 21.2726 8.65196 21.745C9.17592 22.2174 9.79392 22.5735 10.4653 22.79C11.1367 23.0065 11.8464 23.0785 12.5476 23.0012C13.2488 22.924 13.9257 22.6992 14.5339 22.3417C15.142 21.9841 15.6676 21.502 16.0762 20.9268C16.4847 20.3517 16.7669 19.6967 16.9042 19.0047C17.0416 18.3127 17.0309 17.5995 16.873 16.912C18.0277 16.7072 19.0738 16.1031 19.8282 15.2052C20.5826 14.3073 20.9974 13.1728 21 12ZM10.882 6.85099C8.99399 6.30899 8.34299 4.40599 8.11799 3.15099C10.006 3.69099 10.657 5.59299 10.882 6.85099ZM4.99999 12C4.99999 11.2043 5.31606 10.4413 5.87867 9.87867C6.44128 9.31606 7.20434 8.99999 7.99999 8.99999C8.79564 8.99999 9.55871 9.31606 10.1213 9.87867C10.6839 10.4413 11 11.2043 11 12C11 15.975 4.99999 15.976 4.99999 12ZM12 21C11.2043 21 10.4413 20.6839 9.87867 20.1213C9.31606 19.5587 8.99999 18.7956 8.99999 18C8.9999 17.5953 9.08544 17.1952 9.25099 16.826C10.3394 16.5388 11.3007 15.8961 11.982 15C12.4994 15.0066 13.0067 15.1437 13.457 15.3985C13.9073 15.6534 14.286 16.0178 14.558 16.458C14.8368 16.911 14.9893 17.4304 14.9996 17.9622C15.01 18.494 14.8778 19.0189 14.6167 19.4824C14.3557 19.9459 13.9754 20.331 13.5152 20.5979C13.0551 20.8648 12.5319 21.0036 12 21ZM16 15H15.982C15.3229 14.1283 14.3951 13.4979 13.342 13.206C13.311 13.197 13.282 13.182 13.251 13.174C13.0854 12.8047 12.9999 12.4047 13 12C13 11.4066 13.1759 10.8266 13.5056 10.3333C13.8352 9.83994 14.3038 9.45542 14.8519 9.22835C15.4001 9.00129 16.0033 8.94188 16.5853 9.05764C17.1672 9.17339 17.7018 9.45912 18.1213 9.87867C18.5409 10.2982 18.8266 10.8328 18.9424 11.4147C19.0581 11.9967 18.9987 12.5999 18.7716 13.148C18.5446 13.6962 18.1601 14.1648 17.6667 14.4944C17.1734 14.824 16.5933 15 16 15Z",
|
|
@@ -1759,23 +1724,23 @@ var SvgIconGrape = (props) => /* @__PURE__ */ jsx25(
|
|
|
1759
1724
|
var IconGrape_default = SvgIconGrape;
|
|
1760
1725
|
|
|
1761
1726
|
// src/components/icons/IconHome.tsx
|
|
1762
|
-
import { jsx as
|
|
1727
|
+
import { jsx as jsx25, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1763
1728
|
var SvgIconHome = (props) => /* @__PURE__ */ jsxs20("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1764
|
-
/* @__PURE__ */
|
|
1729
|
+
/* @__PURE__ */ jsx25(
|
|
1765
1730
|
"path",
|
|
1766
1731
|
{
|
|
1767
1732
|
className: "icon-home_svg__st0",
|
|
1768
1733
|
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"
|
|
1769
1734
|
}
|
|
1770
1735
|
),
|
|
1771
|
-
/* @__PURE__ */
|
|
1736
|
+
/* @__PURE__ */ jsx25(
|
|
1772
1737
|
"path",
|
|
1773
1738
|
{
|
|
1774
1739
|
className: "icon-home_svg__st0",
|
|
1775
1740
|
d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1z"
|
|
1776
1741
|
}
|
|
1777
1742
|
),
|
|
1778
|
-
/* @__PURE__ */
|
|
1743
|
+
/* @__PURE__ */ jsx25(
|
|
1779
1744
|
"path",
|
|
1780
1745
|
{
|
|
1781
1746
|
className: "icon-home_svg__st1",
|
|
@@ -1786,8 +1751,8 @@ var SvgIconHome = (props) => /* @__PURE__ */ jsxs20("svg", { viewBox: "0 0 55 56
|
|
|
1786
1751
|
var IconHome_default = SvgIconHome;
|
|
1787
1752
|
|
|
1788
1753
|
// src/components/icons/IconImport.tsx
|
|
1789
|
-
import { jsx as
|
|
1790
|
-
var SvgIconImport = (props) => /* @__PURE__ */
|
|
1754
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
1755
|
+
var SvgIconImport = (props) => /* @__PURE__ */ jsx26("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "-8 -8 40 40", ...props, children: /* @__PURE__ */ jsx26(
|
|
1791
1756
|
"path",
|
|
1792
1757
|
{
|
|
1793
1758
|
className: "icon-runs_svg__st0",
|
|
@@ -1797,16 +1762,16 @@ var SvgIconImport = (props) => /* @__PURE__ */ jsx27("svg", { xmlns: "http://www
|
|
|
1797
1762
|
var IconImport_default = SvgIconImport;
|
|
1798
1763
|
|
|
1799
1764
|
// src/components/icons/IconLocation.tsx
|
|
1800
|
-
import { jsx as
|
|
1765
|
+
import { jsx as jsx27, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1801
1766
|
var SvgIconLocation = (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1802
|
-
/* @__PURE__ */
|
|
1767
|
+
/* @__PURE__ */ jsx27(
|
|
1803
1768
|
"path",
|
|
1804
1769
|
{
|
|
1805
1770
|
className: "icon-location_svg__st0",
|
|
1806
1771
|
d: "M36.8 25.4c-.1-2.5-1.1-4.8-2.9-6.5-1.8-1.8-4.1-2.7-6.6-2.7-5.1 0-9.2 4.2-9.2 9.3 0 1.8.5 3.5 1.6 5.1 1.6 2.6 3.4 5.3 5.5 8.5.8 1.1 1.7 1.4 2.3 1.4h.1c.6 0 1.5-.3 2.2-1.4.5-.7.9-1.4 1.4-2.2l.1-.2c1.2-1.9 2.5-3.8 3.7-5.7 1.3-1.7 1.9-3.6 1.8-5.6zm-9.4-6.6h.1c1.7 0 3.4.7 4.6 1.9 1.3 1.3 2.1 3 2.1 4.8.1 1.7-.7 3.1-1.3 4l-.1.1c-1.2 1.9-2.4 3.8-3.7 5.7-.5.8-1 1.5-1.5 2.3-.1.1-.1.2-.2.2l-.2-.2c-2.1-3.1-3.8-5.8-5.5-8.4-.8-1.1-1.1-2.4-1.1-3.7.1-3.7 3.1-6.7 6.8-6.7zm.1 21.3z"
|
|
1807
1772
|
}
|
|
1808
1773
|
),
|
|
1809
|
-
/* @__PURE__ */
|
|
1774
|
+
/* @__PURE__ */ jsx27(
|
|
1810
1775
|
"path",
|
|
1811
1776
|
{
|
|
1812
1777
|
className: "icon-location_svg__st0",
|
|
@@ -1817,16 +1782,16 @@ var SvgIconLocation = (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 5
|
|
|
1817
1782
|
var IconLocation_default = SvgIconLocation;
|
|
1818
1783
|
|
|
1819
1784
|
// src/components/icons/IconLogin.tsx
|
|
1820
|
-
import { jsx as
|
|
1785
|
+
import { jsx as jsx28, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1821
1786
|
var SvgIconLogin = (props) => /* @__PURE__ */ jsxs22("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1822
|
-
/* @__PURE__ */
|
|
1787
|
+
/* @__PURE__ */ jsx28(
|
|
1823
1788
|
"path",
|
|
1824
1789
|
{
|
|
1825
1790
|
className: "icon-login_svg__st0",
|
|
1826
1791
|
d: "M24.4 35.7h-4.1c-1.4 0-2.2-.9-2.2-2.2v-9.9c0-1.4.9-2.2 2.2-2.2h4.2c.6 0 1-.4 1-1v-.5c0-.8-.4-1-1-1H20c-1 0-2 .4-2.9 1.2-.8.7-1.2 1.8-1.4 2.6v11.4c0 .1 0 .2.1.3v.1c.4 1.9 2.1 3.4 3.9 3.4h4.8c.2 0 .6 0 .6-.3.1-.4.2-1 .1-1.3 0-.5-.7-.6-.8-.6z"
|
|
1827
1792
|
}
|
|
1828
1793
|
),
|
|
1829
|
-
/* @__PURE__ */
|
|
1794
|
+
/* @__PURE__ */ jsx28(
|
|
1830
1795
|
"path",
|
|
1831
1796
|
{
|
|
1832
1797
|
className: "icon-login_svg__st0",
|
|
@@ -1837,16 +1802,16 @@ var SvgIconLogin = (props) => /* @__PURE__ */ jsxs22("svg", { viewBox: "0 0 55 5
|
|
|
1837
1802
|
var IconLogin_default = SvgIconLogin;
|
|
1838
1803
|
|
|
1839
1804
|
// src/components/icons/IconNotification.tsx
|
|
1840
|
-
import { jsx as
|
|
1805
|
+
import { jsx as jsx29, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1841
1806
|
var SvgIconNotification = (props) => /* @__PURE__ */ jsxs23("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1842
|
-
/* @__PURE__ */
|
|
1807
|
+
/* @__PURE__ */ jsx29(
|
|
1843
1808
|
"path",
|
|
1844
1809
|
{
|
|
1845
1810
|
className: "icon-notification_svg__st0",
|
|
1846
1811
|
d: "M33 38.1c-.1 1.2-1.2 2.2-2.8 2.2h-11c-1.6 0-2.8-1.2-2.8-2.8V19.2c0-1.5 1.1-2.8 2.5-2.9 1.1-.1 3.2-.1 4.4-.1H24.9v2.1H19.7c-1.2 0-1.3.1-1.3 1.3v16.9c0 1.1.2 1.3 1.3 1.3h9.7c1.2 0 1.3-.1 1.3-1.4v-5.9h2.2v2.6c.1 1.7.2 3.4.1 5z"
|
|
1847
1812
|
}
|
|
1848
1813
|
),
|
|
1849
|
-
/* @__PURE__ */
|
|
1814
|
+
/* @__PURE__ */ jsx29(
|
|
1850
1815
|
"path",
|
|
1851
1816
|
{
|
|
1852
1817
|
className: "icon-notification_svg__st0",
|
|
@@ -1857,24 +1822,24 @@ var SvgIconNotification = (props) => /* @__PURE__ */ jsxs23("svg", { viewBox: "0
|
|
|
1857
1822
|
var IconNotification_default = SvgIconNotification;
|
|
1858
1823
|
|
|
1859
1824
|
// src/components/icons/IconOpsMetrics.tsx
|
|
1860
|
-
import { jsx as
|
|
1825
|
+
import { jsx as jsx30, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1861
1826
|
var SvgIconOpsMetrics = (props) => /* @__PURE__ */ jsxs24("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1862
|
-
/* @__PURE__ */
|
|
1863
|
-
/* @__PURE__ */
|
|
1827
|
+
/* @__PURE__ */ jsx30("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" }),
|
|
1828
|
+
/* @__PURE__ */ jsx30("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" })
|
|
1864
1829
|
] });
|
|
1865
1830
|
var IconOpsMetrics_default = SvgIconOpsMetrics;
|
|
1866
1831
|
|
|
1867
1832
|
// src/components/icons/IconOrders.tsx
|
|
1868
|
-
import { jsx as
|
|
1833
|
+
import { jsx as jsx31, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1869
1834
|
var SvgIconOrders = (props) => /* @__PURE__ */ jsxs25("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1870
|
-
/* @__PURE__ */
|
|
1835
|
+
/* @__PURE__ */ jsx31(
|
|
1871
1836
|
"path",
|
|
1872
1837
|
{
|
|
1873
1838
|
className: "icon-orders_svg__st0",
|
|
1874
1839
|
d: "M36.1 23.3l-6.6-6.6c-.2-.2-.5-.3-.8-.3h-8.8c-1.8 0-3.3 1.5-3.3 3.3v17.7c0 1.8 1.5 3.3 3.3 3.3h13.2c1.8 0 3.3-1.5 3.3-3.3V24.1c0-.3-.1-.6-.3-.8zm-1.9 14.1c0 .6-.5 1.1-1.1 1.1H19.9c-.6 0-1.1-.5-1.1-1.1V19.7c0-.6.5-1.1 1.1-1.1h8.4l6 6-.1 12.8z"
|
|
1875
1840
|
}
|
|
1876
1841
|
),
|
|
1877
|
-
/* @__PURE__ */
|
|
1842
|
+
/* @__PURE__ */ jsx31(
|
|
1878
1843
|
"path",
|
|
1879
1844
|
{
|
|
1880
1845
|
className: "icon-orders_svg__st0",
|
|
@@ -1885,8 +1850,8 @@ var SvgIconOrders = (props) => /* @__PURE__ */ jsxs25("svg", { viewBox: "0 0 55
|
|
|
1885
1850
|
var IconOrders_default = SvgIconOrders;
|
|
1886
1851
|
|
|
1887
1852
|
// src/components/icons/IconPhone.tsx
|
|
1888
|
-
import { jsx as
|
|
1889
|
-
var SvgIconPhone = (props) => /* @__PURE__ */
|
|
1853
|
+
import { jsx as jsx32 } from "react/jsx-runtime";
|
|
1854
|
+
var SvgIconPhone = (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx32(
|
|
1890
1855
|
"path",
|
|
1891
1856
|
{
|
|
1892
1857
|
className: "icon-phone_svg__st0",
|
|
@@ -1896,30 +1861,30 @@ var SvgIconPhone = (props) => /* @__PURE__ */ jsx33("svg", { viewBox: "0 0 55 56
|
|
|
1896
1861
|
var IconPhone_default = SvgIconPhone;
|
|
1897
1862
|
|
|
1898
1863
|
// src/components/icons/IconPriceList.tsx
|
|
1899
|
-
import { jsx as
|
|
1864
|
+
import { jsx as jsx33, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
1900
1865
|
var SvgIconPriceList = (props) => /* @__PURE__ */ jsxs26("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1901
|
-
/* @__PURE__ */
|
|
1866
|
+
/* @__PURE__ */ jsx33(
|
|
1902
1867
|
"path",
|
|
1903
1868
|
{
|
|
1904
1869
|
className: "icon-price-list_svg__st0",
|
|
1905
1870
|
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"
|
|
1906
1871
|
}
|
|
1907
1872
|
),
|
|
1908
|
-
/* @__PURE__ */
|
|
1873
|
+
/* @__PURE__ */ jsx33(
|
|
1909
1874
|
"path",
|
|
1910
1875
|
{
|
|
1911
1876
|
className: "icon-price-list_svg__st0",
|
|
1912
1877
|
d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1z"
|
|
1913
1878
|
}
|
|
1914
1879
|
),
|
|
1915
|
-
/* @__PURE__ */
|
|
1880
|
+
/* @__PURE__ */ jsx33(
|
|
1916
1881
|
"path",
|
|
1917
1882
|
{
|
|
1918
1883
|
className: "icon-price-list_svg__st1",
|
|
1919
1884
|
d: "M27.3 33c2.6 0 4.8-2.1 4.8-4.7 0-2.5-2.1-4.6-4.8-4.6-2.6 0-4.8 2.1-4.8 4.7 0 1.2.5 2.3 1.4 3.2.9.9 2.1 1.4 3.4 1.4zm-2.4-4.6c0-1.3 1.1-2.3 2.4-2.3 1.3 0 2.4 1 2.4 2.2 0 1.3-1.1 2.3-2.4 2.3-.7 0-1.3-.3-1.7-.7-.5-.4-.7-1-.7-1.5z"
|
|
1920
1885
|
}
|
|
1921
1886
|
),
|
|
1922
|
-
/* @__PURE__ */
|
|
1887
|
+
/* @__PURE__ */ jsx33(
|
|
1923
1888
|
"path",
|
|
1924
1889
|
{
|
|
1925
1890
|
className: "icon-price-list_svg__st1",
|
|
@@ -1930,16 +1895,16 @@ var SvgIconPriceList = (props) => /* @__PURE__ */ jsxs26("svg", { viewBox: "0 0
|
|
|
1930
1895
|
var IconPriceList_default = SvgIconPriceList;
|
|
1931
1896
|
|
|
1932
1897
|
// src/components/icons/IconProducts.tsx
|
|
1933
|
-
import { jsx as
|
|
1898
|
+
import { jsx as jsx34, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
1934
1899
|
var SvgIconProducts = (props) => /* @__PURE__ */ jsxs27("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1935
|
-
/* @__PURE__ */
|
|
1900
|
+
/* @__PURE__ */ jsx34(
|
|
1936
1901
|
"path",
|
|
1937
1902
|
{
|
|
1938
1903
|
className: "icon-products_svg__st0",
|
|
1939
1904
|
d: "M23.2 30.2c0-.9-.6-1.5-1.5-1.5-.8 0-1.7.8-1.7 1.5 0 1 .8 1.6 1.6 1.7h.2c.3 0 .6-.1.8-.3.4-.3.6-.8.6-1.4zM23.1 32c-.3-.1-.6 0-.8.1-.3.2-.5.6-.5 1 .1.5.3 1 1.1 1 .7 0 1.1-.4 1.1-1.1 0-.7-.6-.9-.9-1zM22.5 23.4c-1.4 0-2.5 1.1-2.5 2.5s1 2.3 2.5 2.4h.2c.6 0 1.2-.3 1.7-.8.4-.5.6-1.1.5-1.6-.2-1.5-1.1-2.5-2.4-2.5z"
|
|
1940
1905
|
}
|
|
1941
1906
|
),
|
|
1942
|
-
/* @__PURE__ */
|
|
1907
|
+
/* @__PURE__ */ jsx34(
|
|
1943
1908
|
"path",
|
|
1944
1909
|
{
|
|
1945
1910
|
className: "icon-products_svg__st0",
|
|
@@ -1950,79 +1915,79 @@ var SvgIconProducts = (props) => /* @__PURE__ */ jsxs27("svg", { viewBox: "0 0 5
|
|
|
1950
1915
|
var IconProducts_default = SvgIconProducts;
|
|
1951
1916
|
|
|
1952
1917
|
// src/components/icons/IconPromoCode.tsx
|
|
1953
|
-
import { jsx as
|
|
1918
|
+
import { jsx as jsx35, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
1954
1919
|
var SvgIconPromoCode = (props) => /* @__PURE__ */ jsxs28("svg", { viewBox: "0 0 42.5 42.5", ...props, children: [
|
|
1955
|
-
/* @__PURE__ */
|
|
1920
|
+
/* @__PURE__ */ jsx35(
|
|
1956
1921
|
"path",
|
|
1957
1922
|
{
|
|
1958
1923
|
className: "promo_code_svg_st0",
|
|
1959
1924
|
d: "M11.5,15.9c1.2,0,0.8-1,0.8-1.7c0-1.5,0.2-1.5,1.7-1.7c0.7,0,1.7,0.3,1.7-0.8c0,0,0,0,0-0.1\n c0-0.3-0.1-0.4-0.2-0.5c-0.3-0.4-1.1-0.2-1.5-0.2c-2.7,0-3.5,0.8-3.3,3.3c0,0.3,0,0.6,0,0.8C10.7,15.6,10.8,16,11.5,15.9z"
|
|
1960
1925
|
}
|
|
1961
1926
|
),
|
|
1962
|
-
/* @__PURE__ */
|
|
1927
|
+
/* @__PURE__ */ jsx35(
|
|
1963
1928
|
"path",
|
|
1964
1929
|
{
|
|
1965
1930
|
className: "promo_code_svg_st0",
|
|
1966
1931
|
d: "M14.9,17.5C14.9,17.6,14.9,17.6,14.9,17.5C14.9,17.6,14.9,17.6,14.9,17.5c0,1.5,1.1,2.5,2.5,2.5c0,0,0,0,0,0\n c0,0,0,0,0,0s0,0,0,0c1.4,0,2.5-1.1,2.5-2.4c0,0,0-0.1,0-0.1c0-1.4-1.1-2.5-2.5-2.5c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0\n C16,15.1,14.9,16.2,14.9,17.5z"
|
|
1967
1932
|
}
|
|
1968
1933
|
),
|
|
1969
|
-
/* @__PURE__ */
|
|
1934
|
+
/* @__PURE__ */ jsx35(
|
|
1970
1935
|
"path",
|
|
1971
1936
|
{
|
|
1972
1937
|
className: "promo_code_svg_st0",
|
|
1973
1938
|
d: "M26.7,24.4C26.7,24.4,26.7,24.4,26.7,24.4C26.7,24.4,26.7,24.4,26.7,24.4c0-1.4-1.1-2.5-2.5-2.5\n c-0.1,0-0.1,0-0.2,0c-1.4,0-2.5,1.2-2.5,2.7c0,1.4,1.2,2.5,2.7,2.5C25.6,27,26.8,25.9,26.7,24.4z"
|
|
1974
1939
|
}
|
|
1975
1940
|
),
|
|
1976
|
-
/* @__PURE__ */
|
|
1941
|
+
/* @__PURE__ */ jsx35(
|
|
1977
1942
|
"path",
|
|
1978
1943
|
{
|
|
1979
1944
|
className: "promo_code_svg_st0",
|
|
1980
1945
|
d: "M30,18.4c-0.5,0-0.8,0.4-0.8,0.8v0v3.5v0c0,0.5,0.4,0.8,0.8,0.8s0.8-0.4,0.8-0.8v0v-1.7v0v0v-1.8v0\n C30.9,18.8,30.5,18.4,30,18.4z"
|
|
1981
1946
|
}
|
|
1982
1947
|
),
|
|
1983
|
-
/* @__PURE__ */
|
|
1948
|
+
/* @__PURE__ */ jsx35(
|
|
1984
1949
|
"path",
|
|
1985
1950
|
{
|
|
1986
1951
|
className: "promo_code_svg_st0",
|
|
1987
1952
|
d: "M25.9,16.8c0-0.3-0.2-0.5-0.5-0.7c-0.5-0.3-0.8,0-1.2,0.3c0,0-0.1,0.1-0.1,0.1L16,24.6\n c-0.1,0.1-0.2,0.1-0.3,0.2c-0.2,0.3-0.2,0.8,0.1,1c0,0,0,0,0.1,0.1c0.5,0.5,1,0.2,1.3-0.2l0.2-0.2c0,0,0,0,0,0l8-8\n C25.7,17.4,25.9,17.1,25.9,16.8z"
|
|
1988
1953
|
}
|
|
1989
1954
|
),
|
|
1990
|
-
/* @__PURE__ */
|
|
1955
|
+
/* @__PURE__ */ jsx35(
|
|
1991
1956
|
"path",
|
|
1992
1957
|
{
|
|
1993
1958
|
className: "promo_code_svg_st0",
|
|
1994
1959
|
d: "M19,12.6L19,12.6C19.1,12.6,19.1,12.6,19,12.6c0.1,0,0.1,0,0.2,0h3.3c0.4,0,0.8-0.3,0.8-0.7c0,0,0-0.1,0-0.1\n c0-0.4-0.3-0.8-0.7-0.8c0,0-0.1,0-0.1,0h-0.2c0,0,0,0,0,0h-1.5h-1.7c-0.7,0-1,0.2-1,0.8c0,0,0,0.1,0,0.1\n C18.2,12.3,18.6,12.6,19,12.6z"
|
|
1995
1960
|
}
|
|
1996
1961
|
),
|
|
1997
|
-
/* @__PURE__ */
|
|
1962
|
+
/* @__PURE__ */ jsx35(
|
|
1998
1963
|
"path",
|
|
1999
1964
|
{
|
|
2000
1965
|
className: "promo_code_svg_st0",
|
|
2001
1966
|
d: "M12.4,19.2c0-0.4-0.4-0.8-0.8-0.7c0,0-0.1,0-0.1,0c-0.4,0-0.8,0.4-0.7,0.8v0.2v3.2v0.1v0.1\n c0,0.4,0.3,0.8,0.7,0.8c0,0,0.1,0,0.1,0c0.4,0,0.8-0.3,0.8-0.7c0,0,0-0.1,0-0.1l0-1.7v-1.7c0,0,0,0,0,0V19.2\n C12.4,19.2,12.4,19.2,12.4,19.2z"
|
|
2002
1967
|
}
|
|
2003
1968
|
),
|
|
2004
|
-
/* @__PURE__ */
|
|
1969
|
+
/* @__PURE__ */ jsx35(
|
|
2005
1970
|
"path",
|
|
2006
1971
|
{
|
|
2007
1972
|
className: "promo_code_svg_st0",
|
|
2008
1973
|
d: "M22.4,29.4H22h-1.3h-1.2h-0.3c-0.5,0-0.9,0.3-1,0.8c0,0.4,0.3,0.8,0.7,0.8c0,0,0.1,0,0.1,0h0.3h2.8h0.3\n c0,0,0.1,0,0.1,0c0.4,0,0.8-0.4,0.7-0.8C23.3,29.8,22.9,29.4,22.4,29.4z"
|
|
2009
1974
|
}
|
|
2010
1975
|
),
|
|
2011
|
-
/* @__PURE__ */
|
|
1976
|
+
/* @__PURE__ */ jsx35(
|
|
2012
1977
|
"path",
|
|
2013
1978
|
{
|
|
2014
1979
|
className: "promo_code_svg_st0",
|
|
2015
1980
|
d: "M27.5,12.6L27.5,12.6c1.5,0,1.7,0.2,1.7,1.6v0.1c0,0.7-0.3,1.6,0.8,1.6c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0\n c0.2,0,0.3,0,0.4-0.1c0,0,0,0,0,0c0.6-0.2,0.4-1,0.4-1.6l0-0.2c0.1-0.8-0.1-1.6-0.5-2.3c-1.1-0.9-2.6-1.2-4-0.8\n c-0.1,0-0.1,0.1-0.1,0.1c-0.2,0.1-0.4,0.3-0.4,0.7C25.9,12.9,26.9,12.6,27.5,12.6z"
|
|
2016
1981
|
}
|
|
2017
1982
|
),
|
|
2018
|
-
/* @__PURE__ */
|
|
1983
|
+
/* @__PURE__ */ jsx35(
|
|
2019
1984
|
"path",
|
|
2020
1985
|
{
|
|
2021
1986
|
className: "promo_code_svg_st0",
|
|
2022
1987
|
d: "M30.1,26.1C30.1,26.1,30.1,26.1,30.1,26.1C30,26.1,30,26.1,30.1,26.1c-1.2,0-0.8,1-0.8,1.7\n c0,0.5,0,0.9-0.1,1.1c0,0.1-0.1,0.2-0.2,0.3c0,0,0,0,0,0c-0.1,0.1-0.2,0.1-0.3,0.2c-0.2,0.1-0.6,0.1-1.1,0.1h-0.1\n c-0.4,0-0.9-0.1-1.2,0c-0.3,0.1-0.6,0.4-0.6,0.7c0,0,0,0.1,0,0.1c0,0.5,0.3,0.7,0.7,0.8c1.6,0.5,2.8,0.2,3.6-0.6\n c0.4-0.4,0.7-0.9,0.8-1.6c0,0,0,0,0,0c0-0.2,0.1-0.5,0.1-0.7c0-0.1,0-0.1,0-0.2v-0.2C30.9,27.1,31.2,26.1,30.1,26.1z"
|
|
2023
1988
|
}
|
|
2024
1989
|
),
|
|
2025
|
-
/* @__PURE__ */
|
|
1990
|
+
/* @__PURE__ */ jsx35(
|
|
2026
1991
|
"path",
|
|
2027
1992
|
{
|
|
2028
1993
|
className: "promo_code_svg_st0",
|
|
@@ -2033,8 +1998,8 @@ var SvgIconPromoCode = (props) => /* @__PURE__ */ jsxs28("svg", { viewBox: "0 0
|
|
|
2033
1998
|
var IconPromoCode_default = SvgIconPromoCode;
|
|
2034
1999
|
|
|
2035
2000
|
// src/components/icons/IconQc.tsx
|
|
2036
|
-
import { jsx as
|
|
2037
|
-
var SvgIconQc = (props) => /* @__PURE__ */
|
|
2001
|
+
import { jsx as jsx36 } from "react/jsx-runtime";
|
|
2002
|
+
var SvgIconQc = (props) => /* @__PURE__ */ jsx36("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx36(
|
|
2038
2003
|
"path",
|
|
2039
2004
|
{
|
|
2040
2005
|
className: "icon-qc_svg__st0",
|
|
@@ -2044,8 +2009,8 @@ var SvgIconQc = (props) => /* @__PURE__ */ jsx37("svg", { viewBox: "0 0 55 56.7"
|
|
|
2044
2009
|
var IconQc_default = SvgIconQc;
|
|
2045
2010
|
|
|
2046
2011
|
// src/components/icons/IconReports.tsx
|
|
2047
|
-
import { jsx as
|
|
2048
|
-
var SvgIconReports = (props) => /* @__PURE__ */
|
|
2012
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
2013
|
+
var SvgIconReports = (props) => /* @__PURE__ */ jsx37("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx37(
|
|
2049
2014
|
"path",
|
|
2050
2015
|
{
|
|
2051
2016
|
className: "icon-reports_svg__st0",
|
|
@@ -2055,23 +2020,23 @@ var SvgIconReports = (props) => /* @__PURE__ */ jsx38("svg", { viewBox: "0 0 55
|
|
|
2055
2020
|
var IconReports_default = SvgIconReports;
|
|
2056
2021
|
|
|
2057
2022
|
// src/components/icons/IconRetail.tsx
|
|
2058
|
-
import { jsx as
|
|
2023
|
+
import { jsx as jsx38, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
2059
2024
|
var SvgIconRetail = (props) => /* @__PURE__ */ jsxs29("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2060
|
-
/* @__PURE__ */
|
|
2025
|
+
/* @__PURE__ */ jsx38(
|
|
2061
2026
|
"path",
|
|
2062
2027
|
{
|
|
2063
2028
|
className: "icon-retail_svg__st0",
|
|
2064
2029
|
d: "M38.2 25.5c1 0 1.7-.2 2.5-1 .7-.7 1-1.5 1-2.5s-.4-1.7-1-2.5c-.7-.7-1.6-1-2.5-1-1 0-1.7.2-2.5 1-.6.6-1 1.5-1 2.5s.2 1.7 1 2.5 1.6 1 2.5 1zm-1.1-4.6c.3-.3.5-.4 1.1-.4.4 0 .7.1 1 .4.4.5.5.8.5 1.1 0 .6-.1.8-.4 1.1-.3.3-.5.4-1.1.4-.5 0-.8-.1-1.1-.4-.3-.3-.4-.5-.4-1.1 0-.4.2-.8.4-1.1zM27.5 28.5c1.1 0 2.1-.4 3-1.2.9-.9 1.2-1.7 1.2-3 0-1.1-.5-2.1-1.2-3-.9-.9-1.9-1.2-3-1.2s-2.1.4-3 1.2c-.9.9-1.2 1.9-1.2 3s.4 2.1 1.2 3c.9.8 1.9 1.2 3 1.2zm-1.6-5.8c.5-.5.9-.7 1.6-.7.6 0 1.1.2 1.5.6.5.6.7 1.1.7 1.6 0 .7-.2 1.1-.7 1.6-.5.5-.9.7-1.6.7-.6 0-1.1-.2-1.6-.7-.5-.5-.7-.9-.7-1.6.2-.6.4-1.1.8-1.5zM16.8 25.7c1 0 1.7-.2 2.5-1 .7-.7 1-1.5 1-2.5s-.4-1.7-1-2.5c-.7-.7-1.6-1-2.5-1-1 0-1.7.2-2.5 1-.6.6-1 1.5-1 2.5s.2 1.7 1 2.5 1.6 1 2.5 1zm-1.1-4.5c.3-.3.5-.4 1.1-.4.4 0 .7.1 1 .4.4.5.5.8.5 1.1 0 .6-.1.8-.4 1.1-.3.3-.5.4-1.1.4-.5 0-.8-.1-1.1-.4-.3-.3-.4-.5-.4-1.1 0-.5.2-.8.4-1.1z"
|
|
2065
2030
|
}
|
|
2066
2031
|
),
|
|
2067
|
-
/* @__PURE__ */
|
|
2032
|
+
/* @__PURE__ */ jsx38(
|
|
2068
2033
|
"path",
|
|
2069
2034
|
{
|
|
2070
2035
|
className: "icon-retail_svg__st0",
|
|
2071
2036
|
d: "M44.4 29.1c-.1-.4-.1-.7-.2-1-.1-.2-.2-.6-.4-.9-.1-.2-.2-.5-.5-.7-.2-.2-.5-.4-.7-.5-.2 0-.6-.1-1-.1-.1 0-.1 0-.4.2-.2.2-.5.2-.7.5s-.6.4-1 .5c-.4.1-.9.2-1.2.2s-.9 0-1.2-.2c-.4-.2-.7-.4-1-.5-.2-.2-.5-.4-.7-.5-.4-.1-.4-.2-.6-.2-.4 0-.7 0-1 .1s-.5.2-.7.5c-.1.2-.4.5-.5.7-.1.2-.2.6-.4.9-.1.2-.1.5-.2.8.2 0 .4.1.6.1.4.1.7.4 1 .6.2.4.4.6.6 1 .2.4.4.7.5 1.1.1.4.2.7.2 1.1 0 0 .1.1.1.4h-.9c-.7 0-1.2-.2-1.7-.6-.5-.4-.7-1-.7-1.7V30c0-.2 0-.6.1-1h-.4c-.1 0-.2 0-.5.2-.2.2-.6.4-.9.6s-.7.4-1.2.6c-.5.1-1 .2-1.5.2s-1 0-1.5-.2-1-.4-1.2-.6c-.2-.2-.6-.4-.9-.6-.2-.1-.4-.2-.5-.2h-.4c.1.1.1.2.1.4 0 0 .2 1.1.2 1.9s-.1 1.2-.6 1.7c-.4.5-1 .6-1.7.7h-1.1c0-.2.1-.4.1-.6 0-.5.1-.9.2-1.2 0-.1.1-.3.1-.4v-.2.2l.3-.6c.1-.4.4-.7.6-1 .4-.4.6-.5 1-.6.2-.1.5-.1.7-.1h-.1c0-.2-.1-.4-.1-.6-.1-.2-.2-.6-.4-.9-.1-.2-.2-.5-.5-.7s-.5-.4-.7-.5c-.2 0-.6-.1-1-.1-.1 0-.1.1-.4.2-.2.2-.5.2-.7.5-.2.2-.6.4-1 .5s-.9.2-1.2.2-.9-.1-1.2-.2c-.4-.2-.7-.4-1-.5-.2-.2-.5-.4-.7-.5s-.2-.2-.4-.2c-.4 0-.7 0-1 .1-.2.1-.5.2-.7.5-.1.2-.4.5-.5.7-.1.2-.2.6-.4.9-.1.2-.1.6-.2 1 0 .4-.1.7-.1 1v.9c0 .7.2 1.2.7 1.7.4.4 1 .6 1.7.6h6.8c-.1.2-.1.4-.1.6v1.1c0 .9.2 1.5.9 2.1.5.5 1.1.7 2.1.7h9.8c.9 0 1.5-.2 2.1-.7.6-.5.9-1.1.9-2.1 0-.6-.1-1.5-.2-2h7.1c.7 0 1.2-.1 1.7-.6s.7-1 .7-1.7c.1-.9-.2-2.1-.2-2.1zm-25.6.5c-.3.3-.6.8-.6 1.3 0 .1-.1.2-.1.3 0 .1-.1.2-.1.4h-5.5c-.2-.2-.2-.2-.2-.3v-.8-.1c0-.2.1-.4.1-.6 0-.2.1-.3.1-.5v-.1c.1-.1.1-.3.2-.5 0-.1.1-.2.1-.2l.1-.1v-.1c.2.2.3.3.5.4.1.1.2.1.4.2s.3.1.4.2c.1.1.3.2.5.2.5.2 1.2.4 1.9.4s1.4-.2 1.9-.4c.2-.1.4-.1.6-.2-.1.1-.2.3-.3.5zm14.5 6.2c-.4.3-.6.4-.9.4h-9.8c-.5 0-.6-.1-.7-.2-.2-.2-.2-.3-.3-.4.8-.2 1.7-.4 2.5-1.3.6-.6.9-1.2 1.1-1.9.9.4 1.6.4 2.2.4.7 0 1.4-.2 2-.3.1 0 .3-.1.4-.2.1 0 .1 0 .2-.1.2.8.7 1.5 1.4 2 .5.4 1.1.8 2.1.9v.2c-.2.4-.2.5-.2.5zm9.2-4.5h-5.8c0-.1-.1-.2-.1-.2-.1-.4-.3-1-.7-1.6-.1-.2-.2-.3-.3-.4-.1-.2-.2-.4-.4-.6 0 0 .1 0 .2.1.2.1.3.1.4.2.9.6 1.8.6 2.4.6.7 0 1.4-.2 1.9-.4s1.1-.4 1.7-.9c.1 0 .1-.1.2-.1 0 0 0 .1.1.1 0 .1.1.2.1.3.1.2.1.3.2.5v.1c0 .2.1.4.1.6.1.5.2 1.1.2 1.4 0 .1 0 .1-.2.3z"
|
|
2072
2037
|
}
|
|
2073
2038
|
),
|
|
2074
|
-
/* @__PURE__ */
|
|
2039
|
+
/* @__PURE__ */ jsx38(
|
|
2075
2040
|
"path",
|
|
2076
2041
|
{
|
|
2077
2042
|
className: "icon-retail_svg__st0",
|
|
@@ -2082,8 +2047,8 @@ var SvgIconRetail = (props) => /* @__PURE__ */ jsxs29("svg", { viewBox: "0 0 55
|
|
|
2082
2047
|
var IconRetail_default = SvgIconRetail;
|
|
2083
2048
|
|
|
2084
2049
|
// src/components/icons/IconRuns.tsx
|
|
2085
|
-
import { jsx as
|
|
2086
|
-
var SvgIconRuns = (props) => /* @__PURE__ */
|
|
2050
|
+
import { jsx as jsx39 } from "react/jsx-runtime";
|
|
2051
|
+
var SvgIconRuns = (props) => /* @__PURE__ */ jsx39("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx39(
|
|
2087
2052
|
"path",
|
|
2088
2053
|
{
|
|
2089
2054
|
className: "icon-runs_svg__st0",
|
|
@@ -2093,23 +2058,23 @@ var SvgIconRuns = (props) => /* @__PURE__ */ jsx40("svg", { viewBox: "0 0 55 56.
|
|
|
2093
2058
|
var IconRuns_default = SvgIconRuns;
|
|
2094
2059
|
|
|
2095
2060
|
// src/components/icons/IconScales.tsx
|
|
2096
|
-
import { jsx as
|
|
2061
|
+
import { jsx as jsx40, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
2097
2062
|
var SvgIconScales = (props) => /* @__PURE__ */ jsxs30("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2098
|
-
/* @__PURE__ */
|
|
2063
|
+
/* @__PURE__ */ jsx40(
|
|
2099
2064
|
"path",
|
|
2100
2065
|
{
|
|
2101
2066
|
className: "icon-scales_svg__st0",
|
|
2102
2067
|
d: "M27.7 28.9c-2.7 0-4.9 2.2-4.9 4.9s2.2 4.9 4.9 4.9 4.9-2.2 4.9-4.9-2.2-4.9-4.9-4.9z"
|
|
2103
2068
|
}
|
|
2104
2069
|
),
|
|
2105
|
-
/* @__PURE__ */
|
|
2070
|
+
/* @__PURE__ */ jsx40(
|
|
2106
2071
|
"path",
|
|
2107
2072
|
{
|
|
2108
2073
|
className: "icon-scales_svg__st0",
|
|
2109
2074
|
d: "M34.1 25.5h-2.5c-.1-.2-.2-.3-.2-.5 0-.3.2-.6.4-.9 3.2-.6 4.6-1.7 4.6-1.7 1.8-1.3 2-2.4 2-2.8 0-.6-.5-1.1-1.1-1.1H18.2c-.6 0-1.1.5-1.1 1.1 0 .5.3 1.5 2 2.8.2.1 1.6 1.1 4.7 1.7.2.3.4.6.4.9 0 .2-.1.4-.2.5h-2.7c-1.4 0-2.6 1.2-2.6 2.5l-1.5 11.4v.1c0 1.4 1.2 2.6 2.6 2.6h15.9c1.4 0 2.6-1.2 2.6-2.7L36.7 28c0-1.4-1.2-2.5-2.6-2.5zm.7-4.8c-.5.3-2.6 1.6-7.1 1.6-.2 0-1.3 0-2.3-.1h-.2c-2.7-.4-4.2-1.1-4.6-1.4h14.2zm.8 19.1H19.7c-.2 0-.4-.2-.4-.3l1.5-11.3v-.1c0-.2.2-.4.4-.4h12.9c.2 0 .4.2.4.4L36 39.4c0 .3-.2.4-.4.4z"
|
|
2110
2075
|
}
|
|
2111
2076
|
),
|
|
2112
|
-
/* @__PURE__ */
|
|
2077
|
+
/* @__PURE__ */ jsx40(
|
|
2113
2078
|
"path",
|
|
2114
2079
|
{
|
|
2115
2080
|
className: "icon-scales_svg__st1",
|
|
@@ -2120,8 +2085,8 @@ var SvgIconScales = (props) => /* @__PURE__ */ jsxs30("svg", { viewBox: "0 0 55
|
|
|
2120
2085
|
var IconScales_default = SvgIconScales;
|
|
2121
2086
|
|
|
2122
2087
|
// src/components/icons/IconSearchCategories.tsx
|
|
2123
|
-
import { jsx as
|
|
2124
|
-
var SvgIconSearchCategories = (props) => /* @__PURE__ */
|
|
2088
|
+
import { jsx as jsx41 } from "react/jsx-runtime";
|
|
2089
|
+
var SvgIconSearchCategories = (props) => /* @__PURE__ */ jsx41("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx41(
|
|
2125
2090
|
"path",
|
|
2126
2091
|
{
|
|
2127
2092
|
className: "icon-search-categories_svg__st0",
|
|
@@ -2131,8 +2096,8 @@ var SvgIconSearchCategories = (props) => /* @__PURE__ */ jsx42("svg", { viewBox:
|
|
|
2131
2096
|
var IconSearchCategories_default = SvgIconSearchCategories;
|
|
2132
2097
|
|
|
2133
2098
|
// src/components/icons/IconSetting.tsx
|
|
2134
|
-
import { jsx as
|
|
2135
|
-
var SvgIconSetting = (props) => /* @__PURE__ */
|
|
2099
|
+
import { jsx as jsx42 } from "react/jsx-runtime";
|
|
2100
|
+
var SvgIconSetting = (props) => /* @__PURE__ */ jsx42("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx42(
|
|
2136
2101
|
"path",
|
|
2137
2102
|
{
|
|
2138
2103
|
className: "icon-setting_svg__st0",
|
|
@@ -2142,8 +2107,8 @@ var SvgIconSetting = (props) => /* @__PURE__ */ jsx43("svg", { viewBox: "0 0 55
|
|
|
2142
2107
|
var IconSetting_default = SvgIconSetting;
|
|
2143
2108
|
|
|
2144
2109
|
// src/components/icons/IconSnail.tsx
|
|
2145
|
-
import { jsx as
|
|
2146
|
-
var SvgIconSnail = (props) => /* @__PURE__ */
|
|
2110
|
+
import { jsx as jsx43 } from "react/jsx-runtime";
|
|
2111
|
+
var SvgIconSnail = (props) => /* @__PURE__ */ jsx43(
|
|
2147
2112
|
"svg",
|
|
2148
2113
|
{
|
|
2149
2114
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2151,36 +2116,36 @@ var SvgIconSnail = (props) => /* @__PURE__ */ jsx44(
|
|
|
2151
2116
|
height: "24",
|
|
2152
2117
|
viewBox: "0 0 24 24",
|
|
2153
2118
|
...props,
|
|
2154
|
-
children: /* @__PURE__ */
|
|
2119
|
+
children: /* @__PURE__ */ jsx43("path", { d: "M20.31 8.03L21.24 4.95C21.67 4.85 22 4.47 22 4C22 3.45 21.55 3 21 3C20.45 3 20 3.45 20 4C20 4.26 20.11 4.5 20.27 4.68L19.5 7.26L18.73 4.68C18.89 4.5 19 4.26 19 4C19 3.45 18.55 3 18 3C17.45 3 17 3.45 17 4C17 4.47 17.33 4.85 17.76 4.95L18.69 8.03C17.73 8.18 17 9 17 10V12.25C15.65 9.16 12.63 7 9.11 7C5.19 7 2 10.26 2 14.26C2 16.1 2.82 17.75 4.1 18.85L2.88 19C2.38 19.06 2 19.5 2 20C2 20.55 2.45 21 3 21H19.12C20.16 21 21 20.16 21 19.12V11.72C21.6 11.38 22 10.74 22 10C22 9 21.27 8.18 20.31 8.03ZM15.6 17.41L12.07 17.86C12.5 17.1 12.8 16.21 12.8 15.26C12.8 12.94 10.95 11.06 8.67 11.06C8.14 11.06 7.62 11.18 7.14 11.41C6.65 11.66 6.44 12.26 6.69 12.75C6.93 13.25 7.53 13.45 8.03 13.21C8.23 13.11 8.45 13.06 8.67 13.06C9.85 13.06 10.8 14.04 10.8 15.26C10.8 16.92 9.5 18.27 7.89 18.27C5.75 18.27 4 16.47 4 14.26C4 11.36 6.29 9 9.11 9C12.77 9 15.75 12.06 15.75 15.82C15.75 16.36 15.69 16.89 15.6 17.41Z" })
|
|
2155
2120
|
}
|
|
2156
2121
|
);
|
|
2157
2122
|
var IconSnail_default = SvgIconSnail;
|
|
2158
2123
|
|
|
2159
2124
|
// src/components/icons/IconSpecialPrice.tsx
|
|
2160
|
-
import { jsx as
|
|
2125
|
+
import { jsx as jsx44, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
2161
2126
|
var SvgIconSpecialPrice = (props) => /* @__PURE__ */ jsxs31("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2162
|
-
/* @__PURE__ */
|
|
2127
|
+
/* @__PURE__ */ jsx44(
|
|
2163
2128
|
"path",
|
|
2164
2129
|
{
|
|
2165
2130
|
className: "icon-special-price_svg__st0",
|
|
2166
2131
|
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"
|
|
2167
2132
|
}
|
|
2168
2133
|
),
|
|
2169
|
-
/* @__PURE__ */
|
|
2134
|
+
/* @__PURE__ */ jsx44(
|
|
2170
2135
|
"path",
|
|
2171
2136
|
{
|
|
2172
2137
|
className: "icon-special-price_svg__st0",
|
|
2173
2138
|
d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3 1.7 0 2.9.9 3.7 2.4.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1zM28.5 38.1h-.1c-.7-.4-6.9-6.2-8.9-8.7-2.1-2.6-2.6-5.6-2.6-5.6l-.2-1.3-.3 1.3c-.7 3.2 4.9 15.6 5.6 16.3.3.3.8.5 1.3.5.4 0 .7-.1.7-.1 4.7-1.9 4.7-1.9 4.7-2.1l-.2-.3z"
|
|
2174
2139
|
}
|
|
2175
2140
|
),
|
|
2176
|
-
/* @__PURE__ */
|
|
2141
|
+
/* @__PURE__ */ jsx44(
|
|
2177
2142
|
"path",
|
|
2178
2143
|
{
|
|
2179
2144
|
className: "icon-special-price_svg__st0",
|
|
2180
2145
|
d: "M38.5 28.6l-.1-.1.1-.1-10.3-10.3c-2.1-1.2-4.2-1.9-6.3-1.9-2.3 0-3.6.7-3.7.7l-.4.4v.1c-.1.2-2.2 4.2 1.1 10l10.2 10.2c.1.1.4.6 1 .6.4 0 .7-.2 1.1-.6l7.2-7.2c.8-.8.3-1.5.1-1.8zm-2.6.7L30 35.2 20.8 26c-1.9-3.4-1.4-5.9-1.1-7 .4-.1 1.2-.3 2.1-.3 1.6 0 3.2.5 4.8 1.4l9.3 9.2z"
|
|
2181
2146
|
}
|
|
2182
2147
|
),
|
|
2183
|
-
/* @__PURE__ */
|
|
2148
|
+
/* @__PURE__ */ jsx44(
|
|
2184
2149
|
"path",
|
|
2185
2150
|
{
|
|
2186
2151
|
className: "icon-special-price_svg__st0",
|
|
@@ -2191,16 +2156,16 @@ var SvgIconSpecialPrice = (props) => /* @__PURE__ */ jsxs31("svg", { viewBox: "0
|
|
|
2191
2156
|
var IconSpecialPrice_default = SvgIconSpecialPrice;
|
|
2192
2157
|
|
|
2193
2158
|
// src/components/icons/IconStock.tsx
|
|
2194
|
-
import { jsx as
|
|
2159
|
+
import { jsx as jsx45, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
2195
2160
|
var SvgIconStock = (props) => /* @__PURE__ */ jsxs32("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2196
|
-
/* @__PURE__ */
|
|
2161
|
+
/* @__PURE__ */ jsx45(
|
|
2197
2162
|
"path",
|
|
2198
2163
|
{
|
|
2199
2164
|
className: "icon-stock_svg__st0",
|
|
2200
2165
|
d: "M29.5 16.4v8.8H38v-8.8h-8.5zm6.6 6.8h-4.5v-4.8h4.5v4.8zM29.5 36H38v-8.9h-8.5V36zm2-6.9H36V34h-4.5v-4.9zM18.9 36.2h8.5v-8.9h-8.5v8.9zm2-6.9h4.5v4.9h-4.5v-4.9z"
|
|
2201
2166
|
}
|
|
2202
2167
|
),
|
|
2203
|
-
/* @__PURE__ */
|
|
2168
|
+
/* @__PURE__ */ jsx45(
|
|
2204
2169
|
"path",
|
|
2205
2170
|
{
|
|
2206
2171
|
className: "icon-stock_svg__st0",
|
|
@@ -2211,8 +2176,8 @@ var SvgIconStock = (props) => /* @__PURE__ */ jsxs32("svg", { viewBox: "0 0 55 5
|
|
|
2211
2176
|
var IconStock_default = SvgIconStock;
|
|
2212
2177
|
|
|
2213
2178
|
// src/components/icons/IconStrawberry.tsx
|
|
2214
|
-
import { jsx as
|
|
2215
|
-
var SvgIconStrawberry = () => /* @__PURE__ */
|
|
2179
|
+
import { jsx as jsx46 } from "react/jsx-runtime";
|
|
2180
|
+
var SvgIconStrawberry = () => /* @__PURE__ */ jsx46(
|
|
2216
2181
|
"svg",
|
|
2217
2182
|
{
|
|
2218
2183
|
width: "24",
|
|
@@ -2220,7 +2185,7 @@ var SvgIconStrawberry = () => /* @__PURE__ */ jsx47(
|
|
|
2220
2185
|
viewBox: "0 0 24 24",
|
|
2221
2186
|
fill: "none",
|
|
2222
2187
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2223
|
-
children: /* @__PURE__ */
|
|
2188
|
+
children: /* @__PURE__ */ jsx46(
|
|
2224
2189
|
"path",
|
|
2225
2190
|
{
|
|
2226
2191
|
fillRule: "evenodd",
|
|
@@ -2234,23 +2199,23 @@ var SvgIconStrawberry = () => /* @__PURE__ */ jsx47(
|
|
|
2234
2199
|
var IconStrawberry_default = SvgIconStrawberry;
|
|
2235
2200
|
|
|
2236
2201
|
// src/components/icons/IconSupplier.tsx
|
|
2237
|
-
import { jsx as
|
|
2202
|
+
import { jsx as jsx47, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2238
2203
|
var SvgIconSupplier = (props) => /* @__PURE__ */ jsxs33("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2239
|
-
/* @__PURE__ */
|
|
2204
|
+
/* @__PURE__ */ jsx47(
|
|
2240
2205
|
"path",
|
|
2241
2206
|
{
|
|
2242
2207
|
className: "icon-supplier_svg__st0",
|
|
2243
2208
|
d: "M18.3 27.5c-2.9 0-5.3 2.4-5.3 5.3s2.3 5.3 5.3 5.3 5.4-2.3 5.3-5.2c.1-2.9-2.3-5.4-5.3-5.4zm-.1 7.6c-1.2 0-2.1-1-2.1-2.1 0-1.2 1-2.1 2.1-2.1 1.3 0 2.2 1 2.1 2.1.1 1.1-.9 2.1-2.1 2.1z"
|
|
2244
2209
|
}
|
|
2245
2210
|
),
|
|
2246
|
-
/* @__PURE__ */
|
|
2211
|
+
/* @__PURE__ */ jsx47(
|
|
2247
2212
|
"path",
|
|
2248
2213
|
{
|
|
2249
2214
|
className: "icon-supplier_svg__st0",
|
|
2250
2215
|
d: "M32.9 29.2c1.2-1.2 2.6-1.6 4.2-1.6 0-1.1-.6-1.8-1.8-1.9-.8 0-1.4-.1-2.2-.1-1.4-.1-2.7-.1-4.1-.2-.1-1.6-.2-3.1-.3-4.7 0-.2.1-.4.2-.5.4-.4.3-.8-.1-1.1-.3-.1-.8-.3-1.1-.3-2.3-.1-4.4-.1-6.6-.1-1.4 0-1.7.4-1.8 1.8-.1 1.4-.2 2.8-.4 4.3h-2.4c-1.4.1-1.9 1-1.6 2.3 2.5-1.6 5-1.6 7.4-.2 2.6 1.4 3.2 3.9 2.9 6.8h6.4c-.2-1.8.3-3.4 1.3-4.5zm-10-4.2c-1.2-.1-1.8-.1-3.1-.2.1-1.6.2-3.1.3-4.6h2.8V25zm3.5 4.2c-.1-.1-.3-.2-.4-.4-.6-1.1-1.4-2.2-2-3.3-.1-.2-.2-.4-.2-.6v-4.6h4.4c.1 2.9.3 5.9.5 9.1-.9-.2-1.6-.2-2.3-.2z"
|
|
2251
2216
|
}
|
|
2252
2217
|
),
|
|
2253
|
-
/* @__PURE__ */
|
|
2218
|
+
/* @__PURE__ */ jsx47(
|
|
2254
2219
|
"path",
|
|
2255
2220
|
{
|
|
2256
2221
|
className: "icon-supplier_svg__st0",
|
|
@@ -2261,23 +2226,23 @@ var SvgIconSupplier = (props) => /* @__PURE__ */ jsxs33("svg", { viewBox: "0 0 5
|
|
|
2261
2226
|
var IconSupplier_default = SvgIconSupplier;
|
|
2262
2227
|
|
|
2263
2228
|
// src/components/icons/IconSupplierPrices.tsx
|
|
2264
|
-
import { jsx as
|
|
2229
|
+
import { jsx as jsx48, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2265
2230
|
var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2266
|
-
/* @__PURE__ */
|
|
2231
|
+
/* @__PURE__ */ jsx48(
|
|
2267
2232
|
"path",
|
|
2268
2233
|
{
|
|
2269
2234
|
className: "icon-supplier-prices_svg__st0",
|
|
2270
2235
|
d: "M13.9 30.6c.2 0 5.7-2.6 7.7-4 2-1.3 2.9-3.2 2.9-3.2-.2 2.1-6.2 9.1-6.8 9.4-.6.3-1.2-.1-1.2-.1s-2.7-2.2-2.6-2.1z"
|
|
2271
2236
|
}
|
|
2272
2237
|
),
|
|
2273
|
-
/* @__PURE__ */
|
|
2238
|
+
/* @__PURE__ */ jsx48(
|
|
2274
2239
|
"path",
|
|
2275
2240
|
{
|
|
2276
2241
|
className: "icon-supplier-prices_svg__st0",
|
|
2277
2242
|
d: "M20.3 18.8c1.5 0 2.5.5 3 .8 0 .7-.2 2.4-2.1 4.2l-7.8 4.1-1.2-2.2-.2-.3-1.2-2.3 7.8-4.1c.7-.1 1.2-.2 1.7-.2m0-1.6c-.7 0-1.4.1-2.2.3l-8.7 4.6c0 .2-.8.4-.3 1.2.5.9 1.6 2.9 1.6 2.9l.2.3s1.1 2.1 1.6 2.9c.2.4.5.5.7.5.3 0 .5-.2.5-.2l8.7-4.6c3.3-3.1 2.7-6.2 2.7-6.2l-.2-.3c-.1.1-1.7-1.4-4.6-1.4z"
|
|
2278
2243
|
}
|
|
2279
2244
|
),
|
|
2280
|
-
/* @__PURE__ */
|
|
2245
|
+
/* @__PURE__ */ jsx48(
|
|
2281
2246
|
"path",
|
|
2282
2247
|
{
|
|
2283
2248
|
className: "icon-supplier-prices_svg__st0",
|
|
@@ -2285,21 +2250,21 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox:
|
|
|
2285
2250
|
}
|
|
2286
2251
|
),
|
|
2287
2252
|
/* @__PURE__ */ jsxs34("g", { children: [
|
|
2288
|
-
/* @__PURE__ */
|
|
2253
|
+
/* @__PURE__ */ jsx48(
|
|
2289
2254
|
"path",
|
|
2290
2255
|
{
|
|
2291
2256
|
className: "icon-supplier-prices_svg__st0",
|
|
2292
2257
|
d: "M24.2 29.7c-2.7 0-4.9 2.2-4.9 4.9s2.2 4.9 4.9 4.9 5-2.2 4.9-4.8c0-2.8-2.2-5-4.9-5zm-.1 7c-1.1 0-2-.9-2-2s.9-2 2-2c1.2 0 2.1.9 2 2 0 1.1-.9 2-2 2z"
|
|
2293
2258
|
}
|
|
2294
2259
|
),
|
|
2295
|
-
/* @__PURE__ */
|
|
2260
|
+
/* @__PURE__ */ jsx48(
|
|
2296
2261
|
"path",
|
|
2297
2262
|
{
|
|
2298
2263
|
className: "icon-supplier-prices_svg__st0",
|
|
2299
2264
|
d: "M37.7 31.2c1.1-1.1 2.4-1.5 3.9-1.5 0-1-.6-1.7-1.7-1.8-.7 0-1.3-.1-2-.1-1.3-.1-2.5-.1-3.8-.2-.1-1.5-.2-2.9-.3-4.4 0-.2.1-.4.2-.5.4-.4.3-.7-.1-1-.3-.1-.7-.3-1-.3-2.1-.1-4.1-.1-6.1-.1-1.3 0-1.6.4-1.7 1.7-.1 1.3-.2 2.6-.4 4h-2.2c-1.3.1-1.8.9-1.5 2.1 2.3-1.5 4.6-1.5 6.9-.2 2.4 1.3 3 3.6 2.7 6.3h5.9c-.2-1.5.2-2.9 1.2-4zm-9.3-3.9c-1.1-.1-1.7-.1-2.9-.2.1-1.5.2-2.9.3-4.3h2.6v4.5zm3.2 3.9c-.1-.1-.3-.2-.4-.4-.6-1-1.3-2-1.9-3.1-.1-.2-.2-.4-.2-.6v-4.3h4.1c.1 2.7.3 5.5.5 8.4h-2.1z"
|
|
2300
2265
|
}
|
|
2301
2266
|
),
|
|
2302
|
-
/* @__PURE__ */
|
|
2267
|
+
/* @__PURE__ */ jsx48(
|
|
2303
2268
|
"path",
|
|
2304
2269
|
{
|
|
2305
2270
|
className: "icon-supplier-prices_svg__st0",
|
|
@@ -2311,18 +2276,18 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox:
|
|
|
2311
2276
|
var IconSupplierPrices_default = SvgIconSupplierPrices;
|
|
2312
2277
|
|
|
2313
2278
|
// src/components/icons/IconUserManagement.tsx
|
|
2314
|
-
import { jsx as
|
|
2315
|
-
var SvgIconUserManagement = () => /* @__PURE__ */
|
|
2316
|
-
/* @__PURE__ */
|
|
2317
|
-
/* @__PURE__ */
|
|
2318
|
-
/* @__PURE__ */
|
|
2319
|
-
/* @__PURE__ */
|
|
2279
|
+
import { jsx as jsx49, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
2280
|
+
var SvgIconUserManagement = () => /* @__PURE__ */ jsx49("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 55 56.7", children: /* @__PURE__ */ jsx49("g", { children: /* @__PURE__ */ jsxs35("g", { id: "Layer_1", children: [
|
|
2281
|
+
/* @__PURE__ */ jsx49("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" }),
|
|
2282
|
+
/* @__PURE__ */ jsx49("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" }),
|
|
2283
|
+
/* @__PURE__ */ jsx49("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" }),
|
|
2284
|
+
/* @__PURE__ */ jsx49("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" })
|
|
2320
2285
|
] }) }) });
|
|
2321
2286
|
var IconUserManagement_default = SvgIconUserManagement;
|
|
2322
2287
|
|
|
2323
2288
|
// src/components/icons/IconVkc.tsx
|
|
2324
|
-
import { jsx as
|
|
2325
|
-
var SvgIconVkc = (props) => /* @__PURE__ */
|
|
2289
|
+
import { jsx as jsx50 } from "react/jsx-runtime";
|
|
2290
|
+
var SvgIconVkc = (props) => /* @__PURE__ */ jsx50("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx50(
|
|
2326
2291
|
"path",
|
|
2327
2292
|
{
|
|
2328
2293
|
className: "icon-vkc_svg__st0",
|
|
@@ -2332,16 +2297,16 @@ var SvgIconVkc = (props) => /* @__PURE__ */ jsx51("svg", { viewBox: "0 0 55 56.7
|
|
|
2332
2297
|
var IconVkc_default = SvgIconVkc;
|
|
2333
2298
|
|
|
2334
2299
|
// src/components/icons/SamsaraLogo.tsx
|
|
2335
|
-
import { jsx as
|
|
2300
|
+
import { jsx as jsx51, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
2336
2301
|
var SvgSamsaraLogo = (props) => /* @__PURE__ */ jsxs36("svg", { viewBox: "0 0 36 52.4", ...props, children: [
|
|
2337
|
-
/* @__PURE__ */
|
|
2302
|
+
/* @__PURE__ */ jsx51(
|
|
2338
2303
|
"path",
|
|
2339
2304
|
{
|
|
2340
2305
|
className: "samsara_logo_svg__st0",
|
|
2341
2306
|
d: "M27.2 17.6c-.4.9-1 1.6-1.8 2.2-.7.5-1.5.7-2.4.7-.4 0-.7-.3-.7-.6 0-.4.3-.7.6-.7.6 0 1.2-.2 1.7-.5.6-.4 1-.9 1.3-1.6.2-.4.1-.8-.1-1.2-.2-.4-.6-.6-1-.6-.9-.1-1.6.2-2.2.8-.9 1-1.3 2.7-1.5 3.4-.1.6-1.7 7.4-2.3 10.1-.1.4-.5.7-.9.7s-.8-.3-.9-.7l-.2-1c-.7-3.1-2-8.6-2.1-9.1-.2-.7-.5-2.4-1.5-3.4-.6-.6-1.3-.9-2.2-.8-.4 0-.8.2-1 .6-.2.4-.3.8-.1 1.2.3.7.7 1.2 1.3 1.6.5.3 1.1.5 1.7.5.4 0 .7.3.6.7 0 .4-.3.7-.7.6-.9 0-1.7-.3-2.4-.7-.8-.5-1.4-1.2-1.8-2.2-.3-.8-.3-1.7.2-2.5.4-.7 1.2-1.2 2.1-1.3 1.3-.1 2.4.3 3.2 1.2 1.2 1.2 1.7 3.2 1.8 4 .1.5 1.2 5.3 2 8.4.7-3.2 1.8-7.9 2-8.4.2-.8.6-2.8 1.8-4 .8-.9 2-1.3 3.2-1.2.8 0 1.6.5 2.1 1.3s.6 1.7.2 2.5M21.3 7c-.9 0-1.8.2-2.7.5-.4.1-.9.1-1.3 0-.8-.4-1.7-.5-2.6-.5-5.1 0-9.4 5.2-9.4 11.3 0 6.8 5.1 12.8 12.5 14.6h.5c7.4-1.8 12.5-7.8 12.5-14.6C30.7 12.1 26.4 7 21.3 7"
|
|
2342
2307
|
}
|
|
2343
2308
|
),
|
|
2344
|
-
/* @__PURE__ */
|
|
2309
|
+
/* @__PURE__ */ jsx51(
|
|
2345
2310
|
"path",
|
|
2346
2311
|
{
|
|
2347
2312
|
className: "samsara_logo_svg__st0",
|
|
@@ -2394,8 +2359,8 @@ var icons = {
|
|
|
2394
2359
|
var icons_default = icons;
|
|
2395
2360
|
|
|
2396
2361
|
// src/components/icons/IconAirplane.tsx
|
|
2397
|
-
import { jsx as
|
|
2398
|
-
var SvgIconAirplane = (props) => /* @__PURE__ */
|
|
2362
|
+
import { jsx as jsx52 } from "react/jsx-runtime";
|
|
2363
|
+
var SvgIconAirplane = (props) => /* @__PURE__ */ jsx52(
|
|
2399
2364
|
"svg",
|
|
2400
2365
|
{
|
|
2401
2366
|
width: "24",
|
|
@@ -2404,7 +2369,7 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ jsx53(
|
|
|
2404
2369
|
fill: "none",
|
|
2405
2370
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2406
2371
|
...props,
|
|
2407
|
-
children: /* @__PURE__ */
|
|
2372
|
+
children: /* @__PURE__ */ jsx52(
|
|
2408
2373
|
"path",
|
|
2409
2374
|
{
|
|
2410
2375
|
d: "M20.56 3.90998C21.15 4.49998 21.15 5.44998 20.56 6.02998L16.67 9.91998L18.79 19.11L17.38 20.53L13.5 13.1L9.6 17L9.96 19.47L8.89 20.53L7.13 17.35L3.94 15.58L5 14.5L7.5 14.87L11.37 11L3.94 7.08998L5.36 5.67998L14.55 7.79998L18.44 3.90998C19 3.32998 20 3.32998 20.56 3.90998Z",
|
|
@@ -2416,8 +2381,8 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ jsx53(
|
|
|
2416
2381
|
var IconAirplane_default = SvgIconAirplane;
|
|
2417
2382
|
|
|
2418
2383
|
// src/components/icons/IconBicycle.tsx
|
|
2419
|
-
import { jsx as
|
|
2420
|
-
var SvgIconBicycle = () => /* @__PURE__ */
|
|
2384
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
|
2385
|
+
var SvgIconBicycle = () => /* @__PURE__ */ jsx53(
|
|
2421
2386
|
"svg",
|
|
2422
2387
|
{
|
|
2423
2388
|
width: "24",
|
|
@@ -2425,7 +2390,7 @@ var SvgIconBicycle = () => /* @__PURE__ */ jsx54(
|
|
|
2425
2390
|
viewBox: "0 0 24 24",
|
|
2426
2391
|
fill: "none",
|
|
2427
2392
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2428
|
-
children: /* @__PURE__ */
|
|
2393
|
+
children: /* @__PURE__ */ jsx53(
|
|
2429
2394
|
"path",
|
|
2430
2395
|
{
|
|
2431
2396
|
d: "M19 10C18.44 10 17.91 10.11 17.41 10.28L14.46 4.5H11V6H13.54L14.42 7.72L12 13.13L10.23 8.95C10.5 8.85 10.74 8.58 10.74 8.25C10.74 7.84 10.41 7.5 10 7.5H8C7.58 7.5 7.24 7.84 7.24 8.25C7.24 8.66 7.58 9 8 9H8.61L10.86 14.25H9.92C9.56 11.85 7.5 10 5 10C2.24 10 0 12.24 0 15C0 17.76 2.24 20 5 20C7.5 20 9.56 18.15 9.92 15.75H12.5L15.29 9.43L16.08 10.96C14.82 11.87 14 13.34 14 15C14 17.76 16.24 20 19 20C21.76 20 24 17.76 24 15C24 12.24 21.76 10 19 10ZM5 18.5C3.07 18.5 1.5 16.93 1.5 15C1.5 13.07 3.07 11.5 5 11.5C6.67 11.5 8.07 12.68 8.41 14.25H4V15.75H8.41C8.07 17.32 6.67 18.5 5 18.5ZM19 18.5C17.07 18.5 15.5 16.93 15.5 15C15.5 13.92 16 12.97 16.77 12.33L18.57 15.85L19.89 15.13L18.1 11.63C18.39 11.56 18.69 11.5 19 11.5C20.93 11.5 22.5 13.07 22.5 15C22.5 16.93 20.93 18.5 19 18.5Z",
|
|
@@ -2437,8 +2402,8 @@ var SvgIconBicycle = () => /* @__PURE__ */ jsx54(
|
|
|
2437
2402
|
var IconBicycle_default = SvgIconBicycle;
|
|
2438
2403
|
|
|
2439
2404
|
// src/components/icons/IconBus.tsx
|
|
2440
|
-
import { jsx as
|
|
2441
|
-
var SvgIconBus = () => /* @__PURE__ */
|
|
2405
|
+
import { jsx as jsx54 } from "react/jsx-runtime";
|
|
2406
|
+
var SvgIconBus = () => /* @__PURE__ */ jsx54(
|
|
2442
2407
|
"svg",
|
|
2443
2408
|
{
|
|
2444
2409
|
width: "24",
|
|
@@ -2446,7 +2411,7 @@ var SvgIconBus = () => /* @__PURE__ */ jsx55(
|
|
|
2446
2411
|
viewBox: "0 0 24 24",
|
|
2447
2412
|
fill: "none",
|
|
2448
2413
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2449
|
-
children: /* @__PURE__ */
|
|
2414
|
+
children: /* @__PURE__ */ jsx54(
|
|
2450
2415
|
"path",
|
|
2451
2416
|
{
|
|
2452
2417
|
d: "M3 4C1.89 4 1 4.89 1 6V17H3C3 17.7956 3.31607 18.5587 3.87868 19.1213C4.44129 19.6839 5.20435 20 6 20C6.79565 20 7.55871 19.6839 8.12132 19.1213C8.68393 18.5587 9 17.7956 9 17H15C15 17.7956 15.3161 18.5587 15.8787 19.1213C16.4413 19.6839 17.2044 20 18 20C18.7956 20 19.5587 19.6839 20.1213 19.1213C20.6839 18.5587 21 17.7956 21 17H23V14C23 12.89 22.11 12 21 12H19V9.5H23V6C23 4.89 22.11 4 21 4H3ZM2.5 5.5H6.5V8H2.5V5.5ZM8 5.5H12V8H8V5.5ZM13.5 5.5H17.5V8H13.5V5.5ZM19 5.5H21.5V8H19V5.5ZM13.5 9.5H17.5V12H13.5V9.5ZM2.5 9.5H6.5V12H2.5V9.5ZM8 9.5H12V12H8V9.5ZM6 15.5C6.39782 15.5 6.77936 15.658 7.06066 15.9393C7.34196 16.2206 7.5 16.6022 7.5 17C7.5 17.3978 7.34196 17.7794 7.06066 18.0607C6.77936 18.342 6.39782 18.5 6 18.5C5.60218 18.5 5.22064 18.342 4.93934 18.0607C4.65804 17.7794 4.5 17.3978 4.5 17C4.5 16.6022 4.65804 16.2206 4.93934 15.9393C5.22064 15.658 5.60218 15.5 6 15.5ZM18 15.5C18.3978 15.5 18.7794 15.658 19.0607 15.9393C19.342 16.2206 19.5 16.6022 19.5 17C19.5 17.3978 19.342 17.7794 19.0607 18.0607C18.7794 18.342 18.3978 18.5 18 18.5C17.6022 18.5 17.2206 18.342 16.9393 18.0607C16.658 17.7794 16.5 17.3978 16.5 17C16.5 16.6022 16.658 16.2206 16.9393 15.9393C17.2206 15.658 17.6022 15.5 18 15.5Z",
|
|
@@ -2458,8 +2423,8 @@ var SvgIconBus = () => /* @__PURE__ */ jsx55(
|
|
|
2458
2423
|
var IconBus_default = SvgIconBus;
|
|
2459
2424
|
|
|
2460
2425
|
// src/components/icons/IconCar.tsx
|
|
2461
|
-
import { jsx as
|
|
2462
|
-
var SvgIconCar = () => /* @__PURE__ */
|
|
2426
|
+
import { jsx as jsx55 } from "react/jsx-runtime";
|
|
2427
|
+
var SvgIconCar = () => /* @__PURE__ */ jsx55(
|
|
2463
2428
|
"svg",
|
|
2464
2429
|
{
|
|
2465
2430
|
width: "24",
|
|
@@ -2467,7 +2432,7 @@ var SvgIconCar = () => /* @__PURE__ */ jsx56(
|
|
|
2467
2432
|
viewBox: "0 0 24 24",
|
|
2468
2433
|
fill: "none",
|
|
2469
2434
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2470
|
-
children: /* @__PURE__ */
|
|
2435
|
+
children: /* @__PURE__ */ jsx55(
|
|
2471
2436
|
"path",
|
|
2472
2437
|
{
|
|
2473
2438
|
d: "M3 6H16L19 10H21C22.11 10 23 10.89 23 12V15H21C21 15.7956 20.6839 16.5587 20.1213 17.1213C19.5587 17.6839 18.7956 18 18 18C17.2044 18 16.4413 17.6839 15.8787 17.1213C15.3161 16.5587 15 15.7956 15 15H9C9 15.7956 8.68393 16.5587 8.12132 17.1213C7.55871 17.6839 6.79565 18 6 18C5.20435 18 4.44129 17.6839 3.87868 17.1213C3.31607 16.5587 3 15.7956 3 15H1V8C1 6.89 1.89 6 3 6ZM2.5 7.5V10H10.5V7.5H2.5ZM12 7.5V10H17.14L15.25 7.5H12ZM6 13.5C5.60218 13.5 5.22064 13.658 4.93934 13.9393C4.65804 14.2206 4.5 14.6022 4.5 15C4.5 15.3978 4.65804 15.7794 4.93934 16.0607C5.22064 16.342 5.60218 16.5 6 16.5C6.39782 16.5 6.77936 16.342 7.06066 16.0607C7.34196 15.7794 7.5 15.3978 7.5 15C7.5 14.6022 7.34196 14.2206 7.06066 13.9393C6.77936 13.658 6.39782 13.5 6 13.5ZM18 13.5C17.6022 13.5 17.2206 13.658 16.9393 13.9393C16.658 14.2206 16.5 14.6022 16.5 15C16.5 15.3978 16.658 15.7794 16.9393 16.0607C17.2206 16.342 17.6022 16.5 18 16.5C18.3978 16.5 18.7794 16.342 19.0607 16.0607C19.342 15.7794 19.5 15.3978 19.5 15C19.5 14.6022 19.342 14.2206 19.0607 13.9393C18.7794 13.658 18.3978 13.5 18 13.5Z",
|
|
@@ -2479,8 +2444,8 @@ var SvgIconCar = () => /* @__PURE__ */ jsx56(
|
|
|
2479
2444
|
var IconCar_default = SvgIconCar;
|
|
2480
2445
|
|
|
2481
2446
|
// src/components/icons/IconFork.tsx
|
|
2482
|
-
import { jsx as
|
|
2483
|
-
var SvgIconFork = () => /* @__PURE__ */
|
|
2447
|
+
import { jsx as jsx56 } from "react/jsx-runtime";
|
|
2448
|
+
var SvgIconFork = () => /* @__PURE__ */ jsx56(
|
|
2484
2449
|
"svg",
|
|
2485
2450
|
{
|
|
2486
2451
|
width: "20",
|
|
@@ -2488,7 +2453,7 @@ var SvgIconFork = () => /* @__PURE__ */ jsx57(
|
|
|
2488
2453
|
viewBox: "0 0 20 20",
|
|
2489
2454
|
fill: "none",
|
|
2490
2455
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2491
|
-
children: /* @__PURE__ */
|
|
2456
|
+
children: /* @__PURE__ */ jsx56(
|
|
2492
2457
|
"path",
|
|
2493
2458
|
{
|
|
2494
2459
|
d: "M2.17501 19.235L0.765015 17.825L10.415 8.16502L10.215 7.94501C9.43501 7.17501 9.43501 5.91501 10.215 5.13501L14.555 0.765015L15.485 1.68501L12.245 4.94501L13.205 5.88501L16.445 2.63501L17.365 3.55501L14.115 6.79502L15.055 7.75502L18.315 4.50501L19.235 5.44501L14.865 9.78502C14.085 10.565 12.825 10.565 12.055 9.78502L11.835 9.58502L2.17501 19.235Z",
|
|
@@ -2500,8 +2465,8 @@ var SvgIconFork = () => /* @__PURE__ */ jsx57(
|
|
|
2500
2465
|
var IconFork_default = SvgIconFork;
|
|
2501
2466
|
|
|
2502
2467
|
// src/components/icons/IconHeart.tsx
|
|
2503
|
-
import { jsx as
|
|
2504
|
-
var SvgIconHeart = () => /* @__PURE__ */
|
|
2468
|
+
import { jsx as jsx57 } from "react/jsx-runtime";
|
|
2469
|
+
var SvgIconHeart = () => /* @__PURE__ */ jsx57(
|
|
2505
2470
|
"svg",
|
|
2506
2471
|
{
|
|
2507
2472
|
width: "20",
|
|
@@ -2509,7 +2474,7 @@ var SvgIconHeart = () => /* @__PURE__ */ jsx58(
|
|
|
2509
2474
|
viewBox: "0 0 20 20",
|
|
2510
2475
|
fill: "none",
|
|
2511
2476
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2512
|
-
children: /* @__PURE__ */
|
|
2477
|
+
children: /* @__PURE__ */ jsx57(
|
|
2513
2478
|
"path",
|
|
2514
2479
|
{
|
|
2515
2480
|
d: "M10 19.175L8.55 17.855C3.4 13.185 0 10.095 0 6.32501C0 3.23501 2.42 0.825012 5.5 0.825012C7.24 0.825012 8.91 1.63501 10 2.90501C11.09 1.63501 12.76 0.825012 14.5 0.825012C17.58 0.825012 20 3.23501 20 6.32501C20 10.095 16.6 13.185 11.45 17.855L10 19.175Z",
|
|
@@ -2521,8 +2486,8 @@ var SvgIconHeart = () => /* @__PURE__ */ jsx58(
|
|
|
2521
2486
|
var IconHeart_default = SvgIconHeart;
|
|
2522
2487
|
|
|
2523
2488
|
// src/components/icons/IconKnife.tsx
|
|
2524
|
-
import { jsx as
|
|
2525
|
-
var SvgIconKnife = (props) => /* @__PURE__ */
|
|
2489
|
+
import { jsx as jsx58 } from "react/jsx-runtime";
|
|
2490
|
+
var SvgIconKnife = (props) => /* @__PURE__ */ jsx58(
|
|
2526
2491
|
"svg",
|
|
2527
2492
|
{
|
|
2528
2493
|
width: "20",
|
|
@@ -2531,7 +2496,7 @@ var SvgIconKnife = (props) => /* @__PURE__ */ jsx59(
|
|
|
2531
2496
|
fill: "none",
|
|
2532
2497
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2533
2498
|
...props,
|
|
2534
|
-
children: /* @__PURE__ */
|
|
2499
|
+
children: /* @__PURE__ */ jsx58(
|
|
2535
2500
|
"path",
|
|
2536
2501
|
{
|
|
2537
2502
|
d: "M18.6191 0C21.9691 5.61 10.4691 18.15 10.4691 18.15L7.5991 15.28L2.9091 20L0.769104 17.86L18.6191 0Z",
|
|
@@ -2543,8 +2508,8 @@ var SvgIconKnife = (props) => /* @__PURE__ */ jsx59(
|
|
|
2543
2508
|
var IconKnife_default = SvgIconKnife;
|
|
2544
2509
|
|
|
2545
2510
|
// src/components/icons/IconSpoon.tsx
|
|
2546
|
-
import { jsx as
|
|
2547
|
-
var SvgIconSpoon = () => /* @__PURE__ */
|
|
2511
|
+
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
2512
|
+
var SvgIconSpoon = () => /* @__PURE__ */ jsx59(
|
|
2548
2513
|
"svg",
|
|
2549
2514
|
{
|
|
2550
2515
|
width: "20",
|
|
@@ -2552,7 +2517,7 @@ var SvgIconSpoon = () => /* @__PURE__ */ jsx60(
|
|
|
2552
2517
|
viewBox: "0 0 20 20",
|
|
2553
2518
|
fill: "none",
|
|
2554
2519
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2555
|
-
children: /* @__PURE__ */
|
|
2520
|
+
children: /* @__PURE__ */ jsx59(
|
|
2556
2521
|
"path",
|
|
2557
2522
|
{
|
|
2558
2523
|
d: "M12.093 9.31795L2.33303 19.0779L0.923035 17.6679L10.683 7.90795C9.97303 6.37795 10.473 4.22795 12.063 2.63795C13.973 0.717946 16.713 0.357947 18.173 1.81795C19.643 3.28795 19.283 6.02795 17.363 7.93795C15.773 9.52795 13.623 10.0279 12.093 9.31795Z",
|
|
@@ -2564,8 +2529,8 @@ var SvgIconSpoon = () => /* @__PURE__ */ jsx60(
|
|
|
2564
2529
|
var IconSpoon_default = SvgIconSpoon;
|
|
2565
2530
|
|
|
2566
2531
|
// src/resources/icons/BulkIcon.tsx
|
|
2567
|
-
import { jsx as
|
|
2568
|
-
var BulkIcon = (props) => /* @__PURE__ */
|
|
2532
|
+
import { jsx as jsx60 } from "react/jsx-runtime";
|
|
2533
|
+
var BulkIcon = (props) => /* @__PURE__ */ jsx60(
|
|
2569
2534
|
"svg",
|
|
2570
2535
|
{
|
|
2571
2536
|
height: 24,
|
|
@@ -2573,13 +2538,13 @@ var BulkIcon = (props) => /* @__PURE__ */ jsx61(
|
|
|
2573
2538
|
width: 24,
|
|
2574
2539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2575
2540
|
...props,
|
|
2576
|
-
children: /* @__PURE__ */
|
|
2541
|
+
children: /* @__PURE__ */ jsx60("path", { d: "M4 3h14a2 2 0 012 2v7.08a6.01 6.01 0 00-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 01-2-2V5c0-1.1.9-2 2-2zm0 4v4h6V7H4zm8 0v4h6V7h-6zm-8 6v4h6v-4H4zM18 19h-2l3 3 3-3h-2v-4h-2v4z" })
|
|
2577
2542
|
}
|
|
2578
2543
|
);
|
|
2579
2544
|
var BulkIcon_default = BulkIcon;
|
|
2580
2545
|
|
|
2581
2546
|
// src/components/Buttons/RoundButton/RoundButton.tsx
|
|
2582
|
-
import { jsx as
|
|
2547
|
+
import { jsx as jsx61 } from "react/jsx-runtime";
|
|
2583
2548
|
var useStyles11 = makeStyles11()(() => ({
|
|
2584
2549
|
base: {
|
|
2585
2550
|
backgroundColor: "transparent",
|
|
@@ -2697,48 +2662,48 @@ var RoundButton = ({
|
|
|
2697
2662
|
const { classes, cx } = useStyles11();
|
|
2698
2663
|
const iconSize = size === "small" ? "small" : "medium";
|
|
2699
2664
|
const iconComponentMap = {
|
|
2700
|
-
add: /* @__PURE__ */
|
|
2701
|
-
apps: /* @__PURE__ */
|
|
2702
|
-
arrowBack: /* @__PURE__ */
|
|
2703
|
-
arrowForward: /* @__PURE__ */
|
|
2704
|
-
avocado: /* @__PURE__ */
|
|
2705
|
-
backspaceOutlined: /* @__PURE__ */
|
|
2706
|
-
banana: /* @__PURE__ */
|
|
2707
|
-
block: /* @__PURE__ */
|
|
2708
|
-
bulk: /* @__PURE__ */
|
|
2709
|
-
callSplit: /* @__PURE__ */
|
|
2710
|
-
chevronRight: /* @__PURE__ */
|
|
2711
|
-
chevronUp: /* @__PURE__ */
|
|
2712
|
-
chevronDown: /* @__PURE__ */
|
|
2713
|
-
close: /* @__PURE__ */
|
|
2714
|
-
delete: /* @__PURE__ */
|
|
2715
|
-
done: /* @__PURE__ */
|
|
2716
|
-
edit: /* @__PURE__ */
|
|
2717
|
-
email: /* @__PURE__ */
|
|
2718
|
-
grape: /* @__PURE__ */
|
|
2719
|
-
groupAdd: /* @__PURE__ */
|
|
2720
|
-
history: /* @__PURE__ */
|
|
2721
|
-
menu: /* @__PURE__ */
|
|
2722
|
-
threeDots: /* @__PURE__ */
|
|
2723
|
-
notes: /* @__PURE__ */
|
|
2724
|
-
refresh: /* @__PURE__ */
|
|
2725
|
-
remove: /* @__PURE__ */
|
|
2726
|
-
search: /* @__PURE__ */
|
|
2727
|
-
send: /* @__PURE__ */
|
|
2728
|
-
strawberry: /* @__PURE__ */
|
|
2729
|
-
thumbDown: /* @__PURE__ */
|
|
2730
|
-
thumbUp: /* @__PURE__ */
|
|
2731
|
-
undo: /* @__PURE__ */
|
|
2732
|
-
play: /* @__PURE__ */
|
|
2733
|
-
snail: /* @__PURE__ */
|
|
2734
|
-
bus: /* @__PURE__ */
|
|
2735
|
-
spoon: /* @__PURE__ */
|
|
2736
|
-
fork: /* @__PURE__ */
|
|
2737
|
-
car: /* @__PURE__ */
|
|
2738
|
-
knife: /* @__PURE__ */
|
|
2739
|
-
bicycle: /* @__PURE__ */
|
|
2740
|
-
heart: /* @__PURE__ */
|
|
2741
|
-
airplane: /* @__PURE__ */
|
|
2665
|
+
add: /* @__PURE__ */ jsx61(Add3, { fontSize: iconSize }),
|
|
2666
|
+
apps: /* @__PURE__ */ jsx61(Apps, { fontSize: iconSize }),
|
|
2667
|
+
arrowBack: /* @__PURE__ */ jsx61(ArrowBack, { fontSize: iconSize }),
|
|
2668
|
+
arrowForward: /* @__PURE__ */ jsx61(ArrowForward, { fontSize: iconSize }),
|
|
2669
|
+
avocado: /* @__PURE__ */ jsx61(IconAvocado_default, {}),
|
|
2670
|
+
backspaceOutlined: /* @__PURE__ */ jsx61(BackspaceOutlined, { fontSize: iconSize }),
|
|
2671
|
+
banana: /* @__PURE__ */ jsx61(IconBanana_default, {}),
|
|
2672
|
+
block: /* @__PURE__ */ jsx61(Block, { fontSize: iconSize }),
|
|
2673
|
+
bulk: /* @__PURE__ */ jsx61(BulkIcon_default, { fill: colors.contrast }),
|
|
2674
|
+
callSplit: /* @__PURE__ */ jsx61(CallSplit, { fontSize: iconSize }),
|
|
2675
|
+
chevronRight: /* @__PURE__ */ jsx61(ChevronRight2, { fontSize: iconSize }),
|
|
2676
|
+
chevronUp: /* @__PURE__ */ jsx61(KeyboardArrowUp, { fontSize: iconSize }),
|
|
2677
|
+
chevronDown: /* @__PURE__ */ jsx61(KeyboardArrowDown, { fontSize: iconSize }),
|
|
2678
|
+
close: /* @__PURE__ */ jsx61(Close, { fontSize: iconSize }),
|
|
2679
|
+
delete: /* @__PURE__ */ jsx61(Delete2, { fontSize: iconSize, fill: colors.neutral800 }),
|
|
2680
|
+
done: /* @__PURE__ */ jsx61(Done, { fontSize: iconSize }),
|
|
2681
|
+
edit: /* @__PURE__ */ jsx61(Edit2, { fontSize: iconSize }),
|
|
2682
|
+
email: /* @__PURE__ */ jsx61(Email, { fontSize: iconSize }),
|
|
2683
|
+
grape: /* @__PURE__ */ jsx61(IconGrape_default, {}),
|
|
2684
|
+
groupAdd: /* @__PURE__ */ jsx61(GroupAdd, { fontSize: iconSize }),
|
|
2685
|
+
history: /* @__PURE__ */ jsx61(History, { fontSize: iconSize }),
|
|
2686
|
+
menu: /* @__PURE__ */ jsx61(Menu, { fontSize: iconSize }),
|
|
2687
|
+
threeDots: /* @__PURE__ */ jsx61(MoreHoriz, { fontSize: iconSize, color: iconColor }),
|
|
2688
|
+
notes: /* @__PURE__ */ jsx61(Comment, { fontSize: iconSize }),
|
|
2689
|
+
refresh: /* @__PURE__ */ jsx61(Refresh2, { fontSize: iconSize }),
|
|
2690
|
+
remove: /* @__PURE__ */ jsx61(Remove, { fontSize: iconSize }),
|
|
2691
|
+
search: /* @__PURE__ */ jsx61(Search, { fontSize: iconSize }),
|
|
2692
|
+
send: /* @__PURE__ */ jsx61(Send, { fontSize: iconSize }),
|
|
2693
|
+
strawberry: /* @__PURE__ */ jsx61(IconStrawberry_default, {}),
|
|
2694
|
+
thumbDown: /* @__PURE__ */ jsx61(ThumbDown, { fontSize: iconSize }),
|
|
2695
|
+
thumbUp: /* @__PURE__ */ jsx61(ThumbUp, { fontSize: iconSize }),
|
|
2696
|
+
undo: /* @__PURE__ */ jsx61(Undo, { fontSize: iconSize }),
|
|
2697
|
+
play: /* @__PURE__ */ jsx61(PlayArrowRounded, { fontSize: iconSize }),
|
|
2698
|
+
snail: /* @__PURE__ */ jsx61(icons_default.SvgIconSnail, { fontSize: iconSize, fill: colors.muiPrimary }),
|
|
2699
|
+
bus: /* @__PURE__ */ jsx61(IconBus_default, {}),
|
|
2700
|
+
spoon: /* @__PURE__ */ jsx61(IconSpoon_default, {}),
|
|
2701
|
+
fork: /* @__PURE__ */ jsx61(IconFork_default, {}),
|
|
2702
|
+
car: /* @__PURE__ */ jsx61(IconCar_default, {}),
|
|
2703
|
+
knife: /* @__PURE__ */ jsx61(IconKnife_default, {}),
|
|
2704
|
+
bicycle: /* @__PURE__ */ jsx61(IconBicycle_default, {}),
|
|
2705
|
+
heart: /* @__PURE__ */ jsx61(IconHeart_default, {}),
|
|
2706
|
+
airplane: /* @__PURE__ */ jsx61(IconAirplane_default, {})
|
|
2742
2707
|
};
|
|
2743
2708
|
const filteredSize = size === "double" ? void 0 : size;
|
|
2744
2709
|
const handleClick = (e) => {
|
|
@@ -2746,7 +2711,7 @@ var RoundButton = ({
|
|
|
2746
2711
|
onClick(e);
|
|
2747
2712
|
}
|
|
2748
2713
|
};
|
|
2749
|
-
const Button14 = /* @__PURE__ */
|
|
2714
|
+
const Button14 = /* @__PURE__ */ jsx61(
|
|
2750
2715
|
Fab,
|
|
2751
2716
|
{
|
|
2752
2717
|
className: cx(
|
|
@@ -2770,7 +2735,7 @@ var RoundButton = ({
|
|
|
2770
2735
|
children: icon ? iconComponentMap[icon] : children || ""
|
|
2771
2736
|
}
|
|
2772
2737
|
);
|
|
2773
|
-
return tooltip ? /* @__PURE__ */
|
|
2738
|
+
return tooltip ? /* @__PURE__ */ jsx61(Tooltip2, { title: tooltip, children: Button14 }) : Button14;
|
|
2774
2739
|
};
|
|
2775
2740
|
var RoundButton_default = RoundButton;
|
|
2776
2741
|
|
|
@@ -2778,7 +2743,7 @@ var RoundButton_default = RoundButton;
|
|
|
2778
2743
|
import { memo as memo8 } from "react";
|
|
2779
2744
|
import { Pin } from "mdi-material-ui";
|
|
2780
2745
|
import { makeStyles as makeStyles12 } from "tss-react/mui";
|
|
2781
|
-
import { jsx as
|
|
2746
|
+
import { jsx as jsx62 } from "react/jsx-runtime";
|
|
2782
2747
|
var useStyles12 = makeStyles12()(() => ({
|
|
2783
2748
|
root: {
|
|
2784
2749
|
opacity: 0.5
|
|
@@ -2789,14 +2754,14 @@ var useStyles12 = makeStyles12()(() => ({
|
|
|
2789
2754
|
}));
|
|
2790
2755
|
var PinButton = () => {
|
|
2791
2756
|
const { classes } = useStyles12();
|
|
2792
|
-
return /* @__PURE__ */
|
|
2757
|
+
return /* @__PURE__ */ jsx62(Pin, { className: classes.root });
|
|
2793
2758
|
};
|
|
2794
2759
|
var Pin_default = memo8(PinButton);
|
|
2795
2760
|
|
|
2796
2761
|
// src/components/Buttons/PinnedApp.tsx
|
|
2797
2762
|
import { Fab as Fab2, Icon } from "@mui/material";
|
|
2798
2763
|
import { makeStyles as makeStyles13 } from "tss-react/mui";
|
|
2799
|
-
import { jsx as
|
|
2764
|
+
import { jsx as jsx63 } from "react/jsx-runtime";
|
|
2800
2765
|
var useStyles13 = makeStyles13()((theme) => ({
|
|
2801
2766
|
root: {
|
|
2802
2767
|
"& > *": {
|
|
@@ -2810,12 +2775,12 @@ var useStyles13 = makeStyles13()((theme) => ({
|
|
|
2810
2775
|
function ActionButton(props) {
|
|
2811
2776
|
const { app } = props;
|
|
2812
2777
|
const { classes } = useStyles13();
|
|
2813
|
-
return /* @__PURE__ */
|
|
2778
|
+
return /* @__PURE__ */ jsx63("div", { className: classes.root, children: /* @__PURE__ */ jsx63(Fab2, { color: "primary", "aria-label": "add", children: /* @__PURE__ */ jsx63(Icon, { children: app.icon }) }) });
|
|
2814
2779
|
}
|
|
2815
2780
|
|
|
2816
2781
|
// src/components/CompanyLogo/CompanyLogo.tsx
|
|
2817
2782
|
import { makeStyles as makeStyles14 } from "tss-react/mui";
|
|
2818
|
-
import { jsx as
|
|
2783
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
2819
2784
|
var useStyles14 = makeStyles14()((theme, { imageLogoDarkSmall, imageLogoLightSmall }) => ({
|
|
2820
2785
|
logoSmall: {
|
|
2821
2786
|
height: 46,
|
|
@@ -2848,14 +2813,14 @@ var CompanyLogo = ({
|
|
|
2848
2813
|
[classes.logoLight]: color === "light",
|
|
2849
2814
|
[classes.logoDark]: color === "dark"
|
|
2850
2815
|
});
|
|
2851
|
-
return /* @__PURE__ */
|
|
2816
|
+
return /* @__PURE__ */ jsx64("div", { className });
|
|
2852
2817
|
};
|
|
2853
2818
|
var CompanyLogo_default = CompanyLogo;
|
|
2854
2819
|
|
|
2855
2820
|
// src/components/ConfirmationDialog/ConfirmationDialog.tsx
|
|
2856
2821
|
import { Box as Box8, Dialog as Dialog3, DialogActions as DialogActions2, Divider, Typography as Typography6 } from "@mui/material";
|
|
2857
2822
|
import { makeStyles as makeStyles15 } from "tss-react/mui";
|
|
2858
|
-
import { jsx as
|
|
2823
|
+
import { jsx as jsx65, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2859
2824
|
var useStyles15 = makeStyles15()((theme) => ({
|
|
2860
2825
|
content: {
|
|
2861
2826
|
width: "660px"
|
|
@@ -2893,14 +2858,14 @@ var ConfirmationDialog = ({
|
|
|
2893
2858
|
};
|
|
2894
2859
|
const contentComponent = () => {
|
|
2895
2860
|
if (typeof content === "string") {
|
|
2896
|
-
return /* @__PURE__ */
|
|
2861
|
+
return /* @__PURE__ */ jsx65(Typography6, { variant: "body1", children: content });
|
|
2897
2862
|
}
|
|
2898
2863
|
return content;
|
|
2899
2864
|
};
|
|
2900
2865
|
return /* @__PURE__ */ jsxs37(Dialog3, { onClose: closeModal, open: isOpen, maxWidth: "lg", children: [
|
|
2901
2866
|
/* @__PURE__ */ jsxs37(Box8, { className: classes.content, children: [
|
|
2902
|
-
/* @__PURE__ */
|
|
2903
|
-
/* @__PURE__ */
|
|
2867
|
+
/* @__PURE__ */ jsx65(Typography6, { className: classes.title, variant: "h6", children: title }),
|
|
2868
|
+
/* @__PURE__ */ jsx65(
|
|
2904
2869
|
Box8,
|
|
2905
2870
|
{
|
|
2906
2871
|
sx: {
|
|
@@ -2913,9 +2878,9 @@ var ConfirmationDialog = ({
|
|
|
2913
2878
|
}
|
|
2914
2879
|
)
|
|
2915
2880
|
] }),
|
|
2916
|
-
/* @__PURE__ */
|
|
2881
|
+
/* @__PURE__ */ jsx65(Divider, {}),
|
|
2917
2882
|
/* @__PURE__ */ jsxs37(DialogActions2, { className: classes.footer, children: [
|
|
2918
|
-
!hideCancel && /* @__PURE__ */
|
|
2883
|
+
!hideCancel && /* @__PURE__ */ jsx65(
|
|
2919
2884
|
FilledButton_default,
|
|
2920
2885
|
{
|
|
2921
2886
|
className: classes.button,
|
|
@@ -2925,7 +2890,7 @@ var ConfirmationDialog = ({
|
|
|
2925
2890
|
onClick: closeModal
|
|
2926
2891
|
}
|
|
2927
2892
|
),
|
|
2928
|
-
!hideConfirm && /* @__PURE__ */
|
|
2893
|
+
!hideConfirm && /* @__PURE__ */ jsx65(
|
|
2929
2894
|
FilledButton_default,
|
|
2930
2895
|
{
|
|
2931
2896
|
className: classes.button,
|
|
@@ -2950,7 +2915,7 @@ var ConfirmationDialog_default = ConfirmationDialog;
|
|
|
2950
2915
|
// src/components/ControlledCheckbox/ControlledCheckbox.tsx
|
|
2951
2916
|
import { Controller } from "react-hook-form";
|
|
2952
2917
|
import { Checkbox, FormControlLabel, Tooltip as Tooltip3 } from "@mui/material";
|
|
2953
|
-
import { jsx as
|
|
2918
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
2954
2919
|
var ControlledCheckbox = ({
|
|
2955
2920
|
name,
|
|
2956
2921
|
label,
|
|
@@ -2962,18 +2927,18 @@ var ControlledCheckbox = ({
|
|
|
2962
2927
|
color,
|
|
2963
2928
|
handleChange,
|
|
2964
2929
|
disabled
|
|
2965
|
-
}) => /* @__PURE__ */
|
|
2930
|
+
}) => /* @__PURE__ */ jsx66(
|
|
2966
2931
|
Controller,
|
|
2967
2932
|
{
|
|
2968
2933
|
name,
|
|
2969
2934
|
control,
|
|
2970
2935
|
render: ({ field }) => {
|
|
2971
|
-
const checkbox = /* @__PURE__ */
|
|
2936
|
+
const checkbox = /* @__PURE__ */ jsx66(
|
|
2972
2937
|
FormControlLabel,
|
|
2973
2938
|
{
|
|
2974
2939
|
label,
|
|
2975
2940
|
className,
|
|
2976
|
-
control: /* @__PURE__ */
|
|
2941
|
+
control: /* @__PURE__ */ jsx66(
|
|
2977
2942
|
Checkbox,
|
|
2978
2943
|
{
|
|
2979
2944
|
...field,
|
|
@@ -2987,7 +2952,7 @@ var ControlledCheckbox = ({
|
|
|
2987
2952
|
)
|
|
2988
2953
|
}
|
|
2989
2954
|
);
|
|
2990
|
-
return tooltipDescription ? /* @__PURE__ */
|
|
2955
|
+
return tooltipDescription ? /* @__PURE__ */ jsx66(Tooltip3, { title: tooltipDescription, children: /* @__PURE__ */ jsx66("span", { children: checkbox }) }) : checkbox;
|
|
2991
2956
|
}
|
|
2992
2957
|
}
|
|
2993
2958
|
);
|
|
@@ -2997,7 +2962,7 @@ var ControlledCheckbox_default = ControlledCheckbox;
|
|
|
2997
2962
|
import { Controller as Controller2 } from "react-hook-form";
|
|
2998
2963
|
import { TextField } from "@mui/material";
|
|
2999
2964
|
import { makeStyles as makeStyles16 } from "tss-react/mui";
|
|
3000
|
-
import { jsx as
|
|
2965
|
+
import { jsx as jsx67 } from "react/jsx-runtime";
|
|
3001
2966
|
var useStyles16 = makeStyles16()(() => ({
|
|
3002
2967
|
selectInput: {
|
|
3003
2968
|
minWidth: 122
|
|
@@ -3030,12 +2995,12 @@ var ControlledNumberInput = ({
|
|
|
3030
2995
|
"Backspace",
|
|
3031
2996
|
"Tab"
|
|
3032
2997
|
].includes(input.key) && input.preventDefault();
|
|
3033
|
-
return /* @__PURE__ */
|
|
2998
|
+
return /* @__PURE__ */ jsx67(
|
|
3034
2999
|
Controller2,
|
|
3035
3000
|
{
|
|
3036
3001
|
control,
|
|
3037
3002
|
name,
|
|
3038
|
-
render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */
|
|
3003
|
+
render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */ jsx67(
|
|
3039
3004
|
TextField,
|
|
3040
3005
|
{
|
|
3041
3006
|
variant: "standard",
|
|
@@ -3081,7 +3046,7 @@ import {
|
|
|
3081
3046
|
TextField as TextField2
|
|
3082
3047
|
} from "@mui/material";
|
|
3083
3048
|
import { makeStyles as makeStyles17 } from "tss-react/mui";
|
|
3084
|
-
import { jsx as
|
|
3049
|
+
import { jsx as jsx68, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
3085
3050
|
var convertUnderscoreToHyphen = (str) => str.replace(/_/g, "-");
|
|
3086
3051
|
var useStyles17 = makeStyles17()((theme) => ({
|
|
3087
3052
|
textFieldButtons: {
|
|
@@ -3182,17 +3147,17 @@ var ControlledNumericField = ({
|
|
|
3182
3147
|
decrementValue(field)();
|
|
3183
3148
|
}
|
|
3184
3149
|
};
|
|
3185
|
-
return /* @__PURE__ */
|
|
3150
|
+
return /* @__PURE__ */ jsx68(
|
|
3186
3151
|
Box9,
|
|
3187
3152
|
{
|
|
3188
3153
|
className,
|
|
3189
3154
|
"data-testid": dataTestId || `${convertUnderscoreToHyphen(fieldName)}`,
|
|
3190
|
-
children: /* @__PURE__ */
|
|
3155
|
+
children: /* @__PURE__ */ jsx68(
|
|
3191
3156
|
Controller3,
|
|
3192
3157
|
{
|
|
3193
3158
|
control,
|
|
3194
3159
|
name: fieldName,
|
|
3195
|
-
render: ({ field, fieldState }) => /* @__PURE__ */
|
|
3160
|
+
render: ({ field, fieldState }) => /* @__PURE__ */ jsx68(
|
|
3196
3161
|
TextField2,
|
|
3197
3162
|
{
|
|
3198
3163
|
...field,
|
|
@@ -3227,25 +3192,25 @@ var ControlledNumericField = ({
|
|
|
3227
3192
|
slotProps: {
|
|
3228
3193
|
htmlInput: { min, max, step },
|
|
3229
3194
|
input: {
|
|
3230
|
-
endAdornment: /* @__PURE__ */
|
|
3231
|
-
/* @__PURE__ */
|
|
3195
|
+
endAdornment: /* @__PURE__ */ jsx68(InputAdornment, { position: "end", children: /* @__PURE__ */ jsxs38(Box9, { className: classes.textFieldButtons, children: [
|
|
3196
|
+
/* @__PURE__ */ jsx68(
|
|
3232
3197
|
IconButton,
|
|
3233
3198
|
{
|
|
3234
3199
|
disableRipple: true,
|
|
3235
3200
|
className: classes.arrowButton,
|
|
3236
3201
|
onClick: incrementValue(field),
|
|
3237
3202
|
"data-testid": "arrow-up",
|
|
3238
|
-
children: /* @__PURE__ */
|
|
3203
|
+
children: /* @__PURE__ */ jsx68(KeyboardArrowUpIcon, { sx: { fontSize: 15 } })
|
|
3239
3204
|
}
|
|
3240
3205
|
),
|
|
3241
|
-
/* @__PURE__ */
|
|
3206
|
+
/* @__PURE__ */ jsx68(
|
|
3242
3207
|
IconButton,
|
|
3243
3208
|
{
|
|
3244
3209
|
disableRipple: true,
|
|
3245
3210
|
className: classes.arrowButton,
|
|
3246
3211
|
onClick: decrementValue(field),
|
|
3247
3212
|
"data-testid": "arrow-down",
|
|
3248
|
-
children: /* @__PURE__ */
|
|
3213
|
+
children: /* @__PURE__ */ jsx68(KeyboardArrowDownIcon, { sx: { fontSize: 15 } })
|
|
3249
3214
|
}
|
|
3250
3215
|
)
|
|
3251
3216
|
] }) })
|
|
@@ -3264,7 +3229,7 @@ var ControlledNumericField_default = ControlledNumericField;
|
|
|
3264
3229
|
import { Controller as Controller4 } from "react-hook-form";
|
|
3265
3230
|
import { FormControl, FormHelperText, InputLabel, Select } from "@mui/material";
|
|
3266
3231
|
import { makeStyles as makeStyles18 } from "tss-react/mui";
|
|
3267
|
-
import { jsx as
|
|
3232
|
+
import { jsx as jsx69, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
3268
3233
|
var useStyles18 = makeStyles18()(() => ({
|
|
3269
3234
|
selectInput: {
|
|
3270
3235
|
minWidth: 122
|
|
@@ -3281,7 +3246,7 @@ var ControlledSelectWithArray = ({
|
|
|
3281
3246
|
revalidateFormFunction
|
|
3282
3247
|
}) => {
|
|
3283
3248
|
const { classes } = useStyles18();
|
|
3284
|
-
return /* @__PURE__ */
|
|
3249
|
+
return /* @__PURE__ */ jsx69(
|
|
3285
3250
|
Controller4,
|
|
3286
3251
|
{
|
|
3287
3252
|
control,
|
|
@@ -3295,7 +3260,7 @@ var ControlledSelectWithArray = ({
|
|
|
3295
3260
|
className: className || classes.selectInput,
|
|
3296
3261
|
variant: "standard",
|
|
3297
3262
|
children: [
|
|
3298
|
-
/* @__PURE__ */
|
|
3263
|
+
/* @__PURE__ */ jsx69(InputLabel, { shrink: true, error: !!fieldState.error, children: label }),
|
|
3299
3264
|
/* @__PURE__ */ jsxs39(
|
|
3300
3265
|
Select,
|
|
3301
3266
|
{
|
|
@@ -3315,12 +3280,12 @@ var ControlledSelectWithArray = ({
|
|
|
3315
3280
|
},
|
|
3316
3281
|
error: !!fieldState.error,
|
|
3317
3282
|
children: [
|
|
3318
|
-
/* @__PURE__ */
|
|
3319
|
-
options?.map((item) => /* @__PURE__ */
|
|
3283
|
+
/* @__PURE__ */ jsx69("option", { "aria-label": "None" }),
|
|
3284
|
+
options?.map((item) => /* @__PURE__ */ jsx69("option", { value: item, children: item }, item))
|
|
3320
3285
|
]
|
|
3321
3286
|
}
|
|
3322
3287
|
),
|
|
3323
|
-
/* @__PURE__ */
|
|
3288
|
+
/* @__PURE__ */ jsx69(FormHelperText, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3324
3289
|
]
|
|
3325
3290
|
}
|
|
3326
3291
|
)
|
|
@@ -3333,7 +3298,7 @@ var ControlledSelectWithArray_default = ControlledSelectWithArray;
|
|
|
3333
3298
|
import { Controller as Controller5 } from "react-hook-form";
|
|
3334
3299
|
import { FormControl as FormControl2, FormHelperText as FormHelperText2, InputLabel as InputLabel2, Select as Select2 } from "@mui/material";
|
|
3335
3300
|
import { makeStyles as makeStyles19 } from "tss-react/mui";
|
|
3336
|
-
import { jsx as
|
|
3301
|
+
import { jsx as jsx70, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
3337
3302
|
var useStyles19 = makeStyles19()(() => ({
|
|
3338
3303
|
selectInput: {
|
|
3339
3304
|
minWidth: 122
|
|
@@ -3351,7 +3316,7 @@ var ControlledSelectWithObject = ({
|
|
|
3351
3316
|
revalidateFormFunction
|
|
3352
3317
|
}) => {
|
|
3353
3318
|
const { classes } = useStyles19();
|
|
3354
|
-
return /* @__PURE__ */
|
|
3319
|
+
return /* @__PURE__ */ jsx70(
|
|
3355
3320
|
Controller5,
|
|
3356
3321
|
{
|
|
3357
3322
|
control,
|
|
@@ -3365,7 +3330,7 @@ var ControlledSelectWithObject = ({
|
|
|
3365
3330
|
className: className || classes.selectInput,
|
|
3366
3331
|
variant: "standard",
|
|
3367
3332
|
children: [
|
|
3368
|
-
/* @__PURE__ */
|
|
3333
|
+
/* @__PURE__ */ jsx70(InputLabel2, { error: !!fieldState.error, children: label }),
|
|
3369
3334
|
/* @__PURE__ */ jsxs40(
|
|
3370
3335
|
Select2,
|
|
3371
3336
|
{
|
|
@@ -3385,8 +3350,8 @@ var ControlledSelectWithObject = ({
|
|
|
3385
3350
|
},
|
|
3386
3351
|
error: !!fieldState.error,
|
|
3387
3352
|
children: [
|
|
3388
|
-
/* @__PURE__ */
|
|
3389
|
-
options?.map((option) => /* @__PURE__ */
|
|
3353
|
+
/* @__PURE__ */ jsx70("option", { "aria-label": "None" }),
|
|
3354
|
+
options?.map((option) => /* @__PURE__ */ jsx70(
|
|
3390
3355
|
"option",
|
|
3391
3356
|
{
|
|
3392
3357
|
disabled: listToDisableFromOptions ? listToDisableFromOptions.includes(option.value) : false,
|
|
@@ -3398,7 +3363,7 @@ var ControlledSelectWithObject = ({
|
|
|
3398
3363
|
]
|
|
3399
3364
|
}
|
|
3400
3365
|
),
|
|
3401
|
-
/* @__PURE__ */
|
|
3366
|
+
/* @__PURE__ */ jsx70(FormHelperText2, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3402
3367
|
]
|
|
3403
3368
|
}
|
|
3404
3369
|
)
|
|
@@ -3414,7 +3379,7 @@ import {
|
|
|
3414
3379
|
import { Box as Box10, TextField as TextField3 } from "@mui/material";
|
|
3415
3380
|
import classNames from "classnames";
|
|
3416
3381
|
import { makeStyles as makeStyles20 } from "tss-react/mui";
|
|
3417
|
-
import { jsx as
|
|
3382
|
+
import { jsx as jsx71, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
3418
3383
|
var useStyles20 = makeStyles20()(() => ({
|
|
3419
3384
|
fullWidthWrapper: {
|
|
3420
3385
|
maxWidth: "100%"
|
|
@@ -3462,24 +3427,24 @@ var ControlledValidTextInput = ({
|
|
|
3462
3427
|
defaultHandleBlurValidationAndSubmit(controlledField, fieldState.isDirty);
|
|
3463
3428
|
}
|
|
3464
3429
|
};
|
|
3465
|
-
return /* @__PURE__ */
|
|
3430
|
+
return /* @__PURE__ */ jsx71(
|
|
3466
3431
|
Box10,
|
|
3467
3432
|
{
|
|
3468
3433
|
className,
|
|
3469
3434
|
"data-testid": dataTestId || `${convertUnderscoreToHyphen2(fieldName)}`,
|
|
3470
|
-
children: /* @__PURE__ */
|
|
3435
|
+
children: /* @__PURE__ */ jsx71(
|
|
3471
3436
|
Controller6,
|
|
3472
3437
|
{
|
|
3473
3438
|
control,
|
|
3474
3439
|
name: fieldName,
|
|
3475
|
-
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */
|
|
3440
|
+
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */ jsx71(Box10, { className: classes.fullWidthWrapper, children: /* @__PURE__ */ jsx71(
|
|
3476
3441
|
TextField3,
|
|
3477
3442
|
{
|
|
3478
3443
|
...controlledField,
|
|
3479
3444
|
value: controlledField?.value || "",
|
|
3480
3445
|
fullWidth: true,
|
|
3481
3446
|
id: fieldName,
|
|
3482
|
-
"data-testid":
|
|
3447
|
+
"data-testid": `${dataTestId}-input` || `${convertUnderscoreToHyphen2(fieldName)}-input`,
|
|
3483
3448
|
label,
|
|
3484
3449
|
error: !!fieldState.error,
|
|
3485
3450
|
multiline: true,
|
|
@@ -3494,9 +3459,9 @@ var ControlledValidTextInput = ({
|
|
|
3494
3459
|
className: classNames({
|
|
3495
3460
|
[classes.helperTextWrapper]: !!maxLength
|
|
3496
3461
|
}),
|
|
3497
|
-
"data-testid":
|
|
3462
|
+
"data-testid": `${dataTestId}-helper-text` || `${convertUnderscoreToHyphen2(fieldName)}-helper-text`,
|
|
3498
3463
|
children: [
|
|
3499
|
-
/* @__PURE__ */
|
|
3464
|
+
/* @__PURE__ */ jsx71(
|
|
3500
3465
|
Box10,
|
|
3501
3466
|
{
|
|
3502
3467
|
component: "span",
|
|
@@ -3506,7 +3471,7 @@ var ControlledValidTextInput = ({
|
|
|
3506
3471
|
children: fieldState.error?.message ?? helperText
|
|
3507
3472
|
}
|
|
3508
3473
|
),
|
|
3509
|
-
!!maxLength && /* @__PURE__ */
|
|
3474
|
+
!!maxLength && /* @__PURE__ */ jsx71(Box10, { component: "span", children: `${watch(fieldName)?.length ?? 0}/${maxLength}` })
|
|
3510
3475
|
]
|
|
3511
3476
|
}
|
|
3512
3477
|
),
|
|
@@ -3525,7 +3490,7 @@ import { useState as useState2 } from "react";
|
|
|
3525
3490
|
import { Paper as Paper2, Skeleton } from "@mui/material";
|
|
3526
3491
|
import { DataGrid as MUIDataGrid } from "@mui/x-data-grid";
|
|
3527
3492
|
import { makeStyles as makeStyles21 } from "tss-react/mui";
|
|
3528
|
-
import { Fragment, jsx as
|
|
3493
|
+
import { Fragment, jsx as jsx72, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
3529
3494
|
var useStyles21 = makeStyles21()(() => ({
|
|
3530
3495
|
root: {
|
|
3531
3496
|
justifyContent: "space-between",
|
|
@@ -3572,14 +3537,14 @@ var DataGrid = ({
|
|
|
3572
3537
|
]);
|
|
3573
3538
|
const rowHeight = 56;
|
|
3574
3539
|
const headerAndFooterHeight = 52 + 56;
|
|
3575
|
-
return /* @__PURE__ */
|
|
3540
|
+
return /* @__PURE__ */ jsx72(
|
|
3576
3541
|
"div",
|
|
3577
3542
|
{
|
|
3578
3543
|
className: classes.root,
|
|
3579
3544
|
style: {
|
|
3580
3545
|
height: height || rows.length * rowHeight + headerAndFooterHeight
|
|
3581
3546
|
},
|
|
3582
|
-
children: /* @__PURE__ */
|
|
3547
|
+
children: /* @__PURE__ */ jsx72(Paper2, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx72("div", { children: [...Array(Math.floor(10))].map((i) => /* @__PURE__ */ jsx72(
|
|
3583
3548
|
Skeleton,
|
|
3584
3549
|
{
|
|
3585
3550
|
animation: "pulse",
|
|
@@ -3589,7 +3554,7 @@ var DataGrid = ({
|
|
|
3589
3554
|
},
|
|
3590
3555
|
i
|
|
3591
3556
|
)) }) : /* @__PURE__ */ jsxs42(Fragment, { children: [
|
|
3592
|
-
/* @__PURE__ */
|
|
3557
|
+
/* @__PURE__ */ jsx72(
|
|
3593
3558
|
MUIDataGrid,
|
|
3594
3559
|
{
|
|
3595
3560
|
rows,
|
|
@@ -3694,10 +3659,10 @@ localizedMoment.locale(constants_default.locale);
|
|
|
3694
3659
|
var moment_default = localizedMoment;
|
|
3695
3660
|
|
|
3696
3661
|
// src/components/Date/Date.tsx
|
|
3697
|
-
import { jsx as
|
|
3662
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3698
3663
|
var Date = ({ datetime, format = "L" }) => {
|
|
3699
3664
|
const formattedDate = moment_default(datetime).format(format);
|
|
3700
|
-
return /* @__PURE__ */
|
|
3665
|
+
return /* @__PURE__ */ jsx73("span", { children: formattedDate === "Invalid date" ? "-" : formattedDate });
|
|
3701
3666
|
};
|
|
3702
3667
|
var Date_default = Date;
|
|
3703
3668
|
|
|
@@ -3705,7 +3670,7 @@ var Date_default = Date;
|
|
|
3705
3670
|
import { memo as memo9 } from "react";
|
|
3706
3671
|
import { Alert, AlertTitle, Typography as Typography7, Box as Box11 } from "@mui/material";
|
|
3707
3672
|
import { makeStyles as makeStyles22 } from "tss-react/mui";
|
|
3708
|
-
import { Fragment as Fragment2, jsx as
|
|
3673
|
+
import { Fragment as Fragment2, jsx as jsx74, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
3709
3674
|
var useStyles22 = makeStyles22()(() => ({
|
|
3710
3675
|
alert: { marginBottom: 16 },
|
|
3711
3676
|
bottomBar: {
|
|
@@ -3732,10 +3697,10 @@ var DeleteSubstitutionDialogContent = ({
|
|
|
3732
3697
|
] }),
|
|
3733
3698
|
"This action will permanently remove all data and history associated with this substitution, and it cannot be undone."
|
|
3734
3699
|
] }),
|
|
3735
|
-
/* @__PURE__ */
|
|
3700
|
+
/* @__PURE__ */ jsx74(Typography7, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
3736
3701
|
/* @__PURE__ */ jsxs43(Box11, { className: classes.bottomBar, children: [
|
|
3737
|
-
/* @__PURE__ */
|
|
3738
|
-
/* @__PURE__ */
|
|
3702
|
+
/* @__PURE__ */ jsx74(ExtendedButton_default, { copy: "Cancel", onClick: closeDialog }),
|
|
3703
|
+
/* @__PURE__ */ jsx74(
|
|
3739
3704
|
ExtendedButton_default,
|
|
3740
3705
|
{
|
|
3741
3706
|
copy: "Confirm",
|
|
@@ -3753,7 +3718,7 @@ var DeleteSubstitutionDialogContent_default = memo9(DeleteSubstitutionDialogCont
|
|
|
3753
3718
|
import { memo as memo10 } from "react";
|
|
3754
3719
|
import { Alert as Alert2, AlertTitle as AlertTitle2, Typography as Typography8, Box as Box12 } from "@mui/material";
|
|
3755
3720
|
import { makeStyles as makeStyles23 } from "tss-react/mui";
|
|
3756
|
-
import { Fragment as Fragment3, jsx as
|
|
3721
|
+
import { Fragment as Fragment3, jsx as jsx75, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
3757
3722
|
var useStyles23 = makeStyles23()(() => ({
|
|
3758
3723
|
alert: { marginBottom: 16 },
|
|
3759
3724
|
bottomBar: {
|
|
@@ -3780,10 +3745,10 @@ var DeleteUserDialogContent = ({
|
|
|
3780
3745
|
] }),
|
|
3781
3746
|
"This action will permanently remove all data and history associated with this user, and it cannot be undone."
|
|
3782
3747
|
] }),
|
|
3783
|
-
/* @__PURE__ */
|
|
3748
|
+
/* @__PURE__ */ jsx75(Typography8, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
3784
3749
|
/* @__PURE__ */ jsxs44(Box12, { className: classes.bottomBar, children: [
|
|
3785
|
-
/* @__PURE__ */
|
|
3786
|
-
/* @__PURE__ */
|
|
3750
|
+
/* @__PURE__ */ jsx75(ExtendedButton_default, { color: "default", copy: "Cancel", onClick: closeDialog }),
|
|
3751
|
+
/* @__PURE__ */ jsx75(
|
|
3787
3752
|
ExtendedButton_default,
|
|
3788
3753
|
{
|
|
3789
3754
|
copy: "Confirm",
|
|
@@ -3800,7 +3765,7 @@ var DeleteUserDialogContent_default = memo10(DeleteUserDialogContent);
|
|
|
3800
3765
|
// src/components/FileCard/FileCard.tsx
|
|
3801
3766
|
import { Description as DescriptionIcon } from "@mui/icons-material";
|
|
3802
3767
|
import { Typography as Typography9, Box as Box13 } from "@mui/material";
|
|
3803
|
-
import { jsx as
|
|
3768
|
+
import { jsx as jsx76, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3804
3769
|
var getFileMetadata = (file) => {
|
|
3805
3770
|
const fullFilename = file.substring(file.lastIndexOf("/") + 1);
|
|
3806
3771
|
const extension = file.substring(file.lastIndexOf("."));
|
|
@@ -3825,7 +3790,7 @@ var FileCard = ({ document: document2 }) => {
|
|
|
3825
3790
|
minWidth: "250px"
|
|
3826
3791
|
},
|
|
3827
3792
|
children: [
|
|
3828
|
-
/* @__PURE__ */
|
|
3793
|
+
/* @__PURE__ */ jsx76(
|
|
3829
3794
|
Box13,
|
|
3830
3795
|
{
|
|
3831
3796
|
sx: {
|
|
@@ -3833,10 +3798,10 @@ var FileCard = ({ document: document2 }) => {
|
|
|
3833
3798
|
justifyContent: "center",
|
|
3834
3799
|
alignItems: "center"
|
|
3835
3800
|
},
|
|
3836
|
-
children: /* @__PURE__ */
|
|
3801
|
+
children: /* @__PURE__ */ jsx76(DescriptionIcon, { fontSize: "medium", color: "action" })
|
|
3837
3802
|
}
|
|
3838
3803
|
),
|
|
3839
|
-
/* @__PURE__ */
|
|
3804
|
+
/* @__PURE__ */ jsx76(
|
|
3840
3805
|
Box13,
|
|
3841
3806
|
{
|
|
3842
3807
|
sx: {
|
|
@@ -3862,7 +3827,7 @@ import { Typography as Typography10 } from "@mui/material";
|
|
|
3862
3827
|
import brown from "@mui/material/colors/brown";
|
|
3863
3828
|
import teal from "@mui/material/colors/teal";
|
|
3864
3829
|
import { makeStyles as makeStyles24 } from "tss-react/mui";
|
|
3865
|
-
import { jsx as
|
|
3830
|
+
import { jsx as jsx77 } from "react/jsx-runtime";
|
|
3866
3831
|
var useStyles24 = makeStyles24()((theme) => ({
|
|
3867
3832
|
siteOne: {
|
|
3868
3833
|
backgroundColor: teal["50"],
|
|
@@ -3890,7 +3855,7 @@ var useStyles24 = makeStyles24()((theme) => ({
|
|
|
3890
3855
|
var FilledLabel = (props) => {
|
|
3891
3856
|
const { color, copy } = props;
|
|
3892
3857
|
const { classes } = useStyles24();
|
|
3893
|
-
return /* @__PURE__ */
|
|
3858
|
+
return /* @__PURE__ */ jsx77(Typography10, { variant: "caption", className: classes[color], children: copy });
|
|
3894
3859
|
};
|
|
3895
3860
|
var FilledLabel_default = memo11(FilledLabel);
|
|
3896
3861
|
|
|
@@ -3906,7 +3871,7 @@ import {
|
|
|
3906
3871
|
ListItemText,
|
|
3907
3872
|
Divider as Divider2
|
|
3908
3873
|
} from "@mui/material";
|
|
3909
|
-
import { Fragment as Fragment4, jsx as
|
|
3874
|
+
import { Fragment as Fragment4, jsx as jsx78, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3910
3875
|
var FilterGroupSelector = ({
|
|
3911
3876
|
name = "Filter Selector",
|
|
3912
3877
|
optionsList = [{ category: "Category", options: ["Option 1"] }],
|
|
@@ -3941,8 +3906,8 @@ var FilterGroupSelector = ({
|
|
|
3941
3906
|
onClick: handleClick,
|
|
3942
3907
|
sx: { cursor: "pointer" },
|
|
3943
3908
|
children: [
|
|
3944
|
-
/* @__PURE__ */
|
|
3945
|
-
/* @__PURE__ */
|
|
3909
|
+
/* @__PURE__ */ jsx78(Typography11, { variant: "button", fontSize: 12, children: name }),
|
|
3910
|
+
/* @__PURE__ */ jsx78(FilterListIcon, {})
|
|
3946
3911
|
]
|
|
3947
3912
|
}
|
|
3948
3913
|
),
|
|
@@ -3955,10 +3920,10 @@ var FilterGroupSelector = ({
|
|
|
3955
3920
|
anchorOrigin: { vertical: "bottom", horizontal: "left" },
|
|
3956
3921
|
transformOrigin: { vertical: "top", horizontal: "left" },
|
|
3957
3922
|
children: [
|
|
3958
|
-
/* @__PURE__ */
|
|
3959
|
-
/* @__PURE__ */
|
|
3960
|
-
/* @__PURE__ */
|
|
3961
|
-
/* @__PURE__ */
|
|
3923
|
+
/* @__PURE__ */ jsx78(Box14, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ jsx78(Typography11, { variant: "button", children: `Search ${name}` }) }),
|
|
3924
|
+
/* @__PURE__ */ jsx78(Divider2, {}),
|
|
3925
|
+
/* @__PURE__ */ jsx78(Box14, { overflow: "auto", height: 450, children: optionsList.map(({ category, options }, index) => /* @__PURE__ */ jsxs46(Box14, { children: [
|
|
3926
|
+
/* @__PURE__ */ jsx78(
|
|
3962
3927
|
Typography11,
|
|
3963
3928
|
{
|
|
3964
3929
|
variant: "subtitle2",
|
|
@@ -3969,13 +3934,13 @@ var FilterGroupSelector = ({
|
|
|
3969
3934
|
options.map((value) => {
|
|
3970
3935
|
const key = `${category.replaceAll(" ", "_").toLocaleLowerCase()}${categoryIdentification ? `_${categoryIdentification}` : ""}: ${value}`;
|
|
3971
3936
|
return /* @__PURE__ */ jsxs46(MenuItem, { onClick: () => toggleOption(key), children: [
|
|
3972
|
-
/* @__PURE__ */
|
|
3973
|
-
/* @__PURE__ */
|
|
3937
|
+
/* @__PURE__ */ jsx78(Checkbox2, { checked: values.includes(key) }),
|
|
3938
|
+
/* @__PURE__ */ jsx78(ListItemText, { primary: value })
|
|
3974
3939
|
] }, value);
|
|
3975
3940
|
})
|
|
3976
3941
|
] }, category)) }),
|
|
3977
3942
|
/* @__PURE__ */ jsxs46(Box14, { display: "flex", children: [
|
|
3978
|
-
/* @__PURE__ */
|
|
3943
|
+
/* @__PURE__ */ jsx78(
|
|
3979
3944
|
ExtendedButton_default,
|
|
3980
3945
|
{
|
|
3981
3946
|
variant: "text",
|
|
@@ -3987,7 +3952,7 @@ var FilterGroupSelector = ({
|
|
|
3987
3952
|
}
|
|
3988
3953
|
}
|
|
3989
3954
|
),
|
|
3990
|
-
/* @__PURE__ */
|
|
3955
|
+
/* @__PURE__ */ jsx78(
|
|
3991
3956
|
ExtendedButton_default,
|
|
3992
3957
|
{
|
|
3993
3958
|
color: "primary",
|
|
@@ -4019,7 +3984,7 @@ import {
|
|
|
4019
3984
|
ListItemText as ListItemText2,
|
|
4020
3985
|
Divider as Divider3
|
|
4021
3986
|
} from "@mui/material";
|
|
4022
|
-
import { Fragment as Fragment5, jsx as
|
|
3987
|
+
import { Fragment as Fragment5, jsx as jsx79, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
4023
3988
|
var FilterSimpleSelector = ({
|
|
4024
3989
|
name = "Filter Selector",
|
|
4025
3990
|
options = ["No Options"],
|
|
@@ -4053,8 +4018,8 @@ var FilterSimpleSelector = ({
|
|
|
4053
4018
|
onClick: handleClick,
|
|
4054
4019
|
sx: { cursor: "pointer" },
|
|
4055
4020
|
children: [
|
|
4056
|
-
/* @__PURE__ */
|
|
4057
|
-
/* @__PURE__ */
|
|
4021
|
+
/* @__PURE__ */ jsx79(Typography12, { variant: "button", fontSize: 12, children: name }),
|
|
4022
|
+
/* @__PURE__ */ jsx79(FilterListIcon2, {})
|
|
4058
4023
|
]
|
|
4059
4024
|
}
|
|
4060
4025
|
),
|
|
@@ -4067,15 +4032,15 @@ var FilterSimpleSelector = ({
|
|
|
4067
4032
|
anchorOrigin: { vertical: "bottom", horizontal: "left" },
|
|
4068
4033
|
transformOrigin: { vertical: "top", horizontal: "left" },
|
|
4069
4034
|
children: [
|
|
4070
|
-
/* @__PURE__ */
|
|
4071
|
-
/* @__PURE__ */
|
|
4072
|
-
/* @__PURE__ */
|
|
4073
|
-
/* @__PURE__ */
|
|
4074
|
-
/* @__PURE__ */
|
|
4035
|
+
/* @__PURE__ */ jsx79(Box15, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ jsx79(Typography12, { variant: "button", children: `Search ${name}` }) }),
|
|
4036
|
+
/* @__PURE__ */ jsx79(Divider3, {}),
|
|
4037
|
+
/* @__PURE__ */ jsx79(Box15, { overflow: "auto", height: 450, children: options.map((option) => /* @__PURE__ */ jsxs47(MenuItem2, { onClick: () => toggleOption(option), children: [
|
|
4038
|
+
/* @__PURE__ */ jsx79(Checkbox3, { checked: values.includes(option) }),
|
|
4039
|
+
/* @__PURE__ */ jsx79(ListItemText2, { primary: option })
|
|
4075
4040
|
] }, option)) }),
|
|
4076
|
-
/* @__PURE__ */
|
|
4041
|
+
/* @__PURE__ */ jsx79(Divider3, {}),
|
|
4077
4042
|
/* @__PURE__ */ jsxs47(Box15, { display: "flex", children: [
|
|
4078
|
-
/* @__PURE__ */
|
|
4043
|
+
/* @__PURE__ */ jsx79(
|
|
4079
4044
|
ExtendedButton_default,
|
|
4080
4045
|
{
|
|
4081
4046
|
variant: "text",
|
|
@@ -4087,7 +4052,7 @@ var FilterSimpleSelector = ({
|
|
|
4087
4052
|
}
|
|
4088
4053
|
}
|
|
4089
4054
|
),
|
|
4090
|
-
/* @__PURE__ */
|
|
4055
|
+
/* @__PURE__ */ jsx79(
|
|
4091
4056
|
ExtendedButton_default,
|
|
4092
4057
|
{
|
|
4093
4058
|
color: "primary",
|
|
@@ -4111,7 +4076,7 @@ var FilterSimpleSelector_default = FilterSimpleSelector;
|
|
|
4111
4076
|
import * as React from "react";
|
|
4112
4077
|
import { Box as Box16 } from "@mui/material";
|
|
4113
4078
|
import { makeStyles as makeStyles25 } from "tss-react/mui";
|
|
4114
|
-
import { jsx as
|
|
4079
|
+
import { jsx as jsx80, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
4115
4080
|
var footerHeight = "64px";
|
|
4116
4081
|
var useStyles25 = makeStyles25()((theme) => ({
|
|
4117
4082
|
root: {
|
|
@@ -4133,8 +4098,8 @@ var useStyles25 = makeStyles25()((theme) => ({
|
|
|
4133
4098
|
var FixedFooter = ({ justifyContent, children }) => {
|
|
4134
4099
|
const { classes } = useStyles25();
|
|
4135
4100
|
return /* @__PURE__ */ jsxs48(Box16, { children: [
|
|
4136
|
-
/* @__PURE__ */
|
|
4137
|
-
/* @__PURE__ */
|
|
4101
|
+
/* @__PURE__ */ jsx80(Box16, { className: classes.fixedOffset }),
|
|
4102
|
+
/* @__PURE__ */ jsx80(
|
|
4138
4103
|
Box16,
|
|
4139
4104
|
{
|
|
4140
4105
|
className: classes.root,
|
|
@@ -4151,7 +4116,7 @@ var FixedFooter_default = React.memo(FixedFooter);
|
|
|
4151
4116
|
// src/components/Header/Header.tsx
|
|
4152
4117
|
import { Paper as Paper3 } from "@mui/material";
|
|
4153
4118
|
import { makeStyles as makeStyles26 } from "tss-react/mui";
|
|
4154
|
-
import { jsx as
|
|
4119
|
+
import { jsx as jsx81, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
4155
4120
|
var useStyles26 = makeStyles26()((theme) => ({
|
|
4156
4121
|
container: {
|
|
4157
4122
|
margin: theme.spacing(1)
|
|
@@ -4174,7 +4139,7 @@ var Header = ({
|
|
|
4174
4139
|
wrappedHeader = false
|
|
4175
4140
|
}) => {
|
|
4176
4141
|
const { classes, cx } = useStyles26();
|
|
4177
|
-
return /* @__PURE__ */
|
|
4142
|
+
return /* @__PURE__ */ jsx81(
|
|
4178
4143
|
Paper3,
|
|
4179
4144
|
{
|
|
4180
4145
|
className: cx({
|
|
@@ -4182,8 +4147,8 @@ var Header = ({
|
|
|
4182
4147
|
}),
|
|
4183
4148
|
elevation: wrappedHeader ? 0 : 1,
|
|
4184
4149
|
children: /* @__PURE__ */ jsxs49("header", { className: classes.header, children: [
|
|
4185
|
-
/* @__PURE__ */
|
|
4186
|
-
children ? /* @__PURE__ */
|
|
4150
|
+
/* @__PURE__ */ jsx81(AppLabel_default, { appName }),
|
|
4151
|
+
children ? /* @__PURE__ */ jsx81("div", { className: classes.rightContent, children }) : null
|
|
4187
4152
|
] })
|
|
4188
4153
|
}
|
|
4189
4154
|
);
|
|
@@ -4212,9 +4177,9 @@ import { makeStyles as makeStyles27 } from "tss-react/mui";
|
|
|
4212
4177
|
// src/components/UserBust/UserBust.tsx
|
|
4213
4178
|
import { memo as memo13 } from "react";
|
|
4214
4179
|
import { Avatar, Typography as Typography13 } from "@mui/material";
|
|
4215
|
-
import { jsx as
|
|
4180
|
+
import { jsx as jsx82, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
4216
4181
|
var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ jsxs50("div", { children: [
|
|
4217
|
-
/* @__PURE__ */
|
|
4182
|
+
/* @__PURE__ */ jsx82(
|
|
4218
4183
|
Avatar,
|
|
4219
4184
|
{
|
|
4220
4185
|
src: user.profile_picture,
|
|
@@ -4223,8 +4188,8 @@ var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ jsxs5
|
|
|
4223
4188
|
}
|
|
4224
4189
|
),
|
|
4225
4190
|
/* @__PURE__ */ jsxs50("div", { style: { paddingTop: 16 }, children: [
|
|
4226
|
-
/* @__PURE__ */
|
|
4227
|
-
/* @__PURE__ */
|
|
4191
|
+
/* @__PURE__ */ jsx82(Typography13, { ...typographyProps.name, children: `${user.first_name} ${user.last_name}` }),
|
|
4192
|
+
/* @__PURE__ */ jsx82(Typography13, { ...typographyProps.username, children: user.username })
|
|
4228
4193
|
] })
|
|
4229
4194
|
] });
|
|
4230
4195
|
var UserBust_default = memo13(UserBust);
|
|
@@ -4263,7 +4228,7 @@ var featureName = {
|
|
|
4263
4228
|
var featureName_default = featureName;
|
|
4264
4229
|
|
|
4265
4230
|
// src/components/LeftDrawer/helpers/drawerAppList.tsx
|
|
4266
|
-
import { jsx as
|
|
4231
|
+
import { jsx as jsx83 } from "react/jsx-runtime";
|
|
4267
4232
|
var drawerAppList = [
|
|
4268
4233
|
{
|
|
4269
4234
|
groupName: "Home",
|
|
@@ -4274,7 +4239,7 @@ var drawerAppList = [
|
|
|
4274
4239
|
alwaysDisplay: true,
|
|
4275
4240
|
featureNames: [],
|
|
4276
4241
|
pinned: null,
|
|
4277
|
-
icon: /* @__PURE__ */
|
|
4242
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconHome, {}),
|
|
4278
4243
|
url: `/`
|
|
4279
4244
|
}
|
|
4280
4245
|
]
|
|
@@ -4288,7 +4253,7 @@ var drawerAppList = [
|
|
|
4288
4253
|
alwaysDisplay: false,
|
|
4289
4254
|
featureNames: [featureName_default.NOTIFICATIONS],
|
|
4290
4255
|
pinned: null,
|
|
4291
|
-
icon: /* @__PURE__ */
|
|
4256
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconNotification, {}),
|
|
4292
4257
|
url: `/notifications`
|
|
4293
4258
|
},
|
|
4294
4259
|
{
|
|
@@ -4297,7 +4262,7 @@ var drawerAppList = [
|
|
|
4297
4262
|
alwaysDisplay: false,
|
|
4298
4263
|
featureNames: [featureName_default.PROMO_CODES],
|
|
4299
4264
|
pinned: null,
|
|
4300
|
-
icon: /* @__PURE__ */
|
|
4265
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconPromoCode, {}),
|
|
4301
4266
|
url: "/react/promo_codes"
|
|
4302
4267
|
},
|
|
4303
4268
|
{
|
|
@@ -4306,7 +4271,7 @@ var drawerAppList = [
|
|
|
4306
4271
|
alwaysDisplay: false,
|
|
4307
4272
|
featureNames: [featureName_default.SEARCH_CATEGORIES],
|
|
4308
4273
|
pinned: null,
|
|
4309
|
-
icon: /* @__PURE__ */
|
|
4274
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconSearchCategories, {}),
|
|
4310
4275
|
url: "/react/search-categories"
|
|
4311
4276
|
},
|
|
4312
4277
|
{
|
|
@@ -4315,7 +4280,7 @@ var drawerAppList = [
|
|
|
4315
4280
|
alwaysDisplay: false,
|
|
4316
4281
|
featureNames: ["cms"],
|
|
4317
4282
|
pinned: null,
|
|
4318
|
-
icon: /* @__PURE__ */
|
|
4283
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconContentManagement, {}),
|
|
4319
4284
|
url: "/react/content-management"
|
|
4320
4285
|
}
|
|
4321
4286
|
]
|
|
@@ -4329,7 +4294,7 @@ var drawerAppList = [
|
|
|
4329
4294
|
alwaysDisplay: false,
|
|
4330
4295
|
featureNames: [featureName_default.AIRCALL],
|
|
4331
4296
|
pinned: "recorded_calls",
|
|
4332
|
-
icon: /* @__PURE__ */
|
|
4297
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconPhone, {}),
|
|
4333
4298
|
url: "/react/air-call"
|
|
4334
4299
|
},
|
|
4335
4300
|
{
|
|
@@ -4338,7 +4303,7 @@ var drawerAppList = [
|
|
|
4338
4303
|
alwaysDisplay: false,
|
|
4339
4304
|
featureNames: [featureName_default.CUSTOMERS],
|
|
4340
4305
|
pinned: "customers",
|
|
4341
|
-
icon: /* @__PURE__ */
|
|
4306
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconAccount, {}),
|
|
4342
4307
|
url: `/react/customers`,
|
|
4343
4308
|
children: [
|
|
4344
4309
|
{
|
|
@@ -4361,7 +4326,7 @@ var drawerAppList = [
|
|
|
4361
4326
|
alwaysDisplay: false,
|
|
4362
4327
|
featureNames: [featureName_default.ORDERS],
|
|
4363
4328
|
pinned: "orders",
|
|
4364
|
-
icon: /* @__PURE__ */
|
|
4329
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconOrders, {}),
|
|
4365
4330
|
url: `/orders`
|
|
4366
4331
|
},
|
|
4367
4332
|
{
|
|
@@ -4370,7 +4335,7 @@ var drawerAppList = [
|
|
|
4370
4335
|
alwaysDisplay: false,
|
|
4371
4336
|
featureNames: [featureName_default.PRICE_LIST],
|
|
4372
4337
|
pinned: "price_list",
|
|
4373
|
-
icon: /* @__PURE__ */
|
|
4338
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconPriceList, {}),
|
|
4374
4339
|
url: `/price-list`
|
|
4375
4340
|
},
|
|
4376
4341
|
{
|
|
@@ -4379,7 +4344,7 @@ var drawerAppList = [
|
|
|
4379
4344
|
alwaysDisplay: false,
|
|
4380
4345
|
featureNames: [featureName_default.SPECIAL_PRICES],
|
|
4381
4346
|
pinned: "special_prices",
|
|
4382
|
-
icon: /* @__PURE__ */
|
|
4347
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconSpecialPrice, {}),
|
|
4383
4348
|
url: `/pricing/special-prices`
|
|
4384
4349
|
}
|
|
4385
4350
|
]
|
|
@@ -4393,7 +4358,7 @@ var drawerAppList = [
|
|
|
4393
4358
|
alwaysDisplay: false,
|
|
4394
4359
|
featureNames: [featureName_default.PURCHASE_ORDERS],
|
|
4395
4360
|
pinned: "purchase_orders",
|
|
4396
|
-
icon: /* @__PURE__ */
|
|
4361
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconBuying, {}),
|
|
4397
4362
|
url: "/react/purchase-orders"
|
|
4398
4363
|
},
|
|
4399
4364
|
{
|
|
@@ -4402,7 +4367,7 @@ var drawerAppList = [
|
|
|
4402
4367
|
alwaysDisplay: false,
|
|
4403
4368
|
featureNames: [featureName_default.PRODUCTS],
|
|
4404
4369
|
pinned: "products",
|
|
4405
|
-
icon: /* @__PURE__ */
|
|
4370
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconProducts, {}),
|
|
4406
4371
|
url: `/product-base-list`
|
|
4407
4372
|
},
|
|
4408
4373
|
{
|
|
@@ -4411,7 +4376,7 @@ var drawerAppList = [
|
|
|
4411
4376
|
alwaysDisplay: false,
|
|
4412
4377
|
featureNames: [featureName_default.SUPPLIERS],
|
|
4413
4378
|
pinned: "suppliers",
|
|
4414
|
-
icon: /* @__PURE__ */
|
|
4379
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconSupplier, {}),
|
|
4415
4380
|
url: "/react/suppliers"
|
|
4416
4381
|
},
|
|
4417
4382
|
{
|
|
@@ -4420,7 +4385,7 @@ var drawerAppList = [
|
|
|
4420
4385
|
alwaysDisplay: false,
|
|
4421
4386
|
featureNames: [featureName_default.SUPPLIER_PRICES],
|
|
4422
4387
|
pinned: "supplier_prices",
|
|
4423
|
-
icon: /* @__PURE__ */
|
|
4388
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconSupplierPrices, {}),
|
|
4424
4389
|
url: `/supplier-prices`
|
|
4425
4390
|
},
|
|
4426
4391
|
{
|
|
@@ -4429,7 +4394,7 @@ var drawerAppList = [
|
|
|
4429
4394
|
alwaysDisplay: false,
|
|
4430
4395
|
featureNames: [featureName_default.BULK_UPDATE],
|
|
4431
4396
|
pinned: "bulk-update",
|
|
4432
|
-
icon: /* @__PURE__ */
|
|
4397
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconImport, {}),
|
|
4433
4398
|
url: "/react/bulk_update"
|
|
4434
4399
|
}
|
|
4435
4400
|
]
|
|
@@ -4443,7 +4408,7 @@ var drawerAppList = [
|
|
|
4443
4408
|
alwaysDisplay: false,
|
|
4444
4409
|
featureNames: [featureName_default.GOODS_IN],
|
|
4445
4410
|
pinned: "goods_in",
|
|
4446
|
-
icon: /* @__PURE__ */
|
|
4411
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconGoodsin, {}),
|
|
4447
4412
|
url: "/react/goodsin-list"
|
|
4448
4413
|
},
|
|
4449
4414
|
{
|
|
@@ -4452,7 +4417,7 @@ var drawerAppList = [
|
|
|
4452
4417
|
alwaysDisplay: false,
|
|
4453
4418
|
featureNames: [featureName_default.RETURNS],
|
|
4454
4419
|
pinned: "goods_in",
|
|
4455
|
-
icon: /* @__PURE__ */
|
|
4420
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconGoodsin, {}),
|
|
4456
4421
|
url: "/react/returns"
|
|
4457
4422
|
},
|
|
4458
4423
|
{
|
|
@@ -4461,11 +4426,11 @@ var drawerAppList = [
|
|
|
4461
4426
|
alwaysDisplay: false,
|
|
4462
4427
|
featureNames: [featureName_default.KANBAN],
|
|
4463
4428
|
pinned: "kanbancards",
|
|
4464
|
-
icon: /* @__PURE__ */
|
|
4429
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconVkc, {}),
|
|
4465
4430
|
url: `/kanban`
|
|
4466
4431
|
},
|
|
4467
4432
|
{
|
|
4468
|
-
icon: /* @__PURE__ */
|
|
4433
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconLocation, {}),
|
|
4469
4434
|
name: "Stock and Locations",
|
|
4470
4435
|
pinned: "locations",
|
|
4471
4436
|
routeName: "locations",
|
|
@@ -4487,7 +4452,7 @@ var drawerAppList = [
|
|
|
4487
4452
|
alwaysDisplay: false,
|
|
4488
4453
|
featureNames: [featureName_default.PICKING_STATIONS],
|
|
4489
4454
|
pinned: "picking_stations",
|
|
4490
|
-
icon: /* @__PURE__ */
|
|
4455
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconScales, {}),
|
|
4491
4456
|
url: `/pickingstation`
|
|
4492
4457
|
},
|
|
4493
4458
|
{
|
|
@@ -4496,7 +4461,7 @@ var drawerAppList = [
|
|
|
4496
4461
|
alwaysDisplay: false,
|
|
4497
4462
|
featureNames: [featureName_default.QUALITY_CONTROL],
|
|
4498
4463
|
pinned: "quality_control",
|
|
4499
|
-
icon: /* @__PURE__ */
|
|
4464
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconQc, {}),
|
|
4500
4465
|
url: `/quality-control`
|
|
4501
4466
|
},
|
|
4502
4467
|
{
|
|
@@ -4505,7 +4470,7 @@ var drawerAppList = [
|
|
|
4505
4470
|
alwaysDisplay: false,
|
|
4506
4471
|
featureNames: [featureName_default.RETAIL],
|
|
4507
4472
|
pinned: "retail",
|
|
4508
|
-
icon: /* @__PURE__ */
|
|
4473
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconRetail, {}),
|
|
4509
4474
|
url: `/retail/product-availability`
|
|
4510
4475
|
},
|
|
4511
4476
|
{
|
|
@@ -4514,7 +4479,7 @@ var drawerAppList = [
|
|
|
4514
4479
|
alwaysDisplay: false,
|
|
4515
4480
|
featureNames: [featureName_default.SERVICE_DELIVERY],
|
|
4516
4481
|
pinned: "runs",
|
|
4517
|
-
icon: /* @__PURE__ */
|
|
4482
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconRuns, {}),
|
|
4518
4483
|
url: `/runs`
|
|
4519
4484
|
},
|
|
4520
4485
|
{
|
|
@@ -4523,7 +4488,7 @@ var drawerAppList = [
|
|
|
4523
4488
|
alwaysDisplay: false,
|
|
4524
4489
|
featureNames: [featureName_default.OPS_METRICS],
|
|
4525
4490
|
pinned: "ops-metrics",
|
|
4526
|
-
icon: /* @__PURE__ */
|
|
4491
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconOpsMetrics, {}),
|
|
4527
4492
|
url: "/react/ops-metrics"
|
|
4528
4493
|
}
|
|
4529
4494
|
]
|
|
@@ -4537,7 +4502,7 @@ var drawerAppList = [
|
|
|
4537
4502
|
alwaysDisplay: false,
|
|
4538
4503
|
featureNames: [featureName_default.ACCOUNTS],
|
|
4539
4504
|
pinned: "accounts",
|
|
4540
|
-
icon: /* @__PURE__ */
|
|
4505
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconAccounts, {}),
|
|
4541
4506
|
url: `/accounts`
|
|
4542
4507
|
},
|
|
4543
4508
|
{
|
|
@@ -4546,7 +4511,7 @@ var drawerAppList = [
|
|
|
4546
4511
|
alwaysDisplay: false,
|
|
4547
4512
|
featureNames: [featureName_default.REPORTS],
|
|
4548
4513
|
pinned: "reports",
|
|
4549
|
-
icon: /* @__PURE__ */
|
|
4514
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconReports, {}),
|
|
4550
4515
|
url: `/reports`
|
|
4551
4516
|
}
|
|
4552
4517
|
]
|
|
@@ -4560,7 +4525,7 @@ var drawerAppList = [
|
|
|
4560
4525
|
alwaysDisplay: false,
|
|
4561
4526
|
featureNames: [featureName_default.ADMIN],
|
|
4562
4527
|
pinned: "admin",
|
|
4563
|
-
icon: /* @__PURE__ */
|
|
4528
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconSetting, {}),
|
|
4564
4529
|
url: `/admin`
|
|
4565
4530
|
},
|
|
4566
4531
|
{
|
|
@@ -4569,7 +4534,7 @@ var drawerAppList = [
|
|
|
4569
4534
|
alwaysDisplay: false,
|
|
4570
4535
|
featureNames: [featureName_default.USER_MANAGEMENT],
|
|
4571
4536
|
pinned: "users",
|
|
4572
|
-
icon: /* @__PURE__ */
|
|
4537
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconUserManagement, {}),
|
|
4573
4538
|
url: "/react/user-management"
|
|
4574
4539
|
},
|
|
4575
4540
|
{
|
|
@@ -4578,7 +4543,7 @@ var drawerAppList = [
|
|
|
4578
4543
|
alwaysDisplay: true,
|
|
4579
4544
|
featureNames: [],
|
|
4580
4545
|
pinned: null,
|
|
4581
|
-
icon: /* @__PURE__ */
|
|
4546
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconLogin, {}),
|
|
4582
4547
|
url: "/react/logout"
|
|
4583
4548
|
}
|
|
4584
4549
|
]
|
|
@@ -4620,7 +4585,7 @@ var useGetFilteredDrawerAppList = (featureSettings) => {
|
|
|
4620
4585
|
var useGetFilteredDrawerAppList_default = useGetFilteredDrawerAppList;
|
|
4621
4586
|
|
|
4622
4587
|
// src/components/LeftDrawer/LeftDrawer.tsx
|
|
4623
|
-
import { jsx as
|
|
4588
|
+
import { jsx as jsx84, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
4624
4589
|
var useStyles27 = makeStyles27()((theme) => ({
|
|
4625
4590
|
subheader: {
|
|
4626
4591
|
textTransform: "uppercase",
|
|
@@ -4703,8 +4668,8 @@ var LeftDrawer = ({
|
|
|
4703
4668
|
onOpen: handleOpen,
|
|
4704
4669
|
open,
|
|
4705
4670
|
children: [
|
|
4706
|
-
/* @__PURE__ */
|
|
4707
|
-
/* @__PURE__ */
|
|
4671
|
+
/* @__PURE__ */ jsx84(AppBar, { position: "static", children: /* @__PURE__ */ jsxs51(Toolbar, { className: classes.topBar, children: [
|
|
4672
|
+
/* @__PURE__ */ jsx84(
|
|
4708
4673
|
UserBust_default,
|
|
4709
4674
|
{
|
|
4710
4675
|
user,
|
|
@@ -4715,7 +4680,7 @@ var LeftDrawer = ({
|
|
|
4715
4680
|
}
|
|
4716
4681
|
}
|
|
4717
4682
|
),
|
|
4718
|
-
/* @__PURE__ */
|
|
4683
|
+
/* @__PURE__ */ jsx84(Box17, { children: /* @__PURE__ */ jsx84(
|
|
4719
4684
|
RoundButton_default,
|
|
4720
4685
|
{
|
|
4721
4686
|
icon: "edit",
|
|
@@ -4726,8 +4691,8 @@ var LeftDrawer = ({
|
|
|
4726
4691
|
}
|
|
4727
4692
|
) })
|
|
4728
4693
|
] }) }),
|
|
4729
|
-
/* @__PURE__ */
|
|
4730
|
-
/* @__PURE__ */
|
|
4694
|
+
/* @__PURE__ */ jsx84(List, { children: filteredDrawerAppList.map((group) => /* @__PURE__ */ jsxs51(Fragment6, { children: [
|
|
4695
|
+
/* @__PURE__ */ jsx84(ListSubheader, { disableSticky: true, className: classes.subheader, children: group.groupName }),
|
|
4731
4696
|
group.apps.map((app) => /* @__PURE__ */ jsxs51(Fragment6, { children: [
|
|
4732
4697
|
/* @__PURE__ */ jsxs51(
|
|
4733
4698
|
ListItem,
|
|
@@ -4740,8 +4705,8 @@ var LeftDrawer = ({
|
|
|
4740
4705
|
return window.location.assign(app.url);
|
|
4741
4706
|
},
|
|
4742
4707
|
children: [
|
|
4743
|
-
/* @__PURE__ */
|
|
4744
|
-
/* @__PURE__ */
|
|
4708
|
+
/* @__PURE__ */ jsx84(ListItemIcon, { children: /* @__PURE__ */ jsx84(Icon2, { className: classes.iconMenu, children: app.icon }) }),
|
|
4709
|
+
/* @__PURE__ */ jsx84(
|
|
4745
4710
|
ListItemText3,
|
|
4746
4711
|
{
|
|
4747
4712
|
className: classes.appName,
|
|
@@ -4751,13 +4716,13 @@ var LeftDrawer = ({
|
|
|
4751
4716
|
}
|
|
4752
4717
|
}
|
|
4753
4718
|
),
|
|
4754
|
-
app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */
|
|
4719
|
+
app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */ jsx84(
|
|
4755
4720
|
ExpandLess,
|
|
4756
4721
|
{
|
|
4757
4722
|
"data-testid": "svg-close-collapse",
|
|
4758
4723
|
onClick: (e) => handleCollapse(e, app.routeName)
|
|
4759
4724
|
}
|
|
4760
|
-
) : /* @__PURE__ */
|
|
4725
|
+
) : /* @__PURE__ */ jsx84(
|
|
4761
4726
|
ExpandMore,
|
|
4762
4727
|
{
|
|
4763
4728
|
"data-testid": "svg-open-collapse",
|
|
@@ -4768,7 +4733,7 @@ var LeftDrawer = ({
|
|
|
4768
4733
|
},
|
|
4769
4734
|
app.name
|
|
4770
4735
|
),
|
|
4771
|
-
app.children?.length > 0 && /* @__PURE__ */
|
|
4736
|
+
app.children?.length > 0 && /* @__PURE__ */ jsx84(Collapse, { in: openCollapse[app.routeName], children: /* @__PURE__ */ jsx84(List, { children: app.children.map((child) => /* @__PURE__ */ jsxs51(
|
|
4772
4737
|
ListItemButton,
|
|
4773
4738
|
{
|
|
4774
4739
|
className: classes.nested,
|
|
@@ -4776,8 +4741,8 @@ var LeftDrawer = ({
|
|
|
4776
4741
|
onClick: () => window.location.assign(child.url),
|
|
4777
4742
|
title: child.url,
|
|
4778
4743
|
children: [
|
|
4779
|
-
/* @__PURE__ */
|
|
4780
|
-
/* @__PURE__ */
|
|
4744
|
+
/* @__PURE__ */ jsx84(ListItemIcon, { children: /* @__PURE__ */ jsx84(FiberManualRecord, { style: { height: 12 } }) }),
|
|
4745
|
+
/* @__PURE__ */ jsx84(
|
|
4781
4746
|
ListItemText3,
|
|
4782
4747
|
{
|
|
4783
4748
|
primary: child.name,
|
|
@@ -4801,20 +4766,20 @@ var LeftDrawer_default = memo14(LeftDrawer);
|
|
|
4801
4766
|
// src/components/List/List.tsx
|
|
4802
4767
|
import { FixedSizeList } from "react-window";
|
|
4803
4768
|
import { ListItem as ListItem2, ListItemText as ListItemText4 } from "@mui/material";
|
|
4804
|
-
import { Fragment as Fragment7, jsx as
|
|
4769
|
+
import { Fragment as Fragment7, jsx as jsx85, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
4805
4770
|
var ListHeader = (props) => {
|
|
4806
4771
|
const headers = props.headers || [];
|
|
4807
|
-
return /* @__PURE__ */
|
|
4772
|
+
return /* @__PURE__ */ jsx85(ListItem2, { children: headers.map((header, i) => (
|
|
4808
4773
|
// eslint-disable-next-line react/no-array-index-key
|
|
4809
|
-
/* @__PURE__ */
|
|
4774
|
+
/* @__PURE__ */ jsx85(ListItemText4, { primary: header.text }, i)
|
|
4810
4775
|
)) });
|
|
4811
4776
|
};
|
|
4812
4777
|
function VirtualizedList(props) {
|
|
4813
4778
|
const { innerWidth, innerHeight } = window;
|
|
4814
4779
|
const { headers, items, renderItem } = props;
|
|
4815
4780
|
return /* @__PURE__ */ jsxs52(Fragment7, { children: [
|
|
4816
|
-
/* @__PURE__ */
|
|
4817
|
-
/* @__PURE__ */
|
|
4781
|
+
/* @__PURE__ */ jsx85(ListHeader, { headers }),
|
|
4782
|
+
/* @__PURE__ */ jsx85(
|
|
4818
4783
|
FixedSizeList,
|
|
4819
4784
|
{
|
|
4820
4785
|
height: innerHeight - 150,
|
|
@@ -4834,7 +4799,7 @@ import { Box as Box18, Chip, Typography as Typography14 } from "@mui/material";
|
|
|
4834
4799
|
import { purple } from "@mui/material/colors";
|
|
4835
4800
|
import classNames2 from "classnames";
|
|
4836
4801
|
import { makeStyles as makeStyles28 } from "tss-react/mui";
|
|
4837
|
-
import { jsx as
|
|
4802
|
+
import { jsx as jsx86, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
4838
4803
|
var useStyles28 = makeStyles28()(() => ({
|
|
4839
4804
|
container: {
|
|
4840
4805
|
display: "flex",
|
|
@@ -4881,7 +4846,7 @@ var LocationsSectionInfo = ({
|
|
|
4881
4846
|
return "STOCK";
|
|
4882
4847
|
};
|
|
4883
4848
|
return /* @__PURE__ */ jsxs53(Box18, { className: classes.container, children: [
|
|
4884
|
-
/* @__PURE__ */
|
|
4849
|
+
/* @__PURE__ */ jsx86(
|
|
4885
4850
|
Chip,
|
|
4886
4851
|
{
|
|
4887
4852
|
className: classNames2(classes.defaultChip, {
|
|
@@ -4892,10 +4857,10 @@ var LocationsSectionInfo = ({
|
|
|
4892
4857
|
label: getLocationLabel()
|
|
4893
4858
|
}
|
|
4894
4859
|
),
|
|
4895
|
-
/* @__PURE__ */
|
|
4860
|
+
/* @__PURE__ */ jsx86(Typography14, { className: classes.locationText, color: "primary", children: principalLocation }),
|
|
4896
4861
|
secondaryLocation?.map((loc) => /* @__PURE__ */ jsxs53(Fragment8, { children: [
|
|
4897
|
-
/* @__PURE__ */
|
|
4898
|
-
/* @__PURE__ */
|
|
4862
|
+
/* @__PURE__ */ jsx86(Typography14, { className: classes.smallTitle, children: "/" }),
|
|
4863
|
+
/* @__PURE__ */ jsx86(Typography14, { className: classes.locationText, children: loc })
|
|
4899
4864
|
] }, loc))
|
|
4900
4865
|
] });
|
|
4901
4866
|
};
|
|
@@ -4905,7 +4870,7 @@ var LocationsSectionInfo_default = LocationsSectionInfo;
|
|
|
4905
4870
|
import { useEffect as useEffect2, useState as useState6 } from "react";
|
|
4906
4871
|
import { FormControl as FormControl3, Input, InputAdornment as InputAdornment2, InputLabel as InputLabel3 } from "@mui/material";
|
|
4907
4872
|
import { makeStyles as makeStyles29 } from "tss-react/mui";
|
|
4908
|
-
import { jsx as
|
|
4873
|
+
import { jsx as jsx87, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
4909
4874
|
var useStyles29 = makeStyles29()((theme) => ({
|
|
4910
4875
|
wrapper: {
|
|
4911
4876
|
padding: theme.spacing(3),
|
|
@@ -4948,13 +4913,13 @@ var Notes2 = ({
|
|
|
4948
4913
|
}
|
|
4949
4914
|
};
|
|
4950
4915
|
const { classes } = useStyles29();
|
|
4951
|
-
return /* @__PURE__ */
|
|
4952
|
-
/* @__PURE__ */
|
|
4953
|
-
/* @__PURE__ */
|
|
4916
|
+
return /* @__PURE__ */ jsx87("div", { className: classes.wrapper, children: /* @__PURE__ */ jsxs54(FormControl3, { fullWidth: true, children: [
|
|
4917
|
+
/* @__PURE__ */ jsx87(InputLabel3, { htmlFor: "notes", children: "Notes" }),
|
|
4918
|
+
/* @__PURE__ */ jsx87(
|
|
4954
4919
|
Input,
|
|
4955
4920
|
{
|
|
4956
4921
|
disabled: isDisabled || isLoading,
|
|
4957
|
-
endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */
|
|
4922
|
+
endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */ jsx87(InputAdornment2, { position: "end", children: /* @__PURE__ */ jsx87(
|
|
4958
4923
|
RoundButton_default,
|
|
4959
4924
|
{
|
|
4960
4925
|
disabled: isLoading,
|
|
@@ -4980,7 +4945,7 @@ var Notes2 = ({
|
|
|
4980
4945
|
var Notes_default = Notes2;
|
|
4981
4946
|
|
|
4982
4947
|
// src/components/Numpad/Numpad.tsx
|
|
4983
|
-
import { jsx as
|
|
4948
|
+
import { jsx as jsx88, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
4984
4949
|
var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
4985
4950
|
"div",
|
|
4986
4951
|
{
|
|
@@ -4995,7 +4960,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
4995
4960
|
children: [
|
|
4996
4961
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
4997
4962
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
4998
|
-
/* @__PURE__ */
|
|
4963
|
+
/* @__PURE__ */ jsx88(
|
|
4999
4964
|
RoundButton_default,
|
|
5000
4965
|
{
|
|
5001
4966
|
onClick: () => handleClick("1"),
|
|
@@ -5004,7 +4969,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5004
4969
|
children: "1"
|
|
5005
4970
|
}
|
|
5006
4971
|
),
|
|
5007
|
-
/* @__PURE__ */
|
|
4972
|
+
/* @__PURE__ */ jsx88(
|
|
5008
4973
|
RoundButton_default,
|
|
5009
4974
|
{
|
|
5010
4975
|
onClick: () => handleClick("2"),
|
|
@@ -5013,7 +4978,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5013
4978
|
children: "2"
|
|
5014
4979
|
}
|
|
5015
4980
|
),
|
|
5016
|
-
/* @__PURE__ */
|
|
4981
|
+
/* @__PURE__ */ jsx88(
|
|
5017
4982
|
RoundButton_default,
|
|
5018
4983
|
{
|
|
5019
4984
|
onClick: () => handleClick("3"),
|
|
@@ -5024,7 +4989,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5024
4989
|
)
|
|
5025
4990
|
] }),
|
|
5026
4991
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5027
|
-
/* @__PURE__ */
|
|
4992
|
+
/* @__PURE__ */ jsx88(
|
|
5028
4993
|
RoundButton_default,
|
|
5029
4994
|
{
|
|
5030
4995
|
onClick: () => handleClick("4"),
|
|
@@ -5033,7 +4998,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5033
4998
|
children: "4"
|
|
5034
4999
|
}
|
|
5035
5000
|
),
|
|
5036
|
-
/* @__PURE__ */
|
|
5001
|
+
/* @__PURE__ */ jsx88(
|
|
5037
5002
|
RoundButton_default,
|
|
5038
5003
|
{
|
|
5039
5004
|
onClick: () => handleClick("5"),
|
|
@@ -5042,7 +5007,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5042
5007
|
children: "5"
|
|
5043
5008
|
}
|
|
5044
5009
|
),
|
|
5045
|
-
/* @__PURE__ */
|
|
5010
|
+
/* @__PURE__ */ jsx88(
|
|
5046
5011
|
RoundButton_default,
|
|
5047
5012
|
{
|
|
5048
5013
|
onClick: () => handleClick("6"),
|
|
@@ -5053,7 +5018,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5053
5018
|
)
|
|
5054
5019
|
] }),
|
|
5055
5020
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5056
|
-
/* @__PURE__ */
|
|
5021
|
+
/* @__PURE__ */ jsx88(
|
|
5057
5022
|
RoundButton_default,
|
|
5058
5023
|
{
|
|
5059
5024
|
onClick: () => handleClick("7"),
|
|
@@ -5062,7 +5027,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5062
5027
|
children: "7"
|
|
5063
5028
|
}
|
|
5064
5029
|
),
|
|
5065
|
-
/* @__PURE__ */
|
|
5030
|
+
/* @__PURE__ */ jsx88(
|
|
5066
5031
|
RoundButton_default,
|
|
5067
5032
|
{
|
|
5068
5033
|
onClick: () => handleClick("8"),
|
|
@@ -5071,7 +5036,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5071
5036
|
children: "8"
|
|
5072
5037
|
}
|
|
5073
5038
|
),
|
|
5074
|
-
/* @__PURE__ */
|
|
5039
|
+
/* @__PURE__ */ jsx88(
|
|
5075
5040
|
RoundButton_default,
|
|
5076
5041
|
{
|
|
5077
5042
|
onClick: () => handleClick("9"),
|
|
@@ -5082,7 +5047,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5082
5047
|
)
|
|
5083
5048
|
] }),
|
|
5084
5049
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5085
|
-
/* @__PURE__ */
|
|
5050
|
+
/* @__PURE__ */ jsx88(
|
|
5086
5051
|
RoundButton_default,
|
|
5087
5052
|
{
|
|
5088
5053
|
onClick: () => handleClick("0"),
|
|
@@ -5091,7 +5056,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5091
5056
|
children: "0"
|
|
5092
5057
|
}
|
|
5093
5058
|
),
|
|
5094
|
-
/* @__PURE__ */
|
|
5059
|
+
/* @__PURE__ */ jsx88(
|
|
5095
5060
|
RoundButton_default,
|
|
5096
5061
|
{
|
|
5097
5062
|
onClick: () => handleClick("."),
|
|
@@ -5102,7 +5067,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5102
5067
|
)
|
|
5103
5068
|
] })
|
|
5104
5069
|
] }),
|
|
5105
|
-
/* @__PURE__ */
|
|
5070
|
+
/* @__PURE__ */ jsx88(
|
|
5106
5071
|
"div",
|
|
5107
5072
|
{
|
|
5108
5073
|
style: {
|
|
@@ -5111,7 +5076,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5111
5076
|
justifyContent: "space-between",
|
|
5112
5077
|
borderLeft: `1px solid ${colors.neutral250}`
|
|
5113
5078
|
},
|
|
5114
|
-
children: /* @__PURE__ */
|
|
5079
|
+
children: /* @__PURE__ */ jsx88(
|
|
5115
5080
|
RoundButton_default,
|
|
5116
5081
|
{
|
|
5117
5082
|
icon: "backspaceOutlined",
|
|
@@ -5131,7 +5096,7 @@ var Numpad_default = Numpad;
|
|
|
5131
5096
|
import { memo as memo15, useState as useState7 } from "react";
|
|
5132
5097
|
import { TextField as TextField4, Typography as Typography15 } from "@mui/material";
|
|
5133
5098
|
import { makeStyles as makeStyles30 } from "tss-react/mui";
|
|
5134
|
-
import { jsx as
|
|
5099
|
+
import { jsx as jsx89, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
5135
5100
|
var useStyles30 = makeStyles30()(() => ({
|
|
5136
5101
|
c_numpadinput__textfield: {
|
|
5137
5102
|
"& .MuiInputLabel-outlined.MuiInputLabel-shrink": {
|
|
@@ -5169,12 +5134,12 @@ var NumpadInput = (props) => {
|
|
|
5169
5134
|
handleNextClick?.(state);
|
|
5170
5135
|
}
|
|
5171
5136
|
const DefaultInput = /* @__PURE__ */ jsxs56("div", { children: [
|
|
5172
|
-
/* @__PURE__ */
|
|
5173
|
-
/* @__PURE__ */
|
|
5137
|
+
/* @__PURE__ */ jsx89(Typography15, { variant: "h5", style: { padding: "16px 0 3rem" }, children: inputLabel }),
|
|
5138
|
+
/* @__PURE__ */ jsx89("form", { noValidate: true, autoComplete: "off", children: /* @__PURE__ */ jsx89(
|
|
5174
5139
|
TextField4,
|
|
5175
5140
|
{
|
|
5176
5141
|
id: "outlined-basic",
|
|
5177
|
-
label: /* @__PURE__ */
|
|
5142
|
+
label: /* @__PURE__ */ jsx89(Typography15, { style: { fontSize: "1.5rem" }, children: "Insert" }),
|
|
5178
5143
|
value: state,
|
|
5179
5144
|
variant: "outlined",
|
|
5180
5145
|
autoFocus: true,
|
|
@@ -5192,16 +5157,16 @@ var NumpadInput = (props) => {
|
|
|
5192
5157
|
return /* @__PURE__ */ jsxs56("div", { children: [
|
|
5193
5158
|
/* @__PURE__ */ jsxs56("div", { className: classes.c_numpadinput__body, children: [
|
|
5194
5159
|
children || DefaultInput,
|
|
5195
|
-
/* @__PURE__ */
|
|
5160
|
+
/* @__PURE__ */ jsx89(Numpad_default, { handleClick: handleNumpadClick, handleUndo })
|
|
5196
5161
|
] }),
|
|
5197
|
-
state ? /* @__PURE__ */
|
|
5162
|
+
state ? /* @__PURE__ */ jsx89(
|
|
5198
5163
|
FilledButtonLg_default,
|
|
5199
5164
|
{
|
|
5200
5165
|
color: "primary",
|
|
5201
5166
|
copy: "next",
|
|
5202
5167
|
handleClick: handleSubmit
|
|
5203
5168
|
}
|
|
5204
|
-
) : /* @__PURE__ */
|
|
5169
|
+
) : /* @__PURE__ */ jsx89(FilledButtonLg_default, { copy: "next", disabled: true })
|
|
5205
5170
|
] });
|
|
5206
5171
|
};
|
|
5207
5172
|
var NumpadInput_default = memo15(NumpadInput);
|
|
@@ -5209,7 +5174,7 @@ var NumpadInput_default = memo15(NumpadInput);
|
|
|
5209
5174
|
// src/components/NumpadPlus/NumpadPlus.tsx
|
|
5210
5175
|
import { Box as Box19 } from "@mui/material";
|
|
5211
5176
|
import { makeStyles as makeStyles31 } from "tss-react/mui";
|
|
5212
|
-
import { jsx as
|
|
5177
|
+
import { jsx as jsx90, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
5213
5178
|
var useStyles31 = makeStyles31()(() => ({
|
|
5214
5179
|
numpadContainer: {
|
|
5215
5180
|
display: "flex",
|
|
@@ -5244,7 +5209,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5244
5209
|
return /* @__PURE__ */ jsxs57(Box19, { className: styles.numpadContainer, children: [
|
|
5245
5210
|
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadNumbersContainer, children: [
|
|
5246
5211
|
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5247
|
-
/* @__PURE__ */
|
|
5212
|
+
/* @__PURE__ */ jsx90(
|
|
5248
5213
|
RoundButton_default,
|
|
5249
5214
|
{
|
|
5250
5215
|
onClick: () => handleClick("1"),
|
|
@@ -5253,7 +5218,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5253
5218
|
children: "1"
|
|
5254
5219
|
}
|
|
5255
5220
|
),
|
|
5256
|
-
/* @__PURE__ */
|
|
5221
|
+
/* @__PURE__ */ jsx90(
|
|
5257
5222
|
RoundButton_default,
|
|
5258
5223
|
{
|
|
5259
5224
|
onClick: () => handleClick("2"),
|
|
@@ -5262,7 +5227,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5262
5227
|
children: "2"
|
|
5263
5228
|
}
|
|
5264
5229
|
),
|
|
5265
|
-
/* @__PURE__ */
|
|
5230
|
+
/* @__PURE__ */ jsx90(
|
|
5266
5231
|
RoundButton_default,
|
|
5267
5232
|
{
|
|
5268
5233
|
onClick: () => handleClick("3"),
|
|
@@ -5273,7 +5238,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5273
5238
|
)
|
|
5274
5239
|
] }),
|
|
5275
5240
|
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5276
|
-
/* @__PURE__ */
|
|
5241
|
+
/* @__PURE__ */ jsx90(
|
|
5277
5242
|
RoundButton_default,
|
|
5278
5243
|
{
|
|
5279
5244
|
onClick: () => handleClick("4"),
|
|
@@ -5282,7 +5247,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5282
5247
|
children: "4"
|
|
5283
5248
|
}
|
|
5284
5249
|
),
|
|
5285
|
-
/* @__PURE__ */
|
|
5250
|
+
/* @__PURE__ */ jsx90(
|
|
5286
5251
|
RoundButton_default,
|
|
5287
5252
|
{
|
|
5288
5253
|
onClick: () => handleClick("5"),
|
|
@@ -5291,7 +5256,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5291
5256
|
children: "5"
|
|
5292
5257
|
}
|
|
5293
5258
|
),
|
|
5294
|
-
/* @__PURE__ */
|
|
5259
|
+
/* @__PURE__ */ jsx90(
|
|
5295
5260
|
RoundButton_default,
|
|
5296
5261
|
{
|
|
5297
5262
|
onClick: () => handleClick("6"),
|
|
@@ -5302,7 +5267,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5302
5267
|
)
|
|
5303
5268
|
] }),
|
|
5304
5269
|
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5305
|
-
/* @__PURE__ */
|
|
5270
|
+
/* @__PURE__ */ jsx90(
|
|
5306
5271
|
RoundButton_default,
|
|
5307
5272
|
{
|
|
5308
5273
|
onClick: () => handleClick("7"),
|
|
@@ -5311,7 +5276,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5311
5276
|
children: "7"
|
|
5312
5277
|
}
|
|
5313
5278
|
),
|
|
5314
|
-
/* @__PURE__ */
|
|
5279
|
+
/* @__PURE__ */ jsx90(
|
|
5315
5280
|
RoundButton_default,
|
|
5316
5281
|
{
|
|
5317
5282
|
onClick: () => handleClick("8"),
|
|
@@ -5320,7 +5285,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5320
5285
|
children: "8"
|
|
5321
5286
|
}
|
|
5322
5287
|
),
|
|
5323
|
-
/* @__PURE__ */
|
|
5288
|
+
/* @__PURE__ */ jsx90(
|
|
5324
5289
|
RoundButton_default,
|
|
5325
5290
|
{
|
|
5326
5291
|
onClick: () => handleClick("9"),
|
|
@@ -5331,7 +5296,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5331
5296
|
)
|
|
5332
5297
|
] }),
|
|
5333
5298
|
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5334
|
-
/* @__PURE__ */
|
|
5299
|
+
/* @__PURE__ */ jsx90(
|
|
5335
5300
|
RoundButton_default,
|
|
5336
5301
|
{
|
|
5337
5302
|
onClick: () => handleClick("0"),
|
|
@@ -5340,7 +5305,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5340
5305
|
children: "0"
|
|
5341
5306
|
}
|
|
5342
5307
|
),
|
|
5343
|
-
/* @__PURE__ */
|
|
5308
|
+
/* @__PURE__ */ jsx90(
|
|
5344
5309
|
RoundButton_default,
|
|
5345
5310
|
{
|
|
5346
5311
|
onClick: () => handleClick("."),
|
|
@@ -5349,7 +5314,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5349
5314
|
children: "."
|
|
5350
5315
|
}
|
|
5351
5316
|
),
|
|
5352
|
-
/* @__PURE__ */
|
|
5317
|
+
/* @__PURE__ */ jsx90(
|
|
5353
5318
|
RoundButton_default,
|
|
5354
5319
|
{
|
|
5355
5320
|
onClick: () => handleClick("-"),
|
|
@@ -5360,7 +5325,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5360
5325
|
)
|
|
5361
5326
|
] })
|
|
5362
5327
|
] }),
|
|
5363
|
-
/* @__PURE__ */
|
|
5328
|
+
/* @__PURE__ */ jsx90(Box19, { className: styles.numpadBackspace, children: /* @__PURE__ */ jsx90(
|
|
5364
5329
|
RoundButton_default,
|
|
5365
5330
|
{
|
|
5366
5331
|
icon: "backspaceOutlined",
|
|
@@ -5376,7 +5341,7 @@ var NumpadPlus_default = NumpadPlus;
|
|
|
5376
5341
|
// src/components/Pagination/Pagination.tsx
|
|
5377
5342
|
import { Pagination, Paper as Paper4, Typography as Typography16 } from "@mui/material";
|
|
5378
5343
|
import { makeStyles as makeStyles32 } from "tss-react/mui";
|
|
5379
|
-
import { jsx as
|
|
5344
|
+
import { jsx as jsx91, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
5380
5345
|
var paginationHeight = "56px";
|
|
5381
5346
|
var useStyles32 = makeStyles32()((theme) => ({
|
|
5382
5347
|
root: {
|
|
@@ -5419,7 +5384,7 @@ var PaginationForTable = ({
|
|
|
5419
5384
|
updateFilters({ ...appliedFilters, page: value });
|
|
5420
5385
|
};
|
|
5421
5386
|
const isFixed = position === "fixed";
|
|
5422
|
-
return /* @__PURE__ */
|
|
5387
|
+
return /* @__PURE__ */ jsx91(Paper4, { children: /* @__PURE__ */ jsxs58(
|
|
5423
5388
|
"div",
|
|
5424
5389
|
{
|
|
5425
5390
|
style,
|
|
@@ -5431,7 +5396,7 @@ var PaginationForTable = ({
|
|
|
5431
5396
|
"Page: ",
|
|
5432
5397
|
page
|
|
5433
5398
|
] }),
|
|
5434
|
-
/* @__PURE__ */
|
|
5399
|
+
/* @__PURE__ */ jsx91(
|
|
5435
5400
|
Pagination,
|
|
5436
5401
|
{
|
|
5437
5402
|
count: pagination.num_pages,
|
|
@@ -5448,8 +5413,8 @@ var Pagination_default = PaginationForTable;
|
|
|
5448
5413
|
// src/components/PhoneInput/PhoneInput.tsx
|
|
5449
5414
|
import ReactPhoneInput from "react-phone-input-material-ui";
|
|
5450
5415
|
import { Box as Box20, TextField as TextField5, Typography as Typography17 } from "@mui/material";
|
|
5451
|
-
import { jsx as
|
|
5452
|
-
var TextInput = (props) => /* @__PURE__ */
|
|
5416
|
+
import { jsx as jsx92, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
5417
|
+
var TextInput = (props) => /* @__PURE__ */ jsx92(TextField5, { ...props, variant: "standard" });
|
|
5453
5418
|
var PhoneInput = ({
|
|
5454
5419
|
value,
|
|
5455
5420
|
onChange,
|
|
@@ -5466,7 +5431,7 @@ var PhoneInput = ({
|
|
|
5466
5431
|
},
|
|
5467
5432
|
className,
|
|
5468
5433
|
children: [
|
|
5469
|
-
/* @__PURE__ */
|
|
5434
|
+
/* @__PURE__ */ jsx92(
|
|
5470
5435
|
ReactPhoneInput,
|
|
5471
5436
|
{
|
|
5472
5437
|
label,
|
|
@@ -5481,7 +5446,7 @@ var PhoneInput = ({
|
|
|
5481
5446
|
}
|
|
5482
5447
|
}
|
|
5483
5448
|
),
|
|
5484
|
-
/* @__PURE__ */
|
|
5449
|
+
/* @__PURE__ */ jsx92(
|
|
5485
5450
|
Typography17,
|
|
5486
5451
|
{
|
|
5487
5452
|
variant: "caption",
|
|
@@ -5510,7 +5475,7 @@ import {
|
|
|
5510
5475
|
Typography as Typography18
|
|
5511
5476
|
} from "@mui/material";
|
|
5512
5477
|
import { makeStyles as makeStyles33 } from "tss-react/mui";
|
|
5513
|
-
import { jsx as
|
|
5478
|
+
import { jsx as jsx93, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
5514
5479
|
var useStyles33 = makeStyles33()((theme) => ({
|
|
5515
5480
|
container: {
|
|
5516
5481
|
position: "relative",
|
|
@@ -5653,7 +5618,7 @@ var PlusMinusInput = ({
|
|
|
5653
5618
|
updateInputValue(value);
|
|
5654
5619
|
};
|
|
5655
5620
|
const { classes, cx } = useStyles33();
|
|
5656
|
-
return /* @__PURE__ */
|
|
5621
|
+
return /* @__PURE__ */ jsx93("div", { className: classes.container, children: /* @__PURE__ */ jsxs60(
|
|
5657
5622
|
FormGroup,
|
|
5658
5623
|
{
|
|
5659
5624
|
className: cx(classes.wrapper, {
|
|
@@ -5661,7 +5626,7 @@ var PlusMinusInput = ({
|
|
|
5661
5626
|
[classes.rightButtons]: buttonsPosition === "right"
|
|
5662
5627
|
}),
|
|
5663
5628
|
children: [
|
|
5664
|
-
/* @__PURE__ */
|
|
5629
|
+
/* @__PURE__ */ jsx93(
|
|
5665
5630
|
RoundButton_default,
|
|
5666
5631
|
{
|
|
5667
5632
|
className: classes.minus,
|
|
@@ -5672,17 +5637,17 @@ var PlusMinusInput = ({
|
|
|
5672
5637
|
}
|
|
5673
5638
|
),
|
|
5674
5639
|
/* @__PURE__ */ jsxs60("div", { children: [
|
|
5675
|
-
/* @__PURE__ */
|
|
5640
|
+
/* @__PURE__ */ jsx93(
|
|
5676
5641
|
Controller7,
|
|
5677
5642
|
{
|
|
5678
5643
|
control,
|
|
5679
5644
|
name: "inputValue",
|
|
5680
|
-
render: ({ field }) => /* @__PURE__ */
|
|
5645
|
+
render: ({ field }) => /* @__PURE__ */ jsx93(
|
|
5681
5646
|
FormControlLabel2,
|
|
5682
5647
|
{
|
|
5683
5648
|
...field,
|
|
5684
5649
|
className: classes.formControlLabel,
|
|
5685
|
-
control: /* @__PURE__ */
|
|
5650
|
+
control: /* @__PURE__ */ jsx93(
|
|
5686
5651
|
TextField6,
|
|
5687
5652
|
{
|
|
5688
5653
|
className: classes.input,
|
|
@@ -5699,7 +5664,7 @@ var PlusMinusInput = ({
|
|
|
5699
5664
|
)
|
|
5700
5665
|
}
|
|
5701
5666
|
),
|
|
5702
|
-
errors.inputValue && /* @__PURE__ */
|
|
5667
|
+
errors.inputValue && /* @__PURE__ */ jsx93(
|
|
5703
5668
|
Typography18,
|
|
5704
5669
|
{
|
|
5705
5670
|
className: classes.errorText,
|
|
@@ -5710,7 +5675,7 @@ var PlusMinusInput = ({
|
|
|
5710
5675
|
}
|
|
5711
5676
|
)
|
|
5712
5677
|
] }),
|
|
5713
|
-
/* @__PURE__ */
|
|
5678
|
+
/* @__PURE__ */ jsx93(
|
|
5714
5679
|
RoundButton_default,
|
|
5715
5680
|
{
|
|
5716
5681
|
className: classes.plus,
|
|
@@ -5734,21 +5699,21 @@ import { withStyles as withStyles4 } from "tss-react/mui";
|
|
|
5734
5699
|
// src/components/ProductImage/ProductImage.tsx
|
|
5735
5700
|
import { CardMedia } from "@mui/material";
|
|
5736
5701
|
import { withStyles as withStyles3 } from "tss-react/mui";
|
|
5737
|
-
import { jsx as
|
|
5702
|
+
import { jsx as jsx94, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
5738
5703
|
var PImage = ({
|
|
5739
5704
|
classes,
|
|
5740
5705
|
image,
|
|
5741
5706
|
size = "c_productbust__image_xs",
|
|
5742
5707
|
status
|
|
5743
5708
|
}) => /* @__PURE__ */ jsxs61("div", { className: classes.c_productbust__image, children: [
|
|
5744
|
-
/* @__PURE__ */
|
|
5709
|
+
/* @__PURE__ */ jsx94(
|
|
5745
5710
|
CardMedia,
|
|
5746
5711
|
{
|
|
5747
5712
|
className: classes[size],
|
|
5748
5713
|
image: image || "@/resources/img/peas.jpg"
|
|
5749
5714
|
}
|
|
5750
5715
|
),
|
|
5751
|
-
status && status !== "ACTIVE" && /* @__PURE__ */
|
|
5716
|
+
status && status !== "ACTIVE" && /* @__PURE__ */ jsx94("div", { className: classes.c_productbust__label_status, children: status })
|
|
5752
5717
|
] });
|
|
5753
5718
|
var ProductImage = withStyles3(PImage, (theme) => ({
|
|
5754
5719
|
c_productbust__label_status: {
|
|
@@ -5830,7 +5795,7 @@ var ProductImage = withStyles3(PImage, (theme) => ({
|
|
|
5830
5795
|
var ProductImage_default = ProductImage;
|
|
5831
5796
|
|
|
5832
5797
|
// src/components/ProductBust/ProductBust.tsx
|
|
5833
|
-
import { Fragment as Fragment9, jsx as
|
|
5798
|
+
import { Fragment as Fragment9, jsx as jsx95, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
5834
5799
|
var PBust = ({
|
|
5835
5800
|
classes,
|
|
5836
5801
|
size,
|
|
@@ -5873,7 +5838,7 @@ var PBust = ({
|
|
|
5873
5838
|
break;
|
|
5874
5839
|
}
|
|
5875
5840
|
const [historyVisible, setHistoryVisible] = useState8(false);
|
|
5876
|
-
const historyDataIcon = () => /* @__PURE__ */
|
|
5841
|
+
const historyDataIcon = () => /* @__PURE__ */ jsx95(
|
|
5877
5842
|
RoundButton_default,
|
|
5878
5843
|
{
|
|
5879
5844
|
icon: "history",
|
|
@@ -5882,7 +5847,7 @@ var PBust = ({
|
|
|
5882
5847
|
}
|
|
5883
5848
|
);
|
|
5884
5849
|
return /* @__PURE__ */ jsxs62("div", { className: classes.c_productbust, children: [
|
|
5885
|
-
/* @__PURE__ */
|
|
5850
|
+
/* @__PURE__ */ jsx95(
|
|
5886
5851
|
ProductImage_default,
|
|
5887
5852
|
{
|
|
5888
5853
|
image: product?.image,
|
|
@@ -5893,7 +5858,7 @@ var PBust = ({
|
|
|
5893
5858
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__container, children: [
|
|
5894
5859
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__heading, children: [
|
|
5895
5860
|
/* @__PURE__ */ jsxs62("div", { children: [
|
|
5896
|
-
/* @__PURE__ */
|
|
5861
|
+
/* @__PURE__ */ jsx95(
|
|
5897
5862
|
Typography19,
|
|
5898
5863
|
{
|
|
5899
5864
|
component: "span",
|
|
@@ -5902,10 +5867,10 @@ var PBust = ({
|
|
|
5902
5867
|
children: !!locationData && locationData
|
|
5903
5868
|
}
|
|
5904
5869
|
),
|
|
5905
|
-
/* @__PURE__ */
|
|
5906
|
-
!product && /* @__PURE__ */
|
|
5870
|
+
/* @__PURE__ */ jsx95(Typography19, { component: "span", className: classes[titleSize], children: product?.name }),
|
|
5871
|
+
!product && /* @__PURE__ */ jsx95(Typography19, { component: "span", className: classes[titleSize], children: "Empty Position" }),
|
|
5907
5872
|
primaryData || /* @__PURE__ */ jsxs62(Fragment9, { children: [
|
|
5908
|
-
/* @__PURE__ */
|
|
5873
|
+
/* @__PURE__ */ jsx95(
|
|
5909
5874
|
Typography19,
|
|
5910
5875
|
{
|
|
5911
5876
|
style: { color: "#555" },
|
|
@@ -5913,7 +5878,7 @@ var PBust = ({
|
|
|
5913
5878
|
children: product?.category.name
|
|
5914
5879
|
}
|
|
5915
5880
|
),
|
|
5916
|
-
/* @__PURE__ */
|
|
5881
|
+
/* @__PURE__ */ jsx95(
|
|
5917
5882
|
Typography19,
|
|
5918
5883
|
{
|
|
5919
5884
|
style: { color: "#A42966", textTransform: "uppercase" },
|
|
@@ -5924,13 +5889,13 @@ var PBust = ({
|
|
|
5924
5889
|
] })
|
|
5925
5890
|
] }),
|
|
5926
5891
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__btns, children: [
|
|
5927
|
-
/* @__PURE__ */
|
|
5928
|
-
/* @__PURE__ */
|
|
5892
|
+
/* @__PURE__ */ jsx95("div", { children: buttonData }),
|
|
5893
|
+
/* @__PURE__ */ jsx95("div", { children: !!locationId && historyDataIcon() })
|
|
5929
5894
|
] })
|
|
5930
5895
|
] }),
|
|
5931
|
-
/* @__PURE__ */
|
|
5896
|
+
/* @__PURE__ */ jsx95("div", { children: !!secondaryData && secondaryData })
|
|
5932
5897
|
] }),
|
|
5933
|
-
/* @__PURE__ */
|
|
5898
|
+
/* @__PURE__ */ jsx95(
|
|
5934
5899
|
LocationHistoryDialog,
|
|
5935
5900
|
{
|
|
5936
5901
|
handleVisible: setHistoryVisible,
|
|
@@ -6034,7 +5999,7 @@ var ProductBust_default = ProductBust;
|
|
|
6034
5999
|
// src/components/RenderAvatar/RenderAvatar.tsx
|
|
6035
6000
|
import { Avatar as Avatar2, Badge, Box as Box21, Typography as Typography20 } from "@mui/material";
|
|
6036
6001
|
import { withStyles as withStyles5 } from "tss-react/mui";
|
|
6037
|
-
import { jsx as
|
|
6002
|
+
import { jsx as jsx96, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
6038
6003
|
var RenderAvatar = ({ active }) => {
|
|
6039
6004
|
const StyledBadge = withStyles5(Badge, () => ({
|
|
6040
6005
|
root: {
|
|
@@ -6048,7 +6013,7 @@ var RenderAvatar = ({ active }) => {
|
|
|
6048
6013
|
{
|
|
6049
6014
|
sx: { display: "flex", flexDirection: "column", alignItems: "center" },
|
|
6050
6015
|
children: [
|
|
6051
|
-
/* @__PURE__ */
|
|
6016
|
+
/* @__PURE__ */ jsx96(
|
|
6052
6017
|
StyledBadge,
|
|
6053
6018
|
{
|
|
6054
6019
|
overlap: "circular",
|
|
@@ -6057,10 +6022,10 @@ var RenderAvatar = ({ active }) => {
|
|
|
6057
6022
|
horizontal: "right"
|
|
6058
6023
|
},
|
|
6059
6024
|
variant: "dot",
|
|
6060
|
-
children: /* @__PURE__ */
|
|
6025
|
+
children: /* @__PURE__ */ jsx96(Avatar2, {})
|
|
6061
6026
|
}
|
|
6062
6027
|
),
|
|
6063
|
-
/* @__PURE__ */
|
|
6028
|
+
/* @__PURE__ */ jsx96(Typography20, { variant: "caption", children: active ? "Active" : "Disabled" })
|
|
6064
6029
|
]
|
|
6065
6030
|
}
|
|
6066
6031
|
);
|
|
@@ -6084,7 +6049,7 @@ import { useEffect as useEffect4, useState as useState9 } from "react";
|
|
|
6084
6049
|
var transformNameToID = (name) => name.replaceAll(" ", "-").toLocaleLowerCase();
|
|
6085
6050
|
|
|
6086
6051
|
// src/components/RenderContentList/RenderContentList.tsx
|
|
6087
|
-
import { jsx as
|
|
6052
|
+
import { jsx as jsx97, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
6088
6053
|
var useStyles34 = makeStyles34()(
|
|
6089
6054
|
(_theme, _params, classes) => ({
|
|
6090
6055
|
root: {
|
|
@@ -6139,12 +6104,12 @@ var RenderContentList = ({
|
|
|
6139
6104
|
observer.current?.disconnect();
|
|
6140
6105
|
};
|
|
6141
6106
|
}, [items]);
|
|
6142
|
-
return /* @__PURE__ */
|
|
6107
|
+
return /* @__PURE__ */ jsx97(
|
|
6143
6108
|
List2,
|
|
6144
6109
|
{
|
|
6145
6110
|
component: "nav",
|
|
6146
6111
|
"aria-labelledby": "nested-list-subheader",
|
|
6147
|
-
subheader: /* @__PURE__ */
|
|
6112
|
+
subheader: /* @__PURE__ */ jsx97(ListSubheader2, { component: "div", id: "nested-list-subheader", children: "Contents" }),
|
|
6148
6113
|
children: items.map((item) => {
|
|
6149
6114
|
const id = transformNameToID(item);
|
|
6150
6115
|
return /* @__PURE__ */ jsxs64(
|
|
@@ -6163,8 +6128,8 @@ var RenderContentList = ({
|
|
|
6163
6128
|
}
|
|
6164
6129
|
},
|
|
6165
6130
|
children: [
|
|
6166
|
-
/* @__PURE__ */
|
|
6167
|
-
warningItems?.includes(item) && /* @__PURE__ */
|
|
6131
|
+
/* @__PURE__ */ jsx97(ListItemText5, { primary: item }),
|
|
6132
|
+
warningItems?.includes(item) && /* @__PURE__ */ jsx97(Tooltip4, { title: warningMessage, children: /* @__PURE__ */ jsx97(WarningAmber, { color: "warning" }) })
|
|
6168
6133
|
]
|
|
6169
6134
|
},
|
|
6170
6135
|
id
|
|
@@ -6178,7 +6143,7 @@ var RenderContentList_default = RenderContentList;
|
|
|
6178
6143
|
// src/components/RowProductCard/RowProductCard.tsx
|
|
6179
6144
|
import { Box as Box22, Divider as Divider4, Paper as Paper5, Typography as Typography21 } from "@mui/material";
|
|
6180
6145
|
import { makeStyles as makeStyles35 } from "tss-react/mui";
|
|
6181
|
-
import { Fragment as Fragment10, jsx as
|
|
6146
|
+
import { Fragment as Fragment10, jsx as jsx98, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
6182
6147
|
var useStyles35 = makeStyles35()((theme) => ({
|
|
6183
6148
|
wrapper: {
|
|
6184
6149
|
display: "flex",
|
|
@@ -6218,7 +6183,7 @@ var RowProductCard = ({
|
|
|
6218
6183
|
large: "c_productbust__image_lg"
|
|
6219
6184
|
};
|
|
6220
6185
|
return /* @__PURE__ */ jsxs65(Paper5, { className: classes.wrapper, children: [
|
|
6221
|
-
/* @__PURE__ */
|
|
6186
|
+
/* @__PURE__ */ jsx98(
|
|
6222
6187
|
ProductImage_default,
|
|
6223
6188
|
{
|
|
6224
6189
|
image: product.image,
|
|
@@ -6244,16 +6209,16 @@ var RowProductCard = ({
|
|
|
6244
6209
|
},
|
|
6245
6210
|
children: [
|
|
6246
6211
|
/* @__PURE__ */ jsxs65("div", { children: [
|
|
6247
|
-
location ? /* @__PURE__ */
|
|
6248
|
-
/* @__PURE__ */
|
|
6212
|
+
location ? /* @__PURE__ */ jsx98(Typography21, { className: classes.smallTitle, variant: "caption", children: `Location: ${location}` }) : null,
|
|
6213
|
+
/* @__PURE__ */ jsx98(Typography21, { variant: "h6", children: product.name })
|
|
6249
6214
|
] }),
|
|
6250
6215
|
children
|
|
6251
6216
|
]
|
|
6252
6217
|
}
|
|
6253
6218
|
),
|
|
6254
6219
|
hasColumns ? /* @__PURE__ */ jsxs65(Fragment10, { children: [
|
|
6255
|
-
/* @__PURE__ */
|
|
6256
|
-
/* @__PURE__ */
|
|
6220
|
+
/* @__PURE__ */ jsx98(Divider4, { className: classes.divider }),
|
|
6221
|
+
/* @__PURE__ */ jsx98(
|
|
6257
6222
|
Box22,
|
|
6258
6223
|
{
|
|
6259
6224
|
sx: {
|
|
@@ -6261,8 +6226,8 @@ var RowProductCard = ({
|
|
|
6261
6226
|
gap: "24px"
|
|
6262
6227
|
},
|
|
6263
6228
|
children: columns.map((column) => /* @__PURE__ */ jsxs65("div", { children: [
|
|
6264
|
-
/* @__PURE__ */
|
|
6265
|
-
typeof column.value === "string" ? /* @__PURE__ */
|
|
6229
|
+
/* @__PURE__ */ jsx98(Typography21, { className: classes.smallTitle, variant: "caption", children: column.title }),
|
|
6230
|
+
typeof column.value === "string" ? /* @__PURE__ */ jsx98(Typography21, { variant: "body1", children: column.value }) : column.value
|
|
6266
6231
|
] }, column.title))
|
|
6267
6232
|
}
|
|
6268
6233
|
)
|
|
@@ -6278,7 +6243,7 @@ var RowProductCard_default = RowProductCard;
|
|
|
6278
6243
|
import { useEffect as useEffect6, useState as useState11 } from "react";
|
|
6279
6244
|
import { Box as Box23, Dialog as Dialog4, Divider as Divider5, Fade, Paper as Paper6, Typography as Typography22 } from "@mui/material";
|
|
6280
6245
|
import { makeStyles as makeStyles36 } from "tss-react/mui";
|
|
6281
|
-
import { jsx as
|
|
6246
|
+
import { jsx as jsx99, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
6282
6247
|
var useStyles36 = makeStyles36()((theme) => ({
|
|
6283
6248
|
dialog: {
|
|
6284
6249
|
margin: "0 auto",
|
|
@@ -6371,10 +6336,10 @@ var ScrollableDialog = ({
|
|
|
6371
6336
|
setDialogBodyMaxHeight();
|
|
6372
6337
|
}
|
|
6373
6338
|
}, [isOpen, maxDialogHeight, header]);
|
|
6374
|
-
return /* @__PURE__ */
|
|
6375
|
-
header ? /* @__PURE__ */
|
|
6339
|
+
return /* @__PURE__ */ jsx99(Dialog4, { className: classes.dialog, fullWidth: true, maxWidth: false, open: isOpen, children: /* @__PURE__ */ jsx99(Fade, { in: isOpen, children: /* @__PURE__ */ jsxs66(Paper6, { className: classes.wrapper, children: [
|
|
6340
|
+
header ? /* @__PURE__ */ jsx99("div", { className: classes.header, id: "dialog-header", children: header }) : null,
|
|
6376
6341
|
/* @__PURE__ */ jsxs66("div", { className: classes.body, children: [
|
|
6377
|
-
/* @__PURE__ */
|
|
6342
|
+
/* @__PURE__ */ jsx99(
|
|
6378
6343
|
Typography22,
|
|
6379
6344
|
{
|
|
6380
6345
|
className: classes.title,
|
|
@@ -6383,7 +6348,7 @@ var ScrollableDialog = ({
|
|
|
6383
6348
|
children: title
|
|
6384
6349
|
}
|
|
6385
6350
|
),
|
|
6386
|
-
/* @__PURE__ */
|
|
6351
|
+
/* @__PURE__ */ jsx99(
|
|
6387
6352
|
"div",
|
|
6388
6353
|
{
|
|
6389
6354
|
className: cx(classes.scrollableContainer, {
|
|
@@ -6397,8 +6362,8 @@ var ScrollableDialog = ({
|
|
|
6397
6362
|
}
|
|
6398
6363
|
)
|
|
6399
6364
|
] }),
|
|
6400
|
-
/* @__PURE__ */
|
|
6401
|
-
footer ? /* @__PURE__ */
|
|
6365
|
+
/* @__PURE__ */ jsx99(Divider5, {}),
|
|
6366
|
+
footer ? /* @__PURE__ */ jsx99(
|
|
6402
6367
|
Box23,
|
|
6403
6368
|
{
|
|
6404
6369
|
className: classes.footer,
|
|
@@ -6428,7 +6393,7 @@ import {
|
|
|
6428
6393
|
} from "@mui/icons-material";
|
|
6429
6394
|
import { Button as Button11, Divider as Divider6, InputBase, Paper as Paper7 } from "@mui/material";
|
|
6430
6395
|
import { makeStyles as makeStyles37 } from "tss-react/mui";
|
|
6431
|
-
import { jsx as
|
|
6396
|
+
import { jsx as jsx100, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
6432
6397
|
var useStyles37 = makeStyles37()((theme) => ({
|
|
6433
6398
|
searchContainer: {
|
|
6434
6399
|
height: 46,
|
|
@@ -6489,8 +6454,8 @@ var SearchWithFilters = ({
|
|
|
6489
6454
|
setSearchText(searchValue);
|
|
6490
6455
|
}, [searchValue]);
|
|
6491
6456
|
return /* @__PURE__ */ jsxs67(Paper7, { className: classes.searchContainer, children: [
|
|
6492
|
-
/* @__PURE__ */
|
|
6493
|
-
/* @__PURE__ */
|
|
6457
|
+
/* @__PURE__ */ jsx100(SearchIcon, { className: classes.icon, fontSize: "small" }),
|
|
6458
|
+
/* @__PURE__ */ jsx100(
|
|
6494
6459
|
InputBase,
|
|
6495
6460
|
{
|
|
6496
6461
|
className: classes.input,
|
|
@@ -6502,7 +6467,7 @@ var SearchWithFilters = ({
|
|
|
6502
6467
|
inputProps: { "aria-label": "search" }
|
|
6503
6468
|
}
|
|
6504
6469
|
),
|
|
6505
|
-
/* @__PURE__ */
|
|
6470
|
+
/* @__PURE__ */ jsx100(Divider6, { className: classes.divider, orientation: "vertical" }),
|
|
6506
6471
|
/* @__PURE__ */ jsxs67(
|
|
6507
6472
|
Button11,
|
|
6508
6473
|
{
|
|
@@ -6511,7 +6476,7 @@ var SearchWithFilters = ({
|
|
|
6511
6476
|
disabled,
|
|
6512
6477
|
children: [
|
|
6513
6478
|
"Filters",
|
|
6514
|
-
showFilters ? /* @__PURE__ */
|
|
6479
|
+
showFilters ? /* @__PURE__ */ jsx100(ArrowDropUpIcon, {}) : /* @__PURE__ */ jsx100(ArrowDropDownIcon, {})
|
|
6515
6480
|
]
|
|
6516
6481
|
}
|
|
6517
6482
|
)
|
|
@@ -6520,7 +6485,7 @@ var SearchWithFilters = ({
|
|
|
6520
6485
|
var SearchWithFilters_default = React2.memo(SearchWithFilters);
|
|
6521
6486
|
|
|
6522
6487
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeader.tsx
|
|
6523
|
-
import { jsx as
|
|
6488
|
+
import { jsx as jsx101, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
6524
6489
|
var useStyles38 = makeStyles38()((theme) => ({
|
|
6525
6490
|
wrapper: {
|
|
6526
6491
|
display: "flex",
|
|
@@ -6556,11 +6521,11 @@ var SearchAndFilterHeader = ({
|
|
|
6556
6521
|
searchValue
|
|
6557
6522
|
}) => {
|
|
6558
6523
|
const { classes } = useStyles38();
|
|
6559
|
-
return /* @__PURE__ */
|
|
6524
|
+
return /* @__PURE__ */ jsx101(Paper8, { children: /* @__PURE__ */ jsxs68(Box24, { className: classes.wrapper, children: [
|
|
6560
6525
|
/* @__PURE__ */ jsxs68(Box24, { className: classes.container, children: [
|
|
6561
6526
|
/* @__PURE__ */ jsxs68(Box24, { className: classes.leftSection, children: [
|
|
6562
|
-
/* @__PURE__ */
|
|
6563
|
-
/* @__PURE__ */
|
|
6527
|
+
/* @__PURE__ */ jsx101(AppLabel_default, { appName }),
|
|
6528
|
+
/* @__PURE__ */ jsx101(
|
|
6564
6529
|
SearchWithFilters_default,
|
|
6565
6530
|
{
|
|
6566
6531
|
searchValue,
|
|
@@ -6571,9 +6536,9 @@ var SearchAndFilterHeader = ({
|
|
|
6571
6536
|
}
|
|
6572
6537
|
)
|
|
6573
6538
|
] }),
|
|
6574
|
-
/* @__PURE__ */
|
|
6539
|
+
/* @__PURE__ */ jsx101(Box24, { children: extraButton })
|
|
6575
6540
|
] }),
|
|
6576
|
-
showFilters ? /* @__PURE__ */
|
|
6541
|
+
showFilters ? /* @__PURE__ */ jsx101(Box24, { children: filtersComponent }) : null,
|
|
6577
6542
|
appliedFiltersComponent
|
|
6578
6543
|
] }) });
|
|
6579
6544
|
};
|
|
@@ -6593,7 +6558,7 @@ import {
|
|
|
6593
6558
|
} from "@mui/icons-material";
|
|
6594
6559
|
import { Box as Box25, Button as Button12, Divider as Divider7, InputBase as InputBase2, Paper as Paper9 } from "@mui/material";
|
|
6595
6560
|
import { makeStyles as makeStyles39 } from "tss-react/mui";
|
|
6596
|
-
import { Fragment as Fragment11, jsx as
|
|
6561
|
+
import { Fragment as Fragment11, jsx as jsx102, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
6597
6562
|
var useStyles39 = makeStyles39()((theme) => ({
|
|
6598
6563
|
c_search: {
|
|
6599
6564
|
height: 46,
|
|
@@ -6669,8 +6634,8 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6669
6634
|
};
|
|
6670
6635
|
const ArrowIcon = isOpen ? ArrowDropUpIcon2 : ArrowDropDownIcon2;
|
|
6671
6636
|
return /* @__PURE__ */ jsxs69(Paper9, { className: classes.c_search, children: [
|
|
6672
|
-
/* @__PURE__ */
|
|
6673
|
-
/* @__PURE__ */
|
|
6637
|
+
/* @__PURE__ */ jsx102(Box25, { className: classes.c_search__icon, children: /* @__PURE__ */ jsx102(SearchIcon2, { className: classes.icon, fontSize: "small" }) }),
|
|
6638
|
+
/* @__PURE__ */ jsx102(
|
|
6674
6639
|
InputBase2,
|
|
6675
6640
|
{
|
|
6676
6641
|
className: classes.c_search__input,
|
|
@@ -6681,7 +6646,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6681
6646
|
}
|
|
6682
6647
|
),
|
|
6683
6648
|
showFilterButton && /* @__PURE__ */ jsxs69(Fragment11, { children: [
|
|
6684
|
-
/* @__PURE__ */
|
|
6649
|
+
/* @__PURE__ */ jsx102(
|
|
6685
6650
|
Divider7,
|
|
6686
6651
|
{
|
|
6687
6652
|
className: classes.c_search__divider,
|
|
@@ -6695,7 +6660,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6695
6660
|
onClick: handleFilterButtonClick,
|
|
6696
6661
|
children: [
|
|
6697
6662
|
"Filters",
|
|
6698
|
-
/* @__PURE__ */
|
|
6663
|
+
/* @__PURE__ */ jsx102(ArrowIcon, { className: classes.c_search__bt_icon_filter })
|
|
6699
6664
|
]
|
|
6700
6665
|
}
|
|
6701
6666
|
)
|
|
@@ -6705,7 +6670,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6705
6670
|
var SearchWithFiltersForTable_default = memo17(SearchWithFiltersForTable);
|
|
6706
6671
|
|
|
6707
6672
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeaderForTable.tsx
|
|
6708
|
-
import { jsx as
|
|
6673
|
+
import { jsx as jsx103, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
6709
6674
|
var useStyles40 = makeStyles40()((theme) => ({
|
|
6710
6675
|
container: {
|
|
6711
6676
|
display: "flex",
|
|
@@ -6739,8 +6704,8 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
6739
6704
|
const { classes } = useStyles40();
|
|
6740
6705
|
return /* @__PURE__ */ jsxs70(Box26, { className: classes.container, children: [
|
|
6741
6706
|
/* @__PURE__ */ jsxs70(Box26, { className: classes.leftSection, children: [
|
|
6742
|
-
/* @__PURE__ */
|
|
6743
|
-
/* @__PURE__ */
|
|
6707
|
+
/* @__PURE__ */ jsx103(AppLabel_default, { appName }),
|
|
6708
|
+
/* @__PURE__ */ jsx103(
|
|
6744
6709
|
SearchWithFiltersForTable_default,
|
|
6745
6710
|
{
|
|
6746
6711
|
onFilterButtonClick,
|
|
@@ -6751,17 +6716,17 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
6751
6716
|
searchedValue
|
|
6752
6717
|
}
|
|
6753
6718
|
),
|
|
6754
|
-
copy && /* @__PURE__ */
|
|
6719
|
+
copy && /* @__PURE__ */ jsx103(
|
|
6755
6720
|
Box26,
|
|
6756
6721
|
{
|
|
6757
6722
|
sx: {
|
|
6758
6723
|
margin: 0.5
|
|
6759
6724
|
},
|
|
6760
|
-
children: /* @__PURE__ */
|
|
6725
|
+
children: /* @__PURE__ */ jsx103(OutlinedButton_default, { copy })
|
|
6761
6726
|
}
|
|
6762
6727
|
)
|
|
6763
6728
|
] }),
|
|
6764
|
-
/* @__PURE__ */
|
|
6729
|
+
/* @__PURE__ */ jsx103(Box26, { children: button })
|
|
6765
6730
|
] });
|
|
6766
6731
|
};
|
|
6767
6732
|
var SearchAndFilterHeaderForTable_default = React3.memo(SearchAndFilterHeaderForTable);
|
|
@@ -6770,7 +6735,7 @@ var SearchAndFilterHeaderForTable_default = React3.memo(SearchAndFilterHeaderFor
|
|
|
6770
6735
|
import { History as History2, Info as InfoIcon } from "@mui/icons-material";
|
|
6771
6736
|
import { Box as Box27, Divider as Divider8, IconButton as IconButton2, Tooltip as Tooltip5, Typography as Typography23 } from "@mui/material";
|
|
6772
6737
|
import { makeStyles as makeStyles41 } from "tss-react/mui";
|
|
6773
|
-
import { jsx as
|
|
6738
|
+
import { jsx as jsx104, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
6774
6739
|
var useStyles41 = makeStyles41()((theme) => ({
|
|
6775
6740
|
container: {
|
|
6776
6741
|
display: "flex",
|
|
@@ -6815,7 +6780,7 @@ var SectionName = ({
|
|
|
6815
6780
|
const { classes } = useStyles41();
|
|
6816
6781
|
return /* @__PURE__ */ jsxs71(Box27, { className: classes.container, children: [
|
|
6817
6782
|
/* @__PURE__ */ jsxs71(Box27, { className: classes.titleContainer, children: [
|
|
6818
|
-
/* @__PURE__ */
|
|
6783
|
+
/* @__PURE__ */ jsx104(
|
|
6819
6784
|
Typography23,
|
|
6820
6785
|
{
|
|
6821
6786
|
variant: "h5",
|
|
@@ -6825,7 +6790,7 @@ var SectionName = ({
|
|
|
6825
6790
|
children: name
|
|
6826
6791
|
}
|
|
6827
6792
|
),
|
|
6828
|
-
tooltipDescription ? /* @__PURE__ */
|
|
6793
|
+
tooltipDescription ? /* @__PURE__ */ jsx104(Tooltip5, { title: tooltipDescription, placement: "right", children: /* @__PURE__ */ jsx104(
|
|
6829
6794
|
InfoIcon,
|
|
6830
6795
|
{
|
|
6831
6796
|
fontSize: "small",
|
|
@@ -6835,7 +6800,7 @@ var SectionName = ({
|
|
|
6835
6800
|
) }) : null
|
|
6836
6801
|
] }),
|
|
6837
6802
|
/* @__PURE__ */ jsxs71(Box27, { className: classes.actionButtons, children: [
|
|
6838
|
-
buttonText ? /* @__PURE__ */
|
|
6803
|
+
buttonText ? /* @__PURE__ */ jsx104(
|
|
6839
6804
|
ExtendedButton_default,
|
|
6840
6805
|
{
|
|
6841
6806
|
type: buttonType,
|
|
@@ -6848,8 +6813,8 @@ var SectionName = ({
|
|
|
6848
6813
|
variant: "text"
|
|
6849
6814
|
}
|
|
6850
6815
|
) : null,
|
|
6851
|
-
openHistoryLog && buttonText && /* @__PURE__ */
|
|
6852
|
-
openHistoryLog && /* @__PURE__ */
|
|
6816
|
+
openHistoryLog && buttonText && /* @__PURE__ */ jsx104(Divider8, { orientation: "vertical", sx: { height: "24px" } }),
|
|
6817
|
+
openHistoryLog && /* @__PURE__ */ jsx104(IconButton2, { size: "small", onClick: () => openHistoryLog(), children: /* @__PURE__ */ jsx104(History2, {}) })
|
|
6853
6818
|
] })
|
|
6854
6819
|
] });
|
|
6855
6820
|
};
|
|
@@ -6866,7 +6831,7 @@ import {
|
|
|
6866
6831
|
Select as Select3
|
|
6867
6832
|
} from "@mui/material";
|
|
6868
6833
|
import { makeStyles as makeStyles42 } from "tss-react/mui";
|
|
6869
|
-
import { jsx as
|
|
6834
|
+
import { jsx as jsx105, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
6870
6835
|
var useStyles42 = makeStyles42()(() => ({
|
|
6871
6836
|
container: {
|
|
6872
6837
|
display: "flex",
|
|
@@ -6943,7 +6908,7 @@ var SmartSelect = forwardRef2(
|
|
|
6943
6908
|
"data-testid": dataTestId,
|
|
6944
6909
|
disabled,
|
|
6945
6910
|
children: [
|
|
6946
|
-
inputLabel && /* @__PURE__ */
|
|
6911
|
+
inputLabel && /* @__PURE__ */ jsx105(
|
|
6947
6912
|
InputLabel4,
|
|
6948
6913
|
{
|
|
6949
6914
|
id: "smart-select-label",
|
|
@@ -6968,17 +6933,17 @@ var SmartSelect = forwardRef2(
|
|
|
6968
6933
|
MenuProps: menuProps,
|
|
6969
6934
|
label: inputLabel,
|
|
6970
6935
|
children: [
|
|
6971
|
-
isFetching && /* @__PURE__ */
|
|
6936
|
+
isFetching && /* @__PURE__ */ jsx105(
|
|
6972
6937
|
MenuItem3,
|
|
6973
6938
|
{
|
|
6974
6939
|
disabled: true,
|
|
6975
6940
|
"data-testid": `${dataTestId}-loading`,
|
|
6976
6941
|
id: `${dataTestId}-loading`,
|
|
6977
|
-
children: /* @__PURE__ */
|
|
6942
|
+
children: /* @__PURE__ */ jsx105(CircularProgress4, { size: 24 })
|
|
6978
6943
|
}
|
|
6979
6944
|
),
|
|
6980
|
-
(defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */
|
|
6981
|
-
localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */
|
|
6945
|
+
(defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */ jsx105(MenuItem3, { disabled: true, "data-testid": `${dataTestId}-empty-message`, children: emptyMessage }),
|
|
6946
|
+
localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */ jsx105(
|
|
6982
6947
|
MenuItem3,
|
|
6983
6948
|
{
|
|
6984
6949
|
value: defaultOption?.value,
|
|
@@ -6986,7 +6951,7 @@ var SmartSelect = forwardRef2(
|
|
|
6986
6951
|
children: defaultOption?.label
|
|
6987
6952
|
}
|
|
6988
6953
|
),
|
|
6989
|
-
!isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */
|
|
6954
|
+
!isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */ jsx105(
|
|
6990
6955
|
MenuItem3,
|
|
6991
6956
|
{
|
|
6992
6957
|
value: option?.value,
|
|
@@ -6999,7 +6964,7 @@ var SmartSelect = forwardRef2(
|
|
|
6999
6964
|
]
|
|
7000
6965
|
}
|
|
7001
6966
|
),
|
|
7002
|
-
helperText && /* @__PURE__ */
|
|
6967
|
+
helperText && /* @__PURE__ */ jsx105(FormHelperText3, { "data-testid": `${dataTestId}-helper-text`, children: helperText })
|
|
7003
6968
|
]
|
|
7004
6969
|
}
|
|
7005
6970
|
);
|
|
@@ -7012,7 +6977,7 @@ import { memo as memo19 } from "react";
|
|
|
7012
6977
|
import { Typography as Typography24 } from "@mui/material";
|
|
7013
6978
|
import red2 from "@mui/material/colors/red";
|
|
7014
6979
|
import { makeStyles as makeStyles43 } from "tss-react/mui";
|
|
7015
|
-
import { jsx as
|
|
6980
|
+
import { jsx as jsx106 } from "react/jsx-runtime";
|
|
7016
6981
|
var useStyles43 = makeStyles43()((theme) => ({
|
|
7017
6982
|
red: {
|
|
7018
6983
|
backgroundColor: red2["50"],
|
|
@@ -7027,7 +6992,7 @@ var useStyles43 = makeStyles43()((theme) => ({
|
|
|
7027
6992
|
}));
|
|
7028
6993
|
var SquareLabel = ({ color, copy }) => {
|
|
7029
6994
|
const { classes } = useStyles43();
|
|
7030
|
-
return /* @__PURE__ */
|
|
6995
|
+
return /* @__PURE__ */ jsx106(Typography24, { className: classes[color], children: copy });
|
|
7031
6996
|
};
|
|
7032
6997
|
var SquareLabel_default = memo19(SquareLabel);
|
|
7033
6998
|
|
|
@@ -7035,7 +7000,7 @@ var SquareLabel_default = memo19(SquareLabel);
|
|
|
7035
7000
|
import { memo as memo20 } from "react";
|
|
7036
7001
|
import { Grid2, Switch } from "@mui/material";
|
|
7037
7002
|
import { withStyles as withStyles6 } from "tss-react/mui";
|
|
7038
|
-
import { jsx as
|
|
7003
|
+
import { jsx as jsx107, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
7039
7004
|
var LSwitch = ({
|
|
7040
7005
|
checked,
|
|
7041
7006
|
labelOn,
|
|
@@ -7043,7 +7008,7 @@ var LSwitch = ({
|
|
|
7043
7008
|
handleChange,
|
|
7044
7009
|
classes,
|
|
7045
7010
|
disabled
|
|
7046
|
-
}) => /* @__PURE__ */
|
|
7011
|
+
}) => /* @__PURE__ */ jsx107("div", { className: classes.c_switch, children: /* @__PURE__ */ jsxs73(
|
|
7047
7012
|
Grid2,
|
|
7048
7013
|
{
|
|
7049
7014
|
component: "label",
|
|
@@ -7053,8 +7018,8 @@ var LSwitch = ({
|
|
|
7053
7018
|
alignItems: "center"
|
|
7054
7019
|
},
|
|
7055
7020
|
children: [
|
|
7056
|
-
labelOff && /* @__PURE__ */
|
|
7057
|
-
/* @__PURE__ */
|
|
7021
|
+
labelOff && /* @__PURE__ */ jsx107(Grid2, { children: labelOff }),
|
|
7022
|
+
/* @__PURE__ */ jsx107(Grid2, { children: /* @__PURE__ */ jsx107(
|
|
7058
7023
|
Switch,
|
|
7059
7024
|
{
|
|
7060
7025
|
checked,
|
|
@@ -7063,7 +7028,7 @@ var LSwitch = ({
|
|
|
7063
7028
|
disabled
|
|
7064
7029
|
}
|
|
7065
7030
|
) }),
|
|
7066
|
-
labelOn && /* @__PURE__ */
|
|
7031
|
+
labelOn && /* @__PURE__ */ jsx107(Grid2, { children: labelOn })
|
|
7067
7032
|
]
|
|
7068
7033
|
}
|
|
7069
7034
|
) });
|
|
@@ -7088,36 +7053,39 @@ var LabelledSwitch = withStyles6(LSwitch, (theme) => ({
|
|
|
7088
7053
|
var Switch_default = memo20(LabelledSwitch);
|
|
7089
7054
|
|
|
7090
7055
|
// src/components/SmartTableHeaderFilterMenu/SmartTableHeaderFilterMenu.tsx
|
|
7091
|
-
import React4, { useState as useState15 } from "react";
|
|
7056
|
+
import React4, { useMemo as useMemo2, useState as useState15, useEffect as useEffect9 } from "react";
|
|
7092
7057
|
import { FilterList } from "@mui/icons-material";
|
|
7058
|
+
import CheckIcon from "@mui/icons-material/Check";
|
|
7093
7059
|
import {
|
|
7094
7060
|
Box as Box28,
|
|
7095
7061
|
Checkbox as Checkbox4,
|
|
7096
7062
|
Chip as Chip2,
|
|
7097
7063
|
Divider as Divider9,
|
|
7098
|
-
FormControl as FormControl5,
|
|
7099
7064
|
FormControlLabel as FormControlLabel3,
|
|
7100
|
-
FormHelperText as FormHelperText4,
|
|
7101
7065
|
IconButton as IconButton3,
|
|
7102
7066
|
Menu as Menu4
|
|
7103
7067
|
} from "@mui/material";
|
|
7104
7068
|
import classNames3 from "classnames";
|
|
7105
7069
|
import { makeStyles as makeStyles44 } from "tss-react/mui";
|
|
7106
|
-
import { Fragment as Fragment12, jsx as
|
|
7070
|
+
import { Fragment as Fragment12, jsx as jsx108, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
7107
7071
|
var useStyles44 = makeStyles44()((theme) => ({
|
|
7108
7072
|
filterMenu: {
|
|
7109
7073
|
display: "flex",
|
|
7110
7074
|
flexDirection: "column",
|
|
7111
7075
|
gap: theme.spacing(0.5)
|
|
7112
7076
|
},
|
|
7113
|
-
|
|
7077
|
+
filter: {
|
|
7114
7078
|
display: "flex",
|
|
7115
|
-
|
|
7079
|
+
alignItems: "center",
|
|
7080
|
+
justifyContent: "space-between",
|
|
7116
7081
|
padding: theme.spacing(0, 3)
|
|
7117
7082
|
},
|
|
7118
7083
|
applyFilterButtonsContainer: {
|
|
7119
7084
|
display: "flex",
|
|
7120
7085
|
padding: theme.spacing(0, 1)
|
|
7086
|
+
},
|
|
7087
|
+
saveAsDefaultButton: {
|
|
7088
|
+
color: theme.palette.primary.main
|
|
7121
7089
|
}
|
|
7122
7090
|
}));
|
|
7123
7091
|
var resolveFilterOption = (filterOption) => {
|
|
@@ -7137,18 +7105,21 @@ var findFilterIndex = (filters, filterOption) => filters.findIndex((item) => {
|
|
|
7137
7105
|
});
|
|
7138
7106
|
var SmartTableHeaderFilterMenu = ({
|
|
7139
7107
|
headCell,
|
|
7140
|
-
|
|
7108
|
+
numActiveFilters,
|
|
7141
7109
|
headerFilters,
|
|
7110
|
+
shouldShowCheckOnFilter,
|
|
7142
7111
|
onApplyFilters
|
|
7143
7112
|
}) => {
|
|
7144
7113
|
const { classes } = useStyles44();
|
|
7145
7114
|
const [anchorEl, setAnchorEl] = useState15(null);
|
|
7146
|
-
const [shouldSave, setShouldSave] = useState15(false);
|
|
7147
7115
|
const [selectedFilters, setSelectedFilters] = useState15(
|
|
7148
7116
|
headerFilters[headCell.id] ?? []
|
|
7149
7117
|
);
|
|
7118
|
+
const filterOptions = headCell.filterOptionsQuery?.data ?? [];
|
|
7119
|
+
const numFilterOptions = filterOptions.length ?? 0;
|
|
7120
|
+
const numCurrentSelectedFilters = selectedFilters.length;
|
|
7150
7121
|
const handleFilterMenuOpen = (event) => {
|
|
7151
|
-
if (!
|
|
7122
|
+
if (!numFilterOptions) {
|
|
7152
7123
|
headCell.filterOptionsQuery?.refetch();
|
|
7153
7124
|
}
|
|
7154
7125
|
setAnchorEl(event.currentTarget);
|
|
@@ -7156,7 +7127,6 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7156
7127
|
const handleFilterMenuClose = () => {
|
|
7157
7128
|
setSelectedFilters(headerFilters[headCell.id]);
|
|
7158
7129
|
setAnchorEl(null);
|
|
7159
|
-
setShouldSave(false);
|
|
7160
7130
|
};
|
|
7161
7131
|
const handleFilterOptionClick = (option) => {
|
|
7162
7132
|
const selectedIndex = findFilterIndex(selectedFilters, option);
|
|
@@ -7174,8 +7144,22 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7174
7144
|
}
|
|
7175
7145
|
setSelectedFilters(newSelected);
|
|
7176
7146
|
};
|
|
7147
|
+
const handleApplyFilters = (shouldSave) => {
|
|
7148
|
+
const updatedFilters = {
|
|
7149
|
+
...headerFilters,
|
|
7150
|
+
[headCell.id]: [...selectedFilters]
|
|
7151
|
+
};
|
|
7152
|
+
onApplyFilters?.(updatedFilters, shouldSave);
|
|
7153
|
+
setAnchorEl(null);
|
|
7154
|
+
};
|
|
7155
|
+
useEffect9(() => {
|
|
7156
|
+
setSelectedFilters(headerFilters[headCell.id] ?? []);
|
|
7157
|
+
}, [headerFilters, headCell.id]);
|
|
7158
|
+
const isOptionChecked = useMemo2(() => (resolvedOption) => !!selectedFilters?.some(
|
|
7159
|
+
(value) => resolveFilterOption(value) === resolvedOption
|
|
7160
|
+
), [selectedFilters]);
|
|
7177
7161
|
return /* @__PURE__ */ jsxs74(Fragment12, { children: [
|
|
7178
|
-
/* @__PURE__ */
|
|
7162
|
+
/* @__PURE__ */ jsx108(
|
|
7179
7163
|
IconButton3,
|
|
7180
7164
|
{
|
|
7181
7165
|
disableRipple: true,
|
|
@@ -7183,19 +7167,19 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7183
7167
|
"data-testid": "filter-menu-button",
|
|
7184
7168
|
style: { padding: 0 },
|
|
7185
7169
|
className: classNames3("filter-menu-trigger", {
|
|
7186
|
-
"has-active-filters":
|
|
7170
|
+
"has-active-filters": numActiveFilters
|
|
7187
7171
|
}),
|
|
7188
|
-
children:
|
|
7172
|
+
children: numActiveFilters ? /* @__PURE__ */ jsx108(
|
|
7189
7173
|
Chip2,
|
|
7190
7174
|
{
|
|
7191
7175
|
sx: { height: 24 },
|
|
7192
|
-
label:
|
|
7193
|
-
icon: /* @__PURE__ */
|
|
7176
|
+
label: numActiveFilters,
|
|
7177
|
+
icon: /* @__PURE__ */ jsx108(FilterList, { style: { fontSize: 18 }, color: "primary" })
|
|
7194
7178
|
}
|
|
7195
|
-
) : /* @__PURE__ */
|
|
7179
|
+
) : /* @__PURE__ */ jsx108(FilterList, { style: { fontSize: 18 } })
|
|
7196
7180
|
}
|
|
7197
7181
|
),
|
|
7198
|
-
/* @__PURE__ */
|
|
7182
|
+
/* @__PURE__ */ jsx108(
|
|
7199
7183
|
Menu4,
|
|
7200
7184
|
{
|
|
7201
7185
|
open: !!anchorEl,
|
|
@@ -7205,78 +7189,78 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7205
7189
|
anchorOrigin: { vertical: "bottom", horizontal: "right" },
|
|
7206
7190
|
transformOrigin: { vertical: "top", horizontal: "right" },
|
|
7207
7191
|
children: /* @__PURE__ */ jsxs74(Box28, { className: classes.filterMenu, children: [
|
|
7208
|
-
|
|
7192
|
+
/* @__PURE__ */ jsx108(Box28, { px: 3, children: /* @__PURE__ */ jsx108(
|
|
7193
|
+
FormControlLabel3,
|
|
7194
|
+
{
|
|
7195
|
+
label: "Select All",
|
|
7196
|
+
control: /* @__PURE__ */ jsx108(
|
|
7197
|
+
Checkbox4,
|
|
7198
|
+
{
|
|
7199
|
+
disableRipple: true,
|
|
7200
|
+
checked: numCurrentSelectedFilters === numFilterOptions,
|
|
7201
|
+
indeterminate: numCurrentSelectedFilters > 0 && numCurrentSelectedFilters < numFilterOptions,
|
|
7202
|
+
onChange: ({ target: { checked } }) => {
|
|
7203
|
+
if (checked) {
|
|
7204
|
+
setSelectedFilters([...filterOptions]);
|
|
7205
|
+
} else {
|
|
7206
|
+
setSelectedFilters([]);
|
|
7207
|
+
}
|
|
7208
|
+
}
|
|
7209
|
+
}
|
|
7210
|
+
)
|
|
7211
|
+
}
|
|
7212
|
+
) }),
|
|
7213
|
+
/* @__PURE__ */ jsx108(Divider9, {}),
|
|
7214
|
+
filterOptions.map(
|
|
7209
7215
|
(option) => {
|
|
7210
7216
|
const resolvedOption = resolveFilterOption(option);
|
|
7211
|
-
return /* @__PURE__ */
|
|
7212
|
-
|
|
7217
|
+
return /* @__PURE__ */ jsxs74(
|
|
7218
|
+
Box28,
|
|
7213
7219
|
{
|
|
7214
|
-
className: classes.
|
|
7215
|
-
children:
|
|
7216
|
-
|
|
7217
|
-
|
|
7218
|
-
|
|
7219
|
-
|
|
7220
|
-
|
|
7221
|
-
|
|
7222
|
-
|
|
7223
|
-
|
|
7224
|
-
|
|
7225
|
-
|
|
7226
|
-
|
|
7227
|
-
|
|
7228
|
-
|
|
7229
|
-
|
|
7230
|
-
|
|
7220
|
+
className: classes.filter,
|
|
7221
|
+
children: [
|
|
7222
|
+
/* @__PURE__ */ jsx108(
|
|
7223
|
+
FormControlLabel3,
|
|
7224
|
+
{
|
|
7225
|
+
label: resolvedOption,
|
|
7226
|
+
control: /* @__PURE__ */ jsx108(
|
|
7227
|
+
Checkbox4,
|
|
7228
|
+
{
|
|
7229
|
+
disableRipple: true,
|
|
7230
|
+
onChange: () => handleFilterOptionClick(option),
|
|
7231
|
+
checked: isOptionChecked(resolvedOption)
|
|
7232
|
+
}
|
|
7233
|
+
)
|
|
7234
|
+
},
|
|
7235
|
+
resolvedOption
|
|
7236
|
+
),
|
|
7237
|
+
shouldShowCheckOnFilter?.(headCell.id, option) ? /* @__PURE__ */ jsx108(CheckIcon, { fontSize: "small", color: "action" }) : null
|
|
7238
|
+
]
|
|
7231
7239
|
},
|
|
7232
7240
|
resolvedOption
|
|
7233
7241
|
);
|
|
7234
7242
|
}
|
|
7235
7243
|
),
|
|
7236
|
-
/* @__PURE__ */
|
|
7237
|
-
/* @__PURE__ */ jsxs74(FormControl5, { className: classes.filterCheckboxDropdown, children: [
|
|
7238
|
-
/* @__PURE__ */ jsx109(
|
|
7239
|
-
FormControlLabel3,
|
|
7240
|
-
{
|
|
7241
|
-
label: "Save Filters",
|
|
7242
|
-
control: /* @__PURE__ */ jsx109(
|
|
7243
|
-
Checkbox4,
|
|
7244
|
-
{
|
|
7245
|
-
disableRipple: true,
|
|
7246
|
-
checked: shouldSave,
|
|
7247
|
-
onChange: (e) => setShouldSave(e.target.checked)
|
|
7248
|
-
}
|
|
7249
|
-
)
|
|
7250
|
-
}
|
|
7251
|
-
),
|
|
7252
|
-
/* @__PURE__ */ jsx109(FormHelperText4, { sx: { margin: 0 }, children: "Filters auto-apply on return." })
|
|
7253
|
-
] }),
|
|
7254
|
-
/* @__PURE__ */ jsx109(Divider9, {}),
|
|
7244
|
+
/* @__PURE__ */ jsx108(Divider9, {}),
|
|
7255
7245
|
/* @__PURE__ */ jsxs74(Box28, { className: classes.applyFilterButtonsContainer, children: [
|
|
7256
|
-
/* @__PURE__ */
|
|
7246
|
+
/* @__PURE__ */ jsx108(
|
|
7257
7247
|
ExtendedButton_default,
|
|
7258
7248
|
{
|
|
7249
|
+
copy: "Save as Default",
|
|
7259
7250
|
buttonType: "button",
|
|
7260
|
-
copy: "Deselect All",
|
|
7261
7251
|
variant: "text",
|
|
7262
|
-
|
|
7252
|
+
tooltip: "Persists those filters for future visits",
|
|
7253
|
+
className: classes.saveAsDefaultButton,
|
|
7254
|
+
onClick: () => handleApplyFilters(true)
|
|
7263
7255
|
}
|
|
7264
7256
|
),
|
|
7265
|
-
/* @__PURE__ */
|
|
7257
|
+
/* @__PURE__ */ jsx108(
|
|
7266
7258
|
ExtendedButton_default,
|
|
7267
7259
|
{
|
|
7268
7260
|
copy: "Apply",
|
|
7269
7261
|
color: "primary",
|
|
7270
7262
|
buttonType: "submit",
|
|
7271
|
-
onClick: () =>
|
|
7272
|
-
const updatedFilters = {
|
|
7273
|
-
...headerFilters,
|
|
7274
|
-
[headCell.id]: [...selectedFilters]
|
|
7275
|
-
};
|
|
7276
|
-
onApplyFilters?.(updatedFilters, shouldSave);
|
|
7277
|
-
setAnchorEl(null);
|
|
7278
|
-
setShouldSave(false);
|
|
7279
|
-
}
|
|
7263
|
+
onClick: () => handleApplyFilters(false)
|
|
7280
7264
|
}
|
|
7281
7265
|
)
|
|
7282
7266
|
] })
|
|
@@ -7297,7 +7281,7 @@ import {
|
|
|
7297
7281
|
TableSortLabel
|
|
7298
7282
|
} from "@mui/material";
|
|
7299
7283
|
import { makeStyles as makeStyles45 } from "tss-react/mui";
|
|
7300
|
-
import { jsx as
|
|
7284
|
+
import { jsx as jsx109, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
7301
7285
|
var useStyles45 = makeStyles45()((theme) => ({
|
|
7302
7286
|
root: {
|
|
7303
7287
|
backgroundColor: colors.neutral100,
|
|
@@ -7362,15 +7346,16 @@ var SmartTableHeader = ({
|
|
|
7362
7346
|
headerFilters,
|
|
7363
7347
|
onRequestSort,
|
|
7364
7348
|
onSelectAllClick,
|
|
7365
|
-
onApplyFilters
|
|
7349
|
+
onApplyFilters,
|
|
7350
|
+
shouldShowCheckOnFilter
|
|
7366
7351
|
}) => {
|
|
7367
7352
|
const { classes } = useStyles45();
|
|
7368
7353
|
const createSortHandler = (property) => (event) => {
|
|
7369
7354
|
onRequestSort(event, property);
|
|
7370
7355
|
};
|
|
7371
7356
|
const isSortActive = (headCellId) => orderBy === headCellId;
|
|
7372
|
-
return /* @__PURE__ */
|
|
7373
|
-
enableCheckboxSelection ? /* @__PURE__ */
|
|
7357
|
+
return /* @__PURE__ */ jsx109(TableHead, { className: classes.root, children: /* @__PURE__ */ jsxs75(TableRow, { children: [
|
|
7358
|
+
enableCheckboxSelection ? /* @__PURE__ */ jsx109(TableCell, { padding: "checkbox", children: /* @__PURE__ */ jsx109(
|
|
7374
7359
|
Checkbox5,
|
|
7375
7360
|
{
|
|
7376
7361
|
color: "primary",
|
|
@@ -7384,6 +7369,7 @@ var SmartTableHeader = ({
|
|
|
7384
7369
|
{
|
|
7385
7370
|
className: classes.tableHeaderContent,
|
|
7386
7371
|
align: "left",
|
|
7372
|
+
sx: { width: headCell.width ?? "auto" },
|
|
7387
7373
|
sortDirection: orderBy === headCell.id ? order : false,
|
|
7388
7374
|
children: [
|
|
7389
7375
|
/* @__PURE__ */ jsxs75(
|
|
@@ -7395,17 +7381,18 @@ var SmartTableHeader = ({
|
|
|
7395
7381
|
onClick: createSortHandler(headCell.id),
|
|
7396
7382
|
children: [
|
|
7397
7383
|
headCell.renderHeader ?? headCell.label,
|
|
7398
|
-
orderBy === headCell.id ? /* @__PURE__ */
|
|
7384
|
+
orderBy === headCell.id ? /* @__PURE__ */ jsx109("span", { className: classes.visuallyHidden, children: order === "desc" ? "sorted descending" : "sorted ascending" }) : null
|
|
7399
7385
|
]
|
|
7400
7386
|
}
|
|
7401
7387
|
),
|
|
7402
|
-
headCell.filterOptionsQuery ? /* @__PURE__ */
|
|
7388
|
+
headCell.filterOptionsQuery ? /* @__PURE__ */ jsx109(
|
|
7403
7389
|
SmartTableHeaderFilterMenu_default,
|
|
7404
7390
|
{
|
|
7405
7391
|
headCell,
|
|
7406
7392
|
headerFilters,
|
|
7407
|
-
|
|
7408
|
-
onApplyFilters
|
|
7393
|
+
numActiveFilters: headerFilters[headCell.id]?.length ?? 0,
|
|
7394
|
+
onApplyFilters,
|
|
7395
|
+
shouldShowCheckOnFilter
|
|
7409
7396
|
}
|
|
7410
7397
|
) : null
|
|
7411
7398
|
]
|
|
@@ -7435,11 +7422,11 @@ import { v4 as uuidv4 } from "uuid";
|
|
|
7435
7422
|
|
|
7436
7423
|
// src/components/TableLoading/TableLoading.tsx
|
|
7437
7424
|
import { Box as Box29, Skeleton as Skeleton2 } from "@mui/material";
|
|
7438
|
-
import { jsx as
|
|
7425
|
+
import { jsx as jsx110 } from "react/jsx-runtime";
|
|
7439
7426
|
var TableLoading = ({
|
|
7440
7427
|
rowsPerPage,
|
|
7441
7428
|
rowHeight
|
|
7442
|
-
}) => /* @__PURE__ */
|
|
7429
|
+
}) => /* @__PURE__ */ jsx110(Box29, { children: Array.from({ length: rowsPerPage ?? 0 }).map((_, index) => /* @__PURE__ */ jsx110(
|
|
7443
7430
|
Skeleton2,
|
|
7444
7431
|
{
|
|
7445
7432
|
animation: "pulse",
|
|
@@ -7488,7 +7475,7 @@ function calculateRowsPerPage(rowHeight) {
|
|
|
7488
7475
|
}
|
|
7489
7476
|
|
|
7490
7477
|
// src/components/Table/Table.tsx
|
|
7491
|
-
import { jsx as
|
|
7478
|
+
import { jsx as jsx111, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
7492
7479
|
var useStyles46 = makeStyles46()(() => ({
|
|
7493
7480
|
root: {
|
|
7494
7481
|
height: "calc(100vh - 262px)",
|
|
@@ -7566,24 +7553,24 @@ var Table = ({
|
|
|
7566
7553
|
);
|
|
7567
7554
|
const rowsComponents = rows.map((row) => {
|
|
7568
7555
|
if (RenderItem) {
|
|
7569
|
-
return /* @__PURE__ */
|
|
7556
|
+
return /* @__PURE__ */ jsx111(RenderItem, { ...row }, row.id);
|
|
7570
7557
|
}
|
|
7571
|
-
return /* @__PURE__ */
|
|
7558
|
+
return /* @__PURE__ */ jsx111(TableRow2, { hover: true, onClick: () => onRowClick?.(row), children: headCells?.map((column) => /* @__PURE__ */ jsx111(TableCell2, { children: row[column.id] }, column.id)) }, row.id);
|
|
7572
7559
|
});
|
|
7573
7560
|
if (emptyRows > 0 && rowsPerPage > emptyRows) {
|
|
7574
7561
|
rowsComponents.push(
|
|
7575
|
-
/* @__PURE__ */
|
|
7562
|
+
/* @__PURE__ */ jsx111(TableRow2, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ jsx111(TableCell2, { colSpan: 8 }) }, uuidv4())
|
|
7576
7563
|
);
|
|
7577
7564
|
}
|
|
7578
7565
|
return rowsComponents;
|
|
7579
7566
|
};
|
|
7580
|
-
return /* @__PURE__ */
|
|
7581
|
-
/* @__PURE__ */
|
|
7567
|
+
return /* @__PURE__ */ jsx111(Paper10, { className: classes.root, children: /* @__PURE__ */ jsx111(Box30, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx111(TableLoading_default, { rowHeight, rowsPerPage }) : /* @__PURE__ */ jsx111(TableContainer, { className: classes.container, children: /* @__PURE__ */ jsxs76(MUITable, { size: "medium", stickyHeader: true, children: [
|
|
7568
|
+
/* @__PURE__ */ jsx111(TableHead2, { className: classes.header, children: /* @__PURE__ */ jsx111(TableRow2, { children: headCells?.map((headCell) => /* @__PURE__ */ jsx111(
|
|
7582
7569
|
TableCell2,
|
|
7583
7570
|
{
|
|
7584
7571
|
align: "left",
|
|
7585
7572
|
sortDirection: orderBy === headCell.id ? order : void 0,
|
|
7586
|
-
children: /* @__PURE__ */
|
|
7573
|
+
children: /* @__PURE__ */ jsx111(
|
|
7587
7574
|
TableSortLabel2,
|
|
7588
7575
|
{
|
|
7589
7576
|
active: orderBy === headCell.id,
|
|
@@ -7597,7 +7584,7 @@ var Table = ({
|
|
|
7597
7584
|
)) }) }),
|
|
7598
7585
|
/* @__PURE__ */ jsxs76(TableBody, { children: [
|
|
7599
7586
|
getTableRows(),
|
|
7600
|
-
rowsPerPage === emptyRows && /* @__PURE__ */
|
|
7587
|
+
rowsPerPage === emptyRows && /* @__PURE__ */ jsx111(TableRow2, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ jsx111(TableCell2, { colSpan: 8, align: "center", children: "Nothing to display" }) })
|
|
7601
7588
|
] })
|
|
7602
7589
|
] }) }) }) });
|
|
7603
7590
|
};
|
|
@@ -7606,7 +7593,7 @@ var Table_default = Table;
|
|
|
7606
7593
|
// src/components/TableDesktop/TableDesktop.tsx
|
|
7607
7594
|
import {
|
|
7608
7595
|
useCallback as useCallback2,
|
|
7609
|
-
useMemo as
|
|
7596
|
+
useMemo as useMemo3,
|
|
7610
7597
|
useState as useState17
|
|
7611
7598
|
} from "react";
|
|
7612
7599
|
import {
|
|
@@ -7622,7 +7609,7 @@ import { v4 as uuidv42 } from "uuid";
|
|
|
7622
7609
|
// src/components/TableEmptyResult/TableEmptyResult.tsx
|
|
7623
7610
|
import { TableCell as TableCell3, TableRow as TableRow3, Typography as Typography25 } from "@mui/material";
|
|
7624
7611
|
import { makeStyles as makeStyles47 } from "tss-react/mui";
|
|
7625
|
-
import { jsx as
|
|
7612
|
+
import { jsx as jsx112, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
7626
7613
|
var useStyles47 = makeStyles47()(() => ({
|
|
7627
7614
|
tableCellIcon: { padding: 24, height: "calc(100vh - 320px)" },
|
|
7628
7615
|
tableCellDefault: { padding: 24 }
|
|
@@ -7634,17 +7621,17 @@ var TableEmptyResult = ({
|
|
|
7634
7621
|
}
|
|
7635
7622
|
}) => {
|
|
7636
7623
|
const { classes } = useStyles47();
|
|
7637
|
-
return showClearFilterButton ? /* @__PURE__ */
|
|
7624
|
+
return showClearFilterButton ? /* @__PURE__ */ jsx112(TableRow3, { children: /* @__PURE__ */ jsxs77(
|
|
7638
7625
|
TableCell3,
|
|
7639
7626
|
{
|
|
7640
7627
|
className: classes.tableCellIcon,
|
|
7641
7628
|
colSpan,
|
|
7642
7629
|
align: "center",
|
|
7643
7630
|
children: [
|
|
7644
|
-
/* @__PURE__ */
|
|
7645
|
-
/* @__PURE__ */
|
|
7646
|
-
/* @__PURE__ */
|
|
7647
|
-
/* @__PURE__ */
|
|
7631
|
+
/* @__PURE__ */ jsx112(EmptyGlassIcon_default, {}),
|
|
7632
|
+
/* @__PURE__ */ jsx112(Typography25, { variant: "h6", children: "No results found." }),
|
|
7633
|
+
/* @__PURE__ */ jsx112(Typography25, { variant: "subtitle1", children: "Search without applied filters?" }),
|
|
7634
|
+
/* @__PURE__ */ jsx112(
|
|
7648
7635
|
FilledButton_default,
|
|
7649
7636
|
{
|
|
7650
7637
|
copy: "Search",
|
|
@@ -7655,7 +7642,7 @@ var TableEmptyResult = ({
|
|
|
7655
7642
|
)
|
|
7656
7643
|
]
|
|
7657
7644
|
}
|
|
7658
|
-
) }) : /* @__PURE__ */
|
|
7645
|
+
) }) : /* @__PURE__ */ jsx112(TableRow3, { children: /* @__PURE__ */ jsx112(
|
|
7659
7646
|
TableCell3,
|
|
7660
7647
|
{
|
|
7661
7648
|
className: classes.tableCellDefault,
|
|
@@ -7668,7 +7655,7 @@ var TableEmptyResult = ({
|
|
|
7668
7655
|
var TableEmptyResult_default = TableEmptyResult;
|
|
7669
7656
|
|
|
7670
7657
|
// src/components/TableDesktop/TableDesktop.tsx
|
|
7671
|
-
import { Fragment as Fragment13, jsx as
|
|
7658
|
+
import { Fragment as Fragment13, jsx as jsx113, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
7672
7659
|
var useStyles48 = makeStyles48()((theme) => ({
|
|
7673
7660
|
root: {
|
|
7674
7661
|
justifyContent: "space-between",
|
|
@@ -7743,7 +7730,9 @@ var TableDesktop = ({
|
|
|
7743
7730
|
handleClickOnClearFiltersButton,
|
|
7744
7731
|
deleteItem,
|
|
7745
7732
|
keyField = "id",
|
|
7746
|
-
|
|
7733
|
+
tableLayout = "auto",
|
|
7734
|
+
onApplyFilters,
|
|
7735
|
+
shouldShowCheckOnFilter
|
|
7747
7736
|
}) => {
|
|
7748
7737
|
const [order, setOrder] = useState17(appliedFilters?.sortDir || "desc");
|
|
7749
7738
|
const [orderBy, setOrderBy] = useState17(
|
|
@@ -7753,11 +7742,11 @@ var TableDesktop = ({
|
|
|
7753
7742
|
const [page] = useState17(0);
|
|
7754
7743
|
const { classes } = useStyles48();
|
|
7755
7744
|
const rowHeight = 56;
|
|
7756
|
-
const emptyRows =
|
|
7745
|
+
const emptyRows = useMemo3(
|
|
7757
7746
|
() => rowsPerPage - data.length,
|
|
7758
7747
|
[rowsPerPage, data]
|
|
7759
7748
|
);
|
|
7760
|
-
const visibleHeadCells =
|
|
7749
|
+
const visibleHeadCells = useMemo3(
|
|
7761
7750
|
() => headCells.filter((headCell) => headCell?.enabled ?? true),
|
|
7762
7751
|
[headCells]
|
|
7763
7752
|
);
|
|
@@ -7801,11 +7790,11 @@ var TableDesktop = ({
|
|
|
7801
7790
|
},
|
|
7802
7791
|
[selected]
|
|
7803
7792
|
);
|
|
7804
|
-
const renderTableRows =
|
|
7793
|
+
const renderTableRows = useMemo3(() => {
|
|
7805
7794
|
const sortedData = disableInternalSort ? data : stableSort2(data, getComparator(order, orderBy));
|
|
7806
7795
|
return sortedData.slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map((row, index) => {
|
|
7807
7796
|
const isItemSelected = selected.includes(row[keyField]);
|
|
7808
|
-
return /* @__PURE__ */
|
|
7797
|
+
return /* @__PURE__ */ jsx113(
|
|
7809
7798
|
RenderItem,
|
|
7810
7799
|
{
|
|
7811
7800
|
...{
|
|
@@ -7837,7 +7826,7 @@ var TableDesktop = ({
|
|
|
7837
7826
|
visibleHeadCells,
|
|
7838
7827
|
RenderItem
|
|
7839
7828
|
]);
|
|
7840
|
-
return /* @__PURE__ */
|
|
7829
|
+
return /* @__PURE__ */ jsx113("div", { className: classes.root, style: { height }, children: /* @__PURE__ */ jsx113(Paper11, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx113(Fragment13, { children: [...Array(Math.floor(rowsPerPage ?? 50))].map(() => /* @__PURE__ */ jsx113(
|
|
7841
7830
|
Skeleton3,
|
|
7842
7831
|
{
|
|
7843
7832
|
animation: "pulse",
|
|
@@ -7848,14 +7837,15 @@ var TableDesktop = ({
|
|
|
7848
7837
|
},
|
|
7849
7838
|
uuidv42()
|
|
7850
7839
|
)) }) : /* @__PURE__ */ jsxs78(Fragment13, { children: [
|
|
7851
|
-
/* @__PURE__ */
|
|
7840
|
+
/* @__PURE__ */ jsx113(TableContainer2, { className: classes.container, children: /* @__PURE__ */ jsxs78(
|
|
7852
7841
|
Table2,
|
|
7853
7842
|
{
|
|
7854
7843
|
"aria-labelledby": "tableTitle",
|
|
7855
7844
|
"aria-label": "sticky table",
|
|
7856
7845
|
stickyHeader: true,
|
|
7846
|
+
style: { tableLayout },
|
|
7857
7847
|
children: [
|
|
7858
|
-
/* @__PURE__ */
|
|
7848
|
+
/* @__PURE__ */ jsx113(
|
|
7859
7849
|
SmartTableHeader_default,
|
|
7860
7850
|
{
|
|
7861
7851
|
headCells: visibleHeadCells,
|
|
@@ -7867,10 +7857,11 @@ var TableDesktop = ({
|
|
|
7867
7857
|
headerFilters: headerFilters ?? {},
|
|
7868
7858
|
onRequestSort: handleRequestSort,
|
|
7869
7859
|
onSelectAllClick: handleSelectAllClick,
|
|
7870
|
-
onApplyFilters
|
|
7860
|
+
onApplyFilters,
|
|
7861
|
+
shouldShowCheckOnFilter
|
|
7871
7862
|
}
|
|
7872
7863
|
),
|
|
7873
|
-
/* @__PURE__ */
|
|
7864
|
+
/* @__PURE__ */ jsx113(TableBody2, { children: rowsPerPage !== emptyRows ? renderTableRows : /* @__PURE__ */ jsx113(
|
|
7874
7865
|
TableEmptyResult_default,
|
|
7875
7866
|
{
|
|
7876
7867
|
colSpan: enableCheckboxSelection ? visibleHeadCells.length + 1 : visibleHeadCells.length,
|
|
@@ -7887,11 +7878,11 @@ var TableDesktop = ({
|
|
|
7887
7878
|
var TableDesktop_default = TableDesktop;
|
|
7888
7879
|
|
|
7889
7880
|
// src/components/TableHeader/TableHeader.tsx
|
|
7890
|
-
import { memo as memo22, useEffect as
|
|
7881
|
+
import { memo as memo22, useEffect as useEffect10, useState as useState18 } from "react";
|
|
7891
7882
|
import { ImportExport as ImportExportIcon } from "@mui/icons-material";
|
|
7892
7883
|
import { TableCell as TableCell4, TableHead as TableHead3, TableRow as TableRow4, TableSortLabel as TableSortLabel3 } from "@mui/material";
|
|
7893
7884
|
import { makeStyles as makeStyles49 } from "tss-react/mui";
|
|
7894
|
-
import { jsx as
|
|
7885
|
+
import { jsx as jsx114 } from "react/jsx-runtime";
|
|
7895
7886
|
var useStyles49 = makeStyles49()(() => ({
|
|
7896
7887
|
sortLabel: {
|
|
7897
7888
|
"& .MuiTableSortLabel-icon": {
|
|
@@ -7902,7 +7893,7 @@ var useStyles49 = makeStyles49()(() => ({
|
|
|
7902
7893
|
var TableHeader = ({ cells, onSort = null }) => {
|
|
7903
7894
|
const [sortableCells, setSortableCells] = useState18([]);
|
|
7904
7895
|
const { classes } = useStyles49();
|
|
7905
|
-
|
|
7896
|
+
useEffect10(() => {
|
|
7906
7897
|
setSortableCells(cells);
|
|
7907
7898
|
}, []);
|
|
7908
7899
|
const getNewSortDirection = (direction) => {
|
|
@@ -7936,7 +7927,7 @@ var TableHeader = ({ cells, onSort = null }) => {
|
|
|
7936
7927
|
});
|
|
7937
7928
|
setSortableCells(sortedCells);
|
|
7938
7929
|
};
|
|
7939
|
-
return /* @__PURE__ */
|
|
7930
|
+
return /* @__PURE__ */ jsx114(TableHead3, { children: /* @__PURE__ */ jsx114(TableRow4, { children: sortableCells.map((cell, key) => /* @__PURE__ */ jsx114(TableCell4, { children: cell.isSortable ? /* @__PURE__ */ jsx114(
|
|
7940
7931
|
TableSortLabel3,
|
|
7941
7932
|
{
|
|
7942
7933
|
className: classes.sortLabel,
|
|
@@ -7952,7 +7943,7 @@ var TableHeader_default = memo22(TableHeader);
|
|
|
7952
7943
|
// src/components/TextDivider/TextDivider.tsx
|
|
7953
7944
|
import { Box as Box31, Typography as Typography26, Divider as Divider10, Button as Button13 } from "@mui/material";
|
|
7954
7945
|
import { makeStyles as makeStyles50 } from "tss-react/mui";
|
|
7955
|
-
import { jsx as
|
|
7946
|
+
import { jsx as jsx115, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
7956
7947
|
var useStyles50 = makeStyles50()(() => ({
|
|
7957
7948
|
icon: {
|
|
7958
7949
|
fontSize: 20
|
|
@@ -7997,10 +7988,10 @@ var TextDivider = ({
|
|
|
7997
7988
|
justifyContent: "space-between",
|
|
7998
7989
|
className: classes.container,
|
|
7999
7990
|
children: [
|
|
8000
|
-
/* @__PURE__ */
|
|
8001
|
-
/* @__PURE__ */
|
|
8002
|
-
Icon3 && iconPosition === "left" && /* @__PURE__ */
|
|
8003
|
-
/* @__PURE__ */
|
|
7991
|
+
/* @__PURE__ */ jsx115(Divider10, { className: classes.leftDivider }),
|
|
7992
|
+
/* @__PURE__ */ jsx115(Button13, { onClick, disabled: !onClick, className: classes.button, children: /* @__PURE__ */ jsxs79(Box31, { className: classes.center, children: [
|
|
7993
|
+
Icon3 && iconPosition === "left" && /* @__PURE__ */ jsx115(Icon3, { className: classes.icon, style: { color: iconColor } }),
|
|
7994
|
+
/* @__PURE__ */ jsx115(
|
|
8004
7995
|
Typography26,
|
|
8005
7996
|
{
|
|
8006
7997
|
color: "textSecondary",
|
|
@@ -8009,9 +8000,9 @@ var TextDivider = ({
|
|
|
8009
8000
|
children: title
|
|
8010
8001
|
}
|
|
8011
8002
|
),
|
|
8012
|
-
Icon3 && iconPosition === "right" && /* @__PURE__ */
|
|
8003
|
+
Icon3 && iconPosition === "right" && /* @__PURE__ */ jsx115(Icon3, { className: classes.icon, style: { color: iconColor } })
|
|
8013
8004
|
] }) }),
|
|
8014
|
-
/* @__PURE__ */
|
|
8005
|
+
/* @__PURE__ */ jsx115(Divider10, { className: classes.rightDivider })
|
|
8015
8006
|
]
|
|
8016
8007
|
}
|
|
8017
8008
|
);
|
|
@@ -8023,7 +8014,8 @@ import { DateRangePicker } from "react-dates";
|
|
|
8023
8014
|
import { makeStyles as makeStyles51 } from "tss-react/mui";
|
|
8024
8015
|
import "react-dates/initialize";
|
|
8025
8016
|
import "react-dates/lib/css/_datepicker.css";
|
|
8026
|
-
import
|
|
8017
|
+
import classNames4 from "classnames";
|
|
8018
|
+
import { jsx as jsx116 } from "react/jsx-runtime";
|
|
8027
8019
|
var useStyles51 = makeStyles51()((theme) => ({
|
|
8028
8020
|
wrapper: {
|
|
8029
8021
|
"& .DateRangePicker": {
|
|
@@ -8037,8 +8029,7 @@ var useStyles51 = makeStyles51()((theme) => ({
|
|
|
8037
8029
|
"& .DateRangePickerInput": {
|
|
8038
8030
|
backgroundColor: "transparent",
|
|
8039
8031
|
color: theme.palette.mode === "dark" ? "theme.palette.common.white" : theme.palette.text.primary,
|
|
8040
|
-
borderRadius: 4
|
|
8041
|
-
paddingTop: "2px"
|
|
8032
|
+
borderRadius: 4
|
|
8042
8033
|
},
|
|
8043
8034
|
"& .DateInput": {
|
|
8044
8035
|
backgroundColor: theme.palette.mode === "dark" ? theme.palette.grey[900] : colors.neutral100,
|
|
@@ -8118,8 +8109,8 @@ var ThemedDateRangePicker = ({
|
|
|
8118
8109
|
className,
|
|
8119
8110
|
...props
|
|
8120
8111
|
}) => {
|
|
8121
|
-
const { classes
|
|
8122
|
-
return /* @__PURE__ */
|
|
8112
|
+
const { classes } = useStyles51();
|
|
8113
|
+
return /* @__PURE__ */ jsx116("div", { className: classNames4(classes.wrapper, className), children: /* @__PURE__ */ jsx116(DateRangePicker, { ...props }) });
|
|
8123
8114
|
};
|
|
8124
8115
|
var ThemedDateRangePicker_default = ThemedDateRangePicker;
|
|
8125
8116
|
|
|
@@ -8127,7 +8118,7 @@ var ThemedDateRangePicker_default = ThemedDateRangePicker;
|
|
|
8127
8118
|
import { memo as memo23 } from "react";
|
|
8128
8119
|
import { AppBar as AppBar2, Box as Box32, Toolbar as Toolbar2 } from "@mui/material";
|
|
8129
8120
|
import { makeStyles as makeStyles52 } from "tss-react/mui";
|
|
8130
|
-
import { jsx as
|
|
8121
|
+
import { jsx as jsx117, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
8131
8122
|
var useStyles52 = makeStyles52()((theme) => ({
|
|
8132
8123
|
menuButton: {
|
|
8133
8124
|
color: theme.palette.primary.contrastText
|
|
@@ -8167,8 +8158,8 @@ var TheToolbar = ({
|
|
|
8167
8158
|
}) => {
|
|
8168
8159
|
const { classes } = useStyles52();
|
|
8169
8160
|
return /* @__PURE__ */ jsxs80(Box32, { children: [
|
|
8170
|
-
/* @__PURE__ */
|
|
8171
|
-
/* @__PURE__ */
|
|
8161
|
+
/* @__PURE__ */ jsx117(AppBar2, { children: /* @__PURE__ */ jsxs80(Toolbar2, { className: classes.topBar, children: [
|
|
8162
|
+
/* @__PURE__ */ jsx117(
|
|
8172
8163
|
RoundButton_default,
|
|
8173
8164
|
{
|
|
8174
8165
|
className: classes.menuButton,
|
|
@@ -8177,7 +8168,7 @@ var TheToolbar = ({
|
|
|
8177
8168
|
onClick: handleOpen
|
|
8178
8169
|
}
|
|
8179
8170
|
),
|
|
8180
|
-
/* @__PURE__ */
|
|
8171
|
+
/* @__PURE__ */ jsx117(
|
|
8181
8172
|
CompanyLogo_default,
|
|
8182
8173
|
{
|
|
8183
8174
|
size: "small",
|
|
@@ -8187,7 +8178,7 @@ var TheToolbar = ({
|
|
|
8187
8178
|
}
|
|
8188
8179
|
)
|
|
8189
8180
|
] }) }),
|
|
8190
|
-
/* @__PURE__ */
|
|
8181
|
+
/* @__PURE__ */ jsx117(Box32, { className: classes.offset }),
|
|
8191
8182
|
LeftDrawer2
|
|
8192
8183
|
] });
|
|
8193
8184
|
};
|
|
@@ -8195,20 +8186,20 @@ var TheToolbar_default = memo23(TheToolbar);
|
|
|
8195
8186
|
|
|
8196
8187
|
// src/components/ToastMessage/ToastMessage.tsx
|
|
8197
8188
|
import { Alert as MuiAlert, Snackbar } from "@mui/material";
|
|
8198
|
-
import { jsx as
|
|
8189
|
+
import { jsx as jsx118 } from "react/jsx-runtime";
|
|
8199
8190
|
var ToastMessage = ({
|
|
8200
8191
|
toastType,
|
|
8201
8192
|
toastMessage,
|
|
8202
8193
|
open,
|
|
8203
8194
|
onClose
|
|
8204
|
-
}) => /* @__PURE__ */
|
|
8195
|
+
}) => /* @__PURE__ */ jsx118(
|
|
8205
8196
|
Snackbar,
|
|
8206
8197
|
{
|
|
8207
8198
|
open,
|
|
8208
8199
|
autoHideDuration: 1500,
|
|
8209
8200
|
onClose,
|
|
8210
8201
|
anchorOrigin: { vertical: "top", horizontal: "right" },
|
|
8211
|
-
children: /* @__PURE__ */
|
|
8202
|
+
children: /* @__PURE__ */ jsx118(
|
|
8212
8203
|
MuiAlert,
|
|
8213
8204
|
{
|
|
8214
8205
|
elevation: 6,
|
|
@@ -8245,7 +8236,7 @@ import {
|
|
|
8245
8236
|
Fade as Fade2
|
|
8246
8237
|
} from "@mui/material";
|
|
8247
8238
|
import { makeStyles as makeStyles53 } from "tss-react/mui";
|
|
8248
|
-
import { jsx as
|
|
8239
|
+
import { jsx as jsx119, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
8249
8240
|
var useStyles53 = makeStyles53()((theme) => ({
|
|
8250
8241
|
paper: {
|
|
8251
8242
|
padding: theme.spacing(2)
|
|
@@ -8275,7 +8266,7 @@ var TwoButtonDialog = ({
|
|
|
8275
8266
|
cancelButton
|
|
8276
8267
|
}) => {
|
|
8277
8268
|
const { classes } = useStyles53();
|
|
8278
|
-
return /* @__PURE__ */
|
|
8269
|
+
return /* @__PURE__ */ jsx119(
|
|
8279
8270
|
Dialog5,
|
|
8280
8271
|
{
|
|
8281
8272
|
open,
|
|
@@ -8287,9 +8278,9 @@ var TwoButtonDialog = ({
|
|
|
8287
8278
|
BackdropProps: {
|
|
8288
8279
|
timeout: 500
|
|
8289
8280
|
},
|
|
8290
|
-
children: /* @__PURE__ */
|
|
8281
|
+
children: /* @__PURE__ */ jsx119(Fade2, { in: open, children: /* @__PURE__ */ jsxs81(Paper12, { className: classes.paper, children: [
|
|
8291
8282
|
/* @__PURE__ */ jsxs81(Box33, { className: classes.mb, children: [
|
|
8292
|
-
/* @__PURE__ */
|
|
8283
|
+
/* @__PURE__ */ jsx119(Typography27, { variant: "h5", component: "div", children: /* @__PURE__ */ jsx119(
|
|
8293
8284
|
Box33,
|
|
8294
8285
|
{
|
|
8295
8286
|
sx: {
|
|
@@ -8306,15 +8297,15 @@ var TwoButtonDialog = ({
|
|
|
8306
8297
|
fontWeight: 600
|
|
8307
8298
|
},
|
|
8308
8299
|
children: [
|
|
8309
|
-
subtitle1 && /* @__PURE__ */
|
|
8310
|
-
subtitle2 && /* @__PURE__ */
|
|
8300
|
+
subtitle1 && /* @__PURE__ */ jsx119(Typography27, { variant: "subtitle1", children: subtitle1 }),
|
|
8301
|
+
subtitle2 && /* @__PURE__ */ jsx119(Typography27, { variant: "subtitle1", children: subtitle2 })
|
|
8311
8302
|
]
|
|
8312
8303
|
}
|
|
8313
8304
|
)
|
|
8314
8305
|
] }),
|
|
8315
|
-
/* @__PURE__ */
|
|
8306
|
+
/* @__PURE__ */ jsx119(Divider11, {}),
|
|
8316
8307
|
/* @__PURE__ */ jsxs81(Box33, { className: classes.buttonContainer, children: [
|
|
8317
|
-
/* @__PURE__ */
|
|
8308
|
+
/* @__PURE__ */ jsx119(
|
|
8318
8309
|
FilledButton_default,
|
|
8319
8310
|
{
|
|
8320
8311
|
copy: cancelLabel,
|
|
@@ -8327,7 +8318,7 @@ var TwoButtonDialog = ({
|
|
|
8327
8318
|
}
|
|
8328
8319
|
}
|
|
8329
8320
|
),
|
|
8330
|
-
/* @__PURE__ */
|
|
8321
|
+
/* @__PURE__ */ jsx119(
|
|
8331
8322
|
FilledButton_default,
|
|
8332
8323
|
{
|
|
8333
8324
|
color: "primary",
|
|
@@ -8336,37 +8327,12 @@ var TwoButtonDialog = ({
|
|
|
8336
8327
|
}
|
|
8337
8328
|
)
|
|
8338
8329
|
] }),
|
|
8339
|
-
/* @__PURE__ */
|
|
8330
|
+
/* @__PURE__ */ jsx119(Loading_default, { isLoading: dialogLoading })
|
|
8340
8331
|
] }) })
|
|
8341
8332
|
}
|
|
8342
8333
|
);
|
|
8343
8334
|
};
|
|
8344
8335
|
var TwoButtonDialog_default = TwoButtonDialog;
|
|
8345
|
-
|
|
8346
|
-
// src/components/icons/IconChart.tsx
|
|
8347
|
-
import { jsx as jsx121 } from "react/jsx-runtime";
|
|
8348
|
-
var SvgIconChart = (props) => {
|
|
8349
|
-
const { fill } = props;
|
|
8350
|
-
return /* @__PURE__ */ jsx121(
|
|
8351
|
-
"svg",
|
|
8352
|
-
{
|
|
8353
|
-
width: "20",
|
|
8354
|
-
height: "20",
|
|
8355
|
-
viewBox: "0 0 20 20",
|
|
8356
|
-
fill: "none",
|
|
8357
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
8358
|
-
...props,
|
|
8359
|
-
children: /* @__PURE__ */ jsx121(
|
|
8360
|
-
"path",
|
|
8361
|
-
{
|
|
8362
|
-
d: "M2.49967 11.6667L2.91634 11.725L6.72467 7.91667C6.57467 7.375 6.71634 6.75833 7.15801 6.325C7.80801 5.66667 8.85801 5.66667 9.50801 6.325C9.94967 6.75833 10.0913 7.375 9.94134 7.91667L12.083 10.0583L12.4997 10C12.6497 10 12.7913 10 12.9163 10.0583L15.8913 7.08333C15.833 6.95833 15.833 6.81667 15.833 6.66667C15.833 6.22464 16.0086 5.80072 16.3212 5.48816C16.6337 5.17559 17.0576 5 17.4997 5C17.9417 5 18.3656 5.17559 18.6782 5.48816C18.9907 5.80072 19.1663 6.22464 19.1663 6.66667C19.1663 7.10869 18.9907 7.53262 18.6782 7.84518C18.3656 8.15774 17.9417 8.33333 17.4997 8.33333C17.3497 8.33333 17.208 8.33333 17.083 8.275L14.108 11.25C14.1663 11.375 14.1663 11.5167 14.1663 11.6667C14.1663 12.1087 13.9907 12.5326 13.6782 12.8452C13.3656 13.1577 12.9417 13.3333 12.4997 13.3333C12.0576 13.3333 11.6337 13.1577 11.3212 12.8452C11.0086 12.5326 10.833 12.1087 10.833 11.6667L10.8913 11.25L8.74967 9.10833C8.48301 9.16667 8.18301 9.16667 7.91634 9.10833L4.10801 12.9167L4.16634 13.3333C4.16634 13.7754 3.99075 14.1993 3.67819 14.5118C3.36563 14.8244 2.9417 15 2.49967 15C2.05765 15 1.63372 14.8244 1.32116 14.5118C1.0086 14.1993 0.833008 13.7754 0.833008 13.3333C0.833008 12.8913 1.0086 12.4674 1.32116 12.1548C1.63372 11.8423 2.05765 11.6667 2.49967 11.6667Z",
|
|
8363
|
-
fill: fill ?? "#1976D2"
|
|
8364
|
-
}
|
|
8365
|
-
)
|
|
8366
|
-
}
|
|
8367
|
-
);
|
|
8368
|
-
};
|
|
8369
|
-
var IconChart_default = SvgIconChart;
|
|
8370
8336
|
export {
|
|
8371
8337
|
AlertDialog_default as AlertDialog,
|
|
8372
8338
|
AlertDialogFullScreen_default as AlertDialogFullScreen,
|
|
@@ -8395,8 +8361,6 @@ export {
|
|
|
8395
8361
|
FilterSimpleSelector_default as FilterSimpleSelector,
|
|
8396
8362
|
FixedFooter_default as FixedFooter,
|
|
8397
8363
|
Header_default as Header,
|
|
8398
|
-
IconChart_default as IconChart,
|
|
8399
|
-
IconCompare_default as IconCompare,
|
|
8400
8364
|
ImageButton_default as ImageButton,
|
|
8401
8365
|
LeftDrawer_default as LeftDrawer,
|
|
8402
8366
|
VirtualizedList as List,
|