@natoora-libs/core 0.0.40 → 0.0.41
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 +1010 -1123
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.cts +2 -89
- package/dist/components/index.d.ts +2 -89
- package/dist/components/index.js +763 -880
- package/dist/components/index.js.map +1 -1
- package/package.json +2 -2
package/dist/components/index.js
CHANGED
|
@@ -361,6 +361,7 @@ var AlertDialog_default = AlertDialog;
|
|
|
361
361
|
// src/components/AlertDialogFullScreen/AlertDialogFullScreen.tsx
|
|
362
362
|
import { Button as Button2, Dialog as Dialog2, DialogActions, DialogContent } from "@mui/material";
|
|
363
363
|
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
364
|
+
console.log("wqpkoe");
|
|
364
365
|
var AlertDialogFullScreen = ({
|
|
365
366
|
handleAlertAccept,
|
|
366
367
|
handleAlertReject,
|
|
@@ -423,129 +424,12 @@ var AppLabel = ({ appName }) => {
|
|
|
423
424
|
};
|
|
424
425
|
var AppLabel_default = AppLabel;
|
|
425
426
|
|
|
426
|
-
// src/components/AutoComplete/AutoComplete.tsx
|
|
427
|
-
import { forwardRef, useEffect, useRef, useState } from "react";
|
|
428
|
-
import {
|
|
429
|
-
Box as Box3,
|
|
430
|
-
CircularProgress,
|
|
431
|
-
TextField,
|
|
432
|
-
Autocomplete as MUIAutocomplete
|
|
433
|
-
} from "@mui/material";
|
|
434
|
-
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
435
|
-
var AutoComplete = forwardRef(
|
|
436
|
-
({
|
|
437
|
-
value,
|
|
438
|
-
defaultValue,
|
|
439
|
-
options,
|
|
440
|
-
isFetching = false,
|
|
441
|
-
minInputLength = 3,
|
|
442
|
-
inputLabel,
|
|
443
|
-
helperText,
|
|
444
|
-
"data-testid": dataTestId,
|
|
445
|
-
disabled,
|
|
446
|
-
allowEmpty = false,
|
|
447
|
-
fetchOptions,
|
|
448
|
-
submitOnBlur,
|
|
449
|
-
onChange,
|
|
450
|
-
searchInputValue,
|
|
451
|
-
setSearchInputValue,
|
|
452
|
-
getOptionLabel,
|
|
453
|
-
error,
|
|
454
|
-
disableClearable
|
|
455
|
-
}, ref) => {
|
|
456
|
-
const [isDirty, setIsDirty] = useState(false);
|
|
457
|
-
const [optionsState, setOptionsState] = useState(
|
|
458
|
-
!options ? [] : options
|
|
459
|
-
);
|
|
460
|
-
useEffect(() => {
|
|
461
|
-
if (options) {
|
|
462
|
-
setOptionsState(options);
|
|
463
|
-
}
|
|
464
|
-
}, [options]);
|
|
465
|
-
const [open, setOpen] = useState(false);
|
|
466
|
-
const timeoutId = useRef(
|
|
467
|
-
void 0
|
|
468
|
-
);
|
|
469
|
-
const previousValue = useRef(defaultValue);
|
|
470
|
-
const handleOpen = () => setOpen(true);
|
|
471
|
-
const handleClose = () => setOpen(false);
|
|
472
|
-
const handleChangeSearchInput = (event) => {
|
|
473
|
-
clearTimeout(timeoutId.current);
|
|
474
|
-
setSearchInputValue(event.target.value);
|
|
475
|
-
if (event.target.value.length < minInputLength || !fetchOptions) {
|
|
476
|
-
return;
|
|
477
|
-
}
|
|
478
|
-
timeoutId.current = setTimeout(async () => {
|
|
479
|
-
const { data } = await fetchOptions({});
|
|
480
|
-
if (data) setOptionsState(data);
|
|
481
|
-
}, 500);
|
|
482
|
-
};
|
|
483
|
-
const handleBlur = () => {
|
|
484
|
-
if (value === void 0 || !isDirty || value?.id === previousValue.current?.id || !submitOnBlur) {
|
|
485
|
-
return;
|
|
486
|
-
}
|
|
487
|
-
previousValue.current = value;
|
|
488
|
-
submitOnBlur(value);
|
|
489
|
-
};
|
|
490
|
-
const shouldOpen = fetchOptions || isFetching || searchInputValue.length >= minInputLength ? open : false;
|
|
491
|
-
return /* @__PURE__ */ jsx4(
|
|
492
|
-
Box3,
|
|
493
|
-
{
|
|
494
|
-
style: {
|
|
495
|
-
width: "100%",
|
|
496
|
-
display: "flex",
|
|
497
|
-
flexDirection: "column"
|
|
498
|
-
},
|
|
499
|
-
children: /* @__PURE__ */ jsx4(
|
|
500
|
-
MUIAutocomplete,
|
|
501
|
-
{
|
|
502
|
-
ref,
|
|
503
|
-
value,
|
|
504
|
-
defaultValue,
|
|
505
|
-
open: shouldOpen,
|
|
506
|
-
onBlur: handleBlur,
|
|
507
|
-
onOpen: handleOpen,
|
|
508
|
-
onClose: handleClose,
|
|
509
|
-
options: optionsState,
|
|
510
|
-
onChange: (_e, selectedValue) => {
|
|
511
|
-
if (!allowEmpty && !selectedValue) return;
|
|
512
|
-
setIsDirty(true);
|
|
513
|
-
setSearchInputValue(selectedValue ? selectedValue.name : "");
|
|
514
|
-
onChange(selectedValue);
|
|
515
|
-
},
|
|
516
|
-
disabled,
|
|
517
|
-
getOptionLabel: getOptionLabel ?? ((option) => option.name),
|
|
518
|
-
"data-testid": `${dataTestId}-autocomplete`,
|
|
519
|
-
loading: isFetching,
|
|
520
|
-
loadingText: /* @__PURE__ */ jsx4(Box3, { display: "flex", justifyContent: "center", children: /* @__PURE__ */ jsx4(CircularProgress, { role: "progressbar", size: 24 }) }),
|
|
521
|
-
disableClearable,
|
|
522
|
-
renderInput: (props) => /* @__PURE__ */ jsx4(
|
|
523
|
-
TextField,
|
|
524
|
-
{
|
|
525
|
-
...props,
|
|
526
|
-
label: inputLabel,
|
|
527
|
-
onChange: handleChangeSearchInput,
|
|
528
|
-
value: searchInputValue,
|
|
529
|
-
"data-testid": `${dataTestId}-search`,
|
|
530
|
-
variant: "outlined",
|
|
531
|
-
error,
|
|
532
|
-
helperText
|
|
533
|
-
}
|
|
534
|
-
)
|
|
535
|
-
}
|
|
536
|
-
)
|
|
537
|
-
}
|
|
538
|
-
);
|
|
539
|
-
}
|
|
540
|
-
);
|
|
541
|
-
var AutoComplete_default = AutoComplete;
|
|
542
|
-
|
|
543
427
|
// src/components/BackHeader/BackHeader.tsx
|
|
544
428
|
import { useNavigate } from "react-router";
|
|
545
429
|
import { KeyboardBackspace as KeyboardBackspaceIcon } from "@mui/icons-material";
|
|
546
|
-
import { Box as
|
|
430
|
+
import { Box as Box3, Button as Button3, Typography as Typography3 } from "@mui/material";
|
|
547
431
|
import { makeStyles as makeStyles3 } from "tss-react/mui";
|
|
548
|
-
import { jsx as
|
|
432
|
+
import { jsx as jsx4, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
549
433
|
var useStyles3 = makeStyles3()((theme) => ({
|
|
550
434
|
header: {
|
|
551
435
|
padding: theme.spacing(2, 3),
|
|
@@ -577,15 +461,15 @@ var BackHeader = ({ appName, onGoBackClick }) => {
|
|
|
577
461
|
}
|
|
578
462
|
return navigate(-1);
|
|
579
463
|
};
|
|
580
|
-
return /* @__PURE__ */
|
|
581
|
-
/* @__PURE__ */
|
|
582
|
-
/* @__PURE__ */
|
|
464
|
+
return /* @__PURE__ */ jsx4(Box3, { component: "header", className: classes.header, children: /* @__PURE__ */ jsx4(Button3, { className: classes.button, onClick: handleBackClick, children: /* @__PURE__ */ jsxs3(Box3, { component: "span", className: classes.text, children: [
|
|
465
|
+
/* @__PURE__ */ jsx4(KeyboardBackspaceIcon, { className: classes.icon }),
|
|
466
|
+
/* @__PURE__ */ jsx4(Typography3, { variant: "body1", children: appName })
|
|
583
467
|
] }) }) });
|
|
584
468
|
};
|
|
585
469
|
var BackHeader_default = BackHeader;
|
|
586
470
|
|
|
587
471
|
// src/components/BottomBar/BottomBar.tsx
|
|
588
|
-
import { Box as
|
|
472
|
+
import { Box as Box5, Paper } from "@mui/material";
|
|
589
473
|
import { makeStyles as makeStyles5 } from "tss-react/mui";
|
|
590
474
|
|
|
591
475
|
// src/components/Buttons/ExtendedButton/ExtendedButton.tsx
|
|
@@ -605,9 +489,9 @@ import {
|
|
|
605
489
|
Publish,
|
|
606
490
|
Apps as AppsIcon
|
|
607
491
|
} from "@mui/icons-material";
|
|
608
|
-
import { Box as
|
|
492
|
+
import { Box as Box4, Button as Button4, Tooltip } from "@mui/material";
|
|
609
493
|
import { makeStyles as makeStyles4 } from "tss-react/mui";
|
|
610
|
-
import { jsx as
|
|
494
|
+
import { jsx as jsx5, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
611
495
|
var useStyles4 = makeStyles4()((theme) => ({
|
|
612
496
|
default: {
|
|
613
497
|
boxShadow: "none",
|
|
@@ -700,7 +584,7 @@ var ExtendedButton = ({
|
|
|
700
584
|
publish: Publish
|
|
701
585
|
};
|
|
702
586
|
const IconComponent = icons2[type || "add"];
|
|
703
|
-
return /* @__PURE__ */
|
|
587
|
+
return /* @__PURE__ */ jsx5(Tooltip, { title: tooltip, children: /* @__PURE__ */ jsx5(Box4, { children: /* @__PURE__ */ jsxs4(
|
|
704
588
|
Button4,
|
|
705
589
|
{
|
|
706
590
|
className: cx(classes[color], className),
|
|
@@ -713,7 +597,7 @@ var ExtendedButton = ({
|
|
|
713
597
|
type: buttonType,
|
|
714
598
|
variant,
|
|
715
599
|
children: [
|
|
716
|
-
type ? /* @__PURE__ */
|
|
600
|
+
type ? /* @__PURE__ */ jsx5(IconComponent, { fontSize: "small", className: classes.icon }) : null,
|
|
717
601
|
/* @__PURE__ */ jsxs4(
|
|
718
602
|
"div",
|
|
719
603
|
{
|
|
@@ -721,7 +605,7 @@ var ExtendedButton = ({
|
|
|
721
605
|
style: { color: copyColor || "inherit" },
|
|
722
606
|
children: [
|
|
723
607
|
copy,
|
|
724
|
-
/* @__PURE__ */
|
|
608
|
+
/* @__PURE__ */ jsx5("span", { children: subcopy })
|
|
725
609
|
]
|
|
726
610
|
}
|
|
727
611
|
)
|
|
@@ -732,7 +616,7 @@ var ExtendedButton = ({
|
|
|
732
616
|
var ExtendedButton_default = memo(ExtendedButton);
|
|
733
617
|
|
|
734
618
|
// src/components/BottomBar/BottomBar.tsx
|
|
735
|
-
import { jsx as
|
|
619
|
+
import { jsx as jsx6, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
736
620
|
var useStyles5 = makeStyles5()((theme) => ({
|
|
737
621
|
footer: {
|
|
738
622
|
backgroundColor: colors.neutral100,
|
|
@@ -754,8 +638,8 @@ var BottomBar = ({
|
|
|
754
638
|
onRefreshClick = null
|
|
755
639
|
}) => {
|
|
756
640
|
const { classes, cx } = useStyles5();
|
|
757
|
-
return /* @__PURE__ */
|
|
758
|
-
|
|
641
|
+
return /* @__PURE__ */ jsx6(Paper, { className: cx(classes.footer, className), elevation: 1, children: /* @__PURE__ */ jsxs5(
|
|
642
|
+
Box5,
|
|
759
643
|
{
|
|
760
644
|
className: classes.insideWrapper,
|
|
761
645
|
sx: {
|
|
@@ -764,7 +648,7 @@ var BottomBar = ({
|
|
|
764
648
|
justifyContent: "space-between"
|
|
765
649
|
},
|
|
766
650
|
children: [
|
|
767
|
-
onRefreshClick && /* @__PURE__ */
|
|
651
|
+
onRefreshClick && /* @__PURE__ */ jsx6(
|
|
768
652
|
ExtendedButton_default,
|
|
769
653
|
{
|
|
770
654
|
className: classes.button,
|
|
@@ -789,7 +673,7 @@ import green from "@mui/material/colors/green";
|
|
|
789
673
|
import orange from "@mui/material/colors/orange";
|
|
790
674
|
import red from "@mui/material/colors/red";
|
|
791
675
|
import { makeStyles as makeStyles6 } from "tss-react/mui";
|
|
792
|
-
import { jsx as
|
|
676
|
+
import { jsx as jsx7, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
793
677
|
var useStyles6 = makeStyles6()((theme) => ({
|
|
794
678
|
boxTab: {
|
|
795
679
|
minWidth: 130,
|
|
@@ -843,7 +727,7 @@ var BoxButton = (props) => {
|
|
|
843
727
|
className: [classes.boxTab, classes[borderColor]].join(" "),
|
|
844
728
|
onClick,
|
|
845
729
|
children: [
|
|
846
|
-
/* @__PURE__ */
|
|
730
|
+
/* @__PURE__ */ jsx7(Typography4, { variant: "button", children: label }),
|
|
847
731
|
/* @__PURE__ */ jsxs6(
|
|
848
732
|
Grid,
|
|
849
733
|
{
|
|
@@ -854,8 +738,8 @@ var BoxButton = (props) => {
|
|
|
854
738
|
alignItems: "center"
|
|
855
739
|
},
|
|
856
740
|
children: [
|
|
857
|
-
/* @__PURE__ */
|
|
858
|
-
/* @__PURE__ */
|
|
741
|
+
/* @__PURE__ */ jsx7(Grid, { size: 9, children: main }),
|
|
742
|
+
/* @__PURE__ */ jsx7(Grid, { className: classes.c_box_button__extra, size: 3, children: extra })
|
|
859
743
|
]
|
|
860
744
|
}
|
|
861
745
|
)
|
|
@@ -867,9 +751,9 @@ var BoxButton_default = memo2(BoxButton);
|
|
|
867
751
|
|
|
868
752
|
// src/components/Buttons/FilledButton/FilledButton.tsx
|
|
869
753
|
import { memo as memo3 } from "react";
|
|
870
|
-
import { CircularProgress
|
|
754
|
+
import { CircularProgress, Button as Button5 } from "@mui/material";
|
|
871
755
|
import { makeStyles as makeStyles7 } from "tss-react/mui";
|
|
872
|
-
import { jsx as
|
|
756
|
+
import { jsx as jsx8, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
873
757
|
var useStyles7 = makeStyles7()((theme) => ({
|
|
874
758
|
button: {
|
|
875
759
|
background: colors.default,
|
|
@@ -953,8 +837,8 @@ var FilledButton = ({
|
|
|
953
837
|
variant,
|
|
954
838
|
children: [
|
|
955
839
|
copy,
|
|
956
|
-
isLoading && /* @__PURE__ */
|
|
957
|
-
|
|
840
|
+
isLoading && /* @__PURE__ */ jsx8(
|
|
841
|
+
CircularProgress,
|
|
958
842
|
{
|
|
959
843
|
className: classes.loadingText,
|
|
960
844
|
color: "inherit",
|
|
@@ -969,9 +853,9 @@ var FilledButton_default = memo3(FilledButton);
|
|
|
969
853
|
|
|
970
854
|
// src/components/Buttons/FilledButton/FilledButtonLg.tsx
|
|
971
855
|
import { memo as memo4 } from "react";
|
|
972
|
-
import { Box as
|
|
856
|
+
import { Box as Box6, CircularProgress as CircularProgress2, Button as Button6 } from "@mui/material";
|
|
973
857
|
import { withStyles } from "tss-react/mui";
|
|
974
|
-
import { jsx as
|
|
858
|
+
import { jsx as jsx9, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
975
859
|
var FilledButtonLg = ({
|
|
976
860
|
classes,
|
|
977
861
|
disabled,
|
|
@@ -981,7 +865,7 @@ var FilledButtonLg = ({
|
|
|
981
865
|
handleClick,
|
|
982
866
|
loading = false,
|
|
983
867
|
loadingProps
|
|
984
|
-
}) => /* @__PURE__ */
|
|
868
|
+
}) => /* @__PURE__ */ jsx9(
|
|
985
869
|
Button6,
|
|
986
870
|
{
|
|
987
871
|
variant,
|
|
@@ -989,7 +873,7 @@ var FilledButtonLg = ({
|
|
|
989
873
|
onClick: handleClick,
|
|
990
874
|
disabled: disabled || loading,
|
|
991
875
|
children: /* @__PURE__ */ jsxs8(
|
|
992
|
-
|
|
876
|
+
Box6,
|
|
993
877
|
{
|
|
994
878
|
sx: {
|
|
995
879
|
display: "flex",
|
|
@@ -998,8 +882,8 @@ var FilledButtonLg = ({
|
|
|
998
882
|
},
|
|
999
883
|
children: [
|
|
1000
884
|
copy,
|
|
1001
|
-
loading && /* @__PURE__ */
|
|
1002
|
-
|
|
885
|
+
loading && /* @__PURE__ */ jsx9(
|
|
886
|
+
CircularProgress2,
|
|
1003
887
|
{
|
|
1004
888
|
color: loadingProps?.color || "inherit",
|
|
1005
889
|
size: loadingProps?.size || 22,
|
|
@@ -1078,7 +962,7 @@ var FilledButtonLg_default = memo4(ActionButtonLg);
|
|
|
1078
962
|
import { memo as memo5 } from "react";
|
|
1079
963
|
import { Button as Button7 } from "@mui/material";
|
|
1080
964
|
import { makeStyles as makeStyles8 } from "tss-react/mui";
|
|
1081
|
-
import { jsx as
|
|
965
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
1082
966
|
var useStyles8 = makeStyles8()(() => ({
|
|
1083
967
|
root: {
|
|
1084
968
|
display: "flex",
|
|
@@ -1107,7 +991,7 @@ var ImageButton = (props) => {
|
|
|
1107
991
|
const e = { target: { value } };
|
|
1108
992
|
onClick(e);
|
|
1109
993
|
};
|
|
1110
|
-
return /* @__PURE__ */
|
|
994
|
+
return /* @__PURE__ */ jsx10(Button7, { onClick: handleClick, className: classes.image, children: /* @__PURE__ */ jsx10("img", { className: classes.imageSrc, src, alt: "a_image" }) });
|
|
1111
995
|
};
|
|
1112
996
|
var ImageButton_default = memo5(ImageButton);
|
|
1113
997
|
|
|
@@ -1115,7 +999,7 @@ var ImageButton_default = memo5(ImageButton);
|
|
|
1115
999
|
import { Add as Add2, ChevronRight } from "@mui/icons-material";
|
|
1116
1000
|
import { Typography as Typography5, Button as Button8 } from "@mui/material";
|
|
1117
1001
|
import { makeStyles as makeStyles9 } from "tss-react/mui";
|
|
1118
|
-
import { jsx as
|
|
1002
|
+
import { jsx as jsx11, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
1119
1003
|
var useStyles9 = makeStyles9()((theme) => ({
|
|
1120
1004
|
add: {
|
|
1121
1005
|
backgroundColor: colors.neutral100
|
|
@@ -1151,10 +1035,10 @@ var SquareButton = ({
|
|
|
1151
1035
|
}) => {
|
|
1152
1036
|
const { classes, cx } = useStyles9();
|
|
1153
1037
|
const icon = {
|
|
1154
|
-
add: /* @__PURE__ */
|
|
1155
|
-
forward: /* @__PURE__ */
|
|
1038
|
+
add: /* @__PURE__ */ jsx11(Add2, { className: classes.icon }),
|
|
1039
|
+
forward: /* @__PURE__ */ jsx11(ChevronRight, { className: classes.icon })
|
|
1156
1040
|
};
|
|
1157
|
-
return /* @__PURE__ */
|
|
1041
|
+
return /* @__PURE__ */ jsx11(
|
|
1158
1042
|
Button8,
|
|
1159
1043
|
{
|
|
1160
1044
|
className: cx(
|
|
@@ -1168,7 +1052,7 @@ var SquareButton = ({
|
|
|
1168
1052
|
variant: "contained",
|
|
1169
1053
|
children: /* @__PURE__ */ jsxs9("span", { className: classes.textWrapper, children: [
|
|
1170
1054
|
icon[type],
|
|
1171
|
-
/* @__PURE__ */
|
|
1055
|
+
/* @__PURE__ */ jsx11(Typography5, { className: classes.text, variant: "button", children })
|
|
1172
1056
|
] })
|
|
1173
1057
|
}
|
|
1174
1058
|
);
|
|
@@ -1176,20 +1060,20 @@ var SquareButton = ({
|
|
|
1176
1060
|
var SquareButton_default = SquareButton;
|
|
1177
1061
|
|
|
1178
1062
|
// src/components/Buttons/UploadButton/UploadButton.tsx
|
|
1179
|
-
import { useRef
|
|
1180
|
-
import { Box as
|
|
1181
|
-
import { jsx as
|
|
1182
|
-
var UploadButton =
|
|
1063
|
+
import { useRef, useState, forwardRef } from "react";
|
|
1064
|
+
import { Box as Box7 } from "@mui/material";
|
|
1065
|
+
import { jsx as jsx12, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1066
|
+
var UploadButton = forwardRef(
|
|
1183
1067
|
(props, ref) => {
|
|
1184
|
-
const [file, setFile] =
|
|
1185
|
-
const sharedRef =
|
|
1068
|
+
const [file, setFile] = useState();
|
|
1069
|
+
const sharedRef = useRef(null);
|
|
1186
1070
|
const handleFileInput = (e) => {
|
|
1187
1071
|
const fileItem = e.target.files[0];
|
|
1188
1072
|
setFile(fileItem);
|
|
1189
1073
|
props.onChange?.(e);
|
|
1190
1074
|
};
|
|
1191
1075
|
return /* @__PURE__ */ jsxs10(
|
|
1192
|
-
|
|
1076
|
+
Box7,
|
|
1193
1077
|
{
|
|
1194
1078
|
sx: {
|
|
1195
1079
|
display: "flex",
|
|
@@ -1197,7 +1081,7 @@ var UploadButton = forwardRef2(
|
|
|
1197
1081
|
alignItems: "center"
|
|
1198
1082
|
},
|
|
1199
1083
|
children: [
|
|
1200
|
-
/* @__PURE__ */
|
|
1084
|
+
/* @__PURE__ */ jsx12(
|
|
1201
1085
|
"input",
|
|
1202
1086
|
{
|
|
1203
1087
|
...props,
|
|
@@ -1210,7 +1094,7 @@ var UploadButton = forwardRef2(
|
|
|
1210
1094
|
style: { display: "none" }
|
|
1211
1095
|
}
|
|
1212
1096
|
),
|
|
1213
|
-
/* @__PURE__ */
|
|
1097
|
+
/* @__PURE__ */ jsx12(
|
|
1214
1098
|
ExtendedButton_default,
|
|
1215
1099
|
{
|
|
1216
1100
|
buttonType: "button",
|
|
@@ -1232,9 +1116,9 @@ var UploadButton_default = UploadButton;
|
|
|
1232
1116
|
|
|
1233
1117
|
// src/components/Buttons/OutlinedButton/OutlinedButton.tsx
|
|
1234
1118
|
import { memo as memo6 } from "react";
|
|
1235
|
-
import { Button as Button9, CircularProgress as
|
|
1119
|
+
import { Button as Button9, CircularProgress as CircularProgress3 } from "@mui/material";
|
|
1236
1120
|
import { makeStyles as makeStyles10 } from "tss-react/mui";
|
|
1237
|
-
import { jsx as
|
|
1121
|
+
import { jsx as jsx13, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1238
1122
|
var useStyles10 = makeStyles10()((theme) => ({
|
|
1239
1123
|
default: {
|
|
1240
1124
|
boxShadow: "none",
|
|
@@ -1315,7 +1199,7 @@ var OutlinedButton = ({
|
|
|
1315
1199
|
type = "button"
|
|
1316
1200
|
}) => {
|
|
1317
1201
|
const { classes, cx } = useStyles10();
|
|
1318
|
-
return /* @__PURE__ */
|
|
1202
|
+
return /* @__PURE__ */ jsx13(
|
|
1319
1203
|
Button9,
|
|
1320
1204
|
{
|
|
1321
1205
|
className: cx(color ? classes[color] : classes.default, className, {
|
|
@@ -1336,9 +1220,9 @@ var OutlinedButton = ({
|
|
|
1336
1220
|
}),
|
|
1337
1221
|
children: [
|
|
1338
1222
|
copy,
|
|
1339
|
-
subcopy && /* @__PURE__ */
|
|
1340
|
-
isLoading && /* @__PURE__ */
|
|
1341
|
-
|
|
1223
|
+
subcopy && /* @__PURE__ */ jsx13("span", { children: subcopy }),
|
|
1224
|
+
isLoading && /* @__PURE__ */ jsx13(
|
|
1225
|
+
CircularProgress3,
|
|
1342
1226
|
{
|
|
1343
1227
|
className: classes.loadingIcon,
|
|
1344
1228
|
color: "primary",
|
|
@@ -1357,8 +1241,8 @@ var OutlinedButton_default = memo6(OutlinedButton);
|
|
|
1357
1241
|
import { memo as memo7 } from "react";
|
|
1358
1242
|
import { Button as Button10 } from "@mui/material";
|
|
1359
1243
|
import { withStyles as withStyles2 } from "tss-react/mui";
|
|
1360
|
-
import { jsx as
|
|
1361
|
-
var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */
|
|
1244
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
1245
|
+
var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */ jsx14(Button10, { variant, className: classes[color], children: copy });
|
|
1362
1246
|
var FilterButtonLg = withStyles2(AButton, (theme) => ({
|
|
1363
1247
|
default: {
|
|
1364
1248
|
boxShadow: "none",
|
|
@@ -1452,16 +1336,16 @@ import { Fab, Tooltip as Tooltip2 } from "@mui/material";
|
|
|
1452
1336
|
import { makeStyles as makeStyles11 } from "tss-react/mui";
|
|
1453
1337
|
|
|
1454
1338
|
// src/components/icons/BallsLogo.tsx
|
|
1455
|
-
import { jsx as
|
|
1339
|
+
import { jsx as jsx15, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1456
1340
|
var SvgBallsLogo = (props) => /* @__PURE__ */ jsxs12("svg", { viewBox: "0 0 1024 305.8", ...props, fill: "currentColor", children: [
|
|
1457
|
-
/* @__PURE__ */
|
|
1458
|
-
/* @__PURE__ */
|
|
1459
|
-
/* @__PURE__ */
|
|
1341
|
+
/* @__PURE__ */ jsx15("path", { d: "M586.9,152.3c0,82.2-66,148.1-148.1,148.1s-148.1-66-148.1-148.1S356.6,4.2,438.8,4.2C520.9,2.9,586.9,70.2,586.9,152.3" }),
|
|
1342
|
+
/* @__PURE__ */ jsx15("path", { d: "M5.6,4.2c80.9,0,146.9,66,146.9,146.9S86.5,297.9,5.6,297.9C5.6,297.9,5.6,4.2,5.6,4.2z" }),
|
|
1343
|
+
/* @__PURE__ */ jsx15("path", { d: "M1018.9,152.3c0-82.2-66-148.1-148.1-148.1s-148.1,66-148.1,148.1s66,148.1,148.1,148.1L1018.9,152.3z" })
|
|
1460
1344
|
] });
|
|
1461
1345
|
var BallsLogo_default = SvgBallsLogo;
|
|
1462
1346
|
|
|
1463
1347
|
// src/components/icons/EmptyGlassIcon.tsx
|
|
1464
|
-
import { jsx as
|
|
1348
|
+
import { jsx as jsx16, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1465
1349
|
var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
1466
1350
|
"svg",
|
|
1467
1351
|
{
|
|
@@ -1472,8 +1356,8 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1472
1356
|
fill: "none",
|
|
1473
1357
|
...props,
|
|
1474
1358
|
children: [
|
|
1475
|
-
/* @__PURE__ */
|
|
1476
|
-
/* @__PURE__ */
|
|
1359
|
+
/* @__PURE__ */ jsx16("g", { id: "Frame", clipPath: "url(#clip0_454_24067)", children: /* @__PURE__ */ jsxs13("g", { id: "Clip path group", children: [
|
|
1360
|
+
/* @__PURE__ */ jsx16(
|
|
1477
1361
|
"mask",
|
|
1478
1362
|
{
|
|
1479
1363
|
id: "mask0_454_24067",
|
|
@@ -1482,11 +1366,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1482
1366
|
y: "0",
|
|
1483
1367
|
width: "140",
|
|
1484
1368
|
height: "140",
|
|
1485
|
-
children: /* @__PURE__ */
|
|
1369
|
+
children: /* @__PURE__ */ jsx16("g", { id: "__lottie_element_11", children: /* @__PURE__ */ jsx16("path", { id: "Vector", d: "M140 0H0V140H140V0Z", fill: "white" }) })
|
|
1486
1370
|
}
|
|
1487
1371
|
),
|
|
1488
|
-
/* @__PURE__ */
|
|
1489
|
-
/* @__PURE__ */
|
|
1372
|
+
/* @__PURE__ */ jsx16("g", { mask: "url(#mask0_454_24067)", children: /* @__PURE__ */ jsx16("g", { id: "Group", children: /* @__PURE__ */ jsxs13("g", { id: "Clip path group_2", children: [
|
|
1373
|
+
/* @__PURE__ */ jsx16(
|
|
1490
1374
|
"mask",
|
|
1491
1375
|
{
|
|
1492
1376
|
id: "mask1_454_24067",
|
|
@@ -1495,11 +1379,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1495
1379
|
y: "0",
|
|
1496
1380
|
width: "140",
|
|
1497
1381
|
height: "140",
|
|
1498
|
-
children: /* @__PURE__ */
|
|
1382
|
+
children: /* @__PURE__ */ jsx16("g", { id: "__lottie_element_13", children: /* @__PURE__ */ jsx16("path", { id: "Vector_2", d: "M0 0H140V140H0V0Z", fill: "white" }) })
|
|
1499
1383
|
}
|
|
1500
1384
|
),
|
|
1501
|
-
/* @__PURE__ */
|
|
1502
|
-
/* @__PURE__ */
|
|
1385
|
+
/* @__PURE__ */ jsx16("g", { mask: "url(#mask1_454_24067)", children: /* @__PURE__ */ jsx16("g", { id: "Group_2", children: /* @__PURE__ */ jsxs13("g", { id: "Group_3", children: [
|
|
1386
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_4", children: /* @__PURE__ */ jsx16(
|
|
1503
1387
|
"path",
|
|
1504
1388
|
{
|
|
1505
1389
|
id: "Vector_3",
|
|
@@ -1507,7 +1391,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1507
1391
|
fill: "#B6B2D8"
|
|
1508
1392
|
}
|
|
1509
1393
|
) }),
|
|
1510
|
-
/* @__PURE__ */
|
|
1394
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_5", children: /* @__PURE__ */ jsx16(
|
|
1511
1395
|
"path",
|
|
1512
1396
|
{
|
|
1513
1397
|
id: "Vector_4",
|
|
@@ -1515,7 +1399,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1515
1399
|
fill: "#EECB3A"
|
|
1516
1400
|
}
|
|
1517
1401
|
) }),
|
|
1518
|
-
/* @__PURE__ */
|
|
1402
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_6", children: /* @__PURE__ */ jsx16(
|
|
1519
1403
|
"path",
|
|
1520
1404
|
{
|
|
1521
1405
|
id: "Vector_5",
|
|
@@ -1523,7 +1407,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1523
1407
|
fill: "#F1F1F2"
|
|
1524
1408
|
}
|
|
1525
1409
|
) }),
|
|
1526
|
-
/* @__PURE__ */
|
|
1410
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_7", children: /* @__PURE__ */ jsx16(
|
|
1527
1411
|
"path",
|
|
1528
1412
|
{
|
|
1529
1413
|
id: "Vector_6",
|
|
@@ -1531,7 +1415,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1531
1415
|
fill: "#EECB3A"
|
|
1532
1416
|
}
|
|
1533
1417
|
) }),
|
|
1534
|
-
/* @__PURE__ */
|
|
1418
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_8", children: /* @__PURE__ */ jsx16(
|
|
1535
1419
|
"path",
|
|
1536
1420
|
{
|
|
1537
1421
|
id: "Vector_7",
|
|
@@ -1539,7 +1423,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1539
1423
|
fill: "#B6B2D8"
|
|
1540
1424
|
}
|
|
1541
1425
|
) }),
|
|
1542
|
-
/* @__PURE__ */
|
|
1426
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_9", children: /* @__PURE__ */ jsx16(
|
|
1543
1427
|
"path",
|
|
1544
1428
|
{
|
|
1545
1429
|
id: "Vector_8",
|
|
@@ -1547,7 +1431,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1547
1431
|
fill: "#F6D977"
|
|
1548
1432
|
}
|
|
1549
1433
|
) }),
|
|
1550
|
-
/* @__PURE__ */
|
|
1434
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_10", opacity: "0.655813", children: /* @__PURE__ */ jsx16(
|
|
1551
1435
|
"path",
|
|
1552
1436
|
{
|
|
1553
1437
|
id: "Vector_9",
|
|
@@ -1555,7 +1439,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1555
1439
|
fill: "#B6B2D8"
|
|
1556
1440
|
}
|
|
1557
1441
|
) }),
|
|
1558
|
-
/* @__PURE__ */
|
|
1442
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_11", children: /* @__PURE__ */ jsx16(
|
|
1559
1443
|
"path",
|
|
1560
1444
|
{
|
|
1561
1445
|
id: "Vector_10",
|
|
@@ -1563,7 +1447,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1563
1447
|
fill: "#FFFEFF"
|
|
1564
1448
|
}
|
|
1565
1449
|
) }),
|
|
1566
|
-
/* @__PURE__ */
|
|
1450
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_12", children: /* @__PURE__ */ jsx16(
|
|
1567
1451
|
"path",
|
|
1568
1452
|
{
|
|
1569
1453
|
id: "Vector_11",
|
|
@@ -1571,7 +1455,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1571
1455
|
fill: "#EECB3A"
|
|
1572
1456
|
}
|
|
1573
1457
|
) }),
|
|
1574
|
-
/* @__PURE__ */
|
|
1458
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_13", children: /* @__PURE__ */ jsx16(
|
|
1575
1459
|
"path",
|
|
1576
1460
|
{
|
|
1577
1461
|
id: "Vector_12",
|
|
@@ -1580,7 +1464,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1580
1464
|
}
|
|
1581
1465
|
) }),
|
|
1582
1466
|
/* @__PURE__ */ jsxs13("g", { id: "Group_14", children: [
|
|
1583
|
-
/* @__PURE__ */
|
|
1467
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_15", children: /* @__PURE__ */ jsx16(
|
|
1584
1468
|
"path",
|
|
1585
1469
|
{
|
|
1586
1470
|
id: "Vector_13",
|
|
@@ -1588,7 +1472,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1588
1472
|
fill: "#BF7F42"
|
|
1589
1473
|
}
|
|
1590
1474
|
) }),
|
|
1591
|
-
/* @__PURE__ */
|
|
1475
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_16", children: /* @__PURE__ */ jsx16(
|
|
1592
1476
|
"path",
|
|
1593
1477
|
{
|
|
1594
1478
|
id: "Vector_14",
|
|
@@ -1596,7 +1480,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1596
1480
|
fill: "#C2D1E0"
|
|
1597
1481
|
}
|
|
1598
1482
|
) }),
|
|
1599
|
-
/* @__PURE__ */
|
|
1483
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_17", children: /* @__PURE__ */ jsx16(
|
|
1600
1484
|
"path",
|
|
1601
1485
|
{
|
|
1602
1486
|
id: "Vector_15",
|
|
@@ -1604,7 +1488,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1604
1488
|
fill: "#D2E0EA"
|
|
1605
1489
|
}
|
|
1606
1490
|
) }),
|
|
1607
|
-
/* @__PURE__ */
|
|
1491
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_18", children: /* @__PURE__ */ jsx16(
|
|
1608
1492
|
"path",
|
|
1609
1493
|
{
|
|
1610
1494
|
id: "Vector_16",
|
|
@@ -1612,7 +1496,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1612
1496
|
fill: "#8EC5EA"
|
|
1613
1497
|
}
|
|
1614
1498
|
) }),
|
|
1615
|
-
/* @__PURE__ */
|
|
1499
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_19", children: /* @__PURE__ */ jsx16(
|
|
1616
1500
|
"path",
|
|
1617
1501
|
{
|
|
1618
1502
|
id: "Vector_17",
|
|
@@ -1620,7 +1504,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1620
1504
|
fill: "#70AFDE"
|
|
1621
1505
|
}
|
|
1622
1506
|
) }),
|
|
1623
|
-
/* @__PURE__ */
|
|
1507
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_20", children: /* @__PURE__ */ jsx16(
|
|
1624
1508
|
"path",
|
|
1625
1509
|
{
|
|
1626
1510
|
id: "Vector_18",
|
|
@@ -1628,7 +1512,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1628
1512
|
fill: "#B5713E"
|
|
1629
1513
|
}
|
|
1630
1514
|
) }),
|
|
1631
|
-
/* @__PURE__ */
|
|
1515
|
+
/* @__PURE__ */ jsx16("g", { id: "Group_21", opacity: "0.2", children: /* @__PURE__ */ jsx16(
|
|
1632
1516
|
"path",
|
|
1633
1517
|
{
|
|
1634
1518
|
id: "Vector_19",
|
|
@@ -1640,37 +1524,37 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1640
1524
|
] }) }) })
|
|
1641
1525
|
] }) }) })
|
|
1642
1526
|
] }) }),
|
|
1643
|
-
/* @__PURE__ */
|
|
1527
|
+
/* @__PURE__ */ jsx16("defs", { children: /* @__PURE__ */ jsx16("clipPath", { id: "clip0_454_24067", children: /* @__PURE__ */ jsx16("rect", { width: "140", height: "140", fill: "white" }) }) })
|
|
1644
1528
|
]
|
|
1645
1529
|
}
|
|
1646
1530
|
);
|
|
1647
1531
|
var EmptyGlassIcon_default = SvgEmptyGlassIcon;
|
|
1648
1532
|
|
|
1649
1533
|
// src/components/icons/IconAccount.tsx
|
|
1650
|
-
import { jsx as
|
|
1534
|
+
import { jsx as jsx17, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1651
1535
|
var SvgIconAccount = (props) => /* @__PURE__ */ jsxs14("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1652
|
-
/* @__PURE__ */
|
|
1536
|
+
/* @__PURE__ */ jsx17(
|
|
1653
1537
|
"path",
|
|
1654
1538
|
{
|
|
1655
1539
|
className: "icon-account_svg__st0",
|
|
1656
1540
|
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"
|
|
1657
1541
|
}
|
|
1658
1542
|
),
|
|
1659
|
-
/* @__PURE__ */
|
|
1543
|
+
/* @__PURE__ */ jsx17(
|
|
1660
1544
|
"path",
|
|
1661
1545
|
{
|
|
1662
1546
|
className: "icon-account_svg__st0",
|
|
1663
1547
|
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"
|
|
1664
1548
|
}
|
|
1665
1549
|
),
|
|
1666
|
-
/* @__PURE__ */
|
|
1550
|
+
/* @__PURE__ */ jsx17(
|
|
1667
1551
|
"path",
|
|
1668
1552
|
{
|
|
1669
1553
|
className: "icon-account_svg__st1",
|
|
1670
1554
|
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"
|
|
1671
1555
|
}
|
|
1672
1556
|
),
|
|
1673
|
-
/* @__PURE__ */
|
|
1557
|
+
/* @__PURE__ */ jsx17(
|
|
1674
1558
|
"path",
|
|
1675
1559
|
{
|
|
1676
1560
|
className: "icon-account_svg__st1",
|
|
@@ -1681,8 +1565,8 @@ var SvgIconAccount = (props) => /* @__PURE__ */ jsxs14("svg", { viewBox: "0 0 55
|
|
|
1681
1565
|
var IconAccount_default = SvgIconAccount;
|
|
1682
1566
|
|
|
1683
1567
|
// src/components/icons/IconAccounts.tsx
|
|
1684
|
-
import { jsx as
|
|
1685
|
-
var SvgIconAccounts = (props) => /* @__PURE__ */
|
|
1568
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
1569
|
+
var SvgIconAccounts = (props) => /* @__PURE__ */ jsx18("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx18(
|
|
1686
1570
|
"path",
|
|
1687
1571
|
{
|
|
1688
1572
|
className: "icon-accounts_svg__st0",
|
|
@@ -1692,7 +1576,7 @@ var SvgIconAccounts = (props) => /* @__PURE__ */ jsx19("svg", { viewBox: "0 0 55
|
|
|
1692
1576
|
var IconAccounts_default = SvgIconAccounts;
|
|
1693
1577
|
|
|
1694
1578
|
// src/components/icons/IconAvocado.tsx
|
|
1695
|
-
import { jsx as
|
|
1579
|
+
import { jsx as jsx19, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1696
1580
|
var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
1697
1581
|
"svg",
|
|
1698
1582
|
{
|
|
@@ -1702,7 +1586,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1702
1586
|
fill: "none",
|
|
1703
1587
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1704
1588
|
children: [
|
|
1705
|
-
/* @__PURE__ */
|
|
1589
|
+
/* @__PURE__ */ jsx19(
|
|
1706
1590
|
"path",
|
|
1707
1591
|
{
|
|
1708
1592
|
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",
|
|
@@ -1711,7 +1595,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1711
1595
|
strokeMiterlimit: "10"
|
|
1712
1596
|
}
|
|
1713
1597
|
),
|
|
1714
|
-
/* @__PURE__ */
|
|
1598
|
+
/* @__PURE__ */ jsx19(
|
|
1715
1599
|
"path",
|
|
1716
1600
|
{
|
|
1717
1601
|
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",
|
|
@@ -1726,7 +1610,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1726
1610
|
var IconAvocado_default = SvgIconAvocado;
|
|
1727
1611
|
|
|
1728
1612
|
// src/components/icons/IconBanana.tsx
|
|
1729
|
-
import { jsx as
|
|
1613
|
+
import { jsx as jsx20, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1730
1614
|
var SvgIconBanana = () => /* @__PURE__ */ jsxs16(
|
|
1731
1615
|
"svg",
|
|
1732
1616
|
{
|
|
@@ -1736,52 +1620,52 @@ var SvgIconBanana = () => /* @__PURE__ */ jsxs16(
|
|
|
1736
1620
|
fill: "none",
|
|
1737
1621
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1738
1622
|
children: [
|
|
1739
|
-
/* @__PURE__ */
|
|
1623
|
+
/* @__PURE__ */ jsx20("g", { clipPath: "url(#clip0_0_2321)", children: /* @__PURE__ */ jsx20(
|
|
1740
1624
|
"path",
|
|
1741
1625
|
{
|
|
1742
1626
|
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",
|
|
1743
1627
|
fill: colors.neutral800
|
|
1744
1628
|
}
|
|
1745
1629
|
) }),
|
|
1746
|
-
/* @__PURE__ */
|
|
1630
|
+
/* @__PURE__ */ jsx20("defs", { children: /* @__PURE__ */ jsx20("clipPath", { id: "clip0_0_2321", children: /* @__PURE__ */ jsx20("rect", { width: "24", height: "22", fill: "white" }) }) })
|
|
1747
1631
|
]
|
|
1748
1632
|
}
|
|
1749
1633
|
);
|
|
1750
1634
|
var IconBanana_default = SvgIconBanana;
|
|
1751
1635
|
|
|
1752
1636
|
// src/components/icons/IconBuying.tsx
|
|
1753
|
-
import { jsx as
|
|
1637
|
+
import { jsx as jsx21, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1754
1638
|
var SvgIconBuying = (props) => /* @__PURE__ */ jsxs17("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1755
|
-
/* @__PURE__ */
|
|
1639
|
+
/* @__PURE__ */ jsx21(
|
|
1756
1640
|
"path",
|
|
1757
1641
|
{
|
|
1758
1642
|
className: "icon-buying_svg__st0",
|
|
1759
1643
|
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"
|
|
1760
1644
|
}
|
|
1761
1645
|
),
|
|
1762
|
-
/* @__PURE__ */
|
|
1646
|
+
/* @__PURE__ */ jsx21(
|
|
1763
1647
|
"path",
|
|
1764
1648
|
{
|
|
1765
1649
|
className: "icon-buying_svg__st0",
|
|
1766
1650
|
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"
|
|
1767
1651
|
}
|
|
1768
1652
|
),
|
|
1769
|
-
/* @__PURE__ */
|
|
1653
|
+
/* @__PURE__ */ jsx21("circle", { className: "icon-buying_svg__st0", cx: 34.7, cy: 38.1, r: 2.6 })
|
|
1770
1654
|
] });
|
|
1771
1655
|
var IconBuying_default = SvgIconBuying;
|
|
1772
1656
|
|
|
1773
1657
|
// src/components/icons/IconContentManagement.tsx
|
|
1774
|
-
import { jsx as
|
|
1658
|
+
import { jsx as jsx22, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1775
1659
|
var IconContentManagement = (props) => /* @__PURE__ */ jsxs18("svg", { viewBox: "0 0 55 56.7", ...props, fill: "0000", strokeWidth: "0px", children: [
|
|
1776
|
-
/* @__PURE__ */
|
|
1660
|
+
/* @__PURE__ */ jsx22(
|
|
1777
1661
|
"path",
|
|
1778
1662
|
{
|
|
1779
1663
|
className: "cls-1",
|
|
1780
1664
|
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"
|
|
1781
1665
|
}
|
|
1782
1666
|
),
|
|
1783
|
-
/* @__PURE__ */
|
|
1784
|
-
/* @__PURE__ */
|
|
1667
|
+
/* @__PURE__ */ jsx22("rect", { className: "cls-1", x: "21.6", y: "34.1", width: "3.6", height: "5.2" }),
|
|
1668
|
+
/* @__PURE__ */ jsx22(
|
|
1785
1669
|
"path",
|
|
1786
1670
|
{
|
|
1787
1671
|
className: "cls-1",
|
|
@@ -1792,23 +1676,23 @@ var IconContentManagement = (props) => /* @__PURE__ */ jsxs18("svg", { viewBox:
|
|
|
1792
1676
|
var IconContentManagement_default = IconContentManagement;
|
|
1793
1677
|
|
|
1794
1678
|
// src/components/icons/IconGoodsin.tsx
|
|
1795
|
-
import { jsx as
|
|
1679
|
+
import { jsx as jsx23, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1796
1680
|
var SvgIconGoodsin = (props) => /* @__PURE__ */ jsxs19("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1797
|
-
/* @__PURE__ */
|
|
1681
|
+
/* @__PURE__ */ jsx23(
|
|
1798
1682
|
"path",
|
|
1799
1683
|
{
|
|
1800
1684
|
className: "icon-goodsin_svg__st0",
|
|
1801
1685
|
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"
|
|
1802
1686
|
}
|
|
1803
1687
|
),
|
|
1804
|
-
/* @__PURE__ */
|
|
1688
|
+
/* @__PURE__ */ jsx23(
|
|
1805
1689
|
"path",
|
|
1806
1690
|
{
|
|
1807
1691
|
className: "icon-goodsin_svg__st0",
|
|
1808
1692
|
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"
|
|
1809
1693
|
}
|
|
1810
1694
|
),
|
|
1811
|
-
/* @__PURE__ */
|
|
1695
|
+
/* @__PURE__ */ jsx23(
|
|
1812
1696
|
"path",
|
|
1813
1697
|
{
|
|
1814
1698
|
className: "icon-goodsin_svg__st0",
|
|
@@ -1819,8 +1703,8 @@ var SvgIconGoodsin = (props) => /* @__PURE__ */ jsxs19("svg", { viewBox: "0 0 55
|
|
|
1819
1703
|
var IconGoodsin_default = SvgIconGoodsin;
|
|
1820
1704
|
|
|
1821
1705
|
// src/components/icons/IconGrape.tsx
|
|
1822
|
-
import { jsx as
|
|
1823
|
-
var SvgIconGrape = (props) => /* @__PURE__ */
|
|
1706
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
1707
|
+
var SvgIconGrape = (props) => /* @__PURE__ */ jsx24(
|
|
1824
1708
|
"svg",
|
|
1825
1709
|
{
|
|
1826
1710
|
width: "24",
|
|
@@ -1829,7 +1713,7 @@ var SvgIconGrape = (props) => /* @__PURE__ */ jsx25(
|
|
|
1829
1713
|
fill: "none",
|
|
1830
1714
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1831
1715
|
...props,
|
|
1832
|
-
children: /* @__PURE__ */
|
|
1716
|
+
children: /* @__PURE__ */ jsx24(
|
|
1833
1717
|
"path",
|
|
1834
1718
|
{
|
|
1835
1719
|
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",
|
|
@@ -1841,23 +1725,23 @@ var SvgIconGrape = (props) => /* @__PURE__ */ jsx25(
|
|
|
1841
1725
|
var IconGrape_default = SvgIconGrape;
|
|
1842
1726
|
|
|
1843
1727
|
// src/components/icons/IconHome.tsx
|
|
1844
|
-
import { jsx as
|
|
1728
|
+
import { jsx as jsx25, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1845
1729
|
var SvgIconHome = (props) => /* @__PURE__ */ jsxs20("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1846
|
-
/* @__PURE__ */
|
|
1730
|
+
/* @__PURE__ */ jsx25(
|
|
1847
1731
|
"path",
|
|
1848
1732
|
{
|
|
1849
1733
|
className: "icon-home_svg__st0",
|
|
1850
1734
|
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"
|
|
1851
1735
|
}
|
|
1852
1736
|
),
|
|
1853
|
-
/* @__PURE__ */
|
|
1737
|
+
/* @__PURE__ */ jsx25(
|
|
1854
1738
|
"path",
|
|
1855
1739
|
{
|
|
1856
1740
|
className: "icon-home_svg__st0",
|
|
1857
1741
|
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"
|
|
1858
1742
|
}
|
|
1859
1743
|
),
|
|
1860
|
-
/* @__PURE__ */
|
|
1744
|
+
/* @__PURE__ */ jsx25(
|
|
1861
1745
|
"path",
|
|
1862
1746
|
{
|
|
1863
1747
|
className: "icon-home_svg__st1",
|
|
@@ -1868,8 +1752,8 @@ var SvgIconHome = (props) => /* @__PURE__ */ jsxs20("svg", { viewBox: "0 0 55 56
|
|
|
1868
1752
|
var IconHome_default = SvgIconHome;
|
|
1869
1753
|
|
|
1870
1754
|
// src/components/icons/IconImport.tsx
|
|
1871
|
-
import { jsx as
|
|
1872
|
-
var SvgIconImport = (props) => /* @__PURE__ */
|
|
1755
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
1756
|
+
var SvgIconImport = (props) => /* @__PURE__ */ jsx26("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "-8 -8 40 40", ...props, children: /* @__PURE__ */ jsx26(
|
|
1873
1757
|
"path",
|
|
1874
1758
|
{
|
|
1875
1759
|
className: "icon-runs_svg__st0",
|
|
@@ -1879,16 +1763,16 @@ var SvgIconImport = (props) => /* @__PURE__ */ jsx27("svg", { xmlns: "http://www
|
|
|
1879
1763
|
var IconImport_default = SvgIconImport;
|
|
1880
1764
|
|
|
1881
1765
|
// src/components/icons/IconLocation.tsx
|
|
1882
|
-
import { jsx as
|
|
1766
|
+
import { jsx as jsx27, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1883
1767
|
var SvgIconLocation = (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1884
|
-
/* @__PURE__ */
|
|
1768
|
+
/* @__PURE__ */ jsx27(
|
|
1885
1769
|
"path",
|
|
1886
1770
|
{
|
|
1887
1771
|
className: "icon-location_svg__st0",
|
|
1888
1772
|
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"
|
|
1889
1773
|
}
|
|
1890
1774
|
),
|
|
1891
|
-
/* @__PURE__ */
|
|
1775
|
+
/* @__PURE__ */ jsx27(
|
|
1892
1776
|
"path",
|
|
1893
1777
|
{
|
|
1894
1778
|
className: "icon-location_svg__st0",
|
|
@@ -1899,16 +1783,16 @@ var SvgIconLocation = (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 5
|
|
|
1899
1783
|
var IconLocation_default = SvgIconLocation;
|
|
1900
1784
|
|
|
1901
1785
|
// src/components/icons/IconLogin.tsx
|
|
1902
|
-
import { jsx as
|
|
1786
|
+
import { jsx as jsx28, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1903
1787
|
var SvgIconLogin = (props) => /* @__PURE__ */ jsxs22("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1904
|
-
/* @__PURE__ */
|
|
1788
|
+
/* @__PURE__ */ jsx28(
|
|
1905
1789
|
"path",
|
|
1906
1790
|
{
|
|
1907
1791
|
className: "icon-login_svg__st0",
|
|
1908
1792
|
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"
|
|
1909
1793
|
}
|
|
1910
1794
|
),
|
|
1911
|
-
/* @__PURE__ */
|
|
1795
|
+
/* @__PURE__ */ jsx28(
|
|
1912
1796
|
"path",
|
|
1913
1797
|
{
|
|
1914
1798
|
className: "icon-login_svg__st0",
|
|
@@ -1919,16 +1803,16 @@ var SvgIconLogin = (props) => /* @__PURE__ */ jsxs22("svg", { viewBox: "0 0 55 5
|
|
|
1919
1803
|
var IconLogin_default = SvgIconLogin;
|
|
1920
1804
|
|
|
1921
1805
|
// src/components/icons/IconNotification.tsx
|
|
1922
|
-
import { jsx as
|
|
1806
|
+
import { jsx as jsx29, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1923
1807
|
var SvgIconNotification = (props) => /* @__PURE__ */ jsxs23("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1924
|
-
/* @__PURE__ */
|
|
1808
|
+
/* @__PURE__ */ jsx29(
|
|
1925
1809
|
"path",
|
|
1926
1810
|
{
|
|
1927
1811
|
className: "icon-notification_svg__st0",
|
|
1928
1812
|
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"
|
|
1929
1813
|
}
|
|
1930
1814
|
),
|
|
1931
|
-
/* @__PURE__ */
|
|
1815
|
+
/* @__PURE__ */ jsx29(
|
|
1932
1816
|
"path",
|
|
1933
1817
|
{
|
|
1934
1818
|
className: "icon-notification_svg__st0",
|
|
@@ -1939,24 +1823,24 @@ var SvgIconNotification = (props) => /* @__PURE__ */ jsxs23("svg", { viewBox: "0
|
|
|
1939
1823
|
var IconNotification_default = SvgIconNotification;
|
|
1940
1824
|
|
|
1941
1825
|
// src/components/icons/IconOpsMetrics.tsx
|
|
1942
|
-
import { jsx as
|
|
1826
|
+
import { jsx as jsx30, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1943
1827
|
var SvgIconOpsMetrics = (props) => /* @__PURE__ */ jsxs24("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1944
|
-
/* @__PURE__ */
|
|
1945
|
-
/* @__PURE__ */
|
|
1828
|
+
/* @__PURE__ */ jsx30("path", { d: "M672.6 1136.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c-.1-1.6-1.3-3-2.9-3zM683.4 1136.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c0-1.7-1.4-2.9-3-2.9z" }),
|
|
1829
|
+
/* @__PURE__ */ jsx30("path", { d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3s2.9.9 3.7 2.4c.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1zM39.5 40.7H29V28.2h10.5v12.5zm-8-2.5H37v-7.5h-5.5v7.5zm-6 2.5H15v-8.5h10.5v8.5zm-8-2.5H23v-3.5h-5.5v3.5zm8-9.5H15V16.2h10.5v12.5zm-8-2.5H23v-7.5h-5.5v7.5zm22-1.5H29v-8.5h10.5v8.5zm-8-2.5H37v-3.5h-5.5v3.5z" })
|
|
1946
1830
|
] });
|
|
1947
1831
|
var IconOpsMetrics_default = SvgIconOpsMetrics;
|
|
1948
1832
|
|
|
1949
1833
|
// src/components/icons/IconOrders.tsx
|
|
1950
|
-
import { jsx as
|
|
1834
|
+
import { jsx as jsx31, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1951
1835
|
var SvgIconOrders = (props) => /* @__PURE__ */ jsxs25("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1952
|
-
/* @__PURE__ */
|
|
1836
|
+
/* @__PURE__ */ jsx31(
|
|
1953
1837
|
"path",
|
|
1954
1838
|
{
|
|
1955
1839
|
className: "icon-orders_svg__st0",
|
|
1956
1840
|
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"
|
|
1957
1841
|
}
|
|
1958
1842
|
),
|
|
1959
|
-
/* @__PURE__ */
|
|
1843
|
+
/* @__PURE__ */ jsx31(
|
|
1960
1844
|
"path",
|
|
1961
1845
|
{
|
|
1962
1846
|
className: "icon-orders_svg__st0",
|
|
@@ -1967,8 +1851,8 @@ var SvgIconOrders = (props) => /* @__PURE__ */ jsxs25("svg", { viewBox: "0 0 55
|
|
|
1967
1851
|
var IconOrders_default = SvgIconOrders;
|
|
1968
1852
|
|
|
1969
1853
|
// src/components/icons/IconPhone.tsx
|
|
1970
|
-
import { jsx as
|
|
1971
|
-
var SvgIconPhone = (props) => /* @__PURE__ */
|
|
1854
|
+
import { jsx as jsx32 } from "react/jsx-runtime";
|
|
1855
|
+
var SvgIconPhone = (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx32(
|
|
1972
1856
|
"path",
|
|
1973
1857
|
{
|
|
1974
1858
|
className: "icon-phone_svg__st0",
|
|
@@ -1978,30 +1862,30 @@ var SvgIconPhone = (props) => /* @__PURE__ */ jsx33("svg", { viewBox: "0 0 55 56
|
|
|
1978
1862
|
var IconPhone_default = SvgIconPhone;
|
|
1979
1863
|
|
|
1980
1864
|
// src/components/icons/IconPriceList.tsx
|
|
1981
|
-
import { jsx as
|
|
1865
|
+
import { jsx as jsx33, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
1982
1866
|
var SvgIconPriceList = (props) => /* @__PURE__ */ jsxs26("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1983
|
-
/* @__PURE__ */
|
|
1867
|
+
/* @__PURE__ */ jsx33(
|
|
1984
1868
|
"path",
|
|
1985
1869
|
{
|
|
1986
1870
|
className: "icon-price-list_svg__st0",
|
|
1987
1871
|
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"
|
|
1988
1872
|
}
|
|
1989
1873
|
),
|
|
1990
|
-
/* @__PURE__ */
|
|
1874
|
+
/* @__PURE__ */ jsx33(
|
|
1991
1875
|
"path",
|
|
1992
1876
|
{
|
|
1993
1877
|
className: "icon-price-list_svg__st0",
|
|
1994
1878
|
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"
|
|
1995
1879
|
}
|
|
1996
1880
|
),
|
|
1997
|
-
/* @__PURE__ */
|
|
1881
|
+
/* @__PURE__ */ jsx33(
|
|
1998
1882
|
"path",
|
|
1999
1883
|
{
|
|
2000
1884
|
className: "icon-price-list_svg__st1",
|
|
2001
1885
|
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"
|
|
2002
1886
|
}
|
|
2003
1887
|
),
|
|
2004
|
-
/* @__PURE__ */
|
|
1888
|
+
/* @__PURE__ */ jsx33(
|
|
2005
1889
|
"path",
|
|
2006
1890
|
{
|
|
2007
1891
|
className: "icon-price-list_svg__st1",
|
|
@@ -2012,16 +1896,16 @@ var SvgIconPriceList = (props) => /* @__PURE__ */ jsxs26("svg", { viewBox: "0 0
|
|
|
2012
1896
|
var IconPriceList_default = SvgIconPriceList;
|
|
2013
1897
|
|
|
2014
1898
|
// src/components/icons/IconProducts.tsx
|
|
2015
|
-
import { jsx as
|
|
1899
|
+
import { jsx as jsx34, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
2016
1900
|
var SvgIconProducts = (props) => /* @__PURE__ */ jsxs27("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2017
|
-
/* @__PURE__ */
|
|
1901
|
+
/* @__PURE__ */ jsx34(
|
|
2018
1902
|
"path",
|
|
2019
1903
|
{
|
|
2020
1904
|
className: "icon-products_svg__st0",
|
|
2021
1905
|
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"
|
|
2022
1906
|
}
|
|
2023
1907
|
),
|
|
2024
|
-
/* @__PURE__ */
|
|
1908
|
+
/* @__PURE__ */ jsx34(
|
|
2025
1909
|
"path",
|
|
2026
1910
|
{
|
|
2027
1911
|
className: "icon-products_svg__st0",
|
|
@@ -2032,79 +1916,79 @@ var SvgIconProducts = (props) => /* @__PURE__ */ jsxs27("svg", { viewBox: "0 0 5
|
|
|
2032
1916
|
var IconProducts_default = SvgIconProducts;
|
|
2033
1917
|
|
|
2034
1918
|
// src/components/icons/IconPromoCode.tsx
|
|
2035
|
-
import { jsx as
|
|
1919
|
+
import { jsx as jsx35, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
2036
1920
|
var SvgIconPromoCode = (props) => /* @__PURE__ */ jsxs28("svg", { viewBox: "0 0 42.5 42.5", ...props, children: [
|
|
2037
|
-
/* @__PURE__ */
|
|
1921
|
+
/* @__PURE__ */ jsx35(
|
|
2038
1922
|
"path",
|
|
2039
1923
|
{
|
|
2040
1924
|
className: "promo_code_svg_st0",
|
|
2041
1925
|
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"
|
|
2042
1926
|
}
|
|
2043
1927
|
),
|
|
2044
|
-
/* @__PURE__ */
|
|
1928
|
+
/* @__PURE__ */ jsx35(
|
|
2045
1929
|
"path",
|
|
2046
1930
|
{
|
|
2047
1931
|
className: "promo_code_svg_st0",
|
|
2048
1932
|
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"
|
|
2049
1933
|
}
|
|
2050
1934
|
),
|
|
2051
|
-
/* @__PURE__ */
|
|
1935
|
+
/* @__PURE__ */ jsx35(
|
|
2052
1936
|
"path",
|
|
2053
1937
|
{
|
|
2054
1938
|
className: "promo_code_svg_st0",
|
|
2055
1939
|
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"
|
|
2056
1940
|
}
|
|
2057
1941
|
),
|
|
2058
|
-
/* @__PURE__ */
|
|
1942
|
+
/* @__PURE__ */ jsx35(
|
|
2059
1943
|
"path",
|
|
2060
1944
|
{
|
|
2061
1945
|
className: "promo_code_svg_st0",
|
|
2062
1946
|
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"
|
|
2063
1947
|
}
|
|
2064
1948
|
),
|
|
2065
|
-
/* @__PURE__ */
|
|
1949
|
+
/* @__PURE__ */ jsx35(
|
|
2066
1950
|
"path",
|
|
2067
1951
|
{
|
|
2068
1952
|
className: "promo_code_svg_st0",
|
|
2069
1953
|
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"
|
|
2070
1954
|
}
|
|
2071
1955
|
),
|
|
2072
|
-
/* @__PURE__ */
|
|
1956
|
+
/* @__PURE__ */ jsx35(
|
|
2073
1957
|
"path",
|
|
2074
1958
|
{
|
|
2075
1959
|
className: "promo_code_svg_st0",
|
|
2076
1960
|
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"
|
|
2077
1961
|
}
|
|
2078
1962
|
),
|
|
2079
|
-
/* @__PURE__ */
|
|
1963
|
+
/* @__PURE__ */ jsx35(
|
|
2080
1964
|
"path",
|
|
2081
1965
|
{
|
|
2082
1966
|
className: "promo_code_svg_st0",
|
|
2083
1967
|
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"
|
|
2084
1968
|
}
|
|
2085
1969
|
),
|
|
2086
|
-
/* @__PURE__ */
|
|
1970
|
+
/* @__PURE__ */ jsx35(
|
|
2087
1971
|
"path",
|
|
2088
1972
|
{
|
|
2089
1973
|
className: "promo_code_svg_st0",
|
|
2090
1974
|
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"
|
|
2091
1975
|
}
|
|
2092
1976
|
),
|
|
2093
|
-
/* @__PURE__ */
|
|
1977
|
+
/* @__PURE__ */ jsx35(
|
|
2094
1978
|
"path",
|
|
2095
1979
|
{
|
|
2096
1980
|
className: "promo_code_svg_st0",
|
|
2097
1981
|
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"
|
|
2098
1982
|
}
|
|
2099
1983
|
),
|
|
2100
|
-
/* @__PURE__ */
|
|
1984
|
+
/* @__PURE__ */ jsx35(
|
|
2101
1985
|
"path",
|
|
2102
1986
|
{
|
|
2103
1987
|
className: "promo_code_svg_st0",
|
|
2104
1988
|
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"
|
|
2105
1989
|
}
|
|
2106
1990
|
),
|
|
2107
|
-
/* @__PURE__ */
|
|
1991
|
+
/* @__PURE__ */ jsx35(
|
|
2108
1992
|
"path",
|
|
2109
1993
|
{
|
|
2110
1994
|
className: "promo_code_svg_st0",
|
|
@@ -2115,8 +1999,8 @@ var SvgIconPromoCode = (props) => /* @__PURE__ */ jsxs28("svg", { viewBox: "0 0
|
|
|
2115
1999
|
var IconPromoCode_default = SvgIconPromoCode;
|
|
2116
2000
|
|
|
2117
2001
|
// src/components/icons/IconQc.tsx
|
|
2118
|
-
import { jsx as
|
|
2119
|
-
var SvgIconQc = (props) => /* @__PURE__ */
|
|
2002
|
+
import { jsx as jsx36 } from "react/jsx-runtime";
|
|
2003
|
+
var SvgIconQc = (props) => /* @__PURE__ */ jsx36("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx36(
|
|
2120
2004
|
"path",
|
|
2121
2005
|
{
|
|
2122
2006
|
className: "icon-qc_svg__st0",
|
|
@@ -2126,8 +2010,8 @@ var SvgIconQc = (props) => /* @__PURE__ */ jsx37("svg", { viewBox: "0 0 55 56.7"
|
|
|
2126
2010
|
var IconQc_default = SvgIconQc;
|
|
2127
2011
|
|
|
2128
2012
|
// src/components/icons/IconReports.tsx
|
|
2129
|
-
import { jsx as
|
|
2130
|
-
var SvgIconReports = (props) => /* @__PURE__ */
|
|
2013
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
2014
|
+
var SvgIconReports = (props) => /* @__PURE__ */ jsx37("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx37(
|
|
2131
2015
|
"path",
|
|
2132
2016
|
{
|
|
2133
2017
|
className: "icon-reports_svg__st0",
|
|
@@ -2137,23 +2021,23 @@ var SvgIconReports = (props) => /* @__PURE__ */ jsx38("svg", { viewBox: "0 0 55
|
|
|
2137
2021
|
var IconReports_default = SvgIconReports;
|
|
2138
2022
|
|
|
2139
2023
|
// src/components/icons/IconRetail.tsx
|
|
2140
|
-
import { jsx as
|
|
2024
|
+
import { jsx as jsx38, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
2141
2025
|
var SvgIconRetail = (props) => /* @__PURE__ */ jsxs29("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2142
|
-
/* @__PURE__ */
|
|
2026
|
+
/* @__PURE__ */ jsx38(
|
|
2143
2027
|
"path",
|
|
2144
2028
|
{
|
|
2145
2029
|
className: "icon-retail_svg__st0",
|
|
2146
2030
|
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"
|
|
2147
2031
|
}
|
|
2148
2032
|
),
|
|
2149
|
-
/* @__PURE__ */
|
|
2033
|
+
/* @__PURE__ */ jsx38(
|
|
2150
2034
|
"path",
|
|
2151
2035
|
{
|
|
2152
2036
|
className: "icon-retail_svg__st0",
|
|
2153
2037
|
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"
|
|
2154
2038
|
}
|
|
2155
2039
|
),
|
|
2156
|
-
/* @__PURE__ */
|
|
2040
|
+
/* @__PURE__ */ jsx38(
|
|
2157
2041
|
"path",
|
|
2158
2042
|
{
|
|
2159
2043
|
className: "icon-retail_svg__st0",
|
|
@@ -2164,8 +2048,8 @@ var SvgIconRetail = (props) => /* @__PURE__ */ jsxs29("svg", { viewBox: "0 0 55
|
|
|
2164
2048
|
var IconRetail_default = SvgIconRetail;
|
|
2165
2049
|
|
|
2166
2050
|
// src/components/icons/IconRuns.tsx
|
|
2167
|
-
import { jsx as
|
|
2168
|
-
var SvgIconRuns = (props) => /* @__PURE__ */
|
|
2051
|
+
import { jsx as jsx39 } from "react/jsx-runtime";
|
|
2052
|
+
var SvgIconRuns = (props) => /* @__PURE__ */ jsx39("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx39(
|
|
2169
2053
|
"path",
|
|
2170
2054
|
{
|
|
2171
2055
|
className: "icon-runs_svg__st0",
|
|
@@ -2175,23 +2059,23 @@ var SvgIconRuns = (props) => /* @__PURE__ */ jsx40("svg", { viewBox: "0 0 55 56.
|
|
|
2175
2059
|
var IconRuns_default = SvgIconRuns;
|
|
2176
2060
|
|
|
2177
2061
|
// src/components/icons/IconScales.tsx
|
|
2178
|
-
import { jsx as
|
|
2062
|
+
import { jsx as jsx40, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
2179
2063
|
var SvgIconScales = (props) => /* @__PURE__ */ jsxs30("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2180
|
-
/* @__PURE__ */
|
|
2064
|
+
/* @__PURE__ */ jsx40(
|
|
2181
2065
|
"path",
|
|
2182
2066
|
{
|
|
2183
2067
|
className: "icon-scales_svg__st0",
|
|
2184
2068
|
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"
|
|
2185
2069
|
}
|
|
2186
2070
|
),
|
|
2187
|
-
/* @__PURE__ */
|
|
2071
|
+
/* @__PURE__ */ jsx40(
|
|
2188
2072
|
"path",
|
|
2189
2073
|
{
|
|
2190
2074
|
className: "icon-scales_svg__st0",
|
|
2191
2075
|
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"
|
|
2192
2076
|
}
|
|
2193
2077
|
),
|
|
2194
|
-
/* @__PURE__ */
|
|
2078
|
+
/* @__PURE__ */ jsx40(
|
|
2195
2079
|
"path",
|
|
2196
2080
|
{
|
|
2197
2081
|
className: "icon-scales_svg__st1",
|
|
@@ -2202,8 +2086,8 @@ var SvgIconScales = (props) => /* @__PURE__ */ jsxs30("svg", { viewBox: "0 0 55
|
|
|
2202
2086
|
var IconScales_default = SvgIconScales;
|
|
2203
2087
|
|
|
2204
2088
|
// src/components/icons/IconSearchCategories.tsx
|
|
2205
|
-
import { jsx as
|
|
2206
|
-
var SvgIconSearchCategories = (props) => /* @__PURE__ */
|
|
2089
|
+
import { jsx as jsx41 } from "react/jsx-runtime";
|
|
2090
|
+
var SvgIconSearchCategories = (props) => /* @__PURE__ */ jsx41("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx41(
|
|
2207
2091
|
"path",
|
|
2208
2092
|
{
|
|
2209
2093
|
className: "icon-search-categories_svg__st0",
|
|
@@ -2213,8 +2097,8 @@ var SvgIconSearchCategories = (props) => /* @__PURE__ */ jsx42("svg", { viewBox:
|
|
|
2213
2097
|
var IconSearchCategories_default = SvgIconSearchCategories;
|
|
2214
2098
|
|
|
2215
2099
|
// src/components/icons/IconSetting.tsx
|
|
2216
|
-
import { jsx as
|
|
2217
|
-
var SvgIconSetting = (props) => /* @__PURE__ */
|
|
2100
|
+
import { jsx as jsx42 } from "react/jsx-runtime";
|
|
2101
|
+
var SvgIconSetting = (props) => /* @__PURE__ */ jsx42("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx42(
|
|
2218
2102
|
"path",
|
|
2219
2103
|
{
|
|
2220
2104
|
className: "icon-setting_svg__st0",
|
|
@@ -2224,8 +2108,8 @@ var SvgIconSetting = (props) => /* @__PURE__ */ jsx43("svg", { viewBox: "0 0 55
|
|
|
2224
2108
|
var IconSetting_default = SvgIconSetting;
|
|
2225
2109
|
|
|
2226
2110
|
// src/components/icons/IconSnail.tsx
|
|
2227
|
-
import { jsx as
|
|
2228
|
-
var SvgIconSnail = (props) => /* @__PURE__ */
|
|
2111
|
+
import { jsx as jsx43 } from "react/jsx-runtime";
|
|
2112
|
+
var SvgIconSnail = (props) => /* @__PURE__ */ jsx43(
|
|
2229
2113
|
"svg",
|
|
2230
2114
|
{
|
|
2231
2115
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2233,36 +2117,36 @@ var SvgIconSnail = (props) => /* @__PURE__ */ jsx44(
|
|
|
2233
2117
|
height: "24",
|
|
2234
2118
|
viewBox: "0 0 24 24",
|
|
2235
2119
|
...props,
|
|
2236
|
-
children: /* @__PURE__ */
|
|
2120
|
+
children: /* @__PURE__ */ jsx43("path", { d: "M20.31 8.03L21.24 4.95C21.67 4.85 22 4.47 22 4C22 3.45 21.55 3 21 3C20.45 3 20 3.45 20 4C20 4.26 20.11 4.5 20.27 4.68L19.5 7.26L18.73 4.68C18.89 4.5 19 4.26 19 4C19 3.45 18.55 3 18 3C17.45 3 17 3.45 17 4C17 4.47 17.33 4.85 17.76 4.95L18.69 8.03C17.73 8.18 17 9 17 10V12.25C15.65 9.16 12.63 7 9.11 7C5.19 7 2 10.26 2 14.26C2 16.1 2.82 17.75 4.1 18.85L2.88 19C2.38 19.06 2 19.5 2 20C2 20.55 2.45 21 3 21H19.12C20.16 21 21 20.16 21 19.12V11.72C21.6 11.38 22 10.74 22 10C22 9 21.27 8.18 20.31 8.03ZM15.6 17.41L12.07 17.86C12.5 17.1 12.8 16.21 12.8 15.26C12.8 12.94 10.95 11.06 8.67 11.06C8.14 11.06 7.62 11.18 7.14 11.41C6.65 11.66 6.44 12.26 6.69 12.75C6.93 13.25 7.53 13.45 8.03 13.21C8.23 13.11 8.45 13.06 8.67 13.06C9.85 13.06 10.8 14.04 10.8 15.26C10.8 16.92 9.5 18.27 7.89 18.27C5.75 18.27 4 16.47 4 14.26C4 11.36 6.29 9 9.11 9C12.77 9 15.75 12.06 15.75 15.82C15.75 16.36 15.69 16.89 15.6 17.41Z" })
|
|
2237
2121
|
}
|
|
2238
2122
|
);
|
|
2239
2123
|
var IconSnail_default = SvgIconSnail;
|
|
2240
2124
|
|
|
2241
2125
|
// src/components/icons/IconSpecialPrice.tsx
|
|
2242
|
-
import { jsx as
|
|
2126
|
+
import { jsx as jsx44, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
2243
2127
|
var SvgIconSpecialPrice = (props) => /* @__PURE__ */ jsxs31("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2244
|
-
/* @__PURE__ */
|
|
2128
|
+
/* @__PURE__ */ jsx44(
|
|
2245
2129
|
"path",
|
|
2246
2130
|
{
|
|
2247
2131
|
className: "icon-special-price_svg__st0",
|
|
2248
2132
|
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"
|
|
2249
2133
|
}
|
|
2250
2134
|
),
|
|
2251
|
-
/* @__PURE__ */
|
|
2135
|
+
/* @__PURE__ */ jsx44(
|
|
2252
2136
|
"path",
|
|
2253
2137
|
{
|
|
2254
2138
|
className: "icon-special-price_svg__st0",
|
|
2255
2139
|
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"
|
|
2256
2140
|
}
|
|
2257
2141
|
),
|
|
2258
|
-
/* @__PURE__ */
|
|
2142
|
+
/* @__PURE__ */ jsx44(
|
|
2259
2143
|
"path",
|
|
2260
2144
|
{
|
|
2261
2145
|
className: "icon-special-price_svg__st0",
|
|
2262
2146
|
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"
|
|
2263
2147
|
}
|
|
2264
2148
|
),
|
|
2265
|
-
/* @__PURE__ */
|
|
2149
|
+
/* @__PURE__ */ jsx44(
|
|
2266
2150
|
"path",
|
|
2267
2151
|
{
|
|
2268
2152
|
className: "icon-special-price_svg__st0",
|
|
@@ -2273,16 +2157,16 @@ var SvgIconSpecialPrice = (props) => /* @__PURE__ */ jsxs31("svg", { viewBox: "0
|
|
|
2273
2157
|
var IconSpecialPrice_default = SvgIconSpecialPrice;
|
|
2274
2158
|
|
|
2275
2159
|
// src/components/icons/IconStock.tsx
|
|
2276
|
-
import { jsx as
|
|
2160
|
+
import { jsx as jsx45, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
2277
2161
|
var SvgIconStock = (props) => /* @__PURE__ */ jsxs32("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2278
|
-
/* @__PURE__ */
|
|
2162
|
+
/* @__PURE__ */ jsx45(
|
|
2279
2163
|
"path",
|
|
2280
2164
|
{
|
|
2281
2165
|
className: "icon-stock_svg__st0",
|
|
2282
2166
|
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"
|
|
2283
2167
|
}
|
|
2284
2168
|
),
|
|
2285
|
-
/* @__PURE__ */
|
|
2169
|
+
/* @__PURE__ */ jsx45(
|
|
2286
2170
|
"path",
|
|
2287
2171
|
{
|
|
2288
2172
|
className: "icon-stock_svg__st0",
|
|
@@ -2293,8 +2177,8 @@ var SvgIconStock = (props) => /* @__PURE__ */ jsxs32("svg", { viewBox: "0 0 55 5
|
|
|
2293
2177
|
var IconStock_default = SvgIconStock;
|
|
2294
2178
|
|
|
2295
2179
|
// src/components/icons/IconStrawberry.tsx
|
|
2296
|
-
import { jsx as
|
|
2297
|
-
var SvgIconStrawberry = () => /* @__PURE__ */
|
|
2180
|
+
import { jsx as jsx46 } from "react/jsx-runtime";
|
|
2181
|
+
var SvgIconStrawberry = () => /* @__PURE__ */ jsx46(
|
|
2298
2182
|
"svg",
|
|
2299
2183
|
{
|
|
2300
2184
|
width: "24",
|
|
@@ -2302,7 +2186,7 @@ var SvgIconStrawberry = () => /* @__PURE__ */ jsx47(
|
|
|
2302
2186
|
viewBox: "0 0 24 24",
|
|
2303
2187
|
fill: "none",
|
|
2304
2188
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2305
|
-
children: /* @__PURE__ */
|
|
2189
|
+
children: /* @__PURE__ */ jsx46(
|
|
2306
2190
|
"path",
|
|
2307
2191
|
{
|
|
2308
2192
|
fillRule: "evenodd",
|
|
@@ -2316,23 +2200,23 @@ var SvgIconStrawberry = () => /* @__PURE__ */ jsx47(
|
|
|
2316
2200
|
var IconStrawberry_default = SvgIconStrawberry;
|
|
2317
2201
|
|
|
2318
2202
|
// src/components/icons/IconSupplier.tsx
|
|
2319
|
-
import { jsx as
|
|
2203
|
+
import { jsx as jsx47, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2320
2204
|
var SvgIconSupplier = (props) => /* @__PURE__ */ jsxs33("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2321
|
-
/* @__PURE__ */
|
|
2205
|
+
/* @__PURE__ */ jsx47(
|
|
2322
2206
|
"path",
|
|
2323
2207
|
{
|
|
2324
2208
|
className: "icon-supplier_svg__st0",
|
|
2325
2209
|
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"
|
|
2326
2210
|
}
|
|
2327
2211
|
),
|
|
2328
|
-
/* @__PURE__ */
|
|
2212
|
+
/* @__PURE__ */ jsx47(
|
|
2329
2213
|
"path",
|
|
2330
2214
|
{
|
|
2331
2215
|
className: "icon-supplier_svg__st0",
|
|
2332
2216
|
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"
|
|
2333
2217
|
}
|
|
2334
2218
|
),
|
|
2335
|
-
/* @__PURE__ */
|
|
2219
|
+
/* @__PURE__ */ jsx47(
|
|
2336
2220
|
"path",
|
|
2337
2221
|
{
|
|
2338
2222
|
className: "icon-supplier_svg__st0",
|
|
@@ -2343,23 +2227,23 @@ var SvgIconSupplier = (props) => /* @__PURE__ */ jsxs33("svg", { viewBox: "0 0 5
|
|
|
2343
2227
|
var IconSupplier_default = SvgIconSupplier;
|
|
2344
2228
|
|
|
2345
2229
|
// src/components/icons/IconSupplierPrices.tsx
|
|
2346
|
-
import { jsx as
|
|
2230
|
+
import { jsx as jsx48, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2347
2231
|
var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2348
|
-
/* @__PURE__ */
|
|
2232
|
+
/* @__PURE__ */ jsx48(
|
|
2349
2233
|
"path",
|
|
2350
2234
|
{
|
|
2351
2235
|
className: "icon-supplier-prices_svg__st0",
|
|
2352
2236
|
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"
|
|
2353
2237
|
}
|
|
2354
2238
|
),
|
|
2355
|
-
/* @__PURE__ */
|
|
2239
|
+
/* @__PURE__ */ jsx48(
|
|
2356
2240
|
"path",
|
|
2357
2241
|
{
|
|
2358
2242
|
className: "icon-supplier-prices_svg__st0",
|
|
2359
2243
|
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"
|
|
2360
2244
|
}
|
|
2361
2245
|
),
|
|
2362
|
-
/* @__PURE__ */
|
|
2246
|
+
/* @__PURE__ */ jsx48(
|
|
2363
2247
|
"path",
|
|
2364
2248
|
{
|
|
2365
2249
|
className: "icon-supplier-prices_svg__st0",
|
|
@@ -2367,21 +2251,21 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox:
|
|
|
2367
2251
|
}
|
|
2368
2252
|
),
|
|
2369
2253
|
/* @__PURE__ */ jsxs34("g", { children: [
|
|
2370
|
-
/* @__PURE__ */
|
|
2254
|
+
/* @__PURE__ */ jsx48(
|
|
2371
2255
|
"path",
|
|
2372
2256
|
{
|
|
2373
2257
|
className: "icon-supplier-prices_svg__st0",
|
|
2374
2258
|
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"
|
|
2375
2259
|
}
|
|
2376
2260
|
),
|
|
2377
|
-
/* @__PURE__ */
|
|
2261
|
+
/* @__PURE__ */ jsx48(
|
|
2378
2262
|
"path",
|
|
2379
2263
|
{
|
|
2380
2264
|
className: "icon-supplier-prices_svg__st0",
|
|
2381
2265
|
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"
|
|
2382
2266
|
}
|
|
2383
2267
|
),
|
|
2384
|
-
/* @__PURE__ */
|
|
2268
|
+
/* @__PURE__ */ jsx48(
|
|
2385
2269
|
"path",
|
|
2386
2270
|
{
|
|
2387
2271
|
className: "icon-supplier-prices_svg__st0",
|
|
@@ -2393,18 +2277,18 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox:
|
|
|
2393
2277
|
var IconSupplierPrices_default = SvgIconSupplierPrices;
|
|
2394
2278
|
|
|
2395
2279
|
// src/components/icons/IconUserManagement.tsx
|
|
2396
|
-
import { jsx as
|
|
2397
|
-
var SvgIconUserManagement = () => /* @__PURE__ */
|
|
2398
|
-
/* @__PURE__ */
|
|
2399
|
-
/* @__PURE__ */
|
|
2400
|
-
/* @__PURE__ */
|
|
2401
|
-
/* @__PURE__ */
|
|
2280
|
+
import { jsx as jsx49, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
2281
|
+
var SvgIconUserManagement = () => /* @__PURE__ */ jsx49("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 55 56.7", children: /* @__PURE__ */ jsx49("g", { children: /* @__PURE__ */ jsxs35("g", { id: "Layer_1", children: [
|
|
2282
|
+
/* @__PURE__ */ jsx49("path", { d: "M672.6,1136.6c-1.6,0-3,1.3-3,2.9s1.4,3,3,3,3-1.4,2.9-2.9c0-1.6-1.3-3-2.9-3h0Z" }),
|
|
2283
|
+
/* @__PURE__ */ jsx49("path", { d: "M683.4,1136.5c-1.7,0-3,1.4-3,3s1.4,3,3,3,3-1.4,3-3.1-1.4-2.9-3-2.9h0Z" }),
|
|
2284
|
+
/* @__PURE__ */ jsx49("path", { d: "M672.4,1130.2h.9v1.2c0,1.1.9,2,2,2h6.9c-1.6.3-3,1.3-4,2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7s-2.3.3-3.3.9v-3.7h0c0,0,.2-.2.7-.3M687.2,1133.4v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4,0,.7,0,1.2-.2.2,0,.3,0,.3,0M688,1118.3c-.7,0-1.3.5-1.4,1.1v12.1c-.4,0-.7,0-.9,0-.4,0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1,0-1.6.3-1.6,1.6v8.1c-1.6.2-2.4,1-2.4,2.3v6.8c0,.2.2.7.5.7s.3,0,.5,0,.4,0,.6-.4c.8-1.6,2.1-2.4,3.8-2.4s2.9.8,3.7,2.3c0,.3.3.5.7.5h1.9c.5,0,.6-.2.8-.6.8-1.5,2.1-2.3,3.8-2.3s2.9.9,3.7,2.4c.5.9.5,1.8.2,3h5.4c.7,0,1.1-.6,1.1-1,0-.7-.3-1.1-.9-1.4-.2,0-.6,0-.8,0h-2.9v-18.7c-.3-.8-.7-1.2-1.4-1.2h0ZM672.4,1128.2v-7.2h5.5c0,0,.3,0,.3.3,1.4,3.3,2.9,6.6,4.2,9.9h0c-2.3,0-4.7,0-7.2,0v-2.3c0-.8,0-.9-.9-.9-.7,0-1.3,0-1.9,0h0Z" }),
|
|
2285
|
+
/* @__PURE__ */ jsx49("path", { d: "M29.3,26.7c1-1.3,1.5-3,1.5-4.6s-.5-3.3-1.5-4.6c.9-.6,2-.9,3.1-.9,1.5,0,2.9.6,3.9,1.6,1,1,1.6,2.5,1.6,3.9s-.6,2.9-1.6,3.9-2.5,1.6-3.9,1.6c-1.1,0-2.2-.3-3.1-.9ZM17.3,22.1c0-1.1.3-2.2.9-3.1.6-.9,1.5-1.6,2.5-2,1-.4,2.1-.5,3.2-.3,1.1.2,2.1.7,2.8,1.5.8.8,1.3,1.8,1.5,2.8.2,1.1.1,2.2-.3,3.2-.4,1-1.1,1.9-2,2.5-.9.6-2,.9-3.1.9s-2.9-.6-3.9-1.6-1.6-2.5-1.6-3.9ZM20.5,22.1c0,.5.1.9.4,1.3.3.4.6.7,1.1.9.4.2.9.2,1.4.1.5,0,.9-.3,1.2-.7.3-.3.6-.8.7-1.2,0-.5,0-.9-.1-1.4-.2-.4-.5-.8-.9-1.1-.4-.3-.9-.4-1.3-.4s-1.2.3-1.7.7c-.4.4-.7,1.1-.7,1.7ZM34,37.1v3.2H11.8v-3.2s0-6.3,11.1-6.3,11.1,6.3,11.1,6.3ZM30.8,37.1c-.2-1.2-2.1-3.2-7.9-3.2s-7.8,2.1-7.9,3.2M33.9,30.8c1,.8,1.8,1.7,2.3,2.8.6,1.1.9,2.3.9,3.5v3.2h6.3v-3.2s0-5.8-9.6-6.3h0Z" })
|
|
2402
2286
|
] }) }) });
|
|
2403
2287
|
var IconUserManagement_default = SvgIconUserManagement;
|
|
2404
2288
|
|
|
2405
2289
|
// src/components/icons/IconVkc.tsx
|
|
2406
|
-
import { jsx as
|
|
2407
|
-
var SvgIconVkc = (props) => /* @__PURE__ */
|
|
2290
|
+
import { jsx as jsx50 } from "react/jsx-runtime";
|
|
2291
|
+
var SvgIconVkc = (props) => /* @__PURE__ */ jsx50("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx50(
|
|
2408
2292
|
"path",
|
|
2409
2293
|
{
|
|
2410
2294
|
className: "icon-vkc_svg__st0",
|
|
@@ -2414,16 +2298,16 @@ var SvgIconVkc = (props) => /* @__PURE__ */ jsx51("svg", { viewBox: "0 0 55 56.7
|
|
|
2414
2298
|
var IconVkc_default = SvgIconVkc;
|
|
2415
2299
|
|
|
2416
2300
|
// src/components/icons/SamsaraLogo.tsx
|
|
2417
|
-
import { jsx as
|
|
2301
|
+
import { jsx as jsx51, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
2418
2302
|
var SvgSamsaraLogo = (props) => /* @__PURE__ */ jsxs36("svg", { viewBox: "0 0 36 52.4", ...props, children: [
|
|
2419
|
-
/* @__PURE__ */
|
|
2303
|
+
/* @__PURE__ */ jsx51(
|
|
2420
2304
|
"path",
|
|
2421
2305
|
{
|
|
2422
2306
|
className: "samsara_logo_svg__st0",
|
|
2423
2307
|
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"
|
|
2424
2308
|
}
|
|
2425
2309
|
),
|
|
2426
|
-
/* @__PURE__ */
|
|
2310
|
+
/* @__PURE__ */ jsx51(
|
|
2427
2311
|
"path",
|
|
2428
2312
|
{
|
|
2429
2313
|
className: "samsara_logo_svg__st0",
|
|
@@ -2476,8 +2360,8 @@ var icons = {
|
|
|
2476
2360
|
var icons_default = icons;
|
|
2477
2361
|
|
|
2478
2362
|
// src/components/icons/IconAirplane.tsx
|
|
2479
|
-
import { jsx as
|
|
2480
|
-
var SvgIconAirplane = (props) => /* @__PURE__ */
|
|
2363
|
+
import { jsx as jsx52 } from "react/jsx-runtime";
|
|
2364
|
+
var SvgIconAirplane = (props) => /* @__PURE__ */ jsx52(
|
|
2481
2365
|
"svg",
|
|
2482
2366
|
{
|
|
2483
2367
|
width: "24",
|
|
@@ -2486,7 +2370,7 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ jsx53(
|
|
|
2486
2370
|
fill: "none",
|
|
2487
2371
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2488
2372
|
...props,
|
|
2489
|
-
children: /* @__PURE__ */
|
|
2373
|
+
children: /* @__PURE__ */ jsx52(
|
|
2490
2374
|
"path",
|
|
2491
2375
|
{
|
|
2492
2376
|
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",
|
|
@@ -2498,8 +2382,8 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ jsx53(
|
|
|
2498
2382
|
var IconAirplane_default = SvgIconAirplane;
|
|
2499
2383
|
|
|
2500
2384
|
// src/components/icons/IconBicycle.tsx
|
|
2501
|
-
import { jsx as
|
|
2502
|
-
var SvgIconBicycle = () => /* @__PURE__ */
|
|
2385
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
|
2386
|
+
var SvgIconBicycle = () => /* @__PURE__ */ jsx53(
|
|
2503
2387
|
"svg",
|
|
2504
2388
|
{
|
|
2505
2389
|
width: "24",
|
|
@@ -2507,7 +2391,7 @@ var SvgIconBicycle = () => /* @__PURE__ */ jsx54(
|
|
|
2507
2391
|
viewBox: "0 0 24 24",
|
|
2508
2392
|
fill: "none",
|
|
2509
2393
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2510
|
-
children: /* @__PURE__ */
|
|
2394
|
+
children: /* @__PURE__ */ jsx53(
|
|
2511
2395
|
"path",
|
|
2512
2396
|
{
|
|
2513
2397
|
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",
|
|
@@ -2519,8 +2403,8 @@ var SvgIconBicycle = () => /* @__PURE__ */ jsx54(
|
|
|
2519
2403
|
var IconBicycle_default = SvgIconBicycle;
|
|
2520
2404
|
|
|
2521
2405
|
// src/components/icons/IconBus.tsx
|
|
2522
|
-
import { jsx as
|
|
2523
|
-
var SvgIconBus = () => /* @__PURE__ */
|
|
2406
|
+
import { jsx as jsx54 } from "react/jsx-runtime";
|
|
2407
|
+
var SvgIconBus = () => /* @__PURE__ */ jsx54(
|
|
2524
2408
|
"svg",
|
|
2525
2409
|
{
|
|
2526
2410
|
width: "24",
|
|
@@ -2528,7 +2412,7 @@ var SvgIconBus = () => /* @__PURE__ */ jsx55(
|
|
|
2528
2412
|
viewBox: "0 0 24 24",
|
|
2529
2413
|
fill: "none",
|
|
2530
2414
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2531
|
-
children: /* @__PURE__ */
|
|
2415
|
+
children: /* @__PURE__ */ jsx54(
|
|
2532
2416
|
"path",
|
|
2533
2417
|
{
|
|
2534
2418
|
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",
|
|
@@ -2540,8 +2424,8 @@ var SvgIconBus = () => /* @__PURE__ */ jsx55(
|
|
|
2540
2424
|
var IconBus_default = SvgIconBus;
|
|
2541
2425
|
|
|
2542
2426
|
// src/components/icons/IconCar.tsx
|
|
2543
|
-
import { jsx as
|
|
2544
|
-
var SvgIconCar = () => /* @__PURE__ */
|
|
2427
|
+
import { jsx as jsx55 } from "react/jsx-runtime";
|
|
2428
|
+
var SvgIconCar = () => /* @__PURE__ */ jsx55(
|
|
2545
2429
|
"svg",
|
|
2546
2430
|
{
|
|
2547
2431
|
width: "24",
|
|
@@ -2549,7 +2433,7 @@ var SvgIconCar = () => /* @__PURE__ */ jsx56(
|
|
|
2549
2433
|
viewBox: "0 0 24 24",
|
|
2550
2434
|
fill: "none",
|
|
2551
2435
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2552
|
-
children: /* @__PURE__ */
|
|
2436
|
+
children: /* @__PURE__ */ jsx55(
|
|
2553
2437
|
"path",
|
|
2554
2438
|
{
|
|
2555
2439
|
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",
|
|
@@ -2561,8 +2445,8 @@ var SvgIconCar = () => /* @__PURE__ */ jsx56(
|
|
|
2561
2445
|
var IconCar_default = SvgIconCar;
|
|
2562
2446
|
|
|
2563
2447
|
// src/components/icons/IconFork.tsx
|
|
2564
|
-
import { jsx as
|
|
2565
|
-
var SvgIconFork = () => /* @__PURE__ */
|
|
2448
|
+
import { jsx as jsx56 } from "react/jsx-runtime";
|
|
2449
|
+
var SvgIconFork = () => /* @__PURE__ */ jsx56(
|
|
2566
2450
|
"svg",
|
|
2567
2451
|
{
|
|
2568
2452
|
width: "20",
|
|
@@ -2570,7 +2454,7 @@ var SvgIconFork = () => /* @__PURE__ */ jsx57(
|
|
|
2570
2454
|
viewBox: "0 0 20 20",
|
|
2571
2455
|
fill: "none",
|
|
2572
2456
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2573
|
-
children: /* @__PURE__ */
|
|
2457
|
+
children: /* @__PURE__ */ jsx56(
|
|
2574
2458
|
"path",
|
|
2575
2459
|
{
|
|
2576
2460
|
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",
|
|
@@ -2582,8 +2466,8 @@ var SvgIconFork = () => /* @__PURE__ */ jsx57(
|
|
|
2582
2466
|
var IconFork_default = SvgIconFork;
|
|
2583
2467
|
|
|
2584
2468
|
// src/components/icons/IconHeart.tsx
|
|
2585
|
-
import { jsx as
|
|
2586
|
-
var SvgIconHeart = () => /* @__PURE__ */
|
|
2469
|
+
import { jsx as jsx57 } from "react/jsx-runtime";
|
|
2470
|
+
var SvgIconHeart = () => /* @__PURE__ */ jsx57(
|
|
2587
2471
|
"svg",
|
|
2588
2472
|
{
|
|
2589
2473
|
width: "20",
|
|
@@ -2591,7 +2475,7 @@ var SvgIconHeart = () => /* @__PURE__ */ jsx58(
|
|
|
2591
2475
|
viewBox: "0 0 20 20",
|
|
2592
2476
|
fill: "none",
|
|
2593
2477
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2594
|
-
children: /* @__PURE__ */
|
|
2478
|
+
children: /* @__PURE__ */ jsx57(
|
|
2595
2479
|
"path",
|
|
2596
2480
|
{
|
|
2597
2481
|
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",
|
|
@@ -2603,8 +2487,8 @@ var SvgIconHeart = () => /* @__PURE__ */ jsx58(
|
|
|
2603
2487
|
var IconHeart_default = SvgIconHeart;
|
|
2604
2488
|
|
|
2605
2489
|
// src/components/icons/IconKnife.tsx
|
|
2606
|
-
import { jsx as
|
|
2607
|
-
var SvgIconKnife = (props) => /* @__PURE__ */
|
|
2490
|
+
import { jsx as jsx58 } from "react/jsx-runtime";
|
|
2491
|
+
var SvgIconKnife = (props) => /* @__PURE__ */ jsx58(
|
|
2608
2492
|
"svg",
|
|
2609
2493
|
{
|
|
2610
2494
|
width: "20",
|
|
@@ -2613,7 +2497,7 @@ var SvgIconKnife = (props) => /* @__PURE__ */ jsx59(
|
|
|
2613
2497
|
fill: "none",
|
|
2614
2498
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2615
2499
|
...props,
|
|
2616
|
-
children: /* @__PURE__ */
|
|
2500
|
+
children: /* @__PURE__ */ jsx58(
|
|
2617
2501
|
"path",
|
|
2618
2502
|
{
|
|
2619
2503
|
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",
|
|
@@ -2625,8 +2509,8 @@ var SvgIconKnife = (props) => /* @__PURE__ */ jsx59(
|
|
|
2625
2509
|
var IconKnife_default = SvgIconKnife;
|
|
2626
2510
|
|
|
2627
2511
|
// src/components/icons/IconSpoon.tsx
|
|
2628
|
-
import { jsx as
|
|
2629
|
-
var SvgIconSpoon = () => /* @__PURE__ */
|
|
2512
|
+
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
2513
|
+
var SvgIconSpoon = () => /* @__PURE__ */ jsx59(
|
|
2630
2514
|
"svg",
|
|
2631
2515
|
{
|
|
2632
2516
|
width: "20",
|
|
@@ -2634,7 +2518,7 @@ var SvgIconSpoon = () => /* @__PURE__ */ jsx60(
|
|
|
2634
2518
|
viewBox: "0 0 20 20",
|
|
2635
2519
|
fill: "none",
|
|
2636
2520
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2637
|
-
children: /* @__PURE__ */
|
|
2521
|
+
children: /* @__PURE__ */ jsx59(
|
|
2638
2522
|
"path",
|
|
2639
2523
|
{
|
|
2640
2524
|
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",
|
|
@@ -2646,8 +2530,8 @@ var SvgIconSpoon = () => /* @__PURE__ */ jsx60(
|
|
|
2646
2530
|
var IconSpoon_default = SvgIconSpoon;
|
|
2647
2531
|
|
|
2648
2532
|
// src/resources/icons/BulkIcon.tsx
|
|
2649
|
-
import { jsx as
|
|
2650
|
-
var BulkIcon = (props) => /* @__PURE__ */
|
|
2533
|
+
import { jsx as jsx60 } from "react/jsx-runtime";
|
|
2534
|
+
var BulkIcon = (props) => /* @__PURE__ */ jsx60(
|
|
2651
2535
|
"svg",
|
|
2652
2536
|
{
|
|
2653
2537
|
height: 24,
|
|
@@ -2655,13 +2539,13 @@ var BulkIcon = (props) => /* @__PURE__ */ jsx61(
|
|
|
2655
2539
|
width: 24,
|
|
2656
2540
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2657
2541
|
...props,
|
|
2658
|
-
children: /* @__PURE__ */
|
|
2542
|
+
children: /* @__PURE__ */ jsx60("path", { d: "M4 3h14a2 2 0 012 2v7.08a6.01 6.01 0 00-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 01-2-2V5c0-1.1.9-2 2-2zm0 4v4h6V7H4zm8 0v4h6V7h-6zm-8 6v4h6v-4H4zM18 19h-2l3 3 3-3h-2v-4h-2v4z" })
|
|
2659
2543
|
}
|
|
2660
2544
|
);
|
|
2661
2545
|
var BulkIcon_default = BulkIcon;
|
|
2662
2546
|
|
|
2663
2547
|
// src/components/Buttons/RoundButton/RoundButton.tsx
|
|
2664
|
-
import { jsx as
|
|
2548
|
+
import { jsx as jsx61 } from "react/jsx-runtime";
|
|
2665
2549
|
var useStyles11 = makeStyles11()(() => ({
|
|
2666
2550
|
base: {
|
|
2667
2551
|
backgroundColor: "transparent",
|
|
@@ -2779,48 +2663,48 @@ var RoundButton = ({
|
|
|
2779
2663
|
const { classes, cx } = useStyles11();
|
|
2780
2664
|
const iconSize = size === "small" ? "small" : "medium";
|
|
2781
2665
|
const iconComponentMap = {
|
|
2782
|
-
add: /* @__PURE__ */
|
|
2783
|
-
apps: /* @__PURE__ */
|
|
2784
|
-
arrowBack: /* @__PURE__ */
|
|
2785
|
-
arrowForward: /* @__PURE__ */
|
|
2786
|
-
avocado: /* @__PURE__ */
|
|
2787
|
-
backspaceOutlined: /* @__PURE__ */
|
|
2788
|
-
banana: /* @__PURE__ */
|
|
2789
|
-
block: /* @__PURE__ */
|
|
2790
|
-
bulk: /* @__PURE__ */
|
|
2791
|
-
callSplit: /* @__PURE__ */
|
|
2792
|
-
chevronRight: /* @__PURE__ */
|
|
2793
|
-
chevronUp: /* @__PURE__ */
|
|
2794
|
-
chevronDown: /* @__PURE__ */
|
|
2795
|
-
close: /* @__PURE__ */
|
|
2796
|
-
delete: /* @__PURE__ */
|
|
2797
|
-
done: /* @__PURE__ */
|
|
2798
|
-
edit: /* @__PURE__ */
|
|
2799
|
-
email: /* @__PURE__ */
|
|
2800
|
-
grape: /* @__PURE__ */
|
|
2801
|
-
groupAdd: /* @__PURE__ */
|
|
2802
|
-
history: /* @__PURE__ */
|
|
2803
|
-
menu: /* @__PURE__ */
|
|
2804
|
-
threeDots: /* @__PURE__ */
|
|
2805
|
-
notes: /* @__PURE__ */
|
|
2806
|
-
refresh: /* @__PURE__ */
|
|
2807
|
-
remove: /* @__PURE__ */
|
|
2808
|
-
search: /* @__PURE__ */
|
|
2809
|
-
send: /* @__PURE__ */
|
|
2810
|
-
strawberry: /* @__PURE__ */
|
|
2811
|
-
thumbDown: /* @__PURE__ */
|
|
2812
|
-
thumbUp: /* @__PURE__ */
|
|
2813
|
-
undo: /* @__PURE__ */
|
|
2814
|
-
play: /* @__PURE__ */
|
|
2815
|
-
snail: /* @__PURE__ */
|
|
2816
|
-
bus: /* @__PURE__ */
|
|
2817
|
-
spoon: /* @__PURE__ */
|
|
2818
|
-
fork: /* @__PURE__ */
|
|
2819
|
-
car: /* @__PURE__ */
|
|
2820
|
-
knife: /* @__PURE__ */
|
|
2821
|
-
bicycle: /* @__PURE__ */
|
|
2822
|
-
heart: /* @__PURE__ */
|
|
2823
|
-
airplane: /* @__PURE__ */
|
|
2666
|
+
add: /* @__PURE__ */ jsx61(Add3, { fontSize: iconSize }),
|
|
2667
|
+
apps: /* @__PURE__ */ jsx61(Apps, { fontSize: iconSize }),
|
|
2668
|
+
arrowBack: /* @__PURE__ */ jsx61(ArrowBack, { fontSize: iconSize }),
|
|
2669
|
+
arrowForward: /* @__PURE__ */ jsx61(ArrowForward, { fontSize: iconSize }),
|
|
2670
|
+
avocado: /* @__PURE__ */ jsx61(IconAvocado_default, {}),
|
|
2671
|
+
backspaceOutlined: /* @__PURE__ */ jsx61(BackspaceOutlined, { fontSize: iconSize }),
|
|
2672
|
+
banana: /* @__PURE__ */ jsx61(IconBanana_default, {}),
|
|
2673
|
+
block: /* @__PURE__ */ jsx61(Block, { fontSize: iconSize }),
|
|
2674
|
+
bulk: /* @__PURE__ */ jsx61(BulkIcon_default, { fill: colors.contrast }),
|
|
2675
|
+
callSplit: /* @__PURE__ */ jsx61(CallSplit, { fontSize: iconSize }),
|
|
2676
|
+
chevronRight: /* @__PURE__ */ jsx61(ChevronRight2, { fontSize: iconSize }),
|
|
2677
|
+
chevronUp: /* @__PURE__ */ jsx61(KeyboardArrowUp, { fontSize: iconSize }),
|
|
2678
|
+
chevronDown: /* @__PURE__ */ jsx61(KeyboardArrowDown, { fontSize: iconSize }),
|
|
2679
|
+
close: /* @__PURE__ */ jsx61(Close, { fontSize: iconSize }),
|
|
2680
|
+
delete: /* @__PURE__ */ jsx61(Delete2, { fontSize: iconSize, fill: colors.neutral800 }),
|
|
2681
|
+
done: /* @__PURE__ */ jsx61(Done, { fontSize: iconSize }),
|
|
2682
|
+
edit: /* @__PURE__ */ jsx61(Edit2, { fontSize: iconSize }),
|
|
2683
|
+
email: /* @__PURE__ */ jsx61(Email, { fontSize: iconSize }),
|
|
2684
|
+
grape: /* @__PURE__ */ jsx61(IconGrape_default, {}),
|
|
2685
|
+
groupAdd: /* @__PURE__ */ jsx61(GroupAdd, { fontSize: iconSize }),
|
|
2686
|
+
history: /* @__PURE__ */ jsx61(History, { fontSize: iconSize }),
|
|
2687
|
+
menu: /* @__PURE__ */ jsx61(Menu, { fontSize: iconSize }),
|
|
2688
|
+
threeDots: /* @__PURE__ */ jsx61(MoreHoriz, { fontSize: iconSize, color: iconColor }),
|
|
2689
|
+
notes: /* @__PURE__ */ jsx61(Comment, { fontSize: iconSize }),
|
|
2690
|
+
refresh: /* @__PURE__ */ jsx61(Refresh2, { fontSize: iconSize }),
|
|
2691
|
+
remove: /* @__PURE__ */ jsx61(Remove, { fontSize: iconSize }),
|
|
2692
|
+
search: /* @__PURE__ */ jsx61(Search, { fontSize: iconSize }),
|
|
2693
|
+
send: /* @__PURE__ */ jsx61(Send, { fontSize: iconSize }),
|
|
2694
|
+
strawberry: /* @__PURE__ */ jsx61(IconStrawberry_default, {}),
|
|
2695
|
+
thumbDown: /* @__PURE__ */ jsx61(ThumbDown, { fontSize: iconSize }),
|
|
2696
|
+
thumbUp: /* @__PURE__ */ jsx61(ThumbUp, { fontSize: iconSize }),
|
|
2697
|
+
undo: /* @__PURE__ */ jsx61(Undo, { fontSize: iconSize }),
|
|
2698
|
+
play: /* @__PURE__ */ jsx61(PlayArrowRounded, { fontSize: iconSize }),
|
|
2699
|
+
snail: /* @__PURE__ */ jsx61(icons_default.SvgIconSnail, { fontSize: iconSize, fill: colors.muiPrimary }),
|
|
2700
|
+
bus: /* @__PURE__ */ jsx61(IconBus_default, {}),
|
|
2701
|
+
spoon: /* @__PURE__ */ jsx61(IconSpoon_default, {}),
|
|
2702
|
+
fork: /* @__PURE__ */ jsx61(IconFork_default, {}),
|
|
2703
|
+
car: /* @__PURE__ */ jsx61(IconCar_default, {}),
|
|
2704
|
+
knife: /* @__PURE__ */ jsx61(IconKnife_default, {}),
|
|
2705
|
+
bicycle: /* @__PURE__ */ jsx61(IconBicycle_default, {}),
|
|
2706
|
+
heart: /* @__PURE__ */ jsx61(IconHeart_default, {}),
|
|
2707
|
+
airplane: /* @__PURE__ */ jsx61(IconAirplane_default, {})
|
|
2824
2708
|
};
|
|
2825
2709
|
const filteredSize = size === "double" ? void 0 : size;
|
|
2826
2710
|
const handleClick = (e) => {
|
|
@@ -2828,7 +2712,7 @@ var RoundButton = ({
|
|
|
2828
2712
|
onClick(e);
|
|
2829
2713
|
}
|
|
2830
2714
|
};
|
|
2831
|
-
const Button14 = /* @__PURE__ */
|
|
2715
|
+
const Button14 = /* @__PURE__ */ jsx61(
|
|
2832
2716
|
Fab,
|
|
2833
2717
|
{
|
|
2834
2718
|
className: cx(
|
|
@@ -2852,7 +2736,7 @@ var RoundButton = ({
|
|
|
2852
2736
|
children: icon ? iconComponentMap[icon] : children || ""
|
|
2853
2737
|
}
|
|
2854
2738
|
);
|
|
2855
|
-
return tooltip ? /* @__PURE__ */
|
|
2739
|
+
return tooltip ? /* @__PURE__ */ jsx61(Tooltip2, { title: tooltip, children: Button14 }) : Button14;
|
|
2856
2740
|
};
|
|
2857
2741
|
var RoundButton_default = RoundButton;
|
|
2858
2742
|
|
|
@@ -2860,7 +2744,7 @@ var RoundButton_default = RoundButton;
|
|
|
2860
2744
|
import { memo as memo8 } from "react";
|
|
2861
2745
|
import { Pin } from "mdi-material-ui";
|
|
2862
2746
|
import { makeStyles as makeStyles12 } from "tss-react/mui";
|
|
2863
|
-
import { jsx as
|
|
2747
|
+
import { jsx as jsx62 } from "react/jsx-runtime";
|
|
2864
2748
|
var useStyles12 = makeStyles12()(() => ({
|
|
2865
2749
|
root: {
|
|
2866
2750
|
opacity: 0.5
|
|
@@ -2871,14 +2755,14 @@ var useStyles12 = makeStyles12()(() => ({
|
|
|
2871
2755
|
}));
|
|
2872
2756
|
var PinButton = () => {
|
|
2873
2757
|
const { classes } = useStyles12();
|
|
2874
|
-
return /* @__PURE__ */
|
|
2758
|
+
return /* @__PURE__ */ jsx62(Pin, { className: classes.root });
|
|
2875
2759
|
};
|
|
2876
2760
|
var Pin_default = memo8(PinButton);
|
|
2877
2761
|
|
|
2878
2762
|
// src/components/Buttons/PinnedApp.tsx
|
|
2879
2763
|
import { Fab as Fab2, Icon } from "@mui/material";
|
|
2880
2764
|
import { makeStyles as makeStyles13 } from "tss-react/mui";
|
|
2881
|
-
import { jsx as
|
|
2765
|
+
import { jsx as jsx63 } from "react/jsx-runtime";
|
|
2882
2766
|
var useStyles13 = makeStyles13()((theme) => ({
|
|
2883
2767
|
root: {
|
|
2884
2768
|
"& > *": {
|
|
@@ -2892,12 +2776,12 @@ var useStyles13 = makeStyles13()((theme) => ({
|
|
|
2892
2776
|
function ActionButton(props) {
|
|
2893
2777
|
const { app } = props;
|
|
2894
2778
|
const { classes } = useStyles13();
|
|
2895
|
-
return /* @__PURE__ */
|
|
2779
|
+
return /* @__PURE__ */ jsx63("div", { className: classes.root, children: /* @__PURE__ */ jsx63(Fab2, { color: "primary", "aria-label": "add", children: /* @__PURE__ */ jsx63(Icon, { children: app.icon }) }) });
|
|
2896
2780
|
}
|
|
2897
2781
|
|
|
2898
2782
|
// src/components/CompanyLogo/CompanyLogo.tsx
|
|
2899
2783
|
import { makeStyles as makeStyles14 } from "tss-react/mui";
|
|
2900
|
-
import { jsx as
|
|
2784
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
2901
2785
|
var useStyles14 = makeStyles14()((theme, { imageLogoDarkSmall, imageLogoLightSmall }) => ({
|
|
2902
2786
|
logoSmall: {
|
|
2903
2787
|
height: 46,
|
|
@@ -2930,14 +2814,14 @@ var CompanyLogo = ({
|
|
|
2930
2814
|
[classes.logoLight]: color === "light",
|
|
2931
2815
|
[classes.logoDark]: color === "dark"
|
|
2932
2816
|
});
|
|
2933
|
-
return /* @__PURE__ */
|
|
2817
|
+
return /* @__PURE__ */ jsx64("div", { className });
|
|
2934
2818
|
};
|
|
2935
2819
|
var CompanyLogo_default = CompanyLogo;
|
|
2936
2820
|
|
|
2937
2821
|
// src/components/ConfirmationDialog/ConfirmationDialog.tsx
|
|
2938
|
-
import { Box as
|
|
2822
|
+
import { Box as Box8, Dialog as Dialog3, DialogActions as DialogActions2, Divider, Typography as Typography6 } from "@mui/material";
|
|
2939
2823
|
import { makeStyles as makeStyles15 } from "tss-react/mui";
|
|
2940
|
-
import { jsx as
|
|
2824
|
+
import { jsx as jsx65, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2941
2825
|
var useStyles15 = makeStyles15()((theme) => ({
|
|
2942
2826
|
content: {
|
|
2943
2827
|
width: "660px"
|
|
@@ -2975,15 +2859,15 @@ var ConfirmationDialog = ({
|
|
|
2975
2859
|
};
|
|
2976
2860
|
const contentComponent = () => {
|
|
2977
2861
|
if (typeof content === "string") {
|
|
2978
|
-
return /* @__PURE__ */
|
|
2862
|
+
return /* @__PURE__ */ jsx65(Typography6, { variant: "body1", children: content });
|
|
2979
2863
|
}
|
|
2980
2864
|
return content;
|
|
2981
2865
|
};
|
|
2982
2866
|
return /* @__PURE__ */ jsxs37(Dialog3, { onClose: closeModal, open: isOpen, maxWidth: "lg", children: [
|
|
2983
|
-
/* @__PURE__ */ jsxs37(
|
|
2984
|
-
/* @__PURE__ */
|
|
2985
|
-
/* @__PURE__ */
|
|
2986
|
-
|
|
2867
|
+
/* @__PURE__ */ jsxs37(Box8, { className: classes.content, children: [
|
|
2868
|
+
/* @__PURE__ */ jsx65(Typography6, { className: classes.title, variant: "h6", children: title }),
|
|
2869
|
+
/* @__PURE__ */ jsx65(
|
|
2870
|
+
Box8,
|
|
2987
2871
|
{
|
|
2988
2872
|
sx: {
|
|
2989
2873
|
display: "flex",
|
|
@@ -2995,9 +2879,9 @@ var ConfirmationDialog = ({
|
|
|
2995
2879
|
}
|
|
2996
2880
|
)
|
|
2997
2881
|
] }),
|
|
2998
|
-
/* @__PURE__ */
|
|
2882
|
+
/* @__PURE__ */ jsx65(Divider, {}),
|
|
2999
2883
|
/* @__PURE__ */ jsxs37(DialogActions2, { className: classes.footer, children: [
|
|
3000
|
-
!hideCancel && /* @__PURE__ */
|
|
2884
|
+
!hideCancel && /* @__PURE__ */ jsx65(
|
|
3001
2885
|
FilledButton_default,
|
|
3002
2886
|
{
|
|
3003
2887
|
className: classes.button,
|
|
@@ -3007,7 +2891,7 @@ var ConfirmationDialog = ({
|
|
|
3007
2891
|
onClick: closeModal
|
|
3008
2892
|
}
|
|
3009
2893
|
),
|
|
3010
|
-
!hideConfirm && /* @__PURE__ */
|
|
2894
|
+
!hideConfirm && /* @__PURE__ */ jsx65(
|
|
3011
2895
|
FilledButton_default,
|
|
3012
2896
|
{
|
|
3013
2897
|
className: classes.button,
|
|
@@ -3032,7 +2916,7 @@ var ConfirmationDialog_default = ConfirmationDialog;
|
|
|
3032
2916
|
// src/components/ControlledCheckbox/ControlledCheckbox.tsx
|
|
3033
2917
|
import { Controller } from "react-hook-form";
|
|
3034
2918
|
import { Checkbox, FormControlLabel, Tooltip as Tooltip3 } from "@mui/material";
|
|
3035
|
-
import { jsx as
|
|
2919
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
3036
2920
|
var ControlledCheckbox = ({
|
|
3037
2921
|
name,
|
|
3038
2922
|
label,
|
|
@@ -3044,18 +2928,18 @@ var ControlledCheckbox = ({
|
|
|
3044
2928
|
color,
|
|
3045
2929
|
handleChange,
|
|
3046
2930
|
disabled
|
|
3047
|
-
}) => /* @__PURE__ */
|
|
2931
|
+
}) => /* @__PURE__ */ jsx66(
|
|
3048
2932
|
Controller,
|
|
3049
2933
|
{
|
|
3050
2934
|
name,
|
|
3051
2935
|
control,
|
|
3052
2936
|
render: ({ field }) => {
|
|
3053
|
-
const checkbox = /* @__PURE__ */
|
|
2937
|
+
const checkbox = /* @__PURE__ */ jsx66(
|
|
3054
2938
|
FormControlLabel,
|
|
3055
2939
|
{
|
|
3056
2940
|
label,
|
|
3057
2941
|
className,
|
|
3058
|
-
control: /* @__PURE__ */
|
|
2942
|
+
control: /* @__PURE__ */ jsx66(
|
|
3059
2943
|
Checkbox,
|
|
3060
2944
|
{
|
|
3061
2945
|
...field,
|
|
@@ -3069,7 +2953,7 @@ var ControlledCheckbox = ({
|
|
|
3069
2953
|
)
|
|
3070
2954
|
}
|
|
3071
2955
|
);
|
|
3072
|
-
return tooltipDescription ? /* @__PURE__ */
|
|
2956
|
+
return tooltipDescription ? /* @__PURE__ */ jsx66(Tooltip3, { title: tooltipDescription, children: /* @__PURE__ */ jsx66("span", { children: checkbox }) }) : checkbox;
|
|
3073
2957
|
}
|
|
3074
2958
|
}
|
|
3075
2959
|
);
|
|
@@ -3077,9 +2961,9 @@ var ControlledCheckbox_default = ControlledCheckbox;
|
|
|
3077
2961
|
|
|
3078
2962
|
// src/components/ControlledNumberInput/ControlledNumberInput.tsx
|
|
3079
2963
|
import { Controller as Controller2 } from "react-hook-form";
|
|
3080
|
-
import { TextField
|
|
2964
|
+
import { TextField } from "@mui/material";
|
|
3081
2965
|
import { makeStyles as makeStyles16 } from "tss-react/mui";
|
|
3082
|
-
import { jsx as
|
|
2966
|
+
import { jsx as jsx67 } from "react/jsx-runtime";
|
|
3083
2967
|
var useStyles16 = makeStyles16()(() => ({
|
|
3084
2968
|
selectInput: {
|
|
3085
2969
|
minWidth: 122
|
|
@@ -3112,13 +2996,13 @@ var ControlledNumberInput = ({
|
|
|
3112
2996
|
"Backspace",
|
|
3113
2997
|
"Tab"
|
|
3114
2998
|
].includes(input.key) && input.preventDefault();
|
|
3115
|
-
return /* @__PURE__ */
|
|
2999
|
+
return /* @__PURE__ */ jsx67(
|
|
3116
3000
|
Controller2,
|
|
3117
3001
|
{
|
|
3118
3002
|
control,
|
|
3119
3003
|
name,
|
|
3120
|
-
render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */
|
|
3121
|
-
|
|
3004
|
+
render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */ jsx67(
|
|
3005
|
+
TextField,
|
|
3122
3006
|
{
|
|
3123
3007
|
variant: "standard",
|
|
3124
3008
|
className: className || classes.selectInput,
|
|
@@ -3157,13 +3041,13 @@ import {
|
|
|
3157
3041
|
KeyboardArrowUp as KeyboardArrowUpIcon
|
|
3158
3042
|
} from "@mui/icons-material";
|
|
3159
3043
|
import {
|
|
3160
|
-
Box as
|
|
3044
|
+
Box as Box9,
|
|
3161
3045
|
IconButton,
|
|
3162
3046
|
InputAdornment,
|
|
3163
|
-
TextField as
|
|
3047
|
+
TextField as TextField2
|
|
3164
3048
|
} from "@mui/material";
|
|
3165
3049
|
import { makeStyles as makeStyles17 } from "tss-react/mui";
|
|
3166
|
-
import { jsx as
|
|
3050
|
+
import { jsx as jsx68, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
3167
3051
|
var convertUnderscoreToHyphen = (str) => str.replace(/_/g, "-");
|
|
3168
3052
|
var useStyles17 = makeStyles17()((theme) => ({
|
|
3169
3053
|
textFieldButtons: {
|
|
@@ -3264,18 +3148,18 @@ var ControlledNumericField = ({
|
|
|
3264
3148
|
decrementValue(field)();
|
|
3265
3149
|
}
|
|
3266
3150
|
};
|
|
3267
|
-
return /* @__PURE__ */
|
|
3268
|
-
|
|
3151
|
+
return /* @__PURE__ */ jsx68(
|
|
3152
|
+
Box9,
|
|
3269
3153
|
{
|
|
3270
3154
|
className,
|
|
3271
3155
|
"data-testid": dataTestId || `${convertUnderscoreToHyphen(fieldName)}`,
|
|
3272
|
-
children: /* @__PURE__ */
|
|
3156
|
+
children: /* @__PURE__ */ jsx68(
|
|
3273
3157
|
Controller3,
|
|
3274
3158
|
{
|
|
3275
3159
|
control,
|
|
3276
3160
|
name: fieldName,
|
|
3277
|
-
render: ({ field, fieldState }) => /* @__PURE__ */
|
|
3278
|
-
|
|
3161
|
+
render: ({ field, fieldState }) => /* @__PURE__ */ jsx68(
|
|
3162
|
+
TextField2,
|
|
3279
3163
|
{
|
|
3280
3164
|
...field,
|
|
3281
3165
|
type: "text",
|
|
@@ -3309,25 +3193,25 @@ var ControlledNumericField = ({
|
|
|
3309
3193
|
slotProps: {
|
|
3310
3194
|
htmlInput: { min, max, step },
|
|
3311
3195
|
input: {
|
|
3312
|
-
endAdornment: /* @__PURE__ */
|
|
3313
|
-
/* @__PURE__ */
|
|
3196
|
+
endAdornment: /* @__PURE__ */ jsx68(InputAdornment, { position: "end", children: /* @__PURE__ */ jsxs38(Box9, { className: classes.textFieldButtons, children: [
|
|
3197
|
+
/* @__PURE__ */ jsx68(
|
|
3314
3198
|
IconButton,
|
|
3315
3199
|
{
|
|
3316
3200
|
disableRipple: true,
|
|
3317
3201
|
className: classes.arrowButton,
|
|
3318
3202
|
onClick: incrementValue(field),
|
|
3319
3203
|
"data-testid": "arrow-up",
|
|
3320
|
-
children: /* @__PURE__ */
|
|
3204
|
+
children: /* @__PURE__ */ jsx68(KeyboardArrowUpIcon, { sx: { fontSize: 15 } })
|
|
3321
3205
|
}
|
|
3322
3206
|
),
|
|
3323
|
-
/* @__PURE__ */
|
|
3207
|
+
/* @__PURE__ */ jsx68(
|
|
3324
3208
|
IconButton,
|
|
3325
3209
|
{
|
|
3326
3210
|
disableRipple: true,
|
|
3327
3211
|
className: classes.arrowButton,
|
|
3328
3212
|
onClick: decrementValue(field),
|
|
3329
3213
|
"data-testid": "arrow-down",
|
|
3330
|
-
children: /* @__PURE__ */
|
|
3214
|
+
children: /* @__PURE__ */ jsx68(KeyboardArrowDownIcon, { sx: { fontSize: 15 } })
|
|
3331
3215
|
}
|
|
3332
3216
|
)
|
|
3333
3217
|
] }) })
|
|
@@ -3346,7 +3230,7 @@ var ControlledNumericField_default = ControlledNumericField;
|
|
|
3346
3230
|
import { Controller as Controller4 } from "react-hook-form";
|
|
3347
3231
|
import { FormControl, FormHelperText, InputLabel, Select } from "@mui/material";
|
|
3348
3232
|
import { makeStyles as makeStyles18 } from "tss-react/mui";
|
|
3349
|
-
import { jsx as
|
|
3233
|
+
import { jsx as jsx69, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
3350
3234
|
var useStyles18 = makeStyles18()(() => ({
|
|
3351
3235
|
selectInput: {
|
|
3352
3236
|
minWidth: 122
|
|
@@ -3363,7 +3247,7 @@ var ControlledSelectWithArray = ({
|
|
|
3363
3247
|
revalidateFormFunction
|
|
3364
3248
|
}) => {
|
|
3365
3249
|
const { classes } = useStyles18();
|
|
3366
|
-
return /* @__PURE__ */
|
|
3250
|
+
return /* @__PURE__ */ jsx69(
|
|
3367
3251
|
Controller4,
|
|
3368
3252
|
{
|
|
3369
3253
|
control,
|
|
@@ -3377,7 +3261,7 @@ var ControlledSelectWithArray = ({
|
|
|
3377
3261
|
className: className || classes.selectInput,
|
|
3378
3262
|
variant: "standard",
|
|
3379
3263
|
children: [
|
|
3380
|
-
/* @__PURE__ */
|
|
3264
|
+
/* @__PURE__ */ jsx69(InputLabel, { shrink: true, error: !!fieldState.error, children: label }),
|
|
3381
3265
|
/* @__PURE__ */ jsxs39(
|
|
3382
3266
|
Select,
|
|
3383
3267
|
{
|
|
@@ -3397,12 +3281,12 @@ var ControlledSelectWithArray = ({
|
|
|
3397
3281
|
},
|
|
3398
3282
|
error: !!fieldState.error,
|
|
3399
3283
|
children: [
|
|
3400
|
-
/* @__PURE__ */
|
|
3401
|
-
options?.map((item) => /* @__PURE__ */
|
|
3284
|
+
/* @__PURE__ */ jsx69("option", { "aria-label": "None" }),
|
|
3285
|
+
options?.map((item) => /* @__PURE__ */ jsx69("option", { value: item, children: item }, item))
|
|
3402
3286
|
]
|
|
3403
3287
|
}
|
|
3404
3288
|
),
|
|
3405
|
-
/* @__PURE__ */
|
|
3289
|
+
/* @__PURE__ */ jsx69(FormHelperText, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3406
3290
|
]
|
|
3407
3291
|
}
|
|
3408
3292
|
)
|
|
@@ -3415,7 +3299,7 @@ var ControlledSelectWithArray_default = ControlledSelectWithArray;
|
|
|
3415
3299
|
import { Controller as Controller5 } from "react-hook-form";
|
|
3416
3300
|
import { FormControl as FormControl2, FormHelperText as FormHelperText2, InputLabel as InputLabel2, Select as Select2 } from "@mui/material";
|
|
3417
3301
|
import { makeStyles as makeStyles19 } from "tss-react/mui";
|
|
3418
|
-
import { jsx as
|
|
3302
|
+
import { jsx as jsx70, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
3419
3303
|
var useStyles19 = makeStyles19()(() => ({
|
|
3420
3304
|
selectInput: {
|
|
3421
3305
|
minWidth: 122
|
|
@@ -3433,7 +3317,7 @@ var ControlledSelectWithObject = ({
|
|
|
3433
3317
|
revalidateFormFunction
|
|
3434
3318
|
}) => {
|
|
3435
3319
|
const { classes } = useStyles19();
|
|
3436
|
-
return /* @__PURE__ */
|
|
3320
|
+
return /* @__PURE__ */ jsx70(
|
|
3437
3321
|
Controller5,
|
|
3438
3322
|
{
|
|
3439
3323
|
control,
|
|
@@ -3447,7 +3331,7 @@ var ControlledSelectWithObject = ({
|
|
|
3447
3331
|
className: className || classes.selectInput,
|
|
3448
3332
|
variant: "standard",
|
|
3449
3333
|
children: [
|
|
3450
|
-
/* @__PURE__ */
|
|
3334
|
+
/* @__PURE__ */ jsx70(InputLabel2, { error: !!fieldState.error, children: label }),
|
|
3451
3335
|
/* @__PURE__ */ jsxs40(
|
|
3452
3336
|
Select2,
|
|
3453
3337
|
{
|
|
@@ -3467,8 +3351,8 @@ var ControlledSelectWithObject = ({
|
|
|
3467
3351
|
},
|
|
3468
3352
|
error: !!fieldState.error,
|
|
3469
3353
|
children: [
|
|
3470
|
-
/* @__PURE__ */
|
|
3471
|
-
options?.map((option) => /* @__PURE__ */
|
|
3354
|
+
/* @__PURE__ */ jsx70("option", { "aria-label": "None" }),
|
|
3355
|
+
options?.map((option) => /* @__PURE__ */ jsx70(
|
|
3472
3356
|
"option",
|
|
3473
3357
|
{
|
|
3474
3358
|
disabled: listToDisableFromOptions ? listToDisableFromOptions.includes(option.value) : false,
|
|
@@ -3480,7 +3364,7 @@ var ControlledSelectWithObject = ({
|
|
|
3480
3364
|
]
|
|
3481
3365
|
}
|
|
3482
3366
|
),
|
|
3483
|
-
/* @__PURE__ */
|
|
3367
|
+
/* @__PURE__ */ jsx70(FormHelperText2, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3484
3368
|
]
|
|
3485
3369
|
}
|
|
3486
3370
|
)
|
|
@@ -3493,10 +3377,10 @@ var ControlledSelectWithObject_default = ControlledSelectWithObject;
|
|
|
3493
3377
|
import {
|
|
3494
3378
|
Controller as Controller6
|
|
3495
3379
|
} from "react-hook-form";
|
|
3496
|
-
import { Box as
|
|
3380
|
+
import { Box as Box10, TextField as TextField3 } from "@mui/material";
|
|
3497
3381
|
import classNames from "classnames";
|
|
3498
3382
|
import { makeStyles as makeStyles20 } from "tss-react/mui";
|
|
3499
|
-
import { jsx as
|
|
3383
|
+
import { jsx as jsx71, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
3500
3384
|
var useStyles20 = makeStyles20()(() => ({
|
|
3501
3385
|
fullWidthWrapper: {
|
|
3502
3386
|
maxWidth: "100%"
|
|
@@ -3544,18 +3428,18 @@ var ControlledValidTextInput = ({
|
|
|
3544
3428
|
defaultHandleBlurValidationAndSubmit(controlledField, fieldState.isDirty);
|
|
3545
3429
|
}
|
|
3546
3430
|
};
|
|
3547
|
-
return /* @__PURE__ */
|
|
3548
|
-
|
|
3431
|
+
return /* @__PURE__ */ jsx71(
|
|
3432
|
+
Box10,
|
|
3549
3433
|
{
|
|
3550
3434
|
className,
|
|
3551
3435
|
"data-testid": dataTestId || `${convertUnderscoreToHyphen2(fieldName)}`,
|
|
3552
|
-
children: /* @__PURE__ */
|
|
3436
|
+
children: /* @__PURE__ */ jsx71(
|
|
3553
3437
|
Controller6,
|
|
3554
3438
|
{
|
|
3555
3439
|
control,
|
|
3556
3440
|
name: fieldName,
|
|
3557
|
-
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */
|
|
3558
|
-
|
|
3441
|
+
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */ jsx71(Box10, { className: classes.fullWidthWrapper, children: /* @__PURE__ */ jsx71(
|
|
3442
|
+
TextField3,
|
|
3559
3443
|
{
|
|
3560
3444
|
...controlledField,
|
|
3561
3445
|
value: controlledField?.value || "",
|
|
@@ -3569,7 +3453,7 @@ var ControlledValidTextInput = ({
|
|
|
3569
3453
|
disabled,
|
|
3570
3454
|
variant,
|
|
3571
3455
|
helperText: /* @__PURE__ */ jsxs41(
|
|
3572
|
-
|
|
3456
|
+
Box10,
|
|
3573
3457
|
{
|
|
3574
3458
|
component: "span",
|
|
3575
3459
|
sx: { whiteSpace: "pre-wrap" },
|
|
@@ -3578,8 +3462,8 @@ var ControlledValidTextInput = ({
|
|
|
3578
3462
|
}),
|
|
3579
3463
|
"data-testid": `${dataTestId}-helper-text` || `${convertUnderscoreToHyphen2(fieldName)}-helper-text`,
|
|
3580
3464
|
children: [
|
|
3581
|
-
/* @__PURE__ */
|
|
3582
|
-
|
|
3465
|
+
/* @__PURE__ */ jsx71(
|
|
3466
|
+
Box10,
|
|
3583
3467
|
{
|
|
3584
3468
|
component: "span",
|
|
3585
3469
|
className: classNames({
|
|
@@ -3588,7 +3472,7 @@ var ControlledValidTextInput = ({
|
|
|
3588
3472
|
children: fieldState.error?.message ?? helperText
|
|
3589
3473
|
}
|
|
3590
3474
|
),
|
|
3591
|
-
!!maxLength && /* @__PURE__ */
|
|
3475
|
+
!!maxLength && /* @__PURE__ */ jsx71(Box10, { component: "span", children: `${watch(fieldName)?.length ?? 0}/${maxLength}` })
|
|
3592
3476
|
]
|
|
3593
3477
|
}
|
|
3594
3478
|
),
|
|
@@ -3603,11 +3487,11 @@ var ControlledValidTextInput = ({
|
|
|
3603
3487
|
var ControlledValidTextInput_default = ControlledValidTextInput;
|
|
3604
3488
|
|
|
3605
3489
|
// src/components/DataGrid/DataGrid.tsx
|
|
3606
|
-
import { useState as
|
|
3490
|
+
import { useState as useState2 } from "react";
|
|
3607
3491
|
import { Paper as Paper2, Skeleton } from "@mui/material";
|
|
3608
3492
|
import { DataGrid as MUIDataGrid } from "@mui/x-data-grid";
|
|
3609
3493
|
import { makeStyles as makeStyles21 } from "tss-react/mui";
|
|
3610
|
-
import { Fragment, jsx as
|
|
3494
|
+
import { Fragment, jsx as jsx72, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
3611
3495
|
var useStyles21 = makeStyles21()(() => ({
|
|
3612
3496
|
root: {
|
|
3613
3497
|
justifyContent: "space-between",
|
|
@@ -3646,7 +3530,7 @@ var DataGrid = ({
|
|
|
3646
3530
|
children
|
|
3647
3531
|
}) => {
|
|
3648
3532
|
const { classes } = useStyles21();
|
|
3649
|
-
const [sortModel, setSortModel] =
|
|
3533
|
+
const [sortModel, setSortModel] = useState2([
|
|
3650
3534
|
{
|
|
3651
3535
|
field: sortField || "id",
|
|
3652
3536
|
sort: sortDir || "desc"
|
|
@@ -3654,14 +3538,14 @@ var DataGrid = ({
|
|
|
3654
3538
|
]);
|
|
3655
3539
|
const rowHeight = 56;
|
|
3656
3540
|
const headerAndFooterHeight = 52 + 56;
|
|
3657
|
-
return /* @__PURE__ */
|
|
3541
|
+
return /* @__PURE__ */ jsx72(
|
|
3658
3542
|
"div",
|
|
3659
3543
|
{
|
|
3660
3544
|
className: classes.root,
|
|
3661
3545
|
style: {
|
|
3662
3546
|
height: height || rows.length * rowHeight + headerAndFooterHeight
|
|
3663
3547
|
},
|
|
3664
|
-
children: /* @__PURE__ */
|
|
3548
|
+
children: /* @__PURE__ */ jsx72(Paper2, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx72("div", { children: [...Array(Math.floor(10))].map((i) => /* @__PURE__ */ jsx72(
|
|
3665
3549
|
Skeleton,
|
|
3666
3550
|
{
|
|
3667
3551
|
animation: "pulse",
|
|
@@ -3671,7 +3555,7 @@ var DataGrid = ({
|
|
|
3671
3555
|
},
|
|
3672
3556
|
i
|
|
3673
3557
|
)) }) : /* @__PURE__ */ jsxs42(Fragment, { children: [
|
|
3674
|
-
/* @__PURE__ */
|
|
3558
|
+
/* @__PURE__ */ jsx72(
|
|
3675
3559
|
MUIDataGrid,
|
|
3676
3560
|
{
|
|
3677
3561
|
rows,
|
|
@@ -3776,18 +3660,18 @@ localizedMoment.locale(constants_default.locale);
|
|
|
3776
3660
|
var moment_default = localizedMoment;
|
|
3777
3661
|
|
|
3778
3662
|
// src/components/Date/Date.tsx
|
|
3779
|
-
import { jsx as
|
|
3663
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3780
3664
|
var Date = ({ datetime, format = "L" }) => {
|
|
3781
3665
|
const formattedDate = moment_default(datetime).format(format);
|
|
3782
|
-
return /* @__PURE__ */
|
|
3666
|
+
return /* @__PURE__ */ jsx73("span", { children: formattedDate === "Invalid date" ? "-" : formattedDate });
|
|
3783
3667
|
};
|
|
3784
3668
|
var Date_default = Date;
|
|
3785
3669
|
|
|
3786
3670
|
// src/components/DeleteSubstitutionDialogContent/DeleteSubstitutionDialogContent.tsx
|
|
3787
3671
|
import { memo as memo9 } from "react";
|
|
3788
|
-
import { Alert, AlertTitle, Typography as Typography7, Box as
|
|
3672
|
+
import { Alert, AlertTitle, Typography as Typography7, Box as Box11 } from "@mui/material";
|
|
3789
3673
|
import { makeStyles as makeStyles22 } from "tss-react/mui";
|
|
3790
|
-
import { Fragment as Fragment2, jsx as
|
|
3674
|
+
import { Fragment as Fragment2, jsx as jsx74, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
3791
3675
|
var useStyles22 = makeStyles22()(() => ({
|
|
3792
3676
|
alert: { marginBottom: 16 },
|
|
3793
3677
|
bottomBar: {
|
|
@@ -3814,10 +3698,10 @@ var DeleteSubstitutionDialogContent = ({
|
|
|
3814
3698
|
] }),
|
|
3815
3699
|
"This action will permanently remove all data and history associated with this substitution, and it cannot be undone."
|
|
3816
3700
|
] }),
|
|
3817
|
-
/* @__PURE__ */
|
|
3818
|
-
/* @__PURE__ */ jsxs43(
|
|
3819
|
-
/* @__PURE__ */
|
|
3820
|
-
/* @__PURE__ */
|
|
3701
|
+
/* @__PURE__ */ jsx74(Typography7, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
3702
|
+
/* @__PURE__ */ jsxs43(Box11, { className: classes.bottomBar, children: [
|
|
3703
|
+
/* @__PURE__ */ jsx74(ExtendedButton_default, { copy: "Cancel", onClick: closeDialog }),
|
|
3704
|
+
/* @__PURE__ */ jsx74(
|
|
3821
3705
|
ExtendedButton_default,
|
|
3822
3706
|
{
|
|
3823
3707
|
copy: "Confirm",
|
|
@@ -3833,9 +3717,9 @@ var DeleteSubstitutionDialogContent_default = memo9(DeleteSubstitutionDialogCont
|
|
|
3833
3717
|
|
|
3834
3718
|
// src/components/DeleteUserDialogContent/DeleteUserDialogContent.tsx
|
|
3835
3719
|
import { memo as memo10 } from "react";
|
|
3836
|
-
import { Alert as Alert2, AlertTitle as AlertTitle2, Typography as Typography8, Box as
|
|
3720
|
+
import { Alert as Alert2, AlertTitle as AlertTitle2, Typography as Typography8, Box as Box12 } from "@mui/material";
|
|
3837
3721
|
import { makeStyles as makeStyles23 } from "tss-react/mui";
|
|
3838
|
-
import { Fragment as Fragment3, jsx as
|
|
3722
|
+
import { Fragment as Fragment3, jsx as jsx75, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
3839
3723
|
var useStyles23 = makeStyles23()(() => ({
|
|
3840
3724
|
alert: { marginBottom: 16 },
|
|
3841
3725
|
bottomBar: {
|
|
@@ -3862,10 +3746,10 @@ var DeleteUserDialogContent = ({
|
|
|
3862
3746
|
] }),
|
|
3863
3747
|
"This action will permanently remove all data and history associated with this user, and it cannot be undone."
|
|
3864
3748
|
] }),
|
|
3865
|
-
/* @__PURE__ */
|
|
3866
|
-
/* @__PURE__ */ jsxs44(
|
|
3867
|
-
/* @__PURE__ */
|
|
3868
|
-
/* @__PURE__ */
|
|
3749
|
+
/* @__PURE__ */ jsx75(Typography8, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
3750
|
+
/* @__PURE__ */ jsxs44(Box12, { className: classes.bottomBar, children: [
|
|
3751
|
+
/* @__PURE__ */ jsx75(ExtendedButton_default, { color: "default", copy: "Cancel", onClick: closeDialog }),
|
|
3752
|
+
/* @__PURE__ */ jsx75(
|
|
3869
3753
|
ExtendedButton_default,
|
|
3870
3754
|
{
|
|
3871
3755
|
copy: "Confirm",
|
|
@@ -3881,8 +3765,8 @@ var DeleteUserDialogContent_default = memo10(DeleteUserDialogContent);
|
|
|
3881
3765
|
|
|
3882
3766
|
// src/components/FileCard/FileCard.tsx
|
|
3883
3767
|
import { Description as DescriptionIcon } from "@mui/icons-material";
|
|
3884
|
-
import { Typography as Typography9, Box as
|
|
3885
|
-
import { jsx as
|
|
3768
|
+
import { Typography as Typography9, Box as Box13 } from "@mui/material";
|
|
3769
|
+
import { jsx as jsx76, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3886
3770
|
var getFileMetadata = (file) => {
|
|
3887
3771
|
const fullFilename = file.substring(file.lastIndexOf("/") + 1);
|
|
3888
3772
|
const extension = file.substring(file.lastIndexOf("."));
|
|
@@ -3895,7 +3779,7 @@ var FileCard = ({ document: document2 }) => {
|
|
|
3895
3779
|
window.open(document2, "_blank");
|
|
3896
3780
|
};
|
|
3897
3781
|
return /* @__PURE__ */ jsxs45(
|
|
3898
|
-
|
|
3782
|
+
Box13,
|
|
3899
3783
|
{
|
|
3900
3784
|
onClick: handleOpenDocument,
|
|
3901
3785
|
sx: {
|
|
@@ -3907,19 +3791,19 @@ var FileCard = ({ document: document2 }) => {
|
|
|
3907
3791
|
minWidth: "250px"
|
|
3908
3792
|
},
|
|
3909
3793
|
children: [
|
|
3910
|
-
/* @__PURE__ */
|
|
3911
|
-
|
|
3794
|
+
/* @__PURE__ */ jsx76(
|
|
3795
|
+
Box13,
|
|
3912
3796
|
{
|
|
3913
3797
|
sx: {
|
|
3914
3798
|
display: "flex",
|
|
3915
3799
|
justifyContent: "center",
|
|
3916
3800
|
alignItems: "center"
|
|
3917
3801
|
},
|
|
3918
|
-
children: /* @__PURE__ */
|
|
3802
|
+
children: /* @__PURE__ */ jsx76(DescriptionIcon, { fontSize: "medium", color: "action" })
|
|
3919
3803
|
}
|
|
3920
3804
|
),
|
|
3921
|
-
/* @__PURE__ */
|
|
3922
|
-
|
|
3805
|
+
/* @__PURE__ */ jsx76(
|
|
3806
|
+
Box13,
|
|
3923
3807
|
{
|
|
3924
3808
|
sx: {
|
|
3925
3809
|
display: "flex",
|
|
@@ -3944,7 +3828,7 @@ import { Typography as Typography10 } from "@mui/material";
|
|
|
3944
3828
|
import brown from "@mui/material/colors/brown";
|
|
3945
3829
|
import teal from "@mui/material/colors/teal";
|
|
3946
3830
|
import { makeStyles as makeStyles24 } from "tss-react/mui";
|
|
3947
|
-
import { jsx as
|
|
3831
|
+
import { jsx as jsx77 } from "react/jsx-runtime";
|
|
3948
3832
|
var useStyles24 = makeStyles24()((theme) => ({
|
|
3949
3833
|
siteOne: {
|
|
3950
3834
|
backgroundColor: teal["50"],
|
|
@@ -3972,15 +3856,15 @@ var useStyles24 = makeStyles24()((theme) => ({
|
|
|
3972
3856
|
var FilledLabel = (props) => {
|
|
3973
3857
|
const { color, copy } = props;
|
|
3974
3858
|
const { classes } = useStyles24();
|
|
3975
|
-
return /* @__PURE__ */
|
|
3859
|
+
return /* @__PURE__ */ jsx77(Typography10, { variant: "caption", className: classes[color], children: copy });
|
|
3976
3860
|
};
|
|
3977
3861
|
var FilledLabel_default = memo11(FilledLabel);
|
|
3978
3862
|
|
|
3979
3863
|
// src/components/FilterSelector/FilterGroupSelector.tsx
|
|
3980
|
-
import { useState as
|
|
3864
|
+
import { useState as useState3 } from "react";
|
|
3981
3865
|
import { FilterList as FilterListIcon } from "@mui/icons-material";
|
|
3982
3866
|
import {
|
|
3983
|
-
Box as
|
|
3867
|
+
Box as Box14,
|
|
3984
3868
|
Typography as Typography11,
|
|
3985
3869
|
Menu as Menu2,
|
|
3986
3870
|
MenuItem,
|
|
@@ -3988,7 +3872,7 @@ import {
|
|
|
3988
3872
|
ListItemText,
|
|
3989
3873
|
Divider as Divider2
|
|
3990
3874
|
} from "@mui/material";
|
|
3991
|
-
import { Fragment as Fragment4, jsx as
|
|
3875
|
+
import { Fragment as Fragment4, jsx as jsx78, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3992
3876
|
var FilterGroupSelector = ({
|
|
3993
3877
|
name = "Filter Selector",
|
|
3994
3878
|
optionsList = [{ category: "Category", options: ["Option 1"] }],
|
|
@@ -3996,8 +3880,8 @@ var FilterGroupSelector = ({
|
|
|
3996
3880
|
setSelectedOptions,
|
|
3997
3881
|
categoryIdentification
|
|
3998
3882
|
}) => {
|
|
3999
|
-
const [anchorEl, setAnchorEl] =
|
|
4000
|
-
const [values, setValues] =
|
|
3883
|
+
const [anchorEl, setAnchorEl] = useState3(null);
|
|
3884
|
+
const [values, setValues] = useState3([]);
|
|
4001
3885
|
const open = Boolean(anchorEl);
|
|
4002
3886
|
const handleClick = (event) => {
|
|
4003
3887
|
setAnchorEl(event.currentTarget);
|
|
@@ -4015,7 +3899,7 @@ var FilterGroupSelector = ({
|
|
|
4015
3899
|
};
|
|
4016
3900
|
return /* @__PURE__ */ jsxs46(Fragment4, { children: [
|
|
4017
3901
|
/* @__PURE__ */ jsxs46(
|
|
4018
|
-
|
|
3902
|
+
Box14,
|
|
4019
3903
|
{
|
|
4020
3904
|
display: "flex",
|
|
4021
3905
|
gap: 1,
|
|
@@ -4023,8 +3907,8 @@ var FilterGroupSelector = ({
|
|
|
4023
3907
|
onClick: handleClick,
|
|
4024
3908
|
sx: { cursor: "pointer" },
|
|
4025
3909
|
children: [
|
|
4026
|
-
/* @__PURE__ */
|
|
4027
|
-
/* @__PURE__ */
|
|
3910
|
+
/* @__PURE__ */ jsx78(Typography11, { variant: "button", fontSize: 12, children: name }),
|
|
3911
|
+
/* @__PURE__ */ jsx78(FilterListIcon, {})
|
|
4028
3912
|
]
|
|
4029
3913
|
}
|
|
4030
3914
|
),
|
|
@@ -4037,10 +3921,10 @@ var FilterGroupSelector = ({
|
|
|
4037
3921
|
anchorOrigin: { vertical: "bottom", horizontal: "left" },
|
|
4038
3922
|
transformOrigin: { vertical: "top", horizontal: "left" },
|
|
4039
3923
|
children: [
|
|
4040
|
-
/* @__PURE__ */
|
|
4041
|
-
/* @__PURE__ */
|
|
4042
|
-
/* @__PURE__ */
|
|
4043
|
-
/* @__PURE__ */
|
|
3924
|
+
/* @__PURE__ */ jsx78(Box14, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ jsx78(Typography11, { variant: "button", children: `Search ${name}` }) }),
|
|
3925
|
+
/* @__PURE__ */ jsx78(Divider2, {}),
|
|
3926
|
+
/* @__PURE__ */ jsx78(Box14, { overflow: "auto", height: 450, children: optionsList.map(({ category, options }, index) => /* @__PURE__ */ jsxs46(Box14, { children: [
|
|
3927
|
+
/* @__PURE__ */ jsx78(
|
|
4044
3928
|
Typography11,
|
|
4045
3929
|
{
|
|
4046
3930
|
variant: "subtitle2",
|
|
@@ -4051,13 +3935,13 @@ var FilterGroupSelector = ({
|
|
|
4051
3935
|
options.map((value) => {
|
|
4052
3936
|
const key = `${category.replaceAll(" ", "_").toLocaleLowerCase()}${categoryIdentification ? `_${categoryIdentification}` : ""}: ${value}`;
|
|
4053
3937
|
return /* @__PURE__ */ jsxs46(MenuItem, { onClick: () => toggleOption(key), children: [
|
|
4054
|
-
/* @__PURE__ */
|
|
4055
|
-
/* @__PURE__ */
|
|
3938
|
+
/* @__PURE__ */ jsx78(Checkbox2, { checked: values.includes(key) }),
|
|
3939
|
+
/* @__PURE__ */ jsx78(ListItemText, { primary: value })
|
|
4056
3940
|
] }, value);
|
|
4057
3941
|
})
|
|
4058
3942
|
] }, category)) }),
|
|
4059
|
-
/* @__PURE__ */ jsxs46(
|
|
4060
|
-
/* @__PURE__ */
|
|
3943
|
+
/* @__PURE__ */ jsxs46(Box14, { display: "flex", children: [
|
|
3944
|
+
/* @__PURE__ */ jsx78(
|
|
4061
3945
|
ExtendedButton_default,
|
|
4062
3946
|
{
|
|
4063
3947
|
variant: "text",
|
|
@@ -4069,7 +3953,7 @@ var FilterGroupSelector = ({
|
|
|
4069
3953
|
}
|
|
4070
3954
|
}
|
|
4071
3955
|
),
|
|
4072
|
-
/* @__PURE__ */
|
|
3956
|
+
/* @__PURE__ */ jsx78(
|
|
4073
3957
|
ExtendedButton_default,
|
|
4074
3958
|
{
|
|
4075
3959
|
color: "primary",
|
|
@@ -4090,10 +3974,10 @@ var FilterGroupSelector = ({
|
|
|
4090
3974
|
var FilterGroupSelector_default = FilterGroupSelector;
|
|
4091
3975
|
|
|
4092
3976
|
// src/components/FilterSelector/FilterSimpleSelector.tsx
|
|
4093
|
-
import { useState as
|
|
3977
|
+
import { useState as useState4 } from "react";
|
|
4094
3978
|
import { FilterList as FilterListIcon2 } from "@mui/icons-material";
|
|
4095
3979
|
import {
|
|
4096
|
-
Box as
|
|
3980
|
+
Box as Box15,
|
|
4097
3981
|
Typography as Typography12,
|
|
4098
3982
|
Menu as Menu3,
|
|
4099
3983
|
MenuItem as MenuItem2,
|
|
@@ -4101,15 +3985,15 @@ import {
|
|
|
4101
3985
|
ListItemText as ListItemText2,
|
|
4102
3986
|
Divider as Divider3
|
|
4103
3987
|
} from "@mui/material";
|
|
4104
|
-
import { Fragment as Fragment5, jsx as
|
|
3988
|
+
import { Fragment as Fragment5, jsx as jsx79, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
4105
3989
|
var FilterSimpleSelector = ({
|
|
4106
3990
|
name = "Filter Selector",
|
|
4107
3991
|
options = ["No Options"],
|
|
4108
3992
|
handleClickOnApply,
|
|
4109
3993
|
setSelectedOptions
|
|
4110
3994
|
}) => {
|
|
4111
|
-
const [anchorEl, setAnchorEl] =
|
|
4112
|
-
const [values, setValues] =
|
|
3995
|
+
const [anchorEl, setAnchorEl] = useState4(null);
|
|
3996
|
+
const [values, setValues] = useState4([]);
|
|
4113
3997
|
const open = Boolean(anchorEl);
|
|
4114
3998
|
const handleClick = (event) => {
|
|
4115
3999
|
setAnchorEl(event.currentTarget);
|
|
@@ -4127,7 +4011,7 @@ var FilterSimpleSelector = ({
|
|
|
4127
4011
|
};
|
|
4128
4012
|
return /* @__PURE__ */ jsxs47(Fragment5, { children: [
|
|
4129
4013
|
/* @__PURE__ */ jsxs47(
|
|
4130
|
-
|
|
4014
|
+
Box15,
|
|
4131
4015
|
{
|
|
4132
4016
|
display: "flex",
|
|
4133
4017
|
gap: 1,
|
|
@@ -4135,8 +4019,8 @@ var FilterSimpleSelector = ({
|
|
|
4135
4019
|
onClick: handleClick,
|
|
4136
4020
|
sx: { cursor: "pointer" },
|
|
4137
4021
|
children: [
|
|
4138
|
-
/* @__PURE__ */
|
|
4139
|
-
/* @__PURE__ */
|
|
4022
|
+
/* @__PURE__ */ jsx79(Typography12, { variant: "button", fontSize: 12, children: name }),
|
|
4023
|
+
/* @__PURE__ */ jsx79(FilterListIcon2, {})
|
|
4140
4024
|
]
|
|
4141
4025
|
}
|
|
4142
4026
|
),
|
|
@@ -4149,15 +4033,15 @@ var FilterSimpleSelector = ({
|
|
|
4149
4033
|
anchorOrigin: { vertical: "bottom", horizontal: "left" },
|
|
4150
4034
|
transformOrigin: { vertical: "top", horizontal: "left" },
|
|
4151
4035
|
children: [
|
|
4152
|
-
/* @__PURE__ */
|
|
4153
|
-
/* @__PURE__ */
|
|
4154
|
-
/* @__PURE__ */
|
|
4155
|
-
/* @__PURE__ */
|
|
4156
|
-
/* @__PURE__ */
|
|
4036
|
+
/* @__PURE__ */ jsx79(Box15, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ jsx79(Typography12, { variant: "button", children: `Search ${name}` }) }),
|
|
4037
|
+
/* @__PURE__ */ jsx79(Divider3, {}),
|
|
4038
|
+
/* @__PURE__ */ jsx79(Box15, { overflow: "auto", height: 450, children: options.map((option) => /* @__PURE__ */ jsxs47(MenuItem2, { onClick: () => toggleOption(option), children: [
|
|
4039
|
+
/* @__PURE__ */ jsx79(Checkbox3, { checked: values.includes(option) }),
|
|
4040
|
+
/* @__PURE__ */ jsx79(ListItemText2, { primary: option })
|
|
4157
4041
|
] }, option)) }),
|
|
4158
|
-
/* @__PURE__ */
|
|
4159
|
-
/* @__PURE__ */ jsxs47(
|
|
4160
|
-
/* @__PURE__ */
|
|
4042
|
+
/* @__PURE__ */ jsx79(Divider3, {}),
|
|
4043
|
+
/* @__PURE__ */ jsxs47(Box15, { display: "flex", children: [
|
|
4044
|
+
/* @__PURE__ */ jsx79(
|
|
4161
4045
|
ExtendedButton_default,
|
|
4162
4046
|
{
|
|
4163
4047
|
variant: "text",
|
|
@@ -4169,7 +4053,7 @@ var FilterSimpleSelector = ({
|
|
|
4169
4053
|
}
|
|
4170
4054
|
}
|
|
4171
4055
|
),
|
|
4172
|
-
/* @__PURE__ */
|
|
4056
|
+
/* @__PURE__ */ jsx79(
|
|
4173
4057
|
ExtendedButton_default,
|
|
4174
4058
|
{
|
|
4175
4059
|
color: "primary",
|
|
@@ -4191,9 +4075,9 @@ var FilterSimpleSelector_default = FilterSimpleSelector;
|
|
|
4191
4075
|
|
|
4192
4076
|
// src/components/FixedFooter/FixedFooter.tsx
|
|
4193
4077
|
import * as React from "react";
|
|
4194
|
-
import { Box as
|
|
4078
|
+
import { Box as Box16 } from "@mui/material";
|
|
4195
4079
|
import { makeStyles as makeStyles25 } from "tss-react/mui";
|
|
4196
|
-
import { jsx as
|
|
4080
|
+
import { jsx as jsx80, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
4197
4081
|
var footerHeight = "64px";
|
|
4198
4082
|
var useStyles25 = makeStyles25()((theme) => ({
|
|
4199
4083
|
root: {
|
|
@@ -4214,10 +4098,10 @@ var useStyles25 = makeStyles25()((theme) => ({
|
|
|
4214
4098
|
}));
|
|
4215
4099
|
var FixedFooter = ({ justifyContent, children }) => {
|
|
4216
4100
|
const { classes } = useStyles25();
|
|
4217
|
-
return /* @__PURE__ */ jsxs48(
|
|
4218
|
-
/* @__PURE__ */
|
|
4219
|
-
/* @__PURE__ */
|
|
4220
|
-
|
|
4101
|
+
return /* @__PURE__ */ jsxs48(Box16, { children: [
|
|
4102
|
+
/* @__PURE__ */ jsx80(Box16, { className: classes.fixedOffset }),
|
|
4103
|
+
/* @__PURE__ */ jsx80(
|
|
4104
|
+
Box16,
|
|
4221
4105
|
{
|
|
4222
4106
|
className: classes.root,
|
|
4223
4107
|
sx: {
|
|
@@ -4233,7 +4117,7 @@ var FixedFooter_default = React.memo(FixedFooter);
|
|
|
4233
4117
|
// src/components/Header/Header.tsx
|
|
4234
4118
|
import { Paper as Paper3 } from "@mui/material";
|
|
4235
4119
|
import { makeStyles as makeStyles26 } from "tss-react/mui";
|
|
4236
|
-
import { jsx as
|
|
4120
|
+
import { jsx as jsx81, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
4237
4121
|
var useStyles26 = makeStyles26()((theme) => ({
|
|
4238
4122
|
container: {
|
|
4239
4123
|
margin: theme.spacing(1)
|
|
@@ -4256,7 +4140,7 @@ var Header = ({
|
|
|
4256
4140
|
wrappedHeader = false
|
|
4257
4141
|
}) => {
|
|
4258
4142
|
const { classes, cx } = useStyles26();
|
|
4259
|
-
return /* @__PURE__ */
|
|
4143
|
+
return /* @__PURE__ */ jsx81(
|
|
4260
4144
|
Paper3,
|
|
4261
4145
|
{
|
|
4262
4146
|
className: cx({
|
|
@@ -4264,8 +4148,8 @@ var Header = ({
|
|
|
4264
4148
|
}),
|
|
4265
4149
|
elevation: wrappedHeader ? 0 : 1,
|
|
4266
4150
|
children: /* @__PURE__ */ jsxs49("header", { className: classes.header, children: [
|
|
4267
|
-
/* @__PURE__ */
|
|
4268
|
-
children ? /* @__PURE__ */
|
|
4151
|
+
/* @__PURE__ */ jsx81(AppLabel_default, { appName }),
|
|
4152
|
+
children ? /* @__PURE__ */ jsx81("div", { className: classes.rightContent, children }) : null
|
|
4269
4153
|
] })
|
|
4270
4154
|
}
|
|
4271
4155
|
);
|
|
@@ -4273,7 +4157,7 @@ var Header = ({
|
|
|
4273
4157
|
var Header_default = Header;
|
|
4274
4158
|
|
|
4275
4159
|
// src/components/LeftDrawer/LeftDrawer.tsx
|
|
4276
|
-
import { Fragment as Fragment6, memo as memo14, useState as
|
|
4160
|
+
import { Fragment as Fragment6, memo as memo14, useState as useState5 } from "react";
|
|
4277
4161
|
import { ExpandLess, ExpandMore, FiberManualRecord } from "@mui/icons-material";
|
|
4278
4162
|
import {
|
|
4279
4163
|
AppBar,
|
|
@@ -4285,7 +4169,7 @@ import {
|
|
|
4285
4169
|
ListSubheader,
|
|
4286
4170
|
SwipeableDrawer,
|
|
4287
4171
|
Toolbar,
|
|
4288
|
-
Box as
|
|
4172
|
+
Box as Box17,
|
|
4289
4173
|
ListItemButton
|
|
4290
4174
|
} from "@mui/material";
|
|
4291
4175
|
import Icon2 from "@mui/material/Icon";
|
|
@@ -4294,9 +4178,9 @@ import { makeStyles as makeStyles27 } from "tss-react/mui";
|
|
|
4294
4178
|
// src/components/UserBust/UserBust.tsx
|
|
4295
4179
|
import { memo as memo13 } from "react";
|
|
4296
4180
|
import { Avatar, Typography as Typography13 } from "@mui/material";
|
|
4297
|
-
import { jsx as
|
|
4181
|
+
import { jsx as jsx82, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
4298
4182
|
var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ jsxs50("div", { children: [
|
|
4299
|
-
/* @__PURE__ */
|
|
4183
|
+
/* @__PURE__ */ jsx82(
|
|
4300
4184
|
Avatar,
|
|
4301
4185
|
{
|
|
4302
4186
|
src: user.profile_picture,
|
|
@@ -4305,8 +4189,8 @@ var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ jsxs5
|
|
|
4305
4189
|
}
|
|
4306
4190
|
),
|
|
4307
4191
|
/* @__PURE__ */ jsxs50("div", { style: { paddingTop: 16 }, children: [
|
|
4308
|
-
/* @__PURE__ */
|
|
4309
|
-
/* @__PURE__ */
|
|
4192
|
+
/* @__PURE__ */ jsx82(Typography13, { ...typographyProps.name, children: `${user.first_name} ${user.last_name}` }),
|
|
4193
|
+
/* @__PURE__ */ jsx82(Typography13, { ...typographyProps.username, children: user.username })
|
|
4310
4194
|
] })
|
|
4311
4195
|
] });
|
|
4312
4196
|
var UserBust_default = memo13(UserBust);
|
|
@@ -4345,7 +4229,7 @@ var featureName = {
|
|
|
4345
4229
|
var featureName_default = featureName;
|
|
4346
4230
|
|
|
4347
4231
|
// src/components/LeftDrawer/helpers/drawerAppList.tsx
|
|
4348
|
-
import { jsx as
|
|
4232
|
+
import { jsx as jsx83 } from "react/jsx-runtime";
|
|
4349
4233
|
var drawerAppList = [
|
|
4350
4234
|
{
|
|
4351
4235
|
groupName: "Home",
|
|
@@ -4356,7 +4240,7 @@ var drawerAppList = [
|
|
|
4356
4240
|
alwaysDisplay: true,
|
|
4357
4241
|
featureNames: [],
|
|
4358
4242
|
pinned: null,
|
|
4359
|
-
icon: /* @__PURE__ */
|
|
4243
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconHome, {}),
|
|
4360
4244
|
url: `/`
|
|
4361
4245
|
}
|
|
4362
4246
|
]
|
|
@@ -4370,7 +4254,7 @@ var drawerAppList = [
|
|
|
4370
4254
|
alwaysDisplay: false,
|
|
4371
4255
|
featureNames: [featureName_default.NOTIFICATIONS],
|
|
4372
4256
|
pinned: null,
|
|
4373
|
-
icon: /* @__PURE__ */
|
|
4257
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconNotification, {}),
|
|
4374
4258
|
url: `/notifications`
|
|
4375
4259
|
},
|
|
4376
4260
|
{
|
|
@@ -4379,7 +4263,7 @@ var drawerAppList = [
|
|
|
4379
4263
|
alwaysDisplay: false,
|
|
4380
4264
|
featureNames: [featureName_default.PROMO_CODES],
|
|
4381
4265
|
pinned: null,
|
|
4382
|
-
icon: /* @__PURE__ */
|
|
4266
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconPromoCode, {}),
|
|
4383
4267
|
url: "/react/promo_codes"
|
|
4384
4268
|
},
|
|
4385
4269
|
{
|
|
@@ -4388,7 +4272,7 @@ var drawerAppList = [
|
|
|
4388
4272
|
alwaysDisplay: false,
|
|
4389
4273
|
featureNames: [featureName_default.SEARCH_CATEGORIES],
|
|
4390
4274
|
pinned: null,
|
|
4391
|
-
icon: /* @__PURE__ */
|
|
4275
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconSearchCategories, {}),
|
|
4392
4276
|
url: "/react/search-categories"
|
|
4393
4277
|
},
|
|
4394
4278
|
{
|
|
@@ -4397,7 +4281,7 @@ var drawerAppList = [
|
|
|
4397
4281
|
alwaysDisplay: false,
|
|
4398
4282
|
featureNames: ["cms"],
|
|
4399
4283
|
pinned: null,
|
|
4400
|
-
icon: /* @__PURE__ */
|
|
4284
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconContentManagement, {}),
|
|
4401
4285
|
url: "/react/content-management"
|
|
4402
4286
|
}
|
|
4403
4287
|
]
|
|
@@ -4411,7 +4295,7 @@ var drawerAppList = [
|
|
|
4411
4295
|
alwaysDisplay: false,
|
|
4412
4296
|
featureNames: [featureName_default.AIRCALL],
|
|
4413
4297
|
pinned: "recorded_calls",
|
|
4414
|
-
icon: /* @__PURE__ */
|
|
4298
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconPhone, {}),
|
|
4415
4299
|
url: "/react/air-call"
|
|
4416
4300
|
},
|
|
4417
4301
|
{
|
|
@@ -4420,7 +4304,7 @@ var drawerAppList = [
|
|
|
4420
4304
|
alwaysDisplay: false,
|
|
4421
4305
|
featureNames: [featureName_default.CUSTOMERS],
|
|
4422
4306
|
pinned: "customers",
|
|
4423
|
-
icon: /* @__PURE__ */
|
|
4307
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconAccount, {}),
|
|
4424
4308
|
url: `/customer-list`,
|
|
4425
4309
|
children: [
|
|
4426
4310
|
{
|
|
@@ -4443,7 +4327,7 @@ var drawerAppList = [
|
|
|
4443
4327
|
alwaysDisplay: false,
|
|
4444
4328
|
featureNames: [featureName_default.ORDERS],
|
|
4445
4329
|
pinned: "orders",
|
|
4446
|
-
icon: /* @__PURE__ */
|
|
4330
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconOrders, {}),
|
|
4447
4331
|
url: `/orders`
|
|
4448
4332
|
},
|
|
4449
4333
|
{
|
|
@@ -4452,7 +4336,7 @@ var drawerAppList = [
|
|
|
4452
4336
|
alwaysDisplay: false,
|
|
4453
4337
|
featureNames: [featureName_default.PRICE_LIST],
|
|
4454
4338
|
pinned: "price_list",
|
|
4455
|
-
icon: /* @__PURE__ */
|
|
4339
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconPriceList, {}),
|
|
4456
4340
|
url: `/price-list`
|
|
4457
4341
|
},
|
|
4458
4342
|
{
|
|
@@ -4461,7 +4345,7 @@ var drawerAppList = [
|
|
|
4461
4345
|
alwaysDisplay: false,
|
|
4462
4346
|
featureNames: [featureName_default.SPECIAL_PRICES],
|
|
4463
4347
|
pinned: "special_prices",
|
|
4464
|
-
icon: /* @__PURE__ */
|
|
4348
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconSpecialPrice, {}),
|
|
4465
4349
|
url: `/pricing/special-prices`
|
|
4466
4350
|
}
|
|
4467
4351
|
]
|
|
@@ -4475,7 +4359,7 @@ var drawerAppList = [
|
|
|
4475
4359
|
alwaysDisplay: false,
|
|
4476
4360
|
featureNames: [featureName_default.PURCHASE_ORDERS],
|
|
4477
4361
|
pinned: "purchase_orders",
|
|
4478
|
-
icon: /* @__PURE__ */
|
|
4362
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconBuying, {}),
|
|
4479
4363
|
url: "/react/purchase-orders"
|
|
4480
4364
|
},
|
|
4481
4365
|
{
|
|
@@ -4484,7 +4368,7 @@ var drawerAppList = [
|
|
|
4484
4368
|
alwaysDisplay: false,
|
|
4485
4369
|
featureNames: [featureName_default.PRODUCTS],
|
|
4486
4370
|
pinned: "products",
|
|
4487
|
-
icon: /* @__PURE__ */
|
|
4371
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconProducts, {}),
|
|
4488
4372
|
url: `/product-base-list`
|
|
4489
4373
|
},
|
|
4490
4374
|
{
|
|
@@ -4493,7 +4377,7 @@ var drawerAppList = [
|
|
|
4493
4377
|
alwaysDisplay: false,
|
|
4494
4378
|
featureNames: [featureName_default.SUPPLIERS],
|
|
4495
4379
|
pinned: "suppliers",
|
|
4496
|
-
icon: /* @__PURE__ */
|
|
4380
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconSupplier, {}),
|
|
4497
4381
|
url: "/react/suppliers"
|
|
4498
4382
|
},
|
|
4499
4383
|
{
|
|
@@ -4502,7 +4386,7 @@ var drawerAppList = [
|
|
|
4502
4386
|
alwaysDisplay: false,
|
|
4503
4387
|
featureNames: [featureName_default.SUPPLIER_PRICES],
|
|
4504
4388
|
pinned: "supplier_prices",
|
|
4505
|
-
icon: /* @__PURE__ */
|
|
4389
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconSupplierPrices, {}),
|
|
4506
4390
|
url: `/supplier-prices`
|
|
4507
4391
|
},
|
|
4508
4392
|
{
|
|
@@ -4511,7 +4395,7 @@ var drawerAppList = [
|
|
|
4511
4395
|
alwaysDisplay: false,
|
|
4512
4396
|
featureNames: [featureName_default.BULK_UPDATE],
|
|
4513
4397
|
pinned: "bulk-update",
|
|
4514
|
-
icon: /* @__PURE__ */
|
|
4398
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconImport, {}),
|
|
4515
4399
|
url: "/react/bulk_update"
|
|
4516
4400
|
}
|
|
4517
4401
|
]
|
|
@@ -4525,7 +4409,7 @@ var drawerAppList = [
|
|
|
4525
4409
|
alwaysDisplay: false,
|
|
4526
4410
|
featureNames: [featureName_default.GOODS_IN],
|
|
4527
4411
|
pinned: "goods_in",
|
|
4528
|
-
icon: /* @__PURE__ */
|
|
4412
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconGoodsin, {}),
|
|
4529
4413
|
url: "/react/goodsin-list"
|
|
4530
4414
|
},
|
|
4531
4415
|
{
|
|
@@ -4534,7 +4418,7 @@ var drawerAppList = [
|
|
|
4534
4418
|
alwaysDisplay: false,
|
|
4535
4419
|
featureNames: [featureName_default.RETURNS],
|
|
4536
4420
|
pinned: "goods_in",
|
|
4537
|
-
icon: /* @__PURE__ */
|
|
4421
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconGoodsin, {}),
|
|
4538
4422
|
url: "/react/returns"
|
|
4539
4423
|
},
|
|
4540
4424
|
{
|
|
@@ -4543,11 +4427,11 @@ var drawerAppList = [
|
|
|
4543
4427
|
alwaysDisplay: false,
|
|
4544
4428
|
featureNames: [featureName_default.KANBAN],
|
|
4545
4429
|
pinned: "kanbancards",
|
|
4546
|
-
icon: /* @__PURE__ */
|
|
4430
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconVkc, {}),
|
|
4547
4431
|
url: `/kanban`
|
|
4548
4432
|
},
|
|
4549
4433
|
{
|
|
4550
|
-
icon: /* @__PURE__ */
|
|
4434
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconLocation, {}),
|
|
4551
4435
|
name: "Stock and Locations",
|
|
4552
4436
|
pinned: "locations",
|
|
4553
4437
|
routeName: "locations",
|
|
@@ -4569,7 +4453,7 @@ var drawerAppList = [
|
|
|
4569
4453
|
alwaysDisplay: false,
|
|
4570
4454
|
featureNames: [featureName_default.PICKING_STATIONS],
|
|
4571
4455
|
pinned: "picking_stations",
|
|
4572
|
-
icon: /* @__PURE__ */
|
|
4456
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconScales, {}),
|
|
4573
4457
|
url: `/pickingstation`
|
|
4574
4458
|
},
|
|
4575
4459
|
{
|
|
@@ -4578,7 +4462,7 @@ var drawerAppList = [
|
|
|
4578
4462
|
alwaysDisplay: false,
|
|
4579
4463
|
featureNames: [featureName_default.QUALITY_CONTROL],
|
|
4580
4464
|
pinned: "quality_control",
|
|
4581
|
-
icon: /* @__PURE__ */
|
|
4465
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconQc, {}),
|
|
4582
4466
|
url: `/quality-control`
|
|
4583
4467
|
},
|
|
4584
4468
|
{
|
|
@@ -4587,7 +4471,7 @@ var drawerAppList = [
|
|
|
4587
4471
|
alwaysDisplay: false,
|
|
4588
4472
|
featureNames: [featureName_default.RETAIL],
|
|
4589
4473
|
pinned: "retail",
|
|
4590
|
-
icon: /* @__PURE__ */
|
|
4474
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconRetail, {}),
|
|
4591
4475
|
url: `/retail/product-availability`
|
|
4592
4476
|
},
|
|
4593
4477
|
{
|
|
@@ -4596,7 +4480,7 @@ var drawerAppList = [
|
|
|
4596
4480
|
alwaysDisplay: false,
|
|
4597
4481
|
featureNames: [featureName_default.SERVICE_DELIVERY],
|
|
4598
4482
|
pinned: "runs",
|
|
4599
|
-
icon: /* @__PURE__ */
|
|
4483
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconRuns, {}),
|
|
4600
4484
|
url: `/runs`
|
|
4601
4485
|
},
|
|
4602
4486
|
{
|
|
@@ -4605,7 +4489,7 @@ var drawerAppList = [
|
|
|
4605
4489
|
alwaysDisplay: false,
|
|
4606
4490
|
featureNames: [featureName_default.OPS_METRICS],
|
|
4607
4491
|
pinned: "ops-metrics",
|
|
4608
|
-
icon: /* @__PURE__ */
|
|
4492
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconOpsMetrics, {}),
|
|
4609
4493
|
url: "/react/ops-metrics"
|
|
4610
4494
|
}
|
|
4611
4495
|
]
|
|
@@ -4619,7 +4503,7 @@ var drawerAppList = [
|
|
|
4619
4503
|
alwaysDisplay: false,
|
|
4620
4504
|
featureNames: [featureName_default.ACCOUNTS],
|
|
4621
4505
|
pinned: "accounts",
|
|
4622
|
-
icon: /* @__PURE__ */
|
|
4506
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconAccounts, {}),
|
|
4623
4507
|
url: `/accounts`
|
|
4624
4508
|
},
|
|
4625
4509
|
{
|
|
@@ -4628,7 +4512,7 @@ var drawerAppList = [
|
|
|
4628
4512
|
alwaysDisplay: false,
|
|
4629
4513
|
featureNames: [featureName_default.REPORTS],
|
|
4630
4514
|
pinned: "reports",
|
|
4631
|
-
icon: /* @__PURE__ */
|
|
4515
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconReports, {}),
|
|
4632
4516
|
url: `/reports`
|
|
4633
4517
|
}
|
|
4634
4518
|
]
|
|
@@ -4642,7 +4526,7 @@ var drawerAppList = [
|
|
|
4642
4526
|
alwaysDisplay: false,
|
|
4643
4527
|
featureNames: [featureName_default.ADMIN],
|
|
4644
4528
|
pinned: "admin",
|
|
4645
|
-
icon: /* @__PURE__ */
|
|
4529
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconSetting, {}),
|
|
4646
4530
|
url: `/admin`
|
|
4647
4531
|
},
|
|
4648
4532
|
{
|
|
@@ -4651,7 +4535,7 @@ var drawerAppList = [
|
|
|
4651
4535
|
alwaysDisplay: false,
|
|
4652
4536
|
featureNames: [featureName_default.USER_MANAGEMENT],
|
|
4653
4537
|
pinned: "users",
|
|
4654
|
-
icon: /* @__PURE__ */
|
|
4538
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconUserManagement, {}),
|
|
4655
4539
|
url: "/react/user-management"
|
|
4656
4540
|
},
|
|
4657
4541
|
{
|
|
@@ -4660,7 +4544,7 @@ var drawerAppList = [
|
|
|
4660
4544
|
alwaysDisplay: true,
|
|
4661
4545
|
featureNames: [],
|
|
4662
4546
|
pinned: null,
|
|
4663
|
-
icon: /* @__PURE__ */
|
|
4547
|
+
icon: /* @__PURE__ */ jsx83(icons_default.SvgIconLogin, {}),
|
|
4664
4548
|
url: "/react/logout"
|
|
4665
4549
|
}
|
|
4666
4550
|
]
|
|
@@ -4702,7 +4586,7 @@ var useGetFilteredDrawerAppList = (featureSettings) => {
|
|
|
4702
4586
|
var useGetFilteredDrawerAppList_default = useGetFilteredDrawerAppList;
|
|
4703
4587
|
|
|
4704
4588
|
// src/components/LeftDrawer/LeftDrawer.tsx
|
|
4705
|
-
import { jsx as
|
|
4589
|
+
import { jsx as jsx84, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
4706
4590
|
var useStyles27 = makeStyles27()((theme) => ({
|
|
4707
4591
|
subheader: {
|
|
4708
4592
|
textTransform: "uppercase",
|
|
@@ -4767,7 +4651,7 @@ var LeftDrawer = ({
|
|
|
4767
4651
|
open,
|
|
4768
4652
|
user
|
|
4769
4653
|
}) => {
|
|
4770
|
-
const [openCollapse, setOpenCollapse] =
|
|
4654
|
+
const [openCollapse, setOpenCollapse] = useState5({});
|
|
4771
4655
|
const filteredDrawerAppList = useGetFilteredDrawerAppList_default(featureSettings);
|
|
4772
4656
|
const handleCollapse = (e, routeName) => {
|
|
4773
4657
|
e.stopPropagation();
|
|
@@ -4785,8 +4669,8 @@ var LeftDrawer = ({
|
|
|
4785
4669
|
onOpen: handleOpen,
|
|
4786
4670
|
open,
|
|
4787
4671
|
children: [
|
|
4788
|
-
/* @__PURE__ */
|
|
4789
|
-
/* @__PURE__ */
|
|
4672
|
+
/* @__PURE__ */ jsx84(AppBar, { position: "static", children: /* @__PURE__ */ jsxs51(Toolbar, { className: classes.topBar, children: [
|
|
4673
|
+
/* @__PURE__ */ jsx84(
|
|
4790
4674
|
UserBust_default,
|
|
4791
4675
|
{
|
|
4792
4676
|
user,
|
|
@@ -4797,7 +4681,7 @@ var LeftDrawer = ({
|
|
|
4797
4681
|
}
|
|
4798
4682
|
}
|
|
4799
4683
|
),
|
|
4800
|
-
/* @__PURE__ */
|
|
4684
|
+
/* @__PURE__ */ jsx84(Box17, { children: /* @__PURE__ */ jsx84(
|
|
4801
4685
|
RoundButton_default,
|
|
4802
4686
|
{
|
|
4803
4687
|
icon: "edit",
|
|
@@ -4808,8 +4692,8 @@ var LeftDrawer = ({
|
|
|
4808
4692
|
}
|
|
4809
4693
|
) })
|
|
4810
4694
|
] }) }),
|
|
4811
|
-
/* @__PURE__ */
|
|
4812
|
-
/* @__PURE__ */
|
|
4695
|
+
/* @__PURE__ */ jsx84(List, { children: filteredDrawerAppList.map((group) => /* @__PURE__ */ jsxs51(Fragment6, { children: [
|
|
4696
|
+
/* @__PURE__ */ jsx84(ListSubheader, { disableSticky: true, className: classes.subheader, children: group.groupName }),
|
|
4813
4697
|
group.apps.map((app) => /* @__PURE__ */ jsxs51(Fragment6, { children: [
|
|
4814
4698
|
/* @__PURE__ */ jsxs51(
|
|
4815
4699
|
ListItem,
|
|
@@ -4822,8 +4706,8 @@ var LeftDrawer = ({
|
|
|
4822
4706
|
return window.location.assign(app.url);
|
|
4823
4707
|
},
|
|
4824
4708
|
children: [
|
|
4825
|
-
/* @__PURE__ */
|
|
4826
|
-
/* @__PURE__ */
|
|
4709
|
+
/* @__PURE__ */ jsx84(ListItemIcon, { children: /* @__PURE__ */ jsx84(Icon2, { className: classes.iconMenu, children: app.icon }) }),
|
|
4710
|
+
/* @__PURE__ */ jsx84(
|
|
4827
4711
|
ListItemText3,
|
|
4828
4712
|
{
|
|
4829
4713
|
className: classes.appName,
|
|
@@ -4833,13 +4717,13 @@ var LeftDrawer = ({
|
|
|
4833
4717
|
}
|
|
4834
4718
|
}
|
|
4835
4719
|
),
|
|
4836
|
-
app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */
|
|
4720
|
+
app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */ jsx84(
|
|
4837
4721
|
ExpandLess,
|
|
4838
4722
|
{
|
|
4839
4723
|
"data-testid": "svg-close-collapse",
|
|
4840
4724
|
onClick: (e) => handleCollapse(e, app.routeName)
|
|
4841
4725
|
}
|
|
4842
|
-
) : /* @__PURE__ */
|
|
4726
|
+
) : /* @__PURE__ */ jsx84(
|
|
4843
4727
|
ExpandMore,
|
|
4844
4728
|
{
|
|
4845
4729
|
"data-testid": "svg-open-collapse",
|
|
@@ -4850,7 +4734,7 @@ var LeftDrawer = ({
|
|
|
4850
4734
|
},
|
|
4851
4735
|
app.name
|
|
4852
4736
|
),
|
|
4853
|
-
app.children?.length > 0 && /* @__PURE__ */
|
|
4737
|
+
app.children?.length > 0 && /* @__PURE__ */ jsx84(Collapse, { in: openCollapse[app.routeName], children: /* @__PURE__ */ jsx84(List, { children: app.children.map((child) => /* @__PURE__ */ jsxs51(
|
|
4854
4738
|
ListItemButton,
|
|
4855
4739
|
{
|
|
4856
4740
|
className: classes.nested,
|
|
@@ -4858,8 +4742,8 @@ var LeftDrawer = ({
|
|
|
4858
4742
|
onClick: () => window.location.assign(child.url),
|
|
4859
4743
|
title: child.url,
|
|
4860
4744
|
children: [
|
|
4861
|
-
/* @__PURE__ */
|
|
4862
|
-
/* @__PURE__ */
|
|
4745
|
+
/* @__PURE__ */ jsx84(ListItemIcon, { children: /* @__PURE__ */ jsx84(FiberManualRecord, { style: { height: 12 } }) }),
|
|
4746
|
+
/* @__PURE__ */ jsx84(
|
|
4863
4747
|
ListItemText3,
|
|
4864
4748
|
{
|
|
4865
4749
|
primary: child.name,
|
|
@@ -4883,20 +4767,20 @@ var LeftDrawer_default = memo14(LeftDrawer);
|
|
|
4883
4767
|
// src/components/List/List.tsx
|
|
4884
4768
|
import { FixedSizeList } from "react-window";
|
|
4885
4769
|
import { ListItem as ListItem2, ListItemText as ListItemText4 } from "@mui/material";
|
|
4886
|
-
import { Fragment as Fragment7, jsx as
|
|
4770
|
+
import { Fragment as Fragment7, jsx as jsx85, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
4887
4771
|
var ListHeader = (props) => {
|
|
4888
4772
|
const headers = props.headers || [];
|
|
4889
|
-
return /* @__PURE__ */
|
|
4773
|
+
return /* @__PURE__ */ jsx85(ListItem2, { children: headers.map((header, i) => (
|
|
4890
4774
|
// eslint-disable-next-line react/no-array-index-key
|
|
4891
|
-
/* @__PURE__ */
|
|
4775
|
+
/* @__PURE__ */ jsx85(ListItemText4, { primary: header.text }, i)
|
|
4892
4776
|
)) });
|
|
4893
4777
|
};
|
|
4894
4778
|
function VirtualizedList(props) {
|
|
4895
4779
|
const { innerWidth, innerHeight } = window;
|
|
4896
4780
|
const { headers, items, renderItem } = props;
|
|
4897
4781
|
return /* @__PURE__ */ jsxs52(Fragment7, { children: [
|
|
4898
|
-
/* @__PURE__ */
|
|
4899
|
-
/* @__PURE__ */
|
|
4782
|
+
/* @__PURE__ */ jsx85(ListHeader, { headers }),
|
|
4783
|
+
/* @__PURE__ */ jsx85(
|
|
4900
4784
|
FixedSizeList,
|
|
4901
4785
|
{
|
|
4902
4786
|
height: innerHeight - 150,
|
|
@@ -4912,11 +4796,11 @@ function VirtualizedList(props) {
|
|
|
4912
4796
|
|
|
4913
4797
|
// src/components/LocationsSectionInfo/LocationsSectionInfo.tsx
|
|
4914
4798
|
import { Fragment as Fragment8 } from "react";
|
|
4915
|
-
import { Box as
|
|
4799
|
+
import { Box as Box18, Chip, Typography as Typography14 } from "@mui/material";
|
|
4916
4800
|
import { purple } from "@mui/material/colors";
|
|
4917
4801
|
import classNames2 from "classnames";
|
|
4918
4802
|
import { makeStyles as makeStyles28 } from "tss-react/mui";
|
|
4919
|
-
import { jsx as
|
|
4803
|
+
import { jsx as jsx86, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
4920
4804
|
var useStyles28 = makeStyles28()(() => ({
|
|
4921
4805
|
container: {
|
|
4922
4806
|
display: "flex",
|
|
@@ -4962,8 +4846,8 @@ var LocationsSectionInfo = ({
|
|
|
4962
4846
|
}
|
|
4963
4847
|
return "STOCK";
|
|
4964
4848
|
};
|
|
4965
|
-
return /* @__PURE__ */ jsxs53(
|
|
4966
|
-
/* @__PURE__ */
|
|
4849
|
+
return /* @__PURE__ */ jsxs53(Box18, { className: classes.container, children: [
|
|
4850
|
+
/* @__PURE__ */ jsx86(
|
|
4967
4851
|
Chip,
|
|
4968
4852
|
{
|
|
4969
4853
|
className: classNames2(classes.defaultChip, {
|
|
@@ -4974,20 +4858,20 @@ var LocationsSectionInfo = ({
|
|
|
4974
4858
|
label: getLocationLabel()
|
|
4975
4859
|
}
|
|
4976
4860
|
),
|
|
4977
|
-
/* @__PURE__ */
|
|
4861
|
+
/* @__PURE__ */ jsx86(Typography14, { className: classes.locationText, color: "primary", children: principalLocation }),
|
|
4978
4862
|
secondaryLocation?.map((loc) => /* @__PURE__ */ jsxs53(Fragment8, { children: [
|
|
4979
|
-
/* @__PURE__ */
|
|
4980
|
-
/* @__PURE__ */
|
|
4863
|
+
/* @__PURE__ */ jsx86(Typography14, { className: classes.smallTitle, children: "/" }),
|
|
4864
|
+
/* @__PURE__ */ jsx86(Typography14, { className: classes.locationText, children: loc })
|
|
4981
4865
|
] }, loc))
|
|
4982
4866
|
] });
|
|
4983
4867
|
};
|
|
4984
4868
|
var LocationsSectionInfo_default = LocationsSectionInfo;
|
|
4985
4869
|
|
|
4986
4870
|
// src/components/Notes/Notes.tsx
|
|
4987
|
-
import { useEffect as
|
|
4871
|
+
import { useEffect as useEffect2, useState as useState6 } from "react";
|
|
4988
4872
|
import { FormControl as FormControl3, Input, InputAdornment as InputAdornment2, InputLabel as InputLabel3 } from "@mui/material";
|
|
4989
4873
|
import { makeStyles as makeStyles29 } from "tss-react/mui";
|
|
4990
|
-
import { jsx as
|
|
4874
|
+
import { jsx as jsx87, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
4991
4875
|
var useStyles29 = makeStyles29()((theme) => ({
|
|
4992
4876
|
wrapper: {
|
|
4993
4877
|
padding: theme.spacing(3),
|
|
@@ -5004,8 +4888,8 @@ var Notes2 = ({
|
|
|
5004
4888
|
onChange,
|
|
5005
4889
|
onClearNotes
|
|
5006
4890
|
}) => {
|
|
5007
|
-
const [notes, setNotes] =
|
|
5008
|
-
|
|
4891
|
+
const [notes, setNotes] = useState6("");
|
|
4892
|
+
useEffect2(() => {
|
|
5009
4893
|
if (!initialNotes) {
|
|
5010
4894
|
return;
|
|
5011
4895
|
}
|
|
@@ -5030,13 +4914,13 @@ var Notes2 = ({
|
|
|
5030
4914
|
}
|
|
5031
4915
|
};
|
|
5032
4916
|
const { classes } = useStyles29();
|
|
5033
|
-
return /* @__PURE__ */
|
|
5034
|
-
/* @__PURE__ */
|
|
5035
|
-
/* @__PURE__ */
|
|
4917
|
+
return /* @__PURE__ */ jsx87("div", { className: classes.wrapper, children: /* @__PURE__ */ jsxs54(FormControl3, { fullWidth: true, children: [
|
|
4918
|
+
/* @__PURE__ */ jsx87(InputLabel3, { htmlFor: "notes", children: "Notes" }),
|
|
4919
|
+
/* @__PURE__ */ jsx87(
|
|
5036
4920
|
Input,
|
|
5037
4921
|
{
|
|
5038
4922
|
disabled: isDisabled || isLoading,
|
|
5039
|
-
endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */
|
|
4923
|
+
endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */ jsx87(InputAdornment2, { position: "end", children: /* @__PURE__ */ jsx87(
|
|
5040
4924
|
RoundButton_default,
|
|
5041
4925
|
{
|
|
5042
4926
|
disabled: isLoading,
|
|
@@ -5062,7 +4946,7 @@ var Notes2 = ({
|
|
|
5062
4946
|
var Notes_default = Notes2;
|
|
5063
4947
|
|
|
5064
4948
|
// src/components/Numpad/Numpad.tsx
|
|
5065
|
-
import { jsx as
|
|
4949
|
+
import { jsx as jsx88, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
5066
4950
|
var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
5067
4951
|
"div",
|
|
5068
4952
|
{
|
|
@@ -5077,7 +4961,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5077
4961
|
children: [
|
|
5078
4962
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5079
4963
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5080
|
-
/* @__PURE__ */
|
|
4964
|
+
/* @__PURE__ */ jsx88(
|
|
5081
4965
|
RoundButton_default,
|
|
5082
4966
|
{
|
|
5083
4967
|
onClick: () => handleClick("1"),
|
|
@@ -5086,7 +4970,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5086
4970
|
children: "1"
|
|
5087
4971
|
}
|
|
5088
4972
|
),
|
|
5089
|
-
/* @__PURE__ */
|
|
4973
|
+
/* @__PURE__ */ jsx88(
|
|
5090
4974
|
RoundButton_default,
|
|
5091
4975
|
{
|
|
5092
4976
|
onClick: () => handleClick("2"),
|
|
@@ -5095,7 +4979,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5095
4979
|
children: "2"
|
|
5096
4980
|
}
|
|
5097
4981
|
),
|
|
5098
|
-
/* @__PURE__ */
|
|
4982
|
+
/* @__PURE__ */ jsx88(
|
|
5099
4983
|
RoundButton_default,
|
|
5100
4984
|
{
|
|
5101
4985
|
onClick: () => handleClick("3"),
|
|
@@ -5106,7 +4990,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5106
4990
|
)
|
|
5107
4991
|
] }),
|
|
5108
4992
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5109
|
-
/* @__PURE__ */
|
|
4993
|
+
/* @__PURE__ */ jsx88(
|
|
5110
4994
|
RoundButton_default,
|
|
5111
4995
|
{
|
|
5112
4996
|
onClick: () => handleClick("4"),
|
|
@@ -5115,7 +4999,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5115
4999
|
children: "4"
|
|
5116
5000
|
}
|
|
5117
5001
|
),
|
|
5118
|
-
/* @__PURE__ */
|
|
5002
|
+
/* @__PURE__ */ jsx88(
|
|
5119
5003
|
RoundButton_default,
|
|
5120
5004
|
{
|
|
5121
5005
|
onClick: () => handleClick("5"),
|
|
@@ -5124,7 +5008,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5124
5008
|
children: "5"
|
|
5125
5009
|
}
|
|
5126
5010
|
),
|
|
5127
|
-
/* @__PURE__ */
|
|
5011
|
+
/* @__PURE__ */ jsx88(
|
|
5128
5012
|
RoundButton_default,
|
|
5129
5013
|
{
|
|
5130
5014
|
onClick: () => handleClick("6"),
|
|
@@ -5135,7 +5019,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5135
5019
|
)
|
|
5136
5020
|
] }),
|
|
5137
5021
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5138
|
-
/* @__PURE__ */
|
|
5022
|
+
/* @__PURE__ */ jsx88(
|
|
5139
5023
|
RoundButton_default,
|
|
5140
5024
|
{
|
|
5141
5025
|
onClick: () => handleClick("7"),
|
|
@@ -5144,7 +5028,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5144
5028
|
children: "7"
|
|
5145
5029
|
}
|
|
5146
5030
|
),
|
|
5147
|
-
/* @__PURE__ */
|
|
5031
|
+
/* @__PURE__ */ jsx88(
|
|
5148
5032
|
RoundButton_default,
|
|
5149
5033
|
{
|
|
5150
5034
|
onClick: () => handleClick("8"),
|
|
@@ -5153,7 +5037,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5153
5037
|
children: "8"
|
|
5154
5038
|
}
|
|
5155
5039
|
),
|
|
5156
|
-
/* @__PURE__ */
|
|
5040
|
+
/* @__PURE__ */ jsx88(
|
|
5157
5041
|
RoundButton_default,
|
|
5158
5042
|
{
|
|
5159
5043
|
onClick: () => handleClick("9"),
|
|
@@ -5164,7 +5048,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5164
5048
|
)
|
|
5165
5049
|
] }),
|
|
5166
5050
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5167
|
-
/* @__PURE__ */
|
|
5051
|
+
/* @__PURE__ */ jsx88(
|
|
5168
5052
|
RoundButton_default,
|
|
5169
5053
|
{
|
|
5170
5054
|
onClick: () => handleClick("0"),
|
|
@@ -5173,7 +5057,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5173
5057
|
children: "0"
|
|
5174
5058
|
}
|
|
5175
5059
|
),
|
|
5176
|
-
/* @__PURE__ */
|
|
5060
|
+
/* @__PURE__ */ jsx88(
|
|
5177
5061
|
RoundButton_default,
|
|
5178
5062
|
{
|
|
5179
5063
|
onClick: () => handleClick("."),
|
|
@@ -5184,7 +5068,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5184
5068
|
)
|
|
5185
5069
|
] })
|
|
5186
5070
|
] }),
|
|
5187
|
-
/* @__PURE__ */
|
|
5071
|
+
/* @__PURE__ */ jsx88(
|
|
5188
5072
|
"div",
|
|
5189
5073
|
{
|
|
5190
5074
|
style: {
|
|
@@ -5193,7 +5077,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5193
5077
|
justifyContent: "space-between",
|
|
5194
5078
|
borderLeft: `1px solid ${colors.neutral250}`
|
|
5195
5079
|
},
|
|
5196
|
-
children: /* @__PURE__ */
|
|
5080
|
+
children: /* @__PURE__ */ jsx88(
|
|
5197
5081
|
RoundButton_default,
|
|
5198
5082
|
{
|
|
5199
5083
|
icon: "backspaceOutlined",
|
|
@@ -5210,10 +5094,10 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5210
5094
|
var Numpad_default = Numpad;
|
|
5211
5095
|
|
|
5212
5096
|
// src/components/NumpadInput/NumpadInput.tsx
|
|
5213
|
-
import { memo as memo15, useState as
|
|
5214
|
-
import { TextField as
|
|
5097
|
+
import { memo as memo15, useState as useState7 } from "react";
|
|
5098
|
+
import { TextField as TextField4, Typography as Typography15 } from "@mui/material";
|
|
5215
5099
|
import { makeStyles as makeStyles30 } from "tss-react/mui";
|
|
5216
|
-
import { jsx as
|
|
5100
|
+
import { jsx as jsx89, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
5217
5101
|
var useStyles30 = makeStyles30()(() => ({
|
|
5218
5102
|
c_numpadinput__textfield: {
|
|
5219
5103
|
"& .MuiInputLabel-outlined.MuiInputLabel-shrink": {
|
|
@@ -5240,7 +5124,7 @@ var useStyles30 = makeStyles30()(() => ({
|
|
|
5240
5124
|
var NumpadInput = (props) => {
|
|
5241
5125
|
const { handleNextClick, inputLabel, children } = props;
|
|
5242
5126
|
const { classes } = useStyles30();
|
|
5243
|
-
const [state, setState] =
|
|
5127
|
+
const [state, setState] = useState7("");
|
|
5244
5128
|
const handleNumpadClick = (value) => {
|
|
5245
5129
|
setState(state + value);
|
|
5246
5130
|
};
|
|
@@ -5251,12 +5135,12 @@ var NumpadInput = (props) => {
|
|
|
5251
5135
|
handleNextClick?.(state);
|
|
5252
5136
|
}
|
|
5253
5137
|
const DefaultInput = /* @__PURE__ */ jsxs56("div", { children: [
|
|
5254
|
-
/* @__PURE__ */
|
|
5255
|
-
/* @__PURE__ */
|
|
5256
|
-
|
|
5138
|
+
/* @__PURE__ */ jsx89(Typography15, { variant: "h5", style: { padding: "16px 0 3rem" }, children: inputLabel }),
|
|
5139
|
+
/* @__PURE__ */ jsx89("form", { noValidate: true, autoComplete: "off", children: /* @__PURE__ */ jsx89(
|
|
5140
|
+
TextField4,
|
|
5257
5141
|
{
|
|
5258
5142
|
id: "outlined-basic",
|
|
5259
|
-
label: /* @__PURE__ */
|
|
5143
|
+
label: /* @__PURE__ */ jsx89(Typography15, { style: { fontSize: "1.5rem" }, children: "Insert" }),
|
|
5260
5144
|
value: state,
|
|
5261
5145
|
variant: "outlined",
|
|
5262
5146
|
autoFocus: true,
|
|
@@ -5274,24 +5158,24 @@ var NumpadInput = (props) => {
|
|
|
5274
5158
|
return /* @__PURE__ */ jsxs56("div", { children: [
|
|
5275
5159
|
/* @__PURE__ */ jsxs56("div", { className: classes.c_numpadinput__body, children: [
|
|
5276
5160
|
children || DefaultInput,
|
|
5277
|
-
/* @__PURE__ */
|
|
5161
|
+
/* @__PURE__ */ jsx89(Numpad_default, { handleClick: handleNumpadClick, handleUndo })
|
|
5278
5162
|
] }),
|
|
5279
|
-
state ? /* @__PURE__ */
|
|
5163
|
+
state ? /* @__PURE__ */ jsx89(
|
|
5280
5164
|
FilledButtonLg_default,
|
|
5281
5165
|
{
|
|
5282
5166
|
color: "primary",
|
|
5283
5167
|
copy: "next",
|
|
5284
5168
|
handleClick: handleSubmit
|
|
5285
5169
|
}
|
|
5286
|
-
) : /* @__PURE__ */
|
|
5170
|
+
) : /* @__PURE__ */ jsx89(FilledButtonLg_default, { copy: "next", disabled: true })
|
|
5287
5171
|
] });
|
|
5288
5172
|
};
|
|
5289
5173
|
var NumpadInput_default = memo15(NumpadInput);
|
|
5290
5174
|
|
|
5291
5175
|
// src/components/NumpadPlus/NumpadPlus.tsx
|
|
5292
|
-
import { Box as
|
|
5176
|
+
import { Box as Box19 } from "@mui/material";
|
|
5293
5177
|
import { makeStyles as makeStyles31 } from "tss-react/mui";
|
|
5294
|
-
import { jsx as
|
|
5178
|
+
import { jsx as jsx90, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
5295
5179
|
var useStyles31 = makeStyles31()(() => ({
|
|
5296
5180
|
numpadContainer: {
|
|
5297
5181
|
display: "flex",
|
|
@@ -5323,10 +5207,10 @@ var useStyles31 = makeStyles31()(() => ({
|
|
|
5323
5207
|
}));
|
|
5324
5208
|
var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
5325
5209
|
const { classes: styles } = useStyles31();
|
|
5326
|
-
return /* @__PURE__ */ jsxs57(
|
|
5327
|
-
/* @__PURE__ */ jsxs57(
|
|
5328
|
-
/* @__PURE__ */ jsxs57(
|
|
5329
|
-
/* @__PURE__ */
|
|
5210
|
+
return /* @__PURE__ */ jsxs57(Box19, { className: styles.numpadContainer, children: [
|
|
5211
|
+
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadNumbersContainer, children: [
|
|
5212
|
+
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5213
|
+
/* @__PURE__ */ jsx90(
|
|
5330
5214
|
RoundButton_default,
|
|
5331
5215
|
{
|
|
5332
5216
|
onClick: () => handleClick("1"),
|
|
@@ -5335,7 +5219,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5335
5219
|
children: "1"
|
|
5336
5220
|
}
|
|
5337
5221
|
),
|
|
5338
|
-
/* @__PURE__ */
|
|
5222
|
+
/* @__PURE__ */ jsx90(
|
|
5339
5223
|
RoundButton_default,
|
|
5340
5224
|
{
|
|
5341
5225
|
onClick: () => handleClick("2"),
|
|
@@ -5344,7 +5228,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5344
5228
|
children: "2"
|
|
5345
5229
|
}
|
|
5346
5230
|
),
|
|
5347
|
-
/* @__PURE__ */
|
|
5231
|
+
/* @__PURE__ */ jsx90(
|
|
5348
5232
|
RoundButton_default,
|
|
5349
5233
|
{
|
|
5350
5234
|
onClick: () => handleClick("3"),
|
|
@@ -5354,8 +5238,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5354
5238
|
}
|
|
5355
5239
|
)
|
|
5356
5240
|
] }),
|
|
5357
|
-
/* @__PURE__ */ jsxs57(
|
|
5358
|
-
/* @__PURE__ */
|
|
5241
|
+
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5242
|
+
/* @__PURE__ */ jsx90(
|
|
5359
5243
|
RoundButton_default,
|
|
5360
5244
|
{
|
|
5361
5245
|
onClick: () => handleClick("4"),
|
|
@@ -5364,7 +5248,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5364
5248
|
children: "4"
|
|
5365
5249
|
}
|
|
5366
5250
|
),
|
|
5367
|
-
/* @__PURE__ */
|
|
5251
|
+
/* @__PURE__ */ jsx90(
|
|
5368
5252
|
RoundButton_default,
|
|
5369
5253
|
{
|
|
5370
5254
|
onClick: () => handleClick("5"),
|
|
@@ -5373,7 +5257,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5373
5257
|
children: "5"
|
|
5374
5258
|
}
|
|
5375
5259
|
),
|
|
5376
|
-
/* @__PURE__ */
|
|
5260
|
+
/* @__PURE__ */ jsx90(
|
|
5377
5261
|
RoundButton_default,
|
|
5378
5262
|
{
|
|
5379
5263
|
onClick: () => handleClick("6"),
|
|
@@ -5383,8 +5267,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5383
5267
|
}
|
|
5384
5268
|
)
|
|
5385
5269
|
] }),
|
|
5386
|
-
/* @__PURE__ */ jsxs57(
|
|
5387
|
-
/* @__PURE__ */
|
|
5270
|
+
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5271
|
+
/* @__PURE__ */ jsx90(
|
|
5388
5272
|
RoundButton_default,
|
|
5389
5273
|
{
|
|
5390
5274
|
onClick: () => handleClick("7"),
|
|
@@ -5393,7 +5277,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5393
5277
|
children: "7"
|
|
5394
5278
|
}
|
|
5395
5279
|
),
|
|
5396
|
-
/* @__PURE__ */
|
|
5280
|
+
/* @__PURE__ */ jsx90(
|
|
5397
5281
|
RoundButton_default,
|
|
5398
5282
|
{
|
|
5399
5283
|
onClick: () => handleClick("8"),
|
|
@@ -5402,7 +5286,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5402
5286
|
children: "8"
|
|
5403
5287
|
}
|
|
5404
5288
|
),
|
|
5405
|
-
/* @__PURE__ */
|
|
5289
|
+
/* @__PURE__ */ jsx90(
|
|
5406
5290
|
RoundButton_default,
|
|
5407
5291
|
{
|
|
5408
5292
|
onClick: () => handleClick("9"),
|
|
@@ -5412,8 +5296,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5412
5296
|
}
|
|
5413
5297
|
)
|
|
5414
5298
|
] }),
|
|
5415
|
-
/* @__PURE__ */ jsxs57(
|
|
5416
|
-
/* @__PURE__ */
|
|
5299
|
+
/* @__PURE__ */ jsxs57(Box19, { className: styles.numpadRow, children: [
|
|
5300
|
+
/* @__PURE__ */ jsx90(
|
|
5417
5301
|
RoundButton_default,
|
|
5418
5302
|
{
|
|
5419
5303
|
onClick: () => handleClick("0"),
|
|
@@ -5422,7 +5306,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5422
5306
|
children: "0"
|
|
5423
5307
|
}
|
|
5424
5308
|
),
|
|
5425
|
-
/* @__PURE__ */
|
|
5309
|
+
/* @__PURE__ */ jsx90(
|
|
5426
5310
|
RoundButton_default,
|
|
5427
5311
|
{
|
|
5428
5312
|
onClick: () => handleClick("."),
|
|
@@ -5431,7 +5315,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5431
5315
|
children: "."
|
|
5432
5316
|
}
|
|
5433
5317
|
),
|
|
5434
|
-
/* @__PURE__ */
|
|
5318
|
+
/* @__PURE__ */ jsx90(
|
|
5435
5319
|
RoundButton_default,
|
|
5436
5320
|
{
|
|
5437
5321
|
onClick: () => handleClick("-"),
|
|
@@ -5442,7 +5326,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5442
5326
|
)
|
|
5443
5327
|
] })
|
|
5444
5328
|
] }),
|
|
5445
|
-
/* @__PURE__ */
|
|
5329
|
+
/* @__PURE__ */ jsx90(Box19, { className: styles.numpadBackspace, children: /* @__PURE__ */ jsx90(
|
|
5446
5330
|
RoundButton_default,
|
|
5447
5331
|
{
|
|
5448
5332
|
icon: "backspaceOutlined",
|
|
@@ -5458,7 +5342,7 @@ var NumpadPlus_default = NumpadPlus;
|
|
|
5458
5342
|
// src/components/Pagination/Pagination.tsx
|
|
5459
5343
|
import { Pagination, Paper as Paper4, Typography as Typography16 } from "@mui/material";
|
|
5460
5344
|
import { makeStyles as makeStyles32 } from "tss-react/mui";
|
|
5461
|
-
import { jsx as
|
|
5345
|
+
import { jsx as jsx91, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
5462
5346
|
var paginationHeight = "56px";
|
|
5463
5347
|
var useStyles32 = makeStyles32()((theme) => ({
|
|
5464
5348
|
root: {
|
|
@@ -5501,7 +5385,7 @@ var PaginationForTable = ({
|
|
|
5501
5385
|
updateFilters({ ...appliedFilters, page: value });
|
|
5502
5386
|
};
|
|
5503
5387
|
const isFixed = position === "fixed";
|
|
5504
|
-
return /* @__PURE__ */
|
|
5388
|
+
return /* @__PURE__ */ jsx91(Paper4, { children: /* @__PURE__ */ jsxs58(
|
|
5505
5389
|
"div",
|
|
5506
5390
|
{
|
|
5507
5391
|
style,
|
|
@@ -5513,7 +5397,7 @@ var PaginationForTable = ({
|
|
|
5513
5397
|
"Page: ",
|
|
5514
5398
|
page
|
|
5515
5399
|
] }),
|
|
5516
|
-
/* @__PURE__ */
|
|
5400
|
+
/* @__PURE__ */ jsx91(
|
|
5517
5401
|
Pagination,
|
|
5518
5402
|
{
|
|
5519
5403
|
count: pagination.num_pages,
|
|
@@ -5529,9 +5413,9 @@ var Pagination_default = PaginationForTable;
|
|
|
5529
5413
|
|
|
5530
5414
|
// src/components/PhoneInput/PhoneInput.tsx
|
|
5531
5415
|
import ReactPhoneInput from "react-phone-input-material-ui";
|
|
5532
|
-
import { Box as
|
|
5533
|
-
import { jsx as
|
|
5534
|
-
var TextInput = (props) => /* @__PURE__ */
|
|
5416
|
+
import { Box as Box20, TextField as TextField5, Typography as Typography17 } from "@mui/material";
|
|
5417
|
+
import { jsx as jsx92, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
5418
|
+
var TextInput = (props) => /* @__PURE__ */ jsx92(TextField5, { ...props, variant: "standard" });
|
|
5535
5419
|
var PhoneInput = ({
|
|
5536
5420
|
value,
|
|
5537
5421
|
onChange,
|
|
@@ -5540,7 +5424,7 @@ var PhoneInput = ({
|
|
|
5540
5424
|
className,
|
|
5541
5425
|
error = false
|
|
5542
5426
|
}) => /* @__PURE__ */ jsxs59(
|
|
5543
|
-
|
|
5427
|
+
Box20,
|
|
5544
5428
|
{
|
|
5545
5429
|
sx: {
|
|
5546
5430
|
width: "100%",
|
|
@@ -5548,7 +5432,7 @@ var PhoneInput = ({
|
|
|
5548
5432
|
},
|
|
5549
5433
|
className,
|
|
5550
5434
|
children: [
|
|
5551
|
-
/* @__PURE__ */
|
|
5435
|
+
/* @__PURE__ */ jsx92(
|
|
5552
5436
|
ReactPhoneInput,
|
|
5553
5437
|
{
|
|
5554
5438
|
label,
|
|
@@ -5563,7 +5447,7 @@ var PhoneInput = ({
|
|
|
5563
5447
|
}
|
|
5564
5448
|
}
|
|
5565
5449
|
),
|
|
5566
|
-
/* @__PURE__ */
|
|
5450
|
+
/* @__PURE__ */ jsx92(
|
|
5567
5451
|
Typography17,
|
|
5568
5452
|
{
|
|
5569
5453
|
variant: "caption",
|
|
@@ -5583,16 +5467,16 @@ var PhoneInput = ({
|
|
|
5583
5467
|
var PhoneInput_default = PhoneInput;
|
|
5584
5468
|
|
|
5585
5469
|
// src/components/PlusMinusInput/PlusMinusInput.tsx
|
|
5586
|
-
import { useCallback, useEffect as
|
|
5470
|
+
import { useCallback, useEffect as useEffect3 } from "react";
|
|
5587
5471
|
import { Controller as Controller7, useForm, useWatch } from "react-hook-form";
|
|
5588
5472
|
import {
|
|
5589
5473
|
FormControlLabel as FormControlLabel2,
|
|
5590
5474
|
FormGroup,
|
|
5591
|
-
TextField as
|
|
5475
|
+
TextField as TextField6,
|
|
5592
5476
|
Typography as Typography18
|
|
5593
5477
|
} from "@mui/material";
|
|
5594
5478
|
import { makeStyles as makeStyles33 } from "tss-react/mui";
|
|
5595
|
-
import { jsx as
|
|
5479
|
+
import { jsx as jsx93, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
5596
5480
|
var useStyles33 = makeStyles33()((theme) => ({
|
|
5597
5481
|
container: {
|
|
5598
5482
|
position: "relative",
|
|
@@ -5679,7 +5563,7 @@ var PlusMinusInput = ({
|
|
|
5679
5563
|
},
|
|
5680
5564
|
[setValue]
|
|
5681
5565
|
);
|
|
5682
|
-
|
|
5566
|
+
useEffect3(() => {
|
|
5683
5567
|
clearErrors("inputValue");
|
|
5684
5568
|
if (inputValue === "") {
|
|
5685
5569
|
setError("inputValue", {
|
|
@@ -5699,7 +5583,7 @@ var PlusMinusInput = ({
|
|
|
5699
5583
|
}
|
|
5700
5584
|
}
|
|
5701
5585
|
}, [clearErrors, inputValue, setError]);
|
|
5702
|
-
|
|
5586
|
+
useEffect3(() => {
|
|
5703
5587
|
if (typeof initialValue !== "number") {
|
|
5704
5588
|
return;
|
|
5705
5589
|
}
|
|
@@ -5735,7 +5619,7 @@ var PlusMinusInput = ({
|
|
|
5735
5619
|
updateInputValue(value);
|
|
5736
5620
|
};
|
|
5737
5621
|
const { classes, cx } = useStyles33();
|
|
5738
|
-
return /* @__PURE__ */
|
|
5622
|
+
return /* @__PURE__ */ jsx93("div", { className: classes.container, children: /* @__PURE__ */ jsxs60(
|
|
5739
5623
|
FormGroup,
|
|
5740
5624
|
{
|
|
5741
5625
|
className: cx(classes.wrapper, {
|
|
@@ -5743,7 +5627,7 @@ var PlusMinusInput = ({
|
|
|
5743
5627
|
[classes.rightButtons]: buttonsPosition === "right"
|
|
5744
5628
|
}),
|
|
5745
5629
|
children: [
|
|
5746
|
-
/* @__PURE__ */
|
|
5630
|
+
/* @__PURE__ */ jsx93(
|
|
5747
5631
|
RoundButton_default,
|
|
5748
5632
|
{
|
|
5749
5633
|
className: classes.minus,
|
|
@@ -5754,18 +5638,18 @@ var PlusMinusInput = ({
|
|
|
5754
5638
|
}
|
|
5755
5639
|
),
|
|
5756
5640
|
/* @__PURE__ */ jsxs60("div", { children: [
|
|
5757
|
-
/* @__PURE__ */
|
|
5641
|
+
/* @__PURE__ */ jsx93(
|
|
5758
5642
|
Controller7,
|
|
5759
5643
|
{
|
|
5760
5644
|
control,
|
|
5761
5645
|
name: "inputValue",
|
|
5762
|
-
render: ({ field }) => /* @__PURE__ */
|
|
5646
|
+
render: ({ field }) => /* @__PURE__ */ jsx93(
|
|
5763
5647
|
FormControlLabel2,
|
|
5764
5648
|
{
|
|
5765
5649
|
...field,
|
|
5766
5650
|
className: classes.formControlLabel,
|
|
5767
|
-
control: /* @__PURE__ */
|
|
5768
|
-
|
|
5651
|
+
control: /* @__PURE__ */ jsx93(
|
|
5652
|
+
TextField6,
|
|
5769
5653
|
{
|
|
5770
5654
|
className: classes.input,
|
|
5771
5655
|
disabled,
|
|
@@ -5781,7 +5665,7 @@ var PlusMinusInput = ({
|
|
|
5781
5665
|
)
|
|
5782
5666
|
}
|
|
5783
5667
|
),
|
|
5784
|
-
errors.inputValue && /* @__PURE__ */
|
|
5668
|
+
errors.inputValue && /* @__PURE__ */ jsx93(
|
|
5785
5669
|
Typography18,
|
|
5786
5670
|
{
|
|
5787
5671
|
className: classes.errorText,
|
|
@@ -5792,7 +5676,7 @@ var PlusMinusInput = ({
|
|
|
5792
5676
|
}
|
|
5793
5677
|
)
|
|
5794
5678
|
] }),
|
|
5795
|
-
/* @__PURE__ */
|
|
5679
|
+
/* @__PURE__ */ jsx93(
|
|
5796
5680
|
RoundButton_default,
|
|
5797
5681
|
{
|
|
5798
5682
|
className: classes.plus,
|
|
@@ -5809,28 +5693,28 @@ var PlusMinusInput = ({
|
|
|
5809
5693
|
var PlusMinusInput_default = PlusMinusInput;
|
|
5810
5694
|
|
|
5811
5695
|
// src/components/ProductBust/ProductBust.tsx
|
|
5812
|
-
import { useState as
|
|
5696
|
+
import { useState as useState8 } from "react";
|
|
5813
5697
|
import { Typography as Typography19 } from "@mui/material";
|
|
5814
5698
|
import { withStyles as withStyles4 } from "tss-react/mui";
|
|
5815
5699
|
|
|
5816
5700
|
// src/components/ProductImage/ProductImage.tsx
|
|
5817
5701
|
import { CardMedia } from "@mui/material";
|
|
5818
5702
|
import { withStyles as withStyles3 } from "tss-react/mui";
|
|
5819
|
-
import { jsx as
|
|
5703
|
+
import { jsx as jsx94, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
5820
5704
|
var PImage = ({
|
|
5821
5705
|
classes,
|
|
5822
5706
|
image,
|
|
5823
5707
|
size = "c_productbust__image_xs",
|
|
5824
5708
|
status
|
|
5825
5709
|
}) => /* @__PURE__ */ jsxs61("div", { className: classes.c_productbust__image, children: [
|
|
5826
|
-
/* @__PURE__ */
|
|
5710
|
+
/* @__PURE__ */ jsx94(
|
|
5827
5711
|
CardMedia,
|
|
5828
5712
|
{
|
|
5829
5713
|
className: classes[size],
|
|
5830
5714
|
image: image || "@/resources/img/peas.jpg"
|
|
5831
5715
|
}
|
|
5832
5716
|
),
|
|
5833
|
-
status && status !== "ACTIVE" && /* @__PURE__ */
|
|
5717
|
+
status && status !== "ACTIVE" && /* @__PURE__ */ jsx94("div", { className: classes.c_productbust__label_status, children: status })
|
|
5834
5718
|
] });
|
|
5835
5719
|
var ProductImage = withStyles3(PImage, (theme) => ({
|
|
5836
5720
|
c_productbust__label_status: {
|
|
@@ -5912,7 +5796,7 @@ var ProductImage = withStyles3(PImage, (theme) => ({
|
|
|
5912
5796
|
var ProductImage_default = ProductImage;
|
|
5913
5797
|
|
|
5914
5798
|
// src/components/ProductBust/ProductBust.tsx
|
|
5915
|
-
import { Fragment as Fragment9, jsx as
|
|
5799
|
+
import { Fragment as Fragment9, jsx as jsx95, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
5916
5800
|
var PBust = ({
|
|
5917
5801
|
classes,
|
|
5918
5802
|
size,
|
|
@@ -5954,8 +5838,8 @@ var PBust = ({
|
|
|
5954
5838
|
default:
|
|
5955
5839
|
break;
|
|
5956
5840
|
}
|
|
5957
|
-
const [historyVisible, setHistoryVisible] =
|
|
5958
|
-
const historyDataIcon = () => /* @__PURE__ */
|
|
5841
|
+
const [historyVisible, setHistoryVisible] = useState8(false);
|
|
5842
|
+
const historyDataIcon = () => /* @__PURE__ */ jsx95(
|
|
5959
5843
|
RoundButton_default,
|
|
5960
5844
|
{
|
|
5961
5845
|
icon: "history",
|
|
@@ -5964,7 +5848,7 @@ var PBust = ({
|
|
|
5964
5848
|
}
|
|
5965
5849
|
);
|
|
5966
5850
|
return /* @__PURE__ */ jsxs62("div", { className: classes.c_productbust, children: [
|
|
5967
|
-
/* @__PURE__ */
|
|
5851
|
+
/* @__PURE__ */ jsx95(
|
|
5968
5852
|
ProductImage_default,
|
|
5969
5853
|
{
|
|
5970
5854
|
image: product?.image,
|
|
@@ -5975,7 +5859,7 @@ var PBust = ({
|
|
|
5975
5859
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__container, children: [
|
|
5976
5860
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__heading, children: [
|
|
5977
5861
|
/* @__PURE__ */ jsxs62("div", { children: [
|
|
5978
|
-
/* @__PURE__ */
|
|
5862
|
+
/* @__PURE__ */ jsx95(
|
|
5979
5863
|
Typography19,
|
|
5980
5864
|
{
|
|
5981
5865
|
component: "span",
|
|
@@ -5984,10 +5868,10 @@ var PBust = ({
|
|
|
5984
5868
|
children: !!locationData && locationData
|
|
5985
5869
|
}
|
|
5986
5870
|
),
|
|
5987
|
-
/* @__PURE__ */
|
|
5988
|
-
!product && /* @__PURE__ */
|
|
5871
|
+
/* @__PURE__ */ jsx95(Typography19, { component: "span", className: classes[titleSize], children: product?.name }),
|
|
5872
|
+
!product && /* @__PURE__ */ jsx95(Typography19, { component: "span", className: classes[titleSize], children: "Empty Position" }),
|
|
5989
5873
|
primaryData || /* @__PURE__ */ jsxs62(Fragment9, { children: [
|
|
5990
|
-
/* @__PURE__ */
|
|
5874
|
+
/* @__PURE__ */ jsx95(
|
|
5991
5875
|
Typography19,
|
|
5992
5876
|
{
|
|
5993
5877
|
style: { color: "#555" },
|
|
@@ -5995,7 +5879,7 @@ var PBust = ({
|
|
|
5995
5879
|
children: product?.category.name
|
|
5996
5880
|
}
|
|
5997
5881
|
),
|
|
5998
|
-
/* @__PURE__ */
|
|
5882
|
+
/* @__PURE__ */ jsx95(
|
|
5999
5883
|
Typography19,
|
|
6000
5884
|
{
|
|
6001
5885
|
style: { color: "#A42966", textTransform: "uppercase" },
|
|
@@ -6006,13 +5890,13 @@ var PBust = ({
|
|
|
6006
5890
|
] })
|
|
6007
5891
|
] }),
|
|
6008
5892
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__btns, children: [
|
|
6009
|
-
/* @__PURE__ */
|
|
6010
|
-
/* @__PURE__ */
|
|
5893
|
+
/* @__PURE__ */ jsx95("div", { children: buttonData }),
|
|
5894
|
+
/* @__PURE__ */ jsx95("div", { children: !!locationId && historyDataIcon() })
|
|
6011
5895
|
] })
|
|
6012
5896
|
] }),
|
|
6013
|
-
/* @__PURE__ */
|
|
5897
|
+
/* @__PURE__ */ jsx95("div", { children: !!secondaryData && secondaryData })
|
|
6014
5898
|
] }),
|
|
6015
|
-
/* @__PURE__ */
|
|
5899
|
+
/* @__PURE__ */ jsx95(
|
|
6016
5900
|
LocationHistoryDialog,
|
|
6017
5901
|
{
|
|
6018
5902
|
handleVisible: setHistoryVisible,
|
|
@@ -6114,9 +5998,9 @@ var ProductBust = withStyles4(PBust, (theme) => ({
|
|
|
6114
5998
|
var ProductBust_default = ProductBust;
|
|
6115
5999
|
|
|
6116
6000
|
// src/components/RenderAvatar/RenderAvatar.tsx
|
|
6117
|
-
import { Avatar as Avatar2, Badge, Box as
|
|
6001
|
+
import { Avatar as Avatar2, Badge, Box as Box21, Typography as Typography20 } from "@mui/material";
|
|
6118
6002
|
import { withStyles as withStyles5 } from "tss-react/mui";
|
|
6119
|
-
import { jsx as
|
|
6003
|
+
import { jsx as jsx96, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
6120
6004
|
var RenderAvatar = ({ active }) => {
|
|
6121
6005
|
const StyledBadge = withStyles5(Badge, () => ({
|
|
6122
6006
|
root: {
|
|
@@ -6126,11 +6010,11 @@ var RenderAvatar = ({ active }) => {
|
|
|
6126
6010
|
}
|
|
6127
6011
|
}));
|
|
6128
6012
|
return /* @__PURE__ */ jsxs63(
|
|
6129
|
-
|
|
6013
|
+
Box21,
|
|
6130
6014
|
{
|
|
6131
6015
|
sx: { display: "flex", flexDirection: "column", alignItems: "center" },
|
|
6132
6016
|
children: [
|
|
6133
|
-
/* @__PURE__ */
|
|
6017
|
+
/* @__PURE__ */ jsx96(
|
|
6134
6018
|
StyledBadge,
|
|
6135
6019
|
{
|
|
6136
6020
|
overlap: "circular",
|
|
@@ -6139,10 +6023,10 @@ var RenderAvatar = ({ active }) => {
|
|
|
6139
6023
|
horizontal: "right"
|
|
6140
6024
|
},
|
|
6141
6025
|
variant: "dot",
|
|
6142
|
-
children: /* @__PURE__ */
|
|
6026
|
+
children: /* @__PURE__ */ jsx96(Avatar2, {})
|
|
6143
6027
|
}
|
|
6144
6028
|
),
|
|
6145
|
-
/* @__PURE__ */
|
|
6029
|
+
/* @__PURE__ */ jsx96(Typography20, { variant: "caption", children: active ? "Active" : "Disabled" })
|
|
6146
6030
|
]
|
|
6147
6031
|
}
|
|
6148
6032
|
);
|
|
@@ -6150,7 +6034,7 @@ var RenderAvatar = ({ active }) => {
|
|
|
6150
6034
|
var RenderAvatar_default = RenderAvatar;
|
|
6151
6035
|
|
|
6152
6036
|
// src/components/RenderContentList/RenderContentList.tsx
|
|
6153
|
-
import { useEffect as
|
|
6037
|
+
import { useEffect as useEffect5, useState as useState10, useRef as useRef2 } from "react";
|
|
6154
6038
|
import { WarningAmber } from "@mui/icons-material";
|
|
6155
6039
|
import {
|
|
6156
6040
|
List as List2,
|
|
@@ -6162,11 +6046,11 @@ import {
|
|
|
6162
6046
|
import { makeStyles as makeStyles34 } from "tss-react/mui";
|
|
6163
6047
|
|
|
6164
6048
|
// src/utils/useGetActiveSection.ts
|
|
6165
|
-
import { useEffect as
|
|
6049
|
+
import { useEffect as useEffect4, useState as useState9 } from "react";
|
|
6166
6050
|
var transformNameToID = (name) => name.replaceAll(" ", "-").toLocaleLowerCase();
|
|
6167
6051
|
|
|
6168
6052
|
// src/components/RenderContentList/RenderContentList.tsx
|
|
6169
|
-
import { jsx as
|
|
6053
|
+
import { jsx as jsx97, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
6170
6054
|
var useStyles34 = makeStyles34()(
|
|
6171
6055
|
(_theme, _params, classes) => ({
|
|
6172
6056
|
root: {
|
|
@@ -6187,12 +6071,12 @@ var RenderContentList = ({
|
|
|
6187
6071
|
warningMessage = "Missing information on this section"
|
|
6188
6072
|
}) => {
|
|
6189
6073
|
const { classes } = useStyles34();
|
|
6190
|
-
const [active, setActive] =
|
|
6191
|
-
const observer =
|
|
6192
|
-
|
|
6074
|
+
const [active, setActive] = useState10(activeSection);
|
|
6075
|
+
const observer = useRef2(null);
|
|
6076
|
+
useEffect5(() => {
|
|
6193
6077
|
setActive(activeSection);
|
|
6194
6078
|
}, [activeSection]);
|
|
6195
|
-
|
|
6079
|
+
useEffect5(() => {
|
|
6196
6080
|
const sections = items.map((item) => ({
|
|
6197
6081
|
id: transformNameToID(item),
|
|
6198
6082
|
element: document.getElementById(transformNameToID(item))
|
|
@@ -6220,12 +6104,12 @@ var RenderContentList = ({
|
|
|
6220
6104
|
observer.current?.disconnect();
|
|
6221
6105
|
};
|
|
6222
6106
|
}, [items]);
|
|
6223
|
-
return /* @__PURE__ */
|
|
6107
|
+
return /* @__PURE__ */ jsx97(
|
|
6224
6108
|
List2,
|
|
6225
6109
|
{
|
|
6226
6110
|
component: "nav",
|
|
6227
6111
|
"aria-labelledby": "nested-list-subheader",
|
|
6228
|
-
subheader: /* @__PURE__ */
|
|
6112
|
+
subheader: /* @__PURE__ */ jsx97(ListSubheader2, { component: "div", id: "nested-list-subheader", children: "Contents" }),
|
|
6229
6113
|
children: items.map((item) => {
|
|
6230
6114
|
const id = transformNameToID(item);
|
|
6231
6115
|
return /* @__PURE__ */ jsxs64(
|
|
@@ -6237,8 +6121,8 @@ var RenderContentList = ({
|
|
|
6237
6121
|
selected: active === id,
|
|
6238
6122
|
classes: { root: classes.root, selected: classes.selected },
|
|
6239
6123
|
children: [
|
|
6240
|
-
/* @__PURE__ */
|
|
6241
|
-
warningItems?.includes(item) && /* @__PURE__ */
|
|
6124
|
+
/* @__PURE__ */ jsx97(ListItemText5, { primary: item }),
|
|
6125
|
+
warningItems?.includes(item) && /* @__PURE__ */ jsx97(Tooltip4, { title: warningMessage, children: /* @__PURE__ */ jsx97(WarningAmber, { color: "warning" }) })
|
|
6242
6126
|
]
|
|
6243
6127
|
},
|
|
6244
6128
|
id
|
|
@@ -6250,9 +6134,9 @@ var RenderContentList = ({
|
|
|
6250
6134
|
var RenderContentList_default = RenderContentList;
|
|
6251
6135
|
|
|
6252
6136
|
// src/components/RowProductCard/RowProductCard.tsx
|
|
6253
|
-
import { Box as
|
|
6137
|
+
import { Box as Box22, Divider as Divider4, Paper as Paper5, Typography as Typography21 } from "@mui/material";
|
|
6254
6138
|
import { makeStyles as makeStyles35 } from "tss-react/mui";
|
|
6255
|
-
import { Fragment as Fragment10, jsx as
|
|
6139
|
+
import { Fragment as Fragment10, jsx as jsx98, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
6256
6140
|
var useStyles35 = makeStyles35()((theme) => ({
|
|
6257
6141
|
wrapper: {
|
|
6258
6142
|
display: "flex",
|
|
@@ -6292,7 +6176,7 @@ var RowProductCard = ({
|
|
|
6292
6176
|
large: "c_productbust__image_lg"
|
|
6293
6177
|
};
|
|
6294
6178
|
return /* @__PURE__ */ jsxs65(Paper5, { className: classes.wrapper, children: [
|
|
6295
|
-
/* @__PURE__ */
|
|
6179
|
+
/* @__PURE__ */ jsx98(
|
|
6296
6180
|
ProductImage_default,
|
|
6297
6181
|
{
|
|
6298
6182
|
image: product.image,
|
|
@@ -6308,7 +6192,7 @@ var RowProductCard = ({
|
|
|
6308
6192
|
}),
|
|
6309
6193
|
children: [
|
|
6310
6194
|
/* @__PURE__ */ jsxs65(
|
|
6311
|
-
|
|
6195
|
+
Box22,
|
|
6312
6196
|
{
|
|
6313
6197
|
className: classes.upperRow,
|
|
6314
6198
|
sx: {
|
|
@@ -6318,25 +6202,25 @@ var RowProductCard = ({
|
|
|
6318
6202
|
},
|
|
6319
6203
|
children: [
|
|
6320
6204
|
/* @__PURE__ */ jsxs65("div", { children: [
|
|
6321
|
-
location ? /* @__PURE__ */
|
|
6322
|
-
/* @__PURE__ */
|
|
6205
|
+
location ? /* @__PURE__ */ jsx98(Typography21, { className: classes.smallTitle, variant: "caption", children: `Location: ${location}` }) : null,
|
|
6206
|
+
/* @__PURE__ */ jsx98(Typography21, { variant: "h6", children: product.name })
|
|
6323
6207
|
] }),
|
|
6324
6208
|
children
|
|
6325
6209
|
]
|
|
6326
6210
|
}
|
|
6327
6211
|
),
|
|
6328
6212
|
hasColumns ? /* @__PURE__ */ jsxs65(Fragment10, { children: [
|
|
6329
|
-
/* @__PURE__ */
|
|
6330
|
-
/* @__PURE__ */
|
|
6331
|
-
|
|
6213
|
+
/* @__PURE__ */ jsx98(Divider4, { className: classes.divider }),
|
|
6214
|
+
/* @__PURE__ */ jsx98(
|
|
6215
|
+
Box22,
|
|
6332
6216
|
{
|
|
6333
6217
|
sx: {
|
|
6334
6218
|
display: "flex",
|
|
6335
6219
|
gap: "24px"
|
|
6336
6220
|
},
|
|
6337
6221
|
children: columns.map((column) => /* @__PURE__ */ jsxs65("div", { children: [
|
|
6338
|
-
/* @__PURE__ */
|
|
6339
|
-
typeof column.value === "string" ? /* @__PURE__ */
|
|
6222
|
+
/* @__PURE__ */ jsx98(Typography21, { className: classes.smallTitle, variant: "caption", children: column.title }),
|
|
6223
|
+
typeof column.value === "string" ? /* @__PURE__ */ jsx98(Typography21, { variant: "body1", children: column.value }) : column.value
|
|
6340
6224
|
] }, column.title))
|
|
6341
6225
|
}
|
|
6342
6226
|
)
|
|
@@ -6349,10 +6233,10 @@ var RowProductCard = ({
|
|
|
6349
6233
|
var RowProductCard_default = RowProductCard;
|
|
6350
6234
|
|
|
6351
6235
|
// src/components/ScrollableDialog/ScrollableDialog.tsx
|
|
6352
|
-
import { useEffect as
|
|
6353
|
-
import { Box as
|
|
6236
|
+
import { useEffect as useEffect6, useState as useState11 } from "react";
|
|
6237
|
+
import { Box as Box23, Dialog as Dialog4, Divider as Divider5, Fade, Paper as Paper6, Typography as Typography22 } from "@mui/material";
|
|
6354
6238
|
import { makeStyles as makeStyles36 } from "tss-react/mui";
|
|
6355
|
-
import { jsx as
|
|
6239
|
+
import { jsx as jsx99, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
6356
6240
|
var useStyles36 = makeStyles36()((theme) => ({
|
|
6357
6241
|
dialog: {
|
|
6358
6242
|
margin: "0 auto",
|
|
@@ -6394,10 +6278,10 @@ var ScrollableDialog = ({
|
|
|
6394
6278
|
isOpen,
|
|
6395
6279
|
title
|
|
6396
6280
|
}) => {
|
|
6397
|
-
const [bodyHeight, setBodyHeight] =
|
|
6398
|
-
const [hasScrollBar, setHasScrollBar] =
|
|
6399
|
-
const [maxDialogHeight, setMaxDialogHeight] =
|
|
6400
|
-
const [screenHeight, setScreenHeight] =
|
|
6281
|
+
const [bodyHeight, setBodyHeight] = useState11(0);
|
|
6282
|
+
const [hasScrollBar, setHasScrollBar] = useState11(false);
|
|
6283
|
+
const [maxDialogHeight, setMaxDialogHeight] = useState11(0);
|
|
6284
|
+
const [screenHeight, setScreenHeight] = useState11(0);
|
|
6401
6285
|
const { classes, cx } = useStyles36();
|
|
6402
6286
|
const setDialogBodyMaxHeight = () => {
|
|
6403
6287
|
const titleHeight = document.querySelector("#dialog-title")?.clientHeight || 0;
|
|
@@ -6408,28 +6292,28 @@ var ScrollableDialog = ({
|
|
|
6408
6292
|
maxDialogHeight - headerHeight - titleHeight - titleMargin - footerHeight2
|
|
6409
6293
|
);
|
|
6410
6294
|
};
|
|
6411
|
-
|
|
6295
|
+
useEffect6(() => {
|
|
6412
6296
|
setScreenHeight(window.innerHeight);
|
|
6413
6297
|
}, []);
|
|
6414
|
-
|
|
6298
|
+
useEffect6(() => {
|
|
6415
6299
|
if (!header) {
|
|
6416
6300
|
return;
|
|
6417
6301
|
}
|
|
6418
6302
|
setDialogBodyMaxHeight();
|
|
6419
6303
|
}, [header]);
|
|
6420
|
-
|
|
6304
|
+
useEffect6(() => {
|
|
6421
6305
|
if (!body) {
|
|
6422
6306
|
return;
|
|
6423
6307
|
}
|
|
6424
6308
|
const bodyScrollBarHeight = document.querySelector("#dialog-body")?.scrollHeight || 0;
|
|
6425
6309
|
setHasScrollBar(bodyScrollBarHeight > bodyHeight);
|
|
6426
6310
|
}, [body]);
|
|
6427
|
-
|
|
6311
|
+
useEffect6(() => {
|
|
6428
6312
|
if (!isOpen) {
|
|
6429
6313
|
setBodyHeight(0);
|
|
6430
6314
|
}
|
|
6431
6315
|
}, [isOpen]);
|
|
6432
|
-
|
|
6316
|
+
useEffect6(() => {
|
|
6433
6317
|
if (!screenHeight) {
|
|
6434
6318
|
return;
|
|
6435
6319
|
}
|
|
@@ -6440,15 +6324,15 @@ var ScrollableDialog = ({
|
|
|
6440
6324
|
screenHeight < necessaryHeight ? screenHeight - dialogMargin : defaultDialogMaxHeight
|
|
6441
6325
|
);
|
|
6442
6326
|
}, [screenHeight]);
|
|
6443
|
-
|
|
6327
|
+
useEffect6(() => {
|
|
6444
6328
|
if (isOpen && maxDialogHeight) {
|
|
6445
6329
|
setDialogBodyMaxHeight();
|
|
6446
6330
|
}
|
|
6447
6331
|
}, [isOpen, maxDialogHeight, header]);
|
|
6448
|
-
return /* @__PURE__ */
|
|
6449
|
-
header ? /* @__PURE__ */
|
|
6332
|
+
return /* @__PURE__ */ jsx99(Dialog4, { className: classes.dialog, fullWidth: true, maxWidth: false, open: isOpen, children: /* @__PURE__ */ jsx99(Fade, { in: isOpen, children: /* @__PURE__ */ jsxs66(Paper6, { className: classes.wrapper, children: [
|
|
6333
|
+
header ? /* @__PURE__ */ jsx99("div", { className: classes.header, id: "dialog-header", children: header }) : null,
|
|
6450
6334
|
/* @__PURE__ */ jsxs66("div", { className: classes.body, children: [
|
|
6451
|
-
/* @__PURE__ */
|
|
6335
|
+
/* @__PURE__ */ jsx99(
|
|
6452
6336
|
Typography22,
|
|
6453
6337
|
{
|
|
6454
6338
|
className: classes.title,
|
|
@@ -6457,7 +6341,7 @@ var ScrollableDialog = ({
|
|
|
6457
6341
|
children: title
|
|
6458
6342
|
}
|
|
6459
6343
|
),
|
|
6460
|
-
/* @__PURE__ */
|
|
6344
|
+
/* @__PURE__ */ jsx99(
|
|
6461
6345
|
"div",
|
|
6462
6346
|
{
|
|
6463
6347
|
className: cx(classes.scrollableContainer, {
|
|
@@ -6471,9 +6355,9 @@ var ScrollableDialog = ({
|
|
|
6471
6355
|
}
|
|
6472
6356
|
)
|
|
6473
6357
|
] }),
|
|
6474
|
-
/* @__PURE__ */
|
|
6475
|
-
footer ? /* @__PURE__ */
|
|
6476
|
-
|
|
6358
|
+
/* @__PURE__ */ jsx99(Divider5, {}),
|
|
6359
|
+
footer ? /* @__PURE__ */ jsx99(
|
|
6360
|
+
Box23,
|
|
6477
6361
|
{
|
|
6478
6362
|
className: classes.footer,
|
|
6479
6363
|
id: "dialog-footer",
|
|
@@ -6489,11 +6373,11 @@ var ScrollableDialog = ({
|
|
|
6489
6373
|
var ScrollableDialog_default = ScrollableDialog;
|
|
6490
6374
|
|
|
6491
6375
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeader.tsx
|
|
6492
|
-
import { Box as
|
|
6376
|
+
import { Box as Box24, Paper as Paper8 } from "@mui/material";
|
|
6493
6377
|
import { makeStyles as makeStyles38 } from "tss-react/mui";
|
|
6494
6378
|
|
|
6495
6379
|
// src/components/SearchWithFilters/SearchWithFilters.tsx
|
|
6496
|
-
import { useState as
|
|
6380
|
+
import { useState as useState12, useEffect as useEffect7 } from "react";
|
|
6497
6381
|
import * as React2 from "react";
|
|
6498
6382
|
import {
|
|
6499
6383
|
ArrowDropDown as ArrowDropDownIcon,
|
|
@@ -6502,7 +6386,7 @@ import {
|
|
|
6502
6386
|
} from "@mui/icons-material";
|
|
6503
6387
|
import { Button as Button11, Divider as Divider6, InputBase, Paper as Paper7 } from "@mui/material";
|
|
6504
6388
|
import { makeStyles as makeStyles37 } from "tss-react/mui";
|
|
6505
|
-
import { jsx as
|
|
6389
|
+
import { jsx as jsx100, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
6506
6390
|
var useStyles37 = makeStyles37()((theme) => ({
|
|
6507
6391
|
searchContainer: {
|
|
6508
6392
|
height: 46,
|
|
@@ -6547,7 +6431,7 @@ var SearchWithFilters = ({
|
|
|
6547
6431
|
},
|
|
6548
6432
|
disabled = false
|
|
6549
6433
|
}) => {
|
|
6550
|
-
const [searchText, setSearchText] =
|
|
6434
|
+
const [searchText, setSearchText] = useState12(searchValue);
|
|
6551
6435
|
const { classes } = useStyles37();
|
|
6552
6436
|
const handleTextChange = (e) => {
|
|
6553
6437
|
const { value } = e.target;
|
|
@@ -6559,12 +6443,12 @@ var SearchWithFilters = ({
|
|
|
6559
6443
|
enterPressedInSearch?.();
|
|
6560
6444
|
}
|
|
6561
6445
|
};
|
|
6562
|
-
|
|
6446
|
+
useEffect7(() => {
|
|
6563
6447
|
setSearchText(searchValue);
|
|
6564
6448
|
}, [searchValue]);
|
|
6565
6449
|
return /* @__PURE__ */ jsxs67(Paper7, { className: classes.searchContainer, children: [
|
|
6566
|
-
/* @__PURE__ */
|
|
6567
|
-
/* @__PURE__ */
|
|
6450
|
+
/* @__PURE__ */ jsx100(SearchIcon, { className: classes.icon, fontSize: "small" }),
|
|
6451
|
+
/* @__PURE__ */ jsx100(
|
|
6568
6452
|
InputBase,
|
|
6569
6453
|
{
|
|
6570
6454
|
className: classes.input,
|
|
@@ -6576,7 +6460,7 @@ var SearchWithFilters = ({
|
|
|
6576
6460
|
inputProps: { "aria-label": "search" }
|
|
6577
6461
|
}
|
|
6578
6462
|
),
|
|
6579
|
-
/* @__PURE__ */
|
|
6463
|
+
/* @__PURE__ */ jsx100(Divider6, { className: classes.divider, orientation: "vertical" }),
|
|
6580
6464
|
/* @__PURE__ */ jsxs67(
|
|
6581
6465
|
Button11,
|
|
6582
6466
|
{
|
|
@@ -6585,7 +6469,7 @@ var SearchWithFilters = ({
|
|
|
6585
6469
|
disabled,
|
|
6586
6470
|
children: [
|
|
6587
6471
|
"Filters",
|
|
6588
|
-
showFilters ? /* @__PURE__ */
|
|
6472
|
+
showFilters ? /* @__PURE__ */ jsx100(ArrowDropUpIcon, {}) : /* @__PURE__ */ jsx100(ArrowDropDownIcon, {})
|
|
6589
6473
|
]
|
|
6590
6474
|
}
|
|
6591
6475
|
)
|
|
@@ -6594,7 +6478,7 @@ var SearchWithFilters = ({
|
|
|
6594
6478
|
var SearchWithFilters_default = React2.memo(SearchWithFilters);
|
|
6595
6479
|
|
|
6596
6480
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeader.tsx
|
|
6597
|
-
import { jsx as
|
|
6481
|
+
import { jsx as jsx101, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
6598
6482
|
var useStyles38 = makeStyles38()((theme) => ({
|
|
6599
6483
|
wrapper: {
|
|
6600
6484
|
display: "flex",
|
|
@@ -6630,11 +6514,11 @@ var SearchAndFilterHeader = ({
|
|
|
6630
6514
|
searchValue
|
|
6631
6515
|
}) => {
|
|
6632
6516
|
const { classes } = useStyles38();
|
|
6633
|
-
return /* @__PURE__ */
|
|
6634
|
-
/* @__PURE__ */ jsxs68(
|
|
6635
|
-
/* @__PURE__ */ jsxs68(
|
|
6636
|
-
/* @__PURE__ */
|
|
6637
|
-
/* @__PURE__ */
|
|
6517
|
+
return /* @__PURE__ */ jsx101(Paper8, { children: /* @__PURE__ */ jsxs68(Box24, { className: classes.wrapper, children: [
|
|
6518
|
+
/* @__PURE__ */ jsxs68(Box24, { className: classes.container, children: [
|
|
6519
|
+
/* @__PURE__ */ jsxs68(Box24, { className: classes.leftSection, children: [
|
|
6520
|
+
/* @__PURE__ */ jsx101(AppLabel_default, { appName }),
|
|
6521
|
+
/* @__PURE__ */ jsx101(
|
|
6638
6522
|
SearchWithFilters_default,
|
|
6639
6523
|
{
|
|
6640
6524
|
searchValue,
|
|
@@ -6645,9 +6529,9 @@ var SearchAndFilterHeader = ({
|
|
|
6645
6529
|
}
|
|
6646
6530
|
)
|
|
6647
6531
|
] }),
|
|
6648
|
-
/* @__PURE__ */
|
|
6532
|
+
/* @__PURE__ */ jsx101(Box24, { children: extraButton })
|
|
6649
6533
|
] }),
|
|
6650
|
-
showFilters ? /* @__PURE__ */
|
|
6534
|
+
showFilters ? /* @__PURE__ */ jsx101(Box24, { children: filtersComponent }) : null,
|
|
6651
6535
|
appliedFiltersComponent
|
|
6652
6536
|
] }) });
|
|
6653
6537
|
};
|
|
@@ -6655,19 +6539,19 @@ var SearchAndFilterHeader_default = SearchAndFilterHeader;
|
|
|
6655
6539
|
|
|
6656
6540
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeaderForTable.tsx
|
|
6657
6541
|
import * as React3 from "react";
|
|
6658
|
-
import { Box as
|
|
6542
|
+
import { Box as Box26 } from "@mui/material";
|
|
6659
6543
|
import { makeStyles as makeStyles40 } from "tss-react/mui";
|
|
6660
6544
|
|
|
6661
6545
|
// src/components/SearchWithFilters/SearchWithFiltersForTable.tsx
|
|
6662
|
-
import { useState as
|
|
6546
|
+
import { useState as useState13, memo as memo17 } from "react";
|
|
6663
6547
|
import {
|
|
6664
6548
|
ArrowDropDown as ArrowDropDownIcon2,
|
|
6665
6549
|
ArrowDropUp as ArrowDropUpIcon2,
|
|
6666
6550
|
Search as SearchIcon2
|
|
6667
6551
|
} from "@mui/icons-material";
|
|
6668
|
-
import { Box as
|
|
6552
|
+
import { Box as Box25, Button as Button12, Divider as Divider7, InputBase as InputBase2, Paper as Paper9 } from "@mui/material";
|
|
6669
6553
|
import { makeStyles as makeStyles39 } from "tss-react/mui";
|
|
6670
|
-
import { Fragment as Fragment11, jsx as
|
|
6554
|
+
import { Fragment as Fragment11, jsx as jsx102, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
6671
6555
|
var useStyles39 = makeStyles39()((theme) => ({
|
|
6672
6556
|
c_search: {
|
|
6673
6557
|
height: 46,
|
|
@@ -6727,7 +6611,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6727
6611
|
searchedValue
|
|
6728
6612
|
} = props;
|
|
6729
6613
|
const { classes } = useStyles39();
|
|
6730
|
-
const [searchText, setSearchText] =
|
|
6614
|
+
const [searchText, setSearchText] = useState13("");
|
|
6731
6615
|
const handleTextChange = (e) => {
|
|
6732
6616
|
const { value } = e.target;
|
|
6733
6617
|
setSearchText(value);
|
|
@@ -6743,8 +6627,8 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6743
6627
|
};
|
|
6744
6628
|
const ArrowIcon = isOpen ? ArrowDropUpIcon2 : ArrowDropDownIcon2;
|
|
6745
6629
|
return /* @__PURE__ */ jsxs69(Paper9, { className: classes.c_search, children: [
|
|
6746
|
-
/* @__PURE__ */
|
|
6747
|
-
/* @__PURE__ */
|
|
6630
|
+
/* @__PURE__ */ jsx102(Box25, { className: classes.c_search__icon, children: /* @__PURE__ */ jsx102(SearchIcon2, { className: classes.icon, fontSize: "small" }) }),
|
|
6631
|
+
/* @__PURE__ */ jsx102(
|
|
6748
6632
|
InputBase2,
|
|
6749
6633
|
{
|
|
6750
6634
|
className: classes.c_search__input,
|
|
@@ -6755,7 +6639,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6755
6639
|
}
|
|
6756
6640
|
),
|
|
6757
6641
|
showFilterButton && /* @__PURE__ */ jsxs69(Fragment11, { children: [
|
|
6758
|
-
/* @__PURE__ */
|
|
6642
|
+
/* @__PURE__ */ jsx102(
|
|
6759
6643
|
Divider7,
|
|
6760
6644
|
{
|
|
6761
6645
|
className: classes.c_search__divider,
|
|
@@ -6769,7 +6653,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6769
6653
|
onClick: handleFilterButtonClick,
|
|
6770
6654
|
children: [
|
|
6771
6655
|
"Filters",
|
|
6772
|
-
/* @__PURE__ */
|
|
6656
|
+
/* @__PURE__ */ jsx102(ArrowIcon, { className: classes.c_search__bt_icon_filter })
|
|
6773
6657
|
]
|
|
6774
6658
|
}
|
|
6775
6659
|
)
|
|
@@ -6779,7 +6663,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6779
6663
|
var SearchWithFiltersForTable_default = memo17(SearchWithFiltersForTable);
|
|
6780
6664
|
|
|
6781
6665
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeaderForTable.tsx
|
|
6782
|
-
import { jsx as
|
|
6666
|
+
import { jsx as jsx103, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
6783
6667
|
var useStyles40 = makeStyles40()((theme) => ({
|
|
6784
6668
|
container: {
|
|
6785
6669
|
display: "flex",
|
|
@@ -6811,10 +6695,10 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
6811
6695
|
searchedValue
|
|
6812
6696
|
} = props;
|
|
6813
6697
|
const { classes } = useStyles40();
|
|
6814
|
-
return /* @__PURE__ */ jsxs70(
|
|
6815
|
-
/* @__PURE__ */ jsxs70(
|
|
6816
|
-
/* @__PURE__ */
|
|
6817
|
-
/* @__PURE__ */
|
|
6698
|
+
return /* @__PURE__ */ jsxs70(Box26, { className: classes.container, children: [
|
|
6699
|
+
/* @__PURE__ */ jsxs70(Box26, { className: classes.leftSection, children: [
|
|
6700
|
+
/* @__PURE__ */ jsx103(AppLabel_default, { appName }),
|
|
6701
|
+
/* @__PURE__ */ jsx103(
|
|
6818
6702
|
SearchWithFiltersForTable_default,
|
|
6819
6703
|
{
|
|
6820
6704
|
onFilterButtonClick,
|
|
@@ -6825,26 +6709,26 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
6825
6709
|
searchedValue
|
|
6826
6710
|
}
|
|
6827
6711
|
),
|
|
6828
|
-
copy && /* @__PURE__ */
|
|
6829
|
-
|
|
6712
|
+
copy && /* @__PURE__ */ jsx103(
|
|
6713
|
+
Box26,
|
|
6830
6714
|
{
|
|
6831
6715
|
sx: {
|
|
6832
6716
|
margin: 0.5
|
|
6833
6717
|
},
|
|
6834
|
-
children: /* @__PURE__ */
|
|
6718
|
+
children: /* @__PURE__ */ jsx103(OutlinedButton_default, { copy })
|
|
6835
6719
|
}
|
|
6836
6720
|
)
|
|
6837
6721
|
] }),
|
|
6838
|
-
/* @__PURE__ */
|
|
6722
|
+
/* @__PURE__ */ jsx103(Box26, { children: button })
|
|
6839
6723
|
] });
|
|
6840
6724
|
};
|
|
6841
6725
|
var SearchAndFilterHeaderForTable_default = React3.memo(SearchAndFilterHeaderForTable);
|
|
6842
6726
|
|
|
6843
6727
|
// src/components/SectionName/SectionName.tsx
|
|
6844
6728
|
import { History as History2, Info as InfoIcon } from "@mui/icons-material";
|
|
6845
|
-
import { Box as
|
|
6729
|
+
import { Box as Box27, Divider as Divider8, IconButton as IconButton2, Tooltip as Tooltip5, Typography as Typography23 } from "@mui/material";
|
|
6846
6730
|
import { makeStyles as makeStyles41 } from "tss-react/mui";
|
|
6847
|
-
import { jsx as
|
|
6731
|
+
import { jsx as jsx104, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
6848
6732
|
var useStyles41 = makeStyles41()((theme) => ({
|
|
6849
6733
|
container: {
|
|
6850
6734
|
display: "flex",
|
|
@@ -6887,9 +6771,9 @@ var SectionName = ({
|
|
|
6887
6771
|
openHistoryLog
|
|
6888
6772
|
}) => {
|
|
6889
6773
|
const { classes } = useStyles41();
|
|
6890
|
-
return /* @__PURE__ */ jsxs71(
|
|
6891
|
-
/* @__PURE__ */ jsxs71(
|
|
6892
|
-
/* @__PURE__ */
|
|
6774
|
+
return /* @__PURE__ */ jsxs71(Box27, { className: classes.container, children: [
|
|
6775
|
+
/* @__PURE__ */ jsxs71(Box27, { className: classes.titleContainer, children: [
|
|
6776
|
+
/* @__PURE__ */ jsx104(
|
|
6893
6777
|
Typography23,
|
|
6894
6778
|
{
|
|
6895
6779
|
variant: "h5",
|
|
@@ -6899,7 +6783,7 @@ var SectionName = ({
|
|
|
6899
6783
|
children: name
|
|
6900
6784
|
}
|
|
6901
6785
|
),
|
|
6902
|
-
tooltipDescription ? /* @__PURE__ */
|
|
6786
|
+
tooltipDescription ? /* @__PURE__ */ jsx104(Tooltip5, { title: tooltipDescription, placement: "right", children: /* @__PURE__ */ jsx104(
|
|
6903
6787
|
InfoIcon,
|
|
6904
6788
|
{
|
|
6905
6789
|
fontSize: "small",
|
|
@@ -6908,8 +6792,8 @@ var SectionName = ({
|
|
|
6908
6792
|
}
|
|
6909
6793
|
) }) : null
|
|
6910
6794
|
] }),
|
|
6911
|
-
/* @__PURE__ */ jsxs71(
|
|
6912
|
-
buttonText ? /* @__PURE__ */
|
|
6795
|
+
/* @__PURE__ */ jsxs71(Box27, { className: classes.actionButtons, children: [
|
|
6796
|
+
buttonText ? /* @__PURE__ */ jsx104(
|
|
6913
6797
|
ExtendedButton_default,
|
|
6914
6798
|
{
|
|
6915
6799
|
type: buttonType,
|
|
@@ -6922,17 +6806,17 @@ var SectionName = ({
|
|
|
6922
6806
|
variant: "text"
|
|
6923
6807
|
}
|
|
6924
6808
|
) : null,
|
|
6925
|
-
openHistoryLog && buttonText && /* @__PURE__ */
|
|
6926
|
-
openHistoryLog && /* @__PURE__ */
|
|
6809
|
+
openHistoryLog && buttonText && /* @__PURE__ */ jsx104(Divider8, { orientation: "vertical", sx: { height: "24px" } }),
|
|
6810
|
+
openHistoryLog && /* @__PURE__ */ jsx104(IconButton2, { size: "small", onClick: () => openHistoryLog(), children: /* @__PURE__ */ jsx104(History2, {}) })
|
|
6927
6811
|
] })
|
|
6928
6812
|
] });
|
|
6929
6813
|
};
|
|
6930
6814
|
var SectionName_default = SectionName;
|
|
6931
6815
|
|
|
6932
6816
|
// src/components/SmartSelect/SmartSelect.tsx
|
|
6933
|
-
import { forwardRef as
|
|
6817
|
+
import { forwardRef as forwardRef2, useState as useState14, useEffect as useEffect8 } from "react";
|
|
6934
6818
|
import {
|
|
6935
|
-
CircularProgress as
|
|
6819
|
+
CircularProgress as CircularProgress4,
|
|
6936
6820
|
FormControl as FormControl4,
|
|
6937
6821
|
FormHelperText as FormHelperText3,
|
|
6938
6822
|
InputLabel as InputLabel4,
|
|
@@ -6940,14 +6824,14 @@ import {
|
|
|
6940
6824
|
Select as Select3
|
|
6941
6825
|
} from "@mui/material";
|
|
6942
6826
|
import { makeStyles as makeStyles42 } from "tss-react/mui";
|
|
6943
|
-
import { jsx as
|
|
6827
|
+
import { jsx as jsx105, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
6944
6828
|
var useStyles42 = makeStyles42()(() => ({
|
|
6945
6829
|
container: {
|
|
6946
6830
|
display: "flex",
|
|
6947
6831
|
flexDirection: "column"
|
|
6948
6832
|
}
|
|
6949
6833
|
}));
|
|
6950
|
-
var SmartSelect =
|
|
6834
|
+
var SmartSelect = forwardRef2(
|
|
6951
6835
|
({
|
|
6952
6836
|
value,
|
|
6953
6837
|
defaultOption,
|
|
@@ -6966,9 +6850,9 @@ var SmartSelect = forwardRef3(
|
|
|
6966
6850
|
menuProps
|
|
6967
6851
|
}, ref) => {
|
|
6968
6852
|
const { classes } = useStyles42();
|
|
6969
|
-
const [open, setOpen] =
|
|
6970
|
-
const [localOptions, setLocalOptions] =
|
|
6971
|
-
|
|
6853
|
+
const [open, setOpen] = useState14(false);
|
|
6854
|
+
const [localOptions, setLocalOptions] = useState14(options || []);
|
|
6855
|
+
useEffect8(() => {
|
|
6972
6856
|
if (options) {
|
|
6973
6857
|
setLocalOptions(options);
|
|
6974
6858
|
}
|
|
@@ -7017,7 +6901,7 @@ var SmartSelect = forwardRef3(
|
|
|
7017
6901
|
"data-testid": dataTestId,
|
|
7018
6902
|
disabled,
|
|
7019
6903
|
children: [
|
|
7020
|
-
inputLabel && /* @__PURE__ */
|
|
6904
|
+
inputLabel && /* @__PURE__ */ jsx105(
|
|
7021
6905
|
InputLabel4,
|
|
7022
6906
|
{
|
|
7023
6907
|
id: "smart-select-label",
|
|
@@ -7042,17 +6926,17 @@ var SmartSelect = forwardRef3(
|
|
|
7042
6926
|
MenuProps: menuProps,
|
|
7043
6927
|
label: inputLabel,
|
|
7044
6928
|
children: [
|
|
7045
|
-
isFetching && /* @__PURE__ */
|
|
6929
|
+
isFetching && /* @__PURE__ */ jsx105(
|
|
7046
6930
|
MenuItem3,
|
|
7047
6931
|
{
|
|
7048
6932
|
disabled: true,
|
|
7049
6933
|
"data-testid": `${dataTestId}-loading`,
|
|
7050
6934
|
id: `${dataTestId}-loading`,
|
|
7051
|
-
children: /* @__PURE__ */
|
|
6935
|
+
children: /* @__PURE__ */ jsx105(CircularProgress4, { size: 24 })
|
|
7052
6936
|
}
|
|
7053
6937
|
),
|
|
7054
|
-
(defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */
|
|
7055
|
-
localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */
|
|
6938
|
+
(defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */ jsx105(MenuItem3, { disabled: true, "data-testid": `${dataTestId}-empty-message`, children: emptyMessage }),
|
|
6939
|
+
localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */ jsx105(
|
|
7056
6940
|
MenuItem3,
|
|
7057
6941
|
{
|
|
7058
6942
|
value: defaultOption?.value,
|
|
@@ -7060,7 +6944,7 @@ var SmartSelect = forwardRef3(
|
|
|
7060
6944
|
children: defaultOption?.label
|
|
7061
6945
|
}
|
|
7062
6946
|
),
|
|
7063
|
-
!isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */
|
|
6947
|
+
!isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */ jsx105(
|
|
7064
6948
|
MenuItem3,
|
|
7065
6949
|
{
|
|
7066
6950
|
value: option?.value,
|
|
@@ -7073,7 +6957,7 @@ var SmartSelect = forwardRef3(
|
|
|
7073
6957
|
]
|
|
7074
6958
|
}
|
|
7075
6959
|
),
|
|
7076
|
-
helperText && /* @__PURE__ */
|
|
6960
|
+
helperText && /* @__PURE__ */ jsx105(FormHelperText3, { "data-testid": `${dataTestId}-helper-text`, children: helperText })
|
|
7077
6961
|
]
|
|
7078
6962
|
}
|
|
7079
6963
|
);
|
|
@@ -7086,7 +6970,7 @@ import { memo as memo19 } from "react";
|
|
|
7086
6970
|
import { Typography as Typography24 } from "@mui/material";
|
|
7087
6971
|
import red2 from "@mui/material/colors/red";
|
|
7088
6972
|
import { makeStyles as makeStyles43 } from "tss-react/mui";
|
|
7089
|
-
import { jsx as
|
|
6973
|
+
import { jsx as jsx106 } from "react/jsx-runtime";
|
|
7090
6974
|
var useStyles43 = makeStyles43()((theme) => ({
|
|
7091
6975
|
red: {
|
|
7092
6976
|
backgroundColor: red2["50"],
|
|
@@ -7101,7 +6985,7 @@ var useStyles43 = makeStyles43()((theme) => ({
|
|
|
7101
6985
|
}));
|
|
7102
6986
|
var SquareLabel = ({ color, copy }) => {
|
|
7103
6987
|
const { classes } = useStyles43();
|
|
7104
|
-
return /* @__PURE__ */
|
|
6988
|
+
return /* @__PURE__ */ jsx106(Typography24, { className: classes[color], children: copy });
|
|
7105
6989
|
};
|
|
7106
6990
|
var SquareLabel_default = memo19(SquareLabel);
|
|
7107
6991
|
|
|
@@ -7109,7 +6993,7 @@ var SquareLabel_default = memo19(SquareLabel);
|
|
|
7109
6993
|
import { memo as memo20 } from "react";
|
|
7110
6994
|
import { Grid2, Switch } from "@mui/material";
|
|
7111
6995
|
import { withStyles as withStyles6 } from "tss-react/mui";
|
|
7112
|
-
import { jsx as
|
|
6996
|
+
import { jsx as jsx107, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
7113
6997
|
var LSwitch = ({
|
|
7114
6998
|
checked,
|
|
7115
6999
|
labelOn,
|
|
@@ -7117,7 +7001,7 @@ var LSwitch = ({
|
|
|
7117
7001
|
handleChange,
|
|
7118
7002
|
classes,
|
|
7119
7003
|
disabled
|
|
7120
|
-
}) => /* @__PURE__ */
|
|
7004
|
+
}) => /* @__PURE__ */ jsx107("div", { className: classes.c_switch, children: /* @__PURE__ */ jsxs73(
|
|
7121
7005
|
Grid2,
|
|
7122
7006
|
{
|
|
7123
7007
|
component: "label",
|
|
@@ -7127,8 +7011,8 @@ var LSwitch = ({
|
|
|
7127
7011
|
alignItems: "center"
|
|
7128
7012
|
},
|
|
7129
7013
|
children: [
|
|
7130
|
-
labelOff && /* @__PURE__ */
|
|
7131
|
-
/* @__PURE__ */
|
|
7014
|
+
labelOff && /* @__PURE__ */ jsx107(Grid2, { children: labelOff }),
|
|
7015
|
+
/* @__PURE__ */ jsx107(Grid2, { children: /* @__PURE__ */ jsx107(
|
|
7132
7016
|
Switch,
|
|
7133
7017
|
{
|
|
7134
7018
|
checked,
|
|
@@ -7137,7 +7021,7 @@ var LSwitch = ({
|
|
|
7137
7021
|
disabled
|
|
7138
7022
|
}
|
|
7139
7023
|
) }),
|
|
7140
|
-
labelOn && /* @__PURE__ */
|
|
7024
|
+
labelOn && /* @__PURE__ */ jsx107(Grid2, { children: labelOn })
|
|
7141
7025
|
]
|
|
7142
7026
|
}
|
|
7143
7027
|
) });
|
|
@@ -7165,7 +7049,7 @@ var Switch_default = memo20(LabelledSwitch);
|
|
|
7165
7049
|
import { memo as memo21 } from "react";
|
|
7166
7050
|
import { TableCell, TableHead, TableRow, TableSortLabel } from "@mui/material";
|
|
7167
7051
|
import { makeStyles as makeStyles44 } from "tss-react/mui";
|
|
7168
|
-
import { jsx as
|
|
7052
|
+
import { jsx as jsx108, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
7169
7053
|
var useStyles44 = makeStyles44()(() => ({
|
|
7170
7054
|
root: {
|
|
7171
7055
|
backgroundColor: colors.neutral100,
|
|
@@ -7199,7 +7083,7 @@ var SmartTableHeader = (props) => {
|
|
|
7199
7083
|
const createSortHandler = (property) => (event) => {
|
|
7200
7084
|
onRequestSort?.(event, property);
|
|
7201
7085
|
};
|
|
7202
|
-
return /* @__PURE__ */
|
|
7086
|
+
return /* @__PURE__ */ jsx108(TableHead, { className: classes.root, children: /* @__PURE__ */ jsx108(TableRow, { children: props.headCells.map((headCell) => /* @__PURE__ */ jsx108(
|
|
7203
7087
|
TableCell,
|
|
7204
7088
|
{
|
|
7205
7089
|
className: classes.containerTh,
|
|
@@ -7213,7 +7097,7 @@ var SmartTableHeader = (props) => {
|
|
|
7213
7097
|
onClick: createSortHandler(headCell.id),
|
|
7214
7098
|
children: [
|
|
7215
7099
|
headCell.label,
|
|
7216
|
-
orderBy === headCell.id ? /* @__PURE__ */
|
|
7100
|
+
orderBy === headCell.id ? /* @__PURE__ */ jsx108("span", { className: classes.visuallyHidden, children: order === "desc" ? "sorted descending" : "sorted ascending" }) : null
|
|
7217
7101
|
]
|
|
7218
7102
|
}
|
|
7219
7103
|
)
|
|
@@ -7225,9 +7109,9 @@ var SmartTableHeader_default = memo21(SmartTableHeader);
|
|
|
7225
7109
|
|
|
7226
7110
|
// src/components/Table/Table.tsx
|
|
7227
7111
|
var import_debounce = __toESM(require_debounce(), 1);
|
|
7228
|
-
import { useLayoutEffect, useState as
|
|
7112
|
+
import { useLayoutEffect, useState as useState15 } from "react";
|
|
7229
7113
|
import {
|
|
7230
|
-
Box as
|
|
7114
|
+
Box as Box29,
|
|
7231
7115
|
Paper as Paper10,
|
|
7232
7116
|
Table as MUITable,
|
|
7233
7117
|
TableBody,
|
|
@@ -7276,9 +7160,9 @@ function calculateRowsPerPage(rowHeight) {
|
|
|
7276
7160
|
}
|
|
7277
7161
|
|
|
7278
7162
|
// src/components/Table/TableLoading.tsx
|
|
7279
|
-
import { Box as
|
|
7280
|
-
import { jsx as
|
|
7281
|
-
var TableLoading = ({ rowsPerPage = 0, rowHeight }) => /* @__PURE__ */
|
|
7163
|
+
import { Box as Box28, Skeleton as Skeleton2 } from "@mui/material";
|
|
7164
|
+
import { jsx as jsx109 } from "react/jsx-runtime";
|
|
7165
|
+
var TableLoading = ({ rowsPerPage = 0, rowHeight }) => /* @__PURE__ */ jsx109(Box28, { children: Array.from({ length: rowsPerPage }).map((x, i) => /* @__PURE__ */ jsx109(
|
|
7282
7166
|
Skeleton2,
|
|
7283
7167
|
{
|
|
7284
7168
|
animation: "pulse",
|
|
@@ -7291,7 +7175,7 @@ var TableLoading = ({ rowsPerPage = 0, rowHeight }) => /* @__PURE__ */ jsx110(Bo
|
|
|
7291
7175
|
var TableLoading_default = TableLoading;
|
|
7292
7176
|
|
|
7293
7177
|
// src/components/Table/Table.tsx
|
|
7294
|
-
import { jsx as
|
|
7178
|
+
import { jsx as jsx110, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
7295
7179
|
var useStyles45 = makeStyles45()(() => ({
|
|
7296
7180
|
root: {
|
|
7297
7181
|
height: "calc(100vh - 262px)",
|
|
@@ -7326,11 +7210,11 @@ var Table = ({
|
|
|
7326
7210
|
serverRendered,
|
|
7327
7211
|
updateSort
|
|
7328
7212
|
}) => {
|
|
7329
|
-
const [order, setOrder] =
|
|
7330
|
-
const [orderBy, setOrderBy] =
|
|
7213
|
+
const [order, setOrder] = useState15(appliedFilters?.sortDir || "desc");
|
|
7214
|
+
const [orderBy, setOrderBy] = useState15(
|
|
7331
7215
|
appliedFilters?.sortField || "delivery_date"
|
|
7332
7216
|
);
|
|
7333
|
-
const [rowsPerPage, setRowsPerPage] =
|
|
7217
|
+
const [rowsPerPage, setRowsPerPage] = useState15(defaultRowsPerPage);
|
|
7334
7218
|
const { classes } = useStyles45();
|
|
7335
7219
|
const rowHeight = 56;
|
|
7336
7220
|
const emptyRows = rowsPerPage - Math.min(rowsPerPage, data.length - page * rowsPerPage);
|
|
@@ -7369,24 +7253,24 @@ var Table = ({
|
|
|
7369
7253
|
);
|
|
7370
7254
|
const rowsComponents = rows.map((row) => {
|
|
7371
7255
|
if (RenderItem) {
|
|
7372
|
-
return /* @__PURE__ */
|
|
7256
|
+
return /* @__PURE__ */ jsx110(RenderItem, { ...row }, row.id);
|
|
7373
7257
|
}
|
|
7374
|
-
return /* @__PURE__ */
|
|
7258
|
+
return /* @__PURE__ */ jsx110(TableRow2, { hover: true, onClick: () => onRowClick?.(row), children: headCells?.map((column) => /* @__PURE__ */ jsx110(TableCell2, { children: row[column.id] }, column.id)) }, row.id);
|
|
7375
7259
|
});
|
|
7376
7260
|
if (emptyRows > 0 && rowsPerPage > emptyRows) {
|
|
7377
7261
|
rowsComponents.push(
|
|
7378
|
-
/* @__PURE__ */
|
|
7262
|
+
/* @__PURE__ */ jsx110(TableRow2, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ jsx110(TableCell2, { colSpan: 8 }) }, uuidv4())
|
|
7379
7263
|
);
|
|
7380
7264
|
}
|
|
7381
7265
|
return rowsComponents;
|
|
7382
7266
|
};
|
|
7383
|
-
return /* @__PURE__ */
|
|
7384
|
-
/* @__PURE__ */
|
|
7267
|
+
return /* @__PURE__ */ jsx110(Paper10, { className: classes.root, children: /* @__PURE__ */ jsx110(Box29, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx110(TableLoading_default, { rowHeight, rowsPerPage }) : /* @__PURE__ */ jsx110(TableContainer, { className: classes.container, children: /* @__PURE__ */ jsxs75(MUITable, { size: "medium", stickyHeader: true, children: [
|
|
7268
|
+
/* @__PURE__ */ jsx110(TableHead2, { className: classes.header, children: /* @__PURE__ */ jsx110(TableRow2, { children: headCells?.map((headCell) => /* @__PURE__ */ jsx110(
|
|
7385
7269
|
TableCell2,
|
|
7386
7270
|
{
|
|
7387
7271
|
align: "left",
|
|
7388
7272
|
sortDirection: orderBy === headCell.id ? order : void 0,
|
|
7389
|
-
children: /* @__PURE__ */
|
|
7273
|
+
children: /* @__PURE__ */ jsx110(
|
|
7390
7274
|
TableSortLabel2,
|
|
7391
7275
|
{
|
|
7392
7276
|
active: orderBy === headCell.id,
|
|
@@ -7400,14 +7284,14 @@ var Table = ({
|
|
|
7400
7284
|
)) }) }),
|
|
7401
7285
|
/* @__PURE__ */ jsxs75(TableBody, { children: [
|
|
7402
7286
|
getTableRows(),
|
|
7403
|
-
rowsPerPage === emptyRows && /* @__PURE__ */
|
|
7287
|
+
rowsPerPage === emptyRows && /* @__PURE__ */ jsx110(TableRow2, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ jsx110(TableCell2, { colSpan: 8, align: "center", children: "Nothing to display" }) })
|
|
7404
7288
|
] })
|
|
7405
7289
|
] }) }) }) });
|
|
7406
7290
|
};
|
|
7407
7291
|
var Table_default = Table;
|
|
7408
7292
|
|
|
7409
7293
|
// src/components/Table/TableDesktop.tsx
|
|
7410
|
-
import { useState as
|
|
7294
|
+
import { useState as useState16 } from "react";
|
|
7411
7295
|
import {
|
|
7412
7296
|
Paper as Paper11,
|
|
7413
7297
|
Table as Table2,
|
|
@@ -7421,7 +7305,7 @@ import { v4 as uuidv42 } from "uuid";
|
|
|
7421
7305
|
// src/components/Table/TableEmptyResult.tsx
|
|
7422
7306
|
import { TableCell as TableCell3, TableRow as TableRow3, Typography as Typography25 } from "@mui/material";
|
|
7423
7307
|
import { makeStyles as makeStyles46 } from "tss-react/mui";
|
|
7424
|
-
import { jsx as
|
|
7308
|
+
import { jsx as jsx111, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
7425
7309
|
var useStyles46 = makeStyles46()(() => ({
|
|
7426
7310
|
tableCellIcon: { padding: 24, height: "calc(100vh - 320px)" },
|
|
7427
7311
|
tableCellDefault: { padding: 24 }
|
|
@@ -7432,11 +7316,11 @@ var TableEmptyResult = ({
|
|
|
7432
7316
|
}
|
|
7433
7317
|
}) => {
|
|
7434
7318
|
const { classes } = useStyles46();
|
|
7435
|
-
return showClearFilterButton ? /* @__PURE__ */
|
|
7436
|
-
/* @__PURE__ */
|
|
7437
|
-
/* @__PURE__ */
|
|
7438
|
-
/* @__PURE__ */
|
|
7439
|
-
/* @__PURE__ */
|
|
7319
|
+
return showClearFilterButton ? /* @__PURE__ */ jsx111(TableRow3, { children: /* @__PURE__ */ jsxs76(TableCell3, { className: classes.tableCellIcon, colSpan: 8, align: "center", children: [
|
|
7320
|
+
/* @__PURE__ */ jsx111(EmptyGlassIcon_default, {}),
|
|
7321
|
+
/* @__PURE__ */ jsx111(Typography25, { variant: "h6", children: "No results found." }),
|
|
7322
|
+
/* @__PURE__ */ jsx111(Typography25, { variant: "subtitle1", children: "Search without applied filters?" }),
|
|
7323
|
+
/* @__PURE__ */ jsx111(
|
|
7440
7324
|
FilledButton_default,
|
|
7441
7325
|
{
|
|
7442
7326
|
copy: "Search",
|
|
@@ -7445,7 +7329,7 @@ var TableEmptyResult = ({
|
|
|
7445
7329
|
onClick: handleClickOnClearFiltersButton
|
|
7446
7330
|
}
|
|
7447
7331
|
)
|
|
7448
|
-
] }) }) : /* @__PURE__ */
|
|
7332
|
+
] }) }) : /* @__PURE__ */ jsx111(TableRow3, { children: /* @__PURE__ */ jsx111(
|
|
7449
7333
|
TableCell3,
|
|
7450
7334
|
{
|
|
7451
7335
|
className: classes.tableCellDefault,
|
|
@@ -7458,7 +7342,7 @@ var TableEmptyResult = ({
|
|
|
7458
7342
|
var TableEmptyResult_default = TableEmptyResult;
|
|
7459
7343
|
|
|
7460
7344
|
// src/components/Table/TableDesktop.tsx
|
|
7461
|
-
import { Fragment as Fragment12, jsx as
|
|
7345
|
+
import { Fragment as Fragment12, jsx as jsx112, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
7462
7346
|
var useStyles47 = makeStyles47()(() => ({
|
|
7463
7347
|
root: {
|
|
7464
7348
|
justifyContent: "space-between",
|
|
@@ -7504,13 +7388,13 @@ var TableDesktop = ({
|
|
|
7504
7388
|
deleteItem,
|
|
7505
7389
|
keyField
|
|
7506
7390
|
}) => {
|
|
7507
|
-
const [order, setOrder] =
|
|
7391
|
+
const [order, setOrder] = useState16(
|
|
7508
7392
|
appliedFilters?.sortDir || "desc"
|
|
7509
7393
|
);
|
|
7510
|
-
const [orderBy, setOrderBy] =
|
|
7394
|
+
const [orderBy, setOrderBy] = useState16(
|
|
7511
7395
|
appliedFilters?.sortField || "delivery_date"
|
|
7512
7396
|
);
|
|
7513
|
-
const [page] =
|
|
7397
|
+
const [page] = useState16(0);
|
|
7514
7398
|
const { classes } = useStyles47();
|
|
7515
7399
|
const rowHeight = 56;
|
|
7516
7400
|
const handleRequestSort = (event, property) => {
|
|
@@ -7521,7 +7405,7 @@ var TableDesktop = ({
|
|
|
7521
7405
|
updateSort(property, orderDir);
|
|
7522
7406
|
};
|
|
7523
7407
|
const emptyRows = rowsPerPage - data.length;
|
|
7524
|
-
return /* @__PURE__ */
|
|
7408
|
+
return /* @__PURE__ */ jsx112("div", { className: classes.root, style: { height }, children: /* @__PURE__ */ jsx112(Paper11, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx112("div", { children: [...Array(Math.floor(rowsPerPage))].map(() => /* @__PURE__ */ jsx112(
|
|
7525
7409
|
Skeleton3,
|
|
7526
7410
|
{
|
|
7527
7411
|
animation: "pulse",
|
|
@@ -7531,14 +7415,14 @@ var TableDesktop = ({
|
|
|
7531
7415
|
},
|
|
7532
7416
|
Math.random()
|
|
7533
7417
|
)) }) : /* @__PURE__ */ jsxs77(Fragment12, { children: [
|
|
7534
|
-
/* @__PURE__ */
|
|
7418
|
+
/* @__PURE__ */ jsx112(TableContainer2, { className: classes.container, children: /* @__PURE__ */ jsxs77(
|
|
7535
7419
|
Table2,
|
|
7536
7420
|
{
|
|
7537
7421
|
"aria-labelledby": "tableTitle",
|
|
7538
7422
|
"aria-label": "sticky table",
|
|
7539
7423
|
stickyHeader: true,
|
|
7540
7424
|
children: [
|
|
7541
|
-
/* @__PURE__ */
|
|
7425
|
+
/* @__PURE__ */ jsx112(
|
|
7542
7426
|
SmartTableHeader_default,
|
|
7543
7427
|
{
|
|
7544
7428
|
headCells,
|
|
@@ -7548,14 +7432,14 @@ var TableDesktop = ({
|
|
|
7548
7432
|
}
|
|
7549
7433
|
),
|
|
7550
7434
|
/* @__PURE__ */ jsxs77(TableBody2, { children: [
|
|
7551
|
-
stableSort2(data, getSorting2(order, orderBy)).slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map((item, index) => /* @__PURE__ */
|
|
7435
|
+
stableSort2(data, getSorting2(order, orderBy)).slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map((item, index) => /* @__PURE__ */ jsx112(
|
|
7552
7436
|
RenderItem,
|
|
7553
7437
|
{
|
|
7554
7438
|
...{ ...item, index, deleteItem }
|
|
7555
7439
|
},
|
|
7556
7440
|
item[keyField] || uuidv42()
|
|
7557
7441
|
)),
|
|
7558
|
-
rowsPerPage === emptyRows && /* @__PURE__ */
|
|
7442
|
+
rowsPerPage === emptyRows && /* @__PURE__ */ jsx112(
|
|
7559
7443
|
TableEmptyResult_default,
|
|
7560
7444
|
{
|
|
7561
7445
|
showClearFilterButton,
|
|
@@ -7572,11 +7456,11 @@ var TableDesktop = ({
|
|
|
7572
7456
|
var TableDesktop_default = TableDesktop;
|
|
7573
7457
|
|
|
7574
7458
|
// src/components/TableHeader/TableHeader.tsx
|
|
7575
|
-
import { memo as memo22, useEffect as
|
|
7459
|
+
import { memo as memo22, useEffect as useEffect9, useState as useState17 } from "react";
|
|
7576
7460
|
import { ImportExport as ImportExportIcon } from "@mui/icons-material";
|
|
7577
7461
|
import { TableCell as TableCell4, TableHead as TableHead3, TableRow as TableRow4, TableSortLabel as TableSortLabel3 } from "@mui/material";
|
|
7578
7462
|
import { makeStyles as makeStyles48 } from "tss-react/mui";
|
|
7579
|
-
import { jsx as
|
|
7463
|
+
import { jsx as jsx113 } from "react/jsx-runtime";
|
|
7580
7464
|
var useStyles48 = makeStyles48()(() => ({
|
|
7581
7465
|
sortLabel: {
|
|
7582
7466
|
"& .MuiTableSortLabel-icon": {
|
|
@@ -7585,9 +7469,9 @@ var useStyles48 = makeStyles48()(() => ({
|
|
|
7585
7469
|
}
|
|
7586
7470
|
}));
|
|
7587
7471
|
var TableHeader = ({ cells, onSort = null }) => {
|
|
7588
|
-
const [sortableCells, setSortableCells] =
|
|
7472
|
+
const [sortableCells, setSortableCells] = useState17([]);
|
|
7589
7473
|
const { classes } = useStyles48();
|
|
7590
|
-
|
|
7474
|
+
useEffect9(() => {
|
|
7591
7475
|
setSortableCells(cells);
|
|
7592
7476
|
}, []);
|
|
7593
7477
|
const getNewSortDirection = (direction) => {
|
|
@@ -7621,7 +7505,7 @@ var TableHeader = ({ cells, onSort = null }) => {
|
|
|
7621
7505
|
});
|
|
7622
7506
|
setSortableCells(sortedCells);
|
|
7623
7507
|
};
|
|
7624
|
-
return /* @__PURE__ */
|
|
7508
|
+
return /* @__PURE__ */ jsx113(TableHead3, { children: /* @__PURE__ */ jsx113(TableRow4, { children: sortableCells.map((cell, key) => /* @__PURE__ */ jsx113(TableCell4, { children: cell.isSortable ? /* @__PURE__ */ jsx113(
|
|
7625
7509
|
TableSortLabel3,
|
|
7626
7510
|
{
|
|
7627
7511
|
className: classes.sortLabel,
|
|
@@ -7635,9 +7519,9 @@ var TableHeader = ({ cells, onSort = null }) => {
|
|
|
7635
7519
|
var TableHeader_default = memo22(TableHeader);
|
|
7636
7520
|
|
|
7637
7521
|
// src/components/TextDivider/TextDivider.tsx
|
|
7638
|
-
import { Box as
|
|
7522
|
+
import { Box as Box30, Typography as Typography26, Divider as Divider9, Button as Button13 } from "@mui/material";
|
|
7639
7523
|
import { makeStyles as makeStyles49 } from "tss-react/mui";
|
|
7640
|
-
import { jsx as
|
|
7524
|
+
import { jsx as jsx114, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
7641
7525
|
var useStyles49 = makeStyles49()(() => ({
|
|
7642
7526
|
icon: {
|
|
7643
7527
|
fontSize: 20
|
|
@@ -7675,17 +7559,17 @@ var TextDivider = ({
|
|
|
7675
7559
|
const { classes } = useStyles49();
|
|
7676
7560
|
const iconColor = color ?? colors.neutral900;
|
|
7677
7561
|
return /* @__PURE__ */ jsxs78(
|
|
7678
|
-
|
|
7562
|
+
Box30,
|
|
7679
7563
|
{
|
|
7680
7564
|
display: "flex",
|
|
7681
7565
|
alignItems: "center",
|
|
7682
7566
|
justifyContent: "space-between",
|
|
7683
7567
|
className: classes.container,
|
|
7684
7568
|
children: [
|
|
7685
|
-
/* @__PURE__ */
|
|
7686
|
-
/* @__PURE__ */
|
|
7687
|
-
Icon3 && iconPosition === "left" && /* @__PURE__ */
|
|
7688
|
-
/* @__PURE__ */
|
|
7569
|
+
/* @__PURE__ */ jsx114(Divider9, { className: classes.leftDivider }),
|
|
7570
|
+
/* @__PURE__ */ jsx114(Button13, { onClick, disabled: !onClick, className: classes.button, children: /* @__PURE__ */ jsxs78(Box30, { className: classes.center, children: [
|
|
7571
|
+
Icon3 && iconPosition === "left" && /* @__PURE__ */ jsx114(Icon3, { className: classes.icon, style: { color: iconColor } }),
|
|
7572
|
+
/* @__PURE__ */ jsx114(
|
|
7689
7573
|
Typography26,
|
|
7690
7574
|
{
|
|
7691
7575
|
color: "textSecondary",
|
|
@@ -7694,9 +7578,9 @@ var TextDivider = ({
|
|
|
7694
7578
|
children: title
|
|
7695
7579
|
}
|
|
7696
7580
|
),
|
|
7697
|
-
Icon3 && iconPosition === "right" && /* @__PURE__ */
|
|
7581
|
+
Icon3 && iconPosition === "right" && /* @__PURE__ */ jsx114(Icon3, { className: classes.icon, style: { color: iconColor } })
|
|
7698
7582
|
] }) }),
|
|
7699
|
-
/* @__PURE__ */
|
|
7583
|
+
/* @__PURE__ */ jsx114(Divider9, { className: classes.rightDivider })
|
|
7700
7584
|
]
|
|
7701
7585
|
}
|
|
7702
7586
|
);
|
|
@@ -7709,7 +7593,7 @@ import { makeStyles as makeStyles50 } from "tss-react/mui";
|
|
|
7709
7593
|
import "react-dates/initialize";
|
|
7710
7594
|
import "react-dates/lib/css/_datepicker.css";
|
|
7711
7595
|
import classNames3 from "classnames";
|
|
7712
|
-
import { jsx as
|
|
7596
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
7713
7597
|
var useStyles50 = makeStyles50()((theme) => ({
|
|
7714
7598
|
wrapper: {
|
|
7715
7599
|
"& .DateRangePicker": {
|
|
@@ -7804,15 +7688,15 @@ var ThemedDateRangePicker = ({
|
|
|
7804
7688
|
...props
|
|
7805
7689
|
}) => {
|
|
7806
7690
|
const { classes } = useStyles50();
|
|
7807
|
-
return /* @__PURE__ */
|
|
7691
|
+
return /* @__PURE__ */ jsx115("div", { className: classNames3(classes.wrapper, className), children: /* @__PURE__ */ jsx115(DateRangePicker, { ...props }) });
|
|
7808
7692
|
};
|
|
7809
7693
|
var ThemedDateRangePicker_default = ThemedDateRangePicker;
|
|
7810
7694
|
|
|
7811
7695
|
// src/components/TheToolbar/TheToolbar.tsx
|
|
7812
7696
|
import { memo as memo23 } from "react";
|
|
7813
|
-
import { AppBar as AppBar2, Box as
|
|
7697
|
+
import { AppBar as AppBar2, Box as Box31, Toolbar as Toolbar2 } from "@mui/material";
|
|
7814
7698
|
import { makeStyles as makeStyles51 } from "tss-react/mui";
|
|
7815
|
-
import { jsx as
|
|
7699
|
+
import { jsx as jsx116, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
7816
7700
|
var useStyles51 = makeStyles51()((theme) => ({
|
|
7817
7701
|
menuButton: {
|
|
7818
7702
|
color: theme.palette.primary.contrastText
|
|
@@ -7851,9 +7735,9 @@ var TheToolbar = ({
|
|
|
7851
7735
|
LeftDrawer: LeftDrawer2
|
|
7852
7736
|
}) => {
|
|
7853
7737
|
const { classes } = useStyles51();
|
|
7854
|
-
return /* @__PURE__ */ jsxs79(
|
|
7855
|
-
/* @__PURE__ */
|
|
7856
|
-
/* @__PURE__ */
|
|
7738
|
+
return /* @__PURE__ */ jsxs79(Box31, { children: [
|
|
7739
|
+
/* @__PURE__ */ jsx116(AppBar2, { children: /* @__PURE__ */ jsxs79(Toolbar2, { className: classes.topBar, children: [
|
|
7740
|
+
/* @__PURE__ */ jsx116(
|
|
7857
7741
|
RoundButton_default,
|
|
7858
7742
|
{
|
|
7859
7743
|
className: classes.menuButton,
|
|
@@ -7862,7 +7746,7 @@ var TheToolbar = ({
|
|
|
7862
7746
|
onClick: handleOpen
|
|
7863
7747
|
}
|
|
7864
7748
|
),
|
|
7865
|
-
/* @__PURE__ */
|
|
7749
|
+
/* @__PURE__ */ jsx116(
|
|
7866
7750
|
CompanyLogo_default,
|
|
7867
7751
|
{
|
|
7868
7752
|
size: "small",
|
|
@@ -7872,7 +7756,7 @@ var TheToolbar = ({
|
|
|
7872
7756
|
}
|
|
7873
7757
|
)
|
|
7874
7758
|
] }) }),
|
|
7875
|
-
/* @__PURE__ */
|
|
7759
|
+
/* @__PURE__ */ jsx116(Box31, { className: classes.offset }),
|
|
7876
7760
|
LeftDrawer2
|
|
7877
7761
|
] });
|
|
7878
7762
|
};
|
|
@@ -7880,20 +7764,20 @@ var TheToolbar_default = memo23(TheToolbar);
|
|
|
7880
7764
|
|
|
7881
7765
|
// src/components/ToastMessage/ToastMessage.tsx
|
|
7882
7766
|
import { Alert as MuiAlert, Snackbar } from "@mui/material";
|
|
7883
|
-
import { jsx as
|
|
7767
|
+
import { jsx as jsx117 } from "react/jsx-runtime";
|
|
7884
7768
|
var ToastMessage = ({
|
|
7885
7769
|
toastType,
|
|
7886
7770
|
toastMessage,
|
|
7887
7771
|
open,
|
|
7888
7772
|
onClose
|
|
7889
|
-
}) => /* @__PURE__ */
|
|
7773
|
+
}) => /* @__PURE__ */ jsx117(
|
|
7890
7774
|
Snackbar,
|
|
7891
7775
|
{
|
|
7892
7776
|
open,
|
|
7893
7777
|
autoHideDuration: 1500,
|
|
7894
7778
|
onClose,
|
|
7895
7779
|
anchorOrigin: { vertical: "top", horizontal: "right" },
|
|
7896
|
-
children: /* @__PURE__ */
|
|
7780
|
+
children: /* @__PURE__ */ jsx117(
|
|
7897
7781
|
MuiAlert,
|
|
7898
7782
|
{
|
|
7899
7783
|
elevation: 6,
|
|
@@ -7924,13 +7808,13 @@ import {
|
|
|
7924
7808
|
Typography as Typography27,
|
|
7925
7809
|
Dialog as Dialog5,
|
|
7926
7810
|
Backdrop,
|
|
7927
|
-
Box as
|
|
7811
|
+
Box as Box32,
|
|
7928
7812
|
Divider as Divider10,
|
|
7929
7813
|
Paper as Paper12,
|
|
7930
7814
|
Fade as Fade2
|
|
7931
7815
|
} from "@mui/material";
|
|
7932
7816
|
import { makeStyles as makeStyles52 } from "tss-react/mui";
|
|
7933
|
-
import { jsx as
|
|
7817
|
+
import { jsx as jsx118, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
7934
7818
|
var useStyles52 = makeStyles52()((theme) => ({
|
|
7935
7819
|
paper: {
|
|
7936
7820
|
padding: theme.spacing(2)
|
|
@@ -7960,7 +7844,7 @@ var TwoButtonDialog = ({
|
|
|
7960
7844
|
cancelButton
|
|
7961
7845
|
}) => {
|
|
7962
7846
|
const { classes } = useStyles52();
|
|
7963
|
-
return /* @__PURE__ */
|
|
7847
|
+
return /* @__PURE__ */ jsx118(
|
|
7964
7848
|
Dialog5,
|
|
7965
7849
|
{
|
|
7966
7850
|
open,
|
|
@@ -7972,10 +7856,10 @@ var TwoButtonDialog = ({
|
|
|
7972
7856
|
BackdropProps: {
|
|
7973
7857
|
timeout: 500
|
|
7974
7858
|
},
|
|
7975
|
-
children: /* @__PURE__ */
|
|
7976
|
-
/* @__PURE__ */ jsxs80(
|
|
7977
|
-
/* @__PURE__ */
|
|
7978
|
-
|
|
7859
|
+
children: /* @__PURE__ */ jsx118(Fade2, { in: open, children: /* @__PURE__ */ jsxs80(Paper12, { className: classes.paper, children: [
|
|
7860
|
+
/* @__PURE__ */ jsxs80(Box32, { className: classes.mb, children: [
|
|
7861
|
+
/* @__PURE__ */ jsx118(Typography27, { variant: "h5", component: "div", children: /* @__PURE__ */ jsx118(
|
|
7862
|
+
Box32,
|
|
7979
7863
|
{
|
|
7980
7864
|
sx: {
|
|
7981
7865
|
fontWeight: 600
|
|
@@ -7984,22 +7868,22 @@ var TwoButtonDialog = ({
|
|
|
7984
7868
|
}
|
|
7985
7869
|
) }),
|
|
7986
7870
|
/* @__PURE__ */ jsxs80(
|
|
7987
|
-
|
|
7871
|
+
Box32,
|
|
7988
7872
|
{
|
|
7989
7873
|
className: classes.mt,
|
|
7990
7874
|
sx: {
|
|
7991
7875
|
fontWeight: 600
|
|
7992
7876
|
},
|
|
7993
7877
|
children: [
|
|
7994
|
-
subtitle1 && /* @__PURE__ */
|
|
7995
|
-
subtitle2 && /* @__PURE__ */
|
|
7878
|
+
subtitle1 && /* @__PURE__ */ jsx118(Typography27, { variant: "subtitle1", children: subtitle1 }),
|
|
7879
|
+
subtitle2 && /* @__PURE__ */ jsx118(Typography27, { variant: "subtitle1", children: subtitle2 })
|
|
7996
7880
|
]
|
|
7997
7881
|
}
|
|
7998
7882
|
)
|
|
7999
7883
|
] }),
|
|
8000
|
-
/* @__PURE__ */
|
|
8001
|
-
/* @__PURE__ */ jsxs80(
|
|
8002
|
-
/* @__PURE__ */
|
|
7884
|
+
/* @__PURE__ */ jsx118(Divider10, {}),
|
|
7885
|
+
/* @__PURE__ */ jsxs80(Box32, { className: classes.buttonContainer, children: [
|
|
7886
|
+
/* @__PURE__ */ jsx118(
|
|
8003
7887
|
FilledButton_default,
|
|
8004
7888
|
{
|
|
8005
7889
|
copy: cancelLabel,
|
|
@@ -8012,7 +7896,7 @@ var TwoButtonDialog = ({
|
|
|
8012
7896
|
}
|
|
8013
7897
|
}
|
|
8014
7898
|
),
|
|
8015
|
-
/* @__PURE__ */
|
|
7899
|
+
/* @__PURE__ */ jsx118(
|
|
8016
7900
|
FilledButton_default,
|
|
8017
7901
|
{
|
|
8018
7902
|
color: "primary",
|
|
@@ -8021,7 +7905,7 @@ var TwoButtonDialog = ({
|
|
|
8021
7905
|
}
|
|
8022
7906
|
)
|
|
8023
7907
|
] }),
|
|
8024
|
-
/* @__PURE__ */
|
|
7908
|
+
/* @__PURE__ */ jsx118(Loading_default, { isLoading: dialogLoading })
|
|
8025
7909
|
] }) })
|
|
8026
7910
|
}
|
|
8027
7911
|
);
|
|
@@ -8031,7 +7915,6 @@ export {
|
|
|
8031
7915
|
AlertDialog_default as AlertDialog,
|
|
8032
7916
|
AlertDialogFullScreen_default as AlertDialogFullScreen,
|
|
8033
7917
|
AppLabel_default as AppLabel,
|
|
8034
|
-
AutoComplete_default as AutoComplete,
|
|
8035
7918
|
BackHeader_default as BackHeader,
|
|
8036
7919
|
BottomBar_default as BottomBar,
|
|
8037
7920
|
BoxButton_default as BoxButton,
|