@natoora-libs/core 0.1.2 → 0.1.4
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 +827 -763
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.cts +7 -3
- package/dist/components/index.d.ts +7 -3
- package/dist/components/index.js +691 -629
- package/dist/components/index.js.map +1 -1
- package/package.json +10 -11
package/dist/components/index.js
CHANGED
|
@@ -490,7 +490,34 @@ 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
|
-
|
|
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";
|
|
494
521
|
var useStyles4 = makeStyles4()((theme) => ({
|
|
495
522
|
default: {
|
|
496
523
|
boxShadow: "none",
|
|
@@ -580,10 +607,11 @@ var ExtendedButton = ({
|
|
|
580
607
|
upload: CloudUpload,
|
|
581
608
|
refresh: Refresh,
|
|
582
609
|
download: GetApp,
|
|
583
|
-
publish: Publish
|
|
610
|
+
publish: Publish,
|
|
611
|
+
compare: IconCompare_default
|
|
584
612
|
};
|
|
585
613
|
const IconComponent = icons2[type || "add"];
|
|
586
|
-
return /* @__PURE__ */
|
|
614
|
+
return /* @__PURE__ */ jsx6(Tooltip, { title: tooltip, children: /* @__PURE__ */ jsx6(Box4, { children: /* @__PURE__ */ jsxs4(
|
|
587
615
|
Button4,
|
|
588
616
|
{
|
|
589
617
|
className: cx(classes[color], className),
|
|
@@ -596,7 +624,14 @@ var ExtendedButton = ({
|
|
|
596
624
|
type: buttonType,
|
|
597
625
|
variant,
|
|
598
626
|
children: [
|
|
599
|
-
type ? /* @__PURE__ */
|
|
627
|
+
type ? /* @__PURE__ */ jsx6(
|
|
628
|
+
IconComponent,
|
|
629
|
+
{
|
|
630
|
+
fontSize: "small",
|
|
631
|
+
className: classes.icon,
|
|
632
|
+
fill: colors.muiPrimary
|
|
633
|
+
}
|
|
634
|
+
) : null,
|
|
600
635
|
/* @__PURE__ */ jsxs4(
|
|
601
636
|
"div",
|
|
602
637
|
{
|
|
@@ -604,7 +639,7 @@ var ExtendedButton = ({
|
|
|
604
639
|
style: { color: copyColor || "inherit" },
|
|
605
640
|
children: [
|
|
606
641
|
copy,
|
|
607
|
-
/* @__PURE__ */
|
|
642
|
+
/* @__PURE__ */ jsx6("span", { children: subcopy })
|
|
608
643
|
]
|
|
609
644
|
}
|
|
610
645
|
)
|
|
@@ -615,7 +650,7 @@ var ExtendedButton = ({
|
|
|
615
650
|
var ExtendedButton_default = memo(ExtendedButton);
|
|
616
651
|
|
|
617
652
|
// src/components/BottomBar/BottomBar.tsx
|
|
618
|
-
import { jsx as
|
|
653
|
+
import { jsx as jsx7, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
619
654
|
var useStyles5 = makeStyles5()((theme) => ({
|
|
620
655
|
footer: {
|
|
621
656
|
backgroundColor: colors.neutral100,
|
|
@@ -637,7 +672,7 @@ var BottomBar = ({
|
|
|
637
672
|
onRefreshClick = null
|
|
638
673
|
}) => {
|
|
639
674
|
const { classes, cx } = useStyles5();
|
|
640
|
-
return /* @__PURE__ */
|
|
675
|
+
return /* @__PURE__ */ jsx7(Paper, { className: cx(classes.footer, className), elevation: 1, children: /* @__PURE__ */ jsxs5(
|
|
641
676
|
Box5,
|
|
642
677
|
{
|
|
643
678
|
className: classes.insideWrapper,
|
|
@@ -647,7 +682,7 @@ var BottomBar = ({
|
|
|
647
682
|
justifyContent: "space-between"
|
|
648
683
|
},
|
|
649
684
|
children: [
|
|
650
|
-
onRefreshClick && /* @__PURE__ */
|
|
685
|
+
onRefreshClick && /* @__PURE__ */ jsx7(
|
|
651
686
|
ExtendedButton_default,
|
|
652
687
|
{
|
|
653
688
|
className: classes.button,
|
|
@@ -672,7 +707,7 @@ import green from "@mui/material/colors/green";
|
|
|
672
707
|
import orange from "@mui/material/colors/orange";
|
|
673
708
|
import red from "@mui/material/colors/red";
|
|
674
709
|
import { makeStyles as makeStyles6 } from "tss-react/mui";
|
|
675
|
-
import { jsx as
|
|
710
|
+
import { jsx as jsx8, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
676
711
|
var useStyles6 = makeStyles6()((theme) => ({
|
|
677
712
|
boxTab: {
|
|
678
713
|
minWidth: 130,
|
|
@@ -726,7 +761,7 @@ var BoxButton = (props) => {
|
|
|
726
761
|
className: [classes.boxTab, classes[borderColor]].join(" "),
|
|
727
762
|
onClick,
|
|
728
763
|
children: [
|
|
729
|
-
/* @__PURE__ */
|
|
764
|
+
/* @__PURE__ */ jsx8(Typography4, { variant: "button", children: label }),
|
|
730
765
|
/* @__PURE__ */ jsxs6(
|
|
731
766
|
Grid,
|
|
732
767
|
{
|
|
@@ -737,8 +772,8 @@ var BoxButton = (props) => {
|
|
|
737
772
|
alignItems: "center"
|
|
738
773
|
},
|
|
739
774
|
children: [
|
|
740
|
-
/* @__PURE__ */
|
|
741
|
-
/* @__PURE__ */
|
|
775
|
+
/* @__PURE__ */ jsx8(Grid, { size: 9, children: main }),
|
|
776
|
+
/* @__PURE__ */ jsx8(Grid, { className: classes.c_box_button__extra, size: 3, children: extra })
|
|
742
777
|
]
|
|
743
778
|
}
|
|
744
779
|
)
|
|
@@ -752,7 +787,7 @@ var BoxButton_default = memo2(BoxButton);
|
|
|
752
787
|
import { memo as memo3 } from "react";
|
|
753
788
|
import { CircularProgress, Button as Button5 } from "@mui/material";
|
|
754
789
|
import { makeStyles as makeStyles7 } from "tss-react/mui";
|
|
755
|
-
import { jsx as
|
|
790
|
+
import { jsx as jsx9, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
756
791
|
var useStyles7 = makeStyles7()((theme) => ({
|
|
757
792
|
button: {
|
|
758
793
|
background: colors.default,
|
|
@@ -836,7 +871,7 @@ var FilledButton = ({
|
|
|
836
871
|
variant,
|
|
837
872
|
children: [
|
|
838
873
|
copy,
|
|
839
|
-
isLoading && /* @__PURE__ */
|
|
874
|
+
isLoading && /* @__PURE__ */ jsx9(
|
|
840
875
|
CircularProgress,
|
|
841
876
|
{
|
|
842
877
|
className: classes.loadingText,
|
|
@@ -854,7 +889,7 @@ var FilledButton_default = memo3(FilledButton);
|
|
|
854
889
|
import { memo as memo4 } from "react";
|
|
855
890
|
import { Box as Box6, CircularProgress as CircularProgress2, Button as Button6 } from "@mui/material";
|
|
856
891
|
import { withStyles } from "tss-react/mui";
|
|
857
|
-
import { jsx as
|
|
892
|
+
import { jsx as jsx10, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
858
893
|
var FilledButtonLg = ({
|
|
859
894
|
classes,
|
|
860
895
|
disabled,
|
|
@@ -864,7 +899,7 @@ var FilledButtonLg = ({
|
|
|
864
899
|
handleClick,
|
|
865
900
|
loading = false,
|
|
866
901
|
loadingProps
|
|
867
|
-
}) => /* @__PURE__ */
|
|
902
|
+
}) => /* @__PURE__ */ jsx10(
|
|
868
903
|
Button6,
|
|
869
904
|
{
|
|
870
905
|
variant,
|
|
@@ -881,7 +916,7 @@ var FilledButtonLg = ({
|
|
|
881
916
|
},
|
|
882
917
|
children: [
|
|
883
918
|
copy,
|
|
884
|
-
loading && /* @__PURE__ */
|
|
919
|
+
loading && /* @__PURE__ */ jsx10(
|
|
885
920
|
CircularProgress2,
|
|
886
921
|
{
|
|
887
922
|
color: loadingProps?.color || "inherit",
|
|
@@ -961,7 +996,7 @@ var FilledButtonLg_default = memo4(ActionButtonLg);
|
|
|
961
996
|
import { memo as memo5 } from "react";
|
|
962
997
|
import { Button as Button7 } from "@mui/material";
|
|
963
998
|
import { makeStyles as makeStyles8 } from "tss-react/mui";
|
|
964
|
-
import { jsx as
|
|
999
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
965
1000
|
var useStyles8 = makeStyles8()(() => ({
|
|
966
1001
|
root: {
|
|
967
1002
|
display: "flex",
|
|
@@ -990,7 +1025,7 @@ var ImageButton = (props) => {
|
|
|
990
1025
|
const e = { target: { value } };
|
|
991
1026
|
onClick(e);
|
|
992
1027
|
};
|
|
993
|
-
return /* @__PURE__ */
|
|
1028
|
+
return /* @__PURE__ */ jsx11(Button7, { onClick: handleClick, className: classes.image, children: /* @__PURE__ */ jsx11("img", { className: classes.imageSrc, src, alt: "a_image" }) });
|
|
994
1029
|
};
|
|
995
1030
|
var ImageButton_default = memo5(ImageButton);
|
|
996
1031
|
|
|
@@ -998,7 +1033,7 @@ var ImageButton_default = memo5(ImageButton);
|
|
|
998
1033
|
import { Add as Add2, ChevronRight } from "@mui/icons-material";
|
|
999
1034
|
import { Typography as Typography5, Button as Button8 } from "@mui/material";
|
|
1000
1035
|
import { makeStyles as makeStyles9 } from "tss-react/mui";
|
|
1001
|
-
import { jsx as
|
|
1036
|
+
import { jsx as jsx12, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
1002
1037
|
var useStyles9 = makeStyles9()((theme) => ({
|
|
1003
1038
|
add: {
|
|
1004
1039
|
backgroundColor: colors.neutral100
|
|
@@ -1034,10 +1069,10 @@ var SquareButton = ({
|
|
|
1034
1069
|
}) => {
|
|
1035
1070
|
const { classes, cx } = useStyles9();
|
|
1036
1071
|
const icon = {
|
|
1037
|
-
add: /* @__PURE__ */
|
|
1038
|
-
forward: /* @__PURE__ */
|
|
1072
|
+
add: /* @__PURE__ */ jsx12(Add2, { className: classes.icon }),
|
|
1073
|
+
forward: /* @__PURE__ */ jsx12(ChevronRight, { className: classes.icon })
|
|
1039
1074
|
};
|
|
1040
|
-
return /* @__PURE__ */
|
|
1075
|
+
return /* @__PURE__ */ jsx12(
|
|
1041
1076
|
Button8,
|
|
1042
1077
|
{
|
|
1043
1078
|
className: cx(
|
|
@@ -1051,7 +1086,7 @@ var SquareButton = ({
|
|
|
1051
1086
|
variant: "contained",
|
|
1052
1087
|
children: /* @__PURE__ */ jsxs9("span", { className: classes.textWrapper, children: [
|
|
1053
1088
|
icon[type],
|
|
1054
|
-
/* @__PURE__ */
|
|
1089
|
+
/* @__PURE__ */ jsx12(Typography5, { className: classes.text, variant: "button", children })
|
|
1055
1090
|
] })
|
|
1056
1091
|
}
|
|
1057
1092
|
);
|
|
@@ -1061,7 +1096,7 @@ var SquareButton_default = SquareButton;
|
|
|
1061
1096
|
// src/components/Buttons/UploadButton/UploadButton.tsx
|
|
1062
1097
|
import { useRef, useState, forwardRef } from "react";
|
|
1063
1098
|
import { Box as Box7 } from "@mui/material";
|
|
1064
|
-
import { jsx as
|
|
1099
|
+
import { jsx as jsx13, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1065
1100
|
var UploadButton = forwardRef(
|
|
1066
1101
|
(props, ref) => {
|
|
1067
1102
|
const [file, setFile] = useState();
|
|
@@ -1080,7 +1115,7 @@ var UploadButton = forwardRef(
|
|
|
1080
1115
|
alignItems: "center"
|
|
1081
1116
|
},
|
|
1082
1117
|
children: [
|
|
1083
|
-
/* @__PURE__ */
|
|
1118
|
+
/* @__PURE__ */ jsx13(
|
|
1084
1119
|
"input",
|
|
1085
1120
|
{
|
|
1086
1121
|
...props,
|
|
@@ -1093,7 +1128,7 @@ var UploadButton = forwardRef(
|
|
|
1093
1128
|
style: { display: "none" }
|
|
1094
1129
|
}
|
|
1095
1130
|
),
|
|
1096
|
-
/* @__PURE__ */
|
|
1131
|
+
/* @__PURE__ */ jsx13(
|
|
1097
1132
|
ExtendedButton_default,
|
|
1098
1133
|
{
|
|
1099
1134
|
buttonType: "button",
|
|
@@ -1117,7 +1152,7 @@ var UploadButton_default = UploadButton;
|
|
|
1117
1152
|
import { memo as memo6 } from "react";
|
|
1118
1153
|
import { Button as Button9, CircularProgress as CircularProgress3 } from "@mui/material";
|
|
1119
1154
|
import { makeStyles as makeStyles10 } from "tss-react/mui";
|
|
1120
|
-
import { jsx as
|
|
1155
|
+
import { jsx as jsx14, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1121
1156
|
var useStyles10 = makeStyles10()((theme) => ({
|
|
1122
1157
|
default: {
|
|
1123
1158
|
boxShadow: "none",
|
|
@@ -1198,7 +1233,7 @@ var OutlinedButton = ({
|
|
|
1198
1233
|
type = "button"
|
|
1199
1234
|
}) => {
|
|
1200
1235
|
const { classes, cx } = useStyles10();
|
|
1201
|
-
return /* @__PURE__ */
|
|
1236
|
+
return /* @__PURE__ */ jsx14(
|
|
1202
1237
|
Button9,
|
|
1203
1238
|
{
|
|
1204
1239
|
className: cx(color ? classes[color] : classes.default, className, {
|
|
@@ -1219,8 +1254,8 @@ var OutlinedButton = ({
|
|
|
1219
1254
|
}),
|
|
1220
1255
|
children: [
|
|
1221
1256
|
copy,
|
|
1222
|
-
subcopy && /* @__PURE__ */
|
|
1223
|
-
isLoading && /* @__PURE__ */
|
|
1257
|
+
subcopy && /* @__PURE__ */ jsx14("span", { children: subcopy }),
|
|
1258
|
+
isLoading && /* @__PURE__ */ jsx14(
|
|
1224
1259
|
CircularProgress3,
|
|
1225
1260
|
{
|
|
1226
1261
|
className: classes.loadingIcon,
|
|
@@ -1240,8 +1275,8 @@ var OutlinedButton_default = memo6(OutlinedButton);
|
|
|
1240
1275
|
import { memo as memo7 } from "react";
|
|
1241
1276
|
import { Button as Button10 } from "@mui/material";
|
|
1242
1277
|
import { withStyles as withStyles2 } from "tss-react/mui";
|
|
1243
|
-
import { jsx as
|
|
1244
|
-
var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */
|
|
1278
|
+
import { jsx as jsx15 } from "react/jsx-runtime";
|
|
1279
|
+
var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */ jsx15(Button10, { variant, className: classes[color], children: copy });
|
|
1245
1280
|
var FilterButtonLg = withStyles2(AButton, (theme) => ({
|
|
1246
1281
|
default: {
|
|
1247
1282
|
boxShadow: "none",
|
|
@@ -1335,16 +1370,16 @@ import { Fab, Tooltip as Tooltip2 } from "@mui/material";
|
|
|
1335
1370
|
import { makeStyles as makeStyles11 } from "tss-react/mui";
|
|
1336
1371
|
|
|
1337
1372
|
// src/components/icons/BallsLogo.tsx
|
|
1338
|
-
import { jsx as
|
|
1373
|
+
import { jsx as jsx16, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1339
1374
|
var SvgBallsLogo = (props) => /* @__PURE__ */ jsxs12("svg", { viewBox: "0 0 1024 305.8", ...props, fill: "currentColor", children: [
|
|
1340
|
-
/* @__PURE__ */
|
|
1341
|
-
/* @__PURE__ */
|
|
1342
|
-
/* @__PURE__ */
|
|
1375
|
+
/* @__PURE__ */ jsx16("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" }),
|
|
1376
|
+
/* @__PURE__ */ jsx16("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" }),
|
|
1377
|
+
/* @__PURE__ */ jsx16("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" })
|
|
1343
1378
|
] });
|
|
1344
1379
|
var BallsLogo_default = SvgBallsLogo;
|
|
1345
1380
|
|
|
1346
1381
|
// src/components/icons/EmptyGlassIcon.tsx
|
|
1347
|
-
import { jsx as
|
|
1382
|
+
import { jsx as jsx17, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1348
1383
|
var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
1349
1384
|
"svg",
|
|
1350
1385
|
{
|
|
@@ -1355,8 +1390,8 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1355
1390
|
fill: "none",
|
|
1356
1391
|
...props,
|
|
1357
1392
|
children: [
|
|
1358
|
-
/* @__PURE__ */
|
|
1359
|
-
/* @__PURE__ */
|
|
1393
|
+
/* @__PURE__ */ jsx17("g", { id: "Frame", clipPath: "url(#clip0_454_24067)", children: /* @__PURE__ */ jsxs13("g", { id: "Clip path group", children: [
|
|
1394
|
+
/* @__PURE__ */ jsx17(
|
|
1360
1395
|
"mask",
|
|
1361
1396
|
{
|
|
1362
1397
|
id: "mask0_454_24067",
|
|
@@ -1365,11 +1400,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1365
1400
|
y: "0",
|
|
1366
1401
|
width: "140",
|
|
1367
1402
|
height: "140",
|
|
1368
|
-
children: /* @__PURE__ */
|
|
1403
|
+
children: /* @__PURE__ */ jsx17("g", { id: "__lottie_element_11", children: /* @__PURE__ */ jsx17("path", { id: "Vector", d: "M140 0H0V140H140V0Z", fill: "white" }) })
|
|
1369
1404
|
}
|
|
1370
1405
|
),
|
|
1371
|
-
/* @__PURE__ */
|
|
1372
|
-
/* @__PURE__ */
|
|
1406
|
+
/* @__PURE__ */ jsx17("g", { mask: "url(#mask0_454_24067)", children: /* @__PURE__ */ jsx17("g", { id: "Group", children: /* @__PURE__ */ jsxs13("g", { id: "Clip path group_2", children: [
|
|
1407
|
+
/* @__PURE__ */ jsx17(
|
|
1373
1408
|
"mask",
|
|
1374
1409
|
{
|
|
1375
1410
|
id: "mask1_454_24067",
|
|
@@ -1378,11 +1413,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1378
1413
|
y: "0",
|
|
1379
1414
|
width: "140",
|
|
1380
1415
|
height: "140",
|
|
1381
|
-
children: /* @__PURE__ */
|
|
1416
|
+
children: /* @__PURE__ */ jsx17("g", { id: "__lottie_element_13", children: /* @__PURE__ */ jsx17("path", { id: "Vector_2", d: "M0 0H140V140H0V0Z", fill: "white" }) })
|
|
1382
1417
|
}
|
|
1383
1418
|
),
|
|
1384
|
-
/* @__PURE__ */
|
|
1385
|
-
/* @__PURE__ */
|
|
1419
|
+
/* @__PURE__ */ jsx17("g", { mask: "url(#mask1_454_24067)", children: /* @__PURE__ */ jsx17("g", { id: "Group_2", children: /* @__PURE__ */ jsxs13("g", { id: "Group_3", children: [
|
|
1420
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_4", children: /* @__PURE__ */ jsx17(
|
|
1386
1421
|
"path",
|
|
1387
1422
|
{
|
|
1388
1423
|
id: "Vector_3",
|
|
@@ -1390,7 +1425,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1390
1425
|
fill: "#B6B2D8"
|
|
1391
1426
|
}
|
|
1392
1427
|
) }),
|
|
1393
|
-
/* @__PURE__ */
|
|
1428
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_5", children: /* @__PURE__ */ jsx17(
|
|
1394
1429
|
"path",
|
|
1395
1430
|
{
|
|
1396
1431
|
id: "Vector_4",
|
|
@@ -1398,7 +1433,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1398
1433
|
fill: "#EECB3A"
|
|
1399
1434
|
}
|
|
1400
1435
|
) }),
|
|
1401
|
-
/* @__PURE__ */
|
|
1436
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_6", children: /* @__PURE__ */ jsx17(
|
|
1402
1437
|
"path",
|
|
1403
1438
|
{
|
|
1404
1439
|
id: "Vector_5",
|
|
@@ -1406,7 +1441,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1406
1441
|
fill: "#F1F1F2"
|
|
1407
1442
|
}
|
|
1408
1443
|
) }),
|
|
1409
|
-
/* @__PURE__ */
|
|
1444
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_7", children: /* @__PURE__ */ jsx17(
|
|
1410
1445
|
"path",
|
|
1411
1446
|
{
|
|
1412
1447
|
id: "Vector_6",
|
|
@@ -1414,7 +1449,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1414
1449
|
fill: "#EECB3A"
|
|
1415
1450
|
}
|
|
1416
1451
|
) }),
|
|
1417
|
-
/* @__PURE__ */
|
|
1452
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_8", children: /* @__PURE__ */ jsx17(
|
|
1418
1453
|
"path",
|
|
1419
1454
|
{
|
|
1420
1455
|
id: "Vector_7",
|
|
@@ -1422,7 +1457,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1422
1457
|
fill: "#B6B2D8"
|
|
1423
1458
|
}
|
|
1424
1459
|
) }),
|
|
1425
|
-
/* @__PURE__ */
|
|
1460
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_9", children: /* @__PURE__ */ jsx17(
|
|
1426
1461
|
"path",
|
|
1427
1462
|
{
|
|
1428
1463
|
id: "Vector_8",
|
|
@@ -1430,7 +1465,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1430
1465
|
fill: "#F6D977"
|
|
1431
1466
|
}
|
|
1432
1467
|
) }),
|
|
1433
|
-
/* @__PURE__ */
|
|
1468
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_10", opacity: "0.655813", children: /* @__PURE__ */ jsx17(
|
|
1434
1469
|
"path",
|
|
1435
1470
|
{
|
|
1436
1471
|
id: "Vector_9",
|
|
@@ -1438,7 +1473,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1438
1473
|
fill: "#B6B2D8"
|
|
1439
1474
|
}
|
|
1440
1475
|
) }),
|
|
1441
|
-
/* @__PURE__ */
|
|
1476
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_11", children: /* @__PURE__ */ jsx17(
|
|
1442
1477
|
"path",
|
|
1443
1478
|
{
|
|
1444
1479
|
id: "Vector_10",
|
|
@@ -1446,7 +1481,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1446
1481
|
fill: "#FFFEFF"
|
|
1447
1482
|
}
|
|
1448
1483
|
) }),
|
|
1449
|
-
/* @__PURE__ */
|
|
1484
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_12", children: /* @__PURE__ */ jsx17(
|
|
1450
1485
|
"path",
|
|
1451
1486
|
{
|
|
1452
1487
|
id: "Vector_11",
|
|
@@ -1454,7 +1489,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1454
1489
|
fill: "#EECB3A"
|
|
1455
1490
|
}
|
|
1456
1491
|
) }),
|
|
1457
|
-
/* @__PURE__ */
|
|
1492
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_13", children: /* @__PURE__ */ jsx17(
|
|
1458
1493
|
"path",
|
|
1459
1494
|
{
|
|
1460
1495
|
id: "Vector_12",
|
|
@@ -1463,7 +1498,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1463
1498
|
}
|
|
1464
1499
|
) }),
|
|
1465
1500
|
/* @__PURE__ */ jsxs13("g", { id: "Group_14", children: [
|
|
1466
|
-
/* @__PURE__ */
|
|
1501
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_15", children: /* @__PURE__ */ jsx17(
|
|
1467
1502
|
"path",
|
|
1468
1503
|
{
|
|
1469
1504
|
id: "Vector_13",
|
|
@@ -1471,7 +1506,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1471
1506
|
fill: "#BF7F42"
|
|
1472
1507
|
}
|
|
1473
1508
|
) }),
|
|
1474
|
-
/* @__PURE__ */
|
|
1509
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_16", children: /* @__PURE__ */ jsx17(
|
|
1475
1510
|
"path",
|
|
1476
1511
|
{
|
|
1477
1512
|
id: "Vector_14",
|
|
@@ -1479,7 +1514,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1479
1514
|
fill: "#C2D1E0"
|
|
1480
1515
|
}
|
|
1481
1516
|
) }),
|
|
1482
|
-
/* @__PURE__ */
|
|
1517
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_17", children: /* @__PURE__ */ jsx17(
|
|
1483
1518
|
"path",
|
|
1484
1519
|
{
|
|
1485
1520
|
id: "Vector_15",
|
|
@@ -1487,7 +1522,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1487
1522
|
fill: "#D2E0EA"
|
|
1488
1523
|
}
|
|
1489
1524
|
) }),
|
|
1490
|
-
/* @__PURE__ */
|
|
1525
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_18", children: /* @__PURE__ */ jsx17(
|
|
1491
1526
|
"path",
|
|
1492
1527
|
{
|
|
1493
1528
|
id: "Vector_16",
|
|
@@ -1495,7 +1530,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1495
1530
|
fill: "#8EC5EA"
|
|
1496
1531
|
}
|
|
1497
1532
|
) }),
|
|
1498
|
-
/* @__PURE__ */
|
|
1533
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_19", children: /* @__PURE__ */ jsx17(
|
|
1499
1534
|
"path",
|
|
1500
1535
|
{
|
|
1501
1536
|
id: "Vector_17",
|
|
@@ -1503,7 +1538,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1503
1538
|
fill: "#70AFDE"
|
|
1504
1539
|
}
|
|
1505
1540
|
) }),
|
|
1506
|
-
/* @__PURE__ */
|
|
1541
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_20", children: /* @__PURE__ */ jsx17(
|
|
1507
1542
|
"path",
|
|
1508
1543
|
{
|
|
1509
1544
|
id: "Vector_18",
|
|
@@ -1511,7 +1546,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1511
1546
|
fill: "#B5713E"
|
|
1512
1547
|
}
|
|
1513
1548
|
) }),
|
|
1514
|
-
/* @__PURE__ */
|
|
1549
|
+
/* @__PURE__ */ jsx17("g", { id: "Group_21", opacity: "0.2", children: /* @__PURE__ */ jsx17(
|
|
1515
1550
|
"path",
|
|
1516
1551
|
{
|
|
1517
1552
|
id: "Vector_19",
|
|
@@ -1523,37 +1558,37 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1523
1558
|
] }) }) })
|
|
1524
1559
|
] }) }) })
|
|
1525
1560
|
] }) }),
|
|
1526
|
-
/* @__PURE__ */
|
|
1561
|
+
/* @__PURE__ */ jsx17("defs", { children: /* @__PURE__ */ jsx17("clipPath", { id: "clip0_454_24067", children: /* @__PURE__ */ jsx17("rect", { width: "140", height: "140", fill: "white" }) }) })
|
|
1527
1562
|
]
|
|
1528
1563
|
}
|
|
1529
1564
|
);
|
|
1530
1565
|
var EmptyGlassIcon_default = SvgEmptyGlassIcon;
|
|
1531
1566
|
|
|
1532
1567
|
// src/components/icons/IconAccount.tsx
|
|
1533
|
-
import { jsx as
|
|
1568
|
+
import { jsx as jsx18, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1534
1569
|
var SvgIconAccount = (props) => /* @__PURE__ */ jsxs14("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1535
|
-
/* @__PURE__ */
|
|
1570
|
+
/* @__PURE__ */ jsx18(
|
|
1536
1571
|
"path",
|
|
1537
1572
|
{
|
|
1538
1573
|
className: "icon-account_svg__st0",
|
|
1539
1574
|
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"
|
|
1540
1575
|
}
|
|
1541
1576
|
),
|
|
1542
|
-
/* @__PURE__ */
|
|
1577
|
+
/* @__PURE__ */ jsx18(
|
|
1543
1578
|
"path",
|
|
1544
1579
|
{
|
|
1545
1580
|
className: "icon-account_svg__st0",
|
|
1546
1581
|
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"
|
|
1547
1582
|
}
|
|
1548
1583
|
),
|
|
1549
|
-
/* @__PURE__ */
|
|
1584
|
+
/* @__PURE__ */ jsx18(
|
|
1550
1585
|
"path",
|
|
1551
1586
|
{
|
|
1552
1587
|
className: "icon-account_svg__st1",
|
|
1553
1588
|
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"
|
|
1554
1589
|
}
|
|
1555
1590
|
),
|
|
1556
|
-
/* @__PURE__ */
|
|
1591
|
+
/* @__PURE__ */ jsx18(
|
|
1557
1592
|
"path",
|
|
1558
1593
|
{
|
|
1559
1594
|
className: "icon-account_svg__st1",
|
|
@@ -1564,8 +1599,8 @@ var SvgIconAccount = (props) => /* @__PURE__ */ jsxs14("svg", { viewBox: "0 0 55
|
|
|
1564
1599
|
var IconAccount_default = SvgIconAccount;
|
|
1565
1600
|
|
|
1566
1601
|
// src/components/icons/IconAccounts.tsx
|
|
1567
|
-
import { jsx as
|
|
1568
|
-
var SvgIconAccounts = (props) => /* @__PURE__ */
|
|
1602
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
1603
|
+
var SvgIconAccounts = (props) => /* @__PURE__ */ jsx19("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx19(
|
|
1569
1604
|
"path",
|
|
1570
1605
|
{
|
|
1571
1606
|
className: "icon-accounts_svg__st0",
|
|
@@ -1575,7 +1610,7 @@ var SvgIconAccounts = (props) => /* @__PURE__ */ jsx18("svg", { viewBox: "0 0 55
|
|
|
1575
1610
|
var IconAccounts_default = SvgIconAccounts;
|
|
1576
1611
|
|
|
1577
1612
|
// src/components/icons/IconAvocado.tsx
|
|
1578
|
-
import { jsx as
|
|
1613
|
+
import { jsx as jsx20, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1579
1614
|
var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
1580
1615
|
"svg",
|
|
1581
1616
|
{
|
|
@@ -1585,7 +1620,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1585
1620
|
fill: "none",
|
|
1586
1621
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1587
1622
|
children: [
|
|
1588
|
-
/* @__PURE__ */
|
|
1623
|
+
/* @__PURE__ */ jsx20(
|
|
1589
1624
|
"path",
|
|
1590
1625
|
{
|
|
1591
1626
|
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",
|
|
@@ -1594,7 +1629,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1594
1629
|
strokeMiterlimit: "10"
|
|
1595
1630
|
}
|
|
1596
1631
|
),
|
|
1597
|
-
/* @__PURE__ */
|
|
1632
|
+
/* @__PURE__ */ jsx20(
|
|
1598
1633
|
"path",
|
|
1599
1634
|
{
|
|
1600
1635
|
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",
|
|
@@ -1609,7 +1644,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1609
1644
|
var IconAvocado_default = SvgIconAvocado;
|
|
1610
1645
|
|
|
1611
1646
|
// src/components/icons/IconBanana.tsx
|
|
1612
|
-
import { jsx as
|
|
1647
|
+
import { jsx as jsx21, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1613
1648
|
var SvgIconBanana = () => /* @__PURE__ */ jsxs16(
|
|
1614
1649
|
"svg",
|
|
1615
1650
|
{
|
|
@@ -1619,52 +1654,52 @@ var SvgIconBanana = () => /* @__PURE__ */ jsxs16(
|
|
|
1619
1654
|
fill: "none",
|
|
1620
1655
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1621
1656
|
children: [
|
|
1622
|
-
/* @__PURE__ */
|
|
1657
|
+
/* @__PURE__ */ jsx21("g", { clipPath: "url(#clip0_0_2321)", children: /* @__PURE__ */ jsx21(
|
|
1623
1658
|
"path",
|
|
1624
1659
|
{
|
|
1625
1660
|
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",
|
|
1626
1661
|
fill: colors.neutral800
|
|
1627
1662
|
}
|
|
1628
1663
|
) }),
|
|
1629
|
-
/* @__PURE__ */
|
|
1664
|
+
/* @__PURE__ */ jsx21("defs", { children: /* @__PURE__ */ jsx21("clipPath", { id: "clip0_0_2321", children: /* @__PURE__ */ jsx21("rect", { width: "24", height: "22", fill: "white" }) }) })
|
|
1630
1665
|
]
|
|
1631
1666
|
}
|
|
1632
1667
|
);
|
|
1633
1668
|
var IconBanana_default = SvgIconBanana;
|
|
1634
1669
|
|
|
1635
1670
|
// src/components/icons/IconBuying.tsx
|
|
1636
|
-
import { jsx as
|
|
1671
|
+
import { jsx as jsx22, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1637
1672
|
var SvgIconBuying = (props) => /* @__PURE__ */ jsxs17("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1638
|
-
/* @__PURE__ */
|
|
1673
|
+
/* @__PURE__ */ jsx22(
|
|
1639
1674
|
"path",
|
|
1640
1675
|
{
|
|
1641
1676
|
className: "icon-buying_svg__st0",
|
|
1642
1677
|
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"
|
|
1643
1678
|
}
|
|
1644
1679
|
),
|
|
1645
|
-
/* @__PURE__ */
|
|
1680
|
+
/* @__PURE__ */ jsx22(
|
|
1646
1681
|
"path",
|
|
1647
1682
|
{
|
|
1648
1683
|
className: "icon-buying_svg__st0",
|
|
1649
1684
|
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"
|
|
1650
1685
|
}
|
|
1651
1686
|
),
|
|
1652
|
-
/* @__PURE__ */
|
|
1687
|
+
/* @__PURE__ */ jsx22("circle", { className: "icon-buying_svg__st0", cx: 34.7, cy: 38.1, r: 2.6 })
|
|
1653
1688
|
] });
|
|
1654
1689
|
var IconBuying_default = SvgIconBuying;
|
|
1655
1690
|
|
|
1656
1691
|
// src/components/icons/IconContentManagement.tsx
|
|
1657
|
-
import { jsx as
|
|
1692
|
+
import { jsx as jsx23, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1658
1693
|
var IconContentManagement = (props) => /* @__PURE__ */ jsxs18("svg", { viewBox: "0 0 55 56.7", ...props, fill: "0000", strokeWidth: "0px", children: [
|
|
1659
|
-
/* @__PURE__ */
|
|
1694
|
+
/* @__PURE__ */ jsx23(
|
|
1660
1695
|
"path",
|
|
1661
1696
|
{
|
|
1662
1697
|
className: "cls-1",
|
|
1663
1698
|
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"
|
|
1664
1699
|
}
|
|
1665
1700
|
),
|
|
1666
|
-
/* @__PURE__ */
|
|
1667
|
-
/* @__PURE__ */
|
|
1701
|
+
/* @__PURE__ */ jsx23("rect", { className: "cls-1", x: "21.6", y: "34.1", width: "3.6", height: "5.2" }),
|
|
1702
|
+
/* @__PURE__ */ jsx23(
|
|
1668
1703
|
"path",
|
|
1669
1704
|
{
|
|
1670
1705
|
className: "cls-1",
|
|
@@ -1675,23 +1710,23 @@ var IconContentManagement = (props) => /* @__PURE__ */ jsxs18("svg", { viewBox:
|
|
|
1675
1710
|
var IconContentManagement_default = IconContentManagement;
|
|
1676
1711
|
|
|
1677
1712
|
// src/components/icons/IconGoodsin.tsx
|
|
1678
|
-
import { jsx as
|
|
1713
|
+
import { jsx as jsx24, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1679
1714
|
var SvgIconGoodsin = (props) => /* @__PURE__ */ jsxs19("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1680
|
-
/* @__PURE__ */
|
|
1715
|
+
/* @__PURE__ */ jsx24(
|
|
1681
1716
|
"path",
|
|
1682
1717
|
{
|
|
1683
1718
|
className: "icon-goodsin_svg__st0",
|
|
1684
1719
|
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"
|
|
1685
1720
|
}
|
|
1686
1721
|
),
|
|
1687
|
-
/* @__PURE__ */
|
|
1722
|
+
/* @__PURE__ */ jsx24(
|
|
1688
1723
|
"path",
|
|
1689
1724
|
{
|
|
1690
1725
|
className: "icon-goodsin_svg__st0",
|
|
1691
1726
|
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"
|
|
1692
1727
|
}
|
|
1693
1728
|
),
|
|
1694
|
-
/* @__PURE__ */
|
|
1729
|
+
/* @__PURE__ */ jsx24(
|
|
1695
1730
|
"path",
|
|
1696
1731
|
{
|
|
1697
1732
|
className: "icon-goodsin_svg__st0",
|
|
@@ -1702,8 +1737,8 @@ var SvgIconGoodsin = (props) => /* @__PURE__ */ jsxs19("svg", { viewBox: "0 0 55
|
|
|
1702
1737
|
var IconGoodsin_default = SvgIconGoodsin;
|
|
1703
1738
|
|
|
1704
1739
|
// src/components/icons/IconGrape.tsx
|
|
1705
|
-
import { jsx as
|
|
1706
|
-
var SvgIconGrape = (props) => /* @__PURE__ */
|
|
1740
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
1741
|
+
var SvgIconGrape = (props) => /* @__PURE__ */ jsx25(
|
|
1707
1742
|
"svg",
|
|
1708
1743
|
{
|
|
1709
1744
|
width: "24",
|
|
@@ -1712,7 +1747,7 @@ var SvgIconGrape = (props) => /* @__PURE__ */ jsx24(
|
|
|
1712
1747
|
fill: "none",
|
|
1713
1748
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1714
1749
|
...props,
|
|
1715
|
-
children: /* @__PURE__ */
|
|
1750
|
+
children: /* @__PURE__ */ jsx25(
|
|
1716
1751
|
"path",
|
|
1717
1752
|
{
|
|
1718
1753
|
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",
|
|
@@ -1724,23 +1759,23 @@ var SvgIconGrape = (props) => /* @__PURE__ */ jsx24(
|
|
|
1724
1759
|
var IconGrape_default = SvgIconGrape;
|
|
1725
1760
|
|
|
1726
1761
|
// src/components/icons/IconHome.tsx
|
|
1727
|
-
import { jsx as
|
|
1762
|
+
import { jsx as jsx26, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1728
1763
|
var SvgIconHome = (props) => /* @__PURE__ */ jsxs20("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1729
|
-
/* @__PURE__ */
|
|
1764
|
+
/* @__PURE__ */ jsx26(
|
|
1730
1765
|
"path",
|
|
1731
1766
|
{
|
|
1732
1767
|
className: "icon-home_svg__st0",
|
|
1733
1768
|
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"
|
|
1734
1769
|
}
|
|
1735
1770
|
),
|
|
1736
|
-
/* @__PURE__ */
|
|
1771
|
+
/* @__PURE__ */ jsx26(
|
|
1737
1772
|
"path",
|
|
1738
1773
|
{
|
|
1739
1774
|
className: "icon-home_svg__st0",
|
|
1740
1775
|
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"
|
|
1741
1776
|
}
|
|
1742
1777
|
),
|
|
1743
|
-
/* @__PURE__ */
|
|
1778
|
+
/* @__PURE__ */ jsx26(
|
|
1744
1779
|
"path",
|
|
1745
1780
|
{
|
|
1746
1781
|
className: "icon-home_svg__st1",
|
|
@@ -1751,8 +1786,8 @@ var SvgIconHome = (props) => /* @__PURE__ */ jsxs20("svg", { viewBox: "0 0 55 56
|
|
|
1751
1786
|
var IconHome_default = SvgIconHome;
|
|
1752
1787
|
|
|
1753
1788
|
// src/components/icons/IconImport.tsx
|
|
1754
|
-
import { jsx as
|
|
1755
|
-
var SvgIconImport = (props) => /* @__PURE__ */
|
|
1789
|
+
import { jsx as jsx27 } from "react/jsx-runtime";
|
|
1790
|
+
var SvgIconImport = (props) => /* @__PURE__ */ jsx27("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "-8 -8 40 40", ...props, children: /* @__PURE__ */ jsx27(
|
|
1756
1791
|
"path",
|
|
1757
1792
|
{
|
|
1758
1793
|
className: "icon-runs_svg__st0",
|
|
@@ -1762,16 +1797,16 @@ var SvgIconImport = (props) => /* @__PURE__ */ jsx26("svg", { xmlns: "http://www
|
|
|
1762
1797
|
var IconImport_default = SvgIconImport;
|
|
1763
1798
|
|
|
1764
1799
|
// src/components/icons/IconLocation.tsx
|
|
1765
|
-
import { jsx as
|
|
1800
|
+
import { jsx as jsx28, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1766
1801
|
var SvgIconLocation = (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1767
|
-
/* @__PURE__ */
|
|
1802
|
+
/* @__PURE__ */ jsx28(
|
|
1768
1803
|
"path",
|
|
1769
1804
|
{
|
|
1770
1805
|
className: "icon-location_svg__st0",
|
|
1771
1806
|
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"
|
|
1772
1807
|
}
|
|
1773
1808
|
),
|
|
1774
|
-
/* @__PURE__ */
|
|
1809
|
+
/* @__PURE__ */ jsx28(
|
|
1775
1810
|
"path",
|
|
1776
1811
|
{
|
|
1777
1812
|
className: "icon-location_svg__st0",
|
|
@@ -1782,16 +1817,16 @@ var SvgIconLocation = (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 5
|
|
|
1782
1817
|
var IconLocation_default = SvgIconLocation;
|
|
1783
1818
|
|
|
1784
1819
|
// src/components/icons/IconLogin.tsx
|
|
1785
|
-
import { jsx as
|
|
1820
|
+
import { jsx as jsx29, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1786
1821
|
var SvgIconLogin = (props) => /* @__PURE__ */ jsxs22("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1787
|
-
/* @__PURE__ */
|
|
1822
|
+
/* @__PURE__ */ jsx29(
|
|
1788
1823
|
"path",
|
|
1789
1824
|
{
|
|
1790
1825
|
className: "icon-login_svg__st0",
|
|
1791
1826
|
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"
|
|
1792
1827
|
}
|
|
1793
1828
|
),
|
|
1794
|
-
/* @__PURE__ */
|
|
1829
|
+
/* @__PURE__ */ jsx29(
|
|
1795
1830
|
"path",
|
|
1796
1831
|
{
|
|
1797
1832
|
className: "icon-login_svg__st0",
|
|
@@ -1802,16 +1837,16 @@ var SvgIconLogin = (props) => /* @__PURE__ */ jsxs22("svg", { viewBox: "0 0 55 5
|
|
|
1802
1837
|
var IconLogin_default = SvgIconLogin;
|
|
1803
1838
|
|
|
1804
1839
|
// src/components/icons/IconNotification.tsx
|
|
1805
|
-
import { jsx as
|
|
1840
|
+
import { jsx as jsx30, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1806
1841
|
var SvgIconNotification = (props) => /* @__PURE__ */ jsxs23("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1807
|
-
/* @__PURE__ */
|
|
1842
|
+
/* @__PURE__ */ jsx30(
|
|
1808
1843
|
"path",
|
|
1809
1844
|
{
|
|
1810
1845
|
className: "icon-notification_svg__st0",
|
|
1811
1846
|
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"
|
|
1812
1847
|
}
|
|
1813
1848
|
),
|
|
1814
|
-
/* @__PURE__ */
|
|
1849
|
+
/* @__PURE__ */ jsx30(
|
|
1815
1850
|
"path",
|
|
1816
1851
|
{
|
|
1817
1852
|
className: "icon-notification_svg__st0",
|
|
@@ -1822,24 +1857,24 @@ var SvgIconNotification = (props) => /* @__PURE__ */ jsxs23("svg", { viewBox: "0
|
|
|
1822
1857
|
var IconNotification_default = SvgIconNotification;
|
|
1823
1858
|
|
|
1824
1859
|
// src/components/icons/IconOpsMetrics.tsx
|
|
1825
|
-
import { jsx as
|
|
1860
|
+
import { jsx as jsx31, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1826
1861
|
var SvgIconOpsMetrics = (props) => /* @__PURE__ */ jsxs24("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1827
|
-
/* @__PURE__ */
|
|
1828
|
-
/* @__PURE__ */
|
|
1862
|
+
/* @__PURE__ */ jsx31("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" }),
|
|
1863
|
+
/* @__PURE__ */ jsx31("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" })
|
|
1829
1864
|
] });
|
|
1830
1865
|
var IconOpsMetrics_default = SvgIconOpsMetrics;
|
|
1831
1866
|
|
|
1832
1867
|
// src/components/icons/IconOrders.tsx
|
|
1833
|
-
import { jsx as
|
|
1868
|
+
import { jsx as jsx32, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1834
1869
|
var SvgIconOrders = (props) => /* @__PURE__ */ jsxs25("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1835
|
-
/* @__PURE__ */
|
|
1870
|
+
/* @__PURE__ */ jsx32(
|
|
1836
1871
|
"path",
|
|
1837
1872
|
{
|
|
1838
1873
|
className: "icon-orders_svg__st0",
|
|
1839
1874
|
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"
|
|
1840
1875
|
}
|
|
1841
1876
|
),
|
|
1842
|
-
/* @__PURE__ */
|
|
1877
|
+
/* @__PURE__ */ jsx32(
|
|
1843
1878
|
"path",
|
|
1844
1879
|
{
|
|
1845
1880
|
className: "icon-orders_svg__st0",
|
|
@@ -1850,8 +1885,8 @@ var SvgIconOrders = (props) => /* @__PURE__ */ jsxs25("svg", { viewBox: "0 0 55
|
|
|
1850
1885
|
var IconOrders_default = SvgIconOrders;
|
|
1851
1886
|
|
|
1852
1887
|
// src/components/icons/IconPhone.tsx
|
|
1853
|
-
import { jsx as
|
|
1854
|
-
var SvgIconPhone = (props) => /* @__PURE__ */
|
|
1888
|
+
import { jsx as jsx33 } from "react/jsx-runtime";
|
|
1889
|
+
var SvgIconPhone = (props) => /* @__PURE__ */ jsx33("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx33(
|
|
1855
1890
|
"path",
|
|
1856
1891
|
{
|
|
1857
1892
|
className: "icon-phone_svg__st0",
|
|
@@ -1861,30 +1896,30 @@ var SvgIconPhone = (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 55 56
|
|
|
1861
1896
|
var IconPhone_default = SvgIconPhone;
|
|
1862
1897
|
|
|
1863
1898
|
// src/components/icons/IconPriceList.tsx
|
|
1864
|
-
import { jsx as
|
|
1899
|
+
import { jsx as jsx34, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
1865
1900
|
var SvgIconPriceList = (props) => /* @__PURE__ */ jsxs26("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1866
|
-
/* @__PURE__ */
|
|
1901
|
+
/* @__PURE__ */ jsx34(
|
|
1867
1902
|
"path",
|
|
1868
1903
|
{
|
|
1869
1904
|
className: "icon-price-list_svg__st0",
|
|
1870
1905
|
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"
|
|
1871
1906
|
}
|
|
1872
1907
|
),
|
|
1873
|
-
/* @__PURE__ */
|
|
1908
|
+
/* @__PURE__ */ jsx34(
|
|
1874
1909
|
"path",
|
|
1875
1910
|
{
|
|
1876
1911
|
className: "icon-price-list_svg__st0",
|
|
1877
1912
|
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"
|
|
1878
1913
|
}
|
|
1879
1914
|
),
|
|
1880
|
-
/* @__PURE__ */
|
|
1915
|
+
/* @__PURE__ */ jsx34(
|
|
1881
1916
|
"path",
|
|
1882
1917
|
{
|
|
1883
1918
|
className: "icon-price-list_svg__st1",
|
|
1884
1919
|
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"
|
|
1885
1920
|
}
|
|
1886
1921
|
),
|
|
1887
|
-
/* @__PURE__ */
|
|
1922
|
+
/* @__PURE__ */ jsx34(
|
|
1888
1923
|
"path",
|
|
1889
1924
|
{
|
|
1890
1925
|
className: "icon-price-list_svg__st1",
|
|
@@ -1895,16 +1930,16 @@ var SvgIconPriceList = (props) => /* @__PURE__ */ jsxs26("svg", { viewBox: "0 0
|
|
|
1895
1930
|
var IconPriceList_default = SvgIconPriceList;
|
|
1896
1931
|
|
|
1897
1932
|
// src/components/icons/IconProducts.tsx
|
|
1898
|
-
import { jsx as
|
|
1933
|
+
import { jsx as jsx35, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
1899
1934
|
var SvgIconProducts = (props) => /* @__PURE__ */ jsxs27("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1900
|
-
/* @__PURE__ */
|
|
1935
|
+
/* @__PURE__ */ jsx35(
|
|
1901
1936
|
"path",
|
|
1902
1937
|
{
|
|
1903
1938
|
className: "icon-products_svg__st0",
|
|
1904
1939
|
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"
|
|
1905
1940
|
}
|
|
1906
1941
|
),
|
|
1907
|
-
/* @__PURE__ */
|
|
1942
|
+
/* @__PURE__ */ jsx35(
|
|
1908
1943
|
"path",
|
|
1909
1944
|
{
|
|
1910
1945
|
className: "icon-products_svg__st0",
|
|
@@ -1915,79 +1950,79 @@ var SvgIconProducts = (props) => /* @__PURE__ */ jsxs27("svg", { viewBox: "0 0 5
|
|
|
1915
1950
|
var IconProducts_default = SvgIconProducts;
|
|
1916
1951
|
|
|
1917
1952
|
// src/components/icons/IconPromoCode.tsx
|
|
1918
|
-
import { jsx as
|
|
1953
|
+
import { jsx as jsx36, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
1919
1954
|
var SvgIconPromoCode = (props) => /* @__PURE__ */ jsxs28("svg", { viewBox: "0 0 42.5 42.5", ...props, children: [
|
|
1920
|
-
/* @__PURE__ */
|
|
1955
|
+
/* @__PURE__ */ jsx36(
|
|
1921
1956
|
"path",
|
|
1922
1957
|
{
|
|
1923
1958
|
className: "promo_code_svg_st0",
|
|
1924
1959
|
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"
|
|
1925
1960
|
}
|
|
1926
1961
|
),
|
|
1927
|
-
/* @__PURE__ */
|
|
1962
|
+
/* @__PURE__ */ jsx36(
|
|
1928
1963
|
"path",
|
|
1929
1964
|
{
|
|
1930
1965
|
className: "promo_code_svg_st0",
|
|
1931
1966
|
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"
|
|
1932
1967
|
}
|
|
1933
1968
|
),
|
|
1934
|
-
/* @__PURE__ */
|
|
1969
|
+
/* @__PURE__ */ jsx36(
|
|
1935
1970
|
"path",
|
|
1936
1971
|
{
|
|
1937
1972
|
className: "promo_code_svg_st0",
|
|
1938
1973
|
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"
|
|
1939
1974
|
}
|
|
1940
1975
|
),
|
|
1941
|
-
/* @__PURE__ */
|
|
1976
|
+
/* @__PURE__ */ jsx36(
|
|
1942
1977
|
"path",
|
|
1943
1978
|
{
|
|
1944
1979
|
className: "promo_code_svg_st0",
|
|
1945
1980
|
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"
|
|
1946
1981
|
}
|
|
1947
1982
|
),
|
|
1948
|
-
/* @__PURE__ */
|
|
1983
|
+
/* @__PURE__ */ jsx36(
|
|
1949
1984
|
"path",
|
|
1950
1985
|
{
|
|
1951
1986
|
className: "promo_code_svg_st0",
|
|
1952
1987
|
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"
|
|
1953
1988
|
}
|
|
1954
1989
|
),
|
|
1955
|
-
/* @__PURE__ */
|
|
1990
|
+
/* @__PURE__ */ jsx36(
|
|
1956
1991
|
"path",
|
|
1957
1992
|
{
|
|
1958
1993
|
className: "promo_code_svg_st0",
|
|
1959
1994
|
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"
|
|
1960
1995
|
}
|
|
1961
1996
|
),
|
|
1962
|
-
/* @__PURE__ */
|
|
1997
|
+
/* @__PURE__ */ jsx36(
|
|
1963
1998
|
"path",
|
|
1964
1999
|
{
|
|
1965
2000
|
className: "promo_code_svg_st0",
|
|
1966
2001
|
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"
|
|
1967
2002
|
}
|
|
1968
2003
|
),
|
|
1969
|
-
/* @__PURE__ */
|
|
2004
|
+
/* @__PURE__ */ jsx36(
|
|
1970
2005
|
"path",
|
|
1971
2006
|
{
|
|
1972
2007
|
className: "promo_code_svg_st0",
|
|
1973
2008
|
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"
|
|
1974
2009
|
}
|
|
1975
2010
|
),
|
|
1976
|
-
/* @__PURE__ */
|
|
2011
|
+
/* @__PURE__ */ jsx36(
|
|
1977
2012
|
"path",
|
|
1978
2013
|
{
|
|
1979
2014
|
className: "promo_code_svg_st0",
|
|
1980
2015
|
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"
|
|
1981
2016
|
}
|
|
1982
2017
|
),
|
|
1983
|
-
/* @__PURE__ */
|
|
2018
|
+
/* @__PURE__ */ jsx36(
|
|
1984
2019
|
"path",
|
|
1985
2020
|
{
|
|
1986
2021
|
className: "promo_code_svg_st0",
|
|
1987
2022
|
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"
|
|
1988
2023
|
}
|
|
1989
2024
|
),
|
|
1990
|
-
/* @__PURE__ */
|
|
2025
|
+
/* @__PURE__ */ jsx36(
|
|
1991
2026
|
"path",
|
|
1992
2027
|
{
|
|
1993
2028
|
className: "promo_code_svg_st0",
|
|
@@ -1998,8 +2033,8 @@ var SvgIconPromoCode = (props) => /* @__PURE__ */ jsxs28("svg", { viewBox: "0 0
|
|
|
1998
2033
|
var IconPromoCode_default = SvgIconPromoCode;
|
|
1999
2034
|
|
|
2000
2035
|
// src/components/icons/IconQc.tsx
|
|
2001
|
-
import { jsx as
|
|
2002
|
-
var SvgIconQc = (props) => /* @__PURE__ */
|
|
2036
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
2037
|
+
var SvgIconQc = (props) => /* @__PURE__ */ jsx37("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx37(
|
|
2003
2038
|
"path",
|
|
2004
2039
|
{
|
|
2005
2040
|
className: "icon-qc_svg__st0",
|
|
@@ -2009,8 +2044,8 @@ var SvgIconQc = (props) => /* @__PURE__ */ jsx36("svg", { viewBox: "0 0 55 56.7"
|
|
|
2009
2044
|
var IconQc_default = SvgIconQc;
|
|
2010
2045
|
|
|
2011
2046
|
// src/components/icons/IconReports.tsx
|
|
2012
|
-
import { jsx as
|
|
2013
|
-
var SvgIconReports = (props) => /* @__PURE__ */
|
|
2047
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
2048
|
+
var SvgIconReports = (props) => /* @__PURE__ */ jsx38("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx38(
|
|
2014
2049
|
"path",
|
|
2015
2050
|
{
|
|
2016
2051
|
className: "icon-reports_svg__st0",
|
|
@@ -2020,23 +2055,23 @@ var SvgIconReports = (props) => /* @__PURE__ */ jsx37("svg", { viewBox: "0 0 55
|
|
|
2020
2055
|
var IconReports_default = SvgIconReports;
|
|
2021
2056
|
|
|
2022
2057
|
// src/components/icons/IconRetail.tsx
|
|
2023
|
-
import { jsx as
|
|
2058
|
+
import { jsx as jsx39, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
2024
2059
|
var SvgIconRetail = (props) => /* @__PURE__ */ jsxs29("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2025
|
-
/* @__PURE__ */
|
|
2060
|
+
/* @__PURE__ */ jsx39(
|
|
2026
2061
|
"path",
|
|
2027
2062
|
{
|
|
2028
2063
|
className: "icon-retail_svg__st0",
|
|
2029
2064
|
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"
|
|
2030
2065
|
}
|
|
2031
2066
|
),
|
|
2032
|
-
/* @__PURE__ */
|
|
2067
|
+
/* @__PURE__ */ jsx39(
|
|
2033
2068
|
"path",
|
|
2034
2069
|
{
|
|
2035
2070
|
className: "icon-retail_svg__st0",
|
|
2036
2071
|
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"
|
|
2037
2072
|
}
|
|
2038
2073
|
),
|
|
2039
|
-
/* @__PURE__ */
|
|
2074
|
+
/* @__PURE__ */ jsx39(
|
|
2040
2075
|
"path",
|
|
2041
2076
|
{
|
|
2042
2077
|
className: "icon-retail_svg__st0",
|
|
@@ -2047,8 +2082,8 @@ var SvgIconRetail = (props) => /* @__PURE__ */ jsxs29("svg", { viewBox: "0 0 55
|
|
|
2047
2082
|
var IconRetail_default = SvgIconRetail;
|
|
2048
2083
|
|
|
2049
2084
|
// src/components/icons/IconRuns.tsx
|
|
2050
|
-
import { jsx as
|
|
2051
|
-
var SvgIconRuns = (props) => /* @__PURE__ */
|
|
2085
|
+
import { jsx as jsx40 } from "react/jsx-runtime";
|
|
2086
|
+
var SvgIconRuns = (props) => /* @__PURE__ */ jsx40("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx40(
|
|
2052
2087
|
"path",
|
|
2053
2088
|
{
|
|
2054
2089
|
className: "icon-runs_svg__st0",
|
|
@@ -2058,23 +2093,23 @@ var SvgIconRuns = (props) => /* @__PURE__ */ jsx39("svg", { viewBox: "0 0 55 56.
|
|
|
2058
2093
|
var IconRuns_default = SvgIconRuns;
|
|
2059
2094
|
|
|
2060
2095
|
// src/components/icons/IconScales.tsx
|
|
2061
|
-
import { jsx as
|
|
2096
|
+
import { jsx as jsx41, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
2062
2097
|
var SvgIconScales = (props) => /* @__PURE__ */ jsxs30("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2063
|
-
/* @__PURE__ */
|
|
2098
|
+
/* @__PURE__ */ jsx41(
|
|
2064
2099
|
"path",
|
|
2065
2100
|
{
|
|
2066
2101
|
className: "icon-scales_svg__st0",
|
|
2067
2102
|
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"
|
|
2068
2103
|
}
|
|
2069
2104
|
),
|
|
2070
|
-
/* @__PURE__ */
|
|
2105
|
+
/* @__PURE__ */ jsx41(
|
|
2071
2106
|
"path",
|
|
2072
2107
|
{
|
|
2073
2108
|
className: "icon-scales_svg__st0",
|
|
2074
2109
|
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"
|
|
2075
2110
|
}
|
|
2076
2111
|
),
|
|
2077
|
-
/* @__PURE__ */
|
|
2112
|
+
/* @__PURE__ */ jsx41(
|
|
2078
2113
|
"path",
|
|
2079
2114
|
{
|
|
2080
2115
|
className: "icon-scales_svg__st1",
|
|
@@ -2085,8 +2120,8 @@ var SvgIconScales = (props) => /* @__PURE__ */ jsxs30("svg", { viewBox: "0 0 55
|
|
|
2085
2120
|
var IconScales_default = SvgIconScales;
|
|
2086
2121
|
|
|
2087
2122
|
// src/components/icons/IconSearchCategories.tsx
|
|
2088
|
-
import { jsx as
|
|
2089
|
-
var SvgIconSearchCategories = (props) => /* @__PURE__ */
|
|
2123
|
+
import { jsx as jsx42 } from "react/jsx-runtime";
|
|
2124
|
+
var SvgIconSearchCategories = (props) => /* @__PURE__ */ jsx42("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx42(
|
|
2090
2125
|
"path",
|
|
2091
2126
|
{
|
|
2092
2127
|
className: "icon-search-categories_svg__st0",
|
|
@@ -2096,8 +2131,8 @@ var SvgIconSearchCategories = (props) => /* @__PURE__ */ jsx41("svg", { viewBox:
|
|
|
2096
2131
|
var IconSearchCategories_default = SvgIconSearchCategories;
|
|
2097
2132
|
|
|
2098
2133
|
// src/components/icons/IconSetting.tsx
|
|
2099
|
-
import { jsx as
|
|
2100
|
-
var SvgIconSetting = (props) => /* @__PURE__ */
|
|
2134
|
+
import { jsx as jsx43 } from "react/jsx-runtime";
|
|
2135
|
+
var SvgIconSetting = (props) => /* @__PURE__ */ jsx43("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx43(
|
|
2101
2136
|
"path",
|
|
2102
2137
|
{
|
|
2103
2138
|
className: "icon-setting_svg__st0",
|
|
@@ -2107,8 +2142,8 @@ var SvgIconSetting = (props) => /* @__PURE__ */ jsx42("svg", { viewBox: "0 0 55
|
|
|
2107
2142
|
var IconSetting_default = SvgIconSetting;
|
|
2108
2143
|
|
|
2109
2144
|
// src/components/icons/IconSnail.tsx
|
|
2110
|
-
import { jsx as
|
|
2111
|
-
var SvgIconSnail = (props) => /* @__PURE__ */
|
|
2145
|
+
import { jsx as jsx44 } from "react/jsx-runtime";
|
|
2146
|
+
var SvgIconSnail = (props) => /* @__PURE__ */ jsx44(
|
|
2112
2147
|
"svg",
|
|
2113
2148
|
{
|
|
2114
2149
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2116,36 +2151,36 @@ var SvgIconSnail = (props) => /* @__PURE__ */ jsx43(
|
|
|
2116
2151
|
height: "24",
|
|
2117
2152
|
viewBox: "0 0 24 24",
|
|
2118
2153
|
...props,
|
|
2119
|
-
children: /* @__PURE__ */
|
|
2154
|
+
children: /* @__PURE__ */ jsx44("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" })
|
|
2120
2155
|
}
|
|
2121
2156
|
);
|
|
2122
2157
|
var IconSnail_default = SvgIconSnail;
|
|
2123
2158
|
|
|
2124
2159
|
// src/components/icons/IconSpecialPrice.tsx
|
|
2125
|
-
import { jsx as
|
|
2160
|
+
import { jsx as jsx45, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
2126
2161
|
var SvgIconSpecialPrice = (props) => /* @__PURE__ */ jsxs31("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2127
|
-
/* @__PURE__ */
|
|
2162
|
+
/* @__PURE__ */ jsx45(
|
|
2128
2163
|
"path",
|
|
2129
2164
|
{
|
|
2130
2165
|
className: "icon-special-price_svg__st0",
|
|
2131
2166
|
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"
|
|
2132
2167
|
}
|
|
2133
2168
|
),
|
|
2134
|
-
/* @__PURE__ */
|
|
2169
|
+
/* @__PURE__ */ jsx45(
|
|
2135
2170
|
"path",
|
|
2136
2171
|
{
|
|
2137
2172
|
className: "icon-special-price_svg__st0",
|
|
2138
2173
|
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"
|
|
2139
2174
|
}
|
|
2140
2175
|
),
|
|
2141
|
-
/* @__PURE__ */
|
|
2176
|
+
/* @__PURE__ */ jsx45(
|
|
2142
2177
|
"path",
|
|
2143
2178
|
{
|
|
2144
2179
|
className: "icon-special-price_svg__st0",
|
|
2145
2180
|
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"
|
|
2146
2181
|
}
|
|
2147
2182
|
),
|
|
2148
|
-
/* @__PURE__ */
|
|
2183
|
+
/* @__PURE__ */ jsx45(
|
|
2149
2184
|
"path",
|
|
2150
2185
|
{
|
|
2151
2186
|
className: "icon-special-price_svg__st0",
|
|
@@ -2156,16 +2191,16 @@ var SvgIconSpecialPrice = (props) => /* @__PURE__ */ jsxs31("svg", { viewBox: "0
|
|
|
2156
2191
|
var IconSpecialPrice_default = SvgIconSpecialPrice;
|
|
2157
2192
|
|
|
2158
2193
|
// src/components/icons/IconStock.tsx
|
|
2159
|
-
import { jsx as
|
|
2194
|
+
import { jsx as jsx46, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
2160
2195
|
var SvgIconStock = (props) => /* @__PURE__ */ jsxs32("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2161
|
-
/* @__PURE__ */
|
|
2196
|
+
/* @__PURE__ */ jsx46(
|
|
2162
2197
|
"path",
|
|
2163
2198
|
{
|
|
2164
2199
|
className: "icon-stock_svg__st0",
|
|
2165
2200
|
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"
|
|
2166
2201
|
}
|
|
2167
2202
|
),
|
|
2168
|
-
/* @__PURE__ */
|
|
2203
|
+
/* @__PURE__ */ jsx46(
|
|
2169
2204
|
"path",
|
|
2170
2205
|
{
|
|
2171
2206
|
className: "icon-stock_svg__st0",
|
|
@@ -2176,8 +2211,8 @@ var SvgIconStock = (props) => /* @__PURE__ */ jsxs32("svg", { viewBox: "0 0 55 5
|
|
|
2176
2211
|
var IconStock_default = SvgIconStock;
|
|
2177
2212
|
|
|
2178
2213
|
// src/components/icons/IconStrawberry.tsx
|
|
2179
|
-
import { jsx as
|
|
2180
|
-
var SvgIconStrawberry = () => /* @__PURE__ */
|
|
2214
|
+
import { jsx as jsx47 } from "react/jsx-runtime";
|
|
2215
|
+
var SvgIconStrawberry = () => /* @__PURE__ */ jsx47(
|
|
2181
2216
|
"svg",
|
|
2182
2217
|
{
|
|
2183
2218
|
width: "24",
|
|
@@ -2185,7 +2220,7 @@ var SvgIconStrawberry = () => /* @__PURE__ */ jsx46(
|
|
|
2185
2220
|
viewBox: "0 0 24 24",
|
|
2186
2221
|
fill: "none",
|
|
2187
2222
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2188
|
-
children: /* @__PURE__ */
|
|
2223
|
+
children: /* @__PURE__ */ jsx47(
|
|
2189
2224
|
"path",
|
|
2190
2225
|
{
|
|
2191
2226
|
fillRule: "evenodd",
|
|
@@ -2199,23 +2234,23 @@ var SvgIconStrawberry = () => /* @__PURE__ */ jsx46(
|
|
|
2199
2234
|
var IconStrawberry_default = SvgIconStrawberry;
|
|
2200
2235
|
|
|
2201
2236
|
// src/components/icons/IconSupplier.tsx
|
|
2202
|
-
import { jsx as
|
|
2237
|
+
import { jsx as jsx48, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2203
2238
|
var SvgIconSupplier = (props) => /* @__PURE__ */ jsxs33("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2204
|
-
/* @__PURE__ */
|
|
2239
|
+
/* @__PURE__ */ jsx48(
|
|
2205
2240
|
"path",
|
|
2206
2241
|
{
|
|
2207
2242
|
className: "icon-supplier_svg__st0",
|
|
2208
2243
|
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"
|
|
2209
2244
|
}
|
|
2210
2245
|
),
|
|
2211
|
-
/* @__PURE__ */
|
|
2246
|
+
/* @__PURE__ */ jsx48(
|
|
2212
2247
|
"path",
|
|
2213
2248
|
{
|
|
2214
2249
|
className: "icon-supplier_svg__st0",
|
|
2215
2250
|
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"
|
|
2216
2251
|
}
|
|
2217
2252
|
),
|
|
2218
|
-
/* @__PURE__ */
|
|
2253
|
+
/* @__PURE__ */ jsx48(
|
|
2219
2254
|
"path",
|
|
2220
2255
|
{
|
|
2221
2256
|
className: "icon-supplier_svg__st0",
|
|
@@ -2226,23 +2261,23 @@ var SvgIconSupplier = (props) => /* @__PURE__ */ jsxs33("svg", { viewBox: "0 0 5
|
|
|
2226
2261
|
var IconSupplier_default = SvgIconSupplier;
|
|
2227
2262
|
|
|
2228
2263
|
// src/components/icons/IconSupplierPrices.tsx
|
|
2229
|
-
import { jsx as
|
|
2264
|
+
import { jsx as jsx49, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2230
2265
|
var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2231
|
-
/* @__PURE__ */
|
|
2266
|
+
/* @__PURE__ */ jsx49(
|
|
2232
2267
|
"path",
|
|
2233
2268
|
{
|
|
2234
2269
|
className: "icon-supplier-prices_svg__st0",
|
|
2235
2270
|
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"
|
|
2236
2271
|
}
|
|
2237
2272
|
),
|
|
2238
|
-
/* @__PURE__ */
|
|
2273
|
+
/* @__PURE__ */ jsx49(
|
|
2239
2274
|
"path",
|
|
2240
2275
|
{
|
|
2241
2276
|
className: "icon-supplier-prices_svg__st0",
|
|
2242
2277
|
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"
|
|
2243
2278
|
}
|
|
2244
2279
|
),
|
|
2245
|
-
/* @__PURE__ */
|
|
2280
|
+
/* @__PURE__ */ jsx49(
|
|
2246
2281
|
"path",
|
|
2247
2282
|
{
|
|
2248
2283
|
className: "icon-supplier-prices_svg__st0",
|
|
@@ -2250,21 +2285,21 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox:
|
|
|
2250
2285
|
}
|
|
2251
2286
|
),
|
|
2252
2287
|
/* @__PURE__ */ jsxs34("g", { children: [
|
|
2253
|
-
/* @__PURE__ */
|
|
2288
|
+
/* @__PURE__ */ jsx49(
|
|
2254
2289
|
"path",
|
|
2255
2290
|
{
|
|
2256
2291
|
className: "icon-supplier-prices_svg__st0",
|
|
2257
2292
|
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"
|
|
2258
2293
|
}
|
|
2259
2294
|
),
|
|
2260
|
-
/* @__PURE__ */
|
|
2295
|
+
/* @__PURE__ */ jsx49(
|
|
2261
2296
|
"path",
|
|
2262
2297
|
{
|
|
2263
2298
|
className: "icon-supplier-prices_svg__st0",
|
|
2264
2299
|
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"
|
|
2265
2300
|
}
|
|
2266
2301
|
),
|
|
2267
|
-
/* @__PURE__ */
|
|
2302
|
+
/* @__PURE__ */ jsx49(
|
|
2268
2303
|
"path",
|
|
2269
2304
|
{
|
|
2270
2305
|
className: "icon-supplier-prices_svg__st0",
|
|
@@ -2276,18 +2311,18 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox:
|
|
|
2276
2311
|
var IconSupplierPrices_default = SvgIconSupplierPrices;
|
|
2277
2312
|
|
|
2278
2313
|
// src/components/icons/IconUserManagement.tsx
|
|
2279
|
-
import { jsx as
|
|
2280
|
-
var SvgIconUserManagement = () => /* @__PURE__ */
|
|
2281
|
-
/* @__PURE__ */
|
|
2282
|
-
/* @__PURE__ */
|
|
2283
|
-
/* @__PURE__ */
|
|
2284
|
-
/* @__PURE__ */
|
|
2314
|
+
import { jsx as jsx50, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
2315
|
+
var SvgIconUserManagement = () => /* @__PURE__ */ jsx50("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 55 56.7", children: /* @__PURE__ */ jsx50("g", { children: /* @__PURE__ */ jsxs35("g", { id: "Layer_1", children: [
|
|
2316
|
+
/* @__PURE__ */ jsx50("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" }),
|
|
2317
|
+
/* @__PURE__ */ jsx50("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" }),
|
|
2318
|
+
/* @__PURE__ */ jsx50("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" }),
|
|
2319
|
+
/* @__PURE__ */ jsx50("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" })
|
|
2285
2320
|
] }) }) });
|
|
2286
2321
|
var IconUserManagement_default = SvgIconUserManagement;
|
|
2287
2322
|
|
|
2288
2323
|
// src/components/icons/IconVkc.tsx
|
|
2289
|
-
import { jsx as
|
|
2290
|
-
var SvgIconVkc = (props) => /* @__PURE__ */
|
|
2324
|
+
import { jsx as jsx51 } from "react/jsx-runtime";
|
|
2325
|
+
var SvgIconVkc = (props) => /* @__PURE__ */ jsx51("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx51(
|
|
2291
2326
|
"path",
|
|
2292
2327
|
{
|
|
2293
2328
|
className: "icon-vkc_svg__st0",
|
|
@@ -2297,16 +2332,16 @@ var SvgIconVkc = (props) => /* @__PURE__ */ jsx50("svg", { viewBox: "0 0 55 56.7
|
|
|
2297
2332
|
var IconVkc_default = SvgIconVkc;
|
|
2298
2333
|
|
|
2299
2334
|
// src/components/icons/SamsaraLogo.tsx
|
|
2300
|
-
import { jsx as
|
|
2335
|
+
import { jsx as jsx52, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
2301
2336
|
var SvgSamsaraLogo = (props) => /* @__PURE__ */ jsxs36("svg", { viewBox: "0 0 36 52.4", ...props, children: [
|
|
2302
|
-
/* @__PURE__ */
|
|
2337
|
+
/* @__PURE__ */ jsx52(
|
|
2303
2338
|
"path",
|
|
2304
2339
|
{
|
|
2305
2340
|
className: "samsara_logo_svg__st0",
|
|
2306
2341
|
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"
|
|
2307
2342
|
}
|
|
2308
2343
|
),
|
|
2309
|
-
/* @__PURE__ */
|
|
2344
|
+
/* @__PURE__ */ jsx52(
|
|
2310
2345
|
"path",
|
|
2311
2346
|
{
|
|
2312
2347
|
className: "samsara_logo_svg__st0",
|
|
@@ -2359,8 +2394,8 @@ var icons = {
|
|
|
2359
2394
|
var icons_default = icons;
|
|
2360
2395
|
|
|
2361
2396
|
// src/components/icons/IconAirplane.tsx
|
|
2362
|
-
import { jsx as
|
|
2363
|
-
var SvgIconAirplane = (props) => /* @__PURE__ */
|
|
2397
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
|
2398
|
+
var SvgIconAirplane = (props) => /* @__PURE__ */ jsx53(
|
|
2364
2399
|
"svg",
|
|
2365
2400
|
{
|
|
2366
2401
|
width: "24",
|
|
@@ -2369,7 +2404,7 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ jsx52(
|
|
|
2369
2404
|
fill: "none",
|
|
2370
2405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2371
2406
|
...props,
|
|
2372
|
-
children: /* @__PURE__ */
|
|
2407
|
+
children: /* @__PURE__ */ jsx53(
|
|
2373
2408
|
"path",
|
|
2374
2409
|
{
|
|
2375
2410
|
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",
|
|
@@ -2381,8 +2416,8 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ jsx52(
|
|
|
2381
2416
|
var IconAirplane_default = SvgIconAirplane;
|
|
2382
2417
|
|
|
2383
2418
|
// src/components/icons/IconBicycle.tsx
|
|
2384
|
-
import { jsx as
|
|
2385
|
-
var SvgIconBicycle = () => /* @__PURE__ */
|
|
2419
|
+
import { jsx as jsx54 } from "react/jsx-runtime";
|
|
2420
|
+
var SvgIconBicycle = () => /* @__PURE__ */ jsx54(
|
|
2386
2421
|
"svg",
|
|
2387
2422
|
{
|
|
2388
2423
|
width: "24",
|
|
@@ -2390,7 +2425,7 @@ var SvgIconBicycle = () => /* @__PURE__ */ jsx53(
|
|
|
2390
2425
|
viewBox: "0 0 24 24",
|
|
2391
2426
|
fill: "none",
|
|
2392
2427
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2393
|
-
children: /* @__PURE__ */
|
|
2428
|
+
children: /* @__PURE__ */ jsx54(
|
|
2394
2429
|
"path",
|
|
2395
2430
|
{
|
|
2396
2431
|
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",
|
|
@@ -2402,8 +2437,8 @@ var SvgIconBicycle = () => /* @__PURE__ */ jsx53(
|
|
|
2402
2437
|
var IconBicycle_default = SvgIconBicycle;
|
|
2403
2438
|
|
|
2404
2439
|
// src/components/icons/IconBus.tsx
|
|
2405
|
-
import { jsx as
|
|
2406
|
-
var SvgIconBus = () => /* @__PURE__ */
|
|
2440
|
+
import { jsx as jsx55 } from "react/jsx-runtime";
|
|
2441
|
+
var SvgIconBus = () => /* @__PURE__ */ jsx55(
|
|
2407
2442
|
"svg",
|
|
2408
2443
|
{
|
|
2409
2444
|
width: "24",
|
|
@@ -2411,7 +2446,7 @@ var SvgIconBus = () => /* @__PURE__ */ jsx54(
|
|
|
2411
2446
|
viewBox: "0 0 24 24",
|
|
2412
2447
|
fill: "none",
|
|
2413
2448
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2414
|
-
children: /* @__PURE__ */
|
|
2449
|
+
children: /* @__PURE__ */ jsx55(
|
|
2415
2450
|
"path",
|
|
2416
2451
|
{
|
|
2417
2452
|
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",
|
|
@@ -2423,8 +2458,8 @@ var SvgIconBus = () => /* @__PURE__ */ jsx54(
|
|
|
2423
2458
|
var IconBus_default = SvgIconBus;
|
|
2424
2459
|
|
|
2425
2460
|
// src/components/icons/IconCar.tsx
|
|
2426
|
-
import { jsx as
|
|
2427
|
-
var SvgIconCar = () => /* @__PURE__ */
|
|
2461
|
+
import { jsx as jsx56 } from "react/jsx-runtime";
|
|
2462
|
+
var SvgIconCar = () => /* @__PURE__ */ jsx56(
|
|
2428
2463
|
"svg",
|
|
2429
2464
|
{
|
|
2430
2465
|
width: "24",
|
|
@@ -2432,7 +2467,7 @@ var SvgIconCar = () => /* @__PURE__ */ jsx55(
|
|
|
2432
2467
|
viewBox: "0 0 24 24",
|
|
2433
2468
|
fill: "none",
|
|
2434
2469
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2435
|
-
children: /* @__PURE__ */
|
|
2470
|
+
children: /* @__PURE__ */ jsx56(
|
|
2436
2471
|
"path",
|
|
2437
2472
|
{
|
|
2438
2473
|
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",
|
|
@@ -2444,8 +2479,8 @@ var SvgIconCar = () => /* @__PURE__ */ jsx55(
|
|
|
2444
2479
|
var IconCar_default = SvgIconCar;
|
|
2445
2480
|
|
|
2446
2481
|
// src/components/icons/IconFork.tsx
|
|
2447
|
-
import { jsx as
|
|
2448
|
-
var SvgIconFork = () => /* @__PURE__ */
|
|
2482
|
+
import { jsx as jsx57 } from "react/jsx-runtime";
|
|
2483
|
+
var SvgIconFork = () => /* @__PURE__ */ jsx57(
|
|
2449
2484
|
"svg",
|
|
2450
2485
|
{
|
|
2451
2486
|
width: "20",
|
|
@@ -2453,7 +2488,7 @@ var SvgIconFork = () => /* @__PURE__ */ jsx56(
|
|
|
2453
2488
|
viewBox: "0 0 20 20",
|
|
2454
2489
|
fill: "none",
|
|
2455
2490
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2456
|
-
children: /* @__PURE__ */
|
|
2491
|
+
children: /* @__PURE__ */ jsx57(
|
|
2457
2492
|
"path",
|
|
2458
2493
|
{
|
|
2459
2494
|
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",
|
|
@@ -2465,8 +2500,8 @@ var SvgIconFork = () => /* @__PURE__ */ jsx56(
|
|
|
2465
2500
|
var IconFork_default = SvgIconFork;
|
|
2466
2501
|
|
|
2467
2502
|
// src/components/icons/IconHeart.tsx
|
|
2468
|
-
import { jsx as
|
|
2469
|
-
var SvgIconHeart = () => /* @__PURE__ */
|
|
2503
|
+
import { jsx as jsx58 } from "react/jsx-runtime";
|
|
2504
|
+
var SvgIconHeart = () => /* @__PURE__ */ jsx58(
|
|
2470
2505
|
"svg",
|
|
2471
2506
|
{
|
|
2472
2507
|
width: "20",
|
|
@@ -2474,7 +2509,7 @@ var SvgIconHeart = () => /* @__PURE__ */ jsx57(
|
|
|
2474
2509
|
viewBox: "0 0 20 20",
|
|
2475
2510
|
fill: "none",
|
|
2476
2511
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2477
|
-
children: /* @__PURE__ */
|
|
2512
|
+
children: /* @__PURE__ */ jsx58(
|
|
2478
2513
|
"path",
|
|
2479
2514
|
{
|
|
2480
2515
|
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",
|
|
@@ -2486,8 +2521,8 @@ var SvgIconHeart = () => /* @__PURE__ */ jsx57(
|
|
|
2486
2521
|
var IconHeart_default = SvgIconHeart;
|
|
2487
2522
|
|
|
2488
2523
|
// src/components/icons/IconKnife.tsx
|
|
2489
|
-
import { jsx as
|
|
2490
|
-
var SvgIconKnife = (props) => /* @__PURE__ */
|
|
2524
|
+
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
2525
|
+
var SvgIconKnife = (props) => /* @__PURE__ */ jsx59(
|
|
2491
2526
|
"svg",
|
|
2492
2527
|
{
|
|
2493
2528
|
width: "20",
|
|
@@ -2496,7 +2531,7 @@ var SvgIconKnife = (props) => /* @__PURE__ */ jsx58(
|
|
|
2496
2531
|
fill: "none",
|
|
2497
2532
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2498
2533
|
...props,
|
|
2499
|
-
children: /* @__PURE__ */
|
|
2534
|
+
children: /* @__PURE__ */ jsx59(
|
|
2500
2535
|
"path",
|
|
2501
2536
|
{
|
|
2502
2537
|
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",
|
|
@@ -2508,8 +2543,8 @@ var SvgIconKnife = (props) => /* @__PURE__ */ jsx58(
|
|
|
2508
2543
|
var IconKnife_default = SvgIconKnife;
|
|
2509
2544
|
|
|
2510
2545
|
// src/components/icons/IconSpoon.tsx
|
|
2511
|
-
import { jsx as
|
|
2512
|
-
var SvgIconSpoon = () => /* @__PURE__ */
|
|
2546
|
+
import { jsx as jsx60 } from "react/jsx-runtime";
|
|
2547
|
+
var SvgIconSpoon = () => /* @__PURE__ */ jsx60(
|
|
2513
2548
|
"svg",
|
|
2514
2549
|
{
|
|
2515
2550
|
width: "20",
|
|
@@ -2517,7 +2552,7 @@ var SvgIconSpoon = () => /* @__PURE__ */ jsx59(
|
|
|
2517
2552
|
viewBox: "0 0 20 20",
|
|
2518
2553
|
fill: "none",
|
|
2519
2554
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2520
|
-
children: /* @__PURE__ */
|
|
2555
|
+
children: /* @__PURE__ */ jsx60(
|
|
2521
2556
|
"path",
|
|
2522
2557
|
{
|
|
2523
2558
|
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",
|
|
@@ -2529,8 +2564,8 @@ var SvgIconSpoon = () => /* @__PURE__ */ jsx59(
|
|
|
2529
2564
|
var IconSpoon_default = SvgIconSpoon;
|
|
2530
2565
|
|
|
2531
2566
|
// src/resources/icons/BulkIcon.tsx
|
|
2532
|
-
import { jsx as
|
|
2533
|
-
var BulkIcon = (props) => /* @__PURE__ */
|
|
2567
|
+
import { jsx as jsx61 } from "react/jsx-runtime";
|
|
2568
|
+
var BulkIcon = (props) => /* @__PURE__ */ jsx61(
|
|
2534
2569
|
"svg",
|
|
2535
2570
|
{
|
|
2536
2571
|
height: 24,
|
|
@@ -2538,13 +2573,13 @@ var BulkIcon = (props) => /* @__PURE__ */ jsx60(
|
|
|
2538
2573
|
width: 24,
|
|
2539
2574
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2540
2575
|
...props,
|
|
2541
|
-
children: /* @__PURE__ */
|
|
2576
|
+
children: /* @__PURE__ */ jsx61("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" })
|
|
2542
2577
|
}
|
|
2543
2578
|
);
|
|
2544
2579
|
var BulkIcon_default = BulkIcon;
|
|
2545
2580
|
|
|
2546
2581
|
// src/components/Buttons/RoundButton/RoundButton.tsx
|
|
2547
|
-
import { jsx as
|
|
2582
|
+
import { jsx as jsx62 } from "react/jsx-runtime";
|
|
2548
2583
|
var useStyles11 = makeStyles11()(() => ({
|
|
2549
2584
|
base: {
|
|
2550
2585
|
backgroundColor: "transparent",
|
|
@@ -2662,48 +2697,48 @@ var RoundButton = ({
|
|
|
2662
2697
|
const { classes, cx } = useStyles11();
|
|
2663
2698
|
const iconSize = size === "small" ? "small" : "medium";
|
|
2664
2699
|
const iconComponentMap = {
|
|
2665
|
-
add: /* @__PURE__ */
|
|
2666
|
-
apps: /* @__PURE__ */
|
|
2667
|
-
arrowBack: /* @__PURE__ */
|
|
2668
|
-
arrowForward: /* @__PURE__ */
|
|
2669
|
-
avocado: /* @__PURE__ */
|
|
2670
|
-
backspaceOutlined: /* @__PURE__ */
|
|
2671
|
-
banana: /* @__PURE__ */
|
|
2672
|
-
block: /* @__PURE__ */
|
|
2673
|
-
bulk: /* @__PURE__ */
|
|
2674
|
-
callSplit: /* @__PURE__ */
|
|
2675
|
-
chevronRight: /* @__PURE__ */
|
|
2676
|
-
chevronUp: /* @__PURE__ */
|
|
2677
|
-
chevronDown: /* @__PURE__ */
|
|
2678
|
-
close: /* @__PURE__ */
|
|
2679
|
-
delete: /* @__PURE__ */
|
|
2680
|
-
done: /* @__PURE__ */
|
|
2681
|
-
edit: /* @__PURE__ */
|
|
2682
|
-
email: /* @__PURE__ */
|
|
2683
|
-
grape: /* @__PURE__ */
|
|
2684
|
-
groupAdd: /* @__PURE__ */
|
|
2685
|
-
history: /* @__PURE__ */
|
|
2686
|
-
menu: /* @__PURE__ */
|
|
2687
|
-
threeDots: /* @__PURE__ */
|
|
2688
|
-
notes: /* @__PURE__ */
|
|
2689
|
-
refresh: /* @__PURE__ */
|
|
2690
|
-
remove: /* @__PURE__ */
|
|
2691
|
-
search: /* @__PURE__ */
|
|
2692
|
-
send: /* @__PURE__ */
|
|
2693
|
-
strawberry: /* @__PURE__ */
|
|
2694
|
-
thumbDown: /* @__PURE__ */
|
|
2695
|
-
thumbUp: /* @__PURE__ */
|
|
2696
|
-
undo: /* @__PURE__ */
|
|
2697
|
-
play: /* @__PURE__ */
|
|
2698
|
-
snail: /* @__PURE__ */
|
|
2699
|
-
bus: /* @__PURE__ */
|
|
2700
|
-
spoon: /* @__PURE__ */
|
|
2701
|
-
fork: /* @__PURE__ */
|
|
2702
|
-
car: /* @__PURE__ */
|
|
2703
|
-
knife: /* @__PURE__ */
|
|
2704
|
-
bicycle: /* @__PURE__ */
|
|
2705
|
-
heart: /* @__PURE__ */
|
|
2706
|
-
airplane: /* @__PURE__ */
|
|
2700
|
+
add: /* @__PURE__ */ jsx62(Add3, { fontSize: iconSize }),
|
|
2701
|
+
apps: /* @__PURE__ */ jsx62(Apps, { fontSize: iconSize }),
|
|
2702
|
+
arrowBack: /* @__PURE__ */ jsx62(ArrowBack, { fontSize: iconSize }),
|
|
2703
|
+
arrowForward: /* @__PURE__ */ jsx62(ArrowForward, { fontSize: iconSize }),
|
|
2704
|
+
avocado: /* @__PURE__ */ jsx62(IconAvocado_default, {}),
|
|
2705
|
+
backspaceOutlined: /* @__PURE__ */ jsx62(BackspaceOutlined, { fontSize: iconSize }),
|
|
2706
|
+
banana: /* @__PURE__ */ jsx62(IconBanana_default, {}),
|
|
2707
|
+
block: /* @__PURE__ */ jsx62(Block, { fontSize: iconSize }),
|
|
2708
|
+
bulk: /* @__PURE__ */ jsx62(BulkIcon_default, { fill: colors.contrast }),
|
|
2709
|
+
callSplit: /* @__PURE__ */ jsx62(CallSplit, { fontSize: iconSize }),
|
|
2710
|
+
chevronRight: /* @__PURE__ */ jsx62(ChevronRight2, { fontSize: iconSize }),
|
|
2711
|
+
chevronUp: /* @__PURE__ */ jsx62(KeyboardArrowUp, { fontSize: iconSize }),
|
|
2712
|
+
chevronDown: /* @__PURE__ */ jsx62(KeyboardArrowDown, { fontSize: iconSize }),
|
|
2713
|
+
close: /* @__PURE__ */ jsx62(Close, { fontSize: iconSize }),
|
|
2714
|
+
delete: /* @__PURE__ */ jsx62(Delete2, { fontSize: iconSize, fill: colors.neutral800 }),
|
|
2715
|
+
done: /* @__PURE__ */ jsx62(Done, { fontSize: iconSize }),
|
|
2716
|
+
edit: /* @__PURE__ */ jsx62(Edit2, { fontSize: iconSize }),
|
|
2717
|
+
email: /* @__PURE__ */ jsx62(Email, { fontSize: iconSize }),
|
|
2718
|
+
grape: /* @__PURE__ */ jsx62(IconGrape_default, {}),
|
|
2719
|
+
groupAdd: /* @__PURE__ */ jsx62(GroupAdd, { fontSize: iconSize }),
|
|
2720
|
+
history: /* @__PURE__ */ jsx62(History, { fontSize: iconSize }),
|
|
2721
|
+
menu: /* @__PURE__ */ jsx62(Menu, { fontSize: iconSize }),
|
|
2722
|
+
threeDots: /* @__PURE__ */ jsx62(MoreHoriz, { fontSize: iconSize, color: iconColor }),
|
|
2723
|
+
notes: /* @__PURE__ */ jsx62(Comment, { fontSize: iconSize }),
|
|
2724
|
+
refresh: /* @__PURE__ */ jsx62(Refresh2, { fontSize: iconSize }),
|
|
2725
|
+
remove: /* @__PURE__ */ jsx62(Remove, { fontSize: iconSize }),
|
|
2726
|
+
search: /* @__PURE__ */ jsx62(Search, { fontSize: iconSize }),
|
|
2727
|
+
send: /* @__PURE__ */ jsx62(Send, { fontSize: iconSize }),
|
|
2728
|
+
strawberry: /* @__PURE__ */ jsx62(IconStrawberry_default, {}),
|
|
2729
|
+
thumbDown: /* @__PURE__ */ jsx62(ThumbDown, { fontSize: iconSize }),
|
|
2730
|
+
thumbUp: /* @__PURE__ */ jsx62(ThumbUp, { fontSize: iconSize }),
|
|
2731
|
+
undo: /* @__PURE__ */ jsx62(Undo, { fontSize: iconSize }),
|
|
2732
|
+
play: /* @__PURE__ */ jsx62(PlayArrowRounded, { fontSize: iconSize }),
|
|
2733
|
+
snail: /* @__PURE__ */ jsx62(icons_default.SvgIconSnail, { fontSize: iconSize, fill: colors.muiPrimary }),
|
|
2734
|
+
bus: /* @__PURE__ */ jsx62(IconBus_default, {}),
|
|
2735
|
+
spoon: /* @__PURE__ */ jsx62(IconSpoon_default, {}),
|
|
2736
|
+
fork: /* @__PURE__ */ jsx62(IconFork_default, {}),
|
|
2737
|
+
car: /* @__PURE__ */ jsx62(IconCar_default, {}),
|
|
2738
|
+
knife: /* @__PURE__ */ jsx62(IconKnife_default, {}),
|
|
2739
|
+
bicycle: /* @__PURE__ */ jsx62(IconBicycle_default, {}),
|
|
2740
|
+
heart: /* @__PURE__ */ jsx62(IconHeart_default, {}),
|
|
2741
|
+
airplane: /* @__PURE__ */ jsx62(IconAirplane_default, {})
|
|
2707
2742
|
};
|
|
2708
2743
|
const filteredSize = size === "double" ? void 0 : size;
|
|
2709
2744
|
const handleClick = (e) => {
|
|
@@ -2711,7 +2746,7 @@ var RoundButton = ({
|
|
|
2711
2746
|
onClick(e);
|
|
2712
2747
|
}
|
|
2713
2748
|
};
|
|
2714
|
-
const Button14 = /* @__PURE__ */
|
|
2749
|
+
const Button14 = /* @__PURE__ */ jsx62(
|
|
2715
2750
|
Fab,
|
|
2716
2751
|
{
|
|
2717
2752
|
className: cx(
|
|
@@ -2735,7 +2770,7 @@ var RoundButton = ({
|
|
|
2735
2770
|
children: icon ? iconComponentMap[icon] : children || ""
|
|
2736
2771
|
}
|
|
2737
2772
|
);
|
|
2738
|
-
return tooltip ? /* @__PURE__ */
|
|
2773
|
+
return tooltip ? /* @__PURE__ */ jsx62(Tooltip2, { title: tooltip, children: Button14 }) : Button14;
|
|
2739
2774
|
};
|
|
2740
2775
|
var RoundButton_default = RoundButton;
|
|
2741
2776
|
|
|
@@ -2743,7 +2778,7 @@ var RoundButton_default = RoundButton;
|
|
|
2743
2778
|
import { memo as memo8 } from "react";
|
|
2744
2779
|
import { Pin } from "mdi-material-ui";
|
|
2745
2780
|
import { makeStyles as makeStyles12 } from "tss-react/mui";
|
|
2746
|
-
import { jsx as
|
|
2781
|
+
import { jsx as jsx63 } from "react/jsx-runtime";
|
|
2747
2782
|
var useStyles12 = makeStyles12()(() => ({
|
|
2748
2783
|
root: {
|
|
2749
2784
|
opacity: 0.5
|
|
@@ -2754,14 +2789,14 @@ var useStyles12 = makeStyles12()(() => ({
|
|
|
2754
2789
|
}));
|
|
2755
2790
|
var PinButton = () => {
|
|
2756
2791
|
const { classes } = useStyles12();
|
|
2757
|
-
return /* @__PURE__ */
|
|
2792
|
+
return /* @__PURE__ */ jsx63(Pin, { className: classes.root });
|
|
2758
2793
|
};
|
|
2759
2794
|
var Pin_default = memo8(PinButton);
|
|
2760
2795
|
|
|
2761
2796
|
// src/components/Buttons/PinnedApp.tsx
|
|
2762
2797
|
import { Fab as Fab2, Icon } from "@mui/material";
|
|
2763
2798
|
import { makeStyles as makeStyles13 } from "tss-react/mui";
|
|
2764
|
-
import { jsx as
|
|
2799
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
2765
2800
|
var useStyles13 = makeStyles13()((theme) => ({
|
|
2766
2801
|
root: {
|
|
2767
2802
|
"& > *": {
|
|
@@ -2775,12 +2810,12 @@ var useStyles13 = makeStyles13()((theme) => ({
|
|
|
2775
2810
|
function ActionButton(props) {
|
|
2776
2811
|
const { app } = props;
|
|
2777
2812
|
const { classes } = useStyles13();
|
|
2778
|
-
return /* @__PURE__ */
|
|
2813
|
+
return /* @__PURE__ */ jsx64("div", { className: classes.root, children: /* @__PURE__ */ jsx64(Fab2, { color: "primary", "aria-label": "add", children: /* @__PURE__ */ jsx64(Icon, { children: app.icon }) }) });
|
|
2779
2814
|
}
|
|
2780
2815
|
|
|
2781
2816
|
// src/components/CompanyLogo/CompanyLogo.tsx
|
|
2782
2817
|
import { makeStyles as makeStyles14 } from "tss-react/mui";
|
|
2783
|
-
import { jsx as
|
|
2818
|
+
import { jsx as jsx65 } from "react/jsx-runtime";
|
|
2784
2819
|
var useStyles14 = makeStyles14()((theme, { imageLogoDarkSmall, imageLogoLightSmall }) => ({
|
|
2785
2820
|
logoSmall: {
|
|
2786
2821
|
height: 46,
|
|
@@ -2813,14 +2848,14 @@ var CompanyLogo = ({
|
|
|
2813
2848
|
[classes.logoLight]: color === "light",
|
|
2814
2849
|
[classes.logoDark]: color === "dark"
|
|
2815
2850
|
});
|
|
2816
|
-
return /* @__PURE__ */
|
|
2851
|
+
return /* @__PURE__ */ jsx65("div", { className });
|
|
2817
2852
|
};
|
|
2818
2853
|
var CompanyLogo_default = CompanyLogo;
|
|
2819
2854
|
|
|
2820
2855
|
// src/components/ConfirmationDialog/ConfirmationDialog.tsx
|
|
2821
2856
|
import { Box as Box8, Dialog as Dialog3, DialogActions as DialogActions2, Divider, Typography as Typography6 } from "@mui/material";
|
|
2822
2857
|
import { makeStyles as makeStyles15 } from "tss-react/mui";
|
|
2823
|
-
import { jsx as
|
|
2858
|
+
import { jsx as jsx66, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2824
2859
|
var useStyles15 = makeStyles15()((theme) => ({
|
|
2825
2860
|
content: {
|
|
2826
2861
|
width: "660px"
|
|
@@ -2858,14 +2893,14 @@ var ConfirmationDialog = ({
|
|
|
2858
2893
|
};
|
|
2859
2894
|
const contentComponent = () => {
|
|
2860
2895
|
if (typeof content === "string") {
|
|
2861
|
-
return /* @__PURE__ */
|
|
2896
|
+
return /* @__PURE__ */ jsx66(Typography6, { variant: "body1", children: content });
|
|
2862
2897
|
}
|
|
2863
2898
|
return content;
|
|
2864
2899
|
};
|
|
2865
2900
|
return /* @__PURE__ */ jsxs37(Dialog3, { onClose: closeModal, open: isOpen, maxWidth: "lg", children: [
|
|
2866
2901
|
/* @__PURE__ */ jsxs37(Box8, { className: classes.content, children: [
|
|
2867
|
-
/* @__PURE__ */
|
|
2868
|
-
/* @__PURE__ */
|
|
2902
|
+
/* @__PURE__ */ jsx66(Typography6, { className: classes.title, variant: "h6", children: title }),
|
|
2903
|
+
/* @__PURE__ */ jsx66(
|
|
2869
2904
|
Box8,
|
|
2870
2905
|
{
|
|
2871
2906
|
sx: {
|
|
@@ -2878,9 +2913,9 @@ var ConfirmationDialog = ({
|
|
|
2878
2913
|
}
|
|
2879
2914
|
)
|
|
2880
2915
|
] }),
|
|
2881
|
-
/* @__PURE__ */
|
|
2916
|
+
/* @__PURE__ */ jsx66(Divider, {}),
|
|
2882
2917
|
/* @__PURE__ */ jsxs37(DialogActions2, { className: classes.footer, children: [
|
|
2883
|
-
!hideCancel && /* @__PURE__ */
|
|
2918
|
+
!hideCancel && /* @__PURE__ */ jsx66(
|
|
2884
2919
|
FilledButton_default,
|
|
2885
2920
|
{
|
|
2886
2921
|
className: classes.button,
|
|
@@ -2890,7 +2925,7 @@ var ConfirmationDialog = ({
|
|
|
2890
2925
|
onClick: closeModal
|
|
2891
2926
|
}
|
|
2892
2927
|
),
|
|
2893
|
-
!hideConfirm && /* @__PURE__ */
|
|
2928
|
+
!hideConfirm && /* @__PURE__ */ jsx66(
|
|
2894
2929
|
FilledButton_default,
|
|
2895
2930
|
{
|
|
2896
2931
|
className: classes.button,
|
|
@@ -2915,7 +2950,7 @@ var ConfirmationDialog_default = ConfirmationDialog;
|
|
|
2915
2950
|
// src/components/ControlledCheckbox/ControlledCheckbox.tsx
|
|
2916
2951
|
import { Controller } from "react-hook-form";
|
|
2917
2952
|
import { Checkbox, FormControlLabel, Tooltip as Tooltip3 } from "@mui/material";
|
|
2918
|
-
import { jsx as
|
|
2953
|
+
import { jsx as jsx67 } from "react/jsx-runtime";
|
|
2919
2954
|
var ControlledCheckbox = ({
|
|
2920
2955
|
name,
|
|
2921
2956
|
label,
|
|
@@ -2927,18 +2962,18 @@ var ControlledCheckbox = ({
|
|
|
2927
2962
|
color,
|
|
2928
2963
|
handleChange,
|
|
2929
2964
|
disabled
|
|
2930
|
-
}) => /* @__PURE__ */
|
|
2965
|
+
}) => /* @__PURE__ */ jsx67(
|
|
2931
2966
|
Controller,
|
|
2932
2967
|
{
|
|
2933
2968
|
name,
|
|
2934
2969
|
control,
|
|
2935
2970
|
render: ({ field }) => {
|
|
2936
|
-
const checkbox = /* @__PURE__ */
|
|
2971
|
+
const checkbox = /* @__PURE__ */ jsx67(
|
|
2937
2972
|
FormControlLabel,
|
|
2938
2973
|
{
|
|
2939
2974
|
label,
|
|
2940
2975
|
className,
|
|
2941
|
-
control: /* @__PURE__ */
|
|
2976
|
+
control: /* @__PURE__ */ jsx67(
|
|
2942
2977
|
Checkbox,
|
|
2943
2978
|
{
|
|
2944
2979
|
...field,
|
|
@@ -2952,7 +2987,7 @@ var ControlledCheckbox = ({
|
|
|
2952
2987
|
)
|
|
2953
2988
|
}
|
|
2954
2989
|
);
|
|
2955
|
-
return tooltipDescription ? /* @__PURE__ */
|
|
2990
|
+
return tooltipDescription ? /* @__PURE__ */ jsx67(Tooltip3, { title: tooltipDescription, children: /* @__PURE__ */ jsx67("span", { children: checkbox }) }) : checkbox;
|
|
2956
2991
|
}
|
|
2957
2992
|
}
|
|
2958
2993
|
);
|
|
@@ -2962,7 +2997,7 @@ var ControlledCheckbox_default = ControlledCheckbox;
|
|
|
2962
2997
|
import { Controller as Controller2 } from "react-hook-form";
|
|
2963
2998
|
import { TextField } from "@mui/material";
|
|
2964
2999
|
import { makeStyles as makeStyles16 } from "tss-react/mui";
|
|
2965
|
-
import { jsx as
|
|
3000
|
+
import { jsx as jsx68 } from "react/jsx-runtime";
|
|
2966
3001
|
var useStyles16 = makeStyles16()(() => ({
|
|
2967
3002
|
selectInput: {
|
|
2968
3003
|
minWidth: 122
|
|
@@ -2995,12 +3030,12 @@ var ControlledNumberInput = ({
|
|
|
2995
3030
|
"Backspace",
|
|
2996
3031
|
"Tab"
|
|
2997
3032
|
].includes(input.key) && input.preventDefault();
|
|
2998
|
-
return /* @__PURE__ */
|
|
3033
|
+
return /* @__PURE__ */ jsx68(
|
|
2999
3034
|
Controller2,
|
|
3000
3035
|
{
|
|
3001
3036
|
control,
|
|
3002
3037
|
name,
|
|
3003
|
-
render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */
|
|
3038
|
+
render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */ jsx68(
|
|
3004
3039
|
TextField,
|
|
3005
3040
|
{
|
|
3006
3041
|
variant: "standard",
|
|
@@ -3046,7 +3081,7 @@ import {
|
|
|
3046
3081
|
TextField as TextField2
|
|
3047
3082
|
} from "@mui/material";
|
|
3048
3083
|
import { makeStyles as makeStyles17 } from "tss-react/mui";
|
|
3049
|
-
import { jsx as
|
|
3084
|
+
import { jsx as jsx69, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
3050
3085
|
var convertUnderscoreToHyphen = (str) => str.replace(/_/g, "-");
|
|
3051
3086
|
var useStyles17 = makeStyles17()((theme) => ({
|
|
3052
3087
|
textFieldButtons: {
|
|
@@ -3147,17 +3182,17 @@ var ControlledNumericField = ({
|
|
|
3147
3182
|
decrementValue(field)();
|
|
3148
3183
|
}
|
|
3149
3184
|
};
|
|
3150
|
-
return /* @__PURE__ */
|
|
3185
|
+
return /* @__PURE__ */ jsx69(
|
|
3151
3186
|
Box9,
|
|
3152
3187
|
{
|
|
3153
3188
|
className,
|
|
3154
3189
|
"data-testid": dataTestId || `${convertUnderscoreToHyphen(fieldName)}`,
|
|
3155
|
-
children: /* @__PURE__ */
|
|
3190
|
+
children: /* @__PURE__ */ jsx69(
|
|
3156
3191
|
Controller3,
|
|
3157
3192
|
{
|
|
3158
3193
|
control,
|
|
3159
3194
|
name: fieldName,
|
|
3160
|
-
render: ({ field, fieldState }) => /* @__PURE__ */
|
|
3195
|
+
render: ({ field, fieldState }) => /* @__PURE__ */ jsx69(
|
|
3161
3196
|
TextField2,
|
|
3162
3197
|
{
|
|
3163
3198
|
...field,
|
|
@@ -3192,25 +3227,25 @@ var ControlledNumericField = ({
|
|
|
3192
3227
|
slotProps: {
|
|
3193
3228
|
htmlInput: { min, max, step },
|
|
3194
3229
|
input: {
|
|
3195
|
-
endAdornment: /* @__PURE__ */
|
|
3196
|
-
/* @__PURE__ */
|
|
3230
|
+
endAdornment: /* @__PURE__ */ jsx69(InputAdornment, { position: "end", children: /* @__PURE__ */ jsxs38(Box9, { className: classes.textFieldButtons, children: [
|
|
3231
|
+
/* @__PURE__ */ jsx69(
|
|
3197
3232
|
IconButton,
|
|
3198
3233
|
{
|
|
3199
3234
|
disableRipple: true,
|
|
3200
3235
|
className: classes.arrowButton,
|
|
3201
3236
|
onClick: incrementValue(field),
|
|
3202
3237
|
"data-testid": "arrow-up",
|
|
3203
|
-
children: /* @__PURE__ */
|
|
3238
|
+
children: /* @__PURE__ */ jsx69(KeyboardArrowUpIcon, { sx: { fontSize: 15 } })
|
|
3204
3239
|
}
|
|
3205
3240
|
),
|
|
3206
|
-
/* @__PURE__ */
|
|
3241
|
+
/* @__PURE__ */ jsx69(
|
|
3207
3242
|
IconButton,
|
|
3208
3243
|
{
|
|
3209
3244
|
disableRipple: true,
|
|
3210
3245
|
className: classes.arrowButton,
|
|
3211
3246
|
onClick: decrementValue(field),
|
|
3212
3247
|
"data-testid": "arrow-down",
|
|
3213
|
-
children: /* @__PURE__ */
|
|
3248
|
+
children: /* @__PURE__ */ jsx69(KeyboardArrowDownIcon, { sx: { fontSize: 15 } })
|
|
3214
3249
|
}
|
|
3215
3250
|
)
|
|
3216
3251
|
] }) })
|
|
@@ -3229,7 +3264,7 @@ var ControlledNumericField_default = ControlledNumericField;
|
|
|
3229
3264
|
import { Controller as Controller4 } from "react-hook-form";
|
|
3230
3265
|
import { FormControl, FormHelperText, InputLabel, Select } from "@mui/material";
|
|
3231
3266
|
import { makeStyles as makeStyles18 } from "tss-react/mui";
|
|
3232
|
-
import { jsx as
|
|
3267
|
+
import { jsx as jsx70, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
3233
3268
|
var useStyles18 = makeStyles18()(() => ({
|
|
3234
3269
|
selectInput: {
|
|
3235
3270
|
minWidth: 122
|
|
@@ -3246,7 +3281,7 @@ var ControlledSelectWithArray = ({
|
|
|
3246
3281
|
revalidateFormFunction
|
|
3247
3282
|
}) => {
|
|
3248
3283
|
const { classes } = useStyles18();
|
|
3249
|
-
return /* @__PURE__ */
|
|
3284
|
+
return /* @__PURE__ */ jsx70(
|
|
3250
3285
|
Controller4,
|
|
3251
3286
|
{
|
|
3252
3287
|
control,
|
|
@@ -3260,7 +3295,7 @@ var ControlledSelectWithArray = ({
|
|
|
3260
3295
|
className: className || classes.selectInput,
|
|
3261
3296
|
variant: "standard",
|
|
3262
3297
|
children: [
|
|
3263
|
-
/* @__PURE__ */
|
|
3298
|
+
/* @__PURE__ */ jsx70(InputLabel, { shrink: true, error: !!fieldState.error, children: label }),
|
|
3264
3299
|
/* @__PURE__ */ jsxs39(
|
|
3265
3300
|
Select,
|
|
3266
3301
|
{
|
|
@@ -3280,12 +3315,12 @@ var ControlledSelectWithArray = ({
|
|
|
3280
3315
|
},
|
|
3281
3316
|
error: !!fieldState.error,
|
|
3282
3317
|
children: [
|
|
3283
|
-
/* @__PURE__ */
|
|
3284
|
-
options?.map((item) => /* @__PURE__ */
|
|
3318
|
+
/* @__PURE__ */ jsx70("option", { "aria-label": "None" }),
|
|
3319
|
+
options?.map((item) => /* @__PURE__ */ jsx70("option", { value: item, children: item }, item))
|
|
3285
3320
|
]
|
|
3286
3321
|
}
|
|
3287
3322
|
),
|
|
3288
|
-
/* @__PURE__ */
|
|
3323
|
+
/* @__PURE__ */ jsx70(FormHelperText, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3289
3324
|
]
|
|
3290
3325
|
}
|
|
3291
3326
|
)
|
|
@@ -3298,7 +3333,7 @@ var ControlledSelectWithArray_default = ControlledSelectWithArray;
|
|
|
3298
3333
|
import { Controller as Controller5 } from "react-hook-form";
|
|
3299
3334
|
import { FormControl as FormControl2, FormHelperText as FormHelperText2, InputLabel as InputLabel2, Select as Select2 } from "@mui/material";
|
|
3300
3335
|
import { makeStyles as makeStyles19 } from "tss-react/mui";
|
|
3301
|
-
import { jsx as
|
|
3336
|
+
import { jsx as jsx71, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
3302
3337
|
var useStyles19 = makeStyles19()(() => ({
|
|
3303
3338
|
selectInput: {
|
|
3304
3339
|
minWidth: 122
|
|
@@ -3316,7 +3351,7 @@ var ControlledSelectWithObject = ({
|
|
|
3316
3351
|
revalidateFormFunction
|
|
3317
3352
|
}) => {
|
|
3318
3353
|
const { classes } = useStyles19();
|
|
3319
|
-
return /* @__PURE__ */
|
|
3354
|
+
return /* @__PURE__ */ jsx71(
|
|
3320
3355
|
Controller5,
|
|
3321
3356
|
{
|
|
3322
3357
|
control,
|
|
@@ -3330,7 +3365,7 @@ var ControlledSelectWithObject = ({
|
|
|
3330
3365
|
className: className || classes.selectInput,
|
|
3331
3366
|
variant: "standard",
|
|
3332
3367
|
children: [
|
|
3333
|
-
/* @__PURE__ */
|
|
3368
|
+
/* @__PURE__ */ jsx71(InputLabel2, { error: !!fieldState.error, children: label }),
|
|
3334
3369
|
/* @__PURE__ */ jsxs40(
|
|
3335
3370
|
Select2,
|
|
3336
3371
|
{
|
|
@@ -3350,8 +3385,8 @@ var ControlledSelectWithObject = ({
|
|
|
3350
3385
|
},
|
|
3351
3386
|
error: !!fieldState.error,
|
|
3352
3387
|
children: [
|
|
3353
|
-
/* @__PURE__ */
|
|
3354
|
-
options?.map((option) => /* @__PURE__ */
|
|
3388
|
+
/* @__PURE__ */ jsx71("option", { "aria-label": "None" }),
|
|
3389
|
+
options?.map((option) => /* @__PURE__ */ jsx71(
|
|
3355
3390
|
"option",
|
|
3356
3391
|
{
|
|
3357
3392
|
disabled: listToDisableFromOptions ? listToDisableFromOptions.includes(option.value) : false,
|
|
@@ -3363,7 +3398,7 @@ var ControlledSelectWithObject = ({
|
|
|
3363
3398
|
]
|
|
3364
3399
|
}
|
|
3365
3400
|
),
|
|
3366
|
-
/* @__PURE__ */
|
|
3401
|
+
/* @__PURE__ */ jsx71(FormHelperText2, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3367
3402
|
]
|
|
3368
3403
|
}
|
|
3369
3404
|
)
|
|
@@ -3379,7 +3414,7 @@ import {
|
|
|
3379
3414
|
import { Box as Box10, TextField as TextField3 } from "@mui/material";
|
|
3380
3415
|
import classNames from "classnames";
|
|
3381
3416
|
import { makeStyles as makeStyles20 } from "tss-react/mui";
|
|
3382
|
-
import { jsx as
|
|
3417
|
+
import { jsx as jsx72, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
3383
3418
|
var useStyles20 = makeStyles20()(() => ({
|
|
3384
3419
|
fullWidthWrapper: {
|
|
3385
3420
|
maxWidth: "100%"
|
|
@@ -3427,24 +3462,24 @@ var ControlledValidTextInput = ({
|
|
|
3427
3462
|
defaultHandleBlurValidationAndSubmit(controlledField, fieldState.isDirty);
|
|
3428
3463
|
}
|
|
3429
3464
|
};
|
|
3430
|
-
return /* @__PURE__ */
|
|
3465
|
+
return /* @__PURE__ */ jsx72(
|
|
3431
3466
|
Box10,
|
|
3432
3467
|
{
|
|
3433
3468
|
className,
|
|
3434
3469
|
"data-testid": dataTestId || `${convertUnderscoreToHyphen2(fieldName)}`,
|
|
3435
|
-
children: /* @__PURE__ */
|
|
3470
|
+
children: /* @__PURE__ */ jsx72(
|
|
3436
3471
|
Controller6,
|
|
3437
3472
|
{
|
|
3438
3473
|
control,
|
|
3439
3474
|
name: fieldName,
|
|
3440
|
-
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */
|
|
3475
|
+
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */ jsx72(Box10, { className: classes.fullWidthWrapper, children: /* @__PURE__ */ jsx72(
|
|
3441
3476
|
TextField3,
|
|
3442
3477
|
{
|
|
3443
3478
|
...controlledField,
|
|
3444
3479
|
value: controlledField?.value || "",
|
|
3445
3480
|
fullWidth: true,
|
|
3446
3481
|
id: fieldName,
|
|
3447
|
-
"data-testid": `${dataTestId}-input`
|
|
3482
|
+
"data-testid": dataTestId ? `${dataTestId}-input` : `${convertUnderscoreToHyphen2(fieldName)}-input`,
|
|
3448
3483
|
label,
|
|
3449
3484
|
error: !!fieldState.error,
|
|
3450
3485
|
multiline: true,
|
|
@@ -3459,9 +3494,9 @@ var ControlledValidTextInput = ({
|
|
|
3459
3494
|
className: classNames({
|
|
3460
3495
|
[classes.helperTextWrapper]: !!maxLength
|
|
3461
3496
|
}),
|
|
3462
|
-
"data-testid": `${dataTestId}-helper-text`
|
|
3497
|
+
"data-testid": dataTestId ? `${dataTestId}-helper-text` : `${convertUnderscoreToHyphen2(fieldName)}-helper-text`,
|
|
3463
3498
|
children: [
|
|
3464
|
-
/* @__PURE__ */
|
|
3499
|
+
/* @__PURE__ */ jsx72(
|
|
3465
3500
|
Box10,
|
|
3466
3501
|
{
|
|
3467
3502
|
component: "span",
|
|
@@ -3471,7 +3506,7 @@ var ControlledValidTextInput = ({
|
|
|
3471
3506
|
children: fieldState.error?.message ?? helperText
|
|
3472
3507
|
}
|
|
3473
3508
|
),
|
|
3474
|
-
!!maxLength && /* @__PURE__ */
|
|
3509
|
+
!!maxLength && /* @__PURE__ */ jsx72(Box10, { component: "span", children: `${watch(fieldName)?.length ?? 0}/${maxLength}` })
|
|
3475
3510
|
]
|
|
3476
3511
|
}
|
|
3477
3512
|
),
|
|
@@ -3490,7 +3525,7 @@ import { useState as useState2 } from "react";
|
|
|
3490
3525
|
import { Paper as Paper2, Skeleton } from "@mui/material";
|
|
3491
3526
|
import { DataGrid as MUIDataGrid } from "@mui/x-data-grid";
|
|
3492
3527
|
import { makeStyles as makeStyles21 } from "tss-react/mui";
|
|
3493
|
-
import { Fragment, jsx as
|
|
3528
|
+
import { Fragment, jsx as jsx73, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
3494
3529
|
var useStyles21 = makeStyles21()(() => ({
|
|
3495
3530
|
root: {
|
|
3496
3531
|
justifyContent: "space-between",
|
|
@@ -3537,14 +3572,14 @@ var DataGrid = ({
|
|
|
3537
3572
|
]);
|
|
3538
3573
|
const rowHeight = 56;
|
|
3539
3574
|
const headerAndFooterHeight = 52 + 56;
|
|
3540
|
-
return /* @__PURE__ */
|
|
3575
|
+
return /* @__PURE__ */ jsx73(
|
|
3541
3576
|
"div",
|
|
3542
3577
|
{
|
|
3543
3578
|
className: classes.root,
|
|
3544
3579
|
style: {
|
|
3545
3580
|
height: height || rows.length * rowHeight + headerAndFooterHeight
|
|
3546
3581
|
},
|
|
3547
|
-
children: /* @__PURE__ */
|
|
3582
|
+
children: /* @__PURE__ */ jsx73(Paper2, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx73("div", { children: [...Array(Math.floor(10))].map((i) => /* @__PURE__ */ jsx73(
|
|
3548
3583
|
Skeleton,
|
|
3549
3584
|
{
|
|
3550
3585
|
animation: "pulse",
|
|
@@ -3554,7 +3589,7 @@ var DataGrid = ({
|
|
|
3554
3589
|
},
|
|
3555
3590
|
i
|
|
3556
3591
|
)) }) : /* @__PURE__ */ jsxs42(Fragment, { children: [
|
|
3557
|
-
/* @__PURE__ */
|
|
3592
|
+
/* @__PURE__ */ jsx73(
|
|
3558
3593
|
MUIDataGrid,
|
|
3559
3594
|
{
|
|
3560
3595
|
rows,
|
|
@@ -3659,10 +3694,10 @@ localizedMoment.locale(constants_default.locale);
|
|
|
3659
3694
|
var moment_default = localizedMoment;
|
|
3660
3695
|
|
|
3661
3696
|
// src/components/Date/Date.tsx
|
|
3662
|
-
import { jsx as
|
|
3697
|
+
import { jsx as jsx74 } from "react/jsx-runtime";
|
|
3663
3698
|
var Date = ({ datetime, format = "L" }) => {
|
|
3664
3699
|
const formattedDate = moment_default(datetime).format(format);
|
|
3665
|
-
return /* @__PURE__ */
|
|
3700
|
+
return /* @__PURE__ */ jsx74("span", { children: formattedDate === "Invalid date" ? "-" : formattedDate });
|
|
3666
3701
|
};
|
|
3667
3702
|
var Date_default = Date;
|
|
3668
3703
|
|
|
@@ -3670,7 +3705,7 @@ var Date_default = Date;
|
|
|
3670
3705
|
import { memo as memo9 } from "react";
|
|
3671
3706
|
import { Alert, AlertTitle, Typography as Typography7, Box as Box11 } from "@mui/material";
|
|
3672
3707
|
import { makeStyles as makeStyles22 } from "tss-react/mui";
|
|
3673
|
-
import { Fragment as Fragment2, jsx as
|
|
3708
|
+
import { Fragment as Fragment2, jsx as jsx75, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
3674
3709
|
var useStyles22 = makeStyles22()(() => ({
|
|
3675
3710
|
alert: { marginBottom: 16 },
|
|
3676
3711
|
bottomBar: {
|
|
@@ -3697,10 +3732,10 @@ var DeleteSubstitutionDialogContent = ({
|
|
|
3697
3732
|
] }),
|
|
3698
3733
|
"This action will permanently remove all data and history associated with this substitution, and it cannot be undone."
|
|
3699
3734
|
] }),
|
|
3700
|
-
/* @__PURE__ */
|
|
3735
|
+
/* @__PURE__ */ jsx75(Typography7, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
3701
3736
|
/* @__PURE__ */ jsxs43(Box11, { className: classes.bottomBar, children: [
|
|
3702
|
-
/* @__PURE__ */
|
|
3703
|
-
/* @__PURE__ */
|
|
3737
|
+
/* @__PURE__ */ jsx75(ExtendedButton_default, { copy: "Cancel", onClick: closeDialog }),
|
|
3738
|
+
/* @__PURE__ */ jsx75(
|
|
3704
3739
|
ExtendedButton_default,
|
|
3705
3740
|
{
|
|
3706
3741
|
copy: "Confirm",
|
|
@@ -3718,7 +3753,7 @@ var DeleteSubstitutionDialogContent_default = memo9(DeleteSubstitutionDialogCont
|
|
|
3718
3753
|
import { memo as memo10 } from "react";
|
|
3719
3754
|
import { Alert as Alert2, AlertTitle as AlertTitle2, Typography as Typography8, Box as Box12 } from "@mui/material";
|
|
3720
3755
|
import { makeStyles as makeStyles23 } from "tss-react/mui";
|
|
3721
|
-
import { Fragment as Fragment3, jsx as
|
|
3756
|
+
import { Fragment as Fragment3, jsx as jsx76, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
3722
3757
|
var useStyles23 = makeStyles23()(() => ({
|
|
3723
3758
|
alert: { marginBottom: 16 },
|
|
3724
3759
|
bottomBar: {
|
|
@@ -3745,10 +3780,10 @@ var DeleteUserDialogContent = ({
|
|
|
3745
3780
|
] }),
|
|
3746
3781
|
"This action will permanently remove all data and history associated with this user, and it cannot be undone."
|
|
3747
3782
|
] }),
|
|
3748
|
-
/* @__PURE__ */
|
|
3783
|
+
/* @__PURE__ */ jsx76(Typography8, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
3749
3784
|
/* @__PURE__ */ jsxs44(Box12, { className: classes.bottomBar, children: [
|
|
3750
|
-
/* @__PURE__ */
|
|
3751
|
-
/* @__PURE__ */
|
|
3785
|
+
/* @__PURE__ */ jsx76(ExtendedButton_default, { color: "default", copy: "Cancel", onClick: closeDialog }),
|
|
3786
|
+
/* @__PURE__ */ jsx76(
|
|
3752
3787
|
ExtendedButton_default,
|
|
3753
3788
|
{
|
|
3754
3789
|
copy: "Confirm",
|
|
@@ -3765,7 +3800,7 @@ var DeleteUserDialogContent_default = memo10(DeleteUserDialogContent);
|
|
|
3765
3800
|
// src/components/FileCard/FileCard.tsx
|
|
3766
3801
|
import { Description as DescriptionIcon } from "@mui/icons-material";
|
|
3767
3802
|
import { Typography as Typography9, Box as Box13 } from "@mui/material";
|
|
3768
|
-
import { jsx as
|
|
3803
|
+
import { jsx as jsx77, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3769
3804
|
var getFileMetadata = (file) => {
|
|
3770
3805
|
const fullFilename = file.substring(file.lastIndexOf("/") + 1);
|
|
3771
3806
|
const extension = file.substring(file.lastIndexOf("."));
|
|
@@ -3790,7 +3825,7 @@ var FileCard = ({ document: document2 }) => {
|
|
|
3790
3825
|
minWidth: "250px"
|
|
3791
3826
|
},
|
|
3792
3827
|
children: [
|
|
3793
|
-
/* @__PURE__ */
|
|
3828
|
+
/* @__PURE__ */ jsx77(
|
|
3794
3829
|
Box13,
|
|
3795
3830
|
{
|
|
3796
3831
|
sx: {
|
|
@@ -3798,10 +3833,10 @@ var FileCard = ({ document: document2 }) => {
|
|
|
3798
3833
|
justifyContent: "center",
|
|
3799
3834
|
alignItems: "center"
|
|
3800
3835
|
},
|
|
3801
|
-
children: /* @__PURE__ */
|
|
3836
|
+
children: /* @__PURE__ */ jsx77(DescriptionIcon, { fontSize: "medium", color: "action" })
|
|
3802
3837
|
}
|
|
3803
3838
|
),
|
|
3804
|
-
/* @__PURE__ */
|
|
3839
|
+
/* @__PURE__ */ jsx77(
|
|
3805
3840
|
Box13,
|
|
3806
3841
|
{
|
|
3807
3842
|
sx: {
|
|
@@ -3827,7 +3862,7 @@ import { Typography as Typography10 } from "@mui/material";
|
|
|
3827
3862
|
import brown from "@mui/material/colors/brown";
|
|
3828
3863
|
import teal from "@mui/material/colors/teal";
|
|
3829
3864
|
import { makeStyles as makeStyles24 } from "tss-react/mui";
|
|
3830
|
-
import { jsx as
|
|
3865
|
+
import { jsx as jsx78 } from "react/jsx-runtime";
|
|
3831
3866
|
var useStyles24 = makeStyles24()((theme) => ({
|
|
3832
3867
|
siteOne: {
|
|
3833
3868
|
backgroundColor: teal["50"],
|
|
@@ -3855,7 +3890,7 @@ var useStyles24 = makeStyles24()((theme) => ({
|
|
|
3855
3890
|
var FilledLabel = (props) => {
|
|
3856
3891
|
const { color, copy } = props;
|
|
3857
3892
|
const { classes } = useStyles24();
|
|
3858
|
-
return /* @__PURE__ */
|
|
3893
|
+
return /* @__PURE__ */ jsx78(Typography10, { variant: "caption", className: classes[color], children: copy });
|
|
3859
3894
|
};
|
|
3860
3895
|
var FilledLabel_default = memo11(FilledLabel);
|
|
3861
3896
|
|
|
@@ -3871,7 +3906,7 @@ import {
|
|
|
3871
3906
|
ListItemText,
|
|
3872
3907
|
Divider as Divider2
|
|
3873
3908
|
} from "@mui/material";
|
|
3874
|
-
import { Fragment as Fragment4, jsx as
|
|
3909
|
+
import { Fragment as Fragment4, jsx as jsx79, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3875
3910
|
var FilterGroupSelector = ({
|
|
3876
3911
|
name = "Filter Selector",
|
|
3877
3912
|
optionsList = [{ category: "Category", options: ["Option 1"] }],
|
|
@@ -3906,8 +3941,8 @@ var FilterGroupSelector = ({
|
|
|
3906
3941
|
onClick: handleClick,
|
|
3907
3942
|
sx: { cursor: "pointer" },
|
|
3908
3943
|
children: [
|
|
3909
|
-
/* @__PURE__ */
|
|
3910
|
-
/* @__PURE__ */
|
|
3944
|
+
/* @__PURE__ */ jsx79(Typography11, { variant: "button", fontSize: 12, children: name }),
|
|
3945
|
+
/* @__PURE__ */ jsx79(FilterListIcon, {})
|
|
3911
3946
|
]
|
|
3912
3947
|
}
|
|
3913
3948
|
),
|
|
@@ -3920,10 +3955,10 @@ var FilterGroupSelector = ({
|
|
|
3920
3955
|
anchorOrigin: { vertical: "bottom", horizontal: "left" },
|
|
3921
3956
|
transformOrigin: { vertical: "top", horizontal: "left" },
|
|
3922
3957
|
children: [
|
|
3923
|
-
/* @__PURE__ */
|
|
3924
|
-
/* @__PURE__ */
|
|
3925
|
-
/* @__PURE__ */
|
|
3926
|
-
/* @__PURE__ */
|
|
3958
|
+
/* @__PURE__ */ jsx79(Box14, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ jsx79(Typography11, { variant: "button", children: `Search ${name}` }) }),
|
|
3959
|
+
/* @__PURE__ */ jsx79(Divider2, {}),
|
|
3960
|
+
/* @__PURE__ */ jsx79(Box14, { overflow: "auto", height: 450, children: optionsList.map(({ category, options }, index) => /* @__PURE__ */ jsxs46(Box14, { children: [
|
|
3961
|
+
/* @__PURE__ */ jsx79(
|
|
3927
3962
|
Typography11,
|
|
3928
3963
|
{
|
|
3929
3964
|
variant: "subtitle2",
|
|
@@ -3934,13 +3969,13 @@ var FilterGroupSelector = ({
|
|
|
3934
3969
|
options.map((value) => {
|
|
3935
3970
|
const key = `${category.replaceAll(" ", "_").toLocaleLowerCase()}${categoryIdentification ? `_${categoryIdentification}` : ""}: ${value}`;
|
|
3936
3971
|
return /* @__PURE__ */ jsxs46(MenuItem, { onClick: () => toggleOption(key), children: [
|
|
3937
|
-
/* @__PURE__ */
|
|
3938
|
-
/* @__PURE__ */
|
|
3972
|
+
/* @__PURE__ */ jsx79(Checkbox2, { checked: values.includes(key) }),
|
|
3973
|
+
/* @__PURE__ */ jsx79(ListItemText, { primary: value })
|
|
3939
3974
|
] }, value);
|
|
3940
3975
|
})
|
|
3941
3976
|
] }, category)) }),
|
|
3942
3977
|
/* @__PURE__ */ jsxs46(Box14, { display: "flex", children: [
|
|
3943
|
-
/* @__PURE__ */
|
|
3978
|
+
/* @__PURE__ */ jsx79(
|
|
3944
3979
|
ExtendedButton_default,
|
|
3945
3980
|
{
|
|
3946
3981
|
variant: "text",
|
|
@@ -3952,7 +3987,7 @@ var FilterGroupSelector = ({
|
|
|
3952
3987
|
}
|
|
3953
3988
|
}
|
|
3954
3989
|
),
|
|
3955
|
-
/* @__PURE__ */
|
|
3990
|
+
/* @__PURE__ */ jsx79(
|
|
3956
3991
|
ExtendedButton_default,
|
|
3957
3992
|
{
|
|
3958
3993
|
color: "primary",
|
|
@@ -3984,7 +4019,7 @@ import {
|
|
|
3984
4019
|
ListItemText as ListItemText2,
|
|
3985
4020
|
Divider as Divider3
|
|
3986
4021
|
} from "@mui/material";
|
|
3987
|
-
import { Fragment as Fragment5, jsx as
|
|
4022
|
+
import { Fragment as Fragment5, jsx as jsx80, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
3988
4023
|
var FilterSimpleSelector = ({
|
|
3989
4024
|
name = "Filter Selector",
|
|
3990
4025
|
options = ["No Options"],
|
|
@@ -4018,8 +4053,8 @@ var FilterSimpleSelector = ({
|
|
|
4018
4053
|
onClick: handleClick,
|
|
4019
4054
|
sx: { cursor: "pointer" },
|
|
4020
4055
|
children: [
|
|
4021
|
-
/* @__PURE__ */
|
|
4022
|
-
/* @__PURE__ */
|
|
4056
|
+
/* @__PURE__ */ jsx80(Typography12, { variant: "button", fontSize: 12, children: name }),
|
|
4057
|
+
/* @__PURE__ */ jsx80(FilterListIcon2, {})
|
|
4023
4058
|
]
|
|
4024
4059
|
}
|
|
4025
4060
|
),
|
|
@@ -4032,15 +4067,15 @@ var FilterSimpleSelector = ({
|
|
|
4032
4067
|
anchorOrigin: { vertical: "bottom", horizontal: "left" },
|
|
4033
4068
|
transformOrigin: { vertical: "top", horizontal: "left" },
|
|
4034
4069
|
children: [
|
|
4035
|
-
/* @__PURE__ */
|
|
4036
|
-
/* @__PURE__ */
|
|
4037
|
-
/* @__PURE__ */
|
|
4038
|
-
/* @__PURE__ */
|
|
4039
|
-
/* @__PURE__ */
|
|
4070
|
+
/* @__PURE__ */ jsx80(Box15, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ jsx80(Typography12, { variant: "button", children: `Search ${name}` }) }),
|
|
4071
|
+
/* @__PURE__ */ jsx80(Divider3, {}),
|
|
4072
|
+
/* @__PURE__ */ jsx80(Box15, { overflow: "auto", height: 450, children: options.map((option) => /* @__PURE__ */ jsxs47(MenuItem2, { onClick: () => toggleOption(option), children: [
|
|
4073
|
+
/* @__PURE__ */ jsx80(Checkbox3, { checked: values.includes(option) }),
|
|
4074
|
+
/* @__PURE__ */ jsx80(ListItemText2, { primary: option })
|
|
4040
4075
|
] }, option)) }),
|
|
4041
|
-
/* @__PURE__ */
|
|
4076
|
+
/* @__PURE__ */ jsx80(Divider3, {}),
|
|
4042
4077
|
/* @__PURE__ */ jsxs47(Box15, { display: "flex", children: [
|
|
4043
|
-
/* @__PURE__ */
|
|
4078
|
+
/* @__PURE__ */ jsx80(
|
|
4044
4079
|
ExtendedButton_default,
|
|
4045
4080
|
{
|
|
4046
4081
|
variant: "text",
|
|
@@ -4052,7 +4087,7 @@ var FilterSimpleSelector = ({
|
|
|
4052
4087
|
}
|
|
4053
4088
|
}
|
|
4054
4089
|
),
|
|
4055
|
-
/* @__PURE__ */
|
|
4090
|
+
/* @__PURE__ */ jsx80(
|
|
4056
4091
|
ExtendedButton_default,
|
|
4057
4092
|
{
|
|
4058
4093
|
color: "primary",
|
|
@@ -4076,7 +4111,7 @@ var FilterSimpleSelector_default = FilterSimpleSelector;
|
|
|
4076
4111
|
import * as React from "react";
|
|
4077
4112
|
import { Box as Box16 } from "@mui/material";
|
|
4078
4113
|
import { makeStyles as makeStyles25 } from "tss-react/mui";
|
|
4079
|
-
import { jsx as
|
|
4114
|
+
import { jsx as jsx81, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
4080
4115
|
var footerHeight = "64px";
|
|
4081
4116
|
var useStyles25 = makeStyles25()((theme) => ({
|
|
4082
4117
|
root: {
|
|
@@ -4098,8 +4133,8 @@ var useStyles25 = makeStyles25()((theme) => ({
|
|
|
4098
4133
|
var FixedFooter = ({ justifyContent, children }) => {
|
|
4099
4134
|
const { classes } = useStyles25();
|
|
4100
4135
|
return /* @__PURE__ */ jsxs48(Box16, { children: [
|
|
4101
|
-
/* @__PURE__ */
|
|
4102
|
-
/* @__PURE__ */
|
|
4136
|
+
/* @__PURE__ */ jsx81(Box16, { className: classes.fixedOffset }),
|
|
4137
|
+
/* @__PURE__ */ jsx81(
|
|
4103
4138
|
Box16,
|
|
4104
4139
|
{
|
|
4105
4140
|
className: classes.root,
|
|
@@ -4116,7 +4151,7 @@ var FixedFooter_default = React.memo(FixedFooter);
|
|
|
4116
4151
|
// src/components/Header/Header.tsx
|
|
4117
4152
|
import { Paper as Paper3 } from "@mui/material";
|
|
4118
4153
|
import { makeStyles as makeStyles26 } from "tss-react/mui";
|
|
4119
|
-
import { jsx as
|
|
4154
|
+
import { jsx as jsx82, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
4120
4155
|
var useStyles26 = makeStyles26()((theme) => ({
|
|
4121
4156
|
container: {
|
|
4122
4157
|
margin: theme.spacing(1)
|
|
@@ -4139,7 +4174,7 @@ var Header = ({
|
|
|
4139
4174
|
wrappedHeader = false
|
|
4140
4175
|
}) => {
|
|
4141
4176
|
const { classes, cx } = useStyles26();
|
|
4142
|
-
return /* @__PURE__ */
|
|
4177
|
+
return /* @__PURE__ */ jsx82(
|
|
4143
4178
|
Paper3,
|
|
4144
4179
|
{
|
|
4145
4180
|
className: cx({
|
|
@@ -4147,8 +4182,8 @@ var Header = ({
|
|
|
4147
4182
|
}),
|
|
4148
4183
|
elevation: wrappedHeader ? 0 : 1,
|
|
4149
4184
|
children: /* @__PURE__ */ jsxs49("header", { className: classes.header, children: [
|
|
4150
|
-
/* @__PURE__ */
|
|
4151
|
-
children ? /* @__PURE__ */
|
|
4185
|
+
/* @__PURE__ */ jsx82(AppLabel_default, { appName }),
|
|
4186
|
+
children ? /* @__PURE__ */ jsx82("div", { className: classes.rightContent, children }) : null
|
|
4152
4187
|
] })
|
|
4153
4188
|
}
|
|
4154
4189
|
);
|
|
@@ -4177,9 +4212,9 @@ import { makeStyles as makeStyles27 } from "tss-react/mui";
|
|
|
4177
4212
|
// src/components/UserBust/UserBust.tsx
|
|
4178
4213
|
import { memo as memo13 } from "react";
|
|
4179
4214
|
import { Avatar, Typography as Typography13 } from "@mui/material";
|
|
4180
|
-
import { jsx as
|
|
4215
|
+
import { jsx as jsx83, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
4181
4216
|
var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ jsxs50("div", { children: [
|
|
4182
|
-
/* @__PURE__ */
|
|
4217
|
+
/* @__PURE__ */ jsx83(
|
|
4183
4218
|
Avatar,
|
|
4184
4219
|
{
|
|
4185
4220
|
src: user.profile_picture,
|
|
@@ -4188,8 +4223,8 @@ var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ jsxs5
|
|
|
4188
4223
|
}
|
|
4189
4224
|
),
|
|
4190
4225
|
/* @__PURE__ */ jsxs50("div", { style: { paddingTop: 16 }, children: [
|
|
4191
|
-
/* @__PURE__ */
|
|
4192
|
-
/* @__PURE__ */
|
|
4226
|
+
/* @__PURE__ */ jsx83(Typography13, { ...typographyProps.name, children: `${user.first_name} ${user.last_name}` }),
|
|
4227
|
+
/* @__PURE__ */ jsx83(Typography13, { ...typographyProps.username, children: user.username })
|
|
4193
4228
|
] })
|
|
4194
4229
|
] });
|
|
4195
4230
|
var UserBust_default = memo13(UserBust);
|
|
@@ -4228,7 +4263,7 @@ var featureName = {
|
|
|
4228
4263
|
var featureName_default = featureName;
|
|
4229
4264
|
|
|
4230
4265
|
// src/components/LeftDrawer/helpers/drawerAppList.tsx
|
|
4231
|
-
import { jsx as
|
|
4266
|
+
import { jsx as jsx84 } from "react/jsx-runtime";
|
|
4232
4267
|
var drawerAppList = [
|
|
4233
4268
|
{
|
|
4234
4269
|
groupName: "Home",
|
|
@@ -4239,7 +4274,7 @@ var drawerAppList = [
|
|
|
4239
4274
|
alwaysDisplay: true,
|
|
4240
4275
|
featureNames: [],
|
|
4241
4276
|
pinned: null,
|
|
4242
|
-
icon: /* @__PURE__ */
|
|
4277
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconHome, {}),
|
|
4243
4278
|
url: `/`
|
|
4244
4279
|
}
|
|
4245
4280
|
]
|
|
@@ -4253,7 +4288,7 @@ var drawerAppList = [
|
|
|
4253
4288
|
alwaysDisplay: false,
|
|
4254
4289
|
featureNames: [featureName_default.NOTIFICATIONS],
|
|
4255
4290
|
pinned: null,
|
|
4256
|
-
icon: /* @__PURE__ */
|
|
4291
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconNotification, {}),
|
|
4257
4292
|
url: `/notifications`
|
|
4258
4293
|
},
|
|
4259
4294
|
{
|
|
@@ -4262,7 +4297,7 @@ var drawerAppList = [
|
|
|
4262
4297
|
alwaysDisplay: false,
|
|
4263
4298
|
featureNames: [featureName_default.PROMO_CODES],
|
|
4264
4299
|
pinned: null,
|
|
4265
|
-
icon: /* @__PURE__ */
|
|
4300
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconPromoCode, {}),
|
|
4266
4301
|
url: "/react/promo_codes"
|
|
4267
4302
|
},
|
|
4268
4303
|
{
|
|
@@ -4271,7 +4306,7 @@ var drawerAppList = [
|
|
|
4271
4306
|
alwaysDisplay: false,
|
|
4272
4307
|
featureNames: [featureName_default.SEARCH_CATEGORIES],
|
|
4273
4308
|
pinned: null,
|
|
4274
|
-
icon: /* @__PURE__ */
|
|
4309
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconSearchCategories, {}),
|
|
4275
4310
|
url: "/react/search-categories"
|
|
4276
4311
|
},
|
|
4277
4312
|
{
|
|
@@ -4280,7 +4315,7 @@ var drawerAppList = [
|
|
|
4280
4315
|
alwaysDisplay: false,
|
|
4281
4316
|
featureNames: ["cms"],
|
|
4282
4317
|
pinned: null,
|
|
4283
|
-
icon: /* @__PURE__ */
|
|
4318
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconContentManagement, {}),
|
|
4284
4319
|
url: "/react/content-management"
|
|
4285
4320
|
}
|
|
4286
4321
|
]
|
|
@@ -4294,7 +4329,7 @@ var drawerAppList = [
|
|
|
4294
4329
|
alwaysDisplay: false,
|
|
4295
4330
|
featureNames: [featureName_default.AIRCALL],
|
|
4296
4331
|
pinned: "recorded_calls",
|
|
4297
|
-
icon: /* @__PURE__ */
|
|
4332
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconPhone, {}),
|
|
4298
4333
|
url: "/react/air-call"
|
|
4299
4334
|
},
|
|
4300
4335
|
{
|
|
@@ -4303,7 +4338,7 @@ var drawerAppList = [
|
|
|
4303
4338
|
alwaysDisplay: false,
|
|
4304
4339
|
featureNames: [featureName_default.CUSTOMERS],
|
|
4305
4340
|
pinned: "customers",
|
|
4306
|
-
icon: /* @__PURE__ */
|
|
4341
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconAccount, {}),
|
|
4307
4342
|
url: `/react/customers`,
|
|
4308
4343
|
children: [
|
|
4309
4344
|
{
|
|
@@ -4326,7 +4361,7 @@ var drawerAppList = [
|
|
|
4326
4361
|
alwaysDisplay: false,
|
|
4327
4362
|
featureNames: [featureName_default.ORDERS],
|
|
4328
4363
|
pinned: "orders",
|
|
4329
|
-
icon: /* @__PURE__ */
|
|
4364
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconOrders, {}),
|
|
4330
4365
|
url: `/orders`
|
|
4331
4366
|
},
|
|
4332
4367
|
{
|
|
@@ -4335,7 +4370,7 @@ var drawerAppList = [
|
|
|
4335
4370
|
alwaysDisplay: false,
|
|
4336
4371
|
featureNames: [featureName_default.PRICE_LIST],
|
|
4337
4372
|
pinned: "price_list",
|
|
4338
|
-
icon: /* @__PURE__ */
|
|
4373
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconPriceList, {}),
|
|
4339
4374
|
url: `/price-list`
|
|
4340
4375
|
},
|
|
4341
4376
|
{
|
|
@@ -4344,7 +4379,7 @@ var drawerAppList = [
|
|
|
4344
4379
|
alwaysDisplay: false,
|
|
4345
4380
|
featureNames: [featureName_default.SPECIAL_PRICES],
|
|
4346
4381
|
pinned: "special_prices",
|
|
4347
|
-
icon: /* @__PURE__ */
|
|
4382
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconSpecialPrice, {}),
|
|
4348
4383
|
url: `/pricing/special-prices`
|
|
4349
4384
|
}
|
|
4350
4385
|
]
|
|
@@ -4358,7 +4393,7 @@ var drawerAppList = [
|
|
|
4358
4393
|
alwaysDisplay: false,
|
|
4359
4394
|
featureNames: [featureName_default.PURCHASE_ORDERS],
|
|
4360
4395
|
pinned: "purchase_orders",
|
|
4361
|
-
icon: /* @__PURE__ */
|
|
4396
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconBuying, {}),
|
|
4362
4397
|
url: "/react/purchase-orders"
|
|
4363
4398
|
},
|
|
4364
4399
|
{
|
|
@@ -4367,7 +4402,7 @@ var drawerAppList = [
|
|
|
4367
4402
|
alwaysDisplay: false,
|
|
4368
4403
|
featureNames: [featureName_default.PRODUCTS],
|
|
4369
4404
|
pinned: "products",
|
|
4370
|
-
icon: /* @__PURE__ */
|
|
4405
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconProducts, {}),
|
|
4371
4406
|
url: `/product-base-list`
|
|
4372
4407
|
},
|
|
4373
4408
|
{
|
|
@@ -4376,7 +4411,7 @@ var drawerAppList = [
|
|
|
4376
4411
|
alwaysDisplay: false,
|
|
4377
4412
|
featureNames: [featureName_default.SUPPLIERS],
|
|
4378
4413
|
pinned: "suppliers",
|
|
4379
|
-
icon: /* @__PURE__ */
|
|
4414
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconSupplier, {}),
|
|
4380
4415
|
url: "/react/suppliers"
|
|
4381
4416
|
},
|
|
4382
4417
|
{
|
|
@@ -4385,7 +4420,7 @@ var drawerAppList = [
|
|
|
4385
4420
|
alwaysDisplay: false,
|
|
4386
4421
|
featureNames: [featureName_default.SUPPLIER_PRICES],
|
|
4387
4422
|
pinned: "supplier_prices",
|
|
4388
|
-
icon: /* @__PURE__ */
|
|
4423
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconSupplierPrices, {}),
|
|
4389
4424
|
url: `/supplier-prices`
|
|
4390
4425
|
},
|
|
4391
4426
|
{
|
|
@@ -4394,7 +4429,7 @@ var drawerAppList = [
|
|
|
4394
4429
|
alwaysDisplay: false,
|
|
4395
4430
|
featureNames: [featureName_default.BULK_UPDATE],
|
|
4396
4431
|
pinned: "bulk-update",
|
|
4397
|
-
icon: /* @__PURE__ */
|
|
4432
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconImport, {}),
|
|
4398
4433
|
url: "/react/bulk_update"
|
|
4399
4434
|
}
|
|
4400
4435
|
]
|
|
@@ -4408,7 +4443,7 @@ var drawerAppList = [
|
|
|
4408
4443
|
alwaysDisplay: false,
|
|
4409
4444
|
featureNames: [featureName_default.GOODS_IN],
|
|
4410
4445
|
pinned: "goods_in",
|
|
4411
|
-
icon: /* @__PURE__ */
|
|
4446
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconGoodsin, {}),
|
|
4412
4447
|
url: "/react/goodsin-list"
|
|
4413
4448
|
},
|
|
4414
4449
|
{
|
|
@@ -4417,7 +4452,7 @@ var drawerAppList = [
|
|
|
4417
4452
|
alwaysDisplay: false,
|
|
4418
4453
|
featureNames: [featureName_default.RETURNS],
|
|
4419
4454
|
pinned: "goods_in",
|
|
4420
|
-
icon: /* @__PURE__ */
|
|
4455
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconGoodsin, {}),
|
|
4421
4456
|
url: "/react/returns"
|
|
4422
4457
|
},
|
|
4423
4458
|
{
|
|
@@ -4426,11 +4461,11 @@ var drawerAppList = [
|
|
|
4426
4461
|
alwaysDisplay: false,
|
|
4427
4462
|
featureNames: [featureName_default.KANBAN],
|
|
4428
4463
|
pinned: "kanbancards",
|
|
4429
|
-
icon: /* @__PURE__ */
|
|
4464
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconVkc, {}),
|
|
4430
4465
|
url: `/kanban`
|
|
4431
4466
|
},
|
|
4432
4467
|
{
|
|
4433
|
-
icon: /* @__PURE__ */
|
|
4468
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconLocation, {}),
|
|
4434
4469
|
name: "Stock and Locations",
|
|
4435
4470
|
pinned: "locations",
|
|
4436
4471
|
routeName: "locations",
|
|
@@ -4452,7 +4487,7 @@ var drawerAppList = [
|
|
|
4452
4487
|
alwaysDisplay: false,
|
|
4453
4488
|
featureNames: [featureName_default.PICKING_STATIONS],
|
|
4454
4489
|
pinned: "picking_stations",
|
|
4455
|
-
icon: /* @__PURE__ */
|
|
4490
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconScales, {}),
|
|
4456
4491
|
url: `/pickingstation`
|
|
4457
4492
|
},
|
|
4458
4493
|
{
|
|
@@ -4461,7 +4496,7 @@ var drawerAppList = [
|
|
|
4461
4496
|
alwaysDisplay: false,
|
|
4462
4497
|
featureNames: [featureName_default.QUALITY_CONTROL],
|
|
4463
4498
|
pinned: "quality_control",
|
|
4464
|
-
icon: /* @__PURE__ */
|
|
4499
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconQc, {}),
|
|
4465
4500
|
url: `/quality-control`
|
|
4466
4501
|
},
|
|
4467
4502
|
{
|
|
@@ -4470,7 +4505,7 @@ var drawerAppList = [
|
|
|
4470
4505
|
alwaysDisplay: false,
|
|
4471
4506
|
featureNames: [featureName_default.RETAIL],
|
|
4472
4507
|
pinned: "retail",
|
|
4473
|
-
icon: /* @__PURE__ */
|
|
4508
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconRetail, {}),
|
|
4474
4509
|
url: `/retail/product-availability`
|
|
4475
4510
|
},
|
|
4476
4511
|
{
|
|
@@ -4479,7 +4514,7 @@ var drawerAppList = [
|
|
|
4479
4514
|
alwaysDisplay: false,
|
|
4480
4515
|
featureNames: [featureName_default.SERVICE_DELIVERY],
|
|
4481
4516
|
pinned: "runs",
|
|
4482
|
-
icon: /* @__PURE__ */
|
|
4517
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconRuns, {}),
|
|
4483
4518
|
url: `/runs`
|
|
4484
4519
|
},
|
|
4485
4520
|
{
|
|
@@ -4488,7 +4523,7 @@ var drawerAppList = [
|
|
|
4488
4523
|
alwaysDisplay: false,
|
|
4489
4524
|
featureNames: [featureName_default.OPS_METRICS],
|
|
4490
4525
|
pinned: "ops-metrics",
|
|
4491
|
-
icon: /* @__PURE__ */
|
|
4526
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconOpsMetrics, {}),
|
|
4492
4527
|
url: "/react/ops-metrics"
|
|
4493
4528
|
}
|
|
4494
4529
|
]
|
|
@@ -4502,7 +4537,7 @@ var drawerAppList = [
|
|
|
4502
4537
|
alwaysDisplay: false,
|
|
4503
4538
|
featureNames: [featureName_default.ACCOUNTS],
|
|
4504
4539
|
pinned: "accounts",
|
|
4505
|
-
icon: /* @__PURE__ */
|
|
4540
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconAccounts, {}),
|
|
4506
4541
|
url: `/accounts`
|
|
4507
4542
|
},
|
|
4508
4543
|
{
|
|
@@ -4511,7 +4546,7 @@ var drawerAppList = [
|
|
|
4511
4546
|
alwaysDisplay: false,
|
|
4512
4547
|
featureNames: [featureName_default.REPORTS],
|
|
4513
4548
|
pinned: "reports",
|
|
4514
|
-
icon: /* @__PURE__ */
|
|
4549
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconReports, {}),
|
|
4515
4550
|
url: `/reports`
|
|
4516
4551
|
}
|
|
4517
4552
|
]
|
|
@@ -4525,7 +4560,7 @@ var drawerAppList = [
|
|
|
4525
4560
|
alwaysDisplay: false,
|
|
4526
4561
|
featureNames: [featureName_default.ADMIN],
|
|
4527
4562
|
pinned: "admin",
|
|
4528
|
-
icon: /* @__PURE__ */
|
|
4563
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconSetting, {}),
|
|
4529
4564
|
url: `/admin`
|
|
4530
4565
|
},
|
|
4531
4566
|
{
|
|
@@ -4534,7 +4569,7 @@ var drawerAppList = [
|
|
|
4534
4569
|
alwaysDisplay: false,
|
|
4535
4570
|
featureNames: [featureName_default.USER_MANAGEMENT],
|
|
4536
4571
|
pinned: "users",
|
|
4537
|
-
icon: /* @__PURE__ */
|
|
4572
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconUserManagement, {}),
|
|
4538
4573
|
url: "/react/user-management"
|
|
4539
4574
|
},
|
|
4540
4575
|
{
|
|
@@ -4543,7 +4578,7 @@ var drawerAppList = [
|
|
|
4543
4578
|
alwaysDisplay: true,
|
|
4544
4579
|
featureNames: [],
|
|
4545
4580
|
pinned: null,
|
|
4546
|
-
icon: /* @__PURE__ */
|
|
4581
|
+
icon: /* @__PURE__ */ jsx84(icons_default.SvgIconLogin, {}),
|
|
4547
4582
|
url: "/react/logout"
|
|
4548
4583
|
}
|
|
4549
4584
|
]
|
|
@@ -4585,7 +4620,7 @@ var useGetFilteredDrawerAppList = (featureSettings) => {
|
|
|
4585
4620
|
var useGetFilteredDrawerAppList_default = useGetFilteredDrawerAppList;
|
|
4586
4621
|
|
|
4587
4622
|
// src/components/LeftDrawer/LeftDrawer.tsx
|
|
4588
|
-
import { jsx as
|
|
4623
|
+
import { jsx as jsx85, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
4589
4624
|
var useStyles27 = makeStyles27()((theme) => ({
|
|
4590
4625
|
subheader: {
|
|
4591
4626
|
textTransform: "uppercase",
|
|
@@ -4668,8 +4703,8 @@ var LeftDrawer = ({
|
|
|
4668
4703
|
onOpen: handleOpen,
|
|
4669
4704
|
open,
|
|
4670
4705
|
children: [
|
|
4671
|
-
/* @__PURE__ */
|
|
4672
|
-
/* @__PURE__ */
|
|
4706
|
+
/* @__PURE__ */ jsx85(AppBar, { position: "static", children: /* @__PURE__ */ jsxs51(Toolbar, { className: classes.topBar, children: [
|
|
4707
|
+
/* @__PURE__ */ jsx85(
|
|
4673
4708
|
UserBust_default,
|
|
4674
4709
|
{
|
|
4675
4710
|
user,
|
|
@@ -4680,7 +4715,7 @@ var LeftDrawer = ({
|
|
|
4680
4715
|
}
|
|
4681
4716
|
}
|
|
4682
4717
|
),
|
|
4683
|
-
/* @__PURE__ */
|
|
4718
|
+
/* @__PURE__ */ jsx85(Box17, { children: /* @__PURE__ */ jsx85(
|
|
4684
4719
|
RoundButton_default,
|
|
4685
4720
|
{
|
|
4686
4721
|
icon: "edit",
|
|
@@ -4691,8 +4726,8 @@ var LeftDrawer = ({
|
|
|
4691
4726
|
}
|
|
4692
4727
|
) })
|
|
4693
4728
|
] }) }),
|
|
4694
|
-
/* @__PURE__ */
|
|
4695
|
-
/* @__PURE__ */
|
|
4729
|
+
/* @__PURE__ */ jsx85(List, { children: filteredDrawerAppList.map((group) => /* @__PURE__ */ jsxs51(Fragment6, { children: [
|
|
4730
|
+
/* @__PURE__ */ jsx85(ListSubheader, { disableSticky: true, className: classes.subheader, children: group.groupName }),
|
|
4696
4731
|
group.apps.map((app) => /* @__PURE__ */ jsxs51(Fragment6, { children: [
|
|
4697
4732
|
/* @__PURE__ */ jsxs51(
|
|
4698
4733
|
ListItem,
|
|
@@ -4705,8 +4740,8 @@ var LeftDrawer = ({
|
|
|
4705
4740
|
return window.location.assign(app.url);
|
|
4706
4741
|
},
|
|
4707
4742
|
children: [
|
|
4708
|
-
/* @__PURE__ */
|
|
4709
|
-
/* @__PURE__ */
|
|
4743
|
+
/* @__PURE__ */ jsx85(ListItemIcon, { children: /* @__PURE__ */ jsx85(Icon2, { className: classes.iconMenu, children: app.icon }) }),
|
|
4744
|
+
/* @__PURE__ */ jsx85(
|
|
4710
4745
|
ListItemText3,
|
|
4711
4746
|
{
|
|
4712
4747
|
className: classes.appName,
|
|
@@ -4716,13 +4751,13 @@ var LeftDrawer = ({
|
|
|
4716
4751
|
}
|
|
4717
4752
|
}
|
|
4718
4753
|
),
|
|
4719
|
-
app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */
|
|
4754
|
+
app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */ jsx85(
|
|
4720
4755
|
ExpandLess,
|
|
4721
4756
|
{
|
|
4722
4757
|
"data-testid": "svg-close-collapse",
|
|
4723
4758
|
onClick: (e) => handleCollapse(e, app.routeName)
|
|
4724
4759
|
}
|
|
4725
|
-
) : /* @__PURE__ */
|
|
4760
|
+
) : /* @__PURE__ */ jsx85(
|
|
4726
4761
|
ExpandMore,
|
|
4727
4762
|
{
|
|
4728
4763
|
"data-testid": "svg-open-collapse",
|
|
@@ -4733,7 +4768,7 @@ var LeftDrawer = ({
|
|
|
4733
4768
|
},
|
|
4734
4769
|
app.name
|
|
4735
4770
|
),
|
|
4736
|
-
app.children?.length > 0 && /* @__PURE__ */
|
|
4771
|
+
app.children?.length > 0 && /* @__PURE__ */ jsx85(Collapse, { in: openCollapse[app.routeName], children: /* @__PURE__ */ jsx85(List, { children: app.children.map((child) => /* @__PURE__ */ jsxs51(
|
|
4737
4772
|
ListItemButton,
|
|
4738
4773
|
{
|
|
4739
4774
|
className: classes.nested,
|
|
@@ -4741,8 +4776,8 @@ var LeftDrawer = ({
|
|
|
4741
4776
|
onClick: () => window.location.assign(child.url),
|
|
4742
4777
|
title: child.url,
|
|
4743
4778
|
children: [
|
|
4744
|
-
/* @__PURE__ */
|
|
4745
|
-
/* @__PURE__ */
|
|
4779
|
+
/* @__PURE__ */ jsx85(ListItemIcon, { children: /* @__PURE__ */ jsx85(FiberManualRecord, { style: { height: 12 } }) }),
|
|
4780
|
+
/* @__PURE__ */ jsx85(
|
|
4746
4781
|
ListItemText3,
|
|
4747
4782
|
{
|
|
4748
4783
|
primary: child.name,
|
|
@@ -4766,20 +4801,20 @@ var LeftDrawer_default = memo14(LeftDrawer);
|
|
|
4766
4801
|
// src/components/List/List.tsx
|
|
4767
4802
|
import { FixedSizeList } from "react-window";
|
|
4768
4803
|
import { ListItem as ListItem2, ListItemText as ListItemText4 } from "@mui/material";
|
|
4769
|
-
import { Fragment as Fragment7, jsx as
|
|
4804
|
+
import { Fragment as Fragment7, jsx as jsx86, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
4770
4805
|
var ListHeader = (props) => {
|
|
4771
4806
|
const headers = props.headers || [];
|
|
4772
|
-
return /* @__PURE__ */
|
|
4807
|
+
return /* @__PURE__ */ jsx86(ListItem2, { children: headers.map((header, i) => (
|
|
4773
4808
|
// eslint-disable-next-line react/no-array-index-key
|
|
4774
|
-
/* @__PURE__ */
|
|
4809
|
+
/* @__PURE__ */ jsx86(ListItemText4, { primary: header.text }, i)
|
|
4775
4810
|
)) });
|
|
4776
4811
|
};
|
|
4777
4812
|
function VirtualizedList(props) {
|
|
4778
4813
|
const { innerWidth, innerHeight } = window;
|
|
4779
4814
|
const { headers, items, renderItem } = props;
|
|
4780
4815
|
return /* @__PURE__ */ jsxs52(Fragment7, { children: [
|
|
4781
|
-
/* @__PURE__ */
|
|
4782
|
-
/* @__PURE__ */
|
|
4816
|
+
/* @__PURE__ */ jsx86(ListHeader, { headers }),
|
|
4817
|
+
/* @__PURE__ */ jsx86(
|
|
4783
4818
|
FixedSizeList,
|
|
4784
4819
|
{
|
|
4785
4820
|
height: innerHeight - 150,
|
|
@@ -4799,7 +4834,7 @@ import { Box as Box18, Chip, Typography as Typography14 } from "@mui/material";
|
|
|
4799
4834
|
import { purple } from "@mui/material/colors";
|
|
4800
4835
|
import classNames2 from "classnames";
|
|
4801
4836
|
import { makeStyles as makeStyles28 } from "tss-react/mui";
|
|
4802
|
-
import { jsx as
|
|
4837
|
+
import { jsx as jsx87, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
4803
4838
|
var useStyles28 = makeStyles28()(() => ({
|
|
4804
4839
|
container: {
|
|
4805
4840
|
display: "flex",
|
|
@@ -4846,7 +4881,7 @@ var LocationsSectionInfo = ({
|
|
|
4846
4881
|
return "STOCK";
|
|
4847
4882
|
};
|
|
4848
4883
|
return /* @__PURE__ */ jsxs53(Box18, { className: classes.container, children: [
|
|
4849
|
-
/* @__PURE__ */
|
|
4884
|
+
/* @__PURE__ */ jsx87(
|
|
4850
4885
|
Chip,
|
|
4851
4886
|
{
|
|
4852
4887
|
className: classNames2(classes.defaultChip, {
|
|
@@ -4857,10 +4892,10 @@ var LocationsSectionInfo = ({
|
|
|
4857
4892
|
label: getLocationLabel()
|
|
4858
4893
|
}
|
|
4859
4894
|
),
|
|
4860
|
-
/* @__PURE__ */
|
|
4895
|
+
/* @__PURE__ */ jsx87(Typography14, { className: classes.locationText, color: "primary", children: principalLocation }),
|
|
4861
4896
|
secondaryLocation?.map((loc) => /* @__PURE__ */ jsxs53(Fragment8, { children: [
|
|
4862
|
-
/* @__PURE__ */
|
|
4863
|
-
/* @__PURE__ */
|
|
4897
|
+
/* @__PURE__ */ jsx87(Typography14, { className: classes.smallTitle, children: "/" }),
|
|
4898
|
+
/* @__PURE__ */ jsx87(Typography14, { className: classes.locationText, children: loc })
|
|
4864
4899
|
] }, loc))
|
|
4865
4900
|
] });
|
|
4866
4901
|
};
|
|
@@ -4870,7 +4905,7 @@ var LocationsSectionInfo_default = LocationsSectionInfo;
|
|
|
4870
4905
|
import { useEffect as useEffect2, useState as useState6 } from "react";
|
|
4871
4906
|
import { FormControl as FormControl3, Input, InputAdornment as InputAdornment2, InputLabel as InputLabel3 } from "@mui/material";
|
|
4872
4907
|
import { makeStyles as makeStyles29 } from "tss-react/mui";
|
|
4873
|
-
import { jsx as
|
|
4908
|
+
import { jsx as jsx88, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
4874
4909
|
var useStyles29 = makeStyles29()((theme) => ({
|
|
4875
4910
|
wrapper: {
|
|
4876
4911
|
padding: theme.spacing(3),
|
|
@@ -4913,13 +4948,13 @@ var Notes2 = ({
|
|
|
4913
4948
|
}
|
|
4914
4949
|
};
|
|
4915
4950
|
const { classes } = useStyles29();
|
|
4916
|
-
return /* @__PURE__ */
|
|
4917
|
-
/* @__PURE__ */
|
|
4918
|
-
/* @__PURE__ */
|
|
4951
|
+
return /* @__PURE__ */ jsx88("div", { className: classes.wrapper, children: /* @__PURE__ */ jsxs54(FormControl3, { fullWidth: true, children: [
|
|
4952
|
+
/* @__PURE__ */ jsx88(InputLabel3, { htmlFor: "notes", children: "Notes" }),
|
|
4953
|
+
/* @__PURE__ */ jsx88(
|
|
4919
4954
|
Input,
|
|
4920
4955
|
{
|
|
4921
4956
|
disabled: isDisabled || isLoading,
|
|
4922
|
-
endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */
|
|
4957
|
+
endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */ jsx88(InputAdornment2, { position: "end", children: /* @__PURE__ */ jsx88(
|
|
4923
4958
|
RoundButton_default,
|
|
4924
4959
|
{
|
|
4925
4960
|
disabled: isLoading,
|
|
@@ -4945,7 +4980,7 @@ var Notes2 = ({
|
|
|
4945
4980
|
var Notes_default = Notes2;
|
|
4946
4981
|
|
|
4947
4982
|
// src/components/Numpad/Numpad.tsx
|
|
4948
|
-
import { jsx as
|
|
4983
|
+
import { jsx as jsx89, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
4949
4984
|
var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
4950
4985
|
"div",
|
|
4951
4986
|
{
|
|
@@ -4960,7 +4995,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
4960
4995
|
children: [
|
|
4961
4996
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
4962
4997
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
4963
|
-
/* @__PURE__ */
|
|
4998
|
+
/* @__PURE__ */ jsx89(
|
|
4964
4999
|
RoundButton_default,
|
|
4965
5000
|
{
|
|
4966
5001
|
onClick: () => handleClick("1"),
|
|
@@ -4969,7 +5004,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
4969
5004
|
children: "1"
|
|
4970
5005
|
}
|
|
4971
5006
|
),
|
|
4972
|
-
/* @__PURE__ */
|
|
5007
|
+
/* @__PURE__ */ jsx89(
|
|
4973
5008
|
RoundButton_default,
|
|
4974
5009
|
{
|
|
4975
5010
|
onClick: () => handleClick("2"),
|
|
@@ -4978,7 +5013,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
4978
5013
|
children: "2"
|
|
4979
5014
|
}
|
|
4980
5015
|
),
|
|
4981
|
-
/* @__PURE__ */
|
|
5016
|
+
/* @__PURE__ */ jsx89(
|
|
4982
5017
|
RoundButton_default,
|
|
4983
5018
|
{
|
|
4984
5019
|
onClick: () => handleClick("3"),
|
|
@@ -4989,7 +5024,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
4989
5024
|
)
|
|
4990
5025
|
] }),
|
|
4991
5026
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
4992
|
-
/* @__PURE__ */
|
|
5027
|
+
/* @__PURE__ */ jsx89(
|
|
4993
5028
|
RoundButton_default,
|
|
4994
5029
|
{
|
|
4995
5030
|
onClick: () => handleClick("4"),
|
|
@@ -4998,7 +5033,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
4998
5033
|
children: "4"
|
|
4999
5034
|
}
|
|
5000
5035
|
),
|
|
5001
|
-
/* @__PURE__ */
|
|
5036
|
+
/* @__PURE__ */ jsx89(
|
|
5002
5037
|
RoundButton_default,
|
|
5003
5038
|
{
|
|
5004
5039
|
onClick: () => handleClick("5"),
|
|
@@ -5007,7 +5042,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5007
5042
|
children: "5"
|
|
5008
5043
|
}
|
|
5009
5044
|
),
|
|
5010
|
-
/* @__PURE__ */
|
|
5045
|
+
/* @__PURE__ */ jsx89(
|
|
5011
5046
|
RoundButton_default,
|
|
5012
5047
|
{
|
|
5013
5048
|
onClick: () => handleClick("6"),
|
|
@@ -5018,7 +5053,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5018
5053
|
)
|
|
5019
5054
|
] }),
|
|
5020
5055
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5021
|
-
/* @__PURE__ */
|
|
5056
|
+
/* @__PURE__ */ jsx89(
|
|
5022
5057
|
RoundButton_default,
|
|
5023
5058
|
{
|
|
5024
5059
|
onClick: () => handleClick("7"),
|
|
@@ -5027,7 +5062,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5027
5062
|
children: "7"
|
|
5028
5063
|
}
|
|
5029
5064
|
),
|
|
5030
|
-
/* @__PURE__ */
|
|
5065
|
+
/* @__PURE__ */ jsx89(
|
|
5031
5066
|
RoundButton_default,
|
|
5032
5067
|
{
|
|
5033
5068
|
onClick: () => handleClick("8"),
|
|
@@ -5036,7 +5071,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5036
5071
|
children: "8"
|
|
5037
5072
|
}
|
|
5038
5073
|
),
|
|
5039
|
-
/* @__PURE__ */
|
|
5074
|
+
/* @__PURE__ */ jsx89(
|
|
5040
5075
|
RoundButton_default,
|
|
5041
5076
|
{
|
|
5042
5077
|
onClick: () => handleClick("9"),
|
|
@@ -5047,7 +5082,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5047
5082
|
)
|
|
5048
5083
|
] }),
|
|
5049
5084
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5050
|
-
/* @__PURE__ */
|
|
5085
|
+
/* @__PURE__ */ jsx89(
|
|
5051
5086
|
RoundButton_default,
|
|
5052
5087
|
{
|
|
5053
5088
|
onClick: () => handleClick("0"),
|
|
@@ -5056,7 +5091,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5056
5091
|
children: "0"
|
|
5057
5092
|
}
|
|
5058
5093
|
),
|
|
5059
|
-
/* @__PURE__ */
|
|
5094
|
+
/* @__PURE__ */ jsx89(
|
|
5060
5095
|
RoundButton_default,
|
|
5061
5096
|
{
|
|
5062
5097
|
onClick: () => handleClick("."),
|
|
@@ -5067,7 +5102,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5067
5102
|
)
|
|
5068
5103
|
] })
|
|
5069
5104
|
] }),
|
|
5070
|
-
/* @__PURE__ */
|
|
5105
|
+
/* @__PURE__ */ jsx89(
|
|
5071
5106
|
"div",
|
|
5072
5107
|
{
|
|
5073
5108
|
style: {
|
|
@@ -5076,7 +5111,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5076
5111
|
justifyContent: "space-between",
|
|
5077
5112
|
borderLeft: `1px solid ${colors.neutral250}`
|
|
5078
5113
|
},
|
|
5079
|
-
children: /* @__PURE__ */
|
|
5114
|
+
children: /* @__PURE__ */ jsx89(
|
|
5080
5115
|
RoundButton_default,
|
|
5081
5116
|
{
|
|
5082
5117
|
icon: "backspaceOutlined",
|
|
@@ -5096,7 +5131,7 @@ var Numpad_default = Numpad;
|
|
|
5096
5131
|
import { memo as memo15, useState as useState7 } from "react";
|
|
5097
5132
|
import { TextField as TextField4, Typography as Typography15 } from "@mui/material";
|
|
5098
5133
|
import { makeStyles as makeStyles30 } from "tss-react/mui";
|
|
5099
|
-
import { jsx as
|
|
5134
|
+
import { jsx as jsx90, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
5100
5135
|
var useStyles30 = makeStyles30()(() => ({
|
|
5101
5136
|
c_numpadinput__textfield: {
|
|
5102
5137
|
"& .MuiInputLabel-outlined.MuiInputLabel-shrink": {
|
|
@@ -5134,12 +5169,12 @@ var NumpadInput = (props) => {
|
|
|
5134
5169
|
handleNextClick?.(state);
|
|
5135
5170
|
}
|
|
5136
5171
|
const DefaultInput = /* @__PURE__ */ jsxs56("div", { children: [
|
|
5137
|
-
/* @__PURE__ */
|
|
5138
|
-
/* @__PURE__ */
|
|
5172
|
+
/* @__PURE__ */ jsx90(Typography15, { variant: "h5", style: { padding: "16px 0 3rem" }, children: inputLabel }),
|
|
5173
|
+
/* @__PURE__ */ jsx90("form", { noValidate: true, autoComplete: "off", children: /* @__PURE__ */ jsx90(
|
|
5139
5174
|
TextField4,
|
|
5140
5175
|
{
|
|
5141
5176
|
id: "outlined-basic",
|
|
5142
|
-
label: /* @__PURE__ */
|
|
5177
|
+
label: /* @__PURE__ */ jsx90(Typography15, { style: { fontSize: "1.5rem" }, children: "Insert" }),
|
|
5143
5178
|
value: state,
|
|
5144
5179
|
variant: "outlined",
|
|
5145
5180
|
autoFocus: true,
|
|
@@ -5157,16 +5192,16 @@ var NumpadInput = (props) => {
|
|
|
5157
5192
|
return /* @__PURE__ */ jsxs56("div", { children: [
|
|
5158
5193
|
/* @__PURE__ */ jsxs56("div", { className: classes.c_numpadinput__body, children: [
|
|
5159
5194
|
children || DefaultInput,
|
|
5160
|
-
/* @__PURE__ */
|
|
5195
|
+
/* @__PURE__ */ jsx90(Numpad_default, { handleClick: handleNumpadClick, handleUndo })
|
|
5161
5196
|
] }),
|
|
5162
|
-
state ? /* @__PURE__ */
|
|
5197
|
+
state ? /* @__PURE__ */ jsx90(
|
|
5163
5198
|
FilledButtonLg_default,
|
|
5164
5199
|
{
|
|
5165
5200
|
color: "primary",
|
|
5166
5201
|
copy: "next",
|
|
5167
5202
|
handleClick: handleSubmit
|
|
5168
5203
|
}
|
|
5169
|
-
) : /* @__PURE__ */
|
|
5204
|
+
) : /* @__PURE__ */ jsx90(FilledButtonLg_default, { copy: "next", disabled: true })
|
|
5170
5205
|
] });
|
|
5171
5206
|
};
|
|
5172
5207
|
var NumpadInput_default = memo15(NumpadInput);
|
|
@@ -5174,7 +5209,7 @@ var NumpadInput_default = memo15(NumpadInput);
|
|
|
5174
5209
|
// src/components/NumpadPlus/NumpadPlus.tsx
|
|
5175
5210
|
import { Box as Box19 } from "@mui/material";
|
|
5176
5211
|
import { makeStyles as makeStyles31 } from "tss-react/mui";
|
|
5177
|
-
import { jsx as
|
|
5212
|
+
import { jsx as jsx91, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
5178
5213
|
var useStyles31 = makeStyles31()(() => ({
|
|
5179
5214
|
numpadContainer: {
|
|
5180
5215
|
display: "flex",
|
|
@@ -5209,7 +5244,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5209
5244
|
return /* @__PURE__ */ jsxs57(Box19, { className: styles.numpadContainer, children: [
|
|
5210
5245
|
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadNumbersContainer, children: [
|
|
5211
5246
|
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5212
|
-
/* @__PURE__ */
|
|
5247
|
+
/* @__PURE__ */ jsx91(
|
|
5213
5248
|
RoundButton_default,
|
|
5214
5249
|
{
|
|
5215
5250
|
onClick: () => handleClick("1"),
|
|
@@ -5218,7 +5253,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5218
5253
|
children: "1"
|
|
5219
5254
|
}
|
|
5220
5255
|
),
|
|
5221
|
-
/* @__PURE__ */
|
|
5256
|
+
/* @__PURE__ */ jsx91(
|
|
5222
5257
|
RoundButton_default,
|
|
5223
5258
|
{
|
|
5224
5259
|
onClick: () => handleClick("2"),
|
|
@@ -5227,7 +5262,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5227
5262
|
children: "2"
|
|
5228
5263
|
}
|
|
5229
5264
|
),
|
|
5230
|
-
/* @__PURE__ */
|
|
5265
|
+
/* @__PURE__ */ jsx91(
|
|
5231
5266
|
RoundButton_default,
|
|
5232
5267
|
{
|
|
5233
5268
|
onClick: () => handleClick("3"),
|
|
@@ -5238,7 +5273,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5238
5273
|
)
|
|
5239
5274
|
] }),
|
|
5240
5275
|
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5241
|
-
/* @__PURE__ */
|
|
5276
|
+
/* @__PURE__ */ jsx91(
|
|
5242
5277
|
RoundButton_default,
|
|
5243
5278
|
{
|
|
5244
5279
|
onClick: () => handleClick("4"),
|
|
@@ -5247,7 +5282,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5247
5282
|
children: "4"
|
|
5248
5283
|
}
|
|
5249
5284
|
),
|
|
5250
|
-
/* @__PURE__ */
|
|
5285
|
+
/* @__PURE__ */ jsx91(
|
|
5251
5286
|
RoundButton_default,
|
|
5252
5287
|
{
|
|
5253
5288
|
onClick: () => handleClick("5"),
|
|
@@ -5256,7 +5291,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5256
5291
|
children: "5"
|
|
5257
5292
|
}
|
|
5258
5293
|
),
|
|
5259
|
-
/* @__PURE__ */
|
|
5294
|
+
/* @__PURE__ */ jsx91(
|
|
5260
5295
|
RoundButton_default,
|
|
5261
5296
|
{
|
|
5262
5297
|
onClick: () => handleClick("6"),
|
|
@@ -5267,7 +5302,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5267
5302
|
)
|
|
5268
5303
|
] }),
|
|
5269
5304
|
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5270
|
-
/* @__PURE__ */
|
|
5305
|
+
/* @__PURE__ */ jsx91(
|
|
5271
5306
|
RoundButton_default,
|
|
5272
5307
|
{
|
|
5273
5308
|
onClick: () => handleClick("7"),
|
|
@@ -5276,7 +5311,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5276
5311
|
children: "7"
|
|
5277
5312
|
}
|
|
5278
5313
|
),
|
|
5279
|
-
/* @__PURE__ */
|
|
5314
|
+
/* @__PURE__ */ jsx91(
|
|
5280
5315
|
RoundButton_default,
|
|
5281
5316
|
{
|
|
5282
5317
|
onClick: () => handleClick("8"),
|
|
@@ -5285,7 +5320,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5285
5320
|
children: "8"
|
|
5286
5321
|
}
|
|
5287
5322
|
),
|
|
5288
|
-
/* @__PURE__ */
|
|
5323
|
+
/* @__PURE__ */ jsx91(
|
|
5289
5324
|
RoundButton_default,
|
|
5290
5325
|
{
|
|
5291
5326
|
onClick: () => handleClick("9"),
|
|
@@ -5296,7 +5331,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5296
5331
|
)
|
|
5297
5332
|
] }),
|
|
5298
5333
|
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5299
|
-
/* @__PURE__ */
|
|
5334
|
+
/* @__PURE__ */ jsx91(
|
|
5300
5335
|
RoundButton_default,
|
|
5301
5336
|
{
|
|
5302
5337
|
onClick: () => handleClick("0"),
|
|
@@ -5305,7 +5340,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5305
5340
|
children: "0"
|
|
5306
5341
|
}
|
|
5307
5342
|
),
|
|
5308
|
-
/* @__PURE__ */
|
|
5343
|
+
/* @__PURE__ */ jsx91(
|
|
5309
5344
|
RoundButton_default,
|
|
5310
5345
|
{
|
|
5311
5346
|
onClick: () => handleClick("."),
|
|
@@ -5314,7 +5349,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5314
5349
|
children: "."
|
|
5315
5350
|
}
|
|
5316
5351
|
),
|
|
5317
|
-
/* @__PURE__ */
|
|
5352
|
+
/* @__PURE__ */ jsx91(
|
|
5318
5353
|
RoundButton_default,
|
|
5319
5354
|
{
|
|
5320
5355
|
onClick: () => handleClick("-"),
|
|
@@ -5325,7 +5360,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5325
5360
|
)
|
|
5326
5361
|
] })
|
|
5327
5362
|
] }),
|
|
5328
|
-
/* @__PURE__ */
|
|
5363
|
+
/* @__PURE__ */ jsx91(Box19, { className: styles.numpadBackspace, children: /* @__PURE__ */ jsx91(
|
|
5329
5364
|
RoundButton_default,
|
|
5330
5365
|
{
|
|
5331
5366
|
icon: "backspaceOutlined",
|
|
@@ -5341,7 +5376,7 @@ var NumpadPlus_default = NumpadPlus;
|
|
|
5341
5376
|
// src/components/Pagination/Pagination.tsx
|
|
5342
5377
|
import { Pagination, Paper as Paper4, Typography as Typography16 } from "@mui/material";
|
|
5343
5378
|
import { makeStyles as makeStyles32 } from "tss-react/mui";
|
|
5344
|
-
import { jsx as
|
|
5379
|
+
import { jsx as jsx92, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
5345
5380
|
var paginationHeight = "56px";
|
|
5346
5381
|
var useStyles32 = makeStyles32()((theme) => ({
|
|
5347
5382
|
root: {
|
|
@@ -5384,7 +5419,7 @@ var PaginationForTable = ({
|
|
|
5384
5419
|
updateFilters({ ...appliedFilters, page: value });
|
|
5385
5420
|
};
|
|
5386
5421
|
const isFixed = position === "fixed";
|
|
5387
|
-
return /* @__PURE__ */
|
|
5422
|
+
return /* @__PURE__ */ jsx92(Paper4, { children: /* @__PURE__ */ jsxs58(
|
|
5388
5423
|
"div",
|
|
5389
5424
|
{
|
|
5390
5425
|
style,
|
|
@@ -5396,7 +5431,7 @@ var PaginationForTable = ({
|
|
|
5396
5431
|
"Page: ",
|
|
5397
5432
|
page
|
|
5398
5433
|
] }),
|
|
5399
|
-
/* @__PURE__ */
|
|
5434
|
+
/* @__PURE__ */ jsx92(
|
|
5400
5435
|
Pagination,
|
|
5401
5436
|
{
|
|
5402
5437
|
count: pagination.num_pages,
|
|
@@ -5413,8 +5448,8 @@ var Pagination_default = PaginationForTable;
|
|
|
5413
5448
|
// src/components/PhoneInput/PhoneInput.tsx
|
|
5414
5449
|
import ReactPhoneInput from "react-phone-input-material-ui";
|
|
5415
5450
|
import { Box as Box20, TextField as TextField5, Typography as Typography17 } from "@mui/material";
|
|
5416
|
-
import { jsx as
|
|
5417
|
-
var TextInput = (props) => /* @__PURE__ */
|
|
5451
|
+
import { jsx as jsx93, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
5452
|
+
var TextInput = (props) => /* @__PURE__ */ jsx93(TextField5, { ...props, variant: "standard" });
|
|
5418
5453
|
var PhoneInput = ({
|
|
5419
5454
|
value,
|
|
5420
5455
|
onChange,
|
|
@@ -5431,7 +5466,7 @@ var PhoneInput = ({
|
|
|
5431
5466
|
},
|
|
5432
5467
|
className,
|
|
5433
5468
|
children: [
|
|
5434
|
-
/* @__PURE__ */
|
|
5469
|
+
/* @__PURE__ */ jsx93(
|
|
5435
5470
|
ReactPhoneInput,
|
|
5436
5471
|
{
|
|
5437
5472
|
label,
|
|
@@ -5446,7 +5481,7 @@ var PhoneInput = ({
|
|
|
5446
5481
|
}
|
|
5447
5482
|
}
|
|
5448
5483
|
),
|
|
5449
|
-
/* @__PURE__ */
|
|
5484
|
+
/* @__PURE__ */ jsx93(
|
|
5450
5485
|
Typography17,
|
|
5451
5486
|
{
|
|
5452
5487
|
variant: "caption",
|
|
@@ -5475,7 +5510,7 @@ import {
|
|
|
5475
5510
|
Typography as Typography18
|
|
5476
5511
|
} from "@mui/material";
|
|
5477
5512
|
import { makeStyles as makeStyles33 } from "tss-react/mui";
|
|
5478
|
-
import { jsx as
|
|
5513
|
+
import { jsx as jsx94, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
5479
5514
|
var useStyles33 = makeStyles33()((theme) => ({
|
|
5480
5515
|
container: {
|
|
5481
5516
|
position: "relative",
|
|
@@ -5618,7 +5653,7 @@ var PlusMinusInput = ({
|
|
|
5618
5653
|
updateInputValue(value);
|
|
5619
5654
|
};
|
|
5620
5655
|
const { classes, cx } = useStyles33();
|
|
5621
|
-
return /* @__PURE__ */
|
|
5656
|
+
return /* @__PURE__ */ jsx94("div", { className: classes.container, children: /* @__PURE__ */ jsxs60(
|
|
5622
5657
|
FormGroup,
|
|
5623
5658
|
{
|
|
5624
5659
|
className: cx(classes.wrapper, {
|
|
@@ -5626,7 +5661,7 @@ var PlusMinusInput = ({
|
|
|
5626
5661
|
[classes.rightButtons]: buttonsPosition === "right"
|
|
5627
5662
|
}),
|
|
5628
5663
|
children: [
|
|
5629
|
-
/* @__PURE__ */
|
|
5664
|
+
/* @__PURE__ */ jsx94(
|
|
5630
5665
|
RoundButton_default,
|
|
5631
5666
|
{
|
|
5632
5667
|
className: classes.minus,
|
|
@@ -5637,17 +5672,17 @@ var PlusMinusInput = ({
|
|
|
5637
5672
|
}
|
|
5638
5673
|
),
|
|
5639
5674
|
/* @__PURE__ */ jsxs60("div", { children: [
|
|
5640
|
-
/* @__PURE__ */
|
|
5675
|
+
/* @__PURE__ */ jsx94(
|
|
5641
5676
|
Controller7,
|
|
5642
5677
|
{
|
|
5643
5678
|
control,
|
|
5644
5679
|
name: "inputValue",
|
|
5645
|
-
render: ({ field }) => /* @__PURE__ */
|
|
5680
|
+
render: ({ field }) => /* @__PURE__ */ jsx94(
|
|
5646
5681
|
FormControlLabel2,
|
|
5647
5682
|
{
|
|
5648
5683
|
...field,
|
|
5649
5684
|
className: classes.formControlLabel,
|
|
5650
|
-
control: /* @__PURE__ */
|
|
5685
|
+
control: /* @__PURE__ */ jsx94(
|
|
5651
5686
|
TextField6,
|
|
5652
5687
|
{
|
|
5653
5688
|
className: classes.input,
|
|
@@ -5664,7 +5699,7 @@ var PlusMinusInput = ({
|
|
|
5664
5699
|
)
|
|
5665
5700
|
}
|
|
5666
5701
|
),
|
|
5667
|
-
errors.inputValue && /* @__PURE__ */
|
|
5702
|
+
errors.inputValue && /* @__PURE__ */ jsx94(
|
|
5668
5703
|
Typography18,
|
|
5669
5704
|
{
|
|
5670
5705
|
className: classes.errorText,
|
|
@@ -5675,7 +5710,7 @@ var PlusMinusInput = ({
|
|
|
5675
5710
|
}
|
|
5676
5711
|
)
|
|
5677
5712
|
] }),
|
|
5678
|
-
/* @__PURE__ */
|
|
5713
|
+
/* @__PURE__ */ jsx94(
|
|
5679
5714
|
RoundButton_default,
|
|
5680
5715
|
{
|
|
5681
5716
|
className: classes.plus,
|
|
@@ -5699,21 +5734,21 @@ import { withStyles as withStyles4 } from "tss-react/mui";
|
|
|
5699
5734
|
// src/components/ProductImage/ProductImage.tsx
|
|
5700
5735
|
import { CardMedia } from "@mui/material";
|
|
5701
5736
|
import { withStyles as withStyles3 } from "tss-react/mui";
|
|
5702
|
-
import { jsx as
|
|
5737
|
+
import { jsx as jsx95, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
5703
5738
|
var PImage = ({
|
|
5704
5739
|
classes,
|
|
5705
5740
|
image,
|
|
5706
5741
|
size = "c_productbust__image_xs",
|
|
5707
5742
|
status
|
|
5708
5743
|
}) => /* @__PURE__ */ jsxs61("div", { className: classes.c_productbust__image, children: [
|
|
5709
|
-
/* @__PURE__ */
|
|
5744
|
+
/* @__PURE__ */ jsx95(
|
|
5710
5745
|
CardMedia,
|
|
5711
5746
|
{
|
|
5712
5747
|
className: classes[size],
|
|
5713
5748
|
image: image || "@/resources/img/peas.jpg"
|
|
5714
5749
|
}
|
|
5715
5750
|
),
|
|
5716
|
-
status && status !== "ACTIVE" && /* @__PURE__ */
|
|
5751
|
+
status && status !== "ACTIVE" && /* @__PURE__ */ jsx95("div", { className: classes.c_productbust__label_status, children: status })
|
|
5717
5752
|
] });
|
|
5718
5753
|
var ProductImage = withStyles3(PImage, (theme) => ({
|
|
5719
5754
|
c_productbust__label_status: {
|
|
@@ -5795,7 +5830,7 @@ var ProductImage = withStyles3(PImage, (theme) => ({
|
|
|
5795
5830
|
var ProductImage_default = ProductImage;
|
|
5796
5831
|
|
|
5797
5832
|
// src/components/ProductBust/ProductBust.tsx
|
|
5798
|
-
import { Fragment as Fragment9, jsx as
|
|
5833
|
+
import { Fragment as Fragment9, jsx as jsx96, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
5799
5834
|
var PBust = ({
|
|
5800
5835
|
classes,
|
|
5801
5836
|
size,
|
|
@@ -5838,7 +5873,7 @@ var PBust = ({
|
|
|
5838
5873
|
break;
|
|
5839
5874
|
}
|
|
5840
5875
|
const [historyVisible, setHistoryVisible] = useState8(false);
|
|
5841
|
-
const historyDataIcon = () => /* @__PURE__ */
|
|
5876
|
+
const historyDataIcon = () => /* @__PURE__ */ jsx96(
|
|
5842
5877
|
RoundButton_default,
|
|
5843
5878
|
{
|
|
5844
5879
|
icon: "history",
|
|
@@ -5847,7 +5882,7 @@ var PBust = ({
|
|
|
5847
5882
|
}
|
|
5848
5883
|
);
|
|
5849
5884
|
return /* @__PURE__ */ jsxs62("div", { className: classes.c_productbust, children: [
|
|
5850
|
-
/* @__PURE__ */
|
|
5885
|
+
/* @__PURE__ */ jsx96(
|
|
5851
5886
|
ProductImage_default,
|
|
5852
5887
|
{
|
|
5853
5888
|
image: product?.image,
|
|
@@ -5858,7 +5893,7 @@ var PBust = ({
|
|
|
5858
5893
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__container, children: [
|
|
5859
5894
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__heading, children: [
|
|
5860
5895
|
/* @__PURE__ */ jsxs62("div", { children: [
|
|
5861
|
-
/* @__PURE__ */
|
|
5896
|
+
/* @__PURE__ */ jsx96(
|
|
5862
5897
|
Typography19,
|
|
5863
5898
|
{
|
|
5864
5899
|
component: "span",
|
|
@@ -5867,10 +5902,10 @@ var PBust = ({
|
|
|
5867
5902
|
children: !!locationData && locationData
|
|
5868
5903
|
}
|
|
5869
5904
|
),
|
|
5870
|
-
/* @__PURE__ */
|
|
5871
|
-
!product && /* @__PURE__ */
|
|
5905
|
+
/* @__PURE__ */ jsx96(Typography19, { component: "span", className: classes[titleSize], children: product?.name }),
|
|
5906
|
+
!product && /* @__PURE__ */ jsx96(Typography19, { component: "span", className: classes[titleSize], children: "Empty Position" }),
|
|
5872
5907
|
primaryData || /* @__PURE__ */ jsxs62(Fragment9, { children: [
|
|
5873
|
-
/* @__PURE__ */
|
|
5908
|
+
/* @__PURE__ */ jsx96(
|
|
5874
5909
|
Typography19,
|
|
5875
5910
|
{
|
|
5876
5911
|
style: { color: "#555" },
|
|
@@ -5878,7 +5913,7 @@ var PBust = ({
|
|
|
5878
5913
|
children: product?.category.name
|
|
5879
5914
|
}
|
|
5880
5915
|
),
|
|
5881
|
-
/* @__PURE__ */
|
|
5916
|
+
/* @__PURE__ */ jsx96(
|
|
5882
5917
|
Typography19,
|
|
5883
5918
|
{
|
|
5884
5919
|
style: { color: "#A42966", textTransform: "uppercase" },
|
|
@@ -5889,13 +5924,13 @@ var PBust = ({
|
|
|
5889
5924
|
] })
|
|
5890
5925
|
] }),
|
|
5891
5926
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__btns, children: [
|
|
5892
|
-
/* @__PURE__ */
|
|
5893
|
-
/* @__PURE__ */
|
|
5927
|
+
/* @__PURE__ */ jsx96("div", { children: buttonData }),
|
|
5928
|
+
/* @__PURE__ */ jsx96("div", { children: !!locationId && historyDataIcon() })
|
|
5894
5929
|
] })
|
|
5895
5930
|
] }),
|
|
5896
|
-
/* @__PURE__ */
|
|
5931
|
+
/* @__PURE__ */ jsx96("div", { children: !!secondaryData && secondaryData })
|
|
5897
5932
|
] }),
|
|
5898
|
-
/* @__PURE__ */
|
|
5933
|
+
/* @__PURE__ */ jsx96(
|
|
5899
5934
|
LocationHistoryDialog,
|
|
5900
5935
|
{
|
|
5901
5936
|
handleVisible: setHistoryVisible,
|
|
@@ -5999,7 +6034,7 @@ var ProductBust_default = ProductBust;
|
|
|
5999
6034
|
// src/components/RenderAvatar/RenderAvatar.tsx
|
|
6000
6035
|
import { Avatar as Avatar2, Badge, Box as Box21, Typography as Typography20 } from "@mui/material";
|
|
6001
6036
|
import { withStyles as withStyles5 } from "tss-react/mui";
|
|
6002
|
-
import { jsx as
|
|
6037
|
+
import { jsx as jsx97, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
6003
6038
|
var RenderAvatar = ({ active }) => {
|
|
6004
6039
|
const StyledBadge = withStyles5(Badge, () => ({
|
|
6005
6040
|
root: {
|
|
@@ -6013,7 +6048,7 @@ var RenderAvatar = ({ active }) => {
|
|
|
6013
6048
|
{
|
|
6014
6049
|
sx: { display: "flex", flexDirection: "column", alignItems: "center" },
|
|
6015
6050
|
children: [
|
|
6016
|
-
/* @__PURE__ */
|
|
6051
|
+
/* @__PURE__ */ jsx97(
|
|
6017
6052
|
StyledBadge,
|
|
6018
6053
|
{
|
|
6019
6054
|
overlap: "circular",
|
|
@@ -6022,10 +6057,10 @@ var RenderAvatar = ({ active }) => {
|
|
|
6022
6057
|
horizontal: "right"
|
|
6023
6058
|
},
|
|
6024
6059
|
variant: "dot",
|
|
6025
|
-
children: /* @__PURE__ */
|
|
6060
|
+
children: /* @__PURE__ */ jsx97(Avatar2, {})
|
|
6026
6061
|
}
|
|
6027
6062
|
),
|
|
6028
|
-
/* @__PURE__ */
|
|
6063
|
+
/* @__PURE__ */ jsx97(Typography20, { variant: "caption", children: active ? "Active" : "Disabled" })
|
|
6029
6064
|
]
|
|
6030
6065
|
}
|
|
6031
6066
|
);
|
|
@@ -6049,7 +6084,7 @@ import { useEffect as useEffect4, useState as useState9 } from "react";
|
|
|
6049
6084
|
var transformNameToID = (name) => name.replaceAll(" ", "-").toLocaleLowerCase();
|
|
6050
6085
|
|
|
6051
6086
|
// src/components/RenderContentList/RenderContentList.tsx
|
|
6052
|
-
import { jsx as
|
|
6087
|
+
import { jsx as jsx98, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
6053
6088
|
var useStyles34 = makeStyles34()(
|
|
6054
6089
|
(_theme, _params, classes) => ({
|
|
6055
6090
|
root: {
|
|
@@ -6104,12 +6139,12 @@ var RenderContentList = ({
|
|
|
6104
6139
|
observer.current?.disconnect();
|
|
6105
6140
|
};
|
|
6106
6141
|
}, [items]);
|
|
6107
|
-
return /* @__PURE__ */
|
|
6142
|
+
return /* @__PURE__ */ jsx98(
|
|
6108
6143
|
List2,
|
|
6109
6144
|
{
|
|
6110
6145
|
component: "nav",
|
|
6111
6146
|
"aria-labelledby": "nested-list-subheader",
|
|
6112
|
-
subheader: /* @__PURE__ */
|
|
6147
|
+
subheader: /* @__PURE__ */ jsx98(ListSubheader2, { component: "div", id: "nested-list-subheader", children: "Contents" }),
|
|
6113
6148
|
children: items.map((item) => {
|
|
6114
6149
|
const id = transformNameToID(item);
|
|
6115
6150
|
return /* @__PURE__ */ jsxs64(
|
|
@@ -6128,8 +6163,8 @@ var RenderContentList = ({
|
|
|
6128
6163
|
}
|
|
6129
6164
|
},
|
|
6130
6165
|
children: [
|
|
6131
|
-
/* @__PURE__ */
|
|
6132
|
-
warningItems?.includes(item) && /* @__PURE__ */
|
|
6166
|
+
/* @__PURE__ */ jsx98(ListItemText5, { primary: item }),
|
|
6167
|
+
warningItems?.includes(item) && /* @__PURE__ */ jsx98(Tooltip4, { title: warningMessage, children: /* @__PURE__ */ jsx98(WarningAmber, { color: "warning" }) })
|
|
6133
6168
|
]
|
|
6134
6169
|
},
|
|
6135
6170
|
id
|
|
@@ -6143,7 +6178,7 @@ var RenderContentList_default = RenderContentList;
|
|
|
6143
6178
|
// src/components/RowProductCard/RowProductCard.tsx
|
|
6144
6179
|
import { Box as Box22, Divider as Divider4, Paper as Paper5, Typography as Typography21 } from "@mui/material";
|
|
6145
6180
|
import { makeStyles as makeStyles35 } from "tss-react/mui";
|
|
6146
|
-
import { Fragment as Fragment10, jsx as
|
|
6181
|
+
import { Fragment as Fragment10, jsx as jsx99, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
6147
6182
|
var useStyles35 = makeStyles35()((theme) => ({
|
|
6148
6183
|
wrapper: {
|
|
6149
6184
|
display: "flex",
|
|
@@ -6183,7 +6218,7 @@ var RowProductCard = ({
|
|
|
6183
6218
|
large: "c_productbust__image_lg"
|
|
6184
6219
|
};
|
|
6185
6220
|
return /* @__PURE__ */ jsxs65(Paper5, { className: classes.wrapper, children: [
|
|
6186
|
-
/* @__PURE__ */
|
|
6221
|
+
/* @__PURE__ */ jsx99(
|
|
6187
6222
|
ProductImage_default,
|
|
6188
6223
|
{
|
|
6189
6224
|
image: product.image,
|
|
@@ -6209,16 +6244,16 @@ var RowProductCard = ({
|
|
|
6209
6244
|
},
|
|
6210
6245
|
children: [
|
|
6211
6246
|
/* @__PURE__ */ jsxs65("div", { children: [
|
|
6212
|
-
location ? /* @__PURE__ */
|
|
6213
|
-
/* @__PURE__ */
|
|
6247
|
+
location ? /* @__PURE__ */ jsx99(Typography21, { className: classes.smallTitle, variant: "caption", children: `Location: ${location}` }) : null,
|
|
6248
|
+
/* @__PURE__ */ jsx99(Typography21, { variant: "h6", children: product.name })
|
|
6214
6249
|
] }),
|
|
6215
6250
|
children
|
|
6216
6251
|
]
|
|
6217
6252
|
}
|
|
6218
6253
|
),
|
|
6219
6254
|
hasColumns ? /* @__PURE__ */ jsxs65(Fragment10, { children: [
|
|
6220
|
-
/* @__PURE__ */
|
|
6221
|
-
/* @__PURE__ */
|
|
6255
|
+
/* @__PURE__ */ jsx99(Divider4, { className: classes.divider }),
|
|
6256
|
+
/* @__PURE__ */ jsx99(
|
|
6222
6257
|
Box22,
|
|
6223
6258
|
{
|
|
6224
6259
|
sx: {
|
|
@@ -6226,8 +6261,8 @@ var RowProductCard = ({
|
|
|
6226
6261
|
gap: "24px"
|
|
6227
6262
|
},
|
|
6228
6263
|
children: columns.map((column) => /* @__PURE__ */ jsxs65("div", { children: [
|
|
6229
|
-
/* @__PURE__ */
|
|
6230
|
-
typeof column.value === "string" ? /* @__PURE__ */
|
|
6264
|
+
/* @__PURE__ */ jsx99(Typography21, { className: classes.smallTitle, variant: "caption", children: column.title }),
|
|
6265
|
+
typeof column.value === "string" ? /* @__PURE__ */ jsx99(Typography21, { variant: "body1", children: column.value }) : column.value
|
|
6231
6266
|
] }, column.title))
|
|
6232
6267
|
}
|
|
6233
6268
|
)
|
|
@@ -6243,7 +6278,7 @@ var RowProductCard_default = RowProductCard;
|
|
|
6243
6278
|
import { useEffect as useEffect6, useState as useState11 } from "react";
|
|
6244
6279
|
import { Box as Box23, Dialog as Dialog4, Divider as Divider5, Fade, Paper as Paper6, Typography as Typography22 } from "@mui/material";
|
|
6245
6280
|
import { makeStyles as makeStyles36 } from "tss-react/mui";
|
|
6246
|
-
import { jsx as
|
|
6281
|
+
import { jsx as jsx100, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
6247
6282
|
var useStyles36 = makeStyles36()((theme) => ({
|
|
6248
6283
|
dialog: {
|
|
6249
6284
|
margin: "0 auto",
|
|
@@ -6336,10 +6371,10 @@ var ScrollableDialog = ({
|
|
|
6336
6371
|
setDialogBodyMaxHeight();
|
|
6337
6372
|
}
|
|
6338
6373
|
}, [isOpen, maxDialogHeight, header]);
|
|
6339
|
-
return /* @__PURE__ */
|
|
6340
|
-
header ? /* @__PURE__ */
|
|
6374
|
+
return /* @__PURE__ */ jsx100(Dialog4, { className: classes.dialog, fullWidth: true, maxWidth: false, open: isOpen, children: /* @__PURE__ */ jsx100(Fade, { in: isOpen, children: /* @__PURE__ */ jsxs66(Paper6, { className: classes.wrapper, children: [
|
|
6375
|
+
header ? /* @__PURE__ */ jsx100("div", { className: classes.header, id: "dialog-header", children: header }) : null,
|
|
6341
6376
|
/* @__PURE__ */ jsxs66("div", { className: classes.body, children: [
|
|
6342
|
-
/* @__PURE__ */
|
|
6377
|
+
/* @__PURE__ */ jsx100(
|
|
6343
6378
|
Typography22,
|
|
6344
6379
|
{
|
|
6345
6380
|
className: classes.title,
|
|
@@ -6348,7 +6383,7 @@ var ScrollableDialog = ({
|
|
|
6348
6383
|
children: title
|
|
6349
6384
|
}
|
|
6350
6385
|
),
|
|
6351
|
-
/* @__PURE__ */
|
|
6386
|
+
/* @__PURE__ */ jsx100(
|
|
6352
6387
|
"div",
|
|
6353
6388
|
{
|
|
6354
6389
|
className: cx(classes.scrollableContainer, {
|
|
@@ -6362,8 +6397,8 @@ var ScrollableDialog = ({
|
|
|
6362
6397
|
}
|
|
6363
6398
|
)
|
|
6364
6399
|
] }),
|
|
6365
|
-
/* @__PURE__ */
|
|
6366
|
-
footer ? /* @__PURE__ */
|
|
6400
|
+
/* @__PURE__ */ jsx100(Divider5, {}),
|
|
6401
|
+
footer ? /* @__PURE__ */ jsx100(
|
|
6367
6402
|
Box23,
|
|
6368
6403
|
{
|
|
6369
6404
|
className: classes.footer,
|
|
@@ -6393,7 +6428,7 @@ import {
|
|
|
6393
6428
|
} from "@mui/icons-material";
|
|
6394
6429
|
import { Button as Button11, Divider as Divider6, InputBase, Paper as Paper7 } from "@mui/material";
|
|
6395
6430
|
import { makeStyles as makeStyles37 } from "tss-react/mui";
|
|
6396
|
-
import { jsx as
|
|
6431
|
+
import { jsx as jsx101, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
6397
6432
|
var useStyles37 = makeStyles37()((theme) => ({
|
|
6398
6433
|
searchContainer: {
|
|
6399
6434
|
height: 46,
|
|
@@ -6454,8 +6489,8 @@ var SearchWithFilters = ({
|
|
|
6454
6489
|
setSearchText(searchValue);
|
|
6455
6490
|
}, [searchValue]);
|
|
6456
6491
|
return /* @__PURE__ */ jsxs67(Paper7, { className: classes.searchContainer, children: [
|
|
6457
|
-
/* @__PURE__ */
|
|
6458
|
-
/* @__PURE__ */
|
|
6492
|
+
/* @__PURE__ */ jsx101(SearchIcon, { className: classes.icon, fontSize: "small" }),
|
|
6493
|
+
/* @__PURE__ */ jsx101(
|
|
6459
6494
|
InputBase,
|
|
6460
6495
|
{
|
|
6461
6496
|
className: classes.input,
|
|
@@ -6467,7 +6502,7 @@ var SearchWithFilters = ({
|
|
|
6467
6502
|
inputProps: { "aria-label": "search" }
|
|
6468
6503
|
}
|
|
6469
6504
|
),
|
|
6470
|
-
/* @__PURE__ */
|
|
6505
|
+
/* @__PURE__ */ jsx101(Divider6, { className: classes.divider, orientation: "vertical" }),
|
|
6471
6506
|
/* @__PURE__ */ jsxs67(
|
|
6472
6507
|
Button11,
|
|
6473
6508
|
{
|
|
@@ -6476,7 +6511,7 @@ var SearchWithFilters = ({
|
|
|
6476
6511
|
disabled,
|
|
6477
6512
|
children: [
|
|
6478
6513
|
"Filters",
|
|
6479
|
-
showFilters ? /* @__PURE__ */
|
|
6514
|
+
showFilters ? /* @__PURE__ */ jsx101(ArrowDropUpIcon, {}) : /* @__PURE__ */ jsx101(ArrowDropDownIcon, {})
|
|
6480
6515
|
]
|
|
6481
6516
|
}
|
|
6482
6517
|
)
|
|
@@ -6485,7 +6520,7 @@ var SearchWithFilters = ({
|
|
|
6485
6520
|
var SearchWithFilters_default = React2.memo(SearchWithFilters);
|
|
6486
6521
|
|
|
6487
6522
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeader.tsx
|
|
6488
|
-
import { jsx as
|
|
6523
|
+
import { jsx as jsx102, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
6489
6524
|
var useStyles38 = makeStyles38()((theme) => ({
|
|
6490
6525
|
wrapper: {
|
|
6491
6526
|
display: "flex",
|
|
@@ -6521,11 +6556,11 @@ var SearchAndFilterHeader = ({
|
|
|
6521
6556
|
searchValue
|
|
6522
6557
|
}) => {
|
|
6523
6558
|
const { classes } = useStyles38();
|
|
6524
|
-
return /* @__PURE__ */
|
|
6559
|
+
return /* @__PURE__ */ jsx102(Paper8, { children: /* @__PURE__ */ jsxs68(Box24, { className: classes.wrapper, children: [
|
|
6525
6560
|
/* @__PURE__ */ jsxs68(Box24, { className: classes.container, children: [
|
|
6526
6561
|
/* @__PURE__ */ jsxs68(Box24, { className: classes.leftSection, children: [
|
|
6527
|
-
/* @__PURE__ */
|
|
6528
|
-
/* @__PURE__ */
|
|
6562
|
+
/* @__PURE__ */ jsx102(AppLabel_default, { appName }),
|
|
6563
|
+
/* @__PURE__ */ jsx102(
|
|
6529
6564
|
SearchWithFilters_default,
|
|
6530
6565
|
{
|
|
6531
6566
|
searchValue,
|
|
@@ -6536,9 +6571,9 @@ var SearchAndFilterHeader = ({
|
|
|
6536
6571
|
}
|
|
6537
6572
|
)
|
|
6538
6573
|
] }),
|
|
6539
|
-
/* @__PURE__ */
|
|
6574
|
+
/* @__PURE__ */ jsx102(Box24, { children: extraButton })
|
|
6540
6575
|
] }),
|
|
6541
|
-
showFilters ? /* @__PURE__ */
|
|
6576
|
+
showFilters ? /* @__PURE__ */ jsx102(Box24, { children: filtersComponent }) : null,
|
|
6542
6577
|
appliedFiltersComponent
|
|
6543
6578
|
] }) });
|
|
6544
6579
|
};
|
|
@@ -6558,7 +6593,7 @@ import {
|
|
|
6558
6593
|
} from "@mui/icons-material";
|
|
6559
6594
|
import { Box as Box25, Button as Button12, Divider as Divider7, InputBase as InputBase2, Paper as Paper9 } from "@mui/material";
|
|
6560
6595
|
import { makeStyles as makeStyles39 } from "tss-react/mui";
|
|
6561
|
-
import { Fragment as Fragment11, jsx as
|
|
6596
|
+
import { Fragment as Fragment11, jsx as jsx103, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
6562
6597
|
var useStyles39 = makeStyles39()((theme) => ({
|
|
6563
6598
|
c_search: {
|
|
6564
6599
|
height: 46,
|
|
@@ -6634,8 +6669,8 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6634
6669
|
};
|
|
6635
6670
|
const ArrowIcon = isOpen ? ArrowDropUpIcon2 : ArrowDropDownIcon2;
|
|
6636
6671
|
return /* @__PURE__ */ jsxs69(Paper9, { className: classes.c_search, children: [
|
|
6637
|
-
/* @__PURE__ */
|
|
6638
|
-
/* @__PURE__ */
|
|
6672
|
+
/* @__PURE__ */ jsx103(Box25, { className: classes.c_search__icon, children: /* @__PURE__ */ jsx103(SearchIcon2, { className: classes.icon, fontSize: "small" }) }),
|
|
6673
|
+
/* @__PURE__ */ jsx103(
|
|
6639
6674
|
InputBase2,
|
|
6640
6675
|
{
|
|
6641
6676
|
className: classes.c_search__input,
|
|
@@ -6646,7 +6681,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6646
6681
|
}
|
|
6647
6682
|
),
|
|
6648
6683
|
showFilterButton && /* @__PURE__ */ jsxs69(Fragment11, { children: [
|
|
6649
|
-
/* @__PURE__ */
|
|
6684
|
+
/* @__PURE__ */ jsx103(
|
|
6650
6685
|
Divider7,
|
|
6651
6686
|
{
|
|
6652
6687
|
className: classes.c_search__divider,
|
|
@@ -6660,7 +6695,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6660
6695
|
onClick: handleFilterButtonClick,
|
|
6661
6696
|
children: [
|
|
6662
6697
|
"Filters",
|
|
6663
|
-
/* @__PURE__ */
|
|
6698
|
+
/* @__PURE__ */ jsx103(ArrowIcon, { className: classes.c_search__bt_icon_filter })
|
|
6664
6699
|
]
|
|
6665
6700
|
}
|
|
6666
6701
|
)
|
|
@@ -6670,7 +6705,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6670
6705
|
var SearchWithFiltersForTable_default = memo17(SearchWithFiltersForTable);
|
|
6671
6706
|
|
|
6672
6707
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeaderForTable.tsx
|
|
6673
|
-
import { jsx as
|
|
6708
|
+
import { jsx as jsx104, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
6674
6709
|
var useStyles40 = makeStyles40()((theme) => ({
|
|
6675
6710
|
container: {
|
|
6676
6711
|
display: "flex",
|
|
@@ -6704,8 +6739,8 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
6704
6739
|
const { classes } = useStyles40();
|
|
6705
6740
|
return /* @__PURE__ */ jsxs70(Box26, { className: classes.container, children: [
|
|
6706
6741
|
/* @__PURE__ */ jsxs70(Box26, { className: classes.leftSection, children: [
|
|
6707
|
-
/* @__PURE__ */
|
|
6708
|
-
/* @__PURE__ */
|
|
6742
|
+
/* @__PURE__ */ jsx104(AppLabel_default, { appName }),
|
|
6743
|
+
/* @__PURE__ */ jsx104(
|
|
6709
6744
|
SearchWithFiltersForTable_default,
|
|
6710
6745
|
{
|
|
6711
6746
|
onFilterButtonClick,
|
|
@@ -6716,17 +6751,17 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
6716
6751
|
searchedValue
|
|
6717
6752
|
}
|
|
6718
6753
|
),
|
|
6719
|
-
copy && /* @__PURE__ */
|
|
6754
|
+
copy && /* @__PURE__ */ jsx104(
|
|
6720
6755
|
Box26,
|
|
6721
6756
|
{
|
|
6722
6757
|
sx: {
|
|
6723
6758
|
margin: 0.5
|
|
6724
6759
|
},
|
|
6725
|
-
children: /* @__PURE__ */
|
|
6760
|
+
children: /* @__PURE__ */ jsx104(OutlinedButton_default, { copy })
|
|
6726
6761
|
}
|
|
6727
6762
|
)
|
|
6728
6763
|
] }),
|
|
6729
|
-
/* @__PURE__ */
|
|
6764
|
+
/* @__PURE__ */ jsx104(Box26, { children: button })
|
|
6730
6765
|
] });
|
|
6731
6766
|
};
|
|
6732
6767
|
var SearchAndFilterHeaderForTable_default = React3.memo(SearchAndFilterHeaderForTable);
|
|
@@ -6735,7 +6770,7 @@ var SearchAndFilterHeaderForTable_default = React3.memo(SearchAndFilterHeaderFor
|
|
|
6735
6770
|
import { History as History2, Info as InfoIcon } from "@mui/icons-material";
|
|
6736
6771
|
import { Box as Box27, Divider as Divider8, IconButton as IconButton2, Tooltip as Tooltip5, Typography as Typography23 } from "@mui/material";
|
|
6737
6772
|
import { makeStyles as makeStyles41 } from "tss-react/mui";
|
|
6738
|
-
import { jsx as
|
|
6773
|
+
import { jsx as jsx105, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
6739
6774
|
var useStyles41 = makeStyles41()((theme) => ({
|
|
6740
6775
|
container: {
|
|
6741
6776
|
display: "flex",
|
|
@@ -6780,7 +6815,7 @@ var SectionName = ({
|
|
|
6780
6815
|
const { classes } = useStyles41();
|
|
6781
6816
|
return /* @__PURE__ */ jsxs71(Box27, { className: classes.container, children: [
|
|
6782
6817
|
/* @__PURE__ */ jsxs71(Box27, { className: classes.titleContainer, children: [
|
|
6783
|
-
/* @__PURE__ */
|
|
6818
|
+
/* @__PURE__ */ jsx105(
|
|
6784
6819
|
Typography23,
|
|
6785
6820
|
{
|
|
6786
6821
|
variant: "h5",
|
|
@@ -6790,7 +6825,7 @@ var SectionName = ({
|
|
|
6790
6825
|
children: name
|
|
6791
6826
|
}
|
|
6792
6827
|
),
|
|
6793
|
-
tooltipDescription ? /* @__PURE__ */
|
|
6828
|
+
tooltipDescription ? /* @__PURE__ */ jsx105(Tooltip5, { title: tooltipDescription, placement: "right", children: /* @__PURE__ */ jsx105(
|
|
6794
6829
|
InfoIcon,
|
|
6795
6830
|
{
|
|
6796
6831
|
fontSize: "small",
|
|
@@ -6800,7 +6835,7 @@ var SectionName = ({
|
|
|
6800
6835
|
) }) : null
|
|
6801
6836
|
] }),
|
|
6802
6837
|
/* @__PURE__ */ jsxs71(Box27, { className: classes.actionButtons, children: [
|
|
6803
|
-
buttonText ? /* @__PURE__ */
|
|
6838
|
+
buttonText ? /* @__PURE__ */ jsx105(
|
|
6804
6839
|
ExtendedButton_default,
|
|
6805
6840
|
{
|
|
6806
6841
|
type: buttonType,
|
|
@@ -6813,8 +6848,8 @@ var SectionName = ({
|
|
|
6813
6848
|
variant: "text"
|
|
6814
6849
|
}
|
|
6815
6850
|
) : null,
|
|
6816
|
-
openHistoryLog && buttonText && /* @__PURE__ */
|
|
6817
|
-
openHistoryLog && /* @__PURE__ */
|
|
6851
|
+
openHistoryLog && buttonText && /* @__PURE__ */ jsx105(Divider8, { orientation: "vertical", sx: { height: "24px" } }),
|
|
6852
|
+
openHistoryLog && /* @__PURE__ */ jsx105(IconButton2, { size: "small", onClick: () => openHistoryLog(), children: /* @__PURE__ */ jsx105(History2, {}) })
|
|
6818
6853
|
] })
|
|
6819
6854
|
] });
|
|
6820
6855
|
};
|
|
@@ -6831,7 +6866,7 @@ import {
|
|
|
6831
6866
|
Select as Select3
|
|
6832
6867
|
} from "@mui/material";
|
|
6833
6868
|
import { makeStyles as makeStyles42 } from "tss-react/mui";
|
|
6834
|
-
import { jsx as
|
|
6869
|
+
import { jsx as jsx106, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
6835
6870
|
var useStyles42 = makeStyles42()(() => ({
|
|
6836
6871
|
container: {
|
|
6837
6872
|
display: "flex",
|
|
@@ -6908,7 +6943,7 @@ var SmartSelect = forwardRef2(
|
|
|
6908
6943
|
"data-testid": dataTestId,
|
|
6909
6944
|
disabled,
|
|
6910
6945
|
children: [
|
|
6911
|
-
inputLabel && /* @__PURE__ */
|
|
6946
|
+
inputLabel && /* @__PURE__ */ jsx106(
|
|
6912
6947
|
InputLabel4,
|
|
6913
6948
|
{
|
|
6914
6949
|
id: "smart-select-label",
|
|
@@ -6933,17 +6968,17 @@ var SmartSelect = forwardRef2(
|
|
|
6933
6968
|
MenuProps: menuProps,
|
|
6934
6969
|
label: inputLabel,
|
|
6935
6970
|
children: [
|
|
6936
|
-
isFetching && /* @__PURE__ */
|
|
6971
|
+
isFetching && /* @__PURE__ */ jsx106(
|
|
6937
6972
|
MenuItem3,
|
|
6938
6973
|
{
|
|
6939
6974
|
disabled: true,
|
|
6940
6975
|
"data-testid": `${dataTestId}-loading`,
|
|
6941
6976
|
id: `${dataTestId}-loading`,
|
|
6942
|
-
children: /* @__PURE__ */
|
|
6977
|
+
children: /* @__PURE__ */ jsx106(CircularProgress4, { size: 24 })
|
|
6943
6978
|
}
|
|
6944
6979
|
),
|
|
6945
|
-
(defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */
|
|
6946
|
-
localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */
|
|
6980
|
+
(defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */ jsx106(MenuItem3, { disabled: true, "data-testid": `${dataTestId}-empty-message`, children: emptyMessage }),
|
|
6981
|
+
localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */ jsx106(
|
|
6947
6982
|
MenuItem3,
|
|
6948
6983
|
{
|
|
6949
6984
|
value: defaultOption?.value,
|
|
@@ -6951,7 +6986,7 @@ var SmartSelect = forwardRef2(
|
|
|
6951
6986
|
children: defaultOption?.label
|
|
6952
6987
|
}
|
|
6953
6988
|
),
|
|
6954
|
-
!isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */
|
|
6989
|
+
!isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */ jsx106(
|
|
6955
6990
|
MenuItem3,
|
|
6956
6991
|
{
|
|
6957
6992
|
value: option?.value,
|
|
@@ -6964,7 +6999,7 @@ var SmartSelect = forwardRef2(
|
|
|
6964
6999
|
]
|
|
6965
7000
|
}
|
|
6966
7001
|
),
|
|
6967
|
-
helperText && /* @__PURE__ */
|
|
7002
|
+
helperText && /* @__PURE__ */ jsx106(FormHelperText3, { "data-testid": `${dataTestId}-helper-text`, children: helperText })
|
|
6968
7003
|
]
|
|
6969
7004
|
}
|
|
6970
7005
|
);
|
|
@@ -6977,7 +7012,7 @@ import { memo as memo19 } from "react";
|
|
|
6977
7012
|
import { Typography as Typography24 } from "@mui/material";
|
|
6978
7013
|
import red2 from "@mui/material/colors/red";
|
|
6979
7014
|
import { makeStyles as makeStyles43 } from "tss-react/mui";
|
|
6980
|
-
import { jsx as
|
|
7015
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
6981
7016
|
var useStyles43 = makeStyles43()((theme) => ({
|
|
6982
7017
|
red: {
|
|
6983
7018
|
backgroundColor: red2["50"],
|
|
@@ -6992,7 +7027,7 @@ var useStyles43 = makeStyles43()((theme) => ({
|
|
|
6992
7027
|
}));
|
|
6993
7028
|
var SquareLabel = ({ color, copy }) => {
|
|
6994
7029
|
const { classes } = useStyles43();
|
|
6995
|
-
return /* @__PURE__ */
|
|
7030
|
+
return /* @__PURE__ */ jsx107(Typography24, { className: classes[color], children: copy });
|
|
6996
7031
|
};
|
|
6997
7032
|
var SquareLabel_default = memo19(SquareLabel);
|
|
6998
7033
|
|
|
@@ -7000,7 +7035,7 @@ var SquareLabel_default = memo19(SquareLabel);
|
|
|
7000
7035
|
import { memo as memo20 } from "react";
|
|
7001
7036
|
import { Grid2, Switch } from "@mui/material";
|
|
7002
7037
|
import { withStyles as withStyles6 } from "tss-react/mui";
|
|
7003
|
-
import { jsx as
|
|
7038
|
+
import { jsx as jsx108, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
7004
7039
|
var LSwitch = ({
|
|
7005
7040
|
checked,
|
|
7006
7041
|
labelOn,
|
|
@@ -7008,7 +7043,7 @@ var LSwitch = ({
|
|
|
7008
7043
|
handleChange,
|
|
7009
7044
|
classes,
|
|
7010
7045
|
disabled
|
|
7011
|
-
}) => /* @__PURE__ */
|
|
7046
|
+
}) => /* @__PURE__ */ jsx108("div", { className: classes.c_switch, children: /* @__PURE__ */ jsxs73(
|
|
7012
7047
|
Grid2,
|
|
7013
7048
|
{
|
|
7014
7049
|
component: "label",
|
|
@@ -7018,8 +7053,8 @@ var LSwitch = ({
|
|
|
7018
7053
|
alignItems: "center"
|
|
7019
7054
|
},
|
|
7020
7055
|
children: [
|
|
7021
|
-
labelOff && /* @__PURE__ */
|
|
7022
|
-
/* @__PURE__ */
|
|
7056
|
+
labelOff && /* @__PURE__ */ jsx108(Grid2, { children: labelOff }),
|
|
7057
|
+
/* @__PURE__ */ jsx108(Grid2, { children: /* @__PURE__ */ jsx108(
|
|
7023
7058
|
Switch,
|
|
7024
7059
|
{
|
|
7025
7060
|
checked,
|
|
@@ -7028,7 +7063,7 @@ var LSwitch = ({
|
|
|
7028
7063
|
disabled
|
|
7029
7064
|
}
|
|
7030
7065
|
) }),
|
|
7031
|
-
labelOn && /* @__PURE__ */
|
|
7066
|
+
labelOn && /* @__PURE__ */ jsx108(Grid2, { children: labelOn })
|
|
7032
7067
|
]
|
|
7033
7068
|
}
|
|
7034
7069
|
) });
|
|
@@ -7068,7 +7103,7 @@ import {
|
|
|
7068
7103
|
} from "@mui/material";
|
|
7069
7104
|
import classNames3 from "classnames";
|
|
7070
7105
|
import { makeStyles as makeStyles44 } from "tss-react/mui";
|
|
7071
|
-
import { Fragment as Fragment12, jsx as
|
|
7106
|
+
import { Fragment as Fragment12, jsx as jsx109, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
7072
7107
|
var useStyles44 = makeStyles44()((theme) => ({
|
|
7073
7108
|
filterMenu: {
|
|
7074
7109
|
display: "flex",
|
|
@@ -7140,7 +7175,7 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7140
7175
|
setSelectedFilters(newSelected);
|
|
7141
7176
|
};
|
|
7142
7177
|
return /* @__PURE__ */ jsxs74(Fragment12, { children: [
|
|
7143
|
-
/* @__PURE__ */
|
|
7178
|
+
/* @__PURE__ */ jsx109(
|
|
7144
7179
|
IconButton3,
|
|
7145
7180
|
{
|
|
7146
7181
|
disableRipple: true,
|
|
@@ -7150,17 +7185,17 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7150
7185
|
className: classNames3("filter-menu-trigger", {
|
|
7151
7186
|
"has-active-filters": hasActiveFilters
|
|
7152
7187
|
}),
|
|
7153
|
-
children: hasActiveFilters ? /* @__PURE__ */
|
|
7188
|
+
children: hasActiveFilters ? /* @__PURE__ */ jsx109(
|
|
7154
7189
|
Chip2,
|
|
7155
7190
|
{
|
|
7156
7191
|
sx: { height: 24 },
|
|
7157
7192
|
label: headerFilters[headCell.id]?.length,
|
|
7158
|
-
icon: /* @__PURE__ */
|
|
7193
|
+
icon: /* @__PURE__ */ jsx109(FilterList, { style: { fontSize: 18 }, color: "primary" })
|
|
7159
7194
|
}
|
|
7160
|
-
) : /* @__PURE__ */
|
|
7195
|
+
) : /* @__PURE__ */ jsx109(FilterList, { style: { fontSize: 18 } })
|
|
7161
7196
|
}
|
|
7162
7197
|
),
|
|
7163
|
-
/* @__PURE__ */
|
|
7198
|
+
/* @__PURE__ */ jsx109(
|
|
7164
7199
|
Menu4,
|
|
7165
7200
|
{
|
|
7166
7201
|
open: !!anchorEl,
|
|
@@ -7173,15 +7208,15 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7173
7208
|
headCell.filterOptionsQuery?.data?.map(
|
|
7174
7209
|
(option) => {
|
|
7175
7210
|
const resolvedOption = resolveFilterOption(option);
|
|
7176
|
-
return /* @__PURE__ */
|
|
7211
|
+
return /* @__PURE__ */ jsx109(
|
|
7177
7212
|
FormControl5,
|
|
7178
7213
|
{
|
|
7179
7214
|
className: classes.filterCheckboxDropdown,
|
|
7180
|
-
children: /* @__PURE__ */
|
|
7215
|
+
children: /* @__PURE__ */ jsx109(
|
|
7181
7216
|
FormControlLabel3,
|
|
7182
7217
|
{
|
|
7183
7218
|
label: resolvedOption,
|
|
7184
|
-
control: /* @__PURE__ */
|
|
7219
|
+
control: /* @__PURE__ */ jsx109(
|
|
7185
7220
|
Checkbox4,
|
|
7186
7221
|
{
|
|
7187
7222
|
disableRipple: true,
|
|
@@ -7198,13 +7233,13 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7198
7233
|
);
|
|
7199
7234
|
}
|
|
7200
7235
|
),
|
|
7201
|
-
/* @__PURE__ */
|
|
7236
|
+
/* @__PURE__ */ jsx109(Divider9, {}),
|
|
7202
7237
|
/* @__PURE__ */ jsxs74(FormControl5, { className: classes.filterCheckboxDropdown, children: [
|
|
7203
|
-
/* @__PURE__ */
|
|
7238
|
+
/* @__PURE__ */ jsx109(
|
|
7204
7239
|
FormControlLabel3,
|
|
7205
7240
|
{
|
|
7206
7241
|
label: "Save Filters",
|
|
7207
|
-
control: /* @__PURE__ */
|
|
7242
|
+
control: /* @__PURE__ */ jsx109(
|
|
7208
7243
|
Checkbox4,
|
|
7209
7244
|
{
|
|
7210
7245
|
disableRipple: true,
|
|
@@ -7214,11 +7249,11 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7214
7249
|
)
|
|
7215
7250
|
}
|
|
7216
7251
|
),
|
|
7217
|
-
/* @__PURE__ */
|
|
7252
|
+
/* @__PURE__ */ jsx109(FormHelperText4, { sx: { margin: 0 }, children: "Filters auto-apply on return." })
|
|
7218
7253
|
] }),
|
|
7219
|
-
/* @__PURE__ */
|
|
7254
|
+
/* @__PURE__ */ jsx109(Divider9, {}),
|
|
7220
7255
|
/* @__PURE__ */ jsxs74(Box28, { className: classes.applyFilterButtonsContainer, children: [
|
|
7221
|
-
/* @__PURE__ */
|
|
7256
|
+
/* @__PURE__ */ jsx109(
|
|
7222
7257
|
ExtendedButton_default,
|
|
7223
7258
|
{
|
|
7224
7259
|
buttonType: "button",
|
|
@@ -7227,7 +7262,7 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7227
7262
|
onClick: () => setSelectedFilters([])
|
|
7228
7263
|
}
|
|
7229
7264
|
),
|
|
7230
|
-
/* @__PURE__ */
|
|
7265
|
+
/* @__PURE__ */ jsx109(
|
|
7231
7266
|
ExtendedButton_default,
|
|
7232
7267
|
{
|
|
7233
7268
|
copy: "Apply",
|
|
@@ -7262,7 +7297,7 @@ import {
|
|
|
7262
7297
|
TableSortLabel
|
|
7263
7298
|
} from "@mui/material";
|
|
7264
7299
|
import { makeStyles as makeStyles45 } from "tss-react/mui";
|
|
7265
|
-
import { jsx as
|
|
7300
|
+
import { jsx as jsx110, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
7266
7301
|
var useStyles45 = makeStyles45()((theme) => ({
|
|
7267
7302
|
root: {
|
|
7268
7303
|
backgroundColor: colors.neutral100,
|
|
@@ -7334,8 +7369,8 @@ var SmartTableHeader = ({
|
|
|
7334
7369
|
onRequestSort(event, property);
|
|
7335
7370
|
};
|
|
7336
7371
|
const isSortActive = (headCellId) => orderBy === headCellId;
|
|
7337
|
-
return /* @__PURE__ */
|
|
7338
|
-
enableCheckboxSelection ? /* @__PURE__ */
|
|
7372
|
+
return /* @__PURE__ */ jsx110(TableHead, { className: classes.root, children: /* @__PURE__ */ jsxs75(TableRow, { children: [
|
|
7373
|
+
enableCheckboxSelection ? /* @__PURE__ */ jsx110(TableCell, { padding: "checkbox", children: /* @__PURE__ */ jsx110(
|
|
7339
7374
|
Checkbox5,
|
|
7340
7375
|
{
|
|
7341
7376
|
color: "primary",
|
|
@@ -7360,11 +7395,11 @@ var SmartTableHeader = ({
|
|
|
7360
7395
|
onClick: createSortHandler(headCell.id),
|
|
7361
7396
|
children: [
|
|
7362
7397
|
headCell.renderHeader ?? headCell.label,
|
|
7363
|
-
orderBy === headCell.id ? /* @__PURE__ */
|
|
7398
|
+
orderBy === headCell.id ? /* @__PURE__ */ jsx110("span", { className: classes.visuallyHidden, children: order === "desc" ? "sorted descending" : "sorted ascending" }) : null
|
|
7364
7399
|
]
|
|
7365
7400
|
}
|
|
7366
7401
|
),
|
|
7367
|
-
headCell.filterOptionsQuery ? /* @__PURE__ */
|
|
7402
|
+
headCell.filterOptionsQuery ? /* @__PURE__ */ jsx110(
|
|
7368
7403
|
SmartTableHeaderFilterMenu_default,
|
|
7369
7404
|
{
|
|
7370
7405
|
headCell,
|
|
@@ -7400,11 +7435,11 @@ import { v4 as uuidv4 } from "uuid";
|
|
|
7400
7435
|
|
|
7401
7436
|
// src/components/TableLoading/TableLoading.tsx
|
|
7402
7437
|
import { Box as Box29, Skeleton as Skeleton2 } from "@mui/material";
|
|
7403
|
-
import { jsx as
|
|
7438
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
7404
7439
|
var TableLoading = ({
|
|
7405
7440
|
rowsPerPage,
|
|
7406
7441
|
rowHeight
|
|
7407
|
-
}) => /* @__PURE__ */
|
|
7442
|
+
}) => /* @__PURE__ */ jsx111(Box29, { children: Array.from({ length: rowsPerPage ?? 0 }).map((_, index) => /* @__PURE__ */ jsx111(
|
|
7408
7443
|
Skeleton2,
|
|
7409
7444
|
{
|
|
7410
7445
|
animation: "pulse",
|
|
@@ -7453,7 +7488,7 @@ function calculateRowsPerPage(rowHeight) {
|
|
|
7453
7488
|
}
|
|
7454
7489
|
|
|
7455
7490
|
// src/components/Table/Table.tsx
|
|
7456
|
-
import { jsx as
|
|
7491
|
+
import { jsx as jsx112, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
7457
7492
|
var useStyles46 = makeStyles46()(() => ({
|
|
7458
7493
|
root: {
|
|
7459
7494
|
height: "calc(100vh - 262px)",
|
|
@@ -7531,24 +7566,24 @@ var Table = ({
|
|
|
7531
7566
|
);
|
|
7532
7567
|
const rowsComponents = rows.map((row) => {
|
|
7533
7568
|
if (RenderItem) {
|
|
7534
|
-
return /* @__PURE__ */
|
|
7569
|
+
return /* @__PURE__ */ jsx112(RenderItem, { ...row }, row.id);
|
|
7535
7570
|
}
|
|
7536
|
-
return /* @__PURE__ */
|
|
7571
|
+
return /* @__PURE__ */ jsx112(TableRow2, { hover: true, onClick: () => onRowClick?.(row), children: headCells?.map((column) => /* @__PURE__ */ jsx112(TableCell2, { children: row[column.id] }, column.id)) }, row.id);
|
|
7537
7572
|
});
|
|
7538
7573
|
if (emptyRows > 0 && rowsPerPage > emptyRows) {
|
|
7539
7574
|
rowsComponents.push(
|
|
7540
|
-
/* @__PURE__ */
|
|
7575
|
+
/* @__PURE__ */ jsx112(TableRow2, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ jsx112(TableCell2, { colSpan: 8 }) }, uuidv4())
|
|
7541
7576
|
);
|
|
7542
7577
|
}
|
|
7543
7578
|
return rowsComponents;
|
|
7544
7579
|
};
|
|
7545
|
-
return /* @__PURE__ */
|
|
7546
|
-
/* @__PURE__ */
|
|
7580
|
+
return /* @__PURE__ */ jsx112(Paper10, { className: classes.root, children: /* @__PURE__ */ jsx112(Box30, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx112(TableLoading_default, { rowHeight, rowsPerPage }) : /* @__PURE__ */ jsx112(TableContainer, { className: classes.container, children: /* @__PURE__ */ jsxs76(MUITable, { size: "medium", stickyHeader: true, children: [
|
|
7581
|
+
/* @__PURE__ */ jsx112(TableHead2, { className: classes.header, children: /* @__PURE__ */ jsx112(TableRow2, { children: headCells?.map((headCell) => /* @__PURE__ */ jsx112(
|
|
7547
7582
|
TableCell2,
|
|
7548
7583
|
{
|
|
7549
7584
|
align: "left",
|
|
7550
7585
|
sortDirection: orderBy === headCell.id ? order : void 0,
|
|
7551
|
-
children: /* @__PURE__ */
|
|
7586
|
+
children: /* @__PURE__ */ jsx112(
|
|
7552
7587
|
TableSortLabel2,
|
|
7553
7588
|
{
|
|
7554
7589
|
active: orderBy === headCell.id,
|
|
@@ -7562,7 +7597,7 @@ var Table = ({
|
|
|
7562
7597
|
)) }) }),
|
|
7563
7598
|
/* @__PURE__ */ jsxs76(TableBody, { children: [
|
|
7564
7599
|
getTableRows(),
|
|
7565
|
-
rowsPerPage === emptyRows && /* @__PURE__ */
|
|
7600
|
+
rowsPerPage === emptyRows && /* @__PURE__ */ jsx112(TableRow2, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ jsx112(TableCell2, { colSpan: 8, align: "center", children: "Nothing to display" }) })
|
|
7566
7601
|
] })
|
|
7567
7602
|
] }) }) }) });
|
|
7568
7603
|
};
|
|
@@ -7587,7 +7622,7 @@ import { v4 as uuidv42 } from "uuid";
|
|
|
7587
7622
|
// src/components/TableEmptyResult/TableEmptyResult.tsx
|
|
7588
7623
|
import { TableCell as TableCell3, TableRow as TableRow3, Typography as Typography25 } from "@mui/material";
|
|
7589
7624
|
import { makeStyles as makeStyles47 } from "tss-react/mui";
|
|
7590
|
-
import { jsx as
|
|
7625
|
+
import { jsx as jsx113, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
7591
7626
|
var useStyles47 = makeStyles47()(() => ({
|
|
7592
7627
|
tableCellIcon: { padding: 24, height: "calc(100vh - 320px)" },
|
|
7593
7628
|
tableCellDefault: { padding: 24 }
|
|
@@ -7599,17 +7634,17 @@ var TableEmptyResult = ({
|
|
|
7599
7634
|
}
|
|
7600
7635
|
}) => {
|
|
7601
7636
|
const { classes } = useStyles47();
|
|
7602
|
-
return showClearFilterButton ? /* @__PURE__ */
|
|
7637
|
+
return showClearFilterButton ? /* @__PURE__ */ jsx113(TableRow3, { children: /* @__PURE__ */ jsxs77(
|
|
7603
7638
|
TableCell3,
|
|
7604
7639
|
{
|
|
7605
7640
|
className: classes.tableCellIcon,
|
|
7606
7641
|
colSpan,
|
|
7607
7642
|
align: "center",
|
|
7608
7643
|
children: [
|
|
7609
|
-
/* @__PURE__ */
|
|
7610
|
-
/* @__PURE__ */
|
|
7611
|
-
/* @__PURE__ */
|
|
7612
|
-
/* @__PURE__ */
|
|
7644
|
+
/* @__PURE__ */ jsx113(EmptyGlassIcon_default, {}),
|
|
7645
|
+
/* @__PURE__ */ jsx113(Typography25, { variant: "h6", children: "No results found." }),
|
|
7646
|
+
/* @__PURE__ */ jsx113(Typography25, { variant: "subtitle1", children: "Search without applied filters?" }),
|
|
7647
|
+
/* @__PURE__ */ jsx113(
|
|
7613
7648
|
FilledButton_default,
|
|
7614
7649
|
{
|
|
7615
7650
|
copy: "Search",
|
|
@@ -7620,7 +7655,7 @@ var TableEmptyResult = ({
|
|
|
7620
7655
|
)
|
|
7621
7656
|
]
|
|
7622
7657
|
}
|
|
7623
|
-
) }) : /* @__PURE__ */
|
|
7658
|
+
) }) : /* @__PURE__ */ jsx113(TableRow3, { children: /* @__PURE__ */ jsx113(
|
|
7624
7659
|
TableCell3,
|
|
7625
7660
|
{
|
|
7626
7661
|
className: classes.tableCellDefault,
|
|
@@ -7633,7 +7668,7 @@ var TableEmptyResult = ({
|
|
|
7633
7668
|
var TableEmptyResult_default = TableEmptyResult;
|
|
7634
7669
|
|
|
7635
7670
|
// src/components/TableDesktop/TableDesktop.tsx
|
|
7636
|
-
import { Fragment as Fragment13, jsx as
|
|
7671
|
+
import { Fragment as Fragment13, jsx as jsx114, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
7637
7672
|
var useStyles48 = makeStyles48()((theme) => ({
|
|
7638
7673
|
root: {
|
|
7639
7674
|
justifyContent: "space-between",
|
|
@@ -7770,7 +7805,7 @@ var TableDesktop = ({
|
|
|
7770
7805
|
const sortedData = disableInternalSort ? data : stableSort2(data, getComparator(order, orderBy));
|
|
7771
7806
|
return sortedData.slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map((row, index) => {
|
|
7772
7807
|
const isItemSelected = selected.includes(row[keyField]);
|
|
7773
|
-
return /* @__PURE__ */
|
|
7808
|
+
return /* @__PURE__ */ jsx114(
|
|
7774
7809
|
RenderItem,
|
|
7775
7810
|
{
|
|
7776
7811
|
...{
|
|
@@ -7802,7 +7837,7 @@ var TableDesktop = ({
|
|
|
7802
7837
|
visibleHeadCells,
|
|
7803
7838
|
RenderItem
|
|
7804
7839
|
]);
|
|
7805
|
-
return /* @__PURE__ */
|
|
7840
|
+
return /* @__PURE__ */ jsx114("div", { className: classes.root, style: { height }, children: /* @__PURE__ */ jsx114(Paper11, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx114(Fragment13, { children: [...Array(Math.floor(rowsPerPage ?? 50))].map(() => /* @__PURE__ */ jsx114(
|
|
7806
7841
|
Skeleton3,
|
|
7807
7842
|
{
|
|
7808
7843
|
animation: "pulse",
|
|
@@ -7813,14 +7848,14 @@ var TableDesktop = ({
|
|
|
7813
7848
|
},
|
|
7814
7849
|
uuidv42()
|
|
7815
7850
|
)) }) : /* @__PURE__ */ jsxs78(Fragment13, { children: [
|
|
7816
|
-
/* @__PURE__ */
|
|
7851
|
+
/* @__PURE__ */ jsx114(TableContainer2, { className: classes.container, children: /* @__PURE__ */ jsxs78(
|
|
7817
7852
|
Table2,
|
|
7818
7853
|
{
|
|
7819
7854
|
"aria-labelledby": "tableTitle",
|
|
7820
7855
|
"aria-label": "sticky table",
|
|
7821
7856
|
stickyHeader: true,
|
|
7822
7857
|
children: [
|
|
7823
|
-
/* @__PURE__ */
|
|
7858
|
+
/* @__PURE__ */ jsx114(
|
|
7824
7859
|
SmartTableHeader_default,
|
|
7825
7860
|
{
|
|
7826
7861
|
headCells: visibleHeadCells,
|
|
@@ -7835,7 +7870,7 @@ var TableDesktop = ({
|
|
|
7835
7870
|
onApplyFilters
|
|
7836
7871
|
}
|
|
7837
7872
|
),
|
|
7838
|
-
/* @__PURE__ */
|
|
7873
|
+
/* @__PURE__ */ jsx114(TableBody2, { children: rowsPerPage !== emptyRows ? renderTableRows : /* @__PURE__ */ jsx114(
|
|
7839
7874
|
TableEmptyResult_default,
|
|
7840
7875
|
{
|
|
7841
7876
|
colSpan: enableCheckboxSelection ? visibleHeadCells.length + 1 : visibleHeadCells.length,
|
|
@@ -7856,7 +7891,7 @@ import { memo as memo22, useEffect as useEffect9, useState as useState18 } from
|
|
|
7856
7891
|
import { ImportExport as ImportExportIcon } from "@mui/icons-material";
|
|
7857
7892
|
import { TableCell as TableCell4, TableHead as TableHead3, TableRow as TableRow4, TableSortLabel as TableSortLabel3 } from "@mui/material";
|
|
7858
7893
|
import { makeStyles as makeStyles49 } from "tss-react/mui";
|
|
7859
|
-
import { jsx as
|
|
7894
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
7860
7895
|
var useStyles49 = makeStyles49()(() => ({
|
|
7861
7896
|
sortLabel: {
|
|
7862
7897
|
"& .MuiTableSortLabel-icon": {
|
|
@@ -7901,7 +7936,7 @@ var TableHeader = ({ cells, onSort = null }) => {
|
|
|
7901
7936
|
});
|
|
7902
7937
|
setSortableCells(sortedCells);
|
|
7903
7938
|
};
|
|
7904
|
-
return /* @__PURE__ */
|
|
7939
|
+
return /* @__PURE__ */ jsx115(TableHead3, { children: /* @__PURE__ */ jsx115(TableRow4, { children: sortableCells.map((cell, key) => /* @__PURE__ */ jsx115(TableCell4, { children: cell.isSortable ? /* @__PURE__ */ jsx115(
|
|
7905
7940
|
TableSortLabel3,
|
|
7906
7941
|
{
|
|
7907
7942
|
className: classes.sortLabel,
|
|
@@ -7917,7 +7952,7 @@ var TableHeader_default = memo22(TableHeader);
|
|
|
7917
7952
|
// src/components/TextDivider/TextDivider.tsx
|
|
7918
7953
|
import { Box as Box31, Typography as Typography26, Divider as Divider10, Button as Button13 } from "@mui/material";
|
|
7919
7954
|
import { makeStyles as makeStyles50 } from "tss-react/mui";
|
|
7920
|
-
import { jsx as
|
|
7955
|
+
import { jsx as jsx116, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
7921
7956
|
var useStyles50 = makeStyles50()(() => ({
|
|
7922
7957
|
icon: {
|
|
7923
7958
|
fontSize: 20
|
|
@@ -7962,10 +7997,10 @@ var TextDivider = ({
|
|
|
7962
7997
|
justifyContent: "space-between",
|
|
7963
7998
|
className: classes.container,
|
|
7964
7999
|
children: [
|
|
7965
|
-
/* @__PURE__ */
|
|
7966
|
-
/* @__PURE__ */
|
|
7967
|
-
Icon3 && iconPosition === "left" && /* @__PURE__ */
|
|
7968
|
-
/* @__PURE__ */
|
|
8000
|
+
/* @__PURE__ */ jsx116(Divider10, { className: classes.leftDivider }),
|
|
8001
|
+
/* @__PURE__ */ jsx116(Button13, { onClick, disabled: !onClick, className: classes.button, children: /* @__PURE__ */ jsxs79(Box31, { className: classes.center, children: [
|
|
8002
|
+
Icon3 && iconPosition === "left" && /* @__PURE__ */ jsx116(Icon3, { className: classes.icon, style: { color: iconColor } }),
|
|
8003
|
+
/* @__PURE__ */ jsx116(
|
|
7969
8004
|
Typography26,
|
|
7970
8005
|
{
|
|
7971
8006
|
color: "textSecondary",
|
|
@@ -7974,9 +8009,9 @@ var TextDivider = ({
|
|
|
7974
8009
|
children: title
|
|
7975
8010
|
}
|
|
7976
8011
|
),
|
|
7977
|
-
Icon3 && iconPosition === "right" && /* @__PURE__ */
|
|
8012
|
+
Icon3 && iconPosition === "right" && /* @__PURE__ */ jsx116(Icon3, { className: classes.icon, style: { color: iconColor } })
|
|
7978
8013
|
] }) }),
|
|
7979
|
-
/* @__PURE__ */
|
|
8014
|
+
/* @__PURE__ */ jsx116(Divider10, { className: classes.rightDivider })
|
|
7980
8015
|
]
|
|
7981
8016
|
}
|
|
7982
8017
|
);
|
|
@@ -7988,8 +8023,7 @@ import { DateRangePicker } from "react-dates";
|
|
|
7988
8023
|
import { makeStyles as makeStyles51 } from "tss-react/mui";
|
|
7989
8024
|
import "react-dates/initialize";
|
|
7990
8025
|
import "react-dates/lib/css/_datepicker.css";
|
|
7991
|
-
import
|
|
7992
|
-
import { jsx as jsx116 } from "react/jsx-runtime";
|
|
8026
|
+
import { jsx as jsx117 } from "react/jsx-runtime";
|
|
7993
8027
|
var useStyles51 = makeStyles51()((theme) => ({
|
|
7994
8028
|
wrapper: {
|
|
7995
8029
|
"& .DateRangePicker": {
|
|
@@ -8003,7 +8037,8 @@ var useStyles51 = makeStyles51()((theme) => ({
|
|
|
8003
8037
|
"& .DateRangePickerInput": {
|
|
8004
8038
|
backgroundColor: "transparent",
|
|
8005
8039
|
color: theme.palette.mode === "dark" ? "theme.palette.common.white" : theme.palette.text.primary,
|
|
8006
|
-
borderRadius: 4
|
|
8040
|
+
borderRadius: 4,
|
|
8041
|
+
paddingTop: "2px"
|
|
8007
8042
|
},
|
|
8008
8043
|
"& .DateInput": {
|
|
8009
8044
|
backgroundColor: theme.palette.mode === "dark" ? theme.palette.grey[900] : colors.neutral100,
|
|
@@ -8083,8 +8118,8 @@ var ThemedDateRangePicker = ({
|
|
|
8083
8118
|
className,
|
|
8084
8119
|
...props
|
|
8085
8120
|
}) => {
|
|
8086
|
-
const { classes } = useStyles51();
|
|
8087
|
-
return /* @__PURE__ */
|
|
8121
|
+
const { classes, cx } = useStyles51();
|
|
8122
|
+
return /* @__PURE__ */ jsx117("div", { className: cx(classes.wrapper, className), children: /* @__PURE__ */ jsx117(DateRangePicker, { ...props }) });
|
|
8088
8123
|
};
|
|
8089
8124
|
var ThemedDateRangePicker_default = ThemedDateRangePicker;
|
|
8090
8125
|
|
|
@@ -8092,7 +8127,7 @@ var ThemedDateRangePicker_default = ThemedDateRangePicker;
|
|
|
8092
8127
|
import { memo as memo23 } from "react";
|
|
8093
8128
|
import { AppBar as AppBar2, Box as Box32, Toolbar as Toolbar2 } from "@mui/material";
|
|
8094
8129
|
import { makeStyles as makeStyles52 } from "tss-react/mui";
|
|
8095
|
-
import { jsx as
|
|
8130
|
+
import { jsx as jsx118, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
8096
8131
|
var useStyles52 = makeStyles52()((theme) => ({
|
|
8097
8132
|
menuButton: {
|
|
8098
8133
|
color: theme.palette.primary.contrastText
|
|
@@ -8132,8 +8167,8 @@ var TheToolbar = ({
|
|
|
8132
8167
|
}) => {
|
|
8133
8168
|
const { classes } = useStyles52();
|
|
8134
8169
|
return /* @__PURE__ */ jsxs80(Box32, { children: [
|
|
8135
|
-
/* @__PURE__ */
|
|
8136
|
-
/* @__PURE__ */
|
|
8170
|
+
/* @__PURE__ */ jsx118(AppBar2, { children: /* @__PURE__ */ jsxs80(Toolbar2, { className: classes.topBar, children: [
|
|
8171
|
+
/* @__PURE__ */ jsx118(
|
|
8137
8172
|
RoundButton_default,
|
|
8138
8173
|
{
|
|
8139
8174
|
className: classes.menuButton,
|
|
@@ -8142,7 +8177,7 @@ var TheToolbar = ({
|
|
|
8142
8177
|
onClick: handleOpen
|
|
8143
8178
|
}
|
|
8144
8179
|
),
|
|
8145
|
-
/* @__PURE__ */
|
|
8180
|
+
/* @__PURE__ */ jsx118(
|
|
8146
8181
|
CompanyLogo_default,
|
|
8147
8182
|
{
|
|
8148
8183
|
size: "small",
|
|
@@ -8152,7 +8187,7 @@ var TheToolbar = ({
|
|
|
8152
8187
|
}
|
|
8153
8188
|
)
|
|
8154
8189
|
] }) }),
|
|
8155
|
-
/* @__PURE__ */
|
|
8190
|
+
/* @__PURE__ */ jsx118(Box32, { className: classes.offset }),
|
|
8156
8191
|
LeftDrawer2
|
|
8157
8192
|
] });
|
|
8158
8193
|
};
|
|
@@ -8160,20 +8195,20 @@ var TheToolbar_default = memo23(TheToolbar);
|
|
|
8160
8195
|
|
|
8161
8196
|
// src/components/ToastMessage/ToastMessage.tsx
|
|
8162
8197
|
import { Alert as MuiAlert, Snackbar } from "@mui/material";
|
|
8163
|
-
import { jsx as
|
|
8198
|
+
import { jsx as jsx119 } from "react/jsx-runtime";
|
|
8164
8199
|
var ToastMessage = ({
|
|
8165
8200
|
toastType,
|
|
8166
8201
|
toastMessage,
|
|
8167
8202
|
open,
|
|
8168
8203
|
onClose
|
|
8169
|
-
}) => /* @__PURE__ */
|
|
8204
|
+
}) => /* @__PURE__ */ jsx119(
|
|
8170
8205
|
Snackbar,
|
|
8171
8206
|
{
|
|
8172
8207
|
open,
|
|
8173
8208
|
autoHideDuration: 1500,
|
|
8174
8209
|
onClose,
|
|
8175
8210
|
anchorOrigin: { vertical: "top", horizontal: "right" },
|
|
8176
|
-
children: /* @__PURE__ */
|
|
8211
|
+
children: /* @__PURE__ */ jsx119(
|
|
8177
8212
|
MuiAlert,
|
|
8178
8213
|
{
|
|
8179
8214
|
elevation: 6,
|
|
@@ -8210,7 +8245,7 @@ import {
|
|
|
8210
8245
|
Fade as Fade2
|
|
8211
8246
|
} from "@mui/material";
|
|
8212
8247
|
import { makeStyles as makeStyles53 } from "tss-react/mui";
|
|
8213
|
-
import { jsx as
|
|
8248
|
+
import { jsx as jsx120, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
8214
8249
|
var useStyles53 = makeStyles53()((theme) => ({
|
|
8215
8250
|
paper: {
|
|
8216
8251
|
padding: theme.spacing(2)
|
|
@@ -8240,7 +8275,7 @@ var TwoButtonDialog = ({
|
|
|
8240
8275
|
cancelButton
|
|
8241
8276
|
}) => {
|
|
8242
8277
|
const { classes } = useStyles53();
|
|
8243
|
-
return /* @__PURE__ */
|
|
8278
|
+
return /* @__PURE__ */ jsx120(
|
|
8244
8279
|
Dialog5,
|
|
8245
8280
|
{
|
|
8246
8281
|
open,
|
|
@@ -8252,9 +8287,9 @@ var TwoButtonDialog = ({
|
|
|
8252
8287
|
BackdropProps: {
|
|
8253
8288
|
timeout: 500
|
|
8254
8289
|
},
|
|
8255
|
-
children: /* @__PURE__ */
|
|
8290
|
+
children: /* @__PURE__ */ jsx120(Fade2, { in: open, children: /* @__PURE__ */ jsxs81(Paper12, { className: classes.paper, children: [
|
|
8256
8291
|
/* @__PURE__ */ jsxs81(Box33, { className: classes.mb, children: [
|
|
8257
|
-
/* @__PURE__ */
|
|
8292
|
+
/* @__PURE__ */ jsx120(Typography27, { variant: "h5", component: "div", children: /* @__PURE__ */ jsx120(
|
|
8258
8293
|
Box33,
|
|
8259
8294
|
{
|
|
8260
8295
|
sx: {
|
|
@@ -8271,15 +8306,15 @@ var TwoButtonDialog = ({
|
|
|
8271
8306
|
fontWeight: 600
|
|
8272
8307
|
},
|
|
8273
8308
|
children: [
|
|
8274
|
-
subtitle1 && /* @__PURE__ */
|
|
8275
|
-
subtitle2 && /* @__PURE__ */
|
|
8309
|
+
subtitle1 && /* @__PURE__ */ jsx120(Typography27, { variant: "subtitle1", children: subtitle1 }),
|
|
8310
|
+
subtitle2 && /* @__PURE__ */ jsx120(Typography27, { variant: "subtitle1", children: subtitle2 })
|
|
8276
8311
|
]
|
|
8277
8312
|
}
|
|
8278
8313
|
)
|
|
8279
8314
|
] }),
|
|
8280
|
-
/* @__PURE__ */
|
|
8315
|
+
/* @__PURE__ */ jsx120(Divider11, {}),
|
|
8281
8316
|
/* @__PURE__ */ jsxs81(Box33, { className: classes.buttonContainer, children: [
|
|
8282
|
-
/* @__PURE__ */
|
|
8317
|
+
/* @__PURE__ */ jsx120(
|
|
8283
8318
|
FilledButton_default,
|
|
8284
8319
|
{
|
|
8285
8320
|
copy: cancelLabel,
|
|
@@ -8292,7 +8327,7 @@ var TwoButtonDialog = ({
|
|
|
8292
8327
|
}
|
|
8293
8328
|
}
|
|
8294
8329
|
),
|
|
8295
|
-
/* @__PURE__ */
|
|
8330
|
+
/* @__PURE__ */ jsx120(
|
|
8296
8331
|
FilledButton_default,
|
|
8297
8332
|
{
|
|
8298
8333
|
color: "primary",
|
|
@@ -8301,12 +8336,37 @@ var TwoButtonDialog = ({
|
|
|
8301
8336
|
}
|
|
8302
8337
|
)
|
|
8303
8338
|
] }),
|
|
8304
|
-
/* @__PURE__ */
|
|
8339
|
+
/* @__PURE__ */ jsx120(Loading_default, { isLoading: dialogLoading })
|
|
8305
8340
|
] }) })
|
|
8306
8341
|
}
|
|
8307
8342
|
);
|
|
8308
8343
|
};
|
|
8309
8344
|
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;
|
|
8310
8370
|
export {
|
|
8311
8371
|
AlertDialog_default as AlertDialog,
|
|
8312
8372
|
AlertDialogFullScreen_default as AlertDialogFullScreen,
|
|
@@ -8335,6 +8395,8 @@ export {
|
|
|
8335
8395
|
FilterSimpleSelector_default as FilterSimpleSelector,
|
|
8336
8396
|
FixedFooter_default as FixedFooter,
|
|
8337
8397
|
Header_default as Header,
|
|
8398
|
+
IconChart_default as IconChart,
|
|
8399
|
+
IconCompare_default as IconCompare,
|
|
8338
8400
|
ImageButton_default as ImageButton,
|
|
8339
8401
|
LeftDrawer_default as LeftDrawer,
|
|
8340
8402
|
VirtualizedList as List,
|