@natoora-libs/core 0.0.40 → 0.0.42
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.js
CHANGED
|
@@ -423,7 +423,7 @@ var AppLabel = ({ appName }) => {
|
|
|
423
423
|
};
|
|
424
424
|
var AppLabel_default = AppLabel;
|
|
425
425
|
|
|
426
|
-
// src/components/
|
|
426
|
+
// src/components/Autocomplete/Autocomplete.tsx
|
|
427
427
|
import { forwardRef, useEffect, useRef, useState } from "react";
|
|
428
428
|
import {
|
|
429
429
|
Box as Box3,
|
|
@@ -432,7 +432,7 @@ import {
|
|
|
432
432
|
Autocomplete as MUIAutocomplete
|
|
433
433
|
} from "@mui/material";
|
|
434
434
|
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
435
|
-
var
|
|
435
|
+
var Autocomplete = forwardRef(
|
|
436
436
|
({
|
|
437
437
|
value,
|
|
438
438
|
defaultValue,
|
|
@@ -538,7 +538,7 @@ var AutoComplete = forwardRef(
|
|
|
538
538
|
);
|
|
539
539
|
}
|
|
540
540
|
);
|
|
541
|
-
var
|
|
541
|
+
var Autocomplete_default = Autocomplete;
|
|
542
542
|
|
|
543
543
|
// src/components/BackHeader/BackHeader.tsx
|
|
544
544
|
import { useNavigate } from "react-router";
|
|
@@ -607,7 +607,34 @@ import {
|
|
|
607
607
|
} from "@mui/icons-material";
|
|
608
608
|
import { Box as Box5, Button as Button4, Tooltip } from "@mui/material";
|
|
609
609
|
import { makeStyles as makeStyles4 } from "tss-react/mui";
|
|
610
|
-
|
|
610
|
+
|
|
611
|
+
// src/components/icons/IconCompare.tsx
|
|
612
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
613
|
+
var SvgIconCompare = (props) => {
|
|
614
|
+
const { fill } = props;
|
|
615
|
+
return /* @__PURE__ */ jsx6(
|
|
616
|
+
"svg",
|
|
617
|
+
{
|
|
618
|
+
width: "24",
|
|
619
|
+
height: "24",
|
|
620
|
+
viewBox: "0 0 18 18",
|
|
621
|
+
fill: "none",
|
|
622
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
623
|
+
...props,
|
|
624
|
+
children: /* @__PURE__ */ jsx6(
|
|
625
|
+
"path",
|
|
626
|
+
{
|
|
627
|
+
d: "M9.75 17.25H8.25V0.75H9.75V17.25ZM6.75 14.25H3.75V3.75H6.75V2.25H3.75C2.9175 2.25 2.25 2.9175 2.25 3.75V14.25C2.25 15.0825 2.925 15.75 3.75 15.75H6.75V14.25ZM14.25 5.25V6.75H15.75V5.25H14.25ZM14.25 3.75H15.75C15.75 2.9175 15.075 2.25 14.25 2.25V3.75ZM15.75 11.25H14.25V12.75H15.75V11.25ZM14.25 8.25V9.75H15.75V8.25H14.25ZM12.75 2.25H11.25V3.75H12.75V2.25ZM14.25 15.75C15.0825 15.75 15.75 15.0825 15.75 14.25H14.25V15.75ZM12.75 14.25H11.25V15.75H12.75V14.25Z",
|
|
628
|
+
fill: fill ?? "#1976D2"
|
|
629
|
+
}
|
|
630
|
+
)
|
|
631
|
+
}
|
|
632
|
+
);
|
|
633
|
+
};
|
|
634
|
+
var IconCompare_default = SvgIconCompare;
|
|
635
|
+
|
|
636
|
+
// src/components/Buttons/ExtendedButton/ExtendedButton.tsx
|
|
637
|
+
import { jsx as jsx7, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
611
638
|
var useStyles4 = makeStyles4()((theme) => ({
|
|
612
639
|
default: {
|
|
613
640
|
boxShadow: "none",
|
|
@@ -697,10 +724,11 @@ var ExtendedButton = ({
|
|
|
697
724
|
upload: CloudUpload,
|
|
698
725
|
refresh: Refresh,
|
|
699
726
|
download: GetApp,
|
|
700
|
-
publish: Publish
|
|
727
|
+
publish: Publish,
|
|
728
|
+
compare: IconCompare_default
|
|
701
729
|
};
|
|
702
730
|
const IconComponent = icons2[type || "add"];
|
|
703
|
-
return /* @__PURE__ */
|
|
731
|
+
return /* @__PURE__ */ jsx7(Tooltip, { title: tooltip, children: /* @__PURE__ */ jsx7(Box5, { children: /* @__PURE__ */ jsxs4(
|
|
704
732
|
Button4,
|
|
705
733
|
{
|
|
706
734
|
className: cx(classes[color], className),
|
|
@@ -713,7 +741,14 @@ var ExtendedButton = ({
|
|
|
713
741
|
type: buttonType,
|
|
714
742
|
variant,
|
|
715
743
|
children: [
|
|
716
|
-
type ? /* @__PURE__ */
|
|
744
|
+
type ? /* @__PURE__ */ jsx7(
|
|
745
|
+
IconComponent,
|
|
746
|
+
{
|
|
747
|
+
fontSize: "small",
|
|
748
|
+
className: classes.icon,
|
|
749
|
+
fill: colors.muiPrimary
|
|
750
|
+
}
|
|
751
|
+
) : null,
|
|
717
752
|
/* @__PURE__ */ jsxs4(
|
|
718
753
|
"div",
|
|
719
754
|
{
|
|
@@ -721,7 +756,7 @@ var ExtendedButton = ({
|
|
|
721
756
|
style: { color: copyColor || "inherit" },
|
|
722
757
|
children: [
|
|
723
758
|
copy,
|
|
724
|
-
/* @__PURE__ */
|
|
759
|
+
/* @__PURE__ */ jsx7("span", { children: subcopy })
|
|
725
760
|
]
|
|
726
761
|
}
|
|
727
762
|
)
|
|
@@ -732,7 +767,7 @@ var ExtendedButton = ({
|
|
|
732
767
|
var ExtendedButton_default = memo(ExtendedButton);
|
|
733
768
|
|
|
734
769
|
// src/components/BottomBar/BottomBar.tsx
|
|
735
|
-
import { jsx as
|
|
770
|
+
import { jsx as jsx8, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
736
771
|
var useStyles5 = makeStyles5()((theme) => ({
|
|
737
772
|
footer: {
|
|
738
773
|
backgroundColor: colors.neutral100,
|
|
@@ -754,7 +789,7 @@ var BottomBar = ({
|
|
|
754
789
|
onRefreshClick = null
|
|
755
790
|
}) => {
|
|
756
791
|
const { classes, cx } = useStyles5();
|
|
757
|
-
return /* @__PURE__ */
|
|
792
|
+
return /* @__PURE__ */ jsx8(Paper, { className: cx(classes.footer, className), elevation: 1, children: /* @__PURE__ */ jsxs5(
|
|
758
793
|
Box6,
|
|
759
794
|
{
|
|
760
795
|
className: classes.insideWrapper,
|
|
@@ -764,7 +799,7 @@ var BottomBar = ({
|
|
|
764
799
|
justifyContent: "space-between"
|
|
765
800
|
},
|
|
766
801
|
children: [
|
|
767
|
-
onRefreshClick && /* @__PURE__ */
|
|
802
|
+
onRefreshClick && /* @__PURE__ */ jsx8(
|
|
768
803
|
ExtendedButton_default,
|
|
769
804
|
{
|
|
770
805
|
className: classes.button,
|
|
@@ -789,7 +824,7 @@ import green from "@mui/material/colors/green";
|
|
|
789
824
|
import orange from "@mui/material/colors/orange";
|
|
790
825
|
import red from "@mui/material/colors/red";
|
|
791
826
|
import { makeStyles as makeStyles6 } from "tss-react/mui";
|
|
792
|
-
import { jsx as
|
|
827
|
+
import { jsx as jsx9, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
793
828
|
var useStyles6 = makeStyles6()((theme) => ({
|
|
794
829
|
boxTab: {
|
|
795
830
|
minWidth: 130,
|
|
@@ -843,7 +878,7 @@ var BoxButton = (props) => {
|
|
|
843
878
|
className: [classes.boxTab, classes[borderColor]].join(" "),
|
|
844
879
|
onClick,
|
|
845
880
|
children: [
|
|
846
|
-
/* @__PURE__ */
|
|
881
|
+
/* @__PURE__ */ jsx9(Typography4, { variant: "button", children: label }),
|
|
847
882
|
/* @__PURE__ */ jsxs6(
|
|
848
883
|
Grid,
|
|
849
884
|
{
|
|
@@ -854,8 +889,8 @@ var BoxButton = (props) => {
|
|
|
854
889
|
alignItems: "center"
|
|
855
890
|
},
|
|
856
891
|
children: [
|
|
857
|
-
/* @__PURE__ */
|
|
858
|
-
/* @__PURE__ */
|
|
892
|
+
/* @__PURE__ */ jsx9(Grid, { size: 9, children: main }),
|
|
893
|
+
/* @__PURE__ */ jsx9(Grid, { className: classes.c_box_button__extra, size: 3, children: extra })
|
|
859
894
|
]
|
|
860
895
|
}
|
|
861
896
|
)
|
|
@@ -869,7 +904,7 @@ var BoxButton_default = memo2(BoxButton);
|
|
|
869
904
|
import { memo as memo3 } from "react";
|
|
870
905
|
import { CircularProgress as CircularProgress2, Button as Button5 } from "@mui/material";
|
|
871
906
|
import { makeStyles as makeStyles7 } from "tss-react/mui";
|
|
872
|
-
import { jsx as
|
|
907
|
+
import { jsx as jsx10, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
873
908
|
var useStyles7 = makeStyles7()((theme) => ({
|
|
874
909
|
button: {
|
|
875
910
|
background: colors.default,
|
|
@@ -953,7 +988,7 @@ var FilledButton = ({
|
|
|
953
988
|
variant,
|
|
954
989
|
children: [
|
|
955
990
|
copy,
|
|
956
|
-
isLoading && /* @__PURE__ */
|
|
991
|
+
isLoading && /* @__PURE__ */ jsx10(
|
|
957
992
|
CircularProgress2,
|
|
958
993
|
{
|
|
959
994
|
className: classes.loadingText,
|
|
@@ -971,7 +1006,7 @@ var FilledButton_default = memo3(FilledButton);
|
|
|
971
1006
|
import { memo as memo4 } from "react";
|
|
972
1007
|
import { Box as Box7, CircularProgress as CircularProgress3, Button as Button6 } from "@mui/material";
|
|
973
1008
|
import { withStyles } from "tss-react/mui";
|
|
974
|
-
import { jsx as
|
|
1009
|
+
import { jsx as jsx11, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
975
1010
|
var FilledButtonLg = ({
|
|
976
1011
|
classes,
|
|
977
1012
|
disabled,
|
|
@@ -981,7 +1016,7 @@ var FilledButtonLg = ({
|
|
|
981
1016
|
handleClick,
|
|
982
1017
|
loading = false,
|
|
983
1018
|
loadingProps
|
|
984
|
-
}) => /* @__PURE__ */
|
|
1019
|
+
}) => /* @__PURE__ */ jsx11(
|
|
985
1020
|
Button6,
|
|
986
1021
|
{
|
|
987
1022
|
variant,
|
|
@@ -998,7 +1033,7 @@ var FilledButtonLg = ({
|
|
|
998
1033
|
},
|
|
999
1034
|
children: [
|
|
1000
1035
|
copy,
|
|
1001
|
-
loading && /* @__PURE__ */
|
|
1036
|
+
loading && /* @__PURE__ */ jsx11(
|
|
1002
1037
|
CircularProgress3,
|
|
1003
1038
|
{
|
|
1004
1039
|
color: loadingProps?.color || "inherit",
|
|
@@ -1078,7 +1113,7 @@ var FilledButtonLg_default = memo4(ActionButtonLg);
|
|
|
1078
1113
|
import { memo as memo5 } from "react";
|
|
1079
1114
|
import { Button as Button7 } from "@mui/material";
|
|
1080
1115
|
import { makeStyles as makeStyles8 } from "tss-react/mui";
|
|
1081
|
-
import { jsx as
|
|
1116
|
+
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
1082
1117
|
var useStyles8 = makeStyles8()(() => ({
|
|
1083
1118
|
root: {
|
|
1084
1119
|
display: "flex",
|
|
@@ -1107,7 +1142,7 @@ var ImageButton = (props) => {
|
|
|
1107
1142
|
const e = { target: { value } };
|
|
1108
1143
|
onClick(e);
|
|
1109
1144
|
};
|
|
1110
|
-
return /* @__PURE__ */
|
|
1145
|
+
return /* @__PURE__ */ jsx12(Button7, { onClick: handleClick, className: classes.image, children: /* @__PURE__ */ jsx12("img", { className: classes.imageSrc, src, alt: "a_image" }) });
|
|
1111
1146
|
};
|
|
1112
1147
|
var ImageButton_default = memo5(ImageButton);
|
|
1113
1148
|
|
|
@@ -1115,7 +1150,7 @@ var ImageButton_default = memo5(ImageButton);
|
|
|
1115
1150
|
import { Add as Add2, ChevronRight } from "@mui/icons-material";
|
|
1116
1151
|
import { Typography as Typography5, Button as Button8 } from "@mui/material";
|
|
1117
1152
|
import { makeStyles as makeStyles9 } from "tss-react/mui";
|
|
1118
|
-
import { jsx as
|
|
1153
|
+
import { jsx as jsx13, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
1119
1154
|
var useStyles9 = makeStyles9()((theme) => ({
|
|
1120
1155
|
add: {
|
|
1121
1156
|
backgroundColor: colors.neutral100
|
|
@@ -1151,10 +1186,10 @@ var SquareButton = ({
|
|
|
1151
1186
|
}) => {
|
|
1152
1187
|
const { classes, cx } = useStyles9();
|
|
1153
1188
|
const icon = {
|
|
1154
|
-
add: /* @__PURE__ */
|
|
1155
|
-
forward: /* @__PURE__ */
|
|
1189
|
+
add: /* @__PURE__ */ jsx13(Add2, { className: classes.icon }),
|
|
1190
|
+
forward: /* @__PURE__ */ jsx13(ChevronRight, { className: classes.icon })
|
|
1156
1191
|
};
|
|
1157
|
-
return /* @__PURE__ */
|
|
1192
|
+
return /* @__PURE__ */ jsx13(
|
|
1158
1193
|
Button8,
|
|
1159
1194
|
{
|
|
1160
1195
|
className: cx(
|
|
@@ -1168,7 +1203,7 @@ var SquareButton = ({
|
|
|
1168
1203
|
variant: "contained",
|
|
1169
1204
|
children: /* @__PURE__ */ jsxs9("span", { className: classes.textWrapper, children: [
|
|
1170
1205
|
icon[type],
|
|
1171
|
-
/* @__PURE__ */
|
|
1206
|
+
/* @__PURE__ */ jsx13(Typography5, { className: classes.text, variant: "button", children })
|
|
1172
1207
|
] })
|
|
1173
1208
|
}
|
|
1174
1209
|
);
|
|
@@ -1178,7 +1213,7 @@ var SquareButton_default = SquareButton;
|
|
|
1178
1213
|
// src/components/Buttons/UploadButton/UploadButton.tsx
|
|
1179
1214
|
import { useRef as useRef2, useState as useState2, forwardRef as forwardRef2 } from "react";
|
|
1180
1215
|
import { Box as Box8 } from "@mui/material";
|
|
1181
|
-
import { jsx as
|
|
1216
|
+
import { jsx as jsx14, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1182
1217
|
var UploadButton = forwardRef2(
|
|
1183
1218
|
(props, ref) => {
|
|
1184
1219
|
const [file, setFile] = useState2();
|
|
@@ -1197,7 +1232,7 @@ var UploadButton = forwardRef2(
|
|
|
1197
1232
|
alignItems: "center"
|
|
1198
1233
|
},
|
|
1199
1234
|
children: [
|
|
1200
|
-
/* @__PURE__ */
|
|
1235
|
+
/* @__PURE__ */ jsx14(
|
|
1201
1236
|
"input",
|
|
1202
1237
|
{
|
|
1203
1238
|
...props,
|
|
@@ -1210,7 +1245,7 @@ var UploadButton = forwardRef2(
|
|
|
1210
1245
|
style: { display: "none" }
|
|
1211
1246
|
}
|
|
1212
1247
|
),
|
|
1213
|
-
/* @__PURE__ */
|
|
1248
|
+
/* @__PURE__ */ jsx14(
|
|
1214
1249
|
ExtendedButton_default,
|
|
1215
1250
|
{
|
|
1216
1251
|
buttonType: "button",
|
|
@@ -1234,7 +1269,7 @@ var UploadButton_default = UploadButton;
|
|
|
1234
1269
|
import { memo as memo6 } from "react";
|
|
1235
1270
|
import { Button as Button9, CircularProgress as CircularProgress4 } from "@mui/material";
|
|
1236
1271
|
import { makeStyles as makeStyles10 } from "tss-react/mui";
|
|
1237
|
-
import { jsx as
|
|
1272
|
+
import { jsx as jsx15, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1238
1273
|
var useStyles10 = makeStyles10()((theme) => ({
|
|
1239
1274
|
default: {
|
|
1240
1275
|
boxShadow: "none",
|
|
@@ -1315,7 +1350,7 @@ var OutlinedButton = ({
|
|
|
1315
1350
|
type = "button"
|
|
1316
1351
|
}) => {
|
|
1317
1352
|
const { classes, cx } = useStyles10();
|
|
1318
|
-
return /* @__PURE__ */
|
|
1353
|
+
return /* @__PURE__ */ jsx15(
|
|
1319
1354
|
Button9,
|
|
1320
1355
|
{
|
|
1321
1356
|
className: cx(color ? classes[color] : classes.default, className, {
|
|
@@ -1336,8 +1371,8 @@ var OutlinedButton = ({
|
|
|
1336
1371
|
}),
|
|
1337
1372
|
children: [
|
|
1338
1373
|
copy,
|
|
1339
|
-
subcopy && /* @__PURE__ */
|
|
1340
|
-
isLoading && /* @__PURE__ */
|
|
1374
|
+
subcopy && /* @__PURE__ */ jsx15("span", { children: subcopy }),
|
|
1375
|
+
isLoading && /* @__PURE__ */ jsx15(
|
|
1341
1376
|
CircularProgress4,
|
|
1342
1377
|
{
|
|
1343
1378
|
className: classes.loadingIcon,
|
|
@@ -1357,8 +1392,8 @@ var OutlinedButton_default = memo6(OutlinedButton);
|
|
|
1357
1392
|
import { memo as memo7 } from "react";
|
|
1358
1393
|
import { Button as Button10 } from "@mui/material";
|
|
1359
1394
|
import { withStyles as withStyles2 } from "tss-react/mui";
|
|
1360
|
-
import { jsx as
|
|
1361
|
-
var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */
|
|
1395
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
1396
|
+
var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */ jsx16(Button10, { variant, className: classes[color], children: copy });
|
|
1362
1397
|
var FilterButtonLg = withStyles2(AButton, (theme) => ({
|
|
1363
1398
|
default: {
|
|
1364
1399
|
boxShadow: "none",
|
|
@@ -1452,16 +1487,16 @@ import { Fab, Tooltip as Tooltip2 } from "@mui/material";
|
|
|
1452
1487
|
import { makeStyles as makeStyles11 } from "tss-react/mui";
|
|
1453
1488
|
|
|
1454
1489
|
// src/components/icons/BallsLogo.tsx
|
|
1455
|
-
import { jsx as
|
|
1490
|
+
import { jsx as jsx17, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1456
1491
|
var SvgBallsLogo = (props) => /* @__PURE__ */ jsxs12("svg", { viewBox: "0 0 1024 305.8", ...props, fill: "currentColor", children: [
|
|
1457
|
-
/* @__PURE__ */
|
|
1458
|
-
/* @__PURE__ */
|
|
1459
|
-
/* @__PURE__ */
|
|
1492
|
+
/* @__PURE__ */ jsx17("path", { d: "M586.9,152.3c0,82.2-66,148.1-148.1,148.1s-148.1-66-148.1-148.1S356.6,4.2,438.8,4.2C520.9,2.9,586.9,70.2,586.9,152.3" }),
|
|
1493
|
+
/* @__PURE__ */ jsx17("path", { d: "M5.6,4.2c80.9,0,146.9,66,146.9,146.9S86.5,297.9,5.6,297.9C5.6,297.9,5.6,4.2,5.6,4.2z" }),
|
|
1494
|
+
/* @__PURE__ */ jsx17("path", { d: "M1018.9,152.3c0-82.2-66-148.1-148.1-148.1s-148.1,66-148.1,148.1s66,148.1,148.1,148.1L1018.9,152.3z" })
|
|
1460
1495
|
] });
|
|
1461
1496
|
var BallsLogo_default = SvgBallsLogo;
|
|
1462
1497
|
|
|
1463
1498
|
// src/components/icons/EmptyGlassIcon.tsx
|
|
1464
|
-
import { jsx as
|
|
1499
|
+
import { jsx as jsx18, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1465
1500
|
var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
1466
1501
|
"svg",
|
|
1467
1502
|
{
|
|
@@ -1472,8 +1507,8 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1472
1507
|
fill: "none",
|
|
1473
1508
|
...props,
|
|
1474
1509
|
children: [
|
|
1475
|
-
/* @__PURE__ */
|
|
1476
|
-
/* @__PURE__ */
|
|
1510
|
+
/* @__PURE__ */ jsx18("g", { id: "Frame", clipPath: "url(#clip0_454_24067)", children: /* @__PURE__ */ jsxs13("g", { id: "Clip path group", children: [
|
|
1511
|
+
/* @__PURE__ */ jsx18(
|
|
1477
1512
|
"mask",
|
|
1478
1513
|
{
|
|
1479
1514
|
id: "mask0_454_24067",
|
|
@@ -1482,11 +1517,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1482
1517
|
y: "0",
|
|
1483
1518
|
width: "140",
|
|
1484
1519
|
height: "140",
|
|
1485
|
-
children: /* @__PURE__ */
|
|
1520
|
+
children: /* @__PURE__ */ jsx18("g", { id: "__lottie_element_11", children: /* @__PURE__ */ jsx18("path", { id: "Vector", d: "M140 0H0V140H140V0Z", fill: "white" }) })
|
|
1486
1521
|
}
|
|
1487
1522
|
),
|
|
1488
|
-
/* @__PURE__ */
|
|
1489
|
-
/* @__PURE__ */
|
|
1523
|
+
/* @__PURE__ */ jsx18("g", { mask: "url(#mask0_454_24067)", children: /* @__PURE__ */ jsx18("g", { id: "Group", children: /* @__PURE__ */ jsxs13("g", { id: "Clip path group_2", children: [
|
|
1524
|
+
/* @__PURE__ */ jsx18(
|
|
1490
1525
|
"mask",
|
|
1491
1526
|
{
|
|
1492
1527
|
id: "mask1_454_24067",
|
|
@@ -1495,11 +1530,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1495
1530
|
y: "0",
|
|
1496
1531
|
width: "140",
|
|
1497
1532
|
height: "140",
|
|
1498
|
-
children: /* @__PURE__ */
|
|
1533
|
+
children: /* @__PURE__ */ jsx18("g", { id: "__lottie_element_13", children: /* @__PURE__ */ jsx18("path", { id: "Vector_2", d: "M0 0H140V140H0V0Z", fill: "white" }) })
|
|
1499
1534
|
}
|
|
1500
1535
|
),
|
|
1501
|
-
/* @__PURE__ */
|
|
1502
|
-
/* @__PURE__ */
|
|
1536
|
+
/* @__PURE__ */ jsx18("g", { mask: "url(#mask1_454_24067)", children: /* @__PURE__ */ jsx18("g", { id: "Group_2", children: /* @__PURE__ */ jsxs13("g", { id: "Group_3", children: [
|
|
1537
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_4", children: /* @__PURE__ */ jsx18(
|
|
1503
1538
|
"path",
|
|
1504
1539
|
{
|
|
1505
1540
|
id: "Vector_3",
|
|
@@ -1507,7 +1542,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1507
1542
|
fill: "#B6B2D8"
|
|
1508
1543
|
}
|
|
1509
1544
|
) }),
|
|
1510
|
-
/* @__PURE__ */
|
|
1545
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_5", children: /* @__PURE__ */ jsx18(
|
|
1511
1546
|
"path",
|
|
1512
1547
|
{
|
|
1513
1548
|
id: "Vector_4",
|
|
@@ -1515,7 +1550,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1515
1550
|
fill: "#EECB3A"
|
|
1516
1551
|
}
|
|
1517
1552
|
) }),
|
|
1518
|
-
/* @__PURE__ */
|
|
1553
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_6", children: /* @__PURE__ */ jsx18(
|
|
1519
1554
|
"path",
|
|
1520
1555
|
{
|
|
1521
1556
|
id: "Vector_5",
|
|
@@ -1523,7 +1558,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1523
1558
|
fill: "#F1F1F2"
|
|
1524
1559
|
}
|
|
1525
1560
|
) }),
|
|
1526
|
-
/* @__PURE__ */
|
|
1561
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_7", children: /* @__PURE__ */ jsx18(
|
|
1527
1562
|
"path",
|
|
1528
1563
|
{
|
|
1529
1564
|
id: "Vector_6",
|
|
@@ -1531,7 +1566,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1531
1566
|
fill: "#EECB3A"
|
|
1532
1567
|
}
|
|
1533
1568
|
) }),
|
|
1534
|
-
/* @__PURE__ */
|
|
1569
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_8", children: /* @__PURE__ */ jsx18(
|
|
1535
1570
|
"path",
|
|
1536
1571
|
{
|
|
1537
1572
|
id: "Vector_7",
|
|
@@ -1539,7 +1574,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1539
1574
|
fill: "#B6B2D8"
|
|
1540
1575
|
}
|
|
1541
1576
|
) }),
|
|
1542
|
-
/* @__PURE__ */
|
|
1577
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_9", children: /* @__PURE__ */ jsx18(
|
|
1543
1578
|
"path",
|
|
1544
1579
|
{
|
|
1545
1580
|
id: "Vector_8",
|
|
@@ -1547,7 +1582,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1547
1582
|
fill: "#F6D977"
|
|
1548
1583
|
}
|
|
1549
1584
|
) }),
|
|
1550
|
-
/* @__PURE__ */
|
|
1585
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_10", opacity: "0.655813", children: /* @__PURE__ */ jsx18(
|
|
1551
1586
|
"path",
|
|
1552
1587
|
{
|
|
1553
1588
|
id: "Vector_9",
|
|
@@ -1555,7 +1590,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1555
1590
|
fill: "#B6B2D8"
|
|
1556
1591
|
}
|
|
1557
1592
|
) }),
|
|
1558
|
-
/* @__PURE__ */
|
|
1593
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_11", children: /* @__PURE__ */ jsx18(
|
|
1559
1594
|
"path",
|
|
1560
1595
|
{
|
|
1561
1596
|
id: "Vector_10",
|
|
@@ -1563,7 +1598,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1563
1598
|
fill: "#FFFEFF"
|
|
1564
1599
|
}
|
|
1565
1600
|
) }),
|
|
1566
|
-
/* @__PURE__ */
|
|
1601
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_12", children: /* @__PURE__ */ jsx18(
|
|
1567
1602
|
"path",
|
|
1568
1603
|
{
|
|
1569
1604
|
id: "Vector_11",
|
|
@@ -1571,7 +1606,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1571
1606
|
fill: "#EECB3A"
|
|
1572
1607
|
}
|
|
1573
1608
|
) }),
|
|
1574
|
-
/* @__PURE__ */
|
|
1609
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_13", children: /* @__PURE__ */ jsx18(
|
|
1575
1610
|
"path",
|
|
1576
1611
|
{
|
|
1577
1612
|
id: "Vector_12",
|
|
@@ -1580,7 +1615,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1580
1615
|
}
|
|
1581
1616
|
) }),
|
|
1582
1617
|
/* @__PURE__ */ jsxs13("g", { id: "Group_14", children: [
|
|
1583
|
-
/* @__PURE__ */
|
|
1618
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_15", children: /* @__PURE__ */ jsx18(
|
|
1584
1619
|
"path",
|
|
1585
1620
|
{
|
|
1586
1621
|
id: "Vector_13",
|
|
@@ -1588,7 +1623,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1588
1623
|
fill: "#BF7F42"
|
|
1589
1624
|
}
|
|
1590
1625
|
) }),
|
|
1591
|
-
/* @__PURE__ */
|
|
1626
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_16", children: /* @__PURE__ */ jsx18(
|
|
1592
1627
|
"path",
|
|
1593
1628
|
{
|
|
1594
1629
|
id: "Vector_14",
|
|
@@ -1596,7 +1631,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1596
1631
|
fill: "#C2D1E0"
|
|
1597
1632
|
}
|
|
1598
1633
|
) }),
|
|
1599
|
-
/* @__PURE__ */
|
|
1634
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_17", children: /* @__PURE__ */ jsx18(
|
|
1600
1635
|
"path",
|
|
1601
1636
|
{
|
|
1602
1637
|
id: "Vector_15",
|
|
@@ -1604,7 +1639,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1604
1639
|
fill: "#D2E0EA"
|
|
1605
1640
|
}
|
|
1606
1641
|
) }),
|
|
1607
|
-
/* @__PURE__ */
|
|
1642
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_18", children: /* @__PURE__ */ jsx18(
|
|
1608
1643
|
"path",
|
|
1609
1644
|
{
|
|
1610
1645
|
id: "Vector_16",
|
|
@@ -1612,7 +1647,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1612
1647
|
fill: "#8EC5EA"
|
|
1613
1648
|
}
|
|
1614
1649
|
) }),
|
|
1615
|
-
/* @__PURE__ */
|
|
1650
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_19", children: /* @__PURE__ */ jsx18(
|
|
1616
1651
|
"path",
|
|
1617
1652
|
{
|
|
1618
1653
|
id: "Vector_17",
|
|
@@ -1620,7 +1655,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1620
1655
|
fill: "#70AFDE"
|
|
1621
1656
|
}
|
|
1622
1657
|
) }),
|
|
1623
|
-
/* @__PURE__ */
|
|
1658
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_20", children: /* @__PURE__ */ jsx18(
|
|
1624
1659
|
"path",
|
|
1625
1660
|
{
|
|
1626
1661
|
id: "Vector_18",
|
|
@@ -1628,7 +1663,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1628
1663
|
fill: "#B5713E"
|
|
1629
1664
|
}
|
|
1630
1665
|
) }),
|
|
1631
|
-
/* @__PURE__ */
|
|
1666
|
+
/* @__PURE__ */ jsx18("g", { id: "Group_21", opacity: "0.2", children: /* @__PURE__ */ jsx18(
|
|
1632
1667
|
"path",
|
|
1633
1668
|
{
|
|
1634
1669
|
id: "Vector_19",
|
|
@@ -1640,37 +1675,37 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ jsxs13(
|
|
|
1640
1675
|
] }) }) })
|
|
1641
1676
|
] }) }) })
|
|
1642
1677
|
] }) }),
|
|
1643
|
-
/* @__PURE__ */
|
|
1678
|
+
/* @__PURE__ */ jsx18("defs", { children: /* @__PURE__ */ jsx18("clipPath", { id: "clip0_454_24067", children: /* @__PURE__ */ jsx18("rect", { width: "140", height: "140", fill: "white" }) }) })
|
|
1644
1679
|
]
|
|
1645
1680
|
}
|
|
1646
1681
|
);
|
|
1647
1682
|
var EmptyGlassIcon_default = SvgEmptyGlassIcon;
|
|
1648
1683
|
|
|
1649
1684
|
// src/components/icons/IconAccount.tsx
|
|
1650
|
-
import { jsx as
|
|
1685
|
+
import { jsx as jsx19, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1651
1686
|
var SvgIconAccount = (props) => /* @__PURE__ */ jsxs14("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1652
|
-
/* @__PURE__ */
|
|
1687
|
+
/* @__PURE__ */ jsx19(
|
|
1653
1688
|
"path",
|
|
1654
1689
|
{
|
|
1655
1690
|
className: "icon-account_svg__st0",
|
|
1656
1691
|
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
1692
|
}
|
|
1658
1693
|
),
|
|
1659
|
-
/* @__PURE__ */
|
|
1694
|
+
/* @__PURE__ */ jsx19(
|
|
1660
1695
|
"path",
|
|
1661
1696
|
{
|
|
1662
1697
|
className: "icon-account_svg__st0",
|
|
1663
1698
|
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
1699
|
}
|
|
1665
1700
|
),
|
|
1666
|
-
/* @__PURE__ */
|
|
1701
|
+
/* @__PURE__ */ jsx19(
|
|
1667
1702
|
"path",
|
|
1668
1703
|
{
|
|
1669
1704
|
className: "icon-account_svg__st1",
|
|
1670
1705
|
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
1706
|
}
|
|
1672
1707
|
),
|
|
1673
|
-
/* @__PURE__ */
|
|
1708
|
+
/* @__PURE__ */ jsx19(
|
|
1674
1709
|
"path",
|
|
1675
1710
|
{
|
|
1676
1711
|
className: "icon-account_svg__st1",
|
|
@@ -1681,8 +1716,8 @@ var SvgIconAccount = (props) => /* @__PURE__ */ jsxs14("svg", { viewBox: "0 0 55
|
|
|
1681
1716
|
var IconAccount_default = SvgIconAccount;
|
|
1682
1717
|
|
|
1683
1718
|
// src/components/icons/IconAccounts.tsx
|
|
1684
|
-
import { jsx as
|
|
1685
|
-
var SvgIconAccounts = (props) => /* @__PURE__ */
|
|
1719
|
+
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
1720
|
+
var SvgIconAccounts = (props) => /* @__PURE__ */ jsx20("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx20(
|
|
1686
1721
|
"path",
|
|
1687
1722
|
{
|
|
1688
1723
|
className: "icon-accounts_svg__st0",
|
|
@@ -1692,7 +1727,7 @@ var SvgIconAccounts = (props) => /* @__PURE__ */ jsx19("svg", { viewBox: "0 0 55
|
|
|
1692
1727
|
var IconAccounts_default = SvgIconAccounts;
|
|
1693
1728
|
|
|
1694
1729
|
// src/components/icons/IconAvocado.tsx
|
|
1695
|
-
import { jsx as
|
|
1730
|
+
import { jsx as jsx21, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1696
1731
|
var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
1697
1732
|
"svg",
|
|
1698
1733
|
{
|
|
@@ -1702,7 +1737,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1702
1737
|
fill: "none",
|
|
1703
1738
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1704
1739
|
children: [
|
|
1705
|
-
/* @__PURE__ */
|
|
1740
|
+
/* @__PURE__ */ jsx21(
|
|
1706
1741
|
"path",
|
|
1707
1742
|
{
|
|
1708
1743
|
d: "M19 14.3511C19 20.3582 14.9662 22.875 10 22.875C5.03376 22.875 1 20.3582 1 14.3511C1 8.34393 5.03376 1.125 10 1.125C14.9662 1.125 19 8.34393 19 14.3511Z",
|
|
@@ -1711,7 +1746,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1711
1746
|
strokeMiterlimit: "10"
|
|
1712
1747
|
}
|
|
1713
1748
|
),
|
|
1714
|
-
/* @__PURE__ */
|
|
1749
|
+
/* @__PURE__ */ jsx21(
|
|
1715
1750
|
"path",
|
|
1716
1751
|
{
|
|
1717
1752
|
d: "M10 19.125C12.8995 19.125 15.25 16.7745 15.25 13.875C15.25 10.9755 12.8995 8.625 10 8.625C7.1005 8.625 4.75 10.9755 4.75 13.875C4.75 16.7745 7.1005 19.125 10 19.125Z",
|
|
@@ -1726,7 +1761,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ jsxs15(
|
|
|
1726
1761
|
var IconAvocado_default = SvgIconAvocado;
|
|
1727
1762
|
|
|
1728
1763
|
// src/components/icons/IconBanana.tsx
|
|
1729
|
-
import { jsx as
|
|
1764
|
+
import { jsx as jsx22, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1730
1765
|
var SvgIconBanana = () => /* @__PURE__ */ jsxs16(
|
|
1731
1766
|
"svg",
|
|
1732
1767
|
{
|
|
@@ -1736,52 +1771,52 @@ var SvgIconBanana = () => /* @__PURE__ */ jsxs16(
|
|
|
1736
1771
|
fill: "none",
|
|
1737
1772
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1738
1773
|
children: [
|
|
1739
|
-
/* @__PURE__ */
|
|
1774
|
+
/* @__PURE__ */ jsx22("g", { clipPath: "url(#clip0_0_2321)", children: /* @__PURE__ */ jsx22(
|
|
1740
1775
|
"path",
|
|
1741
1776
|
{
|
|
1742
1777
|
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
1778
|
fill: colors.neutral800
|
|
1744
1779
|
}
|
|
1745
1780
|
) }),
|
|
1746
|
-
/* @__PURE__ */
|
|
1781
|
+
/* @__PURE__ */ jsx22("defs", { children: /* @__PURE__ */ jsx22("clipPath", { id: "clip0_0_2321", children: /* @__PURE__ */ jsx22("rect", { width: "24", height: "22", fill: "white" }) }) })
|
|
1747
1782
|
]
|
|
1748
1783
|
}
|
|
1749
1784
|
);
|
|
1750
1785
|
var IconBanana_default = SvgIconBanana;
|
|
1751
1786
|
|
|
1752
1787
|
// src/components/icons/IconBuying.tsx
|
|
1753
|
-
import { jsx as
|
|
1788
|
+
import { jsx as jsx23, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1754
1789
|
var SvgIconBuying = (props) => /* @__PURE__ */ jsxs17("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1755
|
-
/* @__PURE__ */
|
|
1790
|
+
/* @__PURE__ */ jsx23(
|
|
1756
1791
|
"path",
|
|
1757
1792
|
{
|
|
1758
1793
|
className: "icon-buying_svg__st0",
|
|
1759
1794
|
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
1795
|
}
|
|
1761
1796
|
),
|
|
1762
|
-
/* @__PURE__ */
|
|
1797
|
+
/* @__PURE__ */ jsx23(
|
|
1763
1798
|
"path",
|
|
1764
1799
|
{
|
|
1765
1800
|
className: "icon-buying_svg__st0",
|
|
1766
1801
|
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
1802
|
}
|
|
1768
1803
|
),
|
|
1769
|
-
/* @__PURE__ */
|
|
1804
|
+
/* @__PURE__ */ jsx23("circle", { className: "icon-buying_svg__st0", cx: 34.7, cy: 38.1, r: 2.6 })
|
|
1770
1805
|
] });
|
|
1771
1806
|
var IconBuying_default = SvgIconBuying;
|
|
1772
1807
|
|
|
1773
1808
|
// src/components/icons/IconContentManagement.tsx
|
|
1774
|
-
import { jsx as
|
|
1809
|
+
import { jsx as jsx24, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1775
1810
|
var IconContentManagement = (props) => /* @__PURE__ */ jsxs18("svg", { viewBox: "0 0 55 56.7", ...props, fill: "0000", strokeWidth: "0px", children: [
|
|
1776
|
-
/* @__PURE__ */
|
|
1811
|
+
/* @__PURE__ */ jsx24(
|
|
1777
1812
|
"path",
|
|
1778
1813
|
{
|
|
1779
1814
|
className: "cls-1",
|
|
1780
1815
|
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
1816
|
}
|
|
1782
1817
|
),
|
|
1783
|
-
/* @__PURE__ */
|
|
1784
|
-
/* @__PURE__ */
|
|
1818
|
+
/* @__PURE__ */ jsx24("rect", { className: "cls-1", x: "21.6", y: "34.1", width: "3.6", height: "5.2" }),
|
|
1819
|
+
/* @__PURE__ */ jsx24(
|
|
1785
1820
|
"path",
|
|
1786
1821
|
{
|
|
1787
1822
|
className: "cls-1",
|
|
@@ -1792,23 +1827,23 @@ var IconContentManagement = (props) => /* @__PURE__ */ jsxs18("svg", { viewBox:
|
|
|
1792
1827
|
var IconContentManagement_default = IconContentManagement;
|
|
1793
1828
|
|
|
1794
1829
|
// src/components/icons/IconGoodsin.tsx
|
|
1795
|
-
import { jsx as
|
|
1830
|
+
import { jsx as jsx25, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1796
1831
|
var SvgIconGoodsin = (props) => /* @__PURE__ */ jsxs19("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1797
|
-
/* @__PURE__ */
|
|
1832
|
+
/* @__PURE__ */ jsx25(
|
|
1798
1833
|
"path",
|
|
1799
1834
|
{
|
|
1800
1835
|
className: "icon-goodsin_svg__st0",
|
|
1801
1836
|
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
1837
|
}
|
|
1803
1838
|
),
|
|
1804
|
-
/* @__PURE__ */
|
|
1839
|
+
/* @__PURE__ */ jsx25(
|
|
1805
1840
|
"path",
|
|
1806
1841
|
{
|
|
1807
1842
|
className: "icon-goodsin_svg__st0",
|
|
1808
1843
|
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
1844
|
}
|
|
1810
1845
|
),
|
|
1811
|
-
/* @__PURE__ */
|
|
1846
|
+
/* @__PURE__ */ jsx25(
|
|
1812
1847
|
"path",
|
|
1813
1848
|
{
|
|
1814
1849
|
className: "icon-goodsin_svg__st0",
|
|
@@ -1819,8 +1854,8 @@ var SvgIconGoodsin = (props) => /* @__PURE__ */ jsxs19("svg", { viewBox: "0 0 55
|
|
|
1819
1854
|
var IconGoodsin_default = SvgIconGoodsin;
|
|
1820
1855
|
|
|
1821
1856
|
// src/components/icons/IconGrape.tsx
|
|
1822
|
-
import { jsx as
|
|
1823
|
-
var SvgIconGrape = (props) => /* @__PURE__ */
|
|
1857
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
1858
|
+
var SvgIconGrape = (props) => /* @__PURE__ */ jsx26(
|
|
1824
1859
|
"svg",
|
|
1825
1860
|
{
|
|
1826
1861
|
width: "24",
|
|
@@ -1829,7 +1864,7 @@ var SvgIconGrape = (props) => /* @__PURE__ */ jsx25(
|
|
|
1829
1864
|
fill: "none",
|
|
1830
1865
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1831
1866
|
...props,
|
|
1832
|
-
children: /* @__PURE__ */
|
|
1867
|
+
children: /* @__PURE__ */ jsx26(
|
|
1833
1868
|
"path",
|
|
1834
1869
|
{
|
|
1835
1870
|
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 +1876,23 @@ var SvgIconGrape = (props) => /* @__PURE__ */ jsx25(
|
|
|
1841
1876
|
var IconGrape_default = SvgIconGrape;
|
|
1842
1877
|
|
|
1843
1878
|
// src/components/icons/IconHome.tsx
|
|
1844
|
-
import { jsx as
|
|
1879
|
+
import { jsx as jsx27, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1845
1880
|
var SvgIconHome = (props) => /* @__PURE__ */ jsxs20("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1846
|
-
/* @__PURE__ */
|
|
1881
|
+
/* @__PURE__ */ jsx27(
|
|
1847
1882
|
"path",
|
|
1848
1883
|
{
|
|
1849
1884
|
className: "icon-home_svg__st0",
|
|
1850
1885
|
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
1886
|
}
|
|
1852
1887
|
),
|
|
1853
|
-
/* @__PURE__ */
|
|
1888
|
+
/* @__PURE__ */ jsx27(
|
|
1854
1889
|
"path",
|
|
1855
1890
|
{
|
|
1856
1891
|
className: "icon-home_svg__st0",
|
|
1857
1892
|
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
1893
|
}
|
|
1859
1894
|
),
|
|
1860
|
-
/* @__PURE__ */
|
|
1895
|
+
/* @__PURE__ */ jsx27(
|
|
1861
1896
|
"path",
|
|
1862
1897
|
{
|
|
1863
1898
|
className: "icon-home_svg__st1",
|
|
@@ -1868,8 +1903,8 @@ var SvgIconHome = (props) => /* @__PURE__ */ jsxs20("svg", { viewBox: "0 0 55 56
|
|
|
1868
1903
|
var IconHome_default = SvgIconHome;
|
|
1869
1904
|
|
|
1870
1905
|
// src/components/icons/IconImport.tsx
|
|
1871
|
-
import { jsx as
|
|
1872
|
-
var SvgIconImport = (props) => /* @__PURE__ */
|
|
1906
|
+
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
1907
|
+
var SvgIconImport = (props) => /* @__PURE__ */ jsx28("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "-8 -8 40 40", ...props, children: /* @__PURE__ */ jsx28(
|
|
1873
1908
|
"path",
|
|
1874
1909
|
{
|
|
1875
1910
|
className: "icon-runs_svg__st0",
|
|
@@ -1879,16 +1914,16 @@ var SvgIconImport = (props) => /* @__PURE__ */ jsx27("svg", { xmlns: "http://www
|
|
|
1879
1914
|
var IconImport_default = SvgIconImport;
|
|
1880
1915
|
|
|
1881
1916
|
// src/components/icons/IconLocation.tsx
|
|
1882
|
-
import { jsx as
|
|
1917
|
+
import { jsx as jsx29, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1883
1918
|
var SvgIconLocation = (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1884
|
-
/* @__PURE__ */
|
|
1919
|
+
/* @__PURE__ */ jsx29(
|
|
1885
1920
|
"path",
|
|
1886
1921
|
{
|
|
1887
1922
|
className: "icon-location_svg__st0",
|
|
1888
1923
|
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
1924
|
}
|
|
1890
1925
|
),
|
|
1891
|
-
/* @__PURE__ */
|
|
1926
|
+
/* @__PURE__ */ jsx29(
|
|
1892
1927
|
"path",
|
|
1893
1928
|
{
|
|
1894
1929
|
className: "icon-location_svg__st0",
|
|
@@ -1899,16 +1934,16 @@ var SvgIconLocation = (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 5
|
|
|
1899
1934
|
var IconLocation_default = SvgIconLocation;
|
|
1900
1935
|
|
|
1901
1936
|
// src/components/icons/IconLogin.tsx
|
|
1902
|
-
import { jsx as
|
|
1937
|
+
import { jsx as jsx30, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1903
1938
|
var SvgIconLogin = (props) => /* @__PURE__ */ jsxs22("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1904
|
-
/* @__PURE__ */
|
|
1939
|
+
/* @__PURE__ */ jsx30(
|
|
1905
1940
|
"path",
|
|
1906
1941
|
{
|
|
1907
1942
|
className: "icon-login_svg__st0",
|
|
1908
1943
|
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
1944
|
}
|
|
1910
1945
|
),
|
|
1911
|
-
/* @__PURE__ */
|
|
1946
|
+
/* @__PURE__ */ jsx30(
|
|
1912
1947
|
"path",
|
|
1913
1948
|
{
|
|
1914
1949
|
className: "icon-login_svg__st0",
|
|
@@ -1919,16 +1954,16 @@ var SvgIconLogin = (props) => /* @__PURE__ */ jsxs22("svg", { viewBox: "0 0 55 5
|
|
|
1919
1954
|
var IconLogin_default = SvgIconLogin;
|
|
1920
1955
|
|
|
1921
1956
|
// src/components/icons/IconNotification.tsx
|
|
1922
|
-
import { jsx as
|
|
1957
|
+
import { jsx as jsx31, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1923
1958
|
var SvgIconNotification = (props) => /* @__PURE__ */ jsxs23("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1924
|
-
/* @__PURE__ */
|
|
1959
|
+
/* @__PURE__ */ jsx31(
|
|
1925
1960
|
"path",
|
|
1926
1961
|
{
|
|
1927
1962
|
className: "icon-notification_svg__st0",
|
|
1928
1963
|
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
1964
|
}
|
|
1930
1965
|
),
|
|
1931
|
-
/* @__PURE__ */
|
|
1966
|
+
/* @__PURE__ */ jsx31(
|
|
1932
1967
|
"path",
|
|
1933
1968
|
{
|
|
1934
1969
|
className: "icon-notification_svg__st0",
|
|
@@ -1939,24 +1974,24 @@ var SvgIconNotification = (props) => /* @__PURE__ */ jsxs23("svg", { viewBox: "0
|
|
|
1939
1974
|
var IconNotification_default = SvgIconNotification;
|
|
1940
1975
|
|
|
1941
1976
|
// src/components/icons/IconOpsMetrics.tsx
|
|
1942
|
-
import { jsx as
|
|
1977
|
+
import { jsx as jsx32, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1943
1978
|
var SvgIconOpsMetrics = (props) => /* @__PURE__ */ jsxs24("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1944
|
-
/* @__PURE__ */
|
|
1945
|
-
/* @__PURE__ */
|
|
1979
|
+
/* @__PURE__ */ jsx32("path", { d: "M672.6 1136.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c-.1-1.6-1.3-3-2.9-3zM683.4 1136.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c0-1.7-1.4-2.9-3-2.9z" }),
|
|
1980
|
+
/* @__PURE__ */ jsx32("path", { d: "M672.4 1130.2h.9v1.2c0 1.1.9 2 2 2h6.9c-1.6.3-3 1.3-4 2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7-1.2 0-2.3.3-3.3.9v-3.7-.1c.1 0 .2-.1.7-.2m17.2 3.1v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4 0 .7-.1 1.2-.2.2.1.3 0 .3 0m.8-15.1c-.7 0-1.3.5-1.4 1.1v12.1c-.4.1-.7.1-.9.1-.4 0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1 0-1.6.3-1.6 1.6v8.1c-1.6.2-2.4 1-2.4 2.3v6.8c0 .2.2.7.5.7.1 0 .3.1.5.1s.4-.1.6-.4c.8-1.6 2.1-2.4 3.8-2.4s2.9.8 3.7 2.3c.1.3.3.5.7.5h1.9c.5 0 .6-.2.8-.6.8-1.5 2.1-2.3 3.8-2.3s2.9.9 3.7 2.4c.5.9.5 1.8.2 3h5.4c.7 0 1.1-.6 1.1-1 0-.7-.3-1.1-.9-1.4-.2-.1-.6-.1-.8-.1h-2.9v-1.1-16.9-.7c-.3-.8-.7-1.2-1.4-1.2zm-15.6 9.9v-7.2h5.5c.1 0 .3.1.3.3 1.4 3.3 2.9 6.6 4.2 9.9v.1h-7.2v-2.3c0-.8-.1-.9-.9-.9-.7.1-1.3.1-1.9.1zM39.5 40.7H29V28.2h10.5v12.5zm-8-2.5H37v-7.5h-5.5v7.5zm-6 2.5H15v-8.5h10.5v8.5zm-8-2.5H23v-3.5h-5.5v3.5zm8-9.5H15V16.2h10.5v12.5zm-8-2.5H23v-7.5h-5.5v7.5zm22-1.5H29v-8.5h10.5v8.5zm-8-2.5H37v-3.5h-5.5v3.5z" })
|
|
1946
1981
|
] });
|
|
1947
1982
|
var IconOpsMetrics_default = SvgIconOpsMetrics;
|
|
1948
1983
|
|
|
1949
1984
|
// src/components/icons/IconOrders.tsx
|
|
1950
|
-
import { jsx as
|
|
1985
|
+
import { jsx as jsx33, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1951
1986
|
var SvgIconOrders = (props) => /* @__PURE__ */ jsxs25("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1952
|
-
/* @__PURE__ */
|
|
1987
|
+
/* @__PURE__ */ jsx33(
|
|
1953
1988
|
"path",
|
|
1954
1989
|
{
|
|
1955
1990
|
className: "icon-orders_svg__st0",
|
|
1956
1991
|
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
1992
|
}
|
|
1958
1993
|
),
|
|
1959
|
-
/* @__PURE__ */
|
|
1994
|
+
/* @__PURE__ */ jsx33(
|
|
1960
1995
|
"path",
|
|
1961
1996
|
{
|
|
1962
1997
|
className: "icon-orders_svg__st0",
|
|
@@ -1967,8 +2002,8 @@ var SvgIconOrders = (props) => /* @__PURE__ */ jsxs25("svg", { viewBox: "0 0 55
|
|
|
1967
2002
|
var IconOrders_default = SvgIconOrders;
|
|
1968
2003
|
|
|
1969
2004
|
// src/components/icons/IconPhone.tsx
|
|
1970
|
-
import { jsx as
|
|
1971
|
-
var SvgIconPhone = (props) => /* @__PURE__ */
|
|
2005
|
+
import { jsx as jsx34 } from "react/jsx-runtime";
|
|
2006
|
+
var SvgIconPhone = (props) => /* @__PURE__ */ jsx34("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx34(
|
|
1972
2007
|
"path",
|
|
1973
2008
|
{
|
|
1974
2009
|
className: "icon-phone_svg__st0",
|
|
@@ -1978,30 +2013,30 @@ var SvgIconPhone = (props) => /* @__PURE__ */ jsx33("svg", { viewBox: "0 0 55 56
|
|
|
1978
2013
|
var IconPhone_default = SvgIconPhone;
|
|
1979
2014
|
|
|
1980
2015
|
// src/components/icons/IconPriceList.tsx
|
|
1981
|
-
import { jsx as
|
|
2016
|
+
import { jsx as jsx35, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
1982
2017
|
var SvgIconPriceList = (props) => /* @__PURE__ */ jsxs26("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1983
|
-
/* @__PURE__ */
|
|
2018
|
+
/* @__PURE__ */ jsx35(
|
|
1984
2019
|
"path",
|
|
1985
2020
|
{
|
|
1986
2021
|
className: "icon-price-list_svg__st0",
|
|
1987
2022
|
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
2023
|
}
|
|
1989
2024
|
),
|
|
1990
|
-
/* @__PURE__ */
|
|
2025
|
+
/* @__PURE__ */ jsx35(
|
|
1991
2026
|
"path",
|
|
1992
2027
|
{
|
|
1993
2028
|
className: "icon-price-list_svg__st0",
|
|
1994
2029
|
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
2030
|
}
|
|
1996
2031
|
),
|
|
1997
|
-
/* @__PURE__ */
|
|
2032
|
+
/* @__PURE__ */ jsx35(
|
|
1998
2033
|
"path",
|
|
1999
2034
|
{
|
|
2000
2035
|
className: "icon-price-list_svg__st1",
|
|
2001
2036
|
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
2037
|
}
|
|
2003
2038
|
),
|
|
2004
|
-
/* @__PURE__ */
|
|
2039
|
+
/* @__PURE__ */ jsx35(
|
|
2005
2040
|
"path",
|
|
2006
2041
|
{
|
|
2007
2042
|
className: "icon-price-list_svg__st1",
|
|
@@ -2012,16 +2047,16 @@ var SvgIconPriceList = (props) => /* @__PURE__ */ jsxs26("svg", { viewBox: "0 0
|
|
|
2012
2047
|
var IconPriceList_default = SvgIconPriceList;
|
|
2013
2048
|
|
|
2014
2049
|
// src/components/icons/IconProducts.tsx
|
|
2015
|
-
import { jsx as
|
|
2050
|
+
import { jsx as jsx36, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
2016
2051
|
var SvgIconProducts = (props) => /* @__PURE__ */ jsxs27("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2017
|
-
/* @__PURE__ */
|
|
2052
|
+
/* @__PURE__ */ jsx36(
|
|
2018
2053
|
"path",
|
|
2019
2054
|
{
|
|
2020
2055
|
className: "icon-products_svg__st0",
|
|
2021
2056
|
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
2057
|
}
|
|
2023
2058
|
),
|
|
2024
|
-
/* @__PURE__ */
|
|
2059
|
+
/* @__PURE__ */ jsx36(
|
|
2025
2060
|
"path",
|
|
2026
2061
|
{
|
|
2027
2062
|
className: "icon-products_svg__st0",
|
|
@@ -2032,79 +2067,79 @@ var SvgIconProducts = (props) => /* @__PURE__ */ jsxs27("svg", { viewBox: "0 0 5
|
|
|
2032
2067
|
var IconProducts_default = SvgIconProducts;
|
|
2033
2068
|
|
|
2034
2069
|
// src/components/icons/IconPromoCode.tsx
|
|
2035
|
-
import { jsx as
|
|
2070
|
+
import { jsx as jsx37, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
2036
2071
|
var SvgIconPromoCode = (props) => /* @__PURE__ */ jsxs28("svg", { viewBox: "0 0 42.5 42.5", ...props, children: [
|
|
2037
|
-
/* @__PURE__ */
|
|
2072
|
+
/* @__PURE__ */ jsx37(
|
|
2038
2073
|
"path",
|
|
2039
2074
|
{
|
|
2040
2075
|
className: "promo_code_svg_st0",
|
|
2041
2076
|
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
2077
|
}
|
|
2043
2078
|
),
|
|
2044
|
-
/* @__PURE__ */
|
|
2079
|
+
/* @__PURE__ */ jsx37(
|
|
2045
2080
|
"path",
|
|
2046
2081
|
{
|
|
2047
2082
|
className: "promo_code_svg_st0",
|
|
2048
2083
|
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
2084
|
}
|
|
2050
2085
|
),
|
|
2051
|
-
/* @__PURE__ */
|
|
2086
|
+
/* @__PURE__ */ jsx37(
|
|
2052
2087
|
"path",
|
|
2053
2088
|
{
|
|
2054
2089
|
className: "promo_code_svg_st0",
|
|
2055
2090
|
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
2091
|
}
|
|
2057
2092
|
),
|
|
2058
|
-
/* @__PURE__ */
|
|
2093
|
+
/* @__PURE__ */ jsx37(
|
|
2059
2094
|
"path",
|
|
2060
2095
|
{
|
|
2061
2096
|
className: "promo_code_svg_st0",
|
|
2062
2097
|
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
2098
|
}
|
|
2064
2099
|
),
|
|
2065
|
-
/* @__PURE__ */
|
|
2100
|
+
/* @__PURE__ */ jsx37(
|
|
2066
2101
|
"path",
|
|
2067
2102
|
{
|
|
2068
2103
|
className: "promo_code_svg_st0",
|
|
2069
2104
|
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
2105
|
}
|
|
2071
2106
|
),
|
|
2072
|
-
/* @__PURE__ */
|
|
2107
|
+
/* @__PURE__ */ jsx37(
|
|
2073
2108
|
"path",
|
|
2074
2109
|
{
|
|
2075
2110
|
className: "promo_code_svg_st0",
|
|
2076
2111
|
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
2112
|
}
|
|
2078
2113
|
),
|
|
2079
|
-
/* @__PURE__ */
|
|
2114
|
+
/* @__PURE__ */ jsx37(
|
|
2080
2115
|
"path",
|
|
2081
2116
|
{
|
|
2082
2117
|
className: "promo_code_svg_st0",
|
|
2083
2118
|
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
2119
|
}
|
|
2085
2120
|
),
|
|
2086
|
-
/* @__PURE__ */
|
|
2121
|
+
/* @__PURE__ */ jsx37(
|
|
2087
2122
|
"path",
|
|
2088
2123
|
{
|
|
2089
2124
|
className: "promo_code_svg_st0",
|
|
2090
2125
|
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
2126
|
}
|
|
2092
2127
|
),
|
|
2093
|
-
/* @__PURE__ */
|
|
2128
|
+
/* @__PURE__ */ jsx37(
|
|
2094
2129
|
"path",
|
|
2095
2130
|
{
|
|
2096
2131
|
className: "promo_code_svg_st0",
|
|
2097
2132
|
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
2133
|
}
|
|
2099
2134
|
),
|
|
2100
|
-
/* @__PURE__ */
|
|
2135
|
+
/* @__PURE__ */ jsx37(
|
|
2101
2136
|
"path",
|
|
2102
2137
|
{
|
|
2103
2138
|
className: "promo_code_svg_st0",
|
|
2104
2139
|
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
2140
|
}
|
|
2106
2141
|
),
|
|
2107
|
-
/* @__PURE__ */
|
|
2142
|
+
/* @__PURE__ */ jsx37(
|
|
2108
2143
|
"path",
|
|
2109
2144
|
{
|
|
2110
2145
|
className: "promo_code_svg_st0",
|
|
@@ -2115,8 +2150,8 @@ var SvgIconPromoCode = (props) => /* @__PURE__ */ jsxs28("svg", { viewBox: "0 0
|
|
|
2115
2150
|
var IconPromoCode_default = SvgIconPromoCode;
|
|
2116
2151
|
|
|
2117
2152
|
// src/components/icons/IconQc.tsx
|
|
2118
|
-
import { jsx as
|
|
2119
|
-
var SvgIconQc = (props) => /* @__PURE__ */
|
|
2153
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
2154
|
+
var SvgIconQc = (props) => /* @__PURE__ */ jsx38("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx38(
|
|
2120
2155
|
"path",
|
|
2121
2156
|
{
|
|
2122
2157
|
className: "icon-qc_svg__st0",
|
|
@@ -2126,8 +2161,8 @@ var SvgIconQc = (props) => /* @__PURE__ */ jsx37("svg", { viewBox: "0 0 55 56.7"
|
|
|
2126
2161
|
var IconQc_default = SvgIconQc;
|
|
2127
2162
|
|
|
2128
2163
|
// src/components/icons/IconReports.tsx
|
|
2129
|
-
import { jsx as
|
|
2130
|
-
var SvgIconReports = (props) => /* @__PURE__ */
|
|
2164
|
+
import { jsx as jsx39 } from "react/jsx-runtime";
|
|
2165
|
+
var SvgIconReports = (props) => /* @__PURE__ */ jsx39("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx39(
|
|
2131
2166
|
"path",
|
|
2132
2167
|
{
|
|
2133
2168
|
className: "icon-reports_svg__st0",
|
|
@@ -2137,23 +2172,23 @@ var SvgIconReports = (props) => /* @__PURE__ */ jsx38("svg", { viewBox: "0 0 55
|
|
|
2137
2172
|
var IconReports_default = SvgIconReports;
|
|
2138
2173
|
|
|
2139
2174
|
// src/components/icons/IconRetail.tsx
|
|
2140
|
-
import { jsx as
|
|
2175
|
+
import { jsx as jsx40, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
2141
2176
|
var SvgIconRetail = (props) => /* @__PURE__ */ jsxs29("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2142
|
-
/* @__PURE__ */
|
|
2177
|
+
/* @__PURE__ */ jsx40(
|
|
2143
2178
|
"path",
|
|
2144
2179
|
{
|
|
2145
2180
|
className: "icon-retail_svg__st0",
|
|
2146
2181
|
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
2182
|
}
|
|
2148
2183
|
),
|
|
2149
|
-
/* @__PURE__ */
|
|
2184
|
+
/* @__PURE__ */ jsx40(
|
|
2150
2185
|
"path",
|
|
2151
2186
|
{
|
|
2152
2187
|
className: "icon-retail_svg__st0",
|
|
2153
2188
|
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
2189
|
}
|
|
2155
2190
|
),
|
|
2156
|
-
/* @__PURE__ */
|
|
2191
|
+
/* @__PURE__ */ jsx40(
|
|
2157
2192
|
"path",
|
|
2158
2193
|
{
|
|
2159
2194
|
className: "icon-retail_svg__st0",
|
|
@@ -2164,8 +2199,8 @@ var SvgIconRetail = (props) => /* @__PURE__ */ jsxs29("svg", { viewBox: "0 0 55
|
|
|
2164
2199
|
var IconRetail_default = SvgIconRetail;
|
|
2165
2200
|
|
|
2166
2201
|
// src/components/icons/IconRuns.tsx
|
|
2167
|
-
import { jsx as
|
|
2168
|
-
var SvgIconRuns = (props) => /* @__PURE__ */
|
|
2202
|
+
import { jsx as jsx41 } from "react/jsx-runtime";
|
|
2203
|
+
var SvgIconRuns = (props) => /* @__PURE__ */ jsx41("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx41(
|
|
2169
2204
|
"path",
|
|
2170
2205
|
{
|
|
2171
2206
|
className: "icon-runs_svg__st0",
|
|
@@ -2175,23 +2210,23 @@ var SvgIconRuns = (props) => /* @__PURE__ */ jsx40("svg", { viewBox: "0 0 55 56.
|
|
|
2175
2210
|
var IconRuns_default = SvgIconRuns;
|
|
2176
2211
|
|
|
2177
2212
|
// src/components/icons/IconScales.tsx
|
|
2178
|
-
import { jsx as
|
|
2213
|
+
import { jsx as jsx42, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
2179
2214
|
var SvgIconScales = (props) => /* @__PURE__ */ jsxs30("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2180
|
-
/* @__PURE__ */
|
|
2215
|
+
/* @__PURE__ */ jsx42(
|
|
2181
2216
|
"path",
|
|
2182
2217
|
{
|
|
2183
2218
|
className: "icon-scales_svg__st0",
|
|
2184
2219
|
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
2220
|
}
|
|
2186
2221
|
),
|
|
2187
|
-
/* @__PURE__ */
|
|
2222
|
+
/* @__PURE__ */ jsx42(
|
|
2188
2223
|
"path",
|
|
2189
2224
|
{
|
|
2190
2225
|
className: "icon-scales_svg__st0",
|
|
2191
2226
|
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
2227
|
}
|
|
2193
2228
|
),
|
|
2194
|
-
/* @__PURE__ */
|
|
2229
|
+
/* @__PURE__ */ jsx42(
|
|
2195
2230
|
"path",
|
|
2196
2231
|
{
|
|
2197
2232
|
className: "icon-scales_svg__st1",
|
|
@@ -2202,8 +2237,8 @@ var SvgIconScales = (props) => /* @__PURE__ */ jsxs30("svg", { viewBox: "0 0 55
|
|
|
2202
2237
|
var IconScales_default = SvgIconScales;
|
|
2203
2238
|
|
|
2204
2239
|
// src/components/icons/IconSearchCategories.tsx
|
|
2205
|
-
import { jsx as
|
|
2206
|
-
var SvgIconSearchCategories = (props) => /* @__PURE__ */
|
|
2240
|
+
import { jsx as jsx43 } from "react/jsx-runtime";
|
|
2241
|
+
var SvgIconSearchCategories = (props) => /* @__PURE__ */ jsx43("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx43(
|
|
2207
2242
|
"path",
|
|
2208
2243
|
{
|
|
2209
2244
|
className: "icon-search-categories_svg__st0",
|
|
@@ -2213,8 +2248,8 @@ var SvgIconSearchCategories = (props) => /* @__PURE__ */ jsx42("svg", { viewBox:
|
|
|
2213
2248
|
var IconSearchCategories_default = SvgIconSearchCategories;
|
|
2214
2249
|
|
|
2215
2250
|
// src/components/icons/IconSetting.tsx
|
|
2216
|
-
import { jsx as
|
|
2217
|
-
var SvgIconSetting = (props) => /* @__PURE__ */
|
|
2251
|
+
import { jsx as jsx44 } from "react/jsx-runtime";
|
|
2252
|
+
var SvgIconSetting = (props) => /* @__PURE__ */ jsx44("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx44(
|
|
2218
2253
|
"path",
|
|
2219
2254
|
{
|
|
2220
2255
|
className: "icon-setting_svg__st0",
|
|
@@ -2224,8 +2259,8 @@ var SvgIconSetting = (props) => /* @__PURE__ */ jsx43("svg", { viewBox: "0 0 55
|
|
|
2224
2259
|
var IconSetting_default = SvgIconSetting;
|
|
2225
2260
|
|
|
2226
2261
|
// src/components/icons/IconSnail.tsx
|
|
2227
|
-
import { jsx as
|
|
2228
|
-
var SvgIconSnail = (props) => /* @__PURE__ */
|
|
2262
|
+
import { jsx as jsx45 } from "react/jsx-runtime";
|
|
2263
|
+
var SvgIconSnail = (props) => /* @__PURE__ */ jsx45(
|
|
2229
2264
|
"svg",
|
|
2230
2265
|
{
|
|
2231
2266
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2233,36 +2268,36 @@ var SvgIconSnail = (props) => /* @__PURE__ */ jsx44(
|
|
|
2233
2268
|
height: "24",
|
|
2234
2269
|
viewBox: "0 0 24 24",
|
|
2235
2270
|
...props,
|
|
2236
|
-
children: /* @__PURE__ */
|
|
2271
|
+
children: /* @__PURE__ */ jsx45("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
2272
|
}
|
|
2238
2273
|
);
|
|
2239
2274
|
var IconSnail_default = SvgIconSnail;
|
|
2240
2275
|
|
|
2241
2276
|
// src/components/icons/IconSpecialPrice.tsx
|
|
2242
|
-
import { jsx as
|
|
2277
|
+
import { jsx as jsx46, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
2243
2278
|
var SvgIconSpecialPrice = (props) => /* @__PURE__ */ jsxs31("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2244
|
-
/* @__PURE__ */
|
|
2279
|
+
/* @__PURE__ */ jsx46(
|
|
2245
2280
|
"path",
|
|
2246
2281
|
{
|
|
2247
2282
|
className: "icon-special-price_svg__st0",
|
|
2248
2283
|
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
2284
|
}
|
|
2250
2285
|
),
|
|
2251
|
-
/* @__PURE__ */
|
|
2286
|
+
/* @__PURE__ */ jsx46(
|
|
2252
2287
|
"path",
|
|
2253
2288
|
{
|
|
2254
2289
|
className: "icon-special-price_svg__st0",
|
|
2255
2290
|
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
2291
|
}
|
|
2257
2292
|
),
|
|
2258
|
-
/* @__PURE__ */
|
|
2293
|
+
/* @__PURE__ */ jsx46(
|
|
2259
2294
|
"path",
|
|
2260
2295
|
{
|
|
2261
2296
|
className: "icon-special-price_svg__st0",
|
|
2262
2297
|
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
2298
|
}
|
|
2264
2299
|
),
|
|
2265
|
-
/* @__PURE__ */
|
|
2300
|
+
/* @__PURE__ */ jsx46(
|
|
2266
2301
|
"path",
|
|
2267
2302
|
{
|
|
2268
2303
|
className: "icon-special-price_svg__st0",
|
|
@@ -2273,16 +2308,16 @@ var SvgIconSpecialPrice = (props) => /* @__PURE__ */ jsxs31("svg", { viewBox: "0
|
|
|
2273
2308
|
var IconSpecialPrice_default = SvgIconSpecialPrice;
|
|
2274
2309
|
|
|
2275
2310
|
// src/components/icons/IconStock.tsx
|
|
2276
|
-
import { jsx as
|
|
2311
|
+
import { jsx as jsx47, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
2277
2312
|
var SvgIconStock = (props) => /* @__PURE__ */ jsxs32("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2278
|
-
/* @__PURE__ */
|
|
2313
|
+
/* @__PURE__ */ jsx47(
|
|
2279
2314
|
"path",
|
|
2280
2315
|
{
|
|
2281
2316
|
className: "icon-stock_svg__st0",
|
|
2282
2317
|
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
2318
|
}
|
|
2284
2319
|
),
|
|
2285
|
-
/* @__PURE__ */
|
|
2320
|
+
/* @__PURE__ */ jsx47(
|
|
2286
2321
|
"path",
|
|
2287
2322
|
{
|
|
2288
2323
|
className: "icon-stock_svg__st0",
|
|
@@ -2293,8 +2328,8 @@ var SvgIconStock = (props) => /* @__PURE__ */ jsxs32("svg", { viewBox: "0 0 55 5
|
|
|
2293
2328
|
var IconStock_default = SvgIconStock;
|
|
2294
2329
|
|
|
2295
2330
|
// src/components/icons/IconStrawberry.tsx
|
|
2296
|
-
import { jsx as
|
|
2297
|
-
var SvgIconStrawberry = () => /* @__PURE__ */
|
|
2331
|
+
import { jsx as jsx48 } from "react/jsx-runtime";
|
|
2332
|
+
var SvgIconStrawberry = () => /* @__PURE__ */ jsx48(
|
|
2298
2333
|
"svg",
|
|
2299
2334
|
{
|
|
2300
2335
|
width: "24",
|
|
@@ -2302,7 +2337,7 @@ var SvgIconStrawberry = () => /* @__PURE__ */ jsx47(
|
|
|
2302
2337
|
viewBox: "0 0 24 24",
|
|
2303
2338
|
fill: "none",
|
|
2304
2339
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2305
|
-
children: /* @__PURE__ */
|
|
2340
|
+
children: /* @__PURE__ */ jsx48(
|
|
2306
2341
|
"path",
|
|
2307
2342
|
{
|
|
2308
2343
|
fillRule: "evenodd",
|
|
@@ -2316,23 +2351,23 @@ var SvgIconStrawberry = () => /* @__PURE__ */ jsx47(
|
|
|
2316
2351
|
var IconStrawberry_default = SvgIconStrawberry;
|
|
2317
2352
|
|
|
2318
2353
|
// src/components/icons/IconSupplier.tsx
|
|
2319
|
-
import { jsx as
|
|
2354
|
+
import { jsx as jsx49, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2320
2355
|
var SvgIconSupplier = (props) => /* @__PURE__ */ jsxs33("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2321
|
-
/* @__PURE__ */
|
|
2356
|
+
/* @__PURE__ */ jsx49(
|
|
2322
2357
|
"path",
|
|
2323
2358
|
{
|
|
2324
2359
|
className: "icon-supplier_svg__st0",
|
|
2325
2360
|
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
2361
|
}
|
|
2327
2362
|
),
|
|
2328
|
-
/* @__PURE__ */
|
|
2363
|
+
/* @__PURE__ */ jsx49(
|
|
2329
2364
|
"path",
|
|
2330
2365
|
{
|
|
2331
2366
|
className: "icon-supplier_svg__st0",
|
|
2332
2367
|
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
2368
|
}
|
|
2334
2369
|
),
|
|
2335
|
-
/* @__PURE__ */
|
|
2370
|
+
/* @__PURE__ */ jsx49(
|
|
2336
2371
|
"path",
|
|
2337
2372
|
{
|
|
2338
2373
|
className: "icon-supplier_svg__st0",
|
|
@@ -2343,23 +2378,23 @@ var SvgIconSupplier = (props) => /* @__PURE__ */ jsxs33("svg", { viewBox: "0 0 5
|
|
|
2343
2378
|
var IconSupplier_default = SvgIconSupplier;
|
|
2344
2379
|
|
|
2345
2380
|
// src/components/icons/IconSupplierPrices.tsx
|
|
2346
|
-
import { jsx as
|
|
2381
|
+
import { jsx as jsx50, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2347
2382
|
var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2348
|
-
/* @__PURE__ */
|
|
2383
|
+
/* @__PURE__ */ jsx50(
|
|
2349
2384
|
"path",
|
|
2350
2385
|
{
|
|
2351
2386
|
className: "icon-supplier-prices_svg__st0",
|
|
2352
2387
|
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
2388
|
}
|
|
2354
2389
|
),
|
|
2355
|
-
/* @__PURE__ */
|
|
2390
|
+
/* @__PURE__ */ jsx50(
|
|
2356
2391
|
"path",
|
|
2357
2392
|
{
|
|
2358
2393
|
className: "icon-supplier-prices_svg__st0",
|
|
2359
2394
|
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
2395
|
}
|
|
2361
2396
|
),
|
|
2362
|
-
/* @__PURE__ */
|
|
2397
|
+
/* @__PURE__ */ jsx50(
|
|
2363
2398
|
"path",
|
|
2364
2399
|
{
|
|
2365
2400
|
className: "icon-supplier-prices_svg__st0",
|
|
@@ -2367,21 +2402,21 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox:
|
|
|
2367
2402
|
}
|
|
2368
2403
|
),
|
|
2369
2404
|
/* @__PURE__ */ jsxs34("g", { children: [
|
|
2370
|
-
/* @__PURE__ */
|
|
2405
|
+
/* @__PURE__ */ jsx50(
|
|
2371
2406
|
"path",
|
|
2372
2407
|
{
|
|
2373
2408
|
className: "icon-supplier-prices_svg__st0",
|
|
2374
2409
|
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
2410
|
}
|
|
2376
2411
|
),
|
|
2377
|
-
/* @__PURE__ */
|
|
2412
|
+
/* @__PURE__ */ jsx50(
|
|
2378
2413
|
"path",
|
|
2379
2414
|
{
|
|
2380
2415
|
className: "icon-supplier-prices_svg__st0",
|
|
2381
2416
|
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
2417
|
}
|
|
2383
2418
|
),
|
|
2384
|
-
/* @__PURE__ */
|
|
2419
|
+
/* @__PURE__ */ jsx50(
|
|
2385
2420
|
"path",
|
|
2386
2421
|
{
|
|
2387
2422
|
className: "icon-supplier-prices_svg__st0",
|
|
@@ -2393,18 +2428,18 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ jsxs34("svg", { viewBox:
|
|
|
2393
2428
|
var IconSupplierPrices_default = SvgIconSupplierPrices;
|
|
2394
2429
|
|
|
2395
2430
|
// src/components/icons/IconUserManagement.tsx
|
|
2396
|
-
import { jsx as
|
|
2397
|
-
var SvgIconUserManagement = () => /* @__PURE__ */
|
|
2398
|
-
/* @__PURE__ */
|
|
2399
|
-
/* @__PURE__ */
|
|
2400
|
-
/* @__PURE__ */
|
|
2401
|
-
/* @__PURE__ */
|
|
2431
|
+
import { jsx as jsx51, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
2432
|
+
var SvgIconUserManagement = () => /* @__PURE__ */ jsx51("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 55 56.7", children: /* @__PURE__ */ jsx51("g", { children: /* @__PURE__ */ jsxs35("g", { id: "Layer_1", children: [
|
|
2433
|
+
/* @__PURE__ */ jsx51("path", { d: "M672.6,1136.6c-1.6,0-3,1.3-3,2.9s1.4,3,3,3,3-1.4,2.9-2.9c0-1.6-1.3-3-2.9-3h0Z" }),
|
|
2434
|
+
/* @__PURE__ */ jsx51("path", { d: "M683.4,1136.5c-1.7,0-3,1.4-3,3s1.4,3,3,3,3-1.4,3-3.1-1.4-2.9-3-2.9h0Z" }),
|
|
2435
|
+
/* @__PURE__ */ jsx51("path", { d: "M672.4,1130.2h.9v1.2c0,1.1.9,2,2,2h6.9c-1.6.3-3,1.3-4,2.7h-.5c-1.5-2.2-3.5-2.7-5.1-2.7s-2.3.3-3.3.9v-3.7h0c0,0,.2-.2.7-.3M687.2,1133.4v1.3c-.6-.5-1.2-.8-1.8-1.1h.3c.4,0,.7,0,1.2-.2.2,0,.3,0,.3,0M688,1118.3c-.7,0-1.3.5-1.4,1.1v12.1c-.4,0-.7,0-.9,0-.4,0-.5-.2-.8-.9-1.6-3.7-3.1-7.4-4.7-11.1-.2-.7-.8-1-1.6-1h-7.3c-1.1,0-1.6.3-1.6,1.6v8.1c-1.6.2-2.4,1-2.4,2.3v6.8c0,.2.2.7.5.7s.3,0,.5,0,.4,0,.6-.4c.8-1.6,2.1-2.4,3.8-2.4s2.9.8,3.7,2.3c0,.3.3.5.7.5h1.9c.5,0,.6-.2.8-.6.8-1.5,2.1-2.3,3.8-2.3s2.9.9,3.7,2.4c.5.9.5,1.8.2,3h5.4c.7,0,1.1-.6,1.1-1,0-.7-.3-1.1-.9-1.4-.2,0-.6,0-.8,0h-2.9v-18.7c-.3-.8-.7-1.2-1.4-1.2h0ZM672.4,1128.2v-7.2h5.5c0,0,.3,0,.3.3,1.4,3.3,2.9,6.6,4.2,9.9h0c-2.3,0-4.7,0-7.2,0v-2.3c0-.8,0-.9-.9-.9-.7,0-1.3,0-1.9,0h0Z" }),
|
|
2436
|
+
/* @__PURE__ */ jsx51("path", { d: "M29.3,26.7c1-1.3,1.5-3,1.5-4.6s-.5-3.3-1.5-4.6c.9-.6,2-.9,3.1-.9,1.5,0,2.9.6,3.9,1.6,1,1,1.6,2.5,1.6,3.9s-.6,2.9-1.6,3.9-2.5,1.6-3.9,1.6c-1.1,0-2.2-.3-3.1-.9ZM17.3,22.1c0-1.1.3-2.2.9-3.1.6-.9,1.5-1.6,2.5-2,1-.4,2.1-.5,3.2-.3,1.1.2,2.1.7,2.8,1.5.8.8,1.3,1.8,1.5,2.8.2,1.1.1,2.2-.3,3.2-.4,1-1.1,1.9-2,2.5-.9.6-2,.9-3.1.9s-2.9-.6-3.9-1.6-1.6-2.5-1.6-3.9ZM20.5,22.1c0,.5.1.9.4,1.3.3.4.6.7,1.1.9.4.2.9.2,1.4.1.5,0,.9-.3,1.2-.7.3-.3.6-.8.7-1.2,0-.5,0-.9-.1-1.4-.2-.4-.5-.8-.9-1.1-.4-.3-.9-.4-1.3-.4s-1.2.3-1.7.7c-.4.4-.7,1.1-.7,1.7ZM34,37.1v3.2H11.8v-3.2s0-6.3,11.1-6.3,11.1,6.3,11.1,6.3ZM30.8,37.1c-.2-1.2-2.1-3.2-7.9-3.2s-7.8,2.1-7.9,3.2M33.9,30.8c1,.8,1.8,1.7,2.3,2.8.6,1.1.9,2.3.9,3.5v3.2h6.3v-3.2s0-5.8-9.6-6.3h0Z" })
|
|
2402
2437
|
] }) }) });
|
|
2403
2438
|
var IconUserManagement_default = SvgIconUserManagement;
|
|
2404
2439
|
|
|
2405
2440
|
// src/components/icons/IconVkc.tsx
|
|
2406
|
-
import { jsx as
|
|
2407
|
-
var SvgIconVkc = (props) => /* @__PURE__ */
|
|
2441
|
+
import { jsx as jsx52 } from "react/jsx-runtime";
|
|
2442
|
+
var SvgIconVkc = (props) => /* @__PURE__ */ jsx52("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ jsx52(
|
|
2408
2443
|
"path",
|
|
2409
2444
|
{
|
|
2410
2445
|
className: "icon-vkc_svg__st0",
|
|
@@ -2414,16 +2449,16 @@ var SvgIconVkc = (props) => /* @__PURE__ */ jsx51("svg", { viewBox: "0 0 55 56.7
|
|
|
2414
2449
|
var IconVkc_default = SvgIconVkc;
|
|
2415
2450
|
|
|
2416
2451
|
// src/components/icons/SamsaraLogo.tsx
|
|
2417
|
-
import { jsx as
|
|
2452
|
+
import { jsx as jsx53, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
2418
2453
|
var SvgSamsaraLogo = (props) => /* @__PURE__ */ jsxs36("svg", { viewBox: "0 0 36 52.4", ...props, children: [
|
|
2419
|
-
/* @__PURE__ */
|
|
2454
|
+
/* @__PURE__ */ jsx53(
|
|
2420
2455
|
"path",
|
|
2421
2456
|
{
|
|
2422
2457
|
className: "samsara_logo_svg__st0",
|
|
2423
2458
|
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
2459
|
}
|
|
2425
2460
|
),
|
|
2426
|
-
/* @__PURE__ */
|
|
2461
|
+
/* @__PURE__ */ jsx53(
|
|
2427
2462
|
"path",
|
|
2428
2463
|
{
|
|
2429
2464
|
className: "samsara_logo_svg__st0",
|
|
@@ -2476,8 +2511,8 @@ var icons = {
|
|
|
2476
2511
|
var icons_default = icons;
|
|
2477
2512
|
|
|
2478
2513
|
// src/components/icons/IconAirplane.tsx
|
|
2479
|
-
import { jsx as
|
|
2480
|
-
var SvgIconAirplane = (props) => /* @__PURE__ */
|
|
2514
|
+
import { jsx as jsx54 } from "react/jsx-runtime";
|
|
2515
|
+
var SvgIconAirplane = (props) => /* @__PURE__ */ jsx54(
|
|
2481
2516
|
"svg",
|
|
2482
2517
|
{
|
|
2483
2518
|
width: "24",
|
|
@@ -2486,7 +2521,7 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ jsx53(
|
|
|
2486
2521
|
fill: "none",
|
|
2487
2522
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2488
2523
|
...props,
|
|
2489
|
-
children: /* @__PURE__ */
|
|
2524
|
+
children: /* @__PURE__ */ jsx54(
|
|
2490
2525
|
"path",
|
|
2491
2526
|
{
|
|
2492
2527
|
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 +2533,8 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ jsx53(
|
|
|
2498
2533
|
var IconAirplane_default = SvgIconAirplane;
|
|
2499
2534
|
|
|
2500
2535
|
// src/components/icons/IconBicycle.tsx
|
|
2501
|
-
import { jsx as
|
|
2502
|
-
var SvgIconBicycle = () => /* @__PURE__ */
|
|
2536
|
+
import { jsx as jsx55 } from "react/jsx-runtime";
|
|
2537
|
+
var SvgIconBicycle = () => /* @__PURE__ */ jsx55(
|
|
2503
2538
|
"svg",
|
|
2504
2539
|
{
|
|
2505
2540
|
width: "24",
|
|
@@ -2507,7 +2542,7 @@ var SvgIconBicycle = () => /* @__PURE__ */ jsx54(
|
|
|
2507
2542
|
viewBox: "0 0 24 24",
|
|
2508
2543
|
fill: "none",
|
|
2509
2544
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2510
|
-
children: /* @__PURE__ */
|
|
2545
|
+
children: /* @__PURE__ */ jsx55(
|
|
2511
2546
|
"path",
|
|
2512
2547
|
{
|
|
2513
2548
|
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 +2554,8 @@ var SvgIconBicycle = () => /* @__PURE__ */ jsx54(
|
|
|
2519
2554
|
var IconBicycle_default = SvgIconBicycle;
|
|
2520
2555
|
|
|
2521
2556
|
// src/components/icons/IconBus.tsx
|
|
2522
|
-
import { jsx as
|
|
2523
|
-
var SvgIconBus = () => /* @__PURE__ */
|
|
2557
|
+
import { jsx as jsx56 } from "react/jsx-runtime";
|
|
2558
|
+
var SvgIconBus = () => /* @__PURE__ */ jsx56(
|
|
2524
2559
|
"svg",
|
|
2525
2560
|
{
|
|
2526
2561
|
width: "24",
|
|
@@ -2528,7 +2563,7 @@ var SvgIconBus = () => /* @__PURE__ */ jsx55(
|
|
|
2528
2563
|
viewBox: "0 0 24 24",
|
|
2529
2564
|
fill: "none",
|
|
2530
2565
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2531
|
-
children: /* @__PURE__ */
|
|
2566
|
+
children: /* @__PURE__ */ jsx56(
|
|
2532
2567
|
"path",
|
|
2533
2568
|
{
|
|
2534
2569
|
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 +2575,8 @@ var SvgIconBus = () => /* @__PURE__ */ jsx55(
|
|
|
2540
2575
|
var IconBus_default = SvgIconBus;
|
|
2541
2576
|
|
|
2542
2577
|
// src/components/icons/IconCar.tsx
|
|
2543
|
-
import { jsx as
|
|
2544
|
-
var SvgIconCar = () => /* @__PURE__ */
|
|
2578
|
+
import { jsx as jsx57 } from "react/jsx-runtime";
|
|
2579
|
+
var SvgIconCar = () => /* @__PURE__ */ jsx57(
|
|
2545
2580
|
"svg",
|
|
2546
2581
|
{
|
|
2547
2582
|
width: "24",
|
|
@@ -2549,7 +2584,7 @@ var SvgIconCar = () => /* @__PURE__ */ jsx56(
|
|
|
2549
2584
|
viewBox: "0 0 24 24",
|
|
2550
2585
|
fill: "none",
|
|
2551
2586
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2552
|
-
children: /* @__PURE__ */
|
|
2587
|
+
children: /* @__PURE__ */ jsx57(
|
|
2553
2588
|
"path",
|
|
2554
2589
|
{
|
|
2555
2590
|
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 +2596,8 @@ var SvgIconCar = () => /* @__PURE__ */ jsx56(
|
|
|
2561
2596
|
var IconCar_default = SvgIconCar;
|
|
2562
2597
|
|
|
2563
2598
|
// src/components/icons/IconFork.tsx
|
|
2564
|
-
import { jsx as
|
|
2565
|
-
var SvgIconFork = () => /* @__PURE__ */
|
|
2599
|
+
import { jsx as jsx58 } from "react/jsx-runtime";
|
|
2600
|
+
var SvgIconFork = () => /* @__PURE__ */ jsx58(
|
|
2566
2601
|
"svg",
|
|
2567
2602
|
{
|
|
2568
2603
|
width: "20",
|
|
@@ -2570,7 +2605,7 @@ var SvgIconFork = () => /* @__PURE__ */ jsx57(
|
|
|
2570
2605
|
viewBox: "0 0 20 20",
|
|
2571
2606
|
fill: "none",
|
|
2572
2607
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2573
|
-
children: /* @__PURE__ */
|
|
2608
|
+
children: /* @__PURE__ */ jsx58(
|
|
2574
2609
|
"path",
|
|
2575
2610
|
{
|
|
2576
2611
|
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 +2617,8 @@ var SvgIconFork = () => /* @__PURE__ */ jsx57(
|
|
|
2582
2617
|
var IconFork_default = SvgIconFork;
|
|
2583
2618
|
|
|
2584
2619
|
// src/components/icons/IconHeart.tsx
|
|
2585
|
-
import { jsx as
|
|
2586
|
-
var SvgIconHeart = () => /* @__PURE__ */
|
|
2620
|
+
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
2621
|
+
var SvgIconHeart = () => /* @__PURE__ */ jsx59(
|
|
2587
2622
|
"svg",
|
|
2588
2623
|
{
|
|
2589
2624
|
width: "20",
|
|
@@ -2591,7 +2626,7 @@ var SvgIconHeart = () => /* @__PURE__ */ jsx58(
|
|
|
2591
2626
|
viewBox: "0 0 20 20",
|
|
2592
2627
|
fill: "none",
|
|
2593
2628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2594
|
-
children: /* @__PURE__ */
|
|
2629
|
+
children: /* @__PURE__ */ jsx59(
|
|
2595
2630
|
"path",
|
|
2596
2631
|
{
|
|
2597
2632
|
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 +2638,8 @@ var SvgIconHeart = () => /* @__PURE__ */ jsx58(
|
|
|
2603
2638
|
var IconHeart_default = SvgIconHeart;
|
|
2604
2639
|
|
|
2605
2640
|
// src/components/icons/IconKnife.tsx
|
|
2606
|
-
import { jsx as
|
|
2607
|
-
var SvgIconKnife = (props) => /* @__PURE__ */
|
|
2641
|
+
import { jsx as jsx60 } from "react/jsx-runtime";
|
|
2642
|
+
var SvgIconKnife = (props) => /* @__PURE__ */ jsx60(
|
|
2608
2643
|
"svg",
|
|
2609
2644
|
{
|
|
2610
2645
|
width: "20",
|
|
@@ -2613,7 +2648,7 @@ var SvgIconKnife = (props) => /* @__PURE__ */ jsx59(
|
|
|
2613
2648
|
fill: "none",
|
|
2614
2649
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2615
2650
|
...props,
|
|
2616
|
-
children: /* @__PURE__ */
|
|
2651
|
+
children: /* @__PURE__ */ jsx60(
|
|
2617
2652
|
"path",
|
|
2618
2653
|
{
|
|
2619
2654
|
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 +2660,8 @@ var SvgIconKnife = (props) => /* @__PURE__ */ jsx59(
|
|
|
2625
2660
|
var IconKnife_default = SvgIconKnife;
|
|
2626
2661
|
|
|
2627
2662
|
// src/components/icons/IconSpoon.tsx
|
|
2628
|
-
import { jsx as
|
|
2629
|
-
var SvgIconSpoon = () => /* @__PURE__ */
|
|
2663
|
+
import { jsx as jsx61 } from "react/jsx-runtime";
|
|
2664
|
+
var SvgIconSpoon = () => /* @__PURE__ */ jsx61(
|
|
2630
2665
|
"svg",
|
|
2631
2666
|
{
|
|
2632
2667
|
width: "20",
|
|
@@ -2634,7 +2669,7 @@ var SvgIconSpoon = () => /* @__PURE__ */ jsx60(
|
|
|
2634
2669
|
viewBox: "0 0 20 20",
|
|
2635
2670
|
fill: "none",
|
|
2636
2671
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2637
|
-
children: /* @__PURE__ */
|
|
2672
|
+
children: /* @__PURE__ */ jsx61(
|
|
2638
2673
|
"path",
|
|
2639
2674
|
{
|
|
2640
2675
|
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 +2681,8 @@ var SvgIconSpoon = () => /* @__PURE__ */ jsx60(
|
|
|
2646
2681
|
var IconSpoon_default = SvgIconSpoon;
|
|
2647
2682
|
|
|
2648
2683
|
// src/resources/icons/BulkIcon.tsx
|
|
2649
|
-
import { jsx as
|
|
2650
|
-
var BulkIcon = (props) => /* @__PURE__ */
|
|
2684
|
+
import { jsx as jsx62 } from "react/jsx-runtime";
|
|
2685
|
+
var BulkIcon = (props) => /* @__PURE__ */ jsx62(
|
|
2651
2686
|
"svg",
|
|
2652
2687
|
{
|
|
2653
2688
|
height: 24,
|
|
@@ -2655,13 +2690,13 @@ var BulkIcon = (props) => /* @__PURE__ */ jsx61(
|
|
|
2655
2690
|
width: 24,
|
|
2656
2691
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2657
2692
|
...props,
|
|
2658
|
-
children: /* @__PURE__ */
|
|
2693
|
+
children: /* @__PURE__ */ jsx62("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
2694
|
}
|
|
2660
2695
|
);
|
|
2661
2696
|
var BulkIcon_default = BulkIcon;
|
|
2662
2697
|
|
|
2663
2698
|
// src/components/Buttons/RoundButton/RoundButton.tsx
|
|
2664
|
-
import { jsx as
|
|
2699
|
+
import { jsx as jsx63 } from "react/jsx-runtime";
|
|
2665
2700
|
var useStyles11 = makeStyles11()(() => ({
|
|
2666
2701
|
base: {
|
|
2667
2702
|
backgroundColor: "transparent",
|
|
@@ -2779,48 +2814,48 @@ var RoundButton = ({
|
|
|
2779
2814
|
const { classes, cx } = useStyles11();
|
|
2780
2815
|
const iconSize = size === "small" ? "small" : "medium";
|
|
2781
2816
|
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__ */
|
|
2817
|
+
add: /* @__PURE__ */ jsx63(Add3, { fontSize: iconSize }),
|
|
2818
|
+
apps: /* @__PURE__ */ jsx63(Apps, { fontSize: iconSize }),
|
|
2819
|
+
arrowBack: /* @__PURE__ */ jsx63(ArrowBack, { fontSize: iconSize }),
|
|
2820
|
+
arrowForward: /* @__PURE__ */ jsx63(ArrowForward, { fontSize: iconSize }),
|
|
2821
|
+
avocado: /* @__PURE__ */ jsx63(IconAvocado_default, {}),
|
|
2822
|
+
backspaceOutlined: /* @__PURE__ */ jsx63(BackspaceOutlined, { fontSize: iconSize }),
|
|
2823
|
+
banana: /* @__PURE__ */ jsx63(IconBanana_default, {}),
|
|
2824
|
+
block: /* @__PURE__ */ jsx63(Block, { fontSize: iconSize }),
|
|
2825
|
+
bulk: /* @__PURE__ */ jsx63(BulkIcon_default, { fill: colors.contrast }),
|
|
2826
|
+
callSplit: /* @__PURE__ */ jsx63(CallSplit, { fontSize: iconSize }),
|
|
2827
|
+
chevronRight: /* @__PURE__ */ jsx63(ChevronRight2, { fontSize: iconSize }),
|
|
2828
|
+
chevronUp: /* @__PURE__ */ jsx63(KeyboardArrowUp, { fontSize: iconSize }),
|
|
2829
|
+
chevronDown: /* @__PURE__ */ jsx63(KeyboardArrowDown, { fontSize: iconSize }),
|
|
2830
|
+
close: /* @__PURE__ */ jsx63(Close, { fontSize: iconSize }),
|
|
2831
|
+
delete: /* @__PURE__ */ jsx63(Delete2, { fontSize: iconSize, fill: colors.neutral800 }),
|
|
2832
|
+
done: /* @__PURE__ */ jsx63(Done, { fontSize: iconSize }),
|
|
2833
|
+
edit: /* @__PURE__ */ jsx63(Edit2, { fontSize: iconSize }),
|
|
2834
|
+
email: /* @__PURE__ */ jsx63(Email, { fontSize: iconSize }),
|
|
2835
|
+
grape: /* @__PURE__ */ jsx63(IconGrape_default, {}),
|
|
2836
|
+
groupAdd: /* @__PURE__ */ jsx63(GroupAdd, { fontSize: iconSize }),
|
|
2837
|
+
history: /* @__PURE__ */ jsx63(History, { fontSize: iconSize }),
|
|
2838
|
+
menu: /* @__PURE__ */ jsx63(Menu, { fontSize: iconSize }),
|
|
2839
|
+
threeDots: /* @__PURE__ */ jsx63(MoreHoriz, { fontSize: iconSize, color: iconColor }),
|
|
2840
|
+
notes: /* @__PURE__ */ jsx63(Comment, { fontSize: iconSize }),
|
|
2841
|
+
refresh: /* @__PURE__ */ jsx63(Refresh2, { fontSize: iconSize }),
|
|
2842
|
+
remove: /* @__PURE__ */ jsx63(Remove, { fontSize: iconSize }),
|
|
2843
|
+
search: /* @__PURE__ */ jsx63(Search, { fontSize: iconSize }),
|
|
2844
|
+
send: /* @__PURE__ */ jsx63(Send, { fontSize: iconSize }),
|
|
2845
|
+
strawberry: /* @__PURE__ */ jsx63(IconStrawberry_default, {}),
|
|
2846
|
+
thumbDown: /* @__PURE__ */ jsx63(ThumbDown, { fontSize: iconSize }),
|
|
2847
|
+
thumbUp: /* @__PURE__ */ jsx63(ThumbUp, { fontSize: iconSize }),
|
|
2848
|
+
undo: /* @__PURE__ */ jsx63(Undo, { fontSize: iconSize }),
|
|
2849
|
+
play: /* @__PURE__ */ jsx63(PlayArrowRounded, { fontSize: iconSize }),
|
|
2850
|
+
snail: /* @__PURE__ */ jsx63(icons_default.SvgIconSnail, { fontSize: iconSize, fill: colors.muiPrimary }),
|
|
2851
|
+
bus: /* @__PURE__ */ jsx63(IconBus_default, {}),
|
|
2852
|
+
spoon: /* @__PURE__ */ jsx63(IconSpoon_default, {}),
|
|
2853
|
+
fork: /* @__PURE__ */ jsx63(IconFork_default, {}),
|
|
2854
|
+
car: /* @__PURE__ */ jsx63(IconCar_default, {}),
|
|
2855
|
+
knife: /* @__PURE__ */ jsx63(IconKnife_default, {}),
|
|
2856
|
+
bicycle: /* @__PURE__ */ jsx63(IconBicycle_default, {}),
|
|
2857
|
+
heart: /* @__PURE__ */ jsx63(IconHeart_default, {}),
|
|
2858
|
+
airplane: /* @__PURE__ */ jsx63(IconAirplane_default, {})
|
|
2824
2859
|
};
|
|
2825
2860
|
const filteredSize = size === "double" ? void 0 : size;
|
|
2826
2861
|
const handleClick = (e) => {
|
|
@@ -2828,7 +2863,7 @@ var RoundButton = ({
|
|
|
2828
2863
|
onClick(e);
|
|
2829
2864
|
}
|
|
2830
2865
|
};
|
|
2831
|
-
const Button14 = /* @__PURE__ */
|
|
2866
|
+
const Button14 = /* @__PURE__ */ jsx63(
|
|
2832
2867
|
Fab,
|
|
2833
2868
|
{
|
|
2834
2869
|
className: cx(
|
|
@@ -2852,7 +2887,7 @@ var RoundButton = ({
|
|
|
2852
2887
|
children: icon ? iconComponentMap[icon] : children || ""
|
|
2853
2888
|
}
|
|
2854
2889
|
);
|
|
2855
|
-
return tooltip ? /* @__PURE__ */
|
|
2890
|
+
return tooltip ? /* @__PURE__ */ jsx63(Tooltip2, { title: tooltip, children: Button14 }) : Button14;
|
|
2856
2891
|
};
|
|
2857
2892
|
var RoundButton_default = RoundButton;
|
|
2858
2893
|
|
|
@@ -2860,7 +2895,7 @@ var RoundButton_default = RoundButton;
|
|
|
2860
2895
|
import { memo as memo8 } from "react";
|
|
2861
2896
|
import { Pin } from "mdi-material-ui";
|
|
2862
2897
|
import { makeStyles as makeStyles12 } from "tss-react/mui";
|
|
2863
|
-
import { jsx as
|
|
2898
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
2864
2899
|
var useStyles12 = makeStyles12()(() => ({
|
|
2865
2900
|
root: {
|
|
2866
2901
|
opacity: 0.5
|
|
@@ -2871,14 +2906,14 @@ var useStyles12 = makeStyles12()(() => ({
|
|
|
2871
2906
|
}));
|
|
2872
2907
|
var PinButton = () => {
|
|
2873
2908
|
const { classes } = useStyles12();
|
|
2874
|
-
return /* @__PURE__ */
|
|
2909
|
+
return /* @__PURE__ */ jsx64(Pin, { className: classes.root });
|
|
2875
2910
|
};
|
|
2876
2911
|
var Pin_default = memo8(PinButton);
|
|
2877
2912
|
|
|
2878
2913
|
// src/components/Buttons/PinnedApp.tsx
|
|
2879
2914
|
import { Fab as Fab2, Icon } from "@mui/material";
|
|
2880
2915
|
import { makeStyles as makeStyles13 } from "tss-react/mui";
|
|
2881
|
-
import { jsx as
|
|
2916
|
+
import { jsx as jsx65 } from "react/jsx-runtime";
|
|
2882
2917
|
var useStyles13 = makeStyles13()((theme) => ({
|
|
2883
2918
|
root: {
|
|
2884
2919
|
"& > *": {
|
|
@@ -2892,12 +2927,12 @@ var useStyles13 = makeStyles13()((theme) => ({
|
|
|
2892
2927
|
function ActionButton(props) {
|
|
2893
2928
|
const { app } = props;
|
|
2894
2929
|
const { classes } = useStyles13();
|
|
2895
|
-
return /* @__PURE__ */
|
|
2930
|
+
return /* @__PURE__ */ jsx65("div", { className: classes.root, children: /* @__PURE__ */ jsx65(Fab2, { color: "primary", "aria-label": "add", children: /* @__PURE__ */ jsx65(Icon, { children: app.icon }) }) });
|
|
2896
2931
|
}
|
|
2897
2932
|
|
|
2898
2933
|
// src/components/CompanyLogo/CompanyLogo.tsx
|
|
2899
2934
|
import { makeStyles as makeStyles14 } from "tss-react/mui";
|
|
2900
|
-
import { jsx as
|
|
2935
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
2901
2936
|
var useStyles14 = makeStyles14()((theme, { imageLogoDarkSmall, imageLogoLightSmall }) => ({
|
|
2902
2937
|
logoSmall: {
|
|
2903
2938
|
height: 46,
|
|
@@ -2930,14 +2965,14 @@ var CompanyLogo = ({
|
|
|
2930
2965
|
[classes.logoLight]: color === "light",
|
|
2931
2966
|
[classes.logoDark]: color === "dark"
|
|
2932
2967
|
});
|
|
2933
|
-
return /* @__PURE__ */
|
|
2968
|
+
return /* @__PURE__ */ jsx66("div", { className });
|
|
2934
2969
|
};
|
|
2935
2970
|
var CompanyLogo_default = CompanyLogo;
|
|
2936
2971
|
|
|
2937
2972
|
// src/components/ConfirmationDialog/ConfirmationDialog.tsx
|
|
2938
2973
|
import { Box as Box9, Dialog as Dialog3, DialogActions as DialogActions2, Divider, Typography as Typography6 } from "@mui/material";
|
|
2939
2974
|
import { makeStyles as makeStyles15 } from "tss-react/mui";
|
|
2940
|
-
import { jsx as
|
|
2975
|
+
import { jsx as jsx67, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2941
2976
|
var useStyles15 = makeStyles15()((theme) => ({
|
|
2942
2977
|
content: {
|
|
2943
2978
|
width: "660px"
|
|
@@ -2975,14 +3010,14 @@ var ConfirmationDialog = ({
|
|
|
2975
3010
|
};
|
|
2976
3011
|
const contentComponent = () => {
|
|
2977
3012
|
if (typeof content === "string") {
|
|
2978
|
-
return /* @__PURE__ */
|
|
3013
|
+
return /* @__PURE__ */ jsx67(Typography6, { variant: "body1", children: content });
|
|
2979
3014
|
}
|
|
2980
3015
|
return content;
|
|
2981
3016
|
};
|
|
2982
3017
|
return /* @__PURE__ */ jsxs37(Dialog3, { onClose: closeModal, open: isOpen, maxWidth: "lg", children: [
|
|
2983
3018
|
/* @__PURE__ */ jsxs37(Box9, { className: classes.content, children: [
|
|
2984
|
-
/* @__PURE__ */
|
|
2985
|
-
/* @__PURE__ */
|
|
3019
|
+
/* @__PURE__ */ jsx67(Typography6, { className: classes.title, variant: "h6", children: title }),
|
|
3020
|
+
/* @__PURE__ */ jsx67(
|
|
2986
3021
|
Box9,
|
|
2987
3022
|
{
|
|
2988
3023
|
sx: {
|
|
@@ -2995,9 +3030,9 @@ var ConfirmationDialog = ({
|
|
|
2995
3030
|
}
|
|
2996
3031
|
)
|
|
2997
3032
|
] }),
|
|
2998
|
-
/* @__PURE__ */
|
|
3033
|
+
/* @__PURE__ */ jsx67(Divider, {}),
|
|
2999
3034
|
/* @__PURE__ */ jsxs37(DialogActions2, { className: classes.footer, children: [
|
|
3000
|
-
!hideCancel && /* @__PURE__ */
|
|
3035
|
+
!hideCancel && /* @__PURE__ */ jsx67(
|
|
3001
3036
|
FilledButton_default,
|
|
3002
3037
|
{
|
|
3003
3038
|
className: classes.button,
|
|
@@ -3007,7 +3042,7 @@ var ConfirmationDialog = ({
|
|
|
3007
3042
|
onClick: closeModal
|
|
3008
3043
|
}
|
|
3009
3044
|
),
|
|
3010
|
-
!hideConfirm && /* @__PURE__ */
|
|
3045
|
+
!hideConfirm && /* @__PURE__ */ jsx67(
|
|
3011
3046
|
FilledButton_default,
|
|
3012
3047
|
{
|
|
3013
3048
|
className: classes.button,
|
|
@@ -3032,7 +3067,7 @@ var ConfirmationDialog_default = ConfirmationDialog;
|
|
|
3032
3067
|
// src/components/ControlledCheckbox/ControlledCheckbox.tsx
|
|
3033
3068
|
import { Controller } from "react-hook-form";
|
|
3034
3069
|
import { Checkbox, FormControlLabel, Tooltip as Tooltip3 } from "@mui/material";
|
|
3035
|
-
import { jsx as
|
|
3070
|
+
import { jsx as jsx68 } from "react/jsx-runtime";
|
|
3036
3071
|
var ControlledCheckbox = ({
|
|
3037
3072
|
name,
|
|
3038
3073
|
label,
|
|
@@ -3044,18 +3079,18 @@ var ControlledCheckbox = ({
|
|
|
3044
3079
|
color,
|
|
3045
3080
|
handleChange,
|
|
3046
3081
|
disabled
|
|
3047
|
-
}) => /* @__PURE__ */
|
|
3082
|
+
}) => /* @__PURE__ */ jsx68(
|
|
3048
3083
|
Controller,
|
|
3049
3084
|
{
|
|
3050
3085
|
name,
|
|
3051
3086
|
control,
|
|
3052
3087
|
render: ({ field }) => {
|
|
3053
|
-
const checkbox = /* @__PURE__ */
|
|
3088
|
+
const checkbox = /* @__PURE__ */ jsx68(
|
|
3054
3089
|
FormControlLabel,
|
|
3055
3090
|
{
|
|
3056
3091
|
label,
|
|
3057
3092
|
className,
|
|
3058
|
-
control: /* @__PURE__ */
|
|
3093
|
+
control: /* @__PURE__ */ jsx68(
|
|
3059
3094
|
Checkbox,
|
|
3060
3095
|
{
|
|
3061
3096
|
...field,
|
|
@@ -3069,7 +3104,7 @@ var ControlledCheckbox = ({
|
|
|
3069
3104
|
)
|
|
3070
3105
|
}
|
|
3071
3106
|
);
|
|
3072
|
-
return tooltipDescription ? /* @__PURE__ */
|
|
3107
|
+
return tooltipDescription ? /* @__PURE__ */ jsx68(Tooltip3, { title: tooltipDescription, children: /* @__PURE__ */ jsx68("span", { children: checkbox }) }) : checkbox;
|
|
3073
3108
|
}
|
|
3074
3109
|
}
|
|
3075
3110
|
);
|
|
@@ -3079,7 +3114,7 @@ var ControlledCheckbox_default = ControlledCheckbox;
|
|
|
3079
3114
|
import { Controller as Controller2 } from "react-hook-form";
|
|
3080
3115
|
import { TextField as TextField2 } from "@mui/material";
|
|
3081
3116
|
import { makeStyles as makeStyles16 } from "tss-react/mui";
|
|
3082
|
-
import { jsx as
|
|
3117
|
+
import { jsx as jsx69 } from "react/jsx-runtime";
|
|
3083
3118
|
var useStyles16 = makeStyles16()(() => ({
|
|
3084
3119
|
selectInput: {
|
|
3085
3120
|
minWidth: 122
|
|
@@ -3112,12 +3147,12 @@ var ControlledNumberInput = ({
|
|
|
3112
3147
|
"Backspace",
|
|
3113
3148
|
"Tab"
|
|
3114
3149
|
].includes(input.key) && input.preventDefault();
|
|
3115
|
-
return /* @__PURE__ */
|
|
3150
|
+
return /* @__PURE__ */ jsx69(
|
|
3116
3151
|
Controller2,
|
|
3117
3152
|
{
|
|
3118
3153
|
control,
|
|
3119
3154
|
name,
|
|
3120
|
-
render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */
|
|
3155
|
+
render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */ jsx69(
|
|
3121
3156
|
TextField2,
|
|
3122
3157
|
{
|
|
3123
3158
|
variant: "standard",
|
|
@@ -3163,7 +3198,7 @@ import {
|
|
|
3163
3198
|
TextField as TextField3
|
|
3164
3199
|
} from "@mui/material";
|
|
3165
3200
|
import { makeStyles as makeStyles17 } from "tss-react/mui";
|
|
3166
|
-
import { jsx as
|
|
3201
|
+
import { jsx as jsx70, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
3167
3202
|
var convertUnderscoreToHyphen = (str) => str.replace(/_/g, "-");
|
|
3168
3203
|
var useStyles17 = makeStyles17()((theme) => ({
|
|
3169
3204
|
textFieldButtons: {
|
|
@@ -3264,17 +3299,17 @@ var ControlledNumericField = ({
|
|
|
3264
3299
|
decrementValue(field)();
|
|
3265
3300
|
}
|
|
3266
3301
|
};
|
|
3267
|
-
return /* @__PURE__ */
|
|
3302
|
+
return /* @__PURE__ */ jsx70(
|
|
3268
3303
|
Box10,
|
|
3269
3304
|
{
|
|
3270
3305
|
className,
|
|
3271
3306
|
"data-testid": dataTestId || `${convertUnderscoreToHyphen(fieldName)}`,
|
|
3272
|
-
children: /* @__PURE__ */
|
|
3307
|
+
children: /* @__PURE__ */ jsx70(
|
|
3273
3308
|
Controller3,
|
|
3274
3309
|
{
|
|
3275
3310
|
control,
|
|
3276
3311
|
name: fieldName,
|
|
3277
|
-
render: ({ field, fieldState }) => /* @__PURE__ */
|
|
3312
|
+
render: ({ field, fieldState }) => /* @__PURE__ */ jsx70(
|
|
3278
3313
|
TextField3,
|
|
3279
3314
|
{
|
|
3280
3315
|
...field,
|
|
@@ -3309,25 +3344,25 @@ var ControlledNumericField = ({
|
|
|
3309
3344
|
slotProps: {
|
|
3310
3345
|
htmlInput: { min, max, step },
|
|
3311
3346
|
input: {
|
|
3312
|
-
endAdornment: /* @__PURE__ */
|
|
3313
|
-
/* @__PURE__ */
|
|
3347
|
+
endAdornment: /* @__PURE__ */ jsx70(InputAdornment, { position: "end", children: /* @__PURE__ */ jsxs38(Box10, { className: classes.textFieldButtons, children: [
|
|
3348
|
+
/* @__PURE__ */ jsx70(
|
|
3314
3349
|
IconButton,
|
|
3315
3350
|
{
|
|
3316
3351
|
disableRipple: true,
|
|
3317
3352
|
className: classes.arrowButton,
|
|
3318
3353
|
onClick: incrementValue(field),
|
|
3319
3354
|
"data-testid": "arrow-up",
|
|
3320
|
-
children: /* @__PURE__ */
|
|
3355
|
+
children: /* @__PURE__ */ jsx70(KeyboardArrowUpIcon, { sx: { fontSize: 15 } })
|
|
3321
3356
|
}
|
|
3322
3357
|
),
|
|
3323
|
-
/* @__PURE__ */
|
|
3358
|
+
/* @__PURE__ */ jsx70(
|
|
3324
3359
|
IconButton,
|
|
3325
3360
|
{
|
|
3326
3361
|
disableRipple: true,
|
|
3327
3362
|
className: classes.arrowButton,
|
|
3328
3363
|
onClick: decrementValue(field),
|
|
3329
3364
|
"data-testid": "arrow-down",
|
|
3330
|
-
children: /* @__PURE__ */
|
|
3365
|
+
children: /* @__PURE__ */ jsx70(KeyboardArrowDownIcon, { sx: { fontSize: 15 } })
|
|
3331
3366
|
}
|
|
3332
3367
|
)
|
|
3333
3368
|
] }) })
|
|
@@ -3346,7 +3381,7 @@ var ControlledNumericField_default = ControlledNumericField;
|
|
|
3346
3381
|
import { Controller as Controller4 } from "react-hook-form";
|
|
3347
3382
|
import { FormControl, FormHelperText, InputLabel, Select } from "@mui/material";
|
|
3348
3383
|
import { makeStyles as makeStyles18 } from "tss-react/mui";
|
|
3349
|
-
import { jsx as
|
|
3384
|
+
import { jsx as jsx71, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
3350
3385
|
var useStyles18 = makeStyles18()(() => ({
|
|
3351
3386
|
selectInput: {
|
|
3352
3387
|
minWidth: 122
|
|
@@ -3363,7 +3398,7 @@ var ControlledSelectWithArray = ({
|
|
|
3363
3398
|
revalidateFormFunction
|
|
3364
3399
|
}) => {
|
|
3365
3400
|
const { classes } = useStyles18();
|
|
3366
|
-
return /* @__PURE__ */
|
|
3401
|
+
return /* @__PURE__ */ jsx71(
|
|
3367
3402
|
Controller4,
|
|
3368
3403
|
{
|
|
3369
3404
|
control,
|
|
@@ -3377,7 +3412,7 @@ var ControlledSelectWithArray = ({
|
|
|
3377
3412
|
className: className || classes.selectInput,
|
|
3378
3413
|
variant: "standard",
|
|
3379
3414
|
children: [
|
|
3380
|
-
/* @__PURE__ */
|
|
3415
|
+
/* @__PURE__ */ jsx71(InputLabel, { shrink: true, error: !!fieldState.error, children: label }),
|
|
3381
3416
|
/* @__PURE__ */ jsxs39(
|
|
3382
3417
|
Select,
|
|
3383
3418
|
{
|
|
@@ -3397,12 +3432,12 @@ var ControlledSelectWithArray = ({
|
|
|
3397
3432
|
},
|
|
3398
3433
|
error: !!fieldState.error,
|
|
3399
3434
|
children: [
|
|
3400
|
-
/* @__PURE__ */
|
|
3401
|
-
options?.map((item) => /* @__PURE__ */
|
|
3435
|
+
/* @__PURE__ */ jsx71("option", { "aria-label": "None" }),
|
|
3436
|
+
options?.map((item) => /* @__PURE__ */ jsx71("option", { value: item, children: item }, item))
|
|
3402
3437
|
]
|
|
3403
3438
|
}
|
|
3404
3439
|
),
|
|
3405
|
-
/* @__PURE__ */
|
|
3440
|
+
/* @__PURE__ */ jsx71(FormHelperText, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3406
3441
|
]
|
|
3407
3442
|
}
|
|
3408
3443
|
)
|
|
@@ -3415,7 +3450,7 @@ var ControlledSelectWithArray_default = ControlledSelectWithArray;
|
|
|
3415
3450
|
import { Controller as Controller5 } from "react-hook-form";
|
|
3416
3451
|
import { FormControl as FormControl2, FormHelperText as FormHelperText2, InputLabel as InputLabel2, Select as Select2 } from "@mui/material";
|
|
3417
3452
|
import { makeStyles as makeStyles19 } from "tss-react/mui";
|
|
3418
|
-
import { jsx as
|
|
3453
|
+
import { jsx as jsx72, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
3419
3454
|
var useStyles19 = makeStyles19()(() => ({
|
|
3420
3455
|
selectInput: {
|
|
3421
3456
|
minWidth: 122
|
|
@@ -3433,7 +3468,7 @@ var ControlledSelectWithObject = ({
|
|
|
3433
3468
|
revalidateFormFunction
|
|
3434
3469
|
}) => {
|
|
3435
3470
|
const { classes } = useStyles19();
|
|
3436
|
-
return /* @__PURE__ */
|
|
3471
|
+
return /* @__PURE__ */ jsx72(
|
|
3437
3472
|
Controller5,
|
|
3438
3473
|
{
|
|
3439
3474
|
control,
|
|
@@ -3447,7 +3482,7 @@ var ControlledSelectWithObject = ({
|
|
|
3447
3482
|
className: className || classes.selectInput,
|
|
3448
3483
|
variant: "standard",
|
|
3449
3484
|
children: [
|
|
3450
|
-
/* @__PURE__ */
|
|
3485
|
+
/* @__PURE__ */ jsx72(InputLabel2, { error: !!fieldState.error, children: label }),
|
|
3451
3486
|
/* @__PURE__ */ jsxs40(
|
|
3452
3487
|
Select2,
|
|
3453
3488
|
{
|
|
@@ -3467,8 +3502,8 @@ var ControlledSelectWithObject = ({
|
|
|
3467
3502
|
},
|
|
3468
3503
|
error: !!fieldState.error,
|
|
3469
3504
|
children: [
|
|
3470
|
-
/* @__PURE__ */
|
|
3471
|
-
options?.map((option) => /* @__PURE__ */
|
|
3505
|
+
/* @__PURE__ */ jsx72("option", { "aria-label": "None" }),
|
|
3506
|
+
options?.map((option) => /* @__PURE__ */ jsx72(
|
|
3472
3507
|
"option",
|
|
3473
3508
|
{
|
|
3474
3509
|
disabled: listToDisableFromOptions ? listToDisableFromOptions.includes(option.value) : false,
|
|
@@ -3480,7 +3515,7 @@ var ControlledSelectWithObject = ({
|
|
|
3480
3515
|
]
|
|
3481
3516
|
}
|
|
3482
3517
|
),
|
|
3483
|
-
/* @__PURE__ */
|
|
3518
|
+
/* @__PURE__ */ jsx72(FormHelperText2, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3484
3519
|
]
|
|
3485
3520
|
}
|
|
3486
3521
|
)
|
|
@@ -3496,7 +3531,7 @@ import {
|
|
|
3496
3531
|
import { Box as Box11, TextField as TextField4 } from "@mui/material";
|
|
3497
3532
|
import classNames from "classnames";
|
|
3498
3533
|
import { makeStyles as makeStyles20 } from "tss-react/mui";
|
|
3499
|
-
import { jsx as
|
|
3534
|
+
import { jsx as jsx73, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
3500
3535
|
var useStyles20 = makeStyles20()(() => ({
|
|
3501
3536
|
fullWidthWrapper: {
|
|
3502
3537
|
maxWidth: "100%"
|
|
@@ -3544,17 +3579,17 @@ var ControlledValidTextInput = ({
|
|
|
3544
3579
|
defaultHandleBlurValidationAndSubmit(controlledField, fieldState.isDirty);
|
|
3545
3580
|
}
|
|
3546
3581
|
};
|
|
3547
|
-
return /* @__PURE__ */
|
|
3582
|
+
return /* @__PURE__ */ jsx73(
|
|
3548
3583
|
Box11,
|
|
3549
3584
|
{
|
|
3550
3585
|
className,
|
|
3551
3586
|
"data-testid": dataTestId || `${convertUnderscoreToHyphen2(fieldName)}`,
|
|
3552
|
-
children: /* @__PURE__ */
|
|
3587
|
+
children: /* @__PURE__ */ jsx73(
|
|
3553
3588
|
Controller6,
|
|
3554
3589
|
{
|
|
3555
3590
|
control,
|
|
3556
3591
|
name: fieldName,
|
|
3557
|
-
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */
|
|
3592
|
+
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */ jsx73(Box11, { className: classes.fullWidthWrapper, children: /* @__PURE__ */ jsx73(
|
|
3558
3593
|
TextField4,
|
|
3559
3594
|
{
|
|
3560
3595
|
...controlledField,
|
|
@@ -3578,7 +3613,7 @@ var ControlledValidTextInput = ({
|
|
|
3578
3613
|
}),
|
|
3579
3614
|
"data-testid": `${dataTestId}-helper-text` || `${convertUnderscoreToHyphen2(fieldName)}-helper-text`,
|
|
3580
3615
|
children: [
|
|
3581
|
-
/* @__PURE__ */
|
|
3616
|
+
/* @__PURE__ */ jsx73(
|
|
3582
3617
|
Box11,
|
|
3583
3618
|
{
|
|
3584
3619
|
component: "span",
|
|
@@ -3588,7 +3623,7 @@ var ControlledValidTextInput = ({
|
|
|
3588
3623
|
children: fieldState.error?.message ?? helperText
|
|
3589
3624
|
}
|
|
3590
3625
|
),
|
|
3591
|
-
!!maxLength && /* @__PURE__ */
|
|
3626
|
+
!!maxLength && /* @__PURE__ */ jsx73(Box11, { component: "span", children: `${watch(fieldName)?.length ?? 0}/${maxLength}` })
|
|
3592
3627
|
]
|
|
3593
3628
|
}
|
|
3594
3629
|
),
|
|
@@ -3607,7 +3642,7 @@ import { useState as useState3 } from "react";
|
|
|
3607
3642
|
import { Paper as Paper2, Skeleton } from "@mui/material";
|
|
3608
3643
|
import { DataGrid as MUIDataGrid } from "@mui/x-data-grid";
|
|
3609
3644
|
import { makeStyles as makeStyles21 } from "tss-react/mui";
|
|
3610
|
-
import { Fragment, jsx as
|
|
3645
|
+
import { Fragment, jsx as jsx74, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
3611
3646
|
var useStyles21 = makeStyles21()(() => ({
|
|
3612
3647
|
root: {
|
|
3613
3648
|
justifyContent: "space-between",
|
|
@@ -3654,14 +3689,14 @@ var DataGrid = ({
|
|
|
3654
3689
|
]);
|
|
3655
3690
|
const rowHeight = 56;
|
|
3656
3691
|
const headerAndFooterHeight = 52 + 56;
|
|
3657
|
-
return /* @__PURE__ */
|
|
3692
|
+
return /* @__PURE__ */ jsx74(
|
|
3658
3693
|
"div",
|
|
3659
3694
|
{
|
|
3660
3695
|
className: classes.root,
|
|
3661
3696
|
style: {
|
|
3662
3697
|
height: height || rows.length * rowHeight + headerAndFooterHeight
|
|
3663
3698
|
},
|
|
3664
|
-
children: /* @__PURE__ */
|
|
3699
|
+
children: /* @__PURE__ */ jsx74(Paper2, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx74("div", { children: [...Array(Math.floor(10))].map((i) => /* @__PURE__ */ jsx74(
|
|
3665
3700
|
Skeleton,
|
|
3666
3701
|
{
|
|
3667
3702
|
animation: "pulse",
|
|
@@ -3671,7 +3706,7 @@ var DataGrid = ({
|
|
|
3671
3706
|
},
|
|
3672
3707
|
i
|
|
3673
3708
|
)) }) : /* @__PURE__ */ jsxs42(Fragment, { children: [
|
|
3674
|
-
/* @__PURE__ */
|
|
3709
|
+
/* @__PURE__ */ jsx74(
|
|
3675
3710
|
MUIDataGrid,
|
|
3676
3711
|
{
|
|
3677
3712
|
rows,
|
|
@@ -3776,10 +3811,10 @@ localizedMoment.locale(constants_default.locale);
|
|
|
3776
3811
|
var moment_default = localizedMoment;
|
|
3777
3812
|
|
|
3778
3813
|
// src/components/Date/Date.tsx
|
|
3779
|
-
import { jsx as
|
|
3814
|
+
import { jsx as jsx75 } from "react/jsx-runtime";
|
|
3780
3815
|
var Date = ({ datetime, format = "L" }) => {
|
|
3781
3816
|
const formattedDate = moment_default(datetime).format(format);
|
|
3782
|
-
return /* @__PURE__ */
|
|
3817
|
+
return /* @__PURE__ */ jsx75("span", { children: formattedDate === "Invalid date" ? "-" : formattedDate });
|
|
3783
3818
|
};
|
|
3784
3819
|
var Date_default = Date;
|
|
3785
3820
|
|
|
@@ -3787,7 +3822,7 @@ var Date_default = Date;
|
|
|
3787
3822
|
import { memo as memo9 } from "react";
|
|
3788
3823
|
import { Alert, AlertTitle, Typography as Typography7, Box as Box12 } from "@mui/material";
|
|
3789
3824
|
import { makeStyles as makeStyles22 } from "tss-react/mui";
|
|
3790
|
-
import { Fragment as Fragment2, jsx as
|
|
3825
|
+
import { Fragment as Fragment2, jsx as jsx76, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
3791
3826
|
var useStyles22 = makeStyles22()(() => ({
|
|
3792
3827
|
alert: { marginBottom: 16 },
|
|
3793
3828
|
bottomBar: {
|
|
@@ -3814,10 +3849,10 @@ var DeleteSubstitutionDialogContent = ({
|
|
|
3814
3849
|
] }),
|
|
3815
3850
|
"This action will permanently remove all data and history associated with this substitution, and it cannot be undone."
|
|
3816
3851
|
] }),
|
|
3817
|
-
/* @__PURE__ */
|
|
3852
|
+
/* @__PURE__ */ jsx76(Typography7, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
3818
3853
|
/* @__PURE__ */ jsxs43(Box12, { className: classes.bottomBar, children: [
|
|
3819
|
-
/* @__PURE__ */
|
|
3820
|
-
/* @__PURE__ */
|
|
3854
|
+
/* @__PURE__ */ jsx76(ExtendedButton_default, { copy: "Cancel", onClick: closeDialog }),
|
|
3855
|
+
/* @__PURE__ */ jsx76(
|
|
3821
3856
|
ExtendedButton_default,
|
|
3822
3857
|
{
|
|
3823
3858
|
copy: "Confirm",
|
|
@@ -3835,7 +3870,7 @@ var DeleteSubstitutionDialogContent_default = memo9(DeleteSubstitutionDialogCont
|
|
|
3835
3870
|
import { memo as memo10 } from "react";
|
|
3836
3871
|
import { Alert as Alert2, AlertTitle as AlertTitle2, Typography as Typography8, Box as Box13 } from "@mui/material";
|
|
3837
3872
|
import { makeStyles as makeStyles23 } from "tss-react/mui";
|
|
3838
|
-
import { Fragment as Fragment3, jsx as
|
|
3873
|
+
import { Fragment as Fragment3, jsx as jsx77, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
3839
3874
|
var useStyles23 = makeStyles23()(() => ({
|
|
3840
3875
|
alert: { marginBottom: 16 },
|
|
3841
3876
|
bottomBar: {
|
|
@@ -3862,10 +3897,10 @@ var DeleteUserDialogContent = ({
|
|
|
3862
3897
|
] }),
|
|
3863
3898
|
"This action will permanently remove all data and history associated with this user, and it cannot be undone."
|
|
3864
3899
|
] }),
|
|
3865
|
-
/* @__PURE__ */
|
|
3900
|
+
/* @__PURE__ */ jsx77(Typography8, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
3866
3901
|
/* @__PURE__ */ jsxs44(Box13, { className: classes.bottomBar, children: [
|
|
3867
|
-
/* @__PURE__ */
|
|
3868
|
-
/* @__PURE__ */
|
|
3902
|
+
/* @__PURE__ */ jsx77(ExtendedButton_default, { color: "default", copy: "Cancel", onClick: closeDialog }),
|
|
3903
|
+
/* @__PURE__ */ jsx77(
|
|
3869
3904
|
ExtendedButton_default,
|
|
3870
3905
|
{
|
|
3871
3906
|
copy: "Confirm",
|
|
@@ -3882,7 +3917,7 @@ var DeleteUserDialogContent_default = memo10(DeleteUserDialogContent);
|
|
|
3882
3917
|
// src/components/FileCard/FileCard.tsx
|
|
3883
3918
|
import { Description as DescriptionIcon } from "@mui/icons-material";
|
|
3884
3919
|
import { Typography as Typography9, Box as Box14 } from "@mui/material";
|
|
3885
|
-
import { jsx as
|
|
3920
|
+
import { jsx as jsx78, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3886
3921
|
var getFileMetadata = (file) => {
|
|
3887
3922
|
const fullFilename = file.substring(file.lastIndexOf("/") + 1);
|
|
3888
3923
|
const extension = file.substring(file.lastIndexOf("."));
|
|
@@ -3907,7 +3942,7 @@ var FileCard = ({ document: document2 }) => {
|
|
|
3907
3942
|
minWidth: "250px"
|
|
3908
3943
|
},
|
|
3909
3944
|
children: [
|
|
3910
|
-
/* @__PURE__ */
|
|
3945
|
+
/* @__PURE__ */ jsx78(
|
|
3911
3946
|
Box14,
|
|
3912
3947
|
{
|
|
3913
3948
|
sx: {
|
|
@@ -3915,10 +3950,10 @@ var FileCard = ({ document: document2 }) => {
|
|
|
3915
3950
|
justifyContent: "center",
|
|
3916
3951
|
alignItems: "center"
|
|
3917
3952
|
},
|
|
3918
|
-
children: /* @__PURE__ */
|
|
3953
|
+
children: /* @__PURE__ */ jsx78(DescriptionIcon, { fontSize: "medium", color: "action" })
|
|
3919
3954
|
}
|
|
3920
3955
|
),
|
|
3921
|
-
/* @__PURE__ */
|
|
3956
|
+
/* @__PURE__ */ jsx78(
|
|
3922
3957
|
Box14,
|
|
3923
3958
|
{
|
|
3924
3959
|
sx: {
|
|
@@ -3944,7 +3979,7 @@ import { Typography as Typography10 } from "@mui/material";
|
|
|
3944
3979
|
import brown from "@mui/material/colors/brown";
|
|
3945
3980
|
import teal from "@mui/material/colors/teal";
|
|
3946
3981
|
import { makeStyles as makeStyles24 } from "tss-react/mui";
|
|
3947
|
-
import { jsx as
|
|
3982
|
+
import { jsx as jsx79 } from "react/jsx-runtime";
|
|
3948
3983
|
var useStyles24 = makeStyles24()((theme) => ({
|
|
3949
3984
|
siteOne: {
|
|
3950
3985
|
backgroundColor: teal["50"],
|
|
@@ -3972,7 +4007,7 @@ var useStyles24 = makeStyles24()((theme) => ({
|
|
|
3972
4007
|
var FilledLabel = (props) => {
|
|
3973
4008
|
const { color, copy } = props;
|
|
3974
4009
|
const { classes } = useStyles24();
|
|
3975
|
-
return /* @__PURE__ */
|
|
4010
|
+
return /* @__PURE__ */ jsx79(Typography10, { variant: "caption", className: classes[color], children: copy });
|
|
3976
4011
|
};
|
|
3977
4012
|
var FilledLabel_default = memo11(FilledLabel);
|
|
3978
4013
|
|
|
@@ -3988,7 +4023,7 @@ import {
|
|
|
3988
4023
|
ListItemText,
|
|
3989
4024
|
Divider as Divider2
|
|
3990
4025
|
} from "@mui/material";
|
|
3991
|
-
import { Fragment as Fragment4, jsx as
|
|
4026
|
+
import { Fragment as Fragment4, jsx as jsx80, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3992
4027
|
var FilterGroupSelector = ({
|
|
3993
4028
|
name = "Filter Selector",
|
|
3994
4029
|
optionsList = [{ category: "Category", options: ["Option 1"] }],
|
|
@@ -4023,8 +4058,8 @@ var FilterGroupSelector = ({
|
|
|
4023
4058
|
onClick: handleClick,
|
|
4024
4059
|
sx: { cursor: "pointer" },
|
|
4025
4060
|
children: [
|
|
4026
|
-
/* @__PURE__ */
|
|
4027
|
-
/* @__PURE__ */
|
|
4061
|
+
/* @__PURE__ */ jsx80(Typography11, { variant: "button", fontSize: 12, children: name }),
|
|
4062
|
+
/* @__PURE__ */ jsx80(FilterListIcon, {})
|
|
4028
4063
|
]
|
|
4029
4064
|
}
|
|
4030
4065
|
),
|
|
@@ -4037,10 +4072,10 @@ var FilterGroupSelector = ({
|
|
|
4037
4072
|
anchorOrigin: { vertical: "bottom", horizontal: "left" },
|
|
4038
4073
|
transformOrigin: { vertical: "top", horizontal: "left" },
|
|
4039
4074
|
children: [
|
|
4040
|
-
/* @__PURE__ */
|
|
4041
|
-
/* @__PURE__ */
|
|
4042
|
-
/* @__PURE__ */
|
|
4043
|
-
/* @__PURE__ */
|
|
4075
|
+
/* @__PURE__ */ jsx80(Box15, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ jsx80(Typography11, { variant: "button", children: `Search ${name}` }) }),
|
|
4076
|
+
/* @__PURE__ */ jsx80(Divider2, {}),
|
|
4077
|
+
/* @__PURE__ */ jsx80(Box15, { overflow: "auto", height: 450, children: optionsList.map(({ category, options }, index) => /* @__PURE__ */ jsxs46(Box15, { children: [
|
|
4078
|
+
/* @__PURE__ */ jsx80(
|
|
4044
4079
|
Typography11,
|
|
4045
4080
|
{
|
|
4046
4081
|
variant: "subtitle2",
|
|
@@ -4051,13 +4086,13 @@ var FilterGroupSelector = ({
|
|
|
4051
4086
|
options.map((value) => {
|
|
4052
4087
|
const key = `${category.replaceAll(" ", "_").toLocaleLowerCase()}${categoryIdentification ? `_${categoryIdentification}` : ""}: ${value}`;
|
|
4053
4088
|
return /* @__PURE__ */ jsxs46(MenuItem, { onClick: () => toggleOption(key), children: [
|
|
4054
|
-
/* @__PURE__ */
|
|
4055
|
-
/* @__PURE__ */
|
|
4089
|
+
/* @__PURE__ */ jsx80(Checkbox2, { checked: values.includes(key) }),
|
|
4090
|
+
/* @__PURE__ */ jsx80(ListItemText, { primary: value })
|
|
4056
4091
|
] }, value);
|
|
4057
4092
|
})
|
|
4058
4093
|
] }, category)) }),
|
|
4059
4094
|
/* @__PURE__ */ jsxs46(Box15, { display: "flex", children: [
|
|
4060
|
-
/* @__PURE__ */
|
|
4095
|
+
/* @__PURE__ */ jsx80(
|
|
4061
4096
|
ExtendedButton_default,
|
|
4062
4097
|
{
|
|
4063
4098
|
variant: "text",
|
|
@@ -4069,7 +4104,7 @@ var FilterGroupSelector = ({
|
|
|
4069
4104
|
}
|
|
4070
4105
|
}
|
|
4071
4106
|
),
|
|
4072
|
-
/* @__PURE__ */
|
|
4107
|
+
/* @__PURE__ */ jsx80(
|
|
4073
4108
|
ExtendedButton_default,
|
|
4074
4109
|
{
|
|
4075
4110
|
color: "primary",
|
|
@@ -4101,7 +4136,7 @@ import {
|
|
|
4101
4136
|
ListItemText as ListItemText2,
|
|
4102
4137
|
Divider as Divider3
|
|
4103
4138
|
} from "@mui/material";
|
|
4104
|
-
import { Fragment as Fragment5, jsx as
|
|
4139
|
+
import { Fragment as Fragment5, jsx as jsx81, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
4105
4140
|
var FilterSimpleSelector = ({
|
|
4106
4141
|
name = "Filter Selector",
|
|
4107
4142
|
options = ["No Options"],
|
|
@@ -4135,8 +4170,8 @@ var FilterSimpleSelector = ({
|
|
|
4135
4170
|
onClick: handleClick,
|
|
4136
4171
|
sx: { cursor: "pointer" },
|
|
4137
4172
|
children: [
|
|
4138
|
-
/* @__PURE__ */
|
|
4139
|
-
/* @__PURE__ */
|
|
4173
|
+
/* @__PURE__ */ jsx81(Typography12, { variant: "button", fontSize: 12, children: name }),
|
|
4174
|
+
/* @__PURE__ */ jsx81(FilterListIcon2, {})
|
|
4140
4175
|
]
|
|
4141
4176
|
}
|
|
4142
4177
|
),
|
|
@@ -4149,15 +4184,15 @@ var FilterSimpleSelector = ({
|
|
|
4149
4184
|
anchorOrigin: { vertical: "bottom", horizontal: "left" },
|
|
4150
4185
|
transformOrigin: { vertical: "top", horizontal: "left" },
|
|
4151
4186
|
children: [
|
|
4152
|
-
/* @__PURE__ */
|
|
4153
|
-
/* @__PURE__ */
|
|
4154
|
-
/* @__PURE__ */
|
|
4155
|
-
/* @__PURE__ */
|
|
4156
|
-
/* @__PURE__ */
|
|
4187
|
+
/* @__PURE__ */ jsx81(Box16, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ jsx81(Typography12, { variant: "button", children: `Search ${name}` }) }),
|
|
4188
|
+
/* @__PURE__ */ jsx81(Divider3, {}),
|
|
4189
|
+
/* @__PURE__ */ jsx81(Box16, { overflow: "auto", height: 450, children: options.map((option) => /* @__PURE__ */ jsxs47(MenuItem2, { onClick: () => toggleOption(option), children: [
|
|
4190
|
+
/* @__PURE__ */ jsx81(Checkbox3, { checked: values.includes(option) }),
|
|
4191
|
+
/* @__PURE__ */ jsx81(ListItemText2, { primary: option })
|
|
4157
4192
|
] }, option)) }),
|
|
4158
|
-
/* @__PURE__ */
|
|
4193
|
+
/* @__PURE__ */ jsx81(Divider3, {}),
|
|
4159
4194
|
/* @__PURE__ */ jsxs47(Box16, { display: "flex", children: [
|
|
4160
|
-
/* @__PURE__ */
|
|
4195
|
+
/* @__PURE__ */ jsx81(
|
|
4161
4196
|
ExtendedButton_default,
|
|
4162
4197
|
{
|
|
4163
4198
|
variant: "text",
|
|
@@ -4169,7 +4204,7 @@ var FilterSimpleSelector = ({
|
|
|
4169
4204
|
}
|
|
4170
4205
|
}
|
|
4171
4206
|
),
|
|
4172
|
-
/* @__PURE__ */
|
|
4207
|
+
/* @__PURE__ */ jsx81(
|
|
4173
4208
|
ExtendedButton_default,
|
|
4174
4209
|
{
|
|
4175
4210
|
color: "primary",
|
|
@@ -4193,7 +4228,7 @@ var FilterSimpleSelector_default = FilterSimpleSelector;
|
|
|
4193
4228
|
import * as React from "react";
|
|
4194
4229
|
import { Box as Box17 } from "@mui/material";
|
|
4195
4230
|
import { makeStyles as makeStyles25 } from "tss-react/mui";
|
|
4196
|
-
import { jsx as
|
|
4231
|
+
import { jsx as jsx82, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
4197
4232
|
var footerHeight = "64px";
|
|
4198
4233
|
var useStyles25 = makeStyles25()((theme) => ({
|
|
4199
4234
|
root: {
|
|
@@ -4215,8 +4250,8 @@ var useStyles25 = makeStyles25()((theme) => ({
|
|
|
4215
4250
|
var FixedFooter = ({ justifyContent, children }) => {
|
|
4216
4251
|
const { classes } = useStyles25();
|
|
4217
4252
|
return /* @__PURE__ */ jsxs48(Box17, { children: [
|
|
4218
|
-
/* @__PURE__ */
|
|
4219
|
-
/* @__PURE__ */
|
|
4253
|
+
/* @__PURE__ */ jsx82(Box17, { className: classes.fixedOffset }),
|
|
4254
|
+
/* @__PURE__ */ jsx82(
|
|
4220
4255
|
Box17,
|
|
4221
4256
|
{
|
|
4222
4257
|
className: classes.root,
|
|
@@ -4233,7 +4268,7 @@ var FixedFooter_default = React.memo(FixedFooter);
|
|
|
4233
4268
|
// src/components/Header/Header.tsx
|
|
4234
4269
|
import { Paper as Paper3 } from "@mui/material";
|
|
4235
4270
|
import { makeStyles as makeStyles26 } from "tss-react/mui";
|
|
4236
|
-
import { jsx as
|
|
4271
|
+
import { jsx as jsx83, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
4237
4272
|
var useStyles26 = makeStyles26()((theme) => ({
|
|
4238
4273
|
container: {
|
|
4239
4274
|
margin: theme.spacing(1)
|
|
@@ -4256,7 +4291,7 @@ var Header = ({
|
|
|
4256
4291
|
wrappedHeader = false
|
|
4257
4292
|
}) => {
|
|
4258
4293
|
const { classes, cx } = useStyles26();
|
|
4259
|
-
return /* @__PURE__ */
|
|
4294
|
+
return /* @__PURE__ */ jsx83(
|
|
4260
4295
|
Paper3,
|
|
4261
4296
|
{
|
|
4262
4297
|
className: cx({
|
|
@@ -4264,8 +4299,8 @@ var Header = ({
|
|
|
4264
4299
|
}),
|
|
4265
4300
|
elevation: wrappedHeader ? 0 : 1,
|
|
4266
4301
|
children: /* @__PURE__ */ jsxs49("header", { className: classes.header, children: [
|
|
4267
|
-
/* @__PURE__ */
|
|
4268
|
-
children ? /* @__PURE__ */
|
|
4302
|
+
/* @__PURE__ */ jsx83(AppLabel_default, { appName }),
|
|
4303
|
+
children ? /* @__PURE__ */ jsx83("div", { className: classes.rightContent, children }) : null
|
|
4269
4304
|
] })
|
|
4270
4305
|
}
|
|
4271
4306
|
);
|
|
@@ -4294,9 +4329,9 @@ import { makeStyles as makeStyles27 } from "tss-react/mui";
|
|
|
4294
4329
|
// src/components/UserBust/UserBust.tsx
|
|
4295
4330
|
import { memo as memo13 } from "react";
|
|
4296
4331
|
import { Avatar, Typography as Typography13 } from "@mui/material";
|
|
4297
|
-
import { jsx as
|
|
4332
|
+
import { jsx as jsx84, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
4298
4333
|
var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ jsxs50("div", { children: [
|
|
4299
|
-
/* @__PURE__ */
|
|
4334
|
+
/* @__PURE__ */ jsx84(
|
|
4300
4335
|
Avatar,
|
|
4301
4336
|
{
|
|
4302
4337
|
src: user.profile_picture,
|
|
@@ -4305,8 +4340,8 @@ var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ jsxs5
|
|
|
4305
4340
|
}
|
|
4306
4341
|
),
|
|
4307
4342
|
/* @__PURE__ */ jsxs50("div", { style: { paddingTop: 16 }, children: [
|
|
4308
|
-
/* @__PURE__ */
|
|
4309
|
-
/* @__PURE__ */
|
|
4343
|
+
/* @__PURE__ */ jsx84(Typography13, { ...typographyProps.name, children: `${user.first_name} ${user.last_name}` }),
|
|
4344
|
+
/* @__PURE__ */ jsx84(Typography13, { ...typographyProps.username, children: user.username })
|
|
4310
4345
|
] })
|
|
4311
4346
|
] });
|
|
4312
4347
|
var UserBust_default = memo13(UserBust);
|
|
@@ -4345,7 +4380,7 @@ var featureName = {
|
|
|
4345
4380
|
var featureName_default = featureName;
|
|
4346
4381
|
|
|
4347
4382
|
// src/components/LeftDrawer/helpers/drawerAppList.tsx
|
|
4348
|
-
import { jsx as
|
|
4383
|
+
import { jsx as jsx85 } from "react/jsx-runtime";
|
|
4349
4384
|
var drawerAppList = [
|
|
4350
4385
|
{
|
|
4351
4386
|
groupName: "Home",
|
|
@@ -4356,7 +4391,7 @@ var drawerAppList = [
|
|
|
4356
4391
|
alwaysDisplay: true,
|
|
4357
4392
|
featureNames: [],
|
|
4358
4393
|
pinned: null,
|
|
4359
|
-
icon: /* @__PURE__ */
|
|
4394
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconHome, {}),
|
|
4360
4395
|
url: `/`
|
|
4361
4396
|
}
|
|
4362
4397
|
]
|
|
@@ -4370,7 +4405,7 @@ var drawerAppList = [
|
|
|
4370
4405
|
alwaysDisplay: false,
|
|
4371
4406
|
featureNames: [featureName_default.NOTIFICATIONS],
|
|
4372
4407
|
pinned: null,
|
|
4373
|
-
icon: /* @__PURE__ */
|
|
4408
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconNotification, {}),
|
|
4374
4409
|
url: `/notifications`
|
|
4375
4410
|
},
|
|
4376
4411
|
{
|
|
@@ -4379,7 +4414,7 @@ var drawerAppList = [
|
|
|
4379
4414
|
alwaysDisplay: false,
|
|
4380
4415
|
featureNames: [featureName_default.PROMO_CODES],
|
|
4381
4416
|
pinned: null,
|
|
4382
|
-
icon: /* @__PURE__ */
|
|
4417
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconPromoCode, {}),
|
|
4383
4418
|
url: "/react/promo_codes"
|
|
4384
4419
|
},
|
|
4385
4420
|
{
|
|
@@ -4388,7 +4423,7 @@ var drawerAppList = [
|
|
|
4388
4423
|
alwaysDisplay: false,
|
|
4389
4424
|
featureNames: [featureName_default.SEARCH_CATEGORIES],
|
|
4390
4425
|
pinned: null,
|
|
4391
|
-
icon: /* @__PURE__ */
|
|
4426
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconSearchCategories, {}),
|
|
4392
4427
|
url: "/react/search-categories"
|
|
4393
4428
|
},
|
|
4394
4429
|
{
|
|
@@ -4397,7 +4432,7 @@ var drawerAppList = [
|
|
|
4397
4432
|
alwaysDisplay: false,
|
|
4398
4433
|
featureNames: ["cms"],
|
|
4399
4434
|
pinned: null,
|
|
4400
|
-
icon: /* @__PURE__ */
|
|
4435
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconContentManagement, {}),
|
|
4401
4436
|
url: "/react/content-management"
|
|
4402
4437
|
}
|
|
4403
4438
|
]
|
|
@@ -4411,7 +4446,7 @@ var drawerAppList = [
|
|
|
4411
4446
|
alwaysDisplay: false,
|
|
4412
4447
|
featureNames: [featureName_default.AIRCALL],
|
|
4413
4448
|
pinned: "recorded_calls",
|
|
4414
|
-
icon: /* @__PURE__ */
|
|
4449
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconPhone, {}),
|
|
4415
4450
|
url: "/react/air-call"
|
|
4416
4451
|
},
|
|
4417
4452
|
{
|
|
@@ -4420,7 +4455,7 @@ var drawerAppList = [
|
|
|
4420
4455
|
alwaysDisplay: false,
|
|
4421
4456
|
featureNames: [featureName_default.CUSTOMERS],
|
|
4422
4457
|
pinned: "customers",
|
|
4423
|
-
icon: /* @__PURE__ */
|
|
4458
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconAccount, {}),
|
|
4424
4459
|
url: `/customer-list`,
|
|
4425
4460
|
children: [
|
|
4426
4461
|
{
|
|
@@ -4443,7 +4478,7 @@ var drawerAppList = [
|
|
|
4443
4478
|
alwaysDisplay: false,
|
|
4444
4479
|
featureNames: [featureName_default.ORDERS],
|
|
4445
4480
|
pinned: "orders",
|
|
4446
|
-
icon: /* @__PURE__ */
|
|
4481
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconOrders, {}),
|
|
4447
4482
|
url: `/orders`
|
|
4448
4483
|
},
|
|
4449
4484
|
{
|
|
@@ -4452,7 +4487,7 @@ var drawerAppList = [
|
|
|
4452
4487
|
alwaysDisplay: false,
|
|
4453
4488
|
featureNames: [featureName_default.PRICE_LIST],
|
|
4454
4489
|
pinned: "price_list",
|
|
4455
|
-
icon: /* @__PURE__ */
|
|
4490
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconPriceList, {}),
|
|
4456
4491
|
url: `/price-list`
|
|
4457
4492
|
},
|
|
4458
4493
|
{
|
|
@@ -4461,7 +4496,7 @@ var drawerAppList = [
|
|
|
4461
4496
|
alwaysDisplay: false,
|
|
4462
4497
|
featureNames: [featureName_default.SPECIAL_PRICES],
|
|
4463
4498
|
pinned: "special_prices",
|
|
4464
|
-
icon: /* @__PURE__ */
|
|
4499
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconSpecialPrice, {}),
|
|
4465
4500
|
url: `/pricing/special-prices`
|
|
4466
4501
|
}
|
|
4467
4502
|
]
|
|
@@ -4475,7 +4510,7 @@ var drawerAppList = [
|
|
|
4475
4510
|
alwaysDisplay: false,
|
|
4476
4511
|
featureNames: [featureName_default.PURCHASE_ORDERS],
|
|
4477
4512
|
pinned: "purchase_orders",
|
|
4478
|
-
icon: /* @__PURE__ */
|
|
4513
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconBuying, {}),
|
|
4479
4514
|
url: "/react/purchase-orders"
|
|
4480
4515
|
},
|
|
4481
4516
|
{
|
|
@@ -4484,7 +4519,7 @@ var drawerAppList = [
|
|
|
4484
4519
|
alwaysDisplay: false,
|
|
4485
4520
|
featureNames: [featureName_default.PRODUCTS],
|
|
4486
4521
|
pinned: "products",
|
|
4487
|
-
icon: /* @__PURE__ */
|
|
4522
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconProducts, {}),
|
|
4488
4523
|
url: `/product-base-list`
|
|
4489
4524
|
},
|
|
4490
4525
|
{
|
|
@@ -4493,7 +4528,7 @@ var drawerAppList = [
|
|
|
4493
4528
|
alwaysDisplay: false,
|
|
4494
4529
|
featureNames: [featureName_default.SUPPLIERS],
|
|
4495
4530
|
pinned: "suppliers",
|
|
4496
|
-
icon: /* @__PURE__ */
|
|
4531
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconSupplier, {}),
|
|
4497
4532
|
url: "/react/suppliers"
|
|
4498
4533
|
},
|
|
4499
4534
|
{
|
|
@@ -4502,7 +4537,7 @@ var drawerAppList = [
|
|
|
4502
4537
|
alwaysDisplay: false,
|
|
4503
4538
|
featureNames: [featureName_default.SUPPLIER_PRICES],
|
|
4504
4539
|
pinned: "supplier_prices",
|
|
4505
|
-
icon: /* @__PURE__ */
|
|
4540
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconSupplierPrices, {}),
|
|
4506
4541
|
url: `/supplier-prices`
|
|
4507
4542
|
},
|
|
4508
4543
|
{
|
|
@@ -4511,7 +4546,7 @@ var drawerAppList = [
|
|
|
4511
4546
|
alwaysDisplay: false,
|
|
4512
4547
|
featureNames: [featureName_default.BULK_UPDATE],
|
|
4513
4548
|
pinned: "bulk-update",
|
|
4514
|
-
icon: /* @__PURE__ */
|
|
4549
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconImport, {}),
|
|
4515
4550
|
url: "/react/bulk_update"
|
|
4516
4551
|
}
|
|
4517
4552
|
]
|
|
@@ -4525,7 +4560,7 @@ var drawerAppList = [
|
|
|
4525
4560
|
alwaysDisplay: false,
|
|
4526
4561
|
featureNames: [featureName_default.GOODS_IN],
|
|
4527
4562
|
pinned: "goods_in",
|
|
4528
|
-
icon: /* @__PURE__ */
|
|
4563
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconGoodsin, {}),
|
|
4529
4564
|
url: "/react/goodsin-list"
|
|
4530
4565
|
},
|
|
4531
4566
|
{
|
|
@@ -4534,7 +4569,7 @@ var drawerAppList = [
|
|
|
4534
4569
|
alwaysDisplay: false,
|
|
4535
4570
|
featureNames: [featureName_default.RETURNS],
|
|
4536
4571
|
pinned: "goods_in",
|
|
4537
|
-
icon: /* @__PURE__ */
|
|
4572
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconGoodsin, {}),
|
|
4538
4573
|
url: "/react/returns"
|
|
4539
4574
|
},
|
|
4540
4575
|
{
|
|
@@ -4543,11 +4578,11 @@ var drawerAppList = [
|
|
|
4543
4578
|
alwaysDisplay: false,
|
|
4544
4579
|
featureNames: [featureName_default.KANBAN],
|
|
4545
4580
|
pinned: "kanbancards",
|
|
4546
|
-
icon: /* @__PURE__ */
|
|
4581
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconVkc, {}),
|
|
4547
4582
|
url: `/kanban`
|
|
4548
4583
|
},
|
|
4549
4584
|
{
|
|
4550
|
-
icon: /* @__PURE__ */
|
|
4585
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconLocation, {}),
|
|
4551
4586
|
name: "Stock and Locations",
|
|
4552
4587
|
pinned: "locations",
|
|
4553
4588
|
routeName: "locations",
|
|
@@ -4569,7 +4604,7 @@ var drawerAppList = [
|
|
|
4569
4604
|
alwaysDisplay: false,
|
|
4570
4605
|
featureNames: [featureName_default.PICKING_STATIONS],
|
|
4571
4606
|
pinned: "picking_stations",
|
|
4572
|
-
icon: /* @__PURE__ */
|
|
4607
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconScales, {}),
|
|
4573
4608
|
url: `/pickingstation`
|
|
4574
4609
|
},
|
|
4575
4610
|
{
|
|
@@ -4578,7 +4613,7 @@ var drawerAppList = [
|
|
|
4578
4613
|
alwaysDisplay: false,
|
|
4579
4614
|
featureNames: [featureName_default.QUALITY_CONTROL],
|
|
4580
4615
|
pinned: "quality_control",
|
|
4581
|
-
icon: /* @__PURE__ */
|
|
4616
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconQc, {}),
|
|
4582
4617
|
url: `/quality-control`
|
|
4583
4618
|
},
|
|
4584
4619
|
{
|
|
@@ -4587,7 +4622,7 @@ var drawerAppList = [
|
|
|
4587
4622
|
alwaysDisplay: false,
|
|
4588
4623
|
featureNames: [featureName_default.RETAIL],
|
|
4589
4624
|
pinned: "retail",
|
|
4590
|
-
icon: /* @__PURE__ */
|
|
4625
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconRetail, {}),
|
|
4591
4626
|
url: `/retail/product-availability`
|
|
4592
4627
|
},
|
|
4593
4628
|
{
|
|
@@ -4596,7 +4631,7 @@ var drawerAppList = [
|
|
|
4596
4631
|
alwaysDisplay: false,
|
|
4597
4632
|
featureNames: [featureName_default.SERVICE_DELIVERY],
|
|
4598
4633
|
pinned: "runs",
|
|
4599
|
-
icon: /* @__PURE__ */
|
|
4634
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconRuns, {}),
|
|
4600
4635
|
url: `/runs`
|
|
4601
4636
|
},
|
|
4602
4637
|
{
|
|
@@ -4605,7 +4640,7 @@ var drawerAppList = [
|
|
|
4605
4640
|
alwaysDisplay: false,
|
|
4606
4641
|
featureNames: [featureName_default.OPS_METRICS],
|
|
4607
4642
|
pinned: "ops-metrics",
|
|
4608
|
-
icon: /* @__PURE__ */
|
|
4643
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconOpsMetrics, {}),
|
|
4609
4644
|
url: "/react/ops-metrics"
|
|
4610
4645
|
}
|
|
4611
4646
|
]
|
|
@@ -4619,7 +4654,7 @@ var drawerAppList = [
|
|
|
4619
4654
|
alwaysDisplay: false,
|
|
4620
4655
|
featureNames: [featureName_default.ACCOUNTS],
|
|
4621
4656
|
pinned: "accounts",
|
|
4622
|
-
icon: /* @__PURE__ */
|
|
4657
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconAccounts, {}),
|
|
4623
4658
|
url: `/accounts`
|
|
4624
4659
|
},
|
|
4625
4660
|
{
|
|
@@ -4628,7 +4663,7 @@ var drawerAppList = [
|
|
|
4628
4663
|
alwaysDisplay: false,
|
|
4629
4664
|
featureNames: [featureName_default.REPORTS],
|
|
4630
4665
|
pinned: "reports",
|
|
4631
|
-
icon: /* @__PURE__ */
|
|
4666
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconReports, {}),
|
|
4632
4667
|
url: `/reports`
|
|
4633
4668
|
}
|
|
4634
4669
|
]
|
|
@@ -4642,7 +4677,7 @@ var drawerAppList = [
|
|
|
4642
4677
|
alwaysDisplay: false,
|
|
4643
4678
|
featureNames: [featureName_default.ADMIN],
|
|
4644
4679
|
pinned: "admin",
|
|
4645
|
-
icon: /* @__PURE__ */
|
|
4680
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconSetting, {}),
|
|
4646
4681
|
url: `/admin`
|
|
4647
4682
|
},
|
|
4648
4683
|
{
|
|
@@ -4651,7 +4686,7 @@ var drawerAppList = [
|
|
|
4651
4686
|
alwaysDisplay: false,
|
|
4652
4687
|
featureNames: [featureName_default.USER_MANAGEMENT],
|
|
4653
4688
|
pinned: "users",
|
|
4654
|
-
icon: /* @__PURE__ */
|
|
4689
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconUserManagement, {}),
|
|
4655
4690
|
url: "/react/user-management"
|
|
4656
4691
|
},
|
|
4657
4692
|
{
|
|
@@ -4660,7 +4695,7 @@ var drawerAppList = [
|
|
|
4660
4695
|
alwaysDisplay: true,
|
|
4661
4696
|
featureNames: [],
|
|
4662
4697
|
pinned: null,
|
|
4663
|
-
icon: /* @__PURE__ */
|
|
4698
|
+
icon: /* @__PURE__ */ jsx85(icons_default.SvgIconLogin, {}),
|
|
4664
4699
|
url: "/react/logout"
|
|
4665
4700
|
}
|
|
4666
4701
|
]
|
|
@@ -4702,7 +4737,7 @@ var useGetFilteredDrawerAppList = (featureSettings) => {
|
|
|
4702
4737
|
var useGetFilteredDrawerAppList_default = useGetFilteredDrawerAppList;
|
|
4703
4738
|
|
|
4704
4739
|
// src/components/LeftDrawer/LeftDrawer.tsx
|
|
4705
|
-
import { jsx as
|
|
4740
|
+
import { jsx as jsx86, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
4706
4741
|
var useStyles27 = makeStyles27()((theme) => ({
|
|
4707
4742
|
subheader: {
|
|
4708
4743
|
textTransform: "uppercase",
|
|
@@ -4785,8 +4820,8 @@ var LeftDrawer = ({
|
|
|
4785
4820
|
onOpen: handleOpen,
|
|
4786
4821
|
open,
|
|
4787
4822
|
children: [
|
|
4788
|
-
/* @__PURE__ */
|
|
4789
|
-
/* @__PURE__ */
|
|
4823
|
+
/* @__PURE__ */ jsx86(AppBar, { position: "static", children: /* @__PURE__ */ jsxs51(Toolbar, { className: classes.topBar, children: [
|
|
4824
|
+
/* @__PURE__ */ jsx86(
|
|
4790
4825
|
UserBust_default,
|
|
4791
4826
|
{
|
|
4792
4827
|
user,
|
|
@@ -4797,7 +4832,7 @@ var LeftDrawer = ({
|
|
|
4797
4832
|
}
|
|
4798
4833
|
}
|
|
4799
4834
|
),
|
|
4800
|
-
/* @__PURE__ */
|
|
4835
|
+
/* @__PURE__ */ jsx86(Box18, { children: /* @__PURE__ */ jsx86(
|
|
4801
4836
|
RoundButton_default,
|
|
4802
4837
|
{
|
|
4803
4838
|
icon: "edit",
|
|
@@ -4808,8 +4843,8 @@ var LeftDrawer = ({
|
|
|
4808
4843
|
}
|
|
4809
4844
|
) })
|
|
4810
4845
|
] }) }),
|
|
4811
|
-
/* @__PURE__ */
|
|
4812
|
-
/* @__PURE__ */
|
|
4846
|
+
/* @__PURE__ */ jsx86(List, { children: filteredDrawerAppList.map((group) => /* @__PURE__ */ jsxs51(Fragment6, { children: [
|
|
4847
|
+
/* @__PURE__ */ jsx86(ListSubheader, { disableSticky: true, className: classes.subheader, children: group.groupName }),
|
|
4813
4848
|
group.apps.map((app) => /* @__PURE__ */ jsxs51(Fragment6, { children: [
|
|
4814
4849
|
/* @__PURE__ */ jsxs51(
|
|
4815
4850
|
ListItem,
|
|
@@ -4822,8 +4857,8 @@ var LeftDrawer = ({
|
|
|
4822
4857
|
return window.location.assign(app.url);
|
|
4823
4858
|
},
|
|
4824
4859
|
children: [
|
|
4825
|
-
/* @__PURE__ */
|
|
4826
|
-
/* @__PURE__ */
|
|
4860
|
+
/* @__PURE__ */ jsx86(ListItemIcon, { children: /* @__PURE__ */ jsx86(Icon2, { className: classes.iconMenu, children: app.icon }) }),
|
|
4861
|
+
/* @__PURE__ */ jsx86(
|
|
4827
4862
|
ListItemText3,
|
|
4828
4863
|
{
|
|
4829
4864
|
className: classes.appName,
|
|
@@ -4833,13 +4868,13 @@ var LeftDrawer = ({
|
|
|
4833
4868
|
}
|
|
4834
4869
|
}
|
|
4835
4870
|
),
|
|
4836
|
-
app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */
|
|
4871
|
+
app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */ jsx86(
|
|
4837
4872
|
ExpandLess,
|
|
4838
4873
|
{
|
|
4839
4874
|
"data-testid": "svg-close-collapse",
|
|
4840
4875
|
onClick: (e) => handleCollapse(e, app.routeName)
|
|
4841
4876
|
}
|
|
4842
|
-
) : /* @__PURE__ */
|
|
4877
|
+
) : /* @__PURE__ */ jsx86(
|
|
4843
4878
|
ExpandMore,
|
|
4844
4879
|
{
|
|
4845
4880
|
"data-testid": "svg-open-collapse",
|
|
@@ -4850,7 +4885,7 @@ var LeftDrawer = ({
|
|
|
4850
4885
|
},
|
|
4851
4886
|
app.name
|
|
4852
4887
|
),
|
|
4853
|
-
app.children?.length > 0 && /* @__PURE__ */
|
|
4888
|
+
app.children?.length > 0 && /* @__PURE__ */ jsx86(Collapse, { in: openCollapse[app.routeName], children: /* @__PURE__ */ jsx86(List, { children: app.children.map((child) => /* @__PURE__ */ jsxs51(
|
|
4854
4889
|
ListItemButton,
|
|
4855
4890
|
{
|
|
4856
4891
|
className: classes.nested,
|
|
@@ -4858,8 +4893,8 @@ var LeftDrawer = ({
|
|
|
4858
4893
|
onClick: () => window.location.assign(child.url),
|
|
4859
4894
|
title: child.url,
|
|
4860
4895
|
children: [
|
|
4861
|
-
/* @__PURE__ */
|
|
4862
|
-
/* @__PURE__ */
|
|
4896
|
+
/* @__PURE__ */ jsx86(ListItemIcon, { children: /* @__PURE__ */ jsx86(FiberManualRecord, { style: { height: 12 } }) }),
|
|
4897
|
+
/* @__PURE__ */ jsx86(
|
|
4863
4898
|
ListItemText3,
|
|
4864
4899
|
{
|
|
4865
4900
|
primary: child.name,
|
|
@@ -4883,20 +4918,20 @@ var LeftDrawer_default = memo14(LeftDrawer);
|
|
|
4883
4918
|
// src/components/List/List.tsx
|
|
4884
4919
|
import { FixedSizeList } from "react-window";
|
|
4885
4920
|
import { ListItem as ListItem2, ListItemText as ListItemText4 } from "@mui/material";
|
|
4886
|
-
import { Fragment as Fragment7, jsx as
|
|
4921
|
+
import { Fragment as Fragment7, jsx as jsx87, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
4887
4922
|
var ListHeader = (props) => {
|
|
4888
4923
|
const headers = props.headers || [];
|
|
4889
|
-
return /* @__PURE__ */
|
|
4924
|
+
return /* @__PURE__ */ jsx87(ListItem2, { children: headers.map((header, i) => (
|
|
4890
4925
|
// eslint-disable-next-line react/no-array-index-key
|
|
4891
|
-
/* @__PURE__ */
|
|
4926
|
+
/* @__PURE__ */ jsx87(ListItemText4, { primary: header.text }, i)
|
|
4892
4927
|
)) });
|
|
4893
4928
|
};
|
|
4894
4929
|
function VirtualizedList(props) {
|
|
4895
4930
|
const { innerWidth, innerHeight } = window;
|
|
4896
4931
|
const { headers, items, renderItem } = props;
|
|
4897
4932
|
return /* @__PURE__ */ jsxs52(Fragment7, { children: [
|
|
4898
|
-
/* @__PURE__ */
|
|
4899
|
-
/* @__PURE__ */
|
|
4933
|
+
/* @__PURE__ */ jsx87(ListHeader, { headers }),
|
|
4934
|
+
/* @__PURE__ */ jsx87(
|
|
4900
4935
|
FixedSizeList,
|
|
4901
4936
|
{
|
|
4902
4937
|
height: innerHeight - 150,
|
|
@@ -4916,7 +4951,7 @@ import { Box as Box19, Chip, Typography as Typography14 } from "@mui/material";
|
|
|
4916
4951
|
import { purple } from "@mui/material/colors";
|
|
4917
4952
|
import classNames2 from "classnames";
|
|
4918
4953
|
import { makeStyles as makeStyles28 } from "tss-react/mui";
|
|
4919
|
-
import { jsx as
|
|
4954
|
+
import { jsx as jsx88, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
4920
4955
|
var useStyles28 = makeStyles28()(() => ({
|
|
4921
4956
|
container: {
|
|
4922
4957
|
display: "flex",
|
|
@@ -4963,7 +4998,7 @@ var LocationsSectionInfo = ({
|
|
|
4963
4998
|
return "STOCK";
|
|
4964
4999
|
};
|
|
4965
5000
|
return /* @__PURE__ */ jsxs53(Box19, { className: classes.container, children: [
|
|
4966
|
-
/* @__PURE__ */
|
|
5001
|
+
/* @__PURE__ */ jsx88(
|
|
4967
5002
|
Chip,
|
|
4968
5003
|
{
|
|
4969
5004
|
className: classNames2(classes.defaultChip, {
|
|
@@ -4974,10 +5009,10 @@ var LocationsSectionInfo = ({
|
|
|
4974
5009
|
label: getLocationLabel()
|
|
4975
5010
|
}
|
|
4976
5011
|
),
|
|
4977
|
-
/* @__PURE__ */
|
|
5012
|
+
/* @__PURE__ */ jsx88(Typography14, { className: classes.locationText, color: "primary", children: principalLocation }),
|
|
4978
5013
|
secondaryLocation?.map((loc) => /* @__PURE__ */ jsxs53(Fragment8, { children: [
|
|
4979
|
-
/* @__PURE__ */
|
|
4980
|
-
/* @__PURE__ */
|
|
5014
|
+
/* @__PURE__ */ jsx88(Typography14, { className: classes.smallTitle, children: "/" }),
|
|
5015
|
+
/* @__PURE__ */ jsx88(Typography14, { className: classes.locationText, children: loc })
|
|
4981
5016
|
] }, loc))
|
|
4982
5017
|
] });
|
|
4983
5018
|
};
|
|
@@ -4987,7 +5022,7 @@ var LocationsSectionInfo_default = LocationsSectionInfo;
|
|
|
4987
5022
|
import { useEffect as useEffect3, useState as useState7 } from "react";
|
|
4988
5023
|
import { FormControl as FormControl3, Input, InputAdornment as InputAdornment2, InputLabel as InputLabel3 } from "@mui/material";
|
|
4989
5024
|
import { makeStyles as makeStyles29 } from "tss-react/mui";
|
|
4990
|
-
import { jsx as
|
|
5025
|
+
import { jsx as jsx89, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
4991
5026
|
var useStyles29 = makeStyles29()((theme) => ({
|
|
4992
5027
|
wrapper: {
|
|
4993
5028
|
padding: theme.spacing(3),
|
|
@@ -5030,13 +5065,13 @@ var Notes2 = ({
|
|
|
5030
5065
|
}
|
|
5031
5066
|
};
|
|
5032
5067
|
const { classes } = useStyles29();
|
|
5033
|
-
return /* @__PURE__ */
|
|
5034
|
-
/* @__PURE__ */
|
|
5035
|
-
/* @__PURE__ */
|
|
5068
|
+
return /* @__PURE__ */ jsx89("div", { className: classes.wrapper, children: /* @__PURE__ */ jsxs54(FormControl3, { fullWidth: true, children: [
|
|
5069
|
+
/* @__PURE__ */ jsx89(InputLabel3, { htmlFor: "notes", children: "Notes" }),
|
|
5070
|
+
/* @__PURE__ */ jsx89(
|
|
5036
5071
|
Input,
|
|
5037
5072
|
{
|
|
5038
5073
|
disabled: isDisabled || isLoading,
|
|
5039
|
-
endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */
|
|
5074
|
+
endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */ jsx89(InputAdornment2, { position: "end", children: /* @__PURE__ */ jsx89(
|
|
5040
5075
|
RoundButton_default,
|
|
5041
5076
|
{
|
|
5042
5077
|
disabled: isLoading,
|
|
@@ -5062,7 +5097,7 @@ var Notes2 = ({
|
|
|
5062
5097
|
var Notes_default = Notes2;
|
|
5063
5098
|
|
|
5064
5099
|
// src/components/Numpad/Numpad.tsx
|
|
5065
|
-
import { jsx as
|
|
5100
|
+
import { jsx as jsx90, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
5066
5101
|
var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
5067
5102
|
"div",
|
|
5068
5103
|
{
|
|
@@ -5077,7 +5112,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5077
5112
|
children: [
|
|
5078
5113
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5079
5114
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5080
|
-
/* @__PURE__ */
|
|
5115
|
+
/* @__PURE__ */ jsx90(
|
|
5081
5116
|
RoundButton_default,
|
|
5082
5117
|
{
|
|
5083
5118
|
onClick: () => handleClick("1"),
|
|
@@ -5086,7 +5121,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5086
5121
|
children: "1"
|
|
5087
5122
|
}
|
|
5088
5123
|
),
|
|
5089
|
-
/* @__PURE__ */
|
|
5124
|
+
/* @__PURE__ */ jsx90(
|
|
5090
5125
|
RoundButton_default,
|
|
5091
5126
|
{
|
|
5092
5127
|
onClick: () => handleClick("2"),
|
|
@@ -5095,7 +5130,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5095
5130
|
children: "2"
|
|
5096
5131
|
}
|
|
5097
5132
|
),
|
|
5098
|
-
/* @__PURE__ */
|
|
5133
|
+
/* @__PURE__ */ jsx90(
|
|
5099
5134
|
RoundButton_default,
|
|
5100
5135
|
{
|
|
5101
5136
|
onClick: () => handleClick("3"),
|
|
@@ -5106,7 +5141,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5106
5141
|
)
|
|
5107
5142
|
] }),
|
|
5108
5143
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5109
|
-
/* @__PURE__ */
|
|
5144
|
+
/* @__PURE__ */ jsx90(
|
|
5110
5145
|
RoundButton_default,
|
|
5111
5146
|
{
|
|
5112
5147
|
onClick: () => handleClick("4"),
|
|
@@ -5115,7 +5150,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5115
5150
|
children: "4"
|
|
5116
5151
|
}
|
|
5117
5152
|
),
|
|
5118
|
-
/* @__PURE__ */
|
|
5153
|
+
/* @__PURE__ */ jsx90(
|
|
5119
5154
|
RoundButton_default,
|
|
5120
5155
|
{
|
|
5121
5156
|
onClick: () => handleClick("5"),
|
|
@@ -5124,7 +5159,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5124
5159
|
children: "5"
|
|
5125
5160
|
}
|
|
5126
5161
|
),
|
|
5127
|
-
/* @__PURE__ */
|
|
5162
|
+
/* @__PURE__ */ jsx90(
|
|
5128
5163
|
RoundButton_default,
|
|
5129
5164
|
{
|
|
5130
5165
|
onClick: () => handleClick("6"),
|
|
@@ -5135,7 +5170,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5135
5170
|
)
|
|
5136
5171
|
] }),
|
|
5137
5172
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5138
|
-
/* @__PURE__ */
|
|
5173
|
+
/* @__PURE__ */ jsx90(
|
|
5139
5174
|
RoundButton_default,
|
|
5140
5175
|
{
|
|
5141
5176
|
onClick: () => handleClick("7"),
|
|
@@ -5144,7 +5179,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5144
5179
|
children: "7"
|
|
5145
5180
|
}
|
|
5146
5181
|
),
|
|
5147
|
-
/* @__PURE__ */
|
|
5182
|
+
/* @__PURE__ */ jsx90(
|
|
5148
5183
|
RoundButton_default,
|
|
5149
5184
|
{
|
|
5150
5185
|
onClick: () => handleClick("8"),
|
|
@@ -5153,7 +5188,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5153
5188
|
children: "8"
|
|
5154
5189
|
}
|
|
5155
5190
|
),
|
|
5156
|
-
/* @__PURE__ */
|
|
5191
|
+
/* @__PURE__ */ jsx90(
|
|
5157
5192
|
RoundButton_default,
|
|
5158
5193
|
{
|
|
5159
5194
|
onClick: () => handleClick("9"),
|
|
@@ -5164,7 +5199,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5164
5199
|
)
|
|
5165
5200
|
] }),
|
|
5166
5201
|
/* @__PURE__ */ jsxs55("div", { children: [
|
|
5167
|
-
/* @__PURE__ */
|
|
5202
|
+
/* @__PURE__ */ jsx90(
|
|
5168
5203
|
RoundButton_default,
|
|
5169
5204
|
{
|
|
5170
5205
|
onClick: () => handleClick("0"),
|
|
@@ -5173,7 +5208,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5173
5208
|
children: "0"
|
|
5174
5209
|
}
|
|
5175
5210
|
),
|
|
5176
|
-
/* @__PURE__ */
|
|
5211
|
+
/* @__PURE__ */ jsx90(
|
|
5177
5212
|
RoundButton_default,
|
|
5178
5213
|
{
|
|
5179
5214
|
onClick: () => handleClick("."),
|
|
@@ -5184,7 +5219,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5184
5219
|
)
|
|
5185
5220
|
] })
|
|
5186
5221
|
] }),
|
|
5187
|
-
/* @__PURE__ */
|
|
5222
|
+
/* @__PURE__ */ jsx90(
|
|
5188
5223
|
"div",
|
|
5189
5224
|
{
|
|
5190
5225
|
style: {
|
|
@@ -5193,7 +5228,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ jsxs55(
|
|
|
5193
5228
|
justifyContent: "space-between",
|
|
5194
5229
|
borderLeft: `1px solid ${colors.neutral250}`
|
|
5195
5230
|
},
|
|
5196
|
-
children: /* @__PURE__ */
|
|
5231
|
+
children: /* @__PURE__ */ jsx90(
|
|
5197
5232
|
RoundButton_default,
|
|
5198
5233
|
{
|
|
5199
5234
|
icon: "backspaceOutlined",
|
|
@@ -5213,7 +5248,7 @@ var Numpad_default = Numpad;
|
|
|
5213
5248
|
import { memo as memo15, useState as useState8 } from "react";
|
|
5214
5249
|
import { TextField as TextField5, Typography as Typography15 } from "@mui/material";
|
|
5215
5250
|
import { makeStyles as makeStyles30 } from "tss-react/mui";
|
|
5216
|
-
import { jsx as
|
|
5251
|
+
import { jsx as jsx91, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
5217
5252
|
var useStyles30 = makeStyles30()(() => ({
|
|
5218
5253
|
c_numpadinput__textfield: {
|
|
5219
5254
|
"& .MuiInputLabel-outlined.MuiInputLabel-shrink": {
|
|
@@ -5251,12 +5286,12 @@ var NumpadInput = (props) => {
|
|
|
5251
5286
|
handleNextClick?.(state);
|
|
5252
5287
|
}
|
|
5253
5288
|
const DefaultInput = /* @__PURE__ */ jsxs56("div", { children: [
|
|
5254
|
-
/* @__PURE__ */
|
|
5255
|
-
/* @__PURE__ */
|
|
5289
|
+
/* @__PURE__ */ jsx91(Typography15, { variant: "h5", style: { padding: "16px 0 3rem" }, children: inputLabel }),
|
|
5290
|
+
/* @__PURE__ */ jsx91("form", { noValidate: true, autoComplete: "off", children: /* @__PURE__ */ jsx91(
|
|
5256
5291
|
TextField5,
|
|
5257
5292
|
{
|
|
5258
5293
|
id: "outlined-basic",
|
|
5259
|
-
label: /* @__PURE__ */
|
|
5294
|
+
label: /* @__PURE__ */ jsx91(Typography15, { style: { fontSize: "1.5rem" }, children: "Insert" }),
|
|
5260
5295
|
value: state,
|
|
5261
5296
|
variant: "outlined",
|
|
5262
5297
|
autoFocus: true,
|
|
@@ -5274,16 +5309,16 @@ var NumpadInput = (props) => {
|
|
|
5274
5309
|
return /* @__PURE__ */ jsxs56("div", { children: [
|
|
5275
5310
|
/* @__PURE__ */ jsxs56("div", { className: classes.c_numpadinput__body, children: [
|
|
5276
5311
|
children || DefaultInput,
|
|
5277
|
-
/* @__PURE__ */
|
|
5312
|
+
/* @__PURE__ */ jsx91(Numpad_default, { handleClick: handleNumpadClick, handleUndo })
|
|
5278
5313
|
] }),
|
|
5279
|
-
state ? /* @__PURE__ */
|
|
5314
|
+
state ? /* @__PURE__ */ jsx91(
|
|
5280
5315
|
FilledButtonLg_default,
|
|
5281
5316
|
{
|
|
5282
5317
|
color: "primary",
|
|
5283
5318
|
copy: "next",
|
|
5284
5319
|
handleClick: handleSubmit
|
|
5285
5320
|
}
|
|
5286
|
-
) : /* @__PURE__ */
|
|
5321
|
+
) : /* @__PURE__ */ jsx91(FilledButtonLg_default, { copy: "next", disabled: true })
|
|
5287
5322
|
] });
|
|
5288
5323
|
};
|
|
5289
5324
|
var NumpadInput_default = memo15(NumpadInput);
|
|
@@ -5291,7 +5326,7 @@ var NumpadInput_default = memo15(NumpadInput);
|
|
|
5291
5326
|
// src/components/NumpadPlus/NumpadPlus.tsx
|
|
5292
5327
|
import { Box as Box20 } from "@mui/material";
|
|
5293
5328
|
import { makeStyles as makeStyles31 } from "tss-react/mui";
|
|
5294
|
-
import { jsx as
|
|
5329
|
+
import { jsx as jsx92, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
5295
5330
|
var useStyles31 = makeStyles31()(() => ({
|
|
5296
5331
|
numpadContainer: {
|
|
5297
5332
|
display: "flex",
|
|
@@ -5326,7 +5361,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5326
5361
|
return /* @__PURE__ */ jsxs57(Box20, { className: styles.numpadContainer, children: [
|
|
5327
5362
|
/* @__PURE__ */ jsxs57(Box20, { className: styles.numpadNumbersContainer, children: [
|
|
5328
5363
|
/* @__PURE__ */ jsxs57(Box20, { className: styles.numpadRow, children: [
|
|
5329
|
-
/* @__PURE__ */
|
|
5364
|
+
/* @__PURE__ */ jsx92(
|
|
5330
5365
|
RoundButton_default,
|
|
5331
5366
|
{
|
|
5332
5367
|
onClick: () => handleClick("1"),
|
|
@@ -5335,7 +5370,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5335
5370
|
children: "1"
|
|
5336
5371
|
}
|
|
5337
5372
|
),
|
|
5338
|
-
/* @__PURE__ */
|
|
5373
|
+
/* @__PURE__ */ jsx92(
|
|
5339
5374
|
RoundButton_default,
|
|
5340
5375
|
{
|
|
5341
5376
|
onClick: () => handleClick("2"),
|
|
@@ -5344,7 +5379,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5344
5379
|
children: "2"
|
|
5345
5380
|
}
|
|
5346
5381
|
),
|
|
5347
|
-
/* @__PURE__ */
|
|
5382
|
+
/* @__PURE__ */ jsx92(
|
|
5348
5383
|
RoundButton_default,
|
|
5349
5384
|
{
|
|
5350
5385
|
onClick: () => handleClick("3"),
|
|
@@ -5355,7 +5390,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5355
5390
|
)
|
|
5356
5391
|
] }),
|
|
5357
5392
|
/* @__PURE__ */ jsxs57(Box20, { className: styles.numpadRow, children: [
|
|
5358
|
-
/* @__PURE__ */
|
|
5393
|
+
/* @__PURE__ */ jsx92(
|
|
5359
5394
|
RoundButton_default,
|
|
5360
5395
|
{
|
|
5361
5396
|
onClick: () => handleClick("4"),
|
|
@@ -5364,7 +5399,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5364
5399
|
children: "4"
|
|
5365
5400
|
}
|
|
5366
5401
|
),
|
|
5367
|
-
/* @__PURE__ */
|
|
5402
|
+
/* @__PURE__ */ jsx92(
|
|
5368
5403
|
RoundButton_default,
|
|
5369
5404
|
{
|
|
5370
5405
|
onClick: () => handleClick("5"),
|
|
@@ -5373,7 +5408,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5373
5408
|
children: "5"
|
|
5374
5409
|
}
|
|
5375
5410
|
),
|
|
5376
|
-
/* @__PURE__ */
|
|
5411
|
+
/* @__PURE__ */ jsx92(
|
|
5377
5412
|
RoundButton_default,
|
|
5378
5413
|
{
|
|
5379
5414
|
onClick: () => handleClick("6"),
|
|
@@ -5384,7 +5419,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5384
5419
|
)
|
|
5385
5420
|
] }),
|
|
5386
5421
|
/* @__PURE__ */ jsxs57(Box20, { className: styles.numpadRow, children: [
|
|
5387
|
-
/* @__PURE__ */
|
|
5422
|
+
/* @__PURE__ */ jsx92(
|
|
5388
5423
|
RoundButton_default,
|
|
5389
5424
|
{
|
|
5390
5425
|
onClick: () => handleClick("7"),
|
|
@@ -5393,7 +5428,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5393
5428
|
children: "7"
|
|
5394
5429
|
}
|
|
5395
5430
|
),
|
|
5396
|
-
/* @__PURE__ */
|
|
5431
|
+
/* @__PURE__ */ jsx92(
|
|
5397
5432
|
RoundButton_default,
|
|
5398
5433
|
{
|
|
5399
5434
|
onClick: () => handleClick("8"),
|
|
@@ -5402,7 +5437,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5402
5437
|
children: "8"
|
|
5403
5438
|
}
|
|
5404
5439
|
),
|
|
5405
|
-
/* @__PURE__ */
|
|
5440
|
+
/* @__PURE__ */ jsx92(
|
|
5406
5441
|
RoundButton_default,
|
|
5407
5442
|
{
|
|
5408
5443
|
onClick: () => handleClick("9"),
|
|
@@ -5413,7 +5448,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5413
5448
|
)
|
|
5414
5449
|
] }),
|
|
5415
5450
|
/* @__PURE__ */ jsxs57(Box20, { className: styles.numpadRow, children: [
|
|
5416
|
-
/* @__PURE__ */
|
|
5451
|
+
/* @__PURE__ */ jsx92(
|
|
5417
5452
|
RoundButton_default,
|
|
5418
5453
|
{
|
|
5419
5454
|
onClick: () => handleClick("0"),
|
|
@@ -5422,7 +5457,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5422
5457
|
children: "0"
|
|
5423
5458
|
}
|
|
5424
5459
|
),
|
|
5425
|
-
/* @__PURE__ */
|
|
5460
|
+
/* @__PURE__ */ jsx92(
|
|
5426
5461
|
RoundButton_default,
|
|
5427
5462
|
{
|
|
5428
5463
|
onClick: () => handleClick("."),
|
|
@@ -5431,7 +5466,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5431
5466
|
children: "."
|
|
5432
5467
|
}
|
|
5433
5468
|
),
|
|
5434
|
-
/* @__PURE__ */
|
|
5469
|
+
/* @__PURE__ */ jsx92(
|
|
5435
5470
|
RoundButton_default,
|
|
5436
5471
|
{
|
|
5437
5472
|
onClick: () => handleClick("-"),
|
|
@@ -5442,7 +5477,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5442
5477
|
)
|
|
5443
5478
|
] })
|
|
5444
5479
|
] }),
|
|
5445
|
-
/* @__PURE__ */
|
|
5480
|
+
/* @__PURE__ */ jsx92(Box20, { className: styles.numpadBackspace, children: /* @__PURE__ */ jsx92(
|
|
5446
5481
|
RoundButton_default,
|
|
5447
5482
|
{
|
|
5448
5483
|
icon: "backspaceOutlined",
|
|
@@ -5458,7 +5493,7 @@ var NumpadPlus_default = NumpadPlus;
|
|
|
5458
5493
|
// src/components/Pagination/Pagination.tsx
|
|
5459
5494
|
import { Pagination, Paper as Paper4, Typography as Typography16 } from "@mui/material";
|
|
5460
5495
|
import { makeStyles as makeStyles32 } from "tss-react/mui";
|
|
5461
|
-
import { jsx as
|
|
5496
|
+
import { jsx as jsx93, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
5462
5497
|
var paginationHeight = "56px";
|
|
5463
5498
|
var useStyles32 = makeStyles32()((theme) => ({
|
|
5464
5499
|
root: {
|
|
@@ -5501,7 +5536,7 @@ var PaginationForTable = ({
|
|
|
5501
5536
|
updateFilters({ ...appliedFilters, page: value });
|
|
5502
5537
|
};
|
|
5503
5538
|
const isFixed = position === "fixed";
|
|
5504
|
-
return /* @__PURE__ */
|
|
5539
|
+
return /* @__PURE__ */ jsx93(Paper4, { children: /* @__PURE__ */ jsxs58(
|
|
5505
5540
|
"div",
|
|
5506
5541
|
{
|
|
5507
5542
|
style,
|
|
@@ -5513,7 +5548,7 @@ var PaginationForTable = ({
|
|
|
5513
5548
|
"Page: ",
|
|
5514
5549
|
page
|
|
5515
5550
|
] }),
|
|
5516
|
-
/* @__PURE__ */
|
|
5551
|
+
/* @__PURE__ */ jsx93(
|
|
5517
5552
|
Pagination,
|
|
5518
5553
|
{
|
|
5519
5554
|
count: pagination.num_pages,
|
|
@@ -5530,8 +5565,8 @@ var Pagination_default = PaginationForTable;
|
|
|
5530
5565
|
// src/components/PhoneInput/PhoneInput.tsx
|
|
5531
5566
|
import ReactPhoneInput from "react-phone-input-material-ui";
|
|
5532
5567
|
import { Box as Box21, TextField as TextField6, Typography as Typography17 } from "@mui/material";
|
|
5533
|
-
import { jsx as
|
|
5534
|
-
var TextInput = (props) => /* @__PURE__ */
|
|
5568
|
+
import { jsx as jsx94, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
5569
|
+
var TextInput = (props) => /* @__PURE__ */ jsx94(TextField6, { ...props, variant: "standard" });
|
|
5535
5570
|
var PhoneInput = ({
|
|
5536
5571
|
value,
|
|
5537
5572
|
onChange,
|
|
@@ -5548,7 +5583,7 @@ var PhoneInput = ({
|
|
|
5548
5583
|
},
|
|
5549
5584
|
className,
|
|
5550
5585
|
children: [
|
|
5551
|
-
/* @__PURE__ */
|
|
5586
|
+
/* @__PURE__ */ jsx94(
|
|
5552
5587
|
ReactPhoneInput,
|
|
5553
5588
|
{
|
|
5554
5589
|
label,
|
|
@@ -5563,7 +5598,7 @@ var PhoneInput = ({
|
|
|
5563
5598
|
}
|
|
5564
5599
|
}
|
|
5565
5600
|
),
|
|
5566
|
-
/* @__PURE__ */
|
|
5601
|
+
/* @__PURE__ */ jsx94(
|
|
5567
5602
|
Typography17,
|
|
5568
5603
|
{
|
|
5569
5604
|
variant: "caption",
|
|
@@ -5592,7 +5627,7 @@ import {
|
|
|
5592
5627
|
Typography as Typography18
|
|
5593
5628
|
} from "@mui/material";
|
|
5594
5629
|
import { makeStyles as makeStyles33 } from "tss-react/mui";
|
|
5595
|
-
import { jsx as
|
|
5630
|
+
import { jsx as jsx95, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
5596
5631
|
var useStyles33 = makeStyles33()((theme) => ({
|
|
5597
5632
|
container: {
|
|
5598
5633
|
position: "relative",
|
|
@@ -5735,7 +5770,7 @@ var PlusMinusInput = ({
|
|
|
5735
5770
|
updateInputValue(value);
|
|
5736
5771
|
};
|
|
5737
5772
|
const { classes, cx } = useStyles33();
|
|
5738
|
-
return /* @__PURE__ */
|
|
5773
|
+
return /* @__PURE__ */ jsx95("div", { className: classes.container, children: /* @__PURE__ */ jsxs60(
|
|
5739
5774
|
FormGroup,
|
|
5740
5775
|
{
|
|
5741
5776
|
className: cx(classes.wrapper, {
|
|
@@ -5743,7 +5778,7 @@ var PlusMinusInput = ({
|
|
|
5743
5778
|
[classes.rightButtons]: buttonsPosition === "right"
|
|
5744
5779
|
}),
|
|
5745
5780
|
children: [
|
|
5746
|
-
/* @__PURE__ */
|
|
5781
|
+
/* @__PURE__ */ jsx95(
|
|
5747
5782
|
RoundButton_default,
|
|
5748
5783
|
{
|
|
5749
5784
|
className: classes.minus,
|
|
@@ -5754,17 +5789,17 @@ var PlusMinusInput = ({
|
|
|
5754
5789
|
}
|
|
5755
5790
|
),
|
|
5756
5791
|
/* @__PURE__ */ jsxs60("div", { children: [
|
|
5757
|
-
/* @__PURE__ */
|
|
5792
|
+
/* @__PURE__ */ jsx95(
|
|
5758
5793
|
Controller7,
|
|
5759
5794
|
{
|
|
5760
5795
|
control,
|
|
5761
5796
|
name: "inputValue",
|
|
5762
|
-
render: ({ field }) => /* @__PURE__ */
|
|
5797
|
+
render: ({ field }) => /* @__PURE__ */ jsx95(
|
|
5763
5798
|
FormControlLabel2,
|
|
5764
5799
|
{
|
|
5765
5800
|
...field,
|
|
5766
5801
|
className: classes.formControlLabel,
|
|
5767
|
-
control: /* @__PURE__ */
|
|
5802
|
+
control: /* @__PURE__ */ jsx95(
|
|
5768
5803
|
TextField7,
|
|
5769
5804
|
{
|
|
5770
5805
|
className: classes.input,
|
|
@@ -5781,7 +5816,7 @@ var PlusMinusInput = ({
|
|
|
5781
5816
|
)
|
|
5782
5817
|
}
|
|
5783
5818
|
),
|
|
5784
|
-
errors.inputValue && /* @__PURE__ */
|
|
5819
|
+
errors.inputValue && /* @__PURE__ */ jsx95(
|
|
5785
5820
|
Typography18,
|
|
5786
5821
|
{
|
|
5787
5822
|
className: classes.errorText,
|
|
@@ -5792,7 +5827,7 @@ var PlusMinusInput = ({
|
|
|
5792
5827
|
}
|
|
5793
5828
|
)
|
|
5794
5829
|
] }),
|
|
5795
|
-
/* @__PURE__ */
|
|
5830
|
+
/* @__PURE__ */ jsx95(
|
|
5796
5831
|
RoundButton_default,
|
|
5797
5832
|
{
|
|
5798
5833
|
className: classes.plus,
|
|
@@ -5816,21 +5851,21 @@ import { withStyles as withStyles4 } from "tss-react/mui";
|
|
|
5816
5851
|
// src/components/ProductImage/ProductImage.tsx
|
|
5817
5852
|
import { CardMedia } from "@mui/material";
|
|
5818
5853
|
import { withStyles as withStyles3 } from "tss-react/mui";
|
|
5819
|
-
import { jsx as
|
|
5854
|
+
import { jsx as jsx96, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
5820
5855
|
var PImage = ({
|
|
5821
5856
|
classes,
|
|
5822
5857
|
image,
|
|
5823
5858
|
size = "c_productbust__image_xs",
|
|
5824
5859
|
status
|
|
5825
5860
|
}) => /* @__PURE__ */ jsxs61("div", { className: classes.c_productbust__image, children: [
|
|
5826
|
-
/* @__PURE__ */
|
|
5861
|
+
/* @__PURE__ */ jsx96(
|
|
5827
5862
|
CardMedia,
|
|
5828
5863
|
{
|
|
5829
5864
|
className: classes[size],
|
|
5830
5865
|
image: image || "@/resources/img/peas.jpg"
|
|
5831
5866
|
}
|
|
5832
5867
|
),
|
|
5833
|
-
status && status !== "ACTIVE" && /* @__PURE__ */
|
|
5868
|
+
status && status !== "ACTIVE" && /* @__PURE__ */ jsx96("div", { className: classes.c_productbust__label_status, children: status })
|
|
5834
5869
|
] });
|
|
5835
5870
|
var ProductImage = withStyles3(PImage, (theme) => ({
|
|
5836
5871
|
c_productbust__label_status: {
|
|
@@ -5912,7 +5947,7 @@ var ProductImage = withStyles3(PImage, (theme) => ({
|
|
|
5912
5947
|
var ProductImage_default = ProductImage;
|
|
5913
5948
|
|
|
5914
5949
|
// src/components/ProductBust/ProductBust.tsx
|
|
5915
|
-
import { Fragment as Fragment9, jsx as
|
|
5950
|
+
import { Fragment as Fragment9, jsx as jsx97, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
5916
5951
|
var PBust = ({
|
|
5917
5952
|
classes,
|
|
5918
5953
|
size,
|
|
@@ -5955,7 +5990,7 @@ var PBust = ({
|
|
|
5955
5990
|
break;
|
|
5956
5991
|
}
|
|
5957
5992
|
const [historyVisible, setHistoryVisible] = useState9(false);
|
|
5958
|
-
const historyDataIcon = () => /* @__PURE__ */
|
|
5993
|
+
const historyDataIcon = () => /* @__PURE__ */ jsx97(
|
|
5959
5994
|
RoundButton_default,
|
|
5960
5995
|
{
|
|
5961
5996
|
icon: "history",
|
|
@@ -5964,7 +5999,7 @@ var PBust = ({
|
|
|
5964
5999
|
}
|
|
5965
6000
|
);
|
|
5966
6001
|
return /* @__PURE__ */ jsxs62("div", { className: classes.c_productbust, children: [
|
|
5967
|
-
/* @__PURE__ */
|
|
6002
|
+
/* @__PURE__ */ jsx97(
|
|
5968
6003
|
ProductImage_default,
|
|
5969
6004
|
{
|
|
5970
6005
|
image: product?.image,
|
|
@@ -5975,7 +6010,7 @@ var PBust = ({
|
|
|
5975
6010
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__container, children: [
|
|
5976
6011
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__heading, children: [
|
|
5977
6012
|
/* @__PURE__ */ jsxs62("div", { children: [
|
|
5978
|
-
/* @__PURE__ */
|
|
6013
|
+
/* @__PURE__ */ jsx97(
|
|
5979
6014
|
Typography19,
|
|
5980
6015
|
{
|
|
5981
6016
|
component: "span",
|
|
@@ -5984,10 +6019,10 @@ var PBust = ({
|
|
|
5984
6019
|
children: !!locationData && locationData
|
|
5985
6020
|
}
|
|
5986
6021
|
),
|
|
5987
|
-
/* @__PURE__ */
|
|
5988
|
-
!product && /* @__PURE__ */
|
|
6022
|
+
/* @__PURE__ */ jsx97(Typography19, { component: "span", className: classes[titleSize], children: product?.name }),
|
|
6023
|
+
!product && /* @__PURE__ */ jsx97(Typography19, { component: "span", className: classes[titleSize], children: "Empty Position" }),
|
|
5989
6024
|
primaryData || /* @__PURE__ */ jsxs62(Fragment9, { children: [
|
|
5990
|
-
/* @__PURE__ */
|
|
6025
|
+
/* @__PURE__ */ jsx97(
|
|
5991
6026
|
Typography19,
|
|
5992
6027
|
{
|
|
5993
6028
|
style: { color: "#555" },
|
|
@@ -5995,7 +6030,7 @@ var PBust = ({
|
|
|
5995
6030
|
children: product?.category.name
|
|
5996
6031
|
}
|
|
5997
6032
|
),
|
|
5998
|
-
/* @__PURE__ */
|
|
6033
|
+
/* @__PURE__ */ jsx97(
|
|
5999
6034
|
Typography19,
|
|
6000
6035
|
{
|
|
6001
6036
|
style: { color: "#A42966", textTransform: "uppercase" },
|
|
@@ -6006,13 +6041,13 @@ var PBust = ({
|
|
|
6006
6041
|
] })
|
|
6007
6042
|
] }),
|
|
6008
6043
|
/* @__PURE__ */ jsxs62("div", { className: classes.c_productbust__btns, children: [
|
|
6009
|
-
/* @__PURE__ */
|
|
6010
|
-
/* @__PURE__ */
|
|
6044
|
+
/* @__PURE__ */ jsx97("div", { children: buttonData }),
|
|
6045
|
+
/* @__PURE__ */ jsx97("div", { children: !!locationId && historyDataIcon() })
|
|
6011
6046
|
] })
|
|
6012
6047
|
] }),
|
|
6013
|
-
/* @__PURE__ */
|
|
6048
|
+
/* @__PURE__ */ jsx97("div", { children: !!secondaryData && secondaryData })
|
|
6014
6049
|
] }),
|
|
6015
|
-
/* @__PURE__ */
|
|
6050
|
+
/* @__PURE__ */ jsx97(
|
|
6016
6051
|
LocationHistoryDialog,
|
|
6017
6052
|
{
|
|
6018
6053
|
handleVisible: setHistoryVisible,
|
|
@@ -6116,7 +6151,7 @@ var ProductBust_default = ProductBust;
|
|
|
6116
6151
|
// src/components/RenderAvatar/RenderAvatar.tsx
|
|
6117
6152
|
import { Avatar as Avatar2, Badge, Box as Box22, Typography as Typography20 } from "@mui/material";
|
|
6118
6153
|
import { withStyles as withStyles5 } from "tss-react/mui";
|
|
6119
|
-
import { jsx as
|
|
6154
|
+
import { jsx as jsx98, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
6120
6155
|
var RenderAvatar = ({ active }) => {
|
|
6121
6156
|
const StyledBadge = withStyles5(Badge, () => ({
|
|
6122
6157
|
root: {
|
|
@@ -6130,7 +6165,7 @@ var RenderAvatar = ({ active }) => {
|
|
|
6130
6165
|
{
|
|
6131
6166
|
sx: { display: "flex", flexDirection: "column", alignItems: "center" },
|
|
6132
6167
|
children: [
|
|
6133
|
-
/* @__PURE__ */
|
|
6168
|
+
/* @__PURE__ */ jsx98(
|
|
6134
6169
|
StyledBadge,
|
|
6135
6170
|
{
|
|
6136
6171
|
overlap: "circular",
|
|
@@ -6139,10 +6174,10 @@ var RenderAvatar = ({ active }) => {
|
|
|
6139
6174
|
horizontal: "right"
|
|
6140
6175
|
},
|
|
6141
6176
|
variant: "dot",
|
|
6142
|
-
children: /* @__PURE__ */
|
|
6177
|
+
children: /* @__PURE__ */ jsx98(Avatar2, {})
|
|
6143
6178
|
}
|
|
6144
6179
|
),
|
|
6145
|
-
/* @__PURE__ */
|
|
6180
|
+
/* @__PURE__ */ jsx98(Typography20, { variant: "caption", children: active ? "Active" : "Disabled" })
|
|
6146
6181
|
]
|
|
6147
6182
|
}
|
|
6148
6183
|
);
|
|
@@ -6166,7 +6201,7 @@ import { useEffect as useEffect5, useState as useState10 } from "react";
|
|
|
6166
6201
|
var transformNameToID = (name) => name.replaceAll(" ", "-").toLocaleLowerCase();
|
|
6167
6202
|
|
|
6168
6203
|
// src/components/RenderContentList/RenderContentList.tsx
|
|
6169
|
-
import { jsx as
|
|
6204
|
+
import { jsx as jsx99, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
6170
6205
|
var useStyles34 = makeStyles34()(
|
|
6171
6206
|
(_theme, _params, classes) => ({
|
|
6172
6207
|
root: {
|
|
@@ -6220,12 +6255,12 @@ var RenderContentList = ({
|
|
|
6220
6255
|
observer.current?.disconnect();
|
|
6221
6256
|
};
|
|
6222
6257
|
}, [items]);
|
|
6223
|
-
return /* @__PURE__ */
|
|
6258
|
+
return /* @__PURE__ */ jsx99(
|
|
6224
6259
|
List2,
|
|
6225
6260
|
{
|
|
6226
6261
|
component: "nav",
|
|
6227
6262
|
"aria-labelledby": "nested-list-subheader",
|
|
6228
|
-
subheader: /* @__PURE__ */
|
|
6263
|
+
subheader: /* @__PURE__ */ jsx99(ListSubheader2, { component: "div", id: "nested-list-subheader", children: "Contents" }),
|
|
6229
6264
|
children: items.map((item) => {
|
|
6230
6265
|
const id = transformNameToID(item);
|
|
6231
6266
|
return /* @__PURE__ */ jsxs64(
|
|
@@ -6237,8 +6272,8 @@ var RenderContentList = ({
|
|
|
6237
6272
|
selected: active === id,
|
|
6238
6273
|
classes: { root: classes.root, selected: classes.selected },
|
|
6239
6274
|
children: [
|
|
6240
|
-
/* @__PURE__ */
|
|
6241
|
-
warningItems?.includes(item) && /* @__PURE__ */
|
|
6275
|
+
/* @__PURE__ */ jsx99(ListItemText5, { primary: item }),
|
|
6276
|
+
warningItems?.includes(item) && /* @__PURE__ */ jsx99(Tooltip4, { title: warningMessage, children: /* @__PURE__ */ jsx99(WarningAmber, { color: "warning" }) })
|
|
6242
6277
|
]
|
|
6243
6278
|
},
|
|
6244
6279
|
id
|
|
@@ -6252,7 +6287,7 @@ var RenderContentList_default = RenderContentList;
|
|
|
6252
6287
|
// src/components/RowProductCard/RowProductCard.tsx
|
|
6253
6288
|
import { Box as Box23, Divider as Divider4, Paper as Paper5, Typography as Typography21 } from "@mui/material";
|
|
6254
6289
|
import { makeStyles as makeStyles35 } from "tss-react/mui";
|
|
6255
|
-
import { Fragment as Fragment10, jsx as
|
|
6290
|
+
import { Fragment as Fragment10, jsx as jsx100, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
6256
6291
|
var useStyles35 = makeStyles35()((theme) => ({
|
|
6257
6292
|
wrapper: {
|
|
6258
6293
|
display: "flex",
|
|
@@ -6292,7 +6327,7 @@ var RowProductCard = ({
|
|
|
6292
6327
|
large: "c_productbust__image_lg"
|
|
6293
6328
|
};
|
|
6294
6329
|
return /* @__PURE__ */ jsxs65(Paper5, { className: classes.wrapper, children: [
|
|
6295
|
-
/* @__PURE__ */
|
|
6330
|
+
/* @__PURE__ */ jsx100(
|
|
6296
6331
|
ProductImage_default,
|
|
6297
6332
|
{
|
|
6298
6333
|
image: product.image,
|
|
@@ -6318,16 +6353,16 @@ var RowProductCard = ({
|
|
|
6318
6353
|
},
|
|
6319
6354
|
children: [
|
|
6320
6355
|
/* @__PURE__ */ jsxs65("div", { children: [
|
|
6321
|
-
location ? /* @__PURE__ */
|
|
6322
|
-
/* @__PURE__ */
|
|
6356
|
+
location ? /* @__PURE__ */ jsx100(Typography21, { className: classes.smallTitle, variant: "caption", children: `Location: ${location}` }) : null,
|
|
6357
|
+
/* @__PURE__ */ jsx100(Typography21, { variant: "h6", children: product.name })
|
|
6323
6358
|
] }),
|
|
6324
6359
|
children
|
|
6325
6360
|
]
|
|
6326
6361
|
}
|
|
6327
6362
|
),
|
|
6328
6363
|
hasColumns ? /* @__PURE__ */ jsxs65(Fragment10, { children: [
|
|
6329
|
-
/* @__PURE__ */
|
|
6330
|
-
/* @__PURE__ */
|
|
6364
|
+
/* @__PURE__ */ jsx100(Divider4, { className: classes.divider }),
|
|
6365
|
+
/* @__PURE__ */ jsx100(
|
|
6331
6366
|
Box23,
|
|
6332
6367
|
{
|
|
6333
6368
|
sx: {
|
|
@@ -6335,8 +6370,8 @@ var RowProductCard = ({
|
|
|
6335
6370
|
gap: "24px"
|
|
6336
6371
|
},
|
|
6337
6372
|
children: columns.map((column) => /* @__PURE__ */ jsxs65("div", { children: [
|
|
6338
|
-
/* @__PURE__ */
|
|
6339
|
-
typeof column.value === "string" ? /* @__PURE__ */
|
|
6373
|
+
/* @__PURE__ */ jsx100(Typography21, { className: classes.smallTitle, variant: "caption", children: column.title }),
|
|
6374
|
+
typeof column.value === "string" ? /* @__PURE__ */ jsx100(Typography21, { variant: "body1", children: column.value }) : column.value
|
|
6340
6375
|
] }, column.title))
|
|
6341
6376
|
}
|
|
6342
6377
|
)
|
|
@@ -6352,7 +6387,7 @@ var RowProductCard_default = RowProductCard;
|
|
|
6352
6387
|
import { useEffect as useEffect7, useState as useState12 } from "react";
|
|
6353
6388
|
import { Box as Box24, Dialog as Dialog4, Divider as Divider5, Fade, Paper as Paper6, Typography as Typography22 } from "@mui/material";
|
|
6354
6389
|
import { makeStyles as makeStyles36 } from "tss-react/mui";
|
|
6355
|
-
import { jsx as
|
|
6390
|
+
import { jsx as jsx101, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
6356
6391
|
var useStyles36 = makeStyles36()((theme) => ({
|
|
6357
6392
|
dialog: {
|
|
6358
6393
|
margin: "0 auto",
|
|
@@ -6445,10 +6480,10 @@ var ScrollableDialog = ({
|
|
|
6445
6480
|
setDialogBodyMaxHeight();
|
|
6446
6481
|
}
|
|
6447
6482
|
}, [isOpen, maxDialogHeight, header]);
|
|
6448
|
-
return /* @__PURE__ */
|
|
6449
|
-
header ? /* @__PURE__ */
|
|
6483
|
+
return /* @__PURE__ */ jsx101(Dialog4, { className: classes.dialog, fullWidth: true, maxWidth: false, open: isOpen, children: /* @__PURE__ */ jsx101(Fade, { in: isOpen, children: /* @__PURE__ */ jsxs66(Paper6, { className: classes.wrapper, children: [
|
|
6484
|
+
header ? /* @__PURE__ */ jsx101("div", { className: classes.header, id: "dialog-header", children: header }) : null,
|
|
6450
6485
|
/* @__PURE__ */ jsxs66("div", { className: classes.body, children: [
|
|
6451
|
-
/* @__PURE__ */
|
|
6486
|
+
/* @__PURE__ */ jsx101(
|
|
6452
6487
|
Typography22,
|
|
6453
6488
|
{
|
|
6454
6489
|
className: classes.title,
|
|
@@ -6457,7 +6492,7 @@ var ScrollableDialog = ({
|
|
|
6457
6492
|
children: title
|
|
6458
6493
|
}
|
|
6459
6494
|
),
|
|
6460
|
-
/* @__PURE__ */
|
|
6495
|
+
/* @__PURE__ */ jsx101(
|
|
6461
6496
|
"div",
|
|
6462
6497
|
{
|
|
6463
6498
|
className: cx(classes.scrollableContainer, {
|
|
@@ -6471,8 +6506,8 @@ var ScrollableDialog = ({
|
|
|
6471
6506
|
}
|
|
6472
6507
|
)
|
|
6473
6508
|
] }),
|
|
6474
|
-
/* @__PURE__ */
|
|
6475
|
-
footer ? /* @__PURE__ */
|
|
6509
|
+
/* @__PURE__ */ jsx101(Divider5, {}),
|
|
6510
|
+
footer ? /* @__PURE__ */ jsx101(
|
|
6476
6511
|
Box24,
|
|
6477
6512
|
{
|
|
6478
6513
|
className: classes.footer,
|
|
@@ -6502,7 +6537,7 @@ import {
|
|
|
6502
6537
|
} from "@mui/icons-material";
|
|
6503
6538
|
import { Button as Button11, Divider as Divider6, InputBase, Paper as Paper7 } from "@mui/material";
|
|
6504
6539
|
import { makeStyles as makeStyles37 } from "tss-react/mui";
|
|
6505
|
-
import { jsx as
|
|
6540
|
+
import { jsx as jsx102, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
6506
6541
|
var useStyles37 = makeStyles37()((theme) => ({
|
|
6507
6542
|
searchContainer: {
|
|
6508
6543
|
height: 46,
|
|
@@ -6563,8 +6598,8 @@ var SearchWithFilters = ({
|
|
|
6563
6598
|
setSearchText(searchValue);
|
|
6564
6599
|
}, [searchValue]);
|
|
6565
6600
|
return /* @__PURE__ */ jsxs67(Paper7, { className: classes.searchContainer, children: [
|
|
6566
|
-
/* @__PURE__ */
|
|
6567
|
-
/* @__PURE__ */
|
|
6601
|
+
/* @__PURE__ */ jsx102(SearchIcon, { className: classes.icon, fontSize: "small" }),
|
|
6602
|
+
/* @__PURE__ */ jsx102(
|
|
6568
6603
|
InputBase,
|
|
6569
6604
|
{
|
|
6570
6605
|
className: classes.input,
|
|
@@ -6576,7 +6611,7 @@ var SearchWithFilters = ({
|
|
|
6576
6611
|
inputProps: { "aria-label": "search" }
|
|
6577
6612
|
}
|
|
6578
6613
|
),
|
|
6579
|
-
/* @__PURE__ */
|
|
6614
|
+
/* @__PURE__ */ jsx102(Divider6, { className: classes.divider, orientation: "vertical" }),
|
|
6580
6615
|
/* @__PURE__ */ jsxs67(
|
|
6581
6616
|
Button11,
|
|
6582
6617
|
{
|
|
@@ -6585,7 +6620,7 @@ var SearchWithFilters = ({
|
|
|
6585
6620
|
disabled,
|
|
6586
6621
|
children: [
|
|
6587
6622
|
"Filters",
|
|
6588
|
-
showFilters ? /* @__PURE__ */
|
|
6623
|
+
showFilters ? /* @__PURE__ */ jsx102(ArrowDropUpIcon, {}) : /* @__PURE__ */ jsx102(ArrowDropDownIcon, {})
|
|
6589
6624
|
]
|
|
6590
6625
|
}
|
|
6591
6626
|
)
|
|
@@ -6594,7 +6629,7 @@ var SearchWithFilters = ({
|
|
|
6594
6629
|
var SearchWithFilters_default = React2.memo(SearchWithFilters);
|
|
6595
6630
|
|
|
6596
6631
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeader.tsx
|
|
6597
|
-
import { jsx as
|
|
6632
|
+
import { jsx as jsx103, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
6598
6633
|
var useStyles38 = makeStyles38()((theme) => ({
|
|
6599
6634
|
wrapper: {
|
|
6600
6635
|
display: "flex",
|
|
@@ -6630,11 +6665,11 @@ var SearchAndFilterHeader = ({
|
|
|
6630
6665
|
searchValue
|
|
6631
6666
|
}) => {
|
|
6632
6667
|
const { classes } = useStyles38();
|
|
6633
|
-
return /* @__PURE__ */
|
|
6668
|
+
return /* @__PURE__ */ jsx103(Paper8, { children: /* @__PURE__ */ jsxs68(Box25, { className: classes.wrapper, children: [
|
|
6634
6669
|
/* @__PURE__ */ jsxs68(Box25, { className: classes.container, children: [
|
|
6635
6670
|
/* @__PURE__ */ jsxs68(Box25, { className: classes.leftSection, children: [
|
|
6636
|
-
/* @__PURE__ */
|
|
6637
|
-
/* @__PURE__ */
|
|
6671
|
+
/* @__PURE__ */ jsx103(AppLabel_default, { appName }),
|
|
6672
|
+
/* @__PURE__ */ jsx103(
|
|
6638
6673
|
SearchWithFilters_default,
|
|
6639
6674
|
{
|
|
6640
6675
|
searchValue,
|
|
@@ -6645,9 +6680,9 @@ var SearchAndFilterHeader = ({
|
|
|
6645
6680
|
}
|
|
6646
6681
|
)
|
|
6647
6682
|
] }),
|
|
6648
|
-
/* @__PURE__ */
|
|
6683
|
+
/* @__PURE__ */ jsx103(Box25, { children: extraButton })
|
|
6649
6684
|
] }),
|
|
6650
|
-
showFilters ? /* @__PURE__ */
|
|
6685
|
+
showFilters ? /* @__PURE__ */ jsx103(Box25, { children: filtersComponent }) : null,
|
|
6651
6686
|
appliedFiltersComponent
|
|
6652
6687
|
] }) });
|
|
6653
6688
|
};
|
|
@@ -6667,7 +6702,7 @@ import {
|
|
|
6667
6702
|
} from "@mui/icons-material";
|
|
6668
6703
|
import { Box as Box26, Button as Button12, Divider as Divider7, InputBase as InputBase2, Paper as Paper9 } from "@mui/material";
|
|
6669
6704
|
import { makeStyles as makeStyles39 } from "tss-react/mui";
|
|
6670
|
-
import { Fragment as Fragment11, jsx as
|
|
6705
|
+
import { Fragment as Fragment11, jsx as jsx104, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
6671
6706
|
var useStyles39 = makeStyles39()((theme) => ({
|
|
6672
6707
|
c_search: {
|
|
6673
6708
|
height: 46,
|
|
@@ -6743,8 +6778,8 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6743
6778
|
};
|
|
6744
6779
|
const ArrowIcon = isOpen ? ArrowDropUpIcon2 : ArrowDropDownIcon2;
|
|
6745
6780
|
return /* @__PURE__ */ jsxs69(Paper9, { className: classes.c_search, children: [
|
|
6746
|
-
/* @__PURE__ */
|
|
6747
|
-
/* @__PURE__ */
|
|
6781
|
+
/* @__PURE__ */ jsx104(Box26, { className: classes.c_search__icon, children: /* @__PURE__ */ jsx104(SearchIcon2, { className: classes.icon, fontSize: "small" }) }),
|
|
6782
|
+
/* @__PURE__ */ jsx104(
|
|
6748
6783
|
InputBase2,
|
|
6749
6784
|
{
|
|
6750
6785
|
className: classes.c_search__input,
|
|
@@ -6755,7 +6790,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6755
6790
|
}
|
|
6756
6791
|
),
|
|
6757
6792
|
showFilterButton && /* @__PURE__ */ jsxs69(Fragment11, { children: [
|
|
6758
|
-
/* @__PURE__ */
|
|
6793
|
+
/* @__PURE__ */ jsx104(
|
|
6759
6794
|
Divider7,
|
|
6760
6795
|
{
|
|
6761
6796
|
className: classes.c_search__divider,
|
|
@@ -6769,7 +6804,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6769
6804
|
onClick: handleFilterButtonClick,
|
|
6770
6805
|
children: [
|
|
6771
6806
|
"Filters",
|
|
6772
|
-
/* @__PURE__ */
|
|
6807
|
+
/* @__PURE__ */ jsx104(ArrowIcon, { className: classes.c_search__bt_icon_filter })
|
|
6773
6808
|
]
|
|
6774
6809
|
}
|
|
6775
6810
|
)
|
|
@@ -6779,7 +6814,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6779
6814
|
var SearchWithFiltersForTable_default = memo17(SearchWithFiltersForTable);
|
|
6780
6815
|
|
|
6781
6816
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeaderForTable.tsx
|
|
6782
|
-
import { jsx as
|
|
6817
|
+
import { jsx as jsx105, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
6783
6818
|
var useStyles40 = makeStyles40()((theme) => ({
|
|
6784
6819
|
container: {
|
|
6785
6820
|
display: "flex",
|
|
@@ -6813,8 +6848,8 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
6813
6848
|
const { classes } = useStyles40();
|
|
6814
6849
|
return /* @__PURE__ */ jsxs70(Box27, { className: classes.container, children: [
|
|
6815
6850
|
/* @__PURE__ */ jsxs70(Box27, { className: classes.leftSection, children: [
|
|
6816
|
-
/* @__PURE__ */
|
|
6817
|
-
/* @__PURE__ */
|
|
6851
|
+
/* @__PURE__ */ jsx105(AppLabel_default, { appName }),
|
|
6852
|
+
/* @__PURE__ */ jsx105(
|
|
6818
6853
|
SearchWithFiltersForTable_default,
|
|
6819
6854
|
{
|
|
6820
6855
|
onFilterButtonClick,
|
|
@@ -6825,17 +6860,17 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
6825
6860
|
searchedValue
|
|
6826
6861
|
}
|
|
6827
6862
|
),
|
|
6828
|
-
copy && /* @__PURE__ */
|
|
6863
|
+
copy && /* @__PURE__ */ jsx105(
|
|
6829
6864
|
Box27,
|
|
6830
6865
|
{
|
|
6831
6866
|
sx: {
|
|
6832
6867
|
margin: 0.5
|
|
6833
6868
|
},
|
|
6834
|
-
children: /* @__PURE__ */
|
|
6869
|
+
children: /* @__PURE__ */ jsx105(OutlinedButton_default, { copy })
|
|
6835
6870
|
}
|
|
6836
6871
|
)
|
|
6837
6872
|
] }),
|
|
6838
|
-
/* @__PURE__ */
|
|
6873
|
+
/* @__PURE__ */ jsx105(Box27, { children: button })
|
|
6839
6874
|
] });
|
|
6840
6875
|
};
|
|
6841
6876
|
var SearchAndFilterHeaderForTable_default = React3.memo(SearchAndFilterHeaderForTable);
|
|
@@ -6844,7 +6879,7 @@ var SearchAndFilterHeaderForTable_default = React3.memo(SearchAndFilterHeaderFor
|
|
|
6844
6879
|
import { History as History2, Info as InfoIcon } from "@mui/icons-material";
|
|
6845
6880
|
import { Box as Box28, Divider as Divider8, IconButton as IconButton2, Tooltip as Tooltip5, Typography as Typography23 } from "@mui/material";
|
|
6846
6881
|
import { makeStyles as makeStyles41 } from "tss-react/mui";
|
|
6847
|
-
import { jsx as
|
|
6882
|
+
import { jsx as jsx106, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
6848
6883
|
var useStyles41 = makeStyles41()((theme) => ({
|
|
6849
6884
|
container: {
|
|
6850
6885
|
display: "flex",
|
|
@@ -6889,7 +6924,7 @@ var SectionName = ({
|
|
|
6889
6924
|
const { classes } = useStyles41();
|
|
6890
6925
|
return /* @__PURE__ */ jsxs71(Box28, { className: classes.container, children: [
|
|
6891
6926
|
/* @__PURE__ */ jsxs71(Box28, { className: classes.titleContainer, children: [
|
|
6892
|
-
/* @__PURE__ */
|
|
6927
|
+
/* @__PURE__ */ jsx106(
|
|
6893
6928
|
Typography23,
|
|
6894
6929
|
{
|
|
6895
6930
|
variant: "h5",
|
|
@@ -6899,7 +6934,7 @@ var SectionName = ({
|
|
|
6899
6934
|
children: name
|
|
6900
6935
|
}
|
|
6901
6936
|
),
|
|
6902
|
-
tooltipDescription ? /* @__PURE__ */
|
|
6937
|
+
tooltipDescription ? /* @__PURE__ */ jsx106(Tooltip5, { title: tooltipDescription, placement: "right", children: /* @__PURE__ */ jsx106(
|
|
6903
6938
|
InfoIcon,
|
|
6904
6939
|
{
|
|
6905
6940
|
fontSize: "small",
|
|
@@ -6909,7 +6944,7 @@ var SectionName = ({
|
|
|
6909
6944
|
) }) : null
|
|
6910
6945
|
] }),
|
|
6911
6946
|
/* @__PURE__ */ jsxs71(Box28, { className: classes.actionButtons, children: [
|
|
6912
|
-
buttonText ? /* @__PURE__ */
|
|
6947
|
+
buttonText ? /* @__PURE__ */ jsx106(
|
|
6913
6948
|
ExtendedButton_default,
|
|
6914
6949
|
{
|
|
6915
6950
|
type: buttonType,
|
|
@@ -6922,8 +6957,8 @@ var SectionName = ({
|
|
|
6922
6957
|
variant: "text"
|
|
6923
6958
|
}
|
|
6924
6959
|
) : null,
|
|
6925
|
-
openHistoryLog && buttonText && /* @__PURE__ */
|
|
6926
|
-
openHistoryLog && /* @__PURE__ */
|
|
6960
|
+
openHistoryLog && buttonText && /* @__PURE__ */ jsx106(Divider8, { orientation: "vertical", sx: { height: "24px" } }),
|
|
6961
|
+
openHistoryLog && /* @__PURE__ */ jsx106(IconButton2, { size: "small", onClick: () => openHistoryLog(), children: /* @__PURE__ */ jsx106(History2, {}) })
|
|
6927
6962
|
] })
|
|
6928
6963
|
] });
|
|
6929
6964
|
};
|
|
@@ -6940,7 +6975,7 @@ import {
|
|
|
6940
6975
|
Select as Select3
|
|
6941
6976
|
} from "@mui/material";
|
|
6942
6977
|
import { makeStyles as makeStyles42 } from "tss-react/mui";
|
|
6943
|
-
import { jsx as
|
|
6978
|
+
import { jsx as jsx107, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
6944
6979
|
var useStyles42 = makeStyles42()(() => ({
|
|
6945
6980
|
container: {
|
|
6946
6981
|
display: "flex",
|
|
@@ -7017,7 +7052,7 @@ var SmartSelect = forwardRef3(
|
|
|
7017
7052
|
"data-testid": dataTestId,
|
|
7018
7053
|
disabled,
|
|
7019
7054
|
children: [
|
|
7020
|
-
inputLabel && /* @__PURE__ */
|
|
7055
|
+
inputLabel && /* @__PURE__ */ jsx107(
|
|
7021
7056
|
InputLabel4,
|
|
7022
7057
|
{
|
|
7023
7058
|
id: "smart-select-label",
|
|
@@ -7042,17 +7077,17 @@ var SmartSelect = forwardRef3(
|
|
|
7042
7077
|
MenuProps: menuProps,
|
|
7043
7078
|
label: inputLabel,
|
|
7044
7079
|
children: [
|
|
7045
|
-
isFetching && /* @__PURE__ */
|
|
7080
|
+
isFetching && /* @__PURE__ */ jsx107(
|
|
7046
7081
|
MenuItem3,
|
|
7047
7082
|
{
|
|
7048
7083
|
disabled: true,
|
|
7049
7084
|
"data-testid": `${dataTestId}-loading`,
|
|
7050
7085
|
id: `${dataTestId}-loading`,
|
|
7051
|
-
children: /* @__PURE__ */
|
|
7086
|
+
children: /* @__PURE__ */ jsx107(CircularProgress5, { size: 24 })
|
|
7052
7087
|
}
|
|
7053
7088
|
),
|
|
7054
|
-
(defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */
|
|
7055
|
-
localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */
|
|
7089
|
+
(defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */ jsx107(MenuItem3, { disabled: true, "data-testid": `${dataTestId}-empty-message`, children: emptyMessage }),
|
|
7090
|
+
localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */ jsx107(
|
|
7056
7091
|
MenuItem3,
|
|
7057
7092
|
{
|
|
7058
7093
|
value: defaultOption?.value,
|
|
@@ -7060,7 +7095,7 @@ var SmartSelect = forwardRef3(
|
|
|
7060
7095
|
children: defaultOption?.label
|
|
7061
7096
|
}
|
|
7062
7097
|
),
|
|
7063
|
-
!isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */
|
|
7098
|
+
!isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */ jsx107(
|
|
7064
7099
|
MenuItem3,
|
|
7065
7100
|
{
|
|
7066
7101
|
value: option?.value,
|
|
@@ -7073,7 +7108,7 @@ var SmartSelect = forwardRef3(
|
|
|
7073
7108
|
]
|
|
7074
7109
|
}
|
|
7075
7110
|
),
|
|
7076
|
-
helperText && /* @__PURE__ */
|
|
7111
|
+
helperText && /* @__PURE__ */ jsx107(FormHelperText3, { "data-testid": `${dataTestId}-helper-text`, children: helperText })
|
|
7077
7112
|
]
|
|
7078
7113
|
}
|
|
7079
7114
|
);
|
|
@@ -7086,7 +7121,7 @@ import { memo as memo19 } from "react";
|
|
|
7086
7121
|
import { Typography as Typography24 } from "@mui/material";
|
|
7087
7122
|
import red2 from "@mui/material/colors/red";
|
|
7088
7123
|
import { makeStyles as makeStyles43 } from "tss-react/mui";
|
|
7089
|
-
import { jsx as
|
|
7124
|
+
import { jsx as jsx108 } from "react/jsx-runtime";
|
|
7090
7125
|
var useStyles43 = makeStyles43()((theme) => ({
|
|
7091
7126
|
red: {
|
|
7092
7127
|
backgroundColor: red2["50"],
|
|
@@ -7101,7 +7136,7 @@ var useStyles43 = makeStyles43()((theme) => ({
|
|
|
7101
7136
|
}));
|
|
7102
7137
|
var SquareLabel = ({ color, copy }) => {
|
|
7103
7138
|
const { classes } = useStyles43();
|
|
7104
|
-
return /* @__PURE__ */
|
|
7139
|
+
return /* @__PURE__ */ jsx108(Typography24, { className: classes[color], children: copy });
|
|
7105
7140
|
};
|
|
7106
7141
|
var SquareLabel_default = memo19(SquareLabel);
|
|
7107
7142
|
|
|
@@ -7109,7 +7144,7 @@ var SquareLabel_default = memo19(SquareLabel);
|
|
|
7109
7144
|
import { memo as memo20 } from "react";
|
|
7110
7145
|
import { Grid2, Switch } from "@mui/material";
|
|
7111
7146
|
import { withStyles as withStyles6 } from "tss-react/mui";
|
|
7112
|
-
import { jsx as
|
|
7147
|
+
import { jsx as jsx109, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
7113
7148
|
var LSwitch = ({
|
|
7114
7149
|
checked,
|
|
7115
7150
|
labelOn,
|
|
@@ -7117,7 +7152,7 @@ var LSwitch = ({
|
|
|
7117
7152
|
handleChange,
|
|
7118
7153
|
classes,
|
|
7119
7154
|
disabled
|
|
7120
|
-
}) => /* @__PURE__ */
|
|
7155
|
+
}) => /* @__PURE__ */ jsx109("div", { className: classes.c_switch, children: /* @__PURE__ */ jsxs73(
|
|
7121
7156
|
Grid2,
|
|
7122
7157
|
{
|
|
7123
7158
|
component: "label",
|
|
@@ -7127,8 +7162,8 @@ var LSwitch = ({
|
|
|
7127
7162
|
alignItems: "center"
|
|
7128
7163
|
},
|
|
7129
7164
|
children: [
|
|
7130
|
-
labelOff && /* @__PURE__ */
|
|
7131
|
-
/* @__PURE__ */
|
|
7165
|
+
labelOff && /* @__PURE__ */ jsx109(Grid2, { children: labelOff }),
|
|
7166
|
+
/* @__PURE__ */ jsx109(Grid2, { children: /* @__PURE__ */ jsx109(
|
|
7132
7167
|
Switch,
|
|
7133
7168
|
{
|
|
7134
7169
|
checked,
|
|
@@ -7137,7 +7172,7 @@ var LSwitch = ({
|
|
|
7137
7172
|
disabled
|
|
7138
7173
|
}
|
|
7139
7174
|
) }),
|
|
7140
|
-
labelOn && /* @__PURE__ */
|
|
7175
|
+
labelOn && /* @__PURE__ */ jsx109(Grid2, { children: labelOn })
|
|
7141
7176
|
]
|
|
7142
7177
|
}
|
|
7143
7178
|
) });
|
|
@@ -7165,7 +7200,7 @@ var Switch_default = memo20(LabelledSwitch);
|
|
|
7165
7200
|
import { memo as memo21 } from "react";
|
|
7166
7201
|
import { TableCell, TableHead, TableRow, TableSortLabel } from "@mui/material";
|
|
7167
7202
|
import { makeStyles as makeStyles44 } from "tss-react/mui";
|
|
7168
|
-
import { jsx as
|
|
7203
|
+
import { jsx as jsx110, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
7169
7204
|
var useStyles44 = makeStyles44()(() => ({
|
|
7170
7205
|
root: {
|
|
7171
7206
|
backgroundColor: colors.neutral100,
|
|
@@ -7199,7 +7234,7 @@ var SmartTableHeader = (props) => {
|
|
|
7199
7234
|
const createSortHandler = (property) => (event) => {
|
|
7200
7235
|
onRequestSort?.(event, property);
|
|
7201
7236
|
};
|
|
7202
|
-
return /* @__PURE__ */
|
|
7237
|
+
return /* @__PURE__ */ jsx110(TableHead, { className: classes.root, children: /* @__PURE__ */ jsx110(TableRow, { children: props.headCells.map((headCell) => /* @__PURE__ */ jsx110(
|
|
7203
7238
|
TableCell,
|
|
7204
7239
|
{
|
|
7205
7240
|
className: classes.containerTh,
|
|
@@ -7213,7 +7248,7 @@ var SmartTableHeader = (props) => {
|
|
|
7213
7248
|
onClick: createSortHandler(headCell.id),
|
|
7214
7249
|
children: [
|
|
7215
7250
|
headCell.label,
|
|
7216
|
-
orderBy === headCell.id ? /* @__PURE__ */
|
|
7251
|
+
orderBy === headCell.id ? /* @__PURE__ */ jsx110("span", { className: classes.visuallyHidden, children: order === "desc" ? "sorted descending" : "sorted ascending" }) : null
|
|
7217
7252
|
]
|
|
7218
7253
|
}
|
|
7219
7254
|
)
|
|
@@ -7277,8 +7312,8 @@ function calculateRowsPerPage(rowHeight) {
|
|
|
7277
7312
|
|
|
7278
7313
|
// src/components/Table/TableLoading.tsx
|
|
7279
7314
|
import { Box as Box29, Skeleton as Skeleton2 } from "@mui/material";
|
|
7280
|
-
import { jsx as
|
|
7281
|
-
var TableLoading = ({ rowsPerPage = 0, rowHeight }) => /* @__PURE__ */
|
|
7315
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
7316
|
+
var TableLoading = ({ rowsPerPage = 0, rowHeight }) => /* @__PURE__ */ jsx111(Box29, { children: Array.from({ length: rowsPerPage }).map((x, i) => /* @__PURE__ */ jsx111(
|
|
7282
7317
|
Skeleton2,
|
|
7283
7318
|
{
|
|
7284
7319
|
animation: "pulse",
|
|
@@ -7291,7 +7326,7 @@ var TableLoading = ({ rowsPerPage = 0, rowHeight }) => /* @__PURE__ */ jsx110(Bo
|
|
|
7291
7326
|
var TableLoading_default = TableLoading;
|
|
7292
7327
|
|
|
7293
7328
|
// src/components/Table/Table.tsx
|
|
7294
|
-
import { jsx as
|
|
7329
|
+
import { jsx as jsx112, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
7295
7330
|
var useStyles45 = makeStyles45()(() => ({
|
|
7296
7331
|
root: {
|
|
7297
7332
|
height: "calc(100vh - 262px)",
|
|
@@ -7369,24 +7404,24 @@ var Table = ({
|
|
|
7369
7404
|
);
|
|
7370
7405
|
const rowsComponents = rows.map((row) => {
|
|
7371
7406
|
if (RenderItem) {
|
|
7372
|
-
return /* @__PURE__ */
|
|
7407
|
+
return /* @__PURE__ */ jsx112(RenderItem, { ...row }, row.id);
|
|
7373
7408
|
}
|
|
7374
|
-
return /* @__PURE__ */
|
|
7409
|
+
return /* @__PURE__ */ jsx112(TableRow2, { hover: true, onClick: () => onRowClick?.(row), children: headCells?.map((column) => /* @__PURE__ */ jsx112(TableCell2, { children: row[column.id] }, column.id)) }, row.id);
|
|
7375
7410
|
});
|
|
7376
7411
|
if (emptyRows > 0 && rowsPerPage > emptyRows) {
|
|
7377
7412
|
rowsComponents.push(
|
|
7378
|
-
/* @__PURE__ */
|
|
7413
|
+
/* @__PURE__ */ jsx112(TableRow2, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ jsx112(TableCell2, { colSpan: 8 }) }, uuidv4())
|
|
7379
7414
|
);
|
|
7380
7415
|
}
|
|
7381
7416
|
return rowsComponents;
|
|
7382
7417
|
};
|
|
7383
|
-
return /* @__PURE__ */
|
|
7384
|
-
/* @__PURE__ */
|
|
7418
|
+
return /* @__PURE__ */ jsx112(Paper10, { className: classes.root, children: /* @__PURE__ */ jsx112(Box30, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx112(TableLoading_default, { rowHeight, rowsPerPage }) : /* @__PURE__ */ jsx112(TableContainer, { className: classes.container, children: /* @__PURE__ */ jsxs75(MUITable, { size: "medium", stickyHeader: true, children: [
|
|
7419
|
+
/* @__PURE__ */ jsx112(TableHead2, { className: classes.header, children: /* @__PURE__ */ jsx112(TableRow2, { children: headCells?.map((headCell) => /* @__PURE__ */ jsx112(
|
|
7385
7420
|
TableCell2,
|
|
7386
7421
|
{
|
|
7387
7422
|
align: "left",
|
|
7388
7423
|
sortDirection: orderBy === headCell.id ? order : void 0,
|
|
7389
|
-
children: /* @__PURE__ */
|
|
7424
|
+
children: /* @__PURE__ */ jsx112(
|
|
7390
7425
|
TableSortLabel2,
|
|
7391
7426
|
{
|
|
7392
7427
|
active: orderBy === headCell.id,
|
|
@@ -7400,7 +7435,7 @@ var Table = ({
|
|
|
7400
7435
|
)) }) }),
|
|
7401
7436
|
/* @__PURE__ */ jsxs75(TableBody, { children: [
|
|
7402
7437
|
getTableRows(),
|
|
7403
|
-
rowsPerPage === emptyRows && /* @__PURE__ */
|
|
7438
|
+
rowsPerPage === emptyRows && /* @__PURE__ */ jsx112(TableRow2, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ jsx112(TableCell2, { colSpan: 8, align: "center", children: "Nothing to display" }) })
|
|
7404
7439
|
] })
|
|
7405
7440
|
] }) }) }) });
|
|
7406
7441
|
};
|
|
@@ -7421,7 +7456,7 @@ import { v4 as uuidv42 } from "uuid";
|
|
|
7421
7456
|
// src/components/Table/TableEmptyResult.tsx
|
|
7422
7457
|
import { TableCell as TableCell3, TableRow as TableRow3, Typography as Typography25 } from "@mui/material";
|
|
7423
7458
|
import { makeStyles as makeStyles46 } from "tss-react/mui";
|
|
7424
|
-
import { jsx as
|
|
7459
|
+
import { jsx as jsx113, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
7425
7460
|
var useStyles46 = makeStyles46()(() => ({
|
|
7426
7461
|
tableCellIcon: { padding: 24, height: "calc(100vh - 320px)" },
|
|
7427
7462
|
tableCellDefault: { padding: 24 }
|
|
@@ -7432,11 +7467,11 @@ var TableEmptyResult = ({
|
|
|
7432
7467
|
}
|
|
7433
7468
|
}) => {
|
|
7434
7469
|
const { classes } = useStyles46();
|
|
7435
|
-
return showClearFilterButton ? /* @__PURE__ */
|
|
7436
|
-
/* @__PURE__ */
|
|
7437
|
-
/* @__PURE__ */
|
|
7438
|
-
/* @__PURE__ */
|
|
7439
|
-
/* @__PURE__ */
|
|
7470
|
+
return showClearFilterButton ? /* @__PURE__ */ jsx113(TableRow3, { children: /* @__PURE__ */ jsxs76(TableCell3, { className: classes.tableCellIcon, colSpan: 8, align: "center", children: [
|
|
7471
|
+
/* @__PURE__ */ jsx113(EmptyGlassIcon_default, {}),
|
|
7472
|
+
/* @__PURE__ */ jsx113(Typography25, { variant: "h6", children: "No results found." }),
|
|
7473
|
+
/* @__PURE__ */ jsx113(Typography25, { variant: "subtitle1", children: "Search without applied filters?" }),
|
|
7474
|
+
/* @__PURE__ */ jsx113(
|
|
7440
7475
|
FilledButton_default,
|
|
7441
7476
|
{
|
|
7442
7477
|
copy: "Search",
|
|
@@ -7445,7 +7480,7 @@ var TableEmptyResult = ({
|
|
|
7445
7480
|
onClick: handleClickOnClearFiltersButton
|
|
7446
7481
|
}
|
|
7447
7482
|
)
|
|
7448
|
-
] }) }) : /* @__PURE__ */
|
|
7483
|
+
] }) }) : /* @__PURE__ */ jsx113(TableRow3, { children: /* @__PURE__ */ jsx113(
|
|
7449
7484
|
TableCell3,
|
|
7450
7485
|
{
|
|
7451
7486
|
className: classes.tableCellDefault,
|
|
@@ -7458,7 +7493,7 @@ var TableEmptyResult = ({
|
|
|
7458
7493
|
var TableEmptyResult_default = TableEmptyResult;
|
|
7459
7494
|
|
|
7460
7495
|
// src/components/Table/TableDesktop.tsx
|
|
7461
|
-
import { Fragment as Fragment12, jsx as
|
|
7496
|
+
import { Fragment as Fragment12, jsx as jsx114, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
7462
7497
|
var useStyles47 = makeStyles47()(() => ({
|
|
7463
7498
|
root: {
|
|
7464
7499
|
justifyContent: "space-between",
|
|
@@ -7521,7 +7556,7 @@ var TableDesktop = ({
|
|
|
7521
7556
|
updateSort(property, orderDir);
|
|
7522
7557
|
};
|
|
7523
7558
|
const emptyRows = rowsPerPage - data.length;
|
|
7524
|
-
return /* @__PURE__ */
|
|
7559
|
+
return /* @__PURE__ */ jsx114("div", { className: classes.root, style: { height }, children: /* @__PURE__ */ jsx114(Paper11, { className: classes.paper, children: isLoading ? /* @__PURE__ */ jsx114("div", { children: [...Array(Math.floor(rowsPerPage))].map(() => /* @__PURE__ */ jsx114(
|
|
7525
7560
|
Skeleton3,
|
|
7526
7561
|
{
|
|
7527
7562
|
animation: "pulse",
|
|
@@ -7531,14 +7566,14 @@ var TableDesktop = ({
|
|
|
7531
7566
|
},
|
|
7532
7567
|
Math.random()
|
|
7533
7568
|
)) }) : /* @__PURE__ */ jsxs77(Fragment12, { children: [
|
|
7534
|
-
/* @__PURE__ */
|
|
7569
|
+
/* @__PURE__ */ jsx114(TableContainer2, { className: classes.container, children: /* @__PURE__ */ jsxs77(
|
|
7535
7570
|
Table2,
|
|
7536
7571
|
{
|
|
7537
7572
|
"aria-labelledby": "tableTitle",
|
|
7538
7573
|
"aria-label": "sticky table",
|
|
7539
7574
|
stickyHeader: true,
|
|
7540
7575
|
children: [
|
|
7541
|
-
/* @__PURE__ */
|
|
7576
|
+
/* @__PURE__ */ jsx114(
|
|
7542
7577
|
SmartTableHeader_default,
|
|
7543
7578
|
{
|
|
7544
7579
|
headCells,
|
|
@@ -7548,14 +7583,14 @@ var TableDesktop = ({
|
|
|
7548
7583
|
}
|
|
7549
7584
|
),
|
|
7550
7585
|
/* @__PURE__ */ jsxs77(TableBody2, { children: [
|
|
7551
|
-
stableSort2(data, getSorting2(order, orderBy)).slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map((item, index) => /* @__PURE__ */
|
|
7586
|
+
stableSort2(data, getSorting2(order, orderBy)).slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map((item, index) => /* @__PURE__ */ jsx114(
|
|
7552
7587
|
RenderItem,
|
|
7553
7588
|
{
|
|
7554
7589
|
...{ ...item, index, deleteItem }
|
|
7555
7590
|
},
|
|
7556
7591
|
item[keyField] || uuidv42()
|
|
7557
7592
|
)),
|
|
7558
|
-
rowsPerPage === emptyRows && /* @__PURE__ */
|
|
7593
|
+
rowsPerPage === emptyRows && /* @__PURE__ */ jsx114(
|
|
7559
7594
|
TableEmptyResult_default,
|
|
7560
7595
|
{
|
|
7561
7596
|
showClearFilterButton,
|
|
@@ -7576,7 +7611,7 @@ import { memo as memo22, useEffect as useEffect10, useState as useState18 } from
|
|
|
7576
7611
|
import { ImportExport as ImportExportIcon } from "@mui/icons-material";
|
|
7577
7612
|
import { TableCell as TableCell4, TableHead as TableHead3, TableRow as TableRow4, TableSortLabel as TableSortLabel3 } from "@mui/material";
|
|
7578
7613
|
import { makeStyles as makeStyles48 } from "tss-react/mui";
|
|
7579
|
-
import { jsx as
|
|
7614
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
7580
7615
|
var useStyles48 = makeStyles48()(() => ({
|
|
7581
7616
|
sortLabel: {
|
|
7582
7617
|
"& .MuiTableSortLabel-icon": {
|
|
@@ -7621,7 +7656,7 @@ var TableHeader = ({ cells, onSort = null }) => {
|
|
|
7621
7656
|
});
|
|
7622
7657
|
setSortableCells(sortedCells);
|
|
7623
7658
|
};
|
|
7624
|
-
return /* @__PURE__ */
|
|
7659
|
+
return /* @__PURE__ */ jsx115(TableHead3, { children: /* @__PURE__ */ jsx115(TableRow4, { children: sortableCells.map((cell, key) => /* @__PURE__ */ jsx115(TableCell4, { children: cell.isSortable ? /* @__PURE__ */ jsx115(
|
|
7625
7660
|
TableSortLabel3,
|
|
7626
7661
|
{
|
|
7627
7662
|
className: classes.sortLabel,
|
|
@@ -7637,7 +7672,7 @@ var TableHeader_default = memo22(TableHeader);
|
|
|
7637
7672
|
// src/components/TextDivider/TextDivider.tsx
|
|
7638
7673
|
import { Box as Box31, Typography as Typography26, Divider as Divider9, Button as Button13 } from "@mui/material";
|
|
7639
7674
|
import { makeStyles as makeStyles49 } from "tss-react/mui";
|
|
7640
|
-
import { jsx as
|
|
7675
|
+
import { jsx as jsx116, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
7641
7676
|
var useStyles49 = makeStyles49()(() => ({
|
|
7642
7677
|
icon: {
|
|
7643
7678
|
fontSize: 20
|
|
@@ -7682,10 +7717,10 @@ var TextDivider = ({
|
|
|
7682
7717
|
justifyContent: "space-between",
|
|
7683
7718
|
className: classes.container,
|
|
7684
7719
|
children: [
|
|
7685
|
-
/* @__PURE__ */
|
|
7686
|
-
/* @__PURE__ */
|
|
7687
|
-
Icon3 && iconPosition === "left" && /* @__PURE__ */
|
|
7688
|
-
/* @__PURE__ */
|
|
7720
|
+
/* @__PURE__ */ jsx116(Divider9, { className: classes.leftDivider }),
|
|
7721
|
+
/* @__PURE__ */ jsx116(Button13, { onClick, disabled: !onClick, className: classes.button, children: /* @__PURE__ */ jsxs78(Box31, { className: classes.center, children: [
|
|
7722
|
+
Icon3 && iconPosition === "left" && /* @__PURE__ */ jsx116(Icon3, { className: classes.icon, style: { color: iconColor } }),
|
|
7723
|
+
/* @__PURE__ */ jsx116(
|
|
7689
7724
|
Typography26,
|
|
7690
7725
|
{
|
|
7691
7726
|
color: "textSecondary",
|
|
@@ -7694,9 +7729,9 @@ var TextDivider = ({
|
|
|
7694
7729
|
children: title
|
|
7695
7730
|
}
|
|
7696
7731
|
),
|
|
7697
|
-
Icon3 && iconPosition === "right" && /* @__PURE__ */
|
|
7732
|
+
Icon3 && iconPosition === "right" && /* @__PURE__ */ jsx116(Icon3, { className: classes.icon, style: { color: iconColor } })
|
|
7698
7733
|
] }) }),
|
|
7699
|
-
/* @__PURE__ */
|
|
7734
|
+
/* @__PURE__ */ jsx116(Divider9, { className: classes.rightDivider })
|
|
7700
7735
|
]
|
|
7701
7736
|
}
|
|
7702
7737
|
);
|
|
@@ -7708,8 +7743,7 @@ import { DateRangePicker } from "react-dates";
|
|
|
7708
7743
|
import { makeStyles as makeStyles50 } from "tss-react/mui";
|
|
7709
7744
|
import "react-dates/initialize";
|
|
7710
7745
|
import "react-dates/lib/css/_datepicker.css";
|
|
7711
|
-
import
|
|
7712
|
-
import { jsx as jsx116 } from "react/jsx-runtime";
|
|
7746
|
+
import { jsx as jsx117 } from "react/jsx-runtime";
|
|
7713
7747
|
var useStyles50 = makeStyles50()((theme) => ({
|
|
7714
7748
|
wrapper: {
|
|
7715
7749
|
"& .DateRangePicker": {
|
|
@@ -7723,7 +7757,8 @@ var useStyles50 = makeStyles50()((theme) => ({
|
|
|
7723
7757
|
"& .DateRangePickerInput": {
|
|
7724
7758
|
backgroundColor: "transparent",
|
|
7725
7759
|
color: theme.palette.mode === "dark" ? "theme.palette.common.white" : theme.palette.text.primary,
|
|
7726
|
-
borderRadius: 4
|
|
7760
|
+
borderRadius: 4,
|
|
7761
|
+
paddingTop: "2px"
|
|
7727
7762
|
},
|
|
7728
7763
|
"& .DateInput": {
|
|
7729
7764
|
backgroundColor: theme.palette.mode === "dark" ? theme.palette.grey[900] : colors.neutral100,
|
|
@@ -7803,8 +7838,8 @@ var ThemedDateRangePicker = ({
|
|
|
7803
7838
|
className,
|
|
7804
7839
|
...props
|
|
7805
7840
|
}) => {
|
|
7806
|
-
const { classes } = useStyles50();
|
|
7807
|
-
return /* @__PURE__ */
|
|
7841
|
+
const { classes, cx } = useStyles50();
|
|
7842
|
+
return /* @__PURE__ */ jsx117("div", { className: cx(classes.wrapper, className), children: /* @__PURE__ */ jsx117(DateRangePicker, { ...props }) });
|
|
7808
7843
|
};
|
|
7809
7844
|
var ThemedDateRangePicker_default = ThemedDateRangePicker;
|
|
7810
7845
|
|
|
@@ -7812,7 +7847,7 @@ var ThemedDateRangePicker_default = ThemedDateRangePicker;
|
|
|
7812
7847
|
import { memo as memo23 } from "react";
|
|
7813
7848
|
import { AppBar as AppBar2, Box as Box32, Toolbar as Toolbar2 } from "@mui/material";
|
|
7814
7849
|
import { makeStyles as makeStyles51 } from "tss-react/mui";
|
|
7815
|
-
import { jsx as
|
|
7850
|
+
import { jsx as jsx118, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
7816
7851
|
var useStyles51 = makeStyles51()((theme) => ({
|
|
7817
7852
|
menuButton: {
|
|
7818
7853
|
color: theme.palette.primary.contrastText
|
|
@@ -7852,8 +7887,8 @@ var TheToolbar = ({
|
|
|
7852
7887
|
}) => {
|
|
7853
7888
|
const { classes } = useStyles51();
|
|
7854
7889
|
return /* @__PURE__ */ jsxs79(Box32, { children: [
|
|
7855
|
-
/* @__PURE__ */
|
|
7856
|
-
/* @__PURE__ */
|
|
7890
|
+
/* @__PURE__ */ jsx118(AppBar2, { children: /* @__PURE__ */ jsxs79(Toolbar2, { className: classes.topBar, children: [
|
|
7891
|
+
/* @__PURE__ */ jsx118(
|
|
7857
7892
|
RoundButton_default,
|
|
7858
7893
|
{
|
|
7859
7894
|
className: classes.menuButton,
|
|
@@ -7862,7 +7897,7 @@ var TheToolbar = ({
|
|
|
7862
7897
|
onClick: handleOpen
|
|
7863
7898
|
}
|
|
7864
7899
|
),
|
|
7865
|
-
/* @__PURE__ */
|
|
7900
|
+
/* @__PURE__ */ jsx118(
|
|
7866
7901
|
CompanyLogo_default,
|
|
7867
7902
|
{
|
|
7868
7903
|
size: "small",
|
|
@@ -7872,7 +7907,7 @@ var TheToolbar = ({
|
|
|
7872
7907
|
}
|
|
7873
7908
|
)
|
|
7874
7909
|
] }) }),
|
|
7875
|
-
/* @__PURE__ */
|
|
7910
|
+
/* @__PURE__ */ jsx118(Box32, { className: classes.offset }),
|
|
7876
7911
|
LeftDrawer2
|
|
7877
7912
|
] });
|
|
7878
7913
|
};
|
|
@@ -7880,20 +7915,20 @@ var TheToolbar_default = memo23(TheToolbar);
|
|
|
7880
7915
|
|
|
7881
7916
|
// src/components/ToastMessage/ToastMessage.tsx
|
|
7882
7917
|
import { Alert as MuiAlert, Snackbar } from "@mui/material";
|
|
7883
|
-
import { jsx as
|
|
7918
|
+
import { jsx as jsx119 } from "react/jsx-runtime";
|
|
7884
7919
|
var ToastMessage = ({
|
|
7885
7920
|
toastType,
|
|
7886
7921
|
toastMessage,
|
|
7887
7922
|
open,
|
|
7888
7923
|
onClose
|
|
7889
|
-
}) => /* @__PURE__ */
|
|
7924
|
+
}) => /* @__PURE__ */ jsx119(
|
|
7890
7925
|
Snackbar,
|
|
7891
7926
|
{
|
|
7892
7927
|
open,
|
|
7893
7928
|
autoHideDuration: 1500,
|
|
7894
7929
|
onClose,
|
|
7895
7930
|
anchorOrigin: { vertical: "top", horizontal: "right" },
|
|
7896
|
-
children: /* @__PURE__ */
|
|
7931
|
+
children: /* @__PURE__ */ jsx119(
|
|
7897
7932
|
MuiAlert,
|
|
7898
7933
|
{
|
|
7899
7934
|
elevation: 6,
|
|
@@ -7930,7 +7965,7 @@ import {
|
|
|
7930
7965
|
Fade as Fade2
|
|
7931
7966
|
} from "@mui/material";
|
|
7932
7967
|
import { makeStyles as makeStyles52 } from "tss-react/mui";
|
|
7933
|
-
import { jsx as
|
|
7968
|
+
import { jsx as jsx120, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
7934
7969
|
var useStyles52 = makeStyles52()((theme) => ({
|
|
7935
7970
|
paper: {
|
|
7936
7971
|
padding: theme.spacing(2)
|
|
@@ -7960,7 +7995,7 @@ var TwoButtonDialog = ({
|
|
|
7960
7995
|
cancelButton
|
|
7961
7996
|
}) => {
|
|
7962
7997
|
const { classes } = useStyles52();
|
|
7963
|
-
return /* @__PURE__ */
|
|
7998
|
+
return /* @__PURE__ */ jsx120(
|
|
7964
7999
|
Dialog5,
|
|
7965
8000
|
{
|
|
7966
8001
|
open,
|
|
@@ -7972,9 +8007,9 @@ var TwoButtonDialog = ({
|
|
|
7972
8007
|
BackdropProps: {
|
|
7973
8008
|
timeout: 500
|
|
7974
8009
|
},
|
|
7975
|
-
children: /* @__PURE__ */
|
|
8010
|
+
children: /* @__PURE__ */ jsx120(Fade2, { in: open, children: /* @__PURE__ */ jsxs80(Paper12, { className: classes.paper, children: [
|
|
7976
8011
|
/* @__PURE__ */ jsxs80(Box33, { className: classes.mb, children: [
|
|
7977
|
-
/* @__PURE__ */
|
|
8012
|
+
/* @__PURE__ */ jsx120(Typography27, { variant: "h5", component: "div", children: /* @__PURE__ */ jsx120(
|
|
7978
8013
|
Box33,
|
|
7979
8014
|
{
|
|
7980
8015
|
sx: {
|
|
@@ -7991,15 +8026,15 @@ var TwoButtonDialog = ({
|
|
|
7991
8026
|
fontWeight: 600
|
|
7992
8027
|
},
|
|
7993
8028
|
children: [
|
|
7994
|
-
subtitle1 && /* @__PURE__ */
|
|
7995
|
-
subtitle2 && /* @__PURE__ */
|
|
8029
|
+
subtitle1 && /* @__PURE__ */ jsx120(Typography27, { variant: "subtitle1", children: subtitle1 }),
|
|
8030
|
+
subtitle2 && /* @__PURE__ */ jsx120(Typography27, { variant: "subtitle1", children: subtitle2 })
|
|
7996
8031
|
]
|
|
7997
8032
|
}
|
|
7998
8033
|
)
|
|
7999
8034
|
] }),
|
|
8000
|
-
/* @__PURE__ */
|
|
8035
|
+
/* @__PURE__ */ jsx120(Divider10, {}),
|
|
8001
8036
|
/* @__PURE__ */ jsxs80(Box33, { className: classes.buttonContainer, children: [
|
|
8002
|
-
/* @__PURE__ */
|
|
8037
|
+
/* @__PURE__ */ jsx120(
|
|
8003
8038
|
FilledButton_default,
|
|
8004
8039
|
{
|
|
8005
8040
|
copy: cancelLabel,
|
|
@@ -8012,7 +8047,7 @@ var TwoButtonDialog = ({
|
|
|
8012
8047
|
}
|
|
8013
8048
|
}
|
|
8014
8049
|
),
|
|
8015
|
-
/* @__PURE__ */
|
|
8050
|
+
/* @__PURE__ */ jsx120(
|
|
8016
8051
|
FilledButton_default,
|
|
8017
8052
|
{
|
|
8018
8053
|
color: "primary",
|
|
@@ -8021,17 +8056,42 @@ var TwoButtonDialog = ({
|
|
|
8021
8056
|
}
|
|
8022
8057
|
)
|
|
8023
8058
|
] }),
|
|
8024
|
-
/* @__PURE__ */
|
|
8059
|
+
/* @__PURE__ */ jsx120(Loading_default, { isLoading: dialogLoading })
|
|
8025
8060
|
] }) })
|
|
8026
8061
|
}
|
|
8027
8062
|
);
|
|
8028
8063
|
};
|
|
8029
8064
|
var TwoButtonDialog_default = TwoButtonDialog;
|
|
8065
|
+
|
|
8066
|
+
// src/components/icons/IconChart.tsx
|
|
8067
|
+
import { jsx as jsx121 } from "react/jsx-runtime";
|
|
8068
|
+
var SvgIconChart = (props) => {
|
|
8069
|
+
const { fill } = props;
|
|
8070
|
+
return /* @__PURE__ */ jsx121(
|
|
8071
|
+
"svg",
|
|
8072
|
+
{
|
|
8073
|
+
width: "20",
|
|
8074
|
+
height: "20",
|
|
8075
|
+
viewBox: "0 0 20 20",
|
|
8076
|
+
fill: "none",
|
|
8077
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8078
|
+
...props,
|
|
8079
|
+
children: /* @__PURE__ */ jsx121(
|
|
8080
|
+
"path",
|
|
8081
|
+
{
|
|
8082
|
+
d: "M2.49967 11.6667L2.91634 11.725L6.72467 7.91667C6.57467 7.375 6.71634 6.75833 7.15801 6.325C7.80801 5.66667 8.85801 5.66667 9.50801 6.325C9.94967 6.75833 10.0913 7.375 9.94134 7.91667L12.083 10.0583L12.4997 10C12.6497 10 12.7913 10 12.9163 10.0583L15.8913 7.08333C15.833 6.95833 15.833 6.81667 15.833 6.66667C15.833 6.22464 16.0086 5.80072 16.3212 5.48816C16.6337 5.17559 17.0576 5 17.4997 5C17.9417 5 18.3656 5.17559 18.6782 5.48816C18.9907 5.80072 19.1663 6.22464 19.1663 6.66667C19.1663 7.10869 18.9907 7.53262 18.6782 7.84518C18.3656 8.15774 17.9417 8.33333 17.4997 8.33333C17.3497 8.33333 17.208 8.33333 17.083 8.275L14.108 11.25C14.1663 11.375 14.1663 11.5167 14.1663 11.6667C14.1663 12.1087 13.9907 12.5326 13.6782 12.8452C13.3656 13.1577 12.9417 13.3333 12.4997 13.3333C12.0576 13.3333 11.6337 13.1577 11.3212 12.8452C11.0086 12.5326 10.833 12.1087 10.833 11.6667L10.8913 11.25L8.74967 9.10833C8.48301 9.16667 8.18301 9.16667 7.91634 9.10833L4.10801 12.9167L4.16634 13.3333C4.16634 13.7754 3.99075 14.1993 3.67819 14.5118C3.36563 14.8244 2.9417 15 2.49967 15C2.05765 15 1.63372 14.8244 1.32116 14.5118C1.0086 14.1993 0.833008 13.7754 0.833008 13.3333C0.833008 12.8913 1.0086 12.4674 1.32116 12.1548C1.63372 11.8423 2.05765 11.6667 2.49967 11.6667Z",
|
|
8083
|
+
fill: fill ?? "#1976D2"
|
|
8084
|
+
}
|
|
8085
|
+
)
|
|
8086
|
+
}
|
|
8087
|
+
);
|
|
8088
|
+
};
|
|
8089
|
+
var IconChart_default = SvgIconChart;
|
|
8030
8090
|
export {
|
|
8031
8091
|
AlertDialog_default as AlertDialog,
|
|
8032
8092
|
AlertDialogFullScreen_default as AlertDialogFullScreen,
|
|
8033
8093
|
AppLabel_default as AppLabel,
|
|
8034
|
-
|
|
8094
|
+
Autocomplete_default as Autocomplete,
|
|
8035
8095
|
BackHeader_default as BackHeader,
|
|
8036
8096
|
BottomBar_default as BottomBar,
|
|
8037
8097
|
BoxButton_default as BoxButton,
|
|
@@ -8056,6 +8116,8 @@ export {
|
|
|
8056
8116
|
FilterSimpleSelector_default as FilterSimpleSelector,
|
|
8057
8117
|
FixedFooter_default as FixedFooter,
|
|
8058
8118
|
Header_default as Header,
|
|
8119
|
+
IconChart_default as IconChart,
|
|
8120
|
+
IconCompare_default as IconCompare,
|
|
8059
8121
|
ImageButton_default as ImageButton,
|
|
8060
8122
|
LeftDrawer_default as LeftDrawer,
|
|
8061
8123
|
VirtualizedList as List,
|