@natoora-libs/core 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/index.cjs +827 -763
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.cts +7 -3
- package/dist/components/index.d.ts +7 -3
- package/dist/components/index.js +691 -629
- package/dist/components/index.js.map +1 -1
- package/package.json +10 -11
|
@@ -344,6 +344,8 @@ __export(components_exports, {
|
|
|
344
344
|
FilterSimpleSelector: () => FilterSimpleSelector_default,
|
|
345
345
|
FixedFooter: () => FixedFooter_default,
|
|
346
346
|
Header: () => Header_default,
|
|
347
|
+
IconChart: () => IconChart_default,
|
|
348
|
+
IconCompare: () => IconCompare_default,
|
|
347
349
|
ImageButton: () => ImageButton_default,
|
|
348
350
|
LeftDrawer: () => LeftDrawer_default,
|
|
349
351
|
List: () => VirtualizedList,
|
|
@@ -815,7 +817,34 @@ var import_react = require("react");
|
|
|
815
817
|
var import_icons_material2 = require("@mui/icons-material");
|
|
816
818
|
var import_material5 = require("@mui/material");
|
|
817
819
|
var import_mui4 = require("tss-react/mui");
|
|
820
|
+
|
|
821
|
+
// src/components/icons/IconCompare.tsx
|
|
818
822
|
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
823
|
+
var SvgIconCompare = (props) => {
|
|
824
|
+
const { fill } = props;
|
|
825
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
826
|
+
"svg",
|
|
827
|
+
{
|
|
828
|
+
width: "24",
|
|
829
|
+
height: "24",
|
|
830
|
+
viewBox: "0 0 18 18",
|
|
831
|
+
fill: "none",
|
|
832
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
833
|
+
...props,
|
|
834
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
835
|
+
"path",
|
|
836
|
+
{
|
|
837
|
+
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",
|
|
838
|
+
fill: fill ?? "#1976D2"
|
|
839
|
+
}
|
|
840
|
+
)
|
|
841
|
+
}
|
|
842
|
+
);
|
|
843
|
+
};
|
|
844
|
+
var IconCompare_default = SvgIconCompare;
|
|
845
|
+
|
|
846
|
+
// src/components/Buttons/ExtendedButton/ExtendedButton.tsx
|
|
847
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
819
848
|
var useStyles4 = (0, import_mui4.makeStyles)()((theme) => ({
|
|
820
849
|
default: {
|
|
821
850
|
boxShadow: "none",
|
|
@@ -905,10 +934,11 @@ var ExtendedButton = ({
|
|
|
905
934
|
upload: import_icons_material2.CloudUpload,
|
|
906
935
|
refresh: import_icons_material2.Refresh,
|
|
907
936
|
download: import_icons_material2.GetApp,
|
|
908
|
-
publish: import_icons_material2.Publish
|
|
937
|
+
publish: import_icons_material2.Publish,
|
|
938
|
+
compare: IconCompare_default
|
|
909
939
|
};
|
|
910
940
|
const IconComponent = icons2[type || "add"];
|
|
911
|
-
return /* @__PURE__ */ (0,
|
|
941
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_material5.Tooltip, { title: tooltip, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_material5.Box, { children: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
912
942
|
import_material5.Button,
|
|
913
943
|
{
|
|
914
944
|
className: cx(classes[color], className),
|
|
@@ -921,15 +951,22 @@ var ExtendedButton = ({
|
|
|
921
951
|
type: buttonType,
|
|
922
952
|
variant,
|
|
923
953
|
children: [
|
|
924
|
-
type ? /* @__PURE__ */ (0,
|
|
925
|
-
|
|
954
|
+
type ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
955
|
+
IconComponent,
|
|
956
|
+
{
|
|
957
|
+
fontSize: "small",
|
|
958
|
+
className: classes.icon,
|
|
959
|
+
fill: colors.muiPrimary
|
|
960
|
+
}
|
|
961
|
+
) : null,
|
|
962
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
926
963
|
"div",
|
|
927
964
|
{
|
|
928
965
|
className: classes.copy,
|
|
929
966
|
style: { color: copyColor || "inherit" },
|
|
930
967
|
children: [
|
|
931
968
|
copy,
|
|
932
|
-
/* @__PURE__ */ (0,
|
|
969
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { children: subcopy })
|
|
933
970
|
]
|
|
934
971
|
}
|
|
935
972
|
)
|
|
@@ -940,7 +977,7 @@ var ExtendedButton = ({
|
|
|
940
977
|
var ExtendedButton_default = (0, import_react.memo)(ExtendedButton);
|
|
941
978
|
|
|
942
979
|
// src/components/BottomBar/BottomBar.tsx
|
|
943
|
-
var
|
|
980
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
944
981
|
var useStyles5 = (0, import_mui5.makeStyles)()((theme) => ({
|
|
945
982
|
footer: {
|
|
946
983
|
backgroundColor: colors.neutral100,
|
|
@@ -962,7 +999,7 @@ var BottomBar = ({
|
|
|
962
999
|
onRefreshClick = null
|
|
963
1000
|
}) => {
|
|
964
1001
|
const { classes, cx } = useStyles5();
|
|
965
|
-
return /* @__PURE__ */ (0,
|
|
1002
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_material6.Paper, { className: cx(classes.footer, className), elevation: 1, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
966
1003
|
import_material6.Box,
|
|
967
1004
|
{
|
|
968
1005
|
className: classes.insideWrapper,
|
|
@@ -972,7 +1009,7 @@ var BottomBar = ({
|
|
|
972
1009
|
justifyContent: "space-between"
|
|
973
1010
|
},
|
|
974
1011
|
children: [
|
|
975
|
-
onRefreshClick && /* @__PURE__ */ (0,
|
|
1012
|
+
onRefreshClick && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
976
1013
|
ExtendedButton_default,
|
|
977
1014
|
{
|
|
978
1015
|
className: classes.button,
|
|
@@ -997,7 +1034,7 @@ var import_green = __toESM(require("@mui/material/colors/green"), 1);
|
|
|
997
1034
|
var import_orange = __toESM(require("@mui/material/colors/orange"), 1);
|
|
998
1035
|
var import_red = __toESM(require("@mui/material/colors/red"), 1);
|
|
999
1036
|
var import_mui6 = require("tss-react/mui");
|
|
1000
|
-
var
|
|
1037
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
1001
1038
|
var useStyles6 = (0, import_mui6.makeStyles)()((theme) => ({
|
|
1002
1039
|
boxTab: {
|
|
1003
1040
|
minWidth: 130,
|
|
@@ -1044,15 +1081,15 @@ var useStyles6 = (0, import_mui6.makeStyles)()((theme) => ({
|
|
|
1044
1081
|
var BoxButton = (props) => {
|
|
1045
1082
|
const { classes } = useStyles6();
|
|
1046
1083
|
const { label, onClick, main, extra, borderColor } = props;
|
|
1047
|
-
return /* @__PURE__ */ (0,
|
|
1084
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
1048
1085
|
import_material7.ButtonBase,
|
|
1049
1086
|
{
|
|
1050
1087
|
component: "button",
|
|
1051
1088
|
className: [classes.boxTab, classes[borderColor]].join(" "),
|
|
1052
1089
|
onClick,
|
|
1053
1090
|
children: [
|
|
1054
|
-
/* @__PURE__ */ (0,
|
|
1055
|
-
/* @__PURE__ */ (0,
|
|
1091
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_material7.Typography, { variant: "button", children: label }),
|
|
1092
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
1056
1093
|
import_material7.Grid2,
|
|
1057
1094
|
{
|
|
1058
1095
|
container: true,
|
|
@@ -1062,8 +1099,8 @@ var BoxButton = (props) => {
|
|
|
1062
1099
|
alignItems: "center"
|
|
1063
1100
|
},
|
|
1064
1101
|
children: [
|
|
1065
|
-
/* @__PURE__ */ (0,
|
|
1066
|
-
/* @__PURE__ */ (0,
|
|
1102
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_material7.Grid2, { size: 9, children: main }),
|
|
1103
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_material7.Grid2, { className: classes.c_box_button__extra, size: 3, children: extra })
|
|
1067
1104
|
]
|
|
1068
1105
|
}
|
|
1069
1106
|
)
|
|
@@ -1077,7 +1114,7 @@ var BoxButton_default = (0, import_react2.memo)(BoxButton);
|
|
|
1077
1114
|
var import_react3 = require("react");
|
|
1078
1115
|
var import_material8 = require("@mui/material");
|
|
1079
1116
|
var import_mui7 = require("tss-react/mui");
|
|
1080
|
-
var
|
|
1117
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
1081
1118
|
var useStyles7 = (0, import_mui7.makeStyles)()((theme) => ({
|
|
1082
1119
|
button: {
|
|
1083
1120
|
background: colors.default,
|
|
@@ -1146,7 +1183,7 @@ var FilledButton = ({
|
|
|
1146
1183
|
variant = "contained"
|
|
1147
1184
|
}) => {
|
|
1148
1185
|
const { classes, cx } = useStyles7();
|
|
1149
|
-
return /* @__PURE__ */ (0,
|
|
1186
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
1150
1187
|
import_material8.Button,
|
|
1151
1188
|
{
|
|
1152
1189
|
autoFocus,
|
|
@@ -1161,7 +1198,7 @@ var FilledButton = ({
|
|
|
1161
1198
|
variant,
|
|
1162
1199
|
children: [
|
|
1163
1200
|
copy,
|
|
1164
|
-
isLoading && /* @__PURE__ */ (0,
|
|
1201
|
+
isLoading && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1165
1202
|
import_material8.CircularProgress,
|
|
1166
1203
|
{
|
|
1167
1204
|
className: classes.loadingText,
|
|
@@ -1179,7 +1216,7 @@ var FilledButton_default = (0, import_react3.memo)(FilledButton);
|
|
|
1179
1216
|
var import_react4 = require("react");
|
|
1180
1217
|
var import_material9 = require("@mui/material");
|
|
1181
1218
|
var import_mui8 = require("tss-react/mui");
|
|
1182
|
-
var
|
|
1219
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
1183
1220
|
var FilledButtonLg = ({
|
|
1184
1221
|
classes,
|
|
1185
1222
|
disabled,
|
|
@@ -1189,14 +1226,14 @@ var FilledButtonLg = ({
|
|
|
1189
1226
|
handleClick,
|
|
1190
1227
|
loading = false,
|
|
1191
1228
|
loadingProps
|
|
1192
|
-
}) => /* @__PURE__ */ (0,
|
|
1229
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1193
1230
|
import_material9.Button,
|
|
1194
1231
|
{
|
|
1195
1232
|
variant,
|
|
1196
1233
|
className: classes[color],
|
|
1197
1234
|
onClick: handleClick,
|
|
1198
1235
|
disabled: disabled || loading,
|
|
1199
|
-
children: /* @__PURE__ */ (0,
|
|
1236
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
1200
1237
|
import_material9.Box,
|
|
1201
1238
|
{
|
|
1202
1239
|
sx: {
|
|
@@ -1206,7 +1243,7 @@ var FilledButtonLg = ({
|
|
|
1206
1243
|
},
|
|
1207
1244
|
children: [
|
|
1208
1245
|
copy,
|
|
1209
|
-
loading && /* @__PURE__ */ (0,
|
|
1246
|
+
loading && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1210
1247
|
import_material9.CircularProgress,
|
|
1211
1248
|
{
|
|
1212
1249
|
color: loadingProps?.color || "inherit",
|
|
@@ -1286,7 +1323,7 @@ var FilledButtonLg_default = (0, import_react4.memo)(ActionButtonLg);
|
|
|
1286
1323
|
var import_react5 = require("react");
|
|
1287
1324
|
var import_material10 = require("@mui/material");
|
|
1288
1325
|
var import_mui9 = require("tss-react/mui");
|
|
1289
|
-
var
|
|
1326
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
1290
1327
|
var useStyles8 = (0, import_mui9.makeStyles)()(() => ({
|
|
1291
1328
|
root: {
|
|
1292
1329
|
display: "flex",
|
|
@@ -1315,7 +1352,7 @@ var ImageButton = (props) => {
|
|
|
1315
1352
|
const e = { target: { value } };
|
|
1316
1353
|
onClick(e);
|
|
1317
1354
|
};
|
|
1318
|
-
return /* @__PURE__ */ (0,
|
|
1355
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(import_material10.Button, { onClick: handleClick, className: classes.image, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("img", { className: classes.imageSrc, src, alt: "a_image" }) });
|
|
1319
1356
|
};
|
|
1320
1357
|
var ImageButton_default = (0, import_react5.memo)(ImageButton);
|
|
1321
1358
|
|
|
@@ -1323,7 +1360,7 @@ var ImageButton_default = (0, import_react5.memo)(ImageButton);
|
|
|
1323
1360
|
var import_icons_material3 = require("@mui/icons-material");
|
|
1324
1361
|
var import_material11 = require("@mui/material");
|
|
1325
1362
|
var import_mui10 = require("tss-react/mui");
|
|
1326
|
-
var
|
|
1363
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
1327
1364
|
var useStyles9 = (0, import_mui10.makeStyles)()((theme) => ({
|
|
1328
1365
|
add: {
|
|
1329
1366
|
backgroundColor: colors.neutral100
|
|
@@ -1359,10 +1396,10 @@ var SquareButton = ({
|
|
|
1359
1396
|
}) => {
|
|
1360
1397
|
const { classes, cx } = useStyles9();
|
|
1361
1398
|
const icon = {
|
|
1362
|
-
add: /* @__PURE__ */ (0,
|
|
1363
|
-
forward: /* @__PURE__ */ (0,
|
|
1399
|
+
add: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_icons_material3.Add, { className: classes.icon }),
|
|
1400
|
+
forward: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_icons_material3.ChevronRight, { className: classes.icon })
|
|
1364
1401
|
};
|
|
1365
|
-
return /* @__PURE__ */ (0,
|
|
1402
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1366
1403
|
import_material11.Button,
|
|
1367
1404
|
{
|
|
1368
1405
|
className: cx(
|
|
@@ -1374,9 +1411,9 @@ var SquareButton = ({
|
|
|
1374
1411
|
disableElevation: hasContentLeftSide,
|
|
1375
1412
|
onClick,
|
|
1376
1413
|
variant: "contained",
|
|
1377
|
-
children: /* @__PURE__ */ (0,
|
|
1414
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("span", { className: classes.textWrapper, children: [
|
|
1378
1415
|
icon[type],
|
|
1379
|
-
/* @__PURE__ */ (0,
|
|
1416
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_material11.Typography, { className: classes.text, variant: "button", children })
|
|
1380
1417
|
] })
|
|
1381
1418
|
}
|
|
1382
1419
|
);
|
|
@@ -1386,7 +1423,7 @@ var SquareButton_default = SquareButton;
|
|
|
1386
1423
|
// src/components/Buttons/UploadButton/UploadButton.tsx
|
|
1387
1424
|
var import_react6 = require("react");
|
|
1388
1425
|
var import_material12 = require("@mui/material");
|
|
1389
|
-
var
|
|
1426
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
1390
1427
|
var UploadButton = (0, import_react6.forwardRef)(
|
|
1391
1428
|
(props, ref) => {
|
|
1392
1429
|
const [file, setFile] = (0, import_react6.useState)();
|
|
@@ -1396,7 +1433,7 @@ var UploadButton = (0, import_react6.forwardRef)(
|
|
|
1396
1433
|
setFile(fileItem);
|
|
1397
1434
|
props.onChange?.(e);
|
|
1398
1435
|
};
|
|
1399
|
-
return /* @__PURE__ */ (0,
|
|
1436
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
1400
1437
|
import_material12.Box,
|
|
1401
1438
|
{
|
|
1402
1439
|
sx: {
|
|
@@ -1405,7 +1442,7 @@ var UploadButton = (0, import_react6.forwardRef)(
|
|
|
1405
1442
|
alignItems: "center"
|
|
1406
1443
|
},
|
|
1407
1444
|
children: [
|
|
1408
|
-
/* @__PURE__ */ (0,
|
|
1445
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1409
1446
|
"input",
|
|
1410
1447
|
{
|
|
1411
1448
|
...props,
|
|
@@ -1418,7 +1455,7 @@ var UploadButton = (0, import_react6.forwardRef)(
|
|
|
1418
1455
|
style: { display: "none" }
|
|
1419
1456
|
}
|
|
1420
1457
|
),
|
|
1421
|
-
/* @__PURE__ */ (0,
|
|
1458
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1422
1459
|
ExtendedButton_default,
|
|
1423
1460
|
{
|
|
1424
1461
|
buttonType: "button",
|
|
@@ -1442,7 +1479,7 @@ var UploadButton_default = UploadButton;
|
|
|
1442
1479
|
var import_react7 = require("react");
|
|
1443
1480
|
var import_material13 = require("@mui/material");
|
|
1444
1481
|
var import_mui11 = require("tss-react/mui");
|
|
1445
|
-
var
|
|
1482
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
1446
1483
|
var useStyles10 = (0, import_mui11.makeStyles)()((theme) => ({
|
|
1447
1484
|
default: {
|
|
1448
1485
|
boxShadow: "none",
|
|
@@ -1523,7 +1560,7 @@ var OutlinedButton = ({
|
|
|
1523
1560
|
type = "button"
|
|
1524
1561
|
}) => {
|
|
1525
1562
|
const { classes, cx } = useStyles10();
|
|
1526
|
-
return /* @__PURE__ */ (0,
|
|
1563
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1527
1564
|
import_material13.Button,
|
|
1528
1565
|
{
|
|
1529
1566
|
className: cx(color ? classes[color] : classes.default, className, {
|
|
@@ -1536,7 +1573,7 @@ var OutlinedButton = ({
|
|
|
1536
1573
|
style,
|
|
1537
1574
|
type,
|
|
1538
1575
|
variant: "outlined",
|
|
1539
|
-
children: /* @__PURE__ */ (0,
|
|
1576
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
|
|
1540
1577
|
"div",
|
|
1541
1578
|
{
|
|
1542
1579
|
className: cx(classes.copy, {
|
|
@@ -1544,8 +1581,8 @@ var OutlinedButton = ({
|
|
|
1544
1581
|
}),
|
|
1545
1582
|
children: [
|
|
1546
1583
|
copy,
|
|
1547
|
-
subcopy && /* @__PURE__ */ (0,
|
|
1548
|
-
isLoading && /* @__PURE__ */ (0,
|
|
1584
|
+
subcopy && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { children: subcopy }),
|
|
1585
|
+
isLoading && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1549
1586
|
import_material13.CircularProgress,
|
|
1550
1587
|
{
|
|
1551
1588
|
className: classes.loadingIcon,
|
|
@@ -1565,8 +1602,8 @@ var OutlinedButton_default = (0, import_react7.memo)(OutlinedButton);
|
|
|
1565
1602
|
var import_react8 = require("react");
|
|
1566
1603
|
var import_material14 = require("@mui/material");
|
|
1567
1604
|
var import_mui12 = require("tss-react/mui");
|
|
1568
|
-
var
|
|
1569
|
-
var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */ (0,
|
|
1605
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
1606
|
+
var AButton = ({ classes, variant, color, copy }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_material14.Button, { variant, className: classes[color], children: copy });
|
|
1570
1607
|
var FilterButtonLg = (0, import_mui12.withStyles)(AButton, (theme) => ({
|
|
1571
1608
|
default: {
|
|
1572
1609
|
boxShadow: "none",
|
|
@@ -1631,17 +1668,17 @@ var import_material15 = require("@mui/material");
|
|
|
1631
1668
|
var import_mui13 = require("tss-react/mui");
|
|
1632
1669
|
|
|
1633
1670
|
// src/components/icons/BallsLogo.tsx
|
|
1634
|
-
var
|
|
1635
|
-
var SvgBallsLogo = (props) => /* @__PURE__ */ (0,
|
|
1636
|
-
/* @__PURE__ */ (0,
|
|
1637
|
-
/* @__PURE__ */ (0,
|
|
1638
|
-
/* @__PURE__ */ (0,
|
|
1671
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
1672
|
+
var SvgBallsLogo = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("svg", { viewBox: "0 0 1024 305.8", ...props, fill: "currentColor", children: [
|
|
1673
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("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" }),
|
|
1674
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("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" }),
|
|
1675
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("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" })
|
|
1639
1676
|
] });
|
|
1640
1677
|
var BallsLogo_default = SvgBallsLogo;
|
|
1641
1678
|
|
|
1642
1679
|
// src/components/icons/EmptyGlassIcon.tsx
|
|
1643
|
-
var
|
|
1644
|
-
var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0,
|
|
1680
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
1681
|
+
var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
1645
1682
|
"svg",
|
|
1646
1683
|
{
|
|
1647
1684
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1651,8 +1688,8 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1651
1688
|
fill: "none",
|
|
1652
1689
|
...props,
|
|
1653
1690
|
children: [
|
|
1654
|
-
/* @__PURE__ */ (0,
|
|
1655
|
-
/* @__PURE__ */ (0,
|
|
1691
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Frame", clipPath: "url(#clip0_454_24067)", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("g", { id: "Clip path group", children: [
|
|
1692
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1656
1693
|
"mask",
|
|
1657
1694
|
{
|
|
1658
1695
|
id: "mask0_454_24067",
|
|
@@ -1661,11 +1698,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1661
1698
|
y: "0",
|
|
1662
1699
|
width: "140",
|
|
1663
1700
|
height: "140",
|
|
1664
|
-
children: /* @__PURE__ */ (0,
|
|
1701
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "__lottie_element_11", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { id: "Vector", d: "M140 0H0V140H140V0Z", fill: "white" }) })
|
|
1665
1702
|
}
|
|
1666
1703
|
),
|
|
1667
|
-
/* @__PURE__ */ (0,
|
|
1668
|
-
/* @__PURE__ */ (0,
|
|
1704
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { mask: "url(#mask0_454_24067)", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("g", { id: "Clip path group_2", children: [
|
|
1705
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1669
1706
|
"mask",
|
|
1670
1707
|
{
|
|
1671
1708
|
id: "mask1_454_24067",
|
|
@@ -1674,11 +1711,11 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1674
1711
|
y: "0",
|
|
1675
1712
|
width: "140",
|
|
1676
1713
|
height: "140",
|
|
1677
|
-
children: /* @__PURE__ */ (0,
|
|
1714
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "__lottie_element_13", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { id: "Vector_2", d: "M0 0H140V140H0V0Z", fill: "white" }) })
|
|
1678
1715
|
}
|
|
1679
1716
|
),
|
|
1680
|
-
/* @__PURE__ */ (0,
|
|
1681
|
-
/* @__PURE__ */ (0,
|
|
1717
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { mask: "url(#mask1_454_24067)", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_2", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("g", { id: "Group_3", children: [
|
|
1718
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_4", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1682
1719
|
"path",
|
|
1683
1720
|
{
|
|
1684
1721
|
id: "Vector_3",
|
|
@@ -1686,7 +1723,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1686
1723
|
fill: "#B6B2D8"
|
|
1687
1724
|
}
|
|
1688
1725
|
) }),
|
|
1689
|
-
/* @__PURE__ */ (0,
|
|
1726
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_5", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1690
1727
|
"path",
|
|
1691
1728
|
{
|
|
1692
1729
|
id: "Vector_4",
|
|
@@ -1694,7 +1731,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1694
1731
|
fill: "#EECB3A"
|
|
1695
1732
|
}
|
|
1696
1733
|
) }),
|
|
1697
|
-
/* @__PURE__ */ (0,
|
|
1734
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_6", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1698
1735
|
"path",
|
|
1699
1736
|
{
|
|
1700
1737
|
id: "Vector_5",
|
|
@@ -1702,7 +1739,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1702
1739
|
fill: "#F1F1F2"
|
|
1703
1740
|
}
|
|
1704
1741
|
) }),
|
|
1705
|
-
/* @__PURE__ */ (0,
|
|
1742
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_7", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1706
1743
|
"path",
|
|
1707
1744
|
{
|
|
1708
1745
|
id: "Vector_6",
|
|
@@ -1710,7 +1747,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1710
1747
|
fill: "#EECB3A"
|
|
1711
1748
|
}
|
|
1712
1749
|
) }),
|
|
1713
|
-
/* @__PURE__ */ (0,
|
|
1750
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_8", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1714
1751
|
"path",
|
|
1715
1752
|
{
|
|
1716
1753
|
id: "Vector_7",
|
|
@@ -1718,7 +1755,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1718
1755
|
fill: "#B6B2D8"
|
|
1719
1756
|
}
|
|
1720
1757
|
) }),
|
|
1721
|
-
/* @__PURE__ */ (0,
|
|
1758
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_9", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1722
1759
|
"path",
|
|
1723
1760
|
{
|
|
1724
1761
|
id: "Vector_8",
|
|
@@ -1726,7 +1763,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1726
1763
|
fill: "#F6D977"
|
|
1727
1764
|
}
|
|
1728
1765
|
) }),
|
|
1729
|
-
/* @__PURE__ */ (0,
|
|
1766
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_10", opacity: "0.655813", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1730
1767
|
"path",
|
|
1731
1768
|
{
|
|
1732
1769
|
id: "Vector_9",
|
|
@@ -1734,7 +1771,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1734
1771
|
fill: "#B6B2D8"
|
|
1735
1772
|
}
|
|
1736
1773
|
) }),
|
|
1737
|
-
/* @__PURE__ */ (0,
|
|
1774
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_11", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1738
1775
|
"path",
|
|
1739
1776
|
{
|
|
1740
1777
|
id: "Vector_10",
|
|
@@ -1742,7 +1779,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1742
1779
|
fill: "#FFFEFF"
|
|
1743
1780
|
}
|
|
1744
1781
|
) }),
|
|
1745
|
-
/* @__PURE__ */ (0,
|
|
1782
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_12", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1746
1783
|
"path",
|
|
1747
1784
|
{
|
|
1748
1785
|
id: "Vector_11",
|
|
@@ -1750,7 +1787,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1750
1787
|
fill: "#EECB3A"
|
|
1751
1788
|
}
|
|
1752
1789
|
) }),
|
|
1753
|
-
/* @__PURE__ */ (0,
|
|
1790
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_13", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1754
1791
|
"path",
|
|
1755
1792
|
{
|
|
1756
1793
|
id: "Vector_12",
|
|
@@ -1758,8 +1795,8 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1758
1795
|
fill: "#FFFEFF"
|
|
1759
1796
|
}
|
|
1760
1797
|
) }),
|
|
1761
|
-
/* @__PURE__ */ (0,
|
|
1762
|
-
/* @__PURE__ */ (0,
|
|
1798
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("g", { id: "Group_14", children: [
|
|
1799
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_15", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1763
1800
|
"path",
|
|
1764
1801
|
{
|
|
1765
1802
|
id: "Vector_13",
|
|
@@ -1767,7 +1804,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1767
1804
|
fill: "#BF7F42"
|
|
1768
1805
|
}
|
|
1769
1806
|
) }),
|
|
1770
|
-
/* @__PURE__ */ (0,
|
|
1807
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_16", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1771
1808
|
"path",
|
|
1772
1809
|
{
|
|
1773
1810
|
id: "Vector_14",
|
|
@@ -1775,7 +1812,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1775
1812
|
fill: "#C2D1E0"
|
|
1776
1813
|
}
|
|
1777
1814
|
) }),
|
|
1778
|
-
/* @__PURE__ */ (0,
|
|
1815
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_17", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1779
1816
|
"path",
|
|
1780
1817
|
{
|
|
1781
1818
|
id: "Vector_15",
|
|
@@ -1783,7 +1820,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1783
1820
|
fill: "#D2E0EA"
|
|
1784
1821
|
}
|
|
1785
1822
|
) }),
|
|
1786
|
-
/* @__PURE__ */ (0,
|
|
1823
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_18", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1787
1824
|
"path",
|
|
1788
1825
|
{
|
|
1789
1826
|
id: "Vector_16",
|
|
@@ -1791,7 +1828,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1791
1828
|
fill: "#8EC5EA"
|
|
1792
1829
|
}
|
|
1793
1830
|
) }),
|
|
1794
|
-
/* @__PURE__ */ (0,
|
|
1831
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_19", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1795
1832
|
"path",
|
|
1796
1833
|
{
|
|
1797
1834
|
id: "Vector_17",
|
|
@@ -1799,7 +1836,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1799
1836
|
fill: "#70AFDE"
|
|
1800
1837
|
}
|
|
1801
1838
|
) }),
|
|
1802
|
-
/* @__PURE__ */ (0,
|
|
1839
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_20", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1803
1840
|
"path",
|
|
1804
1841
|
{
|
|
1805
1842
|
id: "Vector_18",
|
|
@@ -1807,7 +1844,7 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1807
1844
|
fill: "#B5713E"
|
|
1808
1845
|
}
|
|
1809
1846
|
) }),
|
|
1810
|
-
/* @__PURE__ */ (0,
|
|
1847
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("g", { id: "Group_21", opacity: "0.2", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1811
1848
|
"path",
|
|
1812
1849
|
{
|
|
1813
1850
|
id: "Vector_19",
|
|
@@ -1819,37 +1856,37 @@ var SvgEmptyGlassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs
|
|
|
1819
1856
|
] }) }) })
|
|
1820
1857
|
] }) }) })
|
|
1821
1858
|
] }) }),
|
|
1822
|
-
/* @__PURE__ */ (0,
|
|
1859
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("clipPath", { id: "clip0_454_24067", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("rect", { width: "140", height: "140", fill: "white" }) }) })
|
|
1823
1860
|
]
|
|
1824
1861
|
}
|
|
1825
1862
|
);
|
|
1826
1863
|
var EmptyGlassIcon_default = SvgEmptyGlassIcon;
|
|
1827
1864
|
|
|
1828
1865
|
// src/components/icons/IconAccount.tsx
|
|
1829
|
-
var
|
|
1830
|
-
var SvgIconAccount = (props) => /* @__PURE__ */ (0,
|
|
1831
|
-
/* @__PURE__ */ (0,
|
|
1866
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
1867
|
+
var SvgIconAccount = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1868
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1832
1869
|
"path",
|
|
1833
1870
|
{
|
|
1834
1871
|
className: "icon-account_svg__st0",
|
|
1835
1872
|
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"
|
|
1836
1873
|
}
|
|
1837
1874
|
),
|
|
1838
|
-
/* @__PURE__ */ (0,
|
|
1875
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1839
1876
|
"path",
|
|
1840
1877
|
{
|
|
1841
1878
|
className: "icon-account_svg__st0",
|
|
1842
1879
|
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"
|
|
1843
1880
|
}
|
|
1844
1881
|
),
|
|
1845
|
-
/* @__PURE__ */ (0,
|
|
1882
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1846
1883
|
"path",
|
|
1847
1884
|
{
|
|
1848
1885
|
className: "icon-account_svg__st1",
|
|
1849
1886
|
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"
|
|
1850
1887
|
}
|
|
1851
1888
|
),
|
|
1852
|
-
/* @__PURE__ */ (0,
|
|
1889
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1853
1890
|
"path",
|
|
1854
1891
|
{
|
|
1855
1892
|
className: "icon-account_svg__st1",
|
|
@@ -1860,8 +1897,8 @@ var SvgIconAccount = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("
|
|
|
1860
1897
|
var IconAccount_default = SvgIconAccount;
|
|
1861
1898
|
|
|
1862
1899
|
// src/components/icons/IconAccounts.tsx
|
|
1863
|
-
var
|
|
1864
|
-
var SvgIconAccounts = (props) => /* @__PURE__ */ (0,
|
|
1900
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
1901
|
+
var SvgIconAccounts = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
1865
1902
|
"path",
|
|
1866
1903
|
{
|
|
1867
1904
|
className: "icon-accounts_svg__st0",
|
|
@@ -1871,8 +1908,8 @@ var SvgIconAccounts = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("
|
|
|
1871
1908
|
var IconAccounts_default = SvgIconAccounts;
|
|
1872
1909
|
|
|
1873
1910
|
// src/components/icons/IconAvocado.tsx
|
|
1874
|
-
var
|
|
1875
|
-
var SvgIconAvocado = () => /* @__PURE__ */ (0,
|
|
1911
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
1912
|
+
var SvgIconAvocado = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
1876
1913
|
"svg",
|
|
1877
1914
|
{
|
|
1878
1915
|
width: "20",
|
|
@@ -1881,7 +1918,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
|
1881
1918
|
fill: "none",
|
|
1882
1919
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1883
1920
|
children: [
|
|
1884
|
-
/* @__PURE__ */ (0,
|
|
1921
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
1885
1922
|
"path",
|
|
1886
1923
|
{
|
|
1887
1924
|
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",
|
|
@@ -1890,7 +1927,7 @@ var SvgIconAvocado = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
|
1890
1927
|
strokeMiterlimit: "10"
|
|
1891
1928
|
}
|
|
1892
1929
|
),
|
|
1893
|
-
/* @__PURE__ */ (0,
|
|
1930
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
1894
1931
|
"path",
|
|
1895
1932
|
{
|
|
1896
1933
|
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",
|
|
@@ -1905,8 +1942,8 @@ var SvgIconAvocado = () => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
|
1905
1942
|
var IconAvocado_default = SvgIconAvocado;
|
|
1906
1943
|
|
|
1907
1944
|
// src/components/icons/IconBanana.tsx
|
|
1908
|
-
var
|
|
1909
|
-
var SvgIconBanana = () => /* @__PURE__ */ (0,
|
|
1945
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
1946
|
+
var SvgIconBanana = () => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
1910
1947
|
"svg",
|
|
1911
1948
|
{
|
|
1912
1949
|
width: "24",
|
|
@@ -1915,52 +1952,52 @@ var SvgIconBanana = () => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
|
1915
1952
|
fill: "none",
|
|
1916
1953
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1917
1954
|
children: [
|
|
1918
|
-
/* @__PURE__ */ (0,
|
|
1955
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("g", { clipPath: "url(#clip0_0_2321)", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1919
1956
|
"path",
|
|
1920
1957
|
{
|
|
1921
1958
|
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",
|
|
1922
1959
|
fill: colors.neutral800
|
|
1923
1960
|
}
|
|
1924
1961
|
) }),
|
|
1925
|
-
/* @__PURE__ */ (0,
|
|
1962
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("clipPath", { id: "clip0_0_2321", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("rect", { width: "24", height: "22", fill: "white" }) }) })
|
|
1926
1963
|
]
|
|
1927
1964
|
}
|
|
1928
1965
|
);
|
|
1929
1966
|
var IconBanana_default = SvgIconBanana;
|
|
1930
1967
|
|
|
1931
1968
|
// src/components/icons/IconBuying.tsx
|
|
1932
|
-
var
|
|
1933
|
-
var SvgIconBuying = (props) => /* @__PURE__ */ (0,
|
|
1934
|
-
/* @__PURE__ */ (0,
|
|
1969
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
1970
|
+
var SvgIconBuying = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
1971
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1935
1972
|
"path",
|
|
1936
1973
|
{
|
|
1937
1974
|
className: "icon-buying_svg__st0",
|
|
1938
1975
|
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"
|
|
1939
1976
|
}
|
|
1940
1977
|
),
|
|
1941
|
-
/* @__PURE__ */ (0,
|
|
1978
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1942
1979
|
"path",
|
|
1943
1980
|
{
|
|
1944
1981
|
className: "icon-buying_svg__st0",
|
|
1945
1982
|
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"
|
|
1946
1983
|
}
|
|
1947
1984
|
),
|
|
1948
|
-
/* @__PURE__ */ (0,
|
|
1985
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("circle", { className: "icon-buying_svg__st0", cx: 34.7, cy: 38.1, r: 2.6 })
|
|
1949
1986
|
] });
|
|
1950
1987
|
var IconBuying_default = SvgIconBuying;
|
|
1951
1988
|
|
|
1952
1989
|
// src/components/icons/IconContentManagement.tsx
|
|
1953
|
-
var
|
|
1954
|
-
var IconContentManagement = (props) => /* @__PURE__ */ (0,
|
|
1955
|
-
/* @__PURE__ */ (0,
|
|
1990
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
1991
|
+
var IconContentManagement = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, fill: "0000", strokeWidth: "0px", children: [
|
|
1992
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
1956
1993
|
"path",
|
|
1957
1994
|
{
|
|
1958
1995
|
className: "cls-1",
|
|
1959
1996
|
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"
|
|
1960
1997
|
}
|
|
1961
1998
|
),
|
|
1962
|
-
/* @__PURE__ */ (0,
|
|
1963
|
-
/* @__PURE__ */ (0,
|
|
1999
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("rect", { className: "cls-1", x: "21.6", y: "34.1", width: "3.6", height: "5.2" }),
|
|
2000
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
1964
2001
|
"path",
|
|
1965
2002
|
{
|
|
1966
2003
|
className: "cls-1",
|
|
@@ -1971,23 +2008,23 @@ var IconContentManagement = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.
|
|
|
1971
2008
|
var IconContentManagement_default = IconContentManagement;
|
|
1972
2009
|
|
|
1973
2010
|
// src/components/icons/IconGoodsin.tsx
|
|
1974
|
-
var
|
|
1975
|
-
var SvgIconGoodsin = (props) => /* @__PURE__ */ (0,
|
|
1976
|
-
/* @__PURE__ */ (0,
|
|
2011
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
2012
|
+
var SvgIconGoodsin = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2013
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
1977
2014
|
"path",
|
|
1978
2015
|
{
|
|
1979
2016
|
className: "icon-goodsin_svg__st0",
|
|
1980
2017
|
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"
|
|
1981
2018
|
}
|
|
1982
2019
|
),
|
|
1983
|
-
/* @__PURE__ */ (0,
|
|
2020
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
1984
2021
|
"path",
|
|
1985
2022
|
{
|
|
1986
2023
|
className: "icon-goodsin_svg__st0",
|
|
1987
2024
|
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"
|
|
1988
2025
|
}
|
|
1989
2026
|
),
|
|
1990
|
-
/* @__PURE__ */ (0,
|
|
2027
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
1991
2028
|
"path",
|
|
1992
2029
|
{
|
|
1993
2030
|
className: "icon-goodsin_svg__st0",
|
|
@@ -1998,8 +2035,8 @@ var SvgIconGoodsin = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("
|
|
|
1998
2035
|
var IconGoodsin_default = SvgIconGoodsin;
|
|
1999
2036
|
|
|
2000
2037
|
// src/components/icons/IconGrape.tsx
|
|
2001
|
-
var
|
|
2002
|
-
var SvgIconGrape = (props) => /* @__PURE__ */ (0,
|
|
2038
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
2039
|
+
var SvgIconGrape = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2003
2040
|
"svg",
|
|
2004
2041
|
{
|
|
2005
2042
|
width: "24",
|
|
@@ -2008,7 +2045,7 @@ var SvgIconGrape = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
|
2008
2045
|
fill: "none",
|
|
2009
2046
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2010
2047
|
...props,
|
|
2011
|
-
children: /* @__PURE__ */ (0,
|
|
2048
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2012
2049
|
"path",
|
|
2013
2050
|
{
|
|
2014
2051
|
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",
|
|
@@ -2020,23 +2057,23 @@ var SvgIconGrape = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
|
2020
2057
|
var IconGrape_default = SvgIconGrape;
|
|
2021
2058
|
|
|
2022
2059
|
// src/components/icons/IconHome.tsx
|
|
2023
|
-
var
|
|
2024
|
-
var SvgIconHome = (props) => /* @__PURE__ */ (0,
|
|
2025
|
-
/* @__PURE__ */ (0,
|
|
2060
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
2061
|
+
var SvgIconHome = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2062
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2026
2063
|
"path",
|
|
2027
2064
|
{
|
|
2028
2065
|
className: "icon-home_svg__st0",
|
|
2029
2066
|
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"
|
|
2030
2067
|
}
|
|
2031
2068
|
),
|
|
2032
|
-
/* @__PURE__ */ (0,
|
|
2069
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2033
2070
|
"path",
|
|
2034
2071
|
{
|
|
2035
2072
|
className: "icon-home_svg__st0",
|
|
2036
2073
|
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"
|
|
2037
2074
|
}
|
|
2038
2075
|
),
|
|
2039
|
-
/* @__PURE__ */ (0,
|
|
2076
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2040
2077
|
"path",
|
|
2041
2078
|
{
|
|
2042
2079
|
className: "icon-home_svg__st1",
|
|
@@ -2047,8 +2084,8 @@ var SvgIconHome = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("svg
|
|
|
2047
2084
|
var IconHome_default = SvgIconHome;
|
|
2048
2085
|
|
|
2049
2086
|
// src/components/icons/IconImport.tsx
|
|
2050
|
-
var
|
|
2051
|
-
var SvgIconImport = (props) => /* @__PURE__ */ (0,
|
|
2087
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
2088
|
+
var SvgIconImport = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "-8 -8 40 40", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2052
2089
|
"path",
|
|
2053
2090
|
{
|
|
2054
2091
|
className: "icon-runs_svg__st0",
|
|
@@ -2058,16 +2095,16 @@ var SvgIconImport = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("sv
|
|
|
2058
2095
|
var IconImport_default = SvgIconImport;
|
|
2059
2096
|
|
|
2060
2097
|
// src/components/icons/IconLocation.tsx
|
|
2061
|
-
var
|
|
2062
|
-
var SvgIconLocation = (props) => /* @__PURE__ */ (0,
|
|
2063
|
-
/* @__PURE__ */ (0,
|
|
2098
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
2099
|
+
var SvgIconLocation = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2100
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2064
2101
|
"path",
|
|
2065
2102
|
{
|
|
2066
2103
|
className: "icon-location_svg__st0",
|
|
2067
2104
|
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"
|
|
2068
2105
|
}
|
|
2069
2106
|
),
|
|
2070
|
-
/* @__PURE__ */ (0,
|
|
2107
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2071
2108
|
"path",
|
|
2072
2109
|
{
|
|
2073
2110
|
className: "icon-location_svg__st0",
|
|
@@ -2078,16 +2115,16 @@ var SvgIconLocation = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
|
2078
2115
|
var IconLocation_default = SvgIconLocation;
|
|
2079
2116
|
|
|
2080
2117
|
// src/components/icons/IconLogin.tsx
|
|
2081
|
-
var
|
|
2082
|
-
var SvgIconLogin = (props) => /* @__PURE__ */ (0,
|
|
2083
|
-
/* @__PURE__ */ (0,
|
|
2118
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
2119
|
+
var SvgIconLogin = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2120
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2084
2121
|
"path",
|
|
2085
2122
|
{
|
|
2086
2123
|
className: "icon-login_svg__st0",
|
|
2087
2124
|
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"
|
|
2088
2125
|
}
|
|
2089
2126
|
),
|
|
2090
|
-
/* @__PURE__ */ (0,
|
|
2127
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2091
2128
|
"path",
|
|
2092
2129
|
{
|
|
2093
2130
|
className: "icon-login_svg__st0",
|
|
@@ -2098,16 +2135,16 @@ var SvgIconLogin = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("sv
|
|
|
2098
2135
|
var IconLogin_default = SvgIconLogin;
|
|
2099
2136
|
|
|
2100
2137
|
// src/components/icons/IconNotification.tsx
|
|
2101
|
-
var
|
|
2102
|
-
var SvgIconNotification = (props) => /* @__PURE__ */ (0,
|
|
2103
|
-
/* @__PURE__ */ (0,
|
|
2138
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
2139
|
+
var SvgIconNotification = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2140
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2104
2141
|
"path",
|
|
2105
2142
|
{
|
|
2106
2143
|
className: "icon-notification_svg__st0",
|
|
2107
2144
|
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"
|
|
2108
2145
|
}
|
|
2109
2146
|
),
|
|
2110
|
-
/* @__PURE__ */ (0,
|
|
2147
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2111
2148
|
"path",
|
|
2112
2149
|
{
|
|
2113
2150
|
className: "icon-notification_svg__st0",
|
|
@@ -2118,24 +2155,24 @@ var SvgIconNotification = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.js
|
|
|
2118
2155
|
var IconNotification_default = SvgIconNotification;
|
|
2119
2156
|
|
|
2120
2157
|
// src/components/icons/IconOpsMetrics.tsx
|
|
2121
|
-
var
|
|
2122
|
-
var SvgIconOpsMetrics = (props) => /* @__PURE__ */ (0,
|
|
2123
|
-
/* @__PURE__ */ (0,
|
|
2124
|
-
/* @__PURE__ */ (0,
|
|
2158
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
2159
|
+
var SvgIconOpsMetrics = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2160
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("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" }),
|
|
2161
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("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" })
|
|
2125
2162
|
] });
|
|
2126
2163
|
var IconOpsMetrics_default = SvgIconOpsMetrics;
|
|
2127
2164
|
|
|
2128
2165
|
// src/components/icons/IconOrders.tsx
|
|
2129
|
-
var
|
|
2130
|
-
var SvgIconOrders = (props) => /* @__PURE__ */ (0,
|
|
2131
|
-
/* @__PURE__ */ (0,
|
|
2166
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
2167
|
+
var SvgIconOrders = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2168
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2132
2169
|
"path",
|
|
2133
2170
|
{
|
|
2134
2171
|
className: "icon-orders_svg__st0",
|
|
2135
2172
|
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"
|
|
2136
2173
|
}
|
|
2137
2174
|
),
|
|
2138
|
-
/* @__PURE__ */ (0,
|
|
2175
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2139
2176
|
"path",
|
|
2140
2177
|
{
|
|
2141
2178
|
className: "icon-orders_svg__st0",
|
|
@@ -2146,8 +2183,8 @@ var SvgIconOrders = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("s
|
|
|
2146
2183
|
var IconOrders_default = SvgIconOrders;
|
|
2147
2184
|
|
|
2148
2185
|
// src/components/icons/IconPhone.tsx
|
|
2149
|
-
var
|
|
2150
|
-
var SvgIconPhone = (props) => /* @__PURE__ */ (0,
|
|
2186
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
2187
|
+
var SvgIconPhone = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2151
2188
|
"path",
|
|
2152
2189
|
{
|
|
2153
2190
|
className: "icon-phone_svg__st0",
|
|
@@ -2157,30 +2194,30 @@ var SvgIconPhone = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("svg
|
|
|
2157
2194
|
var IconPhone_default = SvgIconPhone;
|
|
2158
2195
|
|
|
2159
2196
|
// src/components/icons/IconPriceList.tsx
|
|
2160
|
-
var
|
|
2161
|
-
var SvgIconPriceList = (props) => /* @__PURE__ */ (0,
|
|
2162
|
-
/* @__PURE__ */ (0,
|
|
2197
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
2198
|
+
var SvgIconPriceList = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2199
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2163
2200
|
"path",
|
|
2164
2201
|
{
|
|
2165
2202
|
className: "icon-price-list_svg__st0",
|
|
2166
2203
|
d: "M672.6 1136.6c-1.6 0-3 1.3-3 2.9s1.4 3 3 3 3-1.4 2.9-2.9c-.1-1.6-1.3-3-2.9-3zM683.4 1136.5c-1.7 0-3 1.4-3 3s1.4 3 3 3 3-1.4 3-3.1c0-1.7-1.4-2.9-3-2.9z"
|
|
2167
2204
|
}
|
|
2168
2205
|
),
|
|
2169
|
-
/* @__PURE__ */ (0,
|
|
2206
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2170
2207
|
"path",
|
|
2171
2208
|
{
|
|
2172
2209
|
className: "icon-price-list_svg__st0",
|
|
2173
2210
|
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"
|
|
2174
2211
|
}
|
|
2175
2212
|
),
|
|
2176
|
-
/* @__PURE__ */ (0,
|
|
2213
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2177
2214
|
"path",
|
|
2178
2215
|
{
|
|
2179
2216
|
className: "icon-price-list_svg__st1",
|
|
2180
2217
|
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"
|
|
2181
2218
|
}
|
|
2182
2219
|
),
|
|
2183
|
-
/* @__PURE__ */ (0,
|
|
2220
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2184
2221
|
"path",
|
|
2185
2222
|
{
|
|
2186
2223
|
className: "icon-price-list_svg__st1",
|
|
@@ -2191,16 +2228,16 @@ var SvgIconPriceList = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)
|
|
|
2191
2228
|
var IconPriceList_default = SvgIconPriceList;
|
|
2192
2229
|
|
|
2193
2230
|
// src/components/icons/IconProducts.tsx
|
|
2194
|
-
var
|
|
2195
|
-
var SvgIconProducts = (props) => /* @__PURE__ */ (0,
|
|
2196
|
-
/* @__PURE__ */ (0,
|
|
2231
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
2232
|
+
var SvgIconProducts = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2233
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2197
2234
|
"path",
|
|
2198
2235
|
{
|
|
2199
2236
|
className: "icon-products_svg__st0",
|
|
2200
2237
|
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"
|
|
2201
2238
|
}
|
|
2202
2239
|
),
|
|
2203
|
-
/* @__PURE__ */ (0,
|
|
2240
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2204
2241
|
"path",
|
|
2205
2242
|
{
|
|
2206
2243
|
className: "icon-products_svg__st0",
|
|
@@ -2211,79 +2248,79 @@ var SvgIconProducts = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
|
2211
2248
|
var IconProducts_default = SvgIconProducts;
|
|
2212
2249
|
|
|
2213
2250
|
// src/components/icons/IconPromoCode.tsx
|
|
2214
|
-
var
|
|
2215
|
-
var SvgIconPromoCode = (props) => /* @__PURE__ */ (0,
|
|
2216
|
-
/* @__PURE__ */ (0,
|
|
2251
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
2252
|
+
var SvgIconPromoCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("svg", { viewBox: "0 0 42.5 42.5", ...props, children: [
|
|
2253
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2217
2254
|
"path",
|
|
2218
2255
|
{
|
|
2219
2256
|
className: "promo_code_svg_st0",
|
|
2220
2257
|
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"
|
|
2221
2258
|
}
|
|
2222
2259
|
),
|
|
2223
|
-
/* @__PURE__ */ (0,
|
|
2260
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2224
2261
|
"path",
|
|
2225
2262
|
{
|
|
2226
2263
|
className: "promo_code_svg_st0",
|
|
2227
2264
|
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"
|
|
2228
2265
|
}
|
|
2229
2266
|
),
|
|
2230
|
-
/* @__PURE__ */ (0,
|
|
2267
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2231
2268
|
"path",
|
|
2232
2269
|
{
|
|
2233
2270
|
className: "promo_code_svg_st0",
|
|
2234
2271
|
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"
|
|
2235
2272
|
}
|
|
2236
2273
|
),
|
|
2237
|
-
/* @__PURE__ */ (0,
|
|
2274
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2238
2275
|
"path",
|
|
2239
2276
|
{
|
|
2240
2277
|
className: "promo_code_svg_st0",
|
|
2241
2278
|
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"
|
|
2242
2279
|
}
|
|
2243
2280
|
),
|
|
2244
|
-
/* @__PURE__ */ (0,
|
|
2281
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2245
2282
|
"path",
|
|
2246
2283
|
{
|
|
2247
2284
|
className: "promo_code_svg_st0",
|
|
2248
2285
|
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"
|
|
2249
2286
|
}
|
|
2250
2287
|
),
|
|
2251
|
-
/* @__PURE__ */ (0,
|
|
2288
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2252
2289
|
"path",
|
|
2253
2290
|
{
|
|
2254
2291
|
className: "promo_code_svg_st0",
|
|
2255
2292
|
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"
|
|
2256
2293
|
}
|
|
2257
2294
|
),
|
|
2258
|
-
/* @__PURE__ */ (0,
|
|
2295
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2259
2296
|
"path",
|
|
2260
2297
|
{
|
|
2261
2298
|
className: "promo_code_svg_st0",
|
|
2262
2299
|
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"
|
|
2263
2300
|
}
|
|
2264
2301
|
),
|
|
2265
|
-
/* @__PURE__ */ (0,
|
|
2302
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2266
2303
|
"path",
|
|
2267
2304
|
{
|
|
2268
2305
|
className: "promo_code_svg_st0",
|
|
2269
2306
|
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"
|
|
2270
2307
|
}
|
|
2271
2308
|
),
|
|
2272
|
-
/* @__PURE__ */ (0,
|
|
2309
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2273
2310
|
"path",
|
|
2274
2311
|
{
|
|
2275
2312
|
className: "promo_code_svg_st0",
|
|
2276
2313
|
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"
|
|
2277
2314
|
}
|
|
2278
2315
|
),
|
|
2279
|
-
/* @__PURE__ */ (0,
|
|
2316
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2280
2317
|
"path",
|
|
2281
2318
|
{
|
|
2282
2319
|
className: "promo_code_svg_st0",
|
|
2283
2320
|
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"
|
|
2284
2321
|
}
|
|
2285
2322
|
),
|
|
2286
|
-
/* @__PURE__ */ (0,
|
|
2323
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2287
2324
|
"path",
|
|
2288
2325
|
{
|
|
2289
2326
|
className: "promo_code_svg_st0",
|
|
@@ -2294,8 +2331,8 @@ var SvgIconPromoCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)
|
|
|
2294
2331
|
var IconPromoCode_default = SvgIconPromoCode;
|
|
2295
2332
|
|
|
2296
2333
|
// src/components/icons/IconQc.tsx
|
|
2297
|
-
var
|
|
2298
|
-
var SvgIconQc = (props) => /* @__PURE__ */ (0,
|
|
2334
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
2335
|
+
var SvgIconQc = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2299
2336
|
"path",
|
|
2300
2337
|
{
|
|
2301
2338
|
className: "icon-qc_svg__st0",
|
|
@@ -2305,8 +2342,8 @@ var SvgIconQc = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("svg",
|
|
|
2305
2342
|
var IconQc_default = SvgIconQc;
|
|
2306
2343
|
|
|
2307
2344
|
// src/components/icons/IconReports.tsx
|
|
2308
|
-
var
|
|
2309
|
-
var SvgIconReports = (props) => /* @__PURE__ */ (0,
|
|
2345
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
2346
|
+
var SvgIconReports = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2310
2347
|
"path",
|
|
2311
2348
|
{
|
|
2312
2349
|
className: "icon-reports_svg__st0",
|
|
@@ -2316,23 +2353,23 @@ var SvgIconReports = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("s
|
|
|
2316
2353
|
var IconReports_default = SvgIconReports;
|
|
2317
2354
|
|
|
2318
2355
|
// src/components/icons/IconRetail.tsx
|
|
2319
|
-
var
|
|
2320
|
-
var SvgIconRetail = (props) => /* @__PURE__ */ (0,
|
|
2321
|
-
/* @__PURE__ */ (0,
|
|
2356
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
2357
|
+
var SvgIconRetail = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2358
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2322
2359
|
"path",
|
|
2323
2360
|
{
|
|
2324
2361
|
className: "icon-retail_svg__st0",
|
|
2325
2362
|
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"
|
|
2326
2363
|
}
|
|
2327
2364
|
),
|
|
2328
|
-
/* @__PURE__ */ (0,
|
|
2365
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2329
2366
|
"path",
|
|
2330
2367
|
{
|
|
2331
2368
|
className: "icon-retail_svg__st0",
|
|
2332
2369
|
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"
|
|
2333
2370
|
}
|
|
2334
2371
|
),
|
|
2335
|
-
/* @__PURE__ */ (0,
|
|
2372
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2336
2373
|
"path",
|
|
2337
2374
|
{
|
|
2338
2375
|
className: "icon-retail_svg__st0",
|
|
@@ -2343,8 +2380,8 @@ var SvgIconRetail = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("s
|
|
|
2343
2380
|
var IconRetail_default = SvgIconRetail;
|
|
2344
2381
|
|
|
2345
2382
|
// src/components/icons/IconRuns.tsx
|
|
2346
|
-
var
|
|
2347
|
-
var SvgIconRuns = (props) => /* @__PURE__ */ (0,
|
|
2383
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
2384
|
+
var SvgIconRuns = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2348
2385
|
"path",
|
|
2349
2386
|
{
|
|
2350
2387
|
className: "icon-runs_svg__st0",
|
|
@@ -2354,23 +2391,23 @@ var SvgIconRuns = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("svg"
|
|
|
2354
2391
|
var IconRuns_default = SvgIconRuns;
|
|
2355
2392
|
|
|
2356
2393
|
// src/components/icons/IconScales.tsx
|
|
2357
|
-
var
|
|
2358
|
-
var SvgIconScales = (props) => /* @__PURE__ */ (0,
|
|
2359
|
-
/* @__PURE__ */ (0,
|
|
2394
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
2395
|
+
var SvgIconScales = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2396
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2360
2397
|
"path",
|
|
2361
2398
|
{
|
|
2362
2399
|
className: "icon-scales_svg__st0",
|
|
2363
2400
|
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"
|
|
2364
2401
|
}
|
|
2365
2402
|
),
|
|
2366
|
-
/* @__PURE__ */ (0,
|
|
2403
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2367
2404
|
"path",
|
|
2368
2405
|
{
|
|
2369
2406
|
className: "icon-scales_svg__st0",
|
|
2370
2407
|
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"
|
|
2371
2408
|
}
|
|
2372
2409
|
),
|
|
2373
|
-
/* @__PURE__ */ (0,
|
|
2410
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2374
2411
|
"path",
|
|
2375
2412
|
{
|
|
2376
2413
|
className: "icon-scales_svg__st1",
|
|
@@ -2381,8 +2418,8 @@ var SvgIconScales = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("s
|
|
|
2381
2418
|
var IconScales_default = SvgIconScales;
|
|
2382
2419
|
|
|
2383
2420
|
// src/components/icons/IconSearchCategories.tsx
|
|
2384
|
-
var
|
|
2385
|
-
var SvgIconSearchCategories = (props) => /* @__PURE__ */ (0,
|
|
2421
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
2422
|
+
var SvgIconSearchCategories = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2386
2423
|
"path",
|
|
2387
2424
|
{
|
|
2388
2425
|
className: "icon-search-categories_svg__st0",
|
|
@@ -2392,8 +2429,8 @@ var SvgIconSearchCategories = (props) => /* @__PURE__ */ (0, import_jsx_runtime4
|
|
|
2392
2429
|
var IconSearchCategories_default = SvgIconSearchCategories;
|
|
2393
2430
|
|
|
2394
2431
|
// src/components/icons/IconSetting.tsx
|
|
2395
|
-
var
|
|
2396
|
-
var SvgIconSetting = (props) => /* @__PURE__ */ (0,
|
|
2432
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
2433
|
+
var SvgIconSetting = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2397
2434
|
"path",
|
|
2398
2435
|
{
|
|
2399
2436
|
className: "icon-setting_svg__st0",
|
|
@@ -2403,8 +2440,8 @@ var SvgIconSetting = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("s
|
|
|
2403
2440
|
var IconSetting_default = SvgIconSetting;
|
|
2404
2441
|
|
|
2405
2442
|
// src/components/icons/IconSnail.tsx
|
|
2406
|
-
var
|
|
2407
|
-
var SvgIconSnail = (props) => /* @__PURE__ */ (0,
|
|
2443
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
2444
|
+
var SvgIconSnail = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2408
2445
|
"svg",
|
|
2409
2446
|
{
|
|
2410
2447
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2412,36 +2449,36 @@ var SvgIconSnail = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
|
2412
2449
|
height: "24",
|
|
2413
2450
|
viewBox: "0 0 24 24",
|
|
2414
2451
|
...props,
|
|
2415
|
-
children: /* @__PURE__ */ (0,
|
|
2452
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("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" })
|
|
2416
2453
|
}
|
|
2417
2454
|
);
|
|
2418
2455
|
var IconSnail_default = SvgIconSnail;
|
|
2419
2456
|
|
|
2420
2457
|
// src/components/icons/IconSpecialPrice.tsx
|
|
2421
|
-
var
|
|
2422
|
-
var SvgIconSpecialPrice = (props) => /* @__PURE__ */ (0,
|
|
2423
|
-
/* @__PURE__ */ (0,
|
|
2458
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
2459
|
+
var SvgIconSpecialPrice = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2460
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2424
2461
|
"path",
|
|
2425
2462
|
{
|
|
2426
2463
|
className: "icon-special-price_svg__st0",
|
|
2427
2464
|
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"
|
|
2428
2465
|
}
|
|
2429
2466
|
),
|
|
2430
|
-
/* @__PURE__ */ (0,
|
|
2467
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2431
2468
|
"path",
|
|
2432
2469
|
{
|
|
2433
2470
|
className: "icon-special-price_svg__st0",
|
|
2434
2471
|
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"
|
|
2435
2472
|
}
|
|
2436
2473
|
),
|
|
2437
|
-
/* @__PURE__ */ (0,
|
|
2474
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2438
2475
|
"path",
|
|
2439
2476
|
{
|
|
2440
2477
|
className: "icon-special-price_svg__st0",
|
|
2441
2478
|
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"
|
|
2442
2479
|
}
|
|
2443
2480
|
),
|
|
2444
|
-
/* @__PURE__ */ (0,
|
|
2481
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2445
2482
|
"path",
|
|
2446
2483
|
{
|
|
2447
2484
|
className: "icon-special-price_svg__st0",
|
|
@@ -2452,16 +2489,16 @@ var SvgIconSpecialPrice = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.js
|
|
|
2452
2489
|
var IconSpecialPrice_default = SvgIconSpecialPrice;
|
|
2453
2490
|
|
|
2454
2491
|
// src/components/icons/IconStock.tsx
|
|
2455
|
-
var
|
|
2456
|
-
var SvgIconStock = (props) => /* @__PURE__ */ (0,
|
|
2457
|
-
/* @__PURE__ */ (0,
|
|
2492
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
2493
|
+
var SvgIconStock = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2494
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2458
2495
|
"path",
|
|
2459
2496
|
{
|
|
2460
2497
|
className: "icon-stock_svg__st0",
|
|
2461
2498
|
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"
|
|
2462
2499
|
}
|
|
2463
2500
|
),
|
|
2464
|
-
/* @__PURE__ */ (0,
|
|
2501
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2465
2502
|
"path",
|
|
2466
2503
|
{
|
|
2467
2504
|
className: "icon-stock_svg__st0",
|
|
@@ -2472,8 +2509,8 @@ var SvgIconStock = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("sv
|
|
|
2472
2509
|
var IconStock_default = SvgIconStock;
|
|
2473
2510
|
|
|
2474
2511
|
// src/components/icons/IconStrawberry.tsx
|
|
2475
|
-
var
|
|
2476
|
-
var SvgIconStrawberry = () => /* @__PURE__ */ (0,
|
|
2512
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
2513
|
+
var SvgIconStrawberry = () => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2477
2514
|
"svg",
|
|
2478
2515
|
{
|
|
2479
2516
|
width: "24",
|
|
@@ -2481,7 +2518,7 @@ var SvgIconStrawberry = () => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
|
2481
2518
|
viewBox: "0 0 24 24",
|
|
2482
2519
|
fill: "none",
|
|
2483
2520
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2484
|
-
children: /* @__PURE__ */ (0,
|
|
2521
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2485
2522
|
"path",
|
|
2486
2523
|
{
|
|
2487
2524
|
fillRule: "evenodd",
|
|
@@ -2495,23 +2532,23 @@ var SvgIconStrawberry = () => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
|
2495
2532
|
var IconStrawberry_default = SvgIconStrawberry;
|
|
2496
2533
|
|
|
2497
2534
|
// src/components/icons/IconSupplier.tsx
|
|
2498
|
-
var
|
|
2499
|
-
var SvgIconSupplier = (props) => /* @__PURE__ */ (0,
|
|
2500
|
-
/* @__PURE__ */ (0,
|
|
2535
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
2536
|
+
var SvgIconSupplier = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2537
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2501
2538
|
"path",
|
|
2502
2539
|
{
|
|
2503
2540
|
className: "icon-supplier_svg__st0",
|
|
2504
2541
|
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"
|
|
2505
2542
|
}
|
|
2506
2543
|
),
|
|
2507
|
-
/* @__PURE__ */ (0,
|
|
2544
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2508
2545
|
"path",
|
|
2509
2546
|
{
|
|
2510
2547
|
className: "icon-supplier_svg__st0",
|
|
2511
2548
|
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"
|
|
2512
2549
|
}
|
|
2513
2550
|
),
|
|
2514
|
-
/* @__PURE__ */ (0,
|
|
2551
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2515
2552
|
"path",
|
|
2516
2553
|
{
|
|
2517
2554
|
className: "icon-supplier_svg__st0",
|
|
@@ -2522,45 +2559,45 @@ var SvgIconSupplier = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
|
|
|
2522
2559
|
var IconSupplier_default = SvgIconSupplier;
|
|
2523
2560
|
|
|
2524
2561
|
// src/components/icons/IconSupplierPrices.tsx
|
|
2525
|
-
var
|
|
2526
|
-
var SvgIconSupplierPrices = (props) => /* @__PURE__ */ (0,
|
|
2527
|
-
/* @__PURE__ */ (0,
|
|
2562
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
2563
|
+
var SvgIconSupplierPrices = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("svg", { viewBox: "0 0 55 56.7", ...props, children: [
|
|
2564
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2528
2565
|
"path",
|
|
2529
2566
|
{
|
|
2530
2567
|
className: "icon-supplier-prices_svg__st0",
|
|
2531
2568
|
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"
|
|
2532
2569
|
}
|
|
2533
2570
|
),
|
|
2534
|
-
/* @__PURE__ */ (0,
|
|
2571
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2535
2572
|
"path",
|
|
2536
2573
|
{
|
|
2537
2574
|
className: "icon-supplier-prices_svg__st0",
|
|
2538
2575
|
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"
|
|
2539
2576
|
}
|
|
2540
2577
|
),
|
|
2541
|
-
/* @__PURE__ */ (0,
|
|
2578
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2542
2579
|
"path",
|
|
2543
2580
|
{
|
|
2544
2581
|
className: "icon-supplier-prices_svg__st0",
|
|
2545
2582
|
d: "M21.5 19.9c-.3 0-.6.2-.6.5-.1.4.1.7.4.8h.2c.3 0 .6-.2.6-.5.1-.4-.1-.7-.4-.8h-.2z"
|
|
2546
2583
|
}
|
|
2547
2584
|
),
|
|
2548
|
-
/* @__PURE__ */ (0,
|
|
2549
|
-
/* @__PURE__ */ (0,
|
|
2585
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("g", { children: [
|
|
2586
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2550
2587
|
"path",
|
|
2551
2588
|
{
|
|
2552
2589
|
className: "icon-supplier-prices_svg__st0",
|
|
2553
2590
|
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"
|
|
2554
2591
|
}
|
|
2555
2592
|
),
|
|
2556
|
-
/* @__PURE__ */ (0,
|
|
2593
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2557
2594
|
"path",
|
|
2558
2595
|
{
|
|
2559
2596
|
className: "icon-supplier-prices_svg__st0",
|
|
2560
2597
|
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"
|
|
2561
2598
|
}
|
|
2562
2599
|
),
|
|
2563
|
-
/* @__PURE__ */ (0,
|
|
2600
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2564
2601
|
"path",
|
|
2565
2602
|
{
|
|
2566
2603
|
className: "icon-supplier-prices_svg__st0",
|
|
@@ -2572,18 +2609,18 @@ var SvgIconSupplierPrices = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.
|
|
|
2572
2609
|
var IconSupplierPrices_default = SvgIconSupplierPrices;
|
|
2573
2610
|
|
|
2574
2611
|
// src/components/icons/IconUserManagement.tsx
|
|
2575
|
-
var
|
|
2576
|
-
var SvgIconUserManagement = () => /* @__PURE__ */ (0,
|
|
2577
|
-
/* @__PURE__ */ (0,
|
|
2578
|
-
/* @__PURE__ */ (0,
|
|
2579
|
-
/* @__PURE__ */ (0,
|
|
2580
|
-
/* @__PURE__ */ (0,
|
|
2612
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
2613
|
+
var SvgIconUserManagement = () => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 55 56.7", children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("g", { id: "Layer_1", children: [
|
|
2614
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("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" }),
|
|
2615
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("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" }),
|
|
2616
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("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" }),
|
|
2617
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("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" })
|
|
2581
2618
|
] }) }) });
|
|
2582
2619
|
var IconUserManagement_default = SvgIconUserManagement;
|
|
2583
2620
|
|
|
2584
2621
|
// src/components/icons/IconVkc.tsx
|
|
2585
|
-
var
|
|
2586
|
-
var SvgIconVkc = (props) => /* @__PURE__ */ (0,
|
|
2622
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
2623
|
+
var SvgIconVkc = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("svg", { viewBox: "0 0 55 56.7", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2587
2624
|
"path",
|
|
2588
2625
|
{
|
|
2589
2626
|
className: "icon-vkc_svg__st0",
|
|
@@ -2593,16 +2630,16 @@ var SvgIconVkc = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("svg",
|
|
|
2593
2630
|
var IconVkc_default = SvgIconVkc;
|
|
2594
2631
|
|
|
2595
2632
|
// src/components/icons/SamsaraLogo.tsx
|
|
2596
|
-
var
|
|
2597
|
-
var SvgSamsaraLogo = (props) => /* @__PURE__ */ (0,
|
|
2598
|
-
/* @__PURE__ */ (0,
|
|
2633
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
2634
|
+
var SvgSamsaraLogo = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("svg", { viewBox: "0 0 36 52.4", ...props, children: [
|
|
2635
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2599
2636
|
"path",
|
|
2600
2637
|
{
|
|
2601
2638
|
className: "samsara_logo_svg__st0",
|
|
2602
2639
|
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"
|
|
2603
2640
|
}
|
|
2604
2641
|
),
|
|
2605
|
-
/* @__PURE__ */ (0,
|
|
2642
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2606
2643
|
"path",
|
|
2607
2644
|
{
|
|
2608
2645
|
className: "samsara_logo_svg__st0",
|
|
@@ -2655,8 +2692,8 @@ var icons = {
|
|
|
2655
2692
|
var icons_default = icons;
|
|
2656
2693
|
|
|
2657
2694
|
// src/components/icons/IconAirplane.tsx
|
|
2658
|
-
var
|
|
2659
|
-
var SvgIconAirplane = (props) => /* @__PURE__ */ (0,
|
|
2695
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
2696
|
+
var SvgIconAirplane = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2660
2697
|
"svg",
|
|
2661
2698
|
{
|
|
2662
2699
|
width: "24",
|
|
@@ -2665,7 +2702,7 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
|
2665
2702
|
fill: "none",
|
|
2666
2703
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2667
2704
|
...props,
|
|
2668
|
-
children: /* @__PURE__ */ (0,
|
|
2705
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2669
2706
|
"path",
|
|
2670
2707
|
{
|
|
2671
2708
|
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",
|
|
@@ -2677,8 +2714,8 @@ var SvgIconAirplane = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
|
2677
2714
|
var IconAirplane_default = SvgIconAirplane;
|
|
2678
2715
|
|
|
2679
2716
|
// src/components/icons/IconBicycle.tsx
|
|
2680
|
-
var
|
|
2681
|
-
var SvgIconBicycle = () => /* @__PURE__ */ (0,
|
|
2717
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
2718
|
+
var SvgIconBicycle = () => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2682
2719
|
"svg",
|
|
2683
2720
|
{
|
|
2684
2721
|
width: "24",
|
|
@@ -2686,7 +2723,7 @@ var SvgIconBicycle = () => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
|
2686
2723
|
viewBox: "0 0 24 24",
|
|
2687
2724
|
fill: "none",
|
|
2688
2725
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2689
|
-
children: /* @__PURE__ */ (0,
|
|
2726
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2690
2727
|
"path",
|
|
2691
2728
|
{
|
|
2692
2729
|
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",
|
|
@@ -2698,8 +2735,8 @@ var SvgIconBicycle = () => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
|
2698
2735
|
var IconBicycle_default = SvgIconBicycle;
|
|
2699
2736
|
|
|
2700
2737
|
// src/components/icons/IconBus.tsx
|
|
2701
|
-
var
|
|
2702
|
-
var SvgIconBus = () => /* @__PURE__ */ (0,
|
|
2738
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
2739
|
+
var SvgIconBus = () => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2703
2740
|
"svg",
|
|
2704
2741
|
{
|
|
2705
2742
|
width: "24",
|
|
@@ -2707,7 +2744,7 @@ var SvgIconBus = () => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
|
2707
2744
|
viewBox: "0 0 24 24",
|
|
2708
2745
|
fill: "none",
|
|
2709
2746
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2710
|
-
children: /* @__PURE__ */ (0,
|
|
2747
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2711
2748
|
"path",
|
|
2712
2749
|
{
|
|
2713
2750
|
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",
|
|
@@ -2719,8 +2756,8 @@ var SvgIconBus = () => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
|
2719
2756
|
var IconBus_default = SvgIconBus;
|
|
2720
2757
|
|
|
2721
2758
|
// src/components/icons/IconCar.tsx
|
|
2722
|
-
var
|
|
2723
|
-
var SvgIconCar = () => /* @__PURE__ */ (0,
|
|
2759
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
2760
|
+
var SvgIconCar = () => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2724
2761
|
"svg",
|
|
2725
2762
|
{
|
|
2726
2763
|
width: "24",
|
|
@@ -2728,7 +2765,7 @@ var SvgIconCar = () => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
|
2728
2765
|
viewBox: "0 0 24 24",
|
|
2729
2766
|
fill: "none",
|
|
2730
2767
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2731
|
-
children: /* @__PURE__ */ (0,
|
|
2768
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2732
2769
|
"path",
|
|
2733
2770
|
{
|
|
2734
2771
|
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",
|
|
@@ -2740,8 +2777,8 @@ var SvgIconCar = () => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
|
2740
2777
|
var IconCar_default = SvgIconCar;
|
|
2741
2778
|
|
|
2742
2779
|
// src/components/icons/IconFork.tsx
|
|
2743
|
-
var
|
|
2744
|
-
var SvgIconFork = () => /* @__PURE__ */ (0,
|
|
2780
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
2781
|
+
var SvgIconFork = () => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2745
2782
|
"svg",
|
|
2746
2783
|
{
|
|
2747
2784
|
width: "20",
|
|
@@ -2749,7 +2786,7 @@ var SvgIconFork = () => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
|
2749
2786
|
viewBox: "0 0 20 20",
|
|
2750
2787
|
fill: "none",
|
|
2751
2788
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2752
|
-
children: /* @__PURE__ */ (0,
|
|
2789
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2753
2790
|
"path",
|
|
2754
2791
|
{
|
|
2755
2792
|
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",
|
|
@@ -2761,8 +2798,8 @@ var SvgIconFork = () => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
|
2761
2798
|
var IconFork_default = SvgIconFork;
|
|
2762
2799
|
|
|
2763
2800
|
// src/components/icons/IconHeart.tsx
|
|
2764
|
-
var
|
|
2765
|
-
var SvgIconHeart = () => /* @__PURE__ */ (0,
|
|
2801
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
2802
|
+
var SvgIconHeart = () => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2766
2803
|
"svg",
|
|
2767
2804
|
{
|
|
2768
2805
|
width: "20",
|
|
@@ -2770,7 +2807,7 @@ var SvgIconHeart = () => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
|
2770
2807
|
viewBox: "0 0 20 20",
|
|
2771
2808
|
fill: "none",
|
|
2772
2809
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2773
|
-
children: /* @__PURE__ */ (0,
|
|
2810
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2774
2811
|
"path",
|
|
2775
2812
|
{
|
|
2776
2813
|
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",
|
|
@@ -2782,8 +2819,8 @@ var SvgIconHeart = () => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
|
2782
2819
|
var IconHeart_default = SvgIconHeart;
|
|
2783
2820
|
|
|
2784
2821
|
// src/components/icons/IconKnife.tsx
|
|
2785
|
-
var
|
|
2786
|
-
var SvgIconKnife = (props) => /* @__PURE__ */ (0,
|
|
2822
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
2823
|
+
var SvgIconKnife = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2787
2824
|
"svg",
|
|
2788
2825
|
{
|
|
2789
2826
|
width: "20",
|
|
@@ -2792,7 +2829,7 @@ var SvgIconKnife = (props) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
|
2792
2829
|
fill: "none",
|
|
2793
2830
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2794
2831
|
...props,
|
|
2795
|
-
children: /* @__PURE__ */ (0,
|
|
2832
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2796
2833
|
"path",
|
|
2797
2834
|
{
|
|
2798
2835
|
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",
|
|
@@ -2804,8 +2841,8 @@ var SvgIconKnife = (props) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
|
2804
2841
|
var IconKnife_default = SvgIconKnife;
|
|
2805
2842
|
|
|
2806
2843
|
// src/components/icons/IconSpoon.tsx
|
|
2807
|
-
var
|
|
2808
|
-
var SvgIconSpoon = () => /* @__PURE__ */ (0,
|
|
2844
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
2845
|
+
var SvgIconSpoon = () => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2809
2846
|
"svg",
|
|
2810
2847
|
{
|
|
2811
2848
|
width: "20",
|
|
@@ -2813,7 +2850,7 @@ var SvgIconSpoon = () => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
|
2813
2850
|
viewBox: "0 0 20 20",
|
|
2814
2851
|
fill: "none",
|
|
2815
2852
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2816
|
-
children: /* @__PURE__ */ (0,
|
|
2853
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2817
2854
|
"path",
|
|
2818
2855
|
{
|
|
2819
2856
|
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",
|
|
@@ -2825,8 +2862,8 @@ var SvgIconSpoon = () => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
|
2825
2862
|
var IconSpoon_default = SvgIconSpoon;
|
|
2826
2863
|
|
|
2827
2864
|
// src/resources/icons/BulkIcon.tsx
|
|
2828
|
-
var
|
|
2829
|
-
var BulkIcon = (props) => /* @__PURE__ */ (0,
|
|
2865
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
2866
|
+
var BulkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2830
2867
|
"svg",
|
|
2831
2868
|
{
|
|
2832
2869
|
height: 24,
|
|
@@ -2834,13 +2871,13 @@ var BulkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
|
2834
2871
|
width: 24,
|
|
2835
2872
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2836
2873
|
...props,
|
|
2837
|
-
children: /* @__PURE__ */ (0,
|
|
2874
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("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" })
|
|
2838
2875
|
}
|
|
2839
2876
|
);
|
|
2840
2877
|
var BulkIcon_default = BulkIcon;
|
|
2841
2878
|
|
|
2842
2879
|
// src/components/Buttons/RoundButton/RoundButton.tsx
|
|
2843
|
-
var
|
|
2880
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
2844
2881
|
var useStyles11 = (0, import_mui13.makeStyles)()(() => ({
|
|
2845
2882
|
base: {
|
|
2846
2883
|
backgroundColor: "transparent",
|
|
@@ -2958,48 +2995,48 @@ var RoundButton = ({
|
|
|
2958
2995
|
const { classes, cx } = useStyles11();
|
|
2959
2996
|
const iconSize = size === "small" ? "small" : "medium";
|
|
2960
2997
|
const iconComponentMap = {
|
|
2961
|
-
add: /* @__PURE__ */ (0,
|
|
2962
|
-
apps: /* @__PURE__ */ (0,
|
|
2963
|
-
arrowBack: /* @__PURE__ */ (0,
|
|
2964
|
-
arrowForward: /* @__PURE__ */ (0,
|
|
2965
|
-
avocado: /* @__PURE__ */ (0,
|
|
2966
|
-
backspaceOutlined: /* @__PURE__ */ (0,
|
|
2967
|
-
banana: /* @__PURE__ */ (0,
|
|
2968
|
-
block: /* @__PURE__ */ (0,
|
|
2969
|
-
bulk: /* @__PURE__ */ (0,
|
|
2970
|
-
callSplit: /* @__PURE__ */ (0,
|
|
2971
|
-
chevronRight: /* @__PURE__ */ (0,
|
|
2972
|
-
chevronUp: /* @__PURE__ */ (0,
|
|
2973
|
-
chevronDown: /* @__PURE__ */ (0,
|
|
2974
|
-
close: /* @__PURE__ */ (0,
|
|
2975
|
-
delete: /* @__PURE__ */ (0,
|
|
2976
|
-
done: /* @__PURE__ */ (0,
|
|
2977
|
-
edit: /* @__PURE__ */ (0,
|
|
2978
|
-
email: /* @__PURE__ */ (0,
|
|
2979
|
-
grape: /* @__PURE__ */ (0,
|
|
2980
|
-
groupAdd: /* @__PURE__ */ (0,
|
|
2981
|
-
history: /* @__PURE__ */ (0,
|
|
2982
|
-
menu: /* @__PURE__ */ (0,
|
|
2983
|
-
threeDots: /* @__PURE__ */ (0,
|
|
2984
|
-
notes: /* @__PURE__ */ (0,
|
|
2985
|
-
refresh: /* @__PURE__ */ (0,
|
|
2986
|
-
remove: /* @__PURE__ */ (0,
|
|
2987
|
-
search: /* @__PURE__ */ (0,
|
|
2988
|
-
send: /* @__PURE__ */ (0,
|
|
2989
|
-
strawberry: /* @__PURE__ */ (0,
|
|
2990
|
-
thumbDown: /* @__PURE__ */ (0,
|
|
2991
|
-
thumbUp: /* @__PURE__ */ (0,
|
|
2992
|
-
undo: /* @__PURE__ */ (0,
|
|
2993
|
-
play: /* @__PURE__ */ (0,
|
|
2994
|
-
snail: /* @__PURE__ */ (0,
|
|
2995
|
-
bus: /* @__PURE__ */ (0,
|
|
2996
|
-
spoon: /* @__PURE__ */ (0,
|
|
2997
|
-
fork: /* @__PURE__ */ (0,
|
|
2998
|
-
car: /* @__PURE__ */ (0,
|
|
2999
|
-
knife: /* @__PURE__ */ (0,
|
|
3000
|
-
bicycle: /* @__PURE__ */ (0,
|
|
3001
|
-
heart: /* @__PURE__ */ (0,
|
|
3002
|
-
airplane: /* @__PURE__ */ (0,
|
|
2998
|
+
add: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Add, { fontSize: iconSize }),
|
|
2999
|
+
apps: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Apps, { fontSize: iconSize }),
|
|
3000
|
+
arrowBack: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.ArrowBack, { fontSize: iconSize }),
|
|
3001
|
+
arrowForward: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.ArrowForward, { fontSize: iconSize }),
|
|
3002
|
+
avocado: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconAvocado_default, {}),
|
|
3003
|
+
backspaceOutlined: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.BackspaceOutlined, { fontSize: iconSize }),
|
|
3004
|
+
banana: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconBanana_default, {}),
|
|
3005
|
+
block: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Block, { fontSize: iconSize }),
|
|
3006
|
+
bulk: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(BulkIcon_default, { fill: colors.contrast }),
|
|
3007
|
+
callSplit: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.CallSplit, { fontSize: iconSize }),
|
|
3008
|
+
chevronRight: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.ChevronRight, { fontSize: iconSize }),
|
|
3009
|
+
chevronUp: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.KeyboardArrowUp, { fontSize: iconSize }),
|
|
3010
|
+
chevronDown: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.KeyboardArrowDown, { fontSize: iconSize }),
|
|
3011
|
+
close: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Close, { fontSize: iconSize }),
|
|
3012
|
+
delete: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Delete, { fontSize: iconSize, fill: colors.neutral800 }),
|
|
3013
|
+
done: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Done, { fontSize: iconSize }),
|
|
3014
|
+
edit: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Edit, { fontSize: iconSize }),
|
|
3015
|
+
email: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Email, { fontSize: iconSize }),
|
|
3016
|
+
grape: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconGrape_default, {}),
|
|
3017
|
+
groupAdd: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.GroupAdd, { fontSize: iconSize }),
|
|
3018
|
+
history: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.History, { fontSize: iconSize }),
|
|
3019
|
+
menu: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Menu, { fontSize: iconSize }),
|
|
3020
|
+
threeDots: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.MoreHoriz, { fontSize: iconSize, color: iconColor }),
|
|
3021
|
+
notes: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Comment, { fontSize: iconSize }),
|
|
3022
|
+
refresh: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Refresh, { fontSize: iconSize }),
|
|
3023
|
+
remove: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Remove, { fontSize: iconSize }),
|
|
3024
|
+
search: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Search, { fontSize: iconSize }),
|
|
3025
|
+
send: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Send, { fontSize: iconSize }),
|
|
3026
|
+
strawberry: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconStrawberry_default, {}),
|
|
3027
|
+
thumbDown: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.ThumbDown, { fontSize: iconSize }),
|
|
3028
|
+
thumbUp: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.ThumbUp, { fontSize: iconSize }),
|
|
3029
|
+
undo: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.Undo, { fontSize: iconSize }),
|
|
3030
|
+
play: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons_material4.PlayArrowRounded, { fontSize: iconSize }),
|
|
3031
|
+
snail: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(icons_default.SvgIconSnail, { fontSize: iconSize, fill: colors.muiPrimary }),
|
|
3032
|
+
bus: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconBus_default, {}),
|
|
3033
|
+
spoon: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconSpoon_default, {}),
|
|
3034
|
+
fork: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconFork_default, {}),
|
|
3035
|
+
car: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconCar_default, {}),
|
|
3036
|
+
knife: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconKnife_default, {}),
|
|
3037
|
+
bicycle: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconBicycle_default, {}),
|
|
3038
|
+
heart: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconHeart_default, {}),
|
|
3039
|
+
airplane: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(IconAirplane_default, {})
|
|
3003
3040
|
};
|
|
3004
3041
|
const filteredSize = size === "double" ? void 0 : size;
|
|
3005
3042
|
const handleClick = (e) => {
|
|
@@ -3007,7 +3044,7 @@ var RoundButton = ({
|
|
|
3007
3044
|
onClick(e);
|
|
3008
3045
|
}
|
|
3009
3046
|
};
|
|
3010
|
-
const Button14 = /* @__PURE__ */ (0,
|
|
3047
|
+
const Button14 = /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
3011
3048
|
import_material15.Fab,
|
|
3012
3049
|
{
|
|
3013
3050
|
className: cx(
|
|
@@ -3031,7 +3068,7 @@ var RoundButton = ({
|
|
|
3031
3068
|
children: icon ? iconComponentMap[icon] : children || ""
|
|
3032
3069
|
}
|
|
3033
3070
|
);
|
|
3034
|
-
return tooltip ? /* @__PURE__ */ (0,
|
|
3071
|
+
return tooltip ? /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_material15.Tooltip, { title: tooltip, children: Button14 }) : Button14;
|
|
3035
3072
|
};
|
|
3036
3073
|
var RoundButton_default = RoundButton;
|
|
3037
3074
|
|
|
@@ -3039,7 +3076,7 @@ var RoundButton_default = RoundButton;
|
|
|
3039
3076
|
var import_react9 = require("react");
|
|
3040
3077
|
var import_mdi_material_ui = require("mdi-material-ui");
|
|
3041
3078
|
var import_mui14 = require("tss-react/mui");
|
|
3042
|
-
var
|
|
3079
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
3043
3080
|
var useStyles12 = (0, import_mui14.makeStyles)()(() => ({
|
|
3044
3081
|
root: {
|
|
3045
3082
|
opacity: 0.5
|
|
@@ -3050,14 +3087,14 @@ var useStyles12 = (0, import_mui14.makeStyles)()(() => ({
|
|
|
3050
3087
|
}));
|
|
3051
3088
|
var PinButton = () => {
|
|
3052
3089
|
const { classes } = useStyles12();
|
|
3053
|
-
return /* @__PURE__ */ (0,
|
|
3090
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_mdi_material_ui.Pin, { className: classes.root });
|
|
3054
3091
|
};
|
|
3055
3092
|
var Pin_default = (0, import_react9.memo)(PinButton);
|
|
3056
3093
|
|
|
3057
3094
|
// src/components/Buttons/PinnedApp.tsx
|
|
3058
3095
|
var import_material16 = require("@mui/material");
|
|
3059
3096
|
var import_mui15 = require("tss-react/mui");
|
|
3060
|
-
var
|
|
3097
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
3061
3098
|
var useStyles13 = (0, import_mui15.makeStyles)()((theme) => ({
|
|
3062
3099
|
root: {
|
|
3063
3100
|
"& > *": {
|
|
@@ -3071,12 +3108,12 @@ var useStyles13 = (0, import_mui15.makeStyles)()((theme) => ({
|
|
|
3071
3108
|
function ActionButton(props) {
|
|
3072
3109
|
const { app } = props;
|
|
3073
3110
|
const { classes } = useStyles13();
|
|
3074
|
-
return /* @__PURE__ */ (0,
|
|
3111
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: classes.root, children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_material16.Fab, { color: "primary", "aria-label": "add", children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_material16.Icon, { children: app.icon }) }) });
|
|
3075
3112
|
}
|
|
3076
3113
|
|
|
3077
3114
|
// src/components/CompanyLogo/CompanyLogo.tsx
|
|
3078
3115
|
var import_mui16 = require("tss-react/mui");
|
|
3079
|
-
var
|
|
3116
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
3080
3117
|
var useStyles14 = (0, import_mui16.makeStyles)()((theme, { imageLogoDarkSmall, imageLogoLightSmall }) => ({
|
|
3081
3118
|
logoSmall: {
|
|
3082
3119
|
height: 46,
|
|
@@ -3109,14 +3146,14 @@ var CompanyLogo = ({
|
|
|
3109
3146
|
[classes.logoLight]: color === "light",
|
|
3110
3147
|
[classes.logoDark]: color === "dark"
|
|
3111
3148
|
});
|
|
3112
|
-
return /* @__PURE__ */ (0,
|
|
3149
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { className });
|
|
3113
3150
|
};
|
|
3114
3151
|
var CompanyLogo_default = CompanyLogo;
|
|
3115
3152
|
|
|
3116
3153
|
// src/components/ConfirmationDialog/ConfirmationDialog.tsx
|
|
3117
3154
|
var import_material17 = require("@mui/material");
|
|
3118
3155
|
var import_mui17 = require("tss-react/mui");
|
|
3119
|
-
var
|
|
3156
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
3120
3157
|
var useStyles15 = (0, import_mui17.makeStyles)()((theme) => ({
|
|
3121
3158
|
content: {
|
|
3122
3159
|
width: "660px"
|
|
@@ -3154,14 +3191,14 @@ var ConfirmationDialog = ({
|
|
|
3154
3191
|
};
|
|
3155
3192
|
const contentComponent = () => {
|
|
3156
3193
|
if (typeof content === "string") {
|
|
3157
|
-
return /* @__PURE__ */ (0,
|
|
3194
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_material17.Typography, { variant: "body1", children: content });
|
|
3158
3195
|
}
|
|
3159
3196
|
return content;
|
|
3160
3197
|
};
|
|
3161
|
-
return /* @__PURE__ */ (0,
|
|
3162
|
-
/* @__PURE__ */ (0,
|
|
3163
|
-
/* @__PURE__ */ (0,
|
|
3164
|
-
/* @__PURE__ */ (0,
|
|
3198
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(import_material17.Dialog, { onClose: closeModal, open: isOpen, maxWidth: "lg", children: [
|
|
3199
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(import_material17.Box, { className: classes.content, children: [
|
|
3200
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_material17.Typography, { className: classes.title, variant: "h6", children: title }),
|
|
3201
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3165
3202
|
import_material17.Box,
|
|
3166
3203
|
{
|
|
3167
3204
|
sx: {
|
|
@@ -3174,9 +3211,9 @@ var ConfirmationDialog = ({
|
|
|
3174
3211
|
}
|
|
3175
3212
|
)
|
|
3176
3213
|
] }),
|
|
3177
|
-
/* @__PURE__ */ (0,
|
|
3178
|
-
/* @__PURE__ */ (0,
|
|
3179
|
-
!hideCancel && /* @__PURE__ */ (0,
|
|
3214
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_material17.Divider, {}),
|
|
3215
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(import_material17.DialogActions, { className: classes.footer, children: [
|
|
3216
|
+
!hideCancel && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3180
3217
|
FilledButton_default,
|
|
3181
3218
|
{
|
|
3182
3219
|
className: classes.button,
|
|
@@ -3186,7 +3223,7 @@ var ConfirmationDialog = ({
|
|
|
3186
3223
|
onClick: closeModal
|
|
3187
3224
|
}
|
|
3188
3225
|
),
|
|
3189
|
-
!hideConfirm && /* @__PURE__ */ (0,
|
|
3226
|
+
!hideConfirm && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3190
3227
|
FilledButton_default,
|
|
3191
3228
|
{
|
|
3192
3229
|
className: classes.button,
|
|
@@ -3211,7 +3248,7 @@ var ConfirmationDialog_default = ConfirmationDialog;
|
|
|
3211
3248
|
// src/components/ControlledCheckbox/ControlledCheckbox.tsx
|
|
3212
3249
|
var import_react_hook_form = require("react-hook-form");
|
|
3213
3250
|
var import_material18 = require("@mui/material");
|
|
3214
|
-
var
|
|
3251
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
3215
3252
|
var ControlledCheckbox = ({
|
|
3216
3253
|
name,
|
|
3217
3254
|
label,
|
|
@@ -3223,18 +3260,18 @@ var ControlledCheckbox = ({
|
|
|
3223
3260
|
color,
|
|
3224
3261
|
handleChange,
|
|
3225
3262
|
disabled
|
|
3226
|
-
}) => /* @__PURE__ */ (0,
|
|
3263
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3227
3264
|
import_react_hook_form.Controller,
|
|
3228
3265
|
{
|
|
3229
3266
|
name,
|
|
3230
3267
|
control,
|
|
3231
3268
|
render: ({ field }) => {
|
|
3232
|
-
const checkbox = /* @__PURE__ */ (0,
|
|
3269
|
+
const checkbox = /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3233
3270
|
import_material18.FormControlLabel,
|
|
3234
3271
|
{
|
|
3235
3272
|
label,
|
|
3236
3273
|
className,
|
|
3237
|
-
control: /* @__PURE__ */ (0,
|
|
3274
|
+
control: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3238
3275
|
import_material18.Checkbox,
|
|
3239
3276
|
{
|
|
3240
3277
|
...field,
|
|
@@ -3248,7 +3285,7 @@ var ControlledCheckbox = ({
|
|
|
3248
3285
|
)
|
|
3249
3286
|
}
|
|
3250
3287
|
);
|
|
3251
|
-
return tooltipDescription ? /* @__PURE__ */ (0,
|
|
3288
|
+
return tooltipDescription ? /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_material18.Tooltip, { title: tooltipDescription, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { children: checkbox }) }) : checkbox;
|
|
3252
3289
|
}
|
|
3253
3290
|
}
|
|
3254
3291
|
);
|
|
@@ -3258,7 +3295,7 @@ var ControlledCheckbox_default = ControlledCheckbox;
|
|
|
3258
3295
|
var import_react_hook_form2 = require("react-hook-form");
|
|
3259
3296
|
var import_material19 = require("@mui/material");
|
|
3260
3297
|
var import_mui18 = require("tss-react/mui");
|
|
3261
|
-
var
|
|
3298
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
3262
3299
|
var useStyles16 = (0, import_mui18.makeStyles)()(() => ({
|
|
3263
3300
|
selectInput: {
|
|
3264
3301
|
minWidth: 122
|
|
@@ -3291,12 +3328,12 @@ var ControlledNumberInput = ({
|
|
|
3291
3328
|
"Backspace",
|
|
3292
3329
|
"Tab"
|
|
3293
3330
|
].includes(input.key) && input.preventDefault();
|
|
3294
|
-
return /* @__PURE__ */ (0,
|
|
3331
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3295
3332
|
import_react_hook_form2.Controller,
|
|
3296
3333
|
{
|
|
3297
3334
|
control,
|
|
3298
3335
|
name,
|
|
3299
|
-
render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */ (0,
|
|
3336
|
+
render: ({ field: { onChange, value }, fieldState }) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3300
3337
|
import_material19.TextField,
|
|
3301
3338
|
{
|
|
3302
3339
|
variant: "standard",
|
|
@@ -3332,7 +3369,7 @@ var import_react_hook_form3 = require("react-hook-form");
|
|
|
3332
3369
|
var import_icons_material5 = require("@mui/icons-material");
|
|
3333
3370
|
var import_material20 = require("@mui/material");
|
|
3334
3371
|
var import_mui19 = require("tss-react/mui");
|
|
3335
|
-
var
|
|
3372
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3336
3373
|
var convertUnderscoreToHyphen = (str) => str.replace(/_/g, "-");
|
|
3337
3374
|
var useStyles17 = (0, import_mui19.makeStyles)()((theme) => ({
|
|
3338
3375
|
textFieldButtons: {
|
|
@@ -3433,17 +3470,17 @@ var ControlledNumericField = ({
|
|
|
3433
3470
|
decrementValue(field)();
|
|
3434
3471
|
}
|
|
3435
3472
|
};
|
|
3436
|
-
return /* @__PURE__ */ (0,
|
|
3473
|
+
return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3437
3474
|
import_material20.Box,
|
|
3438
3475
|
{
|
|
3439
3476
|
className,
|
|
3440
3477
|
"data-testid": dataTestId || `${convertUnderscoreToHyphen(fieldName)}`,
|
|
3441
|
-
children: /* @__PURE__ */ (0,
|
|
3478
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3442
3479
|
import_react_hook_form3.Controller,
|
|
3443
3480
|
{
|
|
3444
3481
|
control,
|
|
3445
3482
|
name: fieldName,
|
|
3446
|
-
render: ({ field, fieldState }) => /* @__PURE__ */ (0,
|
|
3483
|
+
render: ({ field, fieldState }) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3447
3484
|
import_material20.TextField,
|
|
3448
3485
|
{
|
|
3449
3486
|
...field,
|
|
@@ -3478,25 +3515,25 @@ var ControlledNumericField = ({
|
|
|
3478
3515
|
slotProps: {
|
|
3479
3516
|
htmlInput: { min, max, step },
|
|
3480
3517
|
input: {
|
|
3481
|
-
endAdornment: /* @__PURE__ */ (0,
|
|
3482
|
-
/* @__PURE__ */ (0,
|
|
3518
|
+
endAdornment: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_material20.InputAdornment, { position: "end", children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(import_material20.Box, { className: classes.textFieldButtons, children: [
|
|
3519
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3483
3520
|
import_material20.IconButton,
|
|
3484
3521
|
{
|
|
3485
3522
|
disableRipple: true,
|
|
3486
3523
|
className: classes.arrowButton,
|
|
3487
3524
|
onClick: incrementValue(field),
|
|
3488
3525
|
"data-testid": "arrow-up",
|
|
3489
|
-
children: /* @__PURE__ */ (0,
|
|
3526
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons_material5.KeyboardArrowUp, { sx: { fontSize: 15 } })
|
|
3490
3527
|
}
|
|
3491
3528
|
),
|
|
3492
|
-
/* @__PURE__ */ (0,
|
|
3529
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3493
3530
|
import_material20.IconButton,
|
|
3494
3531
|
{
|
|
3495
3532
|
disableRipple: true,
|
|
3496
3533
|
className: classes.arrowButton,
|
|
3497
3534
|
onClick: decrementValue(field),
|
|
3498
3535
|
"data-testid": "arrow-down",
|
|
3499
|
-
children: /* @__PURE__ */ (0,
|
|
3536
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons_material5.KeyboardArrowDown, { sx: { fontSize: 15 } })
|
|
3500
3537
|
}
|
|
3501
3538
|
)
|
|
3502
3539
|
] }) })
|
|
@@ -3515,7 +3552,7 @@ var ControlledNumericField_default = ControlledNumericField;
|
|
|
3515
3552
|
var import_react_hook_form4 = require("react-hook-form");
|
|
3516
3553
|
var import_material21 = require("@mui/material");
|
|
3517
3554
|
var import_mui20 = require("tss-react/mui");
|
|
3518
|
-
var
|
|
3555
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
3519
3556
|
var useStyles18 = (0, import_mui20.makeStyles)()(() => ({
|
|
3520
3557
|
selectInput: {
|
|
3521
3558
|
minWidth: 122
|
|
@@ -3532,7 +3569,7 @@ var ControlledSelectWithArray = ({
|
|
|
3532
3569
|
revalidateFormFunction
|
|
3533
3570
|
}) => {
|
|
3534
3571
|
const { classes } = useStyles18();
|
|
3535
|
-
return /* @__PURE__ */ (0,
|
|
3572
|
+
return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3536
3573
|
import_react_hook_form4.Controller,
|
|
3537
3574
|
{
|
|
3538
3575
|
control,
|
|
@@ -3540,14 +3577,14 @@ var ControlledSelectWithArray = ({
|
|
|
3540
3577
|
render: ({
|
|
3541
3578
|
field: { onChange: fieldOnChange, ...field },
|
|
3542
3579
|
fieldState
|
|
3543
|
-
}) => /* @__PURE__ */ (0,
|
|
3580
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
|
|
3544
3581
|
import_material21.FormControl,
|
|
3545
3582
|
{
|
|
3546
3583
|
className: className || classes.selectInput,
|
|
3547
3584
|
variant: "standard",
|
|
3548
3585
|
children: [
|
|
3549
|
-
/* @__PURE__ */ (0,
|
|
3550
|
-
/* @__PURE__ */ (0,
|
|
3586
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_material21.InputLabel, { shrink: true, error: !!fieldState.error, children: label }),
|
|
3587
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
|
|
3551
3588
|
import_material21.Select,
|
|
3552
3589
|
{
|
|
3553
3590
|
variant: "standard",
|
|
@@ -3566,12 +3603,12 @@ var ControlledSelectWithArray = ({
|
|
|
3566
3603
|
},
|
|
3567
3604
|
error: !!fieldState.error,
|
|
3568
3605
|
children: [
|
|
3569
|
-
/* @__PURE__ */ (0,
|
|
3570
|
-
options?.map((item) => /* @__PURE__ */ (0,
|
|
3606
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("option", { "aria-label": "None" }),
|
|
3607
|
+
options?.map((item) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("option", { value: item, children: item }, item))
|
|
3571
3608
|
]
|
|
3572
3609
|
}
|
|
3573
3610
|
),
|
|
3574
|
-
/* @__PURE__ */ (0,
|
|
3611
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_material21.FormHelperText, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3575
3612
|
]
|
|
3576
3613
|
}
|
|
3577
3614
|
)
|
|
@@ -3584,7 +3621,7 @@ var ControlledSelectWithArray_default = ControlledSelectWithArray;
|
|
|
3584
3621
|
var import_react_hook_form5 = require("react-hook-form");
|
|
3585
3622
|
var import_material22 = require("@mui/material");
|
|
3586
3623
|
var import_mui21 = require("tss-react/mui");
|
|
3587
|
-
var
|
|
3624
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
3588
3625
|
var useStyles19 = (0, import_mui21.makeStyles)()(() => ({
|
|
3589
3626
|
selectInput: {
|
|
3590
3627
|
minWidth: 122
|
|
@@ -3602,7 +3639,7 @@ var ControlledSelectWithObject = ({
|
|
|
3602
3639
|
revalidateFormFunction
|
|
3603
3640
|
}) => {
|
|
3604
3641
|
const { classes } = useStyles19();
|
|
3605
|
-
return /* @__PURE__ */ (0,
|
|
3642
|
+
return /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3606
3643
|
import_react_hook_form5.Controller,
|
|
3607
3644
|
{
|
|
3608
3645
|
control,
|
|
@@ -3610,14 +3647,14 @@ var ControlledSelectWithObject = ({
|
|
|
3610
3647
|
render: ({
|
|
3611
3648
|
field: { onChange: fieldOnChange, ...field },
|
|
3612
3649
|
fieldState
|
|
3613
|
-
}) => /* @__PURE__ */ (0,
|
|
3650
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
|
|
3614
3651
|
import_material22.FormControl,
|
|
3615
3652
|
{
|
|
3616
3653
|
className: className || classes.selectInput,
|
|
3617
3654
|
variant: "standard",
|
|
3618
3655
|
children: [
|
|
3619
|
-
/* @__PURE__ */ (0,
|
|
3620
|
-
/* @__PURE__ */ (0,
|
|
3656
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_material22.InputLabel, { error: !!fieldState.error, children: label }),
|
|
3657
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
|
|
3621
3658
|
import_material22.Select,
|
|
3622
3659
|
{
|
|
3623
3660
|
variant: "standard",
|
|
@@ -3636,8 +3673,8 @@ var ControlledSelectWithObject = ({
|
|
|
3636
3673
|
},
|
|
3637
3674
|
error: !!fieldState.error,
|
|
3638
3675
|
children: [
|
|
3639
|
-
/* @__PURE__ */ (0,
|
|
3640
|
-
options?.map((option) => /* @__PURE__ */ (0,
|
|
3676
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("option", { "aria-label": "None" }),
|
|
3677
|
+
options?.map((option) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3641
3678
|
"option",
|
|
3642
3679
|
{
|
|
3643
3680
|
disabled: listToDisableFromOptions ? listToDisableFromOptions.includes(option.value) : false,
|
|
@@ -3649,7 +3686,7 @@ var ControlledSelectWithObject = ({
|
|
|
3649
3686
|
]
|
|
3650
3687
|
}
|
|
3651
3688
|
),
|
|
3652
|
-
/* @__PURE__ */ (0,
|
|
3689
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_material22.FormHelperText, { error: !!fieldState.error, children: fieldState.error?.message || error })
|
|
3653
3690
|
]
|
|
3654
3691
|
}
|
|
3655
3692
|
)
|
|
@@ -3663,7 +3700,7 @@ var import_react_hook_form6 = require("react-hook-form");
|
|
|
3663
3700
|
var import_material23 = require("@mui/material");
|
|
3664
3701
|
var import_classnames = __toESM(require("classnames"), 1);
|
|
3665
3702
|
var import_mui22 = require("tss-react/mui");
|
|
3666
|
-
var
|
|
3703
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
3667
3704
|
var useStyles20 = (0, import_mui22.makeStyles)()(() => ({
|
|
3668
3705
|
fullWidthWrapper: {
|
|
3669
3706
|
maxWidth: "100%"
|
|
@@ -3711,31 +3748,31 @@ var ControlledValidTextInput = ({
|
|
|
3711
3748
|
defaultHandleBlurValidationAndSubmit(controlledField, fieldState.isDirty);
|
|
3712
3749
|
}
|
|
3713
3750
|
};
|
|
3714
|
-
return /* @__PURE__ */ (0,
|
|
3751
|
+
return /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3715
3752
|
import_material23.Box,
|
|
3716
3753
|
{
|
|
3717
3754
|
className,
|
|
3718
3755
|
"data-testid": dataTestId || `${convertUnderscoreToHyphen2(fieldName)}`,
|
|
3719
|
-
children: /* @__PURE__ */ (0,
|
|
3756
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3720
3757
|
import_react_hook_form6.Controller,
|
|
3721
3758
|
{
|
|
3722
3759
|
control,
|
|
3723
3760
|
name: fieldName,
|
|
3724
|
-
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */ (0,
|
|
3761
|
+
render: ({ field: controlledField, fieldState }) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(import_material23.Box, { className: classes.fullWidthWrapper, children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3725
3762
|
import_material23.TextField,
|
|
3726
3763
|
{
|
|
3727
3764
|
...controlledField,
|
|
3728
3765
|
value: controlledField?.value || "",
|
|
3729
3766
|
fullWidth: true,
|
|
3730
3767
|
id: fieldName,
|
|
3731
|
-
"data-testid": `${dataTestId}-input`
|
|
3768
|
+
"data-testid": dataTestId ? `${dataTestId}-input` : `${convertUnderscoreToHyphen2(fieldName)}-input`,
|
|
3732
3769
|
label,
|
|
3733
3770
|
error: !!fieldState.error,
|
|
3734
3771
|
multiline: true,
|
|
3735
3772
|
autoComplete: "off",
|
|
3736
3773
|
disabled,
|
|
3737
3774
|
variant,
|
|
3738
|
-
helperText: /* @__PURE__ */ (0,
|
|
3775
|
+
helperText: /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
|
|
3739
3776
|
import_material23.Box,
|
|
3740
3777
|
{
|
|
3741
3778
|
component: "span",
|
|
@@ -3743,9 +3780,9 @@ var ControlledValidTextInput = ({
|
|
|
3743
3780
|
className: (0, import_classnames.default)({
|
|
3744
3781
|
[classes.helperTextWrapper]: !!maxLength
|
|
3745
3782
|
}),
|
|
3746
|
-
"data-testid": `${dataTestId}-helper-text`
|
|
3783
|
+
"data-testid": dataTestId ? `${dataTestId}-helper-text` : `${convertUnderscoreToHyphen2(fieldName)}-helper-text`,
|
|
3747
3784
|
children: [
|
|
3748
|
-
/* @__PURE__ */ (0,
|
|
3785
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3749
3786
|
import_material23.Box,
|
|
3750
3787
|
{
|
|
3751
3788
|
component: "span",
|
|
@@ -3755,7 +3792,7 @@ var ControlledValidTextInput = ({
|
|
|
3755
3792
|
children: fieldState.error?.message ?? helperText
|
|
3756
3793
|
}
|
|
3757
3794
|
),
|
|
3758
|
-
!!maxLength && /* @__PURE__ */ (0,
|
|
3795
|
+
!!maxLength && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(import_material23.Box, { component: "span", children: `${watch(fieldName)?.length ?? 0}/${maxLength}` })
|
|
3759
3796
|
]
|
|
3760
3797
|
}
|
|
3761
3798
|
),
|
|
@@ -3774,7 +3811,7 @@ var import_react11 = require("react");
|
|
|
3774
3811
|
var import_material24 = require("@mui/material");
|
|
3775
3812
|
var import_x_data_grid = require("@mui/x-data-grid");
|
|
3776
3813
|
var import_mui23 = require("tss-react/mui");
|
|
3777
|
-
var
|
|
3814
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
3778
3815
|
var useStyles21 = (0, import_mui23.makeStyles)()(() => ({
|
|
3779
3816
|
root: {
|
|
3780
3817
|
justifyContent: "space-between",
|
|
@@ -3821,14 +3858,14 @@ var DataGrid = ({
|
|
|
3821
3858
|
]);
|
|
3822
3859
|
const rowHeight = 56;
|
|
3823
3860
|
const headerAndFooterHeight = 52 + 56;
|
|
3824
|
-
return /* @__PURE__ */ (0,
|
|
3861
|
+
return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3825
3862
|
"div",
|
|
3826
3863
|
{
|
|
3827
3864
|
className: classes.root,
|
|
3828
3865
|
style: {
|
|
3829
3866
|
height: height || rows.length * rowHeight + headerAndFooterHeight
|
|
3830
3867
|
},
|
|
3831
|
-
children: /* @__PURE__ */ (0,
|
|
3868
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(import_material24.Paper, { className: classes.paper, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { children: [...Array(Math.floor(10))].map((i) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3832
3869
|
import_material24.Skeleton,
|
|
3833
3870
|
{
|
|
3834
3871
|
animation: "pulse",
|
|
@@ -3837,8 +3874,8 @@ var DataGrid = ({
|
|
|
3837
3874
|
height: rowHeight
|
|
3838
3875
|
},
|
|
3839
3876
|
i
|
|
3840
|
-
)) }) : /* @__PURE__ */ (0,
|
|
3841
|
-
/* @__PURE__ */ (0,
|
|
3877
|
+
)) }) : /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(import_jsx_runtime73.Fragment, { children: [
|
|
3878
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3842
3879
|
import_x_data_grid.DataGrid,
|
|
3843
3880
|
{
|
|
3844
3881
|
rows,
|
|
@@ -3943,10 +3980,10 @@ localizedMoment.locale(constants_default.locale);
|
|
|
3943
3980
|
var moment_default = localizedMoment;
|
|
3944
3981
|
|
|
3945
3982
|
// src/components/Date/Date.tsx
|
|
3946
|
-
var
|
|
3983
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
3947
3984
|
var Date = ({ datetime, format = "L" }) => {
|
|
3948
3985
|
const formattedDate = moment_default(datetime).format(format);
|
|
3949
|
-
return /* @__PURE__ */ (0,
|
|
3986
|
+
return /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { children: formattedDate === "Invalid date" ? "-" : formattedDate });
|
|
3950
3987
|
};
|
|
3951
3988
|
var Date_default = Date;
|
|
3952
3989
|
|
|
@@ -3954,7 +3991,7 @@ var Date_default = Date;
|
|
|
3954
3991
|
var import_react12 = require("react");
|
|
3955
3992
|
var import_material25 = require("@mui/material");
|
|
3956
3993
|
var import_mui24 = require("tss-react/mui");
|
|
3957
|
-
var
|
|
3994
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
3958
3995
|
var useStyles22 = (0, import_mui24.makeStyles)()(() => ({
|
|
3959
3996
|
alert: { marginBottom: 16 },
|
|
3960
3997
|
bottomBar: {
|
|
@@ -3972,19 +4009,19 @@ var DeleteSubstitutionDialogContent = ({
|
|
|
3972
4009
|
deleteSubstitution
|
|
3973
4010
|
}) => {
|
|
3974
4011
|
const { classes } = useStyles22();
|
|
3975
|
-
return /* @__PURE__ */ (0,
|
|
3976
|
-
/* @__PURE__ */ (0,
|
|
3977
|
-
/* @__PURE__ */ (0,
|
|
4012
|
+
return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_jsx_runtime75.Fragment, { children: [
|
|
4013
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_material25.Alert, { severity: "warning", className: classes.alert, children: [
|
|
4014
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_material25.AlertTitle, { children: [
|
|
3978
4015
|
"Are you sure you want to delete the substitution \u201C",
|
|
3979
4016
|
substitutionName,
|
|
3980
4017
|
"\u201D?"
|
|
3981
4018
|
] }),
|
|
3982
4019
|
"This action will permanently remove all data and history associated with this substitution, and it cannot be undone."
|
|
3983
4020
|
] }),
|
|
3984
|
-
/* @__PURE__ */ (0,
|
|
3985
|
-
/* @__PURE__ */ (0,
|
|
3986
|
-
/* @__PURE__ */ (0,
|
|
3987
|
-
/* @__PURE__ */ (0,
|
|
4021
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_material25.Typography, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
4022
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_material25.Box, { className: classes.bottomBar, children: [
|
|
4023
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)(ExtendedButton_default, { copy: "Cancel", onClick: closeDialog }),
|
|
4024
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3988
4025
|
ExtendedButton_default,
|
|
3989
4026
|
{
|
|
3990
4027
|
copy: "Confirm",
|
|
@@ -4002,7 +4039,7 @@ var DeleteSubstitutionDialogContent_default = (0, import_react12.memo)(DeleteSub
|
|
|
4002
4039
|
var import_react13 = require("react");
|
|
4003
4040
|
var import_material26 = require("@mui/material");
|
|
4004
4041
|
var import_mui25 = require("tss-react/mui");
|
|
4005
|
-
var
|
|
4042
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
4006
4043
|
var useStyles23 = (0, import_mui25.makeStyles)()(() => ({
|
|
4007
4044
|
alert: { marginBottom: 16 },
|
|
4008
4045
|
bottomBar: {
|
|
@@ -4020,19 +4057,19 @@ var DeleteUserDialogContent = ({
|
|
|
4020
4057
|
deleteUser
|
|
4021
4058
|
}) => {
|
|
4022
4059
|
const { classes } = useStyles23();
|
|
4023
|
-
return /* @__PURE__ */ (0,
|
|
4024
|
-
/* @__PURE__ */ (0,
|
|
4025
|
-
/* @__PURE__ */ (0,
|
|
4060
|
+
return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_jsx_runtime76.Fragment, { children: [
|
|
4061
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_material26.Alert, { severity: "warning", className: classes.alert, children: [
|
|
4062
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_material26.AlertTitle, { children: [
|
|
4026
4063
|
"Are you sure you want to delete the user ",
|
|
4027
4064
|
userName,
|
|
4028
4065
|
"?"
|
|
4029
4066
|
] }),
|
|
4030
4067
|
"This action will permanently remove all data and history associated with this user, and it cannot be undone."
|
|
4031
4068
|
] }),
|
|
4032
|
-
/* @__PURE__ */ (0,
|
|
4033
|
-
/* @__PURE__ */ (0,
|
|
4034
|
-
/* @__PURE__ */ (0,
|
|
4035
|
-
/* @__PURE__ */ (0,
|
|
4069
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsx)(import_material26.Typography, { variant: "body1", children: "Please confirm if you wish to proceed." }),
|
|
4070
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(import_material26.Box, { className: classes.bottomBar, children: [
|
|
4071
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsx)(ExtendedButton_default, { color: "default", copy: "Cancel", onClick: closeDialog }),
|
|
4072
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
4036
4073
|
ExtendedButton_default,
|
|
4037
4074
|
{
|
|
4038
4075
|
copy: "Confirm",
|
|
@@ -4049,7 +4086,7 @@ var DeleteUserDialogContent_default = (0, import_react13.memo)(DeleteUserDialogC
|
|
|
4049
4086
|
// src/components/FileCard/FileCard.tsx
|
|
4050
4087
|
var import_icons_material6 = require("@mui/icons-material");
|
|
4051
4088
|
var import_material27 = require("@mui/material");
|
|
4052
|
-
var
|
|
4089
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
4053
4090
|
var getFileMetadata = (file) => {
|
|
4054
4091
|
const fullFilename = file.substring(file.lastIndexOf("/") + 1);
|
|
4055
4092
|
const extension = file.substring(file.lastIndexOf("."));
|
|
@@ -4061,7 +4098,7 @@ var FileCard = ({ document: document2 }) => {
|
|
|
4061
4098
|
const handleOpenDocument = () => {
|
|
4062
4099
|
window.open(document2, "_blank");
|
|
4063
4100
|
};
|
|
4064
|
-
return /* @__PURE__ */ (0,
|
|
4101
|
+
return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
|
|
4065
4102
|
import_material27.Box,
|
|
4066
4103
|
{
|
|
4067
4104
|
onClick: handleOpenDocument,
|
|
@@ -4074,7 +4111,7 @@ var FileCard = ({ document: document2 }) => {
|
|
|
4074
4111
|
minWidth: "250px"
|
|
4075
4112
|
},
|
|
4076
4113
|
children: [
|
|
4077
|
-
/* @__PURE__ */ (0,
|
|
4114
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
4078
4115
|
import_material27.Box,
|
|
4079
4116
|
{
|
|
4080
4117
|
sx: {
|
|
@@ -4082,10 +4119,10 @@ var FileCard = ({ document: document2 }) => {
|
|
|
4082
4119
|
justifyContent: "center",
|
|
4083
4120
|
alignItems: "center"
|
|
4084
4121
|
},
|
|
4085
|
-
children: /* @__PURE__ */ (0,
|
|
4122
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(import_icons_material6.Description, { fontSize: "medium", color: "action" })
|
|
4086
4123
|
}
|
|
4087
4124
|
),
|
|
4088
|
-
/* @__PURE__ */ (0,
|
|
4125
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
4089
4126
|
import_material27.Box,
|
|
4090
4127
|
{
|
|
4091
4128
|
sx: {
|
|
@@ -4093,7 +4130,7 @@ var FileCard = ({ document: document2 }) => {
|
|
|
4093
4130
|
alignItems: "center",
|
|
4094
4131
|
width: "100%"
|
|
4095
4132
|
},
|
|
4096
|
-
children: /* @__PURE__ */ (0,
|
|
4133
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(import_material27.Typography, { variant: "body1", children: [
|
|
4097
4134
|
metadata.filename,
|
|
4098
4135
|
metadata.extension
|
|
4099
4136
|
] })
|
|
@@ -4111,7 +4148,7 @@ var import_material28 = require("@mui/material");
|
|
|
4111
4148
|
var import_brown = __toESM(require("@mui/material/colors/brown"), 1);
|
|
4112
4149
|
var import_teal = __toESM(require("@mui/material/colors/teal"), 1);
|
|
4113
4150
|
var import_mui26 = require("tss-react/mui");
|
|
4114
|
-
var
|
|
4151
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
4115
4152
|
var useStyles24 = (0, import_mui26.makeStyles)()((theme) => ({
|
|
4116
4153
|
siteOne: {
|
|
4117
4154
|
backgroundColor: import_teal.default["50"],
|
|
@@ -4139,7 +4176,7 @@ var useStyles24 = (0, import_mui26.makeStyles)()((theme) => ({
|
|
|
4139
4176
|
var FilledLabel = (props) => {
|
|
4140
4177
|
const { color, copy } = props;
|
|
4141
4178
|
const { classes } = useStyles24();
|
|
4142
|
-
return /* @__PURE__ */ (0,
|
|
4179
|
+
return /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(import_material28.Typography, { variant: "caption", className: classes[color], children: copy });
|
|
4143
4180
|
};
|
|
4144
4181
|
var FilledLabel_default = (0, import_react14.memo)(FilledLabel);
|
|
4145
4182
|
|
|
@@ -4147,7 +4184,7 @@ var FilledLabel_default = (0, import_react14.memo)(FilledLabel);
|
|
|
4147
4184
|
var import_react15 = require("react");
|
|
4148
4185
|
var import_icons_material7 = require("@mui/icons-material");
|
|
4149
4186
|
var import_material29 = require("@mui/material");
|
|
4150
|
-
var
|
|
4187
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
4151
4188
|
var FilterGroupSelector = ({
|
|
4152
4189
|
name = "Filter Selector",
|
|
4153
4190
|
optionsList = [{ category: "Category", options: ["Option 1"] }],
|
|
@@ -4172,8 +4209,8 @@ var FilterGroupSelector = ({
|
|
|
4172
4209
|
(prev) => prev.includes(option) ? prev.filter((o) => o !== option) : [...prev, option]
|
|
4173
4210
|
);
|
|
4174
4211
|
};
|
|
4175
|
-
return /* @__PURE__ */ (0,
|
|
4176
|
-
/* @__PURE__ */ (0,
|
|
4212
|
+
return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_jsx_runtime79.Fragment, { children: [
|
|
4213
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
|
|
4177
4214
|
import_material29.Box,
|
|
4178
4215
|
{
|
|
4179
4216
|
display: "flex",
|
|
@@ -4182,12 +4219,12 @@ var FilterGroupSelector = ({
|
|
|
4182
4219
|
onClick: handleClick,
|
|
4183
4220
|
sx: { cursor: "pointer" },
|
|
4184
4221
|
children: [
|
|
4185
|
-
/* @__PURE__ */ (0,
|
|
4186
|
-
/* @__PURE__ */ (0,
|
|
4222
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material29.Typography, { variant: "button", fontSize: 12, children: name }),
|
|
4223
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_icons_material7.FilterList, {})
|
|
4187
4224
|
]
|
|
4188
4225
|
}
|
|
4189
4226
|
),
|
|
4190
|
-
/* @__PURE__ */ (0,
|
|
4227
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
|
|
4191
4228
|
import_material29.Menu,
|
|
4192
4229
|
{
|
|
4193
4230
|
anchorEl,
|
|
@@ -4196,10 +4233,10 @@ var FilterGroupSelector = ({
|
|
|
4196
4233
|
anchorOrigin: { vertical: "bottom", horizontal: "left" },
|
|
4197
4234
|
transformOrigin: { vertical: "top", horizontal: "left" },
|
|
4198
4235
|
children: [
|
|
4199
|
-
/* @__PURE__ */ (0,
|
|
4200
|
-
/* @__PURE__ */ (0,
|
|
4201
|
-
/* @__PURE__ */ (0,
|
|
4202
|
-
/* @__PURE__ */ (0,
|
|
4236
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material29.Box, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material29.Typography, { variant: "button", children: `Search ${name}` }) }),
|
|
4237
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material29.Divider, {}),
|
|
4238
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material29.Box, { overflow: "auto", height: 450, children: optionsList.map(({ category, options }, index) => /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_material29.Box, { children: [
|
|
4239
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
4203
4240
|
import_material29.Typography,
|
|
4204
4241
|
{
|
|
4205
4242
|
variant: "subtitle2",
|
|
@@ -4209,14 +4246,14 @@ var FilterGroupSelector = ({
|
|
|
4209
4246
|
),
|
|
4210
4247
|
options.map((value) => {
|
|
4211
4248
|
const key = `${category.replaceAll(" ", "_").toLocaleLowerCase()}${categoryIdentification ? `_${categoryIdentification}` : ""}: ${value}`;
|
|
4212
|
-
return /* @__PURE__ */ (0,
|
|
4213
|
-
/* @__PURE__ */ (0,
|
|
4214
|
-
/* @__PURE__ */ (0,
|
|
4249
|
+
return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_material29.MenuItem, { onClick: () => toggleOption(key), children: [
|
|
4250
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material29.Checkbox, { checked: values.includes(key) }),
|
|
4251
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_material29.ListItemText, { primary: value })
|
|
4215
4252
|
] }, value);
|
|
4216
4253
|
})
|
|
4217
4254
|
] }, category)) }),
|
|
4218
|
-
/* @__PURE__ */ (0,
|
|
4219
|
-
/* @__PURE__ */ (0,
|
|
4255
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_material29.Box, { display: "flex", children: [
|
|
4256
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
4220
4257
|
ExtendedButton_default,
|
|
4221
4258
|
{
|
|
4222
4259
|
variant: "text",
|
|
@@ -4228,7 +4265,7 @@ var FilterGroupSelector = ({
|
|
|
4228
4265
|
}
|
|
4229
4266
|
}
|
|
4230
4267
|
),
|
|
4231
|
-
/* @__PURE__ */ (0,
|
|
4268
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
4232
4269
|
ExtendedButton_default,
|
|
4233
4270
|
{
|
|
4234
4271
|
color: "primary",
|
|
@@ -4252,7 +4289,7 @@ var FilterGroupSelector_default = FilterGroupSelector;
|
|
|
4252
4289
|
var import_react16 = require("react");
|
|
4253
4290
|
var import_icons_material8 = require("@mui/icons-material");
|
|
4254
4291
|
var import_material30 = require("@mui/material");
|
|
4255
|
-
var
|
|
4292
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
4256
4293
|
var FilterSimpleSelector = ({
|
|
4257
4294
|
name = "Filter Selector",
|
|
4258
4295
|
options = ["No Options"],
|
|
@@ -4276,8 +4313,8 @@ var FilterSimpleSelector = ({
|
|
|
4276
4313
|
(prev) => prev.includes(option) ? prev.filter((o) => o !== option) : [...prev, option]
|
|
4277
4314
|
);
|
|
4278
4315
|
};
|
|
4279
|
-
return /* @__PURE__ */ (0,
|
|
4280
|
-
/* @__PURE__ */ (0,
|
|
4316
|
+
return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(import_jsx_runtime80.Fragment, { children: [
|
|
4317
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
|
|
4281
4318
|
import_material30.Box,
|
|
4282
4319
|
{
|
|
4283
4320
|
display: "flex",
|
|
@@ -4286,12 +4323,12 @@ var FilterSimpleSelector = ({
|
|
|
4286
4323
|
onClick: handleClick,
|
|
4287
4324
|
sx: { cursor: "pointer" },
|
|
4288
4325
|
children: [
|
|
4289
|
-
/* @__PURE__ */ (0,
|
|
4290
|
-
/* @__PURE__ */ (0,
|
|
4326
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Typography, { variant: "button", fontSize: 12, children: name }),
|
|
4327
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_icons_material8.FilterList, {})
|
|
4291
4328
|
]
|
|
4292
4329
|
}
|
|
4293
4330
|
),
|
|
4294
|
-
/* @__PURE__ */ (0,
|
|
4331
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
|
|
4295
4332
|
import_material30.Menu,
|
|
4296
4333
|
{
|
|
4297
4334
|
anchorEl,
|
|
@@ -4300,15 +4337,15 @@ var FilterSimpleSelector = ({
|
|
|
4300
4337
|
anchorOrigin: { vertical: "bottom", horizontal: "left" },
|
|
4301
4338
|
transformOrigin: { vertical: "top", horizontal: "left" },
|
|
4302
4339
|
children: [
|
|
4303
|
-
/* @__PURE__ */ (0,
|
|
4304
|
-
/* @__PURE__ */ (0,
|
|
4305
|
-
/* @__PURE__ */ (0,
|
|
4306
|
-
/* @__PURE__ */ (0,
|
|
4307
|
-
/* @__PURE__ */ (0,
|
|
4340
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Box, { p: 2, mt: -1, sx: { backgroundColor: colors.neutral200 }, children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Typography, { variant: "button", children: `Search ${name}` }) }),
|
|
4341
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Divider, {}),
|
|
4342
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Box, { overflow: "auto", height: 450, children: options.map((option) => /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(import_material30.MenuItem, { onClick: () => toggleOption(option), children: [
|
|
4343
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Checkbox, { checked: values.includes(option) }),
|
|
4344
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.ListItemText, { primary: option })
|
|
4308
4345
|
] }, option)) }),
|
|
4309
|
-
/* @__PURE__ */ (0,
|
|
4310
|
-
/* @__PURE__ */ (0,
|
|
4311
|
-
/* @__PURE__ */ (0,
|
|
4346
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_material30.Divider, {}),
|
|
4347
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(import_material30.Box, { display: "flex", children: [
|
|
4348
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
4312
4349
|
ExtendedButton_default,
|
|
4313
4350
|
{
|
|
4314
4351
|
variant: "text",
|
|
@@ -4320,7 +4357,7 @@ var FilterSimpleSelector = ({
|
|
|
4320
4357
|
}
|
|
4321
4358
|
}
|
|
4322
4359
|
),
|
|
4323
|
-
/* @__PURE__ */ (0,
|
|
4360
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
4324
4361
|
ExtendedButton_default,
|
|
4325
4362
|
{
|
|
4326
4363
|
color: "primary",
|
|
@@ -4344,7 +4381,7 @@ var FilterSimpleSelector_default = FilterSimpleSelector;
|
|
|
4344
4381
|
var React = __toESM(require("react"), 1);
|
|
4345
4382
|
var import_material31 = require("@mui/material");
|
|
4346
4383
|
var import_mui27 = require("tss-react/mui");
|
|
4347
|
-
var
|
|
4384
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
4348
4385
|
var footerHeight = "64px";
|
|
4349
4386
|
var useStyles25 = (0, import_mui27.makeStyles)()((theme) => ({
|
|
4350
4387
|
root: {
|
|
@@ -4365,9 +4402,9 @@ var useStyles25 = (0, import_mui27.makeStyles)()((theme) => ({
|
|
|
4365
4402
|
}));
|
|
4366
4403
|
var FixedFooter = ({ justifyContent, children }) => {
|
|
4367
4404
|
const { classes } = useStyles25();
|
|
4368
|
-
return /* @__PURE__ */ (0,
|
|
4369
|
-
/* @__PURE__ */ (0,
|
|
4370
|
-
/* @__PURE__ */ (0,
|
|
4405
|
+
return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(import_material31.Box, { children: [
|
|
4406
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_material31.Box, { className: classes.fixedOffset }),
|
|
4407
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
4371
4408
|
import_material31.Box,
|
|
4372
4409
|
{
|
|
4373
4410
|
className: classes.root,
|
|
@@ -4384,7 +4421,7 @@ var FixedFooter_default = React.memo(FixedFooter);
|
|
|
4384
4421
|
// src/components/Header/Header.tsx
|
|
4385
4422
|
var import_material32 = require("@mui/material");
|
|
4386
4423
|
var import_mui28 = require("tss-react/mui");
|
|
4387
|
-
var
|
|
4424
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
4388
4425
|
var useStyles26 = (0, import_mui28.makeStyles)()((theme) => ({
|
|
4389
4426
|
container: {
|
|
4390
4427
|
margin: theme.spacing(1)
|
|
@@ -4407,16 +4444,16 @@ var Header = ({
|
|
|
4407
4444
|
wrappedHeader = false
|
|
4408
4445
|
}) => {
|
|
4409
4446
|
const { classes, cx } = useStyles26();
|
|
4410
|
-
return /* @__PURE__ */ (0,
|
|
4447
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
4411
4448
|
import_material32.Paper,
|
|
4412
4449
|
{
|
|
4413
4450
|
className: cx({
|
|
4414
4451
|
[classes.container]: !wrappedHeader
|
|
4415
4452
|
}),
|
|
4416
4453
|
elevation: wrappedHeader ? 0 : 1,
|
|
4417
|
-
children: /* @__PURE__ */ (0,
|
|
4418
|
-
/* @__PURE__ */ (0,
|
|
4419
|
-
children ? /* @__PURE__ */ (0,
|
|
4454
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("header", { className: classes.header, children: [
|
|
4455
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)(AppLabel_default, { appName }),
|
|
4456
|
+
children ? /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("div", { className: classes.rightContent, children }) : null
|
|
4420
4457
|
] })
|
|
4421
4458
|
}
|
|
4422
4459
|
);
|
|
@@ -4433,9 +4470,9 @@ var import_mui29 = require("tss-react/mui");
|
|
|
4433
4470
|
// src/components/UserBust/UserBust.tsx
|
|
4434
4471
|
var import_react17 = require("react");
|
|
4435
4472
|
var import_material33 = require("@mui/material");
|
|
4436
|
-
var
|
|
4437
|
-
var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ (0,
|
|
4438
|
-
/* @__PURE__ */ (0,
|
|
4473
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
4474
|
+
var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { children: [
|
|
4475
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
4439
4476
|
import_material33.Avatar,
|
|
4440
4477
|
{
|
|
4441
4478
|
src: user.profile_picture,
|
|
@@ -4443,9 +4480,9 @@ var UserBust = ({ user, avatarProps, typographyProps }) => /* @__PURE__ */ (0, i
|
|
|
4443
4480
|
style: { width: avatarProps.width, height: avatarProps.height }
|
|
4444
4481
|
}
|
|
4445
4482
|
),
|
|
4446
|
-
/* @__PURE__ */ (0,
|
|
4447
|
-
/* @__PURE__ */ (0,
|
|
4448
|
-
/* @__PURE__ */ (0,
|
|
4483
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { style: { paddingTop: 16 }, children: [
|
|
4484
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)(import_material33.Typography, { ...typographyProps.name, children: `${user.first_name} ${user.last_name}` }),
|
|
4485
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)(import_material33.Typography, { ...typographyProps.username, children: user.username })
|
|
4449
4486
|
] })
|
|
4450
4487
|
] });
|
|
4451
4488
|
var UserBust_default = (0, import_react17.memo)(UserBust);
|
|
@@ -4484,7 +4521,7 @@ var featureName = {
|
|
|
4484
4521
|
var featureName_default = featureName;
|
|
4485
4522
|
|
|
4486
4523
|
// src/components/LeftDrawer/helpers/drawerAppList.tsx
|
|
4487
|
-
var
|
|
4524
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
4488
4525
|
var drawerAppList = [
|
|
4489
4526
|
{
|
|
4490
4527
|
groupName: "Home",
|
|
@@ -4495,7 +4532,7 @@ var drawerAppList = [
|
|
|
4495
4532
|
alwaysDisplay: true,
|
|
4496
4533
|
featureNames: [],
|
|
4497
4534
|
pinned: null,
|
|
4498
|
-
icon: /* @__PURE__ */ (0,
|
|
4535
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconHome, {}),
|
|
4499
4536
|
url: `/`
|
|
4500
4537
|
}
|
|
4501
4538
|
]
|
|
@@ -4509,7 +4546,7 @@ var drawerAppList = [
|
|
|
4509
4546
|
alwaysDisplay: false,
|
|
4510
4547
|
featureNames: [featureName_default.NOTIFICATIONS],
|
|
4511
4548
|
pinned: null,
|
|
4512
|
-
icon: /* @__PURE__ */ (0,
|
|
4549
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconNotification, {}),
|
|
4513
4550
|
url: `/notifications`
|
|
4514
4551
|
},
|
|
4515
4552
|
{
|
|
@@ -4518,7 +4555,7 @@ var drawerAppList = [
|
|
|
4518
4555
|
alwaysDisplay: false,
|
|
4519
4556
|
featureNames: [featureName_default.PROMO_CODES],
|
|
4520
4557
|
pinned: null,
|
|
4521
|
-
icon: /* @__PURE__ */ (0,
|
|
4558
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconPromoCode, {}),
|
|
4522
4559
|
url: "/react/promo_codes"
|
|
4523
4560
|
},
|
|
4524
4561
|
{
|
|
@@ -4527,7 +4564,7 @@ var drawerAppList = [
|
|
|
4527
4564
|
alwaysDisplay: false,
|
|
4528
4565
|
featureNames: [featureName_default.SEARCH_CATEGORIES],
|
|
4529
4566
|
pinned: null,
|
|
4530
|
-
icon: /* @__PURE__ */ (0,
|
|
4567
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconSearchCategories, {}),
|
|
4531
4568
|
url: "/react/search-categories"
|
|
4532
4569
|
},
|
|
4533
4570
|
{
|
|
@@ -4536,7 +4573,7 @@ var drawerAppList = [
|
|
|
4536
4573
|
alwaysDisplay: false,
|
|
4537
4574
|
featureNames: ["cms"],
|
|
4538
4575
|
pinned: null,
|
|
4539
|
-
icon: /* @__PURE__ */ (0,
|
|
4576
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconContentManagement, {}),
|
|
4540
4577
|
url: "/react/content-management"
|
|
4541
4578
|
}
|
|
4542
4579
|
]
|
|
@@ -4550,7 +4587,7 @@ var drawerAppList = [
|
|
|
4550
4587
|
alwaysDisplay: false,
|
|
4551
4588
|
featureNames: [featureName_default.AIRCALL],
|
|
4552
4589
|
pinned: "recorded_calls",
|
|
4553
|
-
icon: /* @__PURE__ */ (0,
|
|
4590
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconPhone, {}),
|
|
4554
4591
|
url: "/react/air-call"
|
|
4555
4592
|
},
|
|
4556
4593
|
{
|
|
@@ -4559,7 +4596,7 @@ var drawerAppList = [
|
|
|
4559
4596
|
alwaysDisplay: false,
|
|
4560
4597
|
featureNames: [featureName_default.CUSTOMERS],
|
|
4561
4598
|
pinned: "customers",
|
|
4562
|
-
icon: /* @__PURE__ */ (0,
|
|
4599
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconAccount, {}),
|
|
4563
4600
|
url: `/react/customers`,
|
|
4564
4601
|
children: [
|
|
4565
4602
|
{
|
|
@@ -4582,7 +4619,7 @@ var drawerAppList = [
|
|
|
4582
4619
|
alwaysDisplay: false,
|
|
4583
4620
|
featureNames: [featureName_default.ORDERS],
|
|
4584
4621
|
pinned: "orders",
|
|
4585
|
-
icon: /* @__PURE__ */ (0,
|
|
4622
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconOrders, {}),
|
|
4586
4623
|
url: `/orders`
|
|
4587
4624
|
},
|
|
4588
4625
|
{
|
|
@@ -4591,7 +4628,7 @@ var drawerAppList = [
|
|
|
4591
4628
|
alwaysDisplay: false,
|
|
4592
4629
|
featureNames: [featureName_default.PRICE_LIST],
|
|
4593
4630
|
pinned: "price_list",
|
|
4594
|
-
icon: /* @__PURE__ */ (0,
|
|
4631
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconPriceList, {}),
|
|
4595
4632
|
url: `/price-list`
|
|
4596
4633
|
},
|
|
4597
4634
|
{
|
|
@@ -4600,7 +4637,7 @@ var drawerAppList = [
|
|
|
4600
4637
|
alwaysDisplay: false,
|
|
4601
4638
|
featureNames: [featureName_default.SPECIAL_PRICES],
|
|
4602
4639
|
pinned: "special_prices",
|
|
4603
|
-
icon: /* @__PURE__ */ (0,
|
|
4640
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconSpecialPrice, {}),
|
|
4604
4641
|
url: `/pricing/special-prices`
|
|
4605
4642
|
}
|
|
4606
4643
|
]
|
|
@@ -4614,7 +4651,7 @@ var drawerAppList = [
|
|
|
4614
4651
|
alwaysDisplay: false,
|
|
4615
4652
|
featureNames: [featureName_default.PURCHASE_ORDERS],
|
|
4616
4653
|
pinned: "purchase_orders",
|
|
4617
|
-
icon: /* @__PURE__ */ (0,
|
|
4654
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconBuying, {}),
|
|
4618
4655
|
url: "/react/purchase-orders"
|
|
4619
4656
|
},
|
|
4620
4657
|
{
|
|
@@ -4623,7 +4660,7 @@ var drawerAppList = [
|
|
|
4623
4660
|
alwaysDisplay: false,
|
|
4624
4661
|
featureNames: [featureName_default.PRODUCTS],
|
|
4625
4662
|
pinned: "products",
|
|
4626
|
-
icon: /* @__PURE__ */ (0,
|
|
4663
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconProducts, {}),
|
|
4627
4664
|
url: `/product-base-list`
|
|
4628
4665
|
},
|
|
4629
4666
|
{
|
|
@@ -4632,7 +4669,7 @@ var drawerAppList = [
|
|
|
4632
4669
|
alwaysDisplay: false,
|
|
4633
4670
|
featureNames: [featureName_default.SUPPLIERS],
|
|
4634
4671
|
pinned: "suppliers",
|
|
4635
|
-
icon: /* @__PURE__ */ (0,
|
|
4672
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconSupplier, {}),
|
|
4636
4673
|
url: "/react/suppliers"
|
|
4637
4674
|
},
|
|
4638
4675
|
{
|
|
@@ -4641,7 +4678,7 @@ var drawerAppList = [
|
|
|
4641
4678
|
alwaysDisplay: false,
|
|
4642
4679
|
featureNames: [featureName_default.SUPPLIER_PRICES],
|
|
4643
4680
|
pinned: "supplier_prices",
|
|
4644
|
-
icon: /* @__PURE__ */ (0,
|
|
4681
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconSupplierPrices, {}),
|
|
4645
4682
|
url: `/supplier-prices`
|
|
4646
4683
|
},
|
|
4647
4684
|
{
|
|
@@ -4650,7 +4687,7 @@ var drawerAppList = [
|
|
|
4650
4687
|
alwaysDisplay: false,
|
|
4651
4688
|
featureNames: [featureName_default.BULK_UPDATE],
|
|
4652
4689
|
pinned: "bulk-update",
|
|
4653
|
-
icon: /* @__PURE__ */ (0,
|
|
4690
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconImport, {}),
|
|
4654
4691
|
url: "/react/bulk_update"
|
|
4655
4692
|
}
|
|
4656
4693
|
]
|
|
@@ -4664,7 +4701,7 @@ var drawerAppList = [
|
|
|
4664
4701
|
alwaysDisplay: false,
|
|
4665
4702
|
featureNames: [featureName_default.GOODS_IN],
|
|
4666
4703
|
pinned: "goods_in",
|
|
4667
|
-
icon: /* @__PURE__ */ (0,
|
|
4704
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconGoodsin, {}),
|
|
4668
4705
|
url: "/react/goodsin-list"
|
|
4669
4706
|
},
|
|
4670
4707
|
{
|
|
@@ -4673,7 +4710,7 @@ var drawerAppList = [
|
|
|
4673
4710
|
alwaysDisplay: false,
|
|
4674
4711
|
featureNames: [featureName_default.RETURNS],
|
|
4675
4712
|
pinned: "goods_in",
|
|
4676
|
-
icon: /* @__PURE__ */ (0,
|
|
4713
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconGoodsin, {}),
|
|
4677
4714
|
url: "/react/returns"
|
|
4678
4715
|
},
|
|
4679
4716
|
{
|
|
@@ -4682,11 +4719,11 @@ var drawerAppList = [
|
|
|
4682
4719
|
alwaysDisplay: false,
|
|
4683
4720
|
featureNames: [featureName_default.KANBAN],
|
|
4684
4721
|
pinned: "kanbancards",
|
|
4685
|
-
icon: /* @__PURE__ */ (0,
|
|
4722
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconVkc, {}),
|
|
4686
4723
|
url: `/kanban`
|
|
4687
4724
|
},
|
|
4688
4725
|
{
|
|
4689
|
-
icon: /* @__PURE__ */ (0,
|
|
4726
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconLocation, {}),
|
|
4690
4727
|
name: "Stock and Locations",
|
|
4691
4728
|
pinned: "locations",
|
|
4692
4729
|
routeName: "locations",
|
|
@@ -4708,7 +4745,7 @@ var drawerAppList = [
|
|
|
4708
4745
|
alwaysDisplay: false,
|
|
4709
4746
|
featureNames: [featureName_default.PICKING_STATIONS],
|
|
4710
4747
|
pinned: "picking_stations",
|
|
4711
|
-
icon: /* @__PURE__ */ (0,
|
|
4748
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconScales, {}),
|
|
4712
4749
|
url: `/pickingstation`
|
|
4713
4750
|
},
|
|
4714
4751
|
{
|
|
@@ -4717,7 +4754,7 @@ var drawerAppList = [
|
|
|
4717
4754
|
alwaysDisplay: false,
|
|
4718
4755
|
featureNames: [featureName_default.QUALITY_CONTROL],
|
|
4719
4756
|
pinned: "quality_control",
|
|
4720
|
-
icon: /* @__PURE__ */ (0,
|
|
4757
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconQc, {}),
|
|
4721
4758
|
url: `/quality-control`
|
|
4722
4759
|
},
|
|
4723
4760
|
{
|
|
@@ -4726,7 +4763,7 @@ var drawerAppList = [
|
|
|
4726
4763
|
alwaysDisplay: false,
|
|
4727
4764
|
featureNames: [featureName_default.RETAIL],
|
|
4728
4765
|
pinned: "retail",
|
|
4729
|
-
icon: /* @__PURE__ */ (0,
|
|
4766
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconRetail, {}),
|
|
4730
4767
|
url: `/retail/product-availability`
|
|
4731
4768
|
},
|
|
4732
4769
|
{
|
|
@@ -4735,7 +4772,7 @@ var drawerAppList = [
|
|
|
4735
4772
|
alwaysDisplay: false,
|
|
4736
4773
|
featureNames: [featureName_default.SERVICE_DELIVERY],
|
|
4737
4774
|
pinned: "runs",
|
|
4738
|
-
icon: /* @__PURE__ */ (0,
|
|
4775
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconRuns, {}),
|
|
4739
4776
|
url: `/runs`
|
|
4740
4777
|
},
|
|
4741
4778
|
{
|
|
@@ -4744,7 +4781,7 @@ var drawerAppList = [
|
|
|
4744
4781
|
alwaysDisplay: false,
|
|
4745
4782
|
featureNames: [featureName_default.OPS_METRICS],
|
|
4746
4783
|
pinned: "ops-metrics",
|
|
4747
|
-
icon: /* @__PURE__ */ (0,
|
|
4784
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconOpsMetrics, {}),
|
|
4748
4785
|
url: "/react/ops-metrics"
|
|
4749
4786
|
}
|
|
4750
4787
|
]
|
|
@@ -4758,7 +4795,7 @@ var drawerAppList = [
|
|
|
4758
4795
|
alwaysDisplay: false,
|
|
4759
4796
|
featureNames: [featureName_default.ACCOUNTS],
|
|
4760
4797
|
pinned: "accounts",
|
|
4761
|
-
icon: /* @__PURE__ */ (0,
|
|
4798
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconAccounts, {}),
|
|
4762
4799
|
url: `/accounts`
|
|
4763
4800
|
},
|
|
4764
4801
|
{
|
|
@@ -4767,7 +4804,7 @@ var drawerAppList = [
|
|
|
4767
4804
|
alwaysDisplay: false,
|
|
4768
4805
|
featureNames: [featureName_default.REPORTS],
|
|
4769
4806
|
pinned: "reports",
|
|
4770
|
-
icon: /* @__PURE__ */ (0,
|
|
4807
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconReports, {}),
|
|
4771
4808
|
url: `/reports`
|
|
4772
4809
|
}
|
|
4773
4810
|
]
|
|
@@ -4781,7 +4818,7 @@ var drawerAppList = [
|
|
|
4781
4818
|
alwaysDisplay: false,
|
|
4782
4819
|
featureNames: [featureName_default.ADMIN],
|
|
4783
4820
|
pinned: "admin",
|
|
4784
|
-
icon: /* @__PURE__ */ (0,
|
|
4821
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconSetting, {}),
|
|
4785
4822
|
url: `/admin`
|
|
4786
4823
|
},
|
|
4787
4824
|
{
|
|
@@ -4790,7 +4827,7 @@ var drawerAppList = [
|
|
|
4790
4827
|
alwaysDisplay: false,
|
|
4791
4828
|
featureNames: [featureName_default.USER_MANAGEMENT],
|
|
4792
4829
|
pinned: "users",
|
|
4793
|
-
icon: /* @__PURE__ */ (0,
|
|
4830
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconUserManagement, {}),
|
|
4794
4831
|
url: "/react/user-management"
|
|
4795
4832
|
},
|
|
4796
4833
|
{
|
|
@@ -4799,7 +4836,7 @@ var drawerAppList = [
|
|
|
4799
4836
|
alwaysDisplay: true,
|
|
4800
4837
|
featureNames: [],
|
|
4801
4838
|
pinned: null,
|
|
4802
|
-
icon: /* @__PURE__ */ (0,
|
|
4839
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(icons_default.SvgIconLogin, {}),
|
|
4803
4840
|
url: "/react/logout"
|
|
4804
4841
|
}
|
|
4805
4842
|
]
|
|
@@ -4860,7 +4897,7 @@ var useGetFilteredDrawerAppList = (featureSettings) => {
|
|
|
4860
4897
|
var useGetFilteredDrawerAppList_default = useGetFilteredDrawerAppList;
|
|
4861
4898
|
|
|
4862
4899
|
// src/components/LeftDrawer/LeftDrawer.tsx
|
|
4863
|
-
var
|
|
4900
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
4864
4901
|
var useStyles27 = (0, import_mui29.makeStyles)()((theme) => ({
|
|
4865
4902
|
subheader: {
|
|
4866
4903
|
textTransform: "uppercase",
|
|
@@ -4934,7 +4971,7 @@ var LeftDrawer = ({
|
|
|
4934
4971
|
setOpenCollapse(tempOpenCollapse);
|
|
4935
4972
|
};
|
|
4936
4973
|
const { classes } = useStyles27();
|
|
4937
|
-
return /* @__PURE__ */ (0,
|
|
4974
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
4938
4975
|
import_material34.SwipeableDrawer,
|
|
4939
4976
|
{
|
|
4940
4977
|
className: classes.drawer,
|
|
@@ -4943,8 +4980,8 @@ var LeftDrawer = ({
|
|
|
4943
4980
|
onOpen: handleOpen,
|
|
4944
4981
|
open,
|
|
4945
4982
|
children: [
|
|
4946
|
-
/* @__PURE__ */ (0,
|
|
4947
|
-
/* @__PURE__ */ (0,
|
|
4983
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material34.AppBar, { position: "static", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_material34.Toolbar, { className: classes.topBar, children: [
|
|
4984
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
4948
4985
|
UserBust_default,
|
|
4949
4986
|
{
|
|
4950
4987
|
user,
|
|
@@ -4955,7 +4992,7 @@ var LeftDrawer = ({
|
|
|
4955
4992
|
}
|
|
4956
4993
|
}
|
|
4957
4994
|
),
|
|
4958
|
-
/* @__PURE__ */ (0,
|
|
4995
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material34.Box, { children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
4959
4996
|
RoundButton_default,
|
|
4960
4997
|
{
|
|
4961
4998
|
icon: "edit",
|
|
@@ -4966,10 +5003,10 @@ var LeftDrawer = ({
|
|
|
4966
5003
|
}
|
|
4967
5004
|
) })
|
|
4968
5005
|
] }) }),
|
|
4969
|
-
/* @__PURE__ */ (0,
|
|
4970
|
-
/* @__PURE__ */ (0,
|
|
4971
|
-
group.apps.map((app) => /* @__PURE__ */ (0,
|
|
4972
|
-
/* @__PURE__ */ (0,
|
|
5006
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material34.List, { children: filteredDrawerAppList.map((group) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_react18.Fragment, { children: [
|
|
5007
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material34.ListSubheader, { disableSticky: true, className: classes.subheader, children: group.groupName }),
|
|
5008
|
+
group.apps.map((app) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_react18.Fragment, { children: [
|
|
5009
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
4973
5010
|
import_material34.ListItem,
|
|
4974
5011
|
{
|
|
4975
5012
|
title: app.url,
|
|
@@ -4980,8 +5017,8 @@ var LeftDrawer = ({
|
|
|
4980
5017
|
return window.location.assign(app.url);
|
|
4981
5018
|
},
|
|
4982
5019
|
children: [
|
|
4983
|
-
/* @__PURE__ */ (0,
|
|
4984
|
-
/* @__PURE__ */ (0,
|
|
5020
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material34.ListItemIcon, { children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_Icon.default, { className: classes.iconMenu, children: app.icon }) }),
|
|
5021
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
4985
5022
|
import_material34.ListItemText,
|
|
4986
5023
|
{
|
|
4987
5024
|
className: classes.appName,
|
|
@@ -4991,13 +5028,13 @@ var LeftDrawer = ({
|
|
|
4991
5028
|
}
|
|
4992
5029
|
}
|
|
4993
5030
|
),
|
|
4994
|
-
app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */ (0,
|
|
5031
|
+
app.children?.length > 0 && (openCollapse[app.routeName] ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
4995
5032
|
import_icons_material9.ExpandLess,
|
|
4996
5033
|
{
|
|
4997
5034
|
"data-testid": "svg-close-collapse",
|
|
4998
5035
|
onClick: (e) => handleCollapse(e, app.routeName)
|
|
4999
5036
|
}
|
|
5000
|
-
) : /* @__PURE__ */ (0,
|
|
5037
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
5001
5038
|
import_icons_material9.ExpandMore,
|
|
5002
5039
|
{
|
|
5003
5040
|
"data-testid": "svg-open-collapse",
|
|
@@ -5008,7 +5045,7 @@ var LeftDrawer = ({
|
|
|
5008
5045
|
},
|
|
5009
5046
|
app.name
|
|
5010
5047
|
),
|
|
5011
|
-
app.children?.length > 0 && /* @__PURE__ */ (0,
|
|
5048
|
+
app.children?.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material34.Collapse, { in: openCollapse[app.routeName], children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material34.List, { children: app.children.map((child) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
5012
5049
|
import_material34.ListItemButton,
|
|
5013
5050
|
{
|
|
5014
5051
|
className: classes.nested,
|
|
@@ -5016,8 +5053,8 @@ var LeftDrawer = ({
|
|
|
5016
5053
|
onClick: () => window.location.assign(child.url),
|
|
5017
5054
|
title: child.url,
|
|
5018
5055
|
children: [
|
|
5019
|
-
/* @__PURE__ */ (0,
|
|
5020
|
-
/* @__PURE__ */ (0,
|
|
5056
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_material34.ListItemIcon, { children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_icons_material9.FiberManualRecord, { style: { height: 12 } }) }),
|
|
5057
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
5021
5058
|
import_material34.ListItemText,
|
|
5022
5059
|
{
|
|
5023
5060
|
primary: child.name,
|
|
@@ -5041,20 +5078,20 @@ var LeftDrawer_default = (0, import_react18.memo)(LeftDrawer);
|
|
|
5041
5078
|
// src/components/List/List.tsx
|
|
5042
5079
|
var import_react_window = require("react-window");
|
|
5043
5080
|
var import_material35 = require("@mui/material");
|
|
5044
|
-
var
|
|
5081
|
+
var import_jsx_runtime86 = (
|
|
5045
5082
|
// eslint-disable-next-line react/no-array-index-key
|
|
5046
5083
|
require("react/jsx-runtime")
|
|
5047
5084
|
);
|
|
5048
5085
|
var ListHeader = (props) => {
|
|
5049
5086
|
const headers = props.headers || [];
|
|
5050
|
-
return /* @__PURE__ */ (0,
|
|
5087
|
+
return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material35.ListItem, { children: headers.map((header, i) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(import_material35.ListItemText, { primary: header.text }, i)) });
|
|
5051
5088
|
};
|
|
5052
5089
|
function VirtualizedList(props) {
|
|
5053
5090
|
const { innerWidth, innerHeight } = window;
|
|
5054
5091
|
const { headers, items, renderItem } = props;
|
|
5055
|
-
return /* @__PURE__ */ (0,
|
|
5056
|
-
/* @__PURE__ */ (0,
|
|
5057
|
-
/* @__PURE__ */ (0,
|
|
5092
|
+
return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(import_jsx_runtime86.Fragment, { children: [
|
|
5093
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)(ListHeader, { headers }),
|
|
5094
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
5058
5095
|
import_react_window.FixedSizeList,
|
|
5059
5096
|
{
|
|
5060
5097
|
height: innerHeight - 150,
|
|
@@ -5071,7 +5108,7 @@ function VirtualizedList(props) {
|
|
|
5071
5108
|
// src/components/Loading/Loading.tsx
|
|
5072
5109
|
var import_material36 = require("@mui/material");
|
|
5073
5110
|
var import_mui30 = require("tss-react/mui");
|
|
5074
|
-
var
|
|
5111
|
+
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
5075
5112
|
var useStyles28 = (0, import_mui30.makeStyles)()(() => ({
|
|
5076
5113
|
wrapper: {
|
|
5077
5114
|
/**
|
|
@@ -5083,14 +5120,14 @@ var useStyles28 = (0, import_mui30.makeStyles)()(() => ({
|
|
|
5083
5120
|
}));
|
|
5084
5121
|
var Loading = ({ isLoading }) => {
|
|
5085
5122
|
const { classes } = useStyles28();
|
|
5086
|
-
return /* @__PURE__ */ (0,
|
|
5123
|
+
return /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
5087
5124
|
import_material36.Backdrop,
|
|
5088
5125
|
{
|
|
5089
5126
|
"aria-hidden": !isLoading,
|
|
5090
5127
|
className: classes.wrapper,
|
|
5091
5128
|
open: isLoading,
|
|
5092
5129
|
"data-testid": "backdrop-loading",
|
|
5093
|
-
children: /* @__PURE__ */ (0,
|
|
5130
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(import_material36.CircularProgress, { color: "primary" })
|
|
5094
5131
|
}
|
|
5095
5132
|
);
|
|
5096
5133
|
};
|
|
@@ -5102,7 +5139,7 @@ var import_material37 = require("@mui/material");
|
|
|
5102
5139
|
var import_colors32 = require("@mui/material/colors");
|
|
5103
5140
|
var import_classnames2 = __toESM(require("classnames"), 1);
|
|
5104
5141
|
var import_mui31 = require("tss-react/mui");
|
|
5105
|
-
var
|
|
5142
|
+
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
5106
5143
|
var useStyles29 = (0, import_mui31.makeStyles)()(() => ({
|
|
5107
5144
|
container: {
|
|
5108
5145
|
display: "flex",
|
|
@@ -5148,8 +5185,8 @@ var LocationsSectionInfo = ({
|
|
|
5148
5185
|
}
|
|
5149
5186
|
return "STOCK";
|
|
5150
5187
|
};
|
|
5151
|
-
return /* @__PURE__ */ (0,
|
|
5152
|
-
/* @__PURE__ */ (0,
|
|
5188
|
+
return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(import_material37.Box, { className: classes.container, children: [
|
|
5189
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
5153
5190
|
import_material37.Chip,
|
|
5154
5191
|
{
|
|
5155
5192
|
className: (0, import_classnames2.default)(classes.defaultChip, {
|
|
@@ -5160,10 +5197,10 @@ var LocationsSectionInfo = ({
|
|
|
5160
5197
|
label: getLocationLabel()
|
|
5161
5198
|
}
|
|
5162
5199
|
),
|
|
5163
|
-
/* @__PURE__ */ (0,
|
|
5164
|
-
secondaryLocation?.map((loc) => /* @__PURE__ */ (0,
|
|
5165
|
-
/* @__PURE__ */ (0,
|
|
5166
|
-
/* @__PURE__ */ (0,
|
|
5200
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)(import_material37.Typography, { className: classes.locationText, color: "primary", children: principalLocation }),
|
|
5201
|
+
secondaryLocation?.map((loc) => /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(import_react19.Fragment, { children: [
|
|
5202
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)(import_material37.Typography, { className: classes.smallTitle, children: "/" }),
|
|
5203
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)(import_material37.Typography, { className: classes.locationText, children: loc })
|
|
5167
5204
|
] }, loc))
|
|
5168
5205
|
] });
|
|
5169
5206
|
};
|
|
@@ -5173,7 +5210,7 @@ var LocationsSectionInfo_default = LocationsSectionInfo;
|
|
|
5173
5210
|
var import_react20 = require("react");
|
|
5174
5211
|
var import_material38 = require("@mui/material");
|
|
5175
5212
|
var import_mui32 = require("tss-react/mui");
|
|
5176
|
-
var
|
|
5213
|
+
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
5177
5214
|
var useStyles30 = (0, import_mui32.makeStyles)()((theme) => ({
|
|
5178
5215
|
wrapper: {
|
|
5179
5216
|
padding: theme.spacing(3),
|
|
@@ -5216,13 +5253,13 @@ var Notes2 = ({
|
|
|
5216
5253
|
}
|
|
5217
5254
|
};
|
|
5218
5255
|
const { classes } = useStyles30();
|
|
5219
|
-
return /* @__PURE__ */ (0,
|
|
5220
|
-
/* @__PURE__ */ (0,
|
|
5221
|
-
/* @__PURE__ */ (0,
|
|
5256
|
+
return /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("div", { className: classes.wrapper, children: /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(import_material38.FormControl, { fullWidth: true, children: [
|
|
5257
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(import_material38.InputLabel, { htmlFor: "notes", children: "Notes" }),
|
|
5258
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
5222
5259
|
import_material38.Input,
|
|
5223
5260
|
{
|
|
5224
5261
|
disabled: isDisabled || isLoading,
|
|
5225
|
-
endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */ (0,
|
|
5262
|
+
endAdornment: isEditable && notes.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(import_material38.InputAdornment, { position: "end", children: /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
5226
5263
|
RoundButton_default,
|
|
5227
5264
|
{
|
|
5228
5265
|
disabled: isLoading,
|
|
@@ -5248,8 +5285,8 @@ var Notes2 = ({
|
|
|
5248
5285
|
var Notes_default = Notes2;
|
|
5249
5286
|
|
|
5250
5287
|
// src/components/Numpad/Numpad.tsx
|
|
5251
|
-
var
|
|
5252
|
-
var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0,
|
|
5288
|
+
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
5289
|
+
var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
|
|
5253
5290
|
"div",
|
|
5254
5291
|
{
|
|
5255
5292
|
style: {
|
|
@@ -5261,9 +5298,9 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5261
5298
|
padding: 8
|
|
5262
5299
|
},
|
|
5263
5300
|
children: [
|
|
5264
|
-
/* @__PURE__ */ (0,
|
|
5265
|
-
/* @__PURE__ */ (0,
|
|
5266
|
-
/* @__PURE__ */ (0,
|
|
5301
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("div", { children: [
|
|
5302
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("div", { children: [
|
|
5303
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5267
5304
|
RoundButton_default,
|
|
5268
5305
|
{
|
|
5269
5306
|
onClick: () => handleClick("1"),
|
|
@@ -5272,7 +5309,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5272
5309
|
children: "1"
|
|
5273
5310
|
}
|
|
5274
5311
|
),
|
|
5275
|
-
/* @__PURE__ */ (0,
|
|
5312
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5276
5313
|
RoundButton_default,
|
|
5277
5314
|
{
|
|
5278
5315
|
onClick: () => handleClick("2"),
|
|
@@ -5281,7 +5318,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5281
5318
|
children: "2"
|
|
5282
5319
|
}
|
|
5283
5320
|
),
|
|
5284
|
-
/* @__PURE__ */ (0,
|
|
5321
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5285
5322
|
RoundButton_default,
|
|
5286
5323
|
{
|
|
5287
5324
|
onClick: () => handleClick("3"),
|
|
@@ -5291,8 +5328,8 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5291
5328
|
}
|
|
5292
5329
|
)
|
|
5293
5330
|
] }),
|
|
5294
|
-
/* @__PURE__ */ (0,
|
|
5295
|
-
/* @__PURE__ */ (0,
|
|
5331
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("div", { children: [
|
|
5332
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5296
5333
|
RoundButton_default,
|
|
5297
5334
|
{
|
|
5298
5335
|
onClick: () => handleClick("4"),
|
|
@@ -5301,7 +5338,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5301
5338
|
children: "4"
|
|
5302
5339
|
}
|
|
5303
5340
|
),
|
|
5304
|
-
/* @__PURE__ */ (0,
|
|
5341
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5305
5342
|
RoundButton_default,
|
|
5306
5343
|
{
|
|
5307
5344
|
onClick: () => handleClick("5"),
|
|
@@ -5310,7 +5347,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5310
5347
|
children: "5"
|
|
5311
5348
|
}
|
|
5312
5349
|
),
|
|
5313
|
-
/* @__PURE__ */ (0,
|
|
5350
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5314
5351
|
RoundButton_default,
|
|
5315
5352
|
{
|
|
5316
5353
|
onClick: () => handleClick("6"),
|
|
@@ -5320,8 +5357,8 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5320
5357
|
}
|
|
5321
5358
|
)
|
|
5322
5359
|
] }),
|
|
5323
|
-
/* @__PURE__ */ (0,
|
|
5324
|
-
/* @__PURE__ */ (0,
|
|
5360
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("div", { children: [
|
|
5361
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5325
5362
|
RoundButton_default,
|
|
5326
5363
|
{
|
|
5327
5364
|
onClick: () => handleClick("7"),
|
|
@@ -5330,7 +5367,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5330
5367
|
children: "7"
|
|
5331
5368
|
}
|
|
5332
5369
|
),
|
|
5333
|
-
/* @__PURE__ */ (0,
|
|
5370
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5334
5371
|
RoundButton_default,
|
|
5335
5372
|
{
|
|
5336
5373
|
onClick: () => handleClick("8"),
|
|
@@ -5339,7 +5376,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5339
5376
|
children: "8"
|
|
5340
5377
|
}
|
|
5341
5378
|
),
|
|
5342
|
-
/* @__PURE__ */ (0,
|
|
5379
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5343
5380
|
RoundButton_default,
|
|
5344
5381
|
{
|
|
5345
5382
|
onClick: () => handleClick("9"),
|
|
@@ -5349,8 +5386,8 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5349
5386
|
}
|
|
5350
5387
|
)
|
|
5351
5388
|
] }),
|
|
5352
|
-
/* @__PURE__ */ (0,
|
|
5353
|
-
/* @__PURE__ */ (0,
|
|
5389
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("div", { children: [
|
|
5390
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5354
5391
|
RoundButton_default,
|
|
5355
5392
|
{
|
|
5356
5393
|
onClick: () => handleClick("0"),
|
|
@@ -5359,7 +5396,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5359
5396
|
children: "0"
|
|
5360
5397
|
}
|
|
5361
5398
|
),
|
|
5362
|
-
/* @__PURE__ */ (0,
|
|
5399
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5363
5400
|
RoundButton_default,
|
|
5364
5401
|
{
|
|
5365
5402
|
onClick: () => handleClick("."),
|
|
@@ -5370,7 +5407,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5370
5407
|
)
|
|
5371
5408
|
] })
|
|
5372
5409
|
] }),
|
|
5373
|
-
/* @__PURE__ */ (0,
|
|
5410
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5374
5411
|
"div",
|
|
5375
5412
|
{
|
|
5376
5413
|
style: {
|
|
@@ -5379,7 +5416,7 @@ var Numpad = ({ handleClick, handleUndo }) => /* @__PURE__ */ (0, import_jsx_run
|
|
|
5379
5416
|
justifyContent: "space-between",
|
|
5380
5417
|
borderLeft: `1px solid ${colors.neutral250}`
|
|
5381
5418
|
},
|
|
5382
|
-
children: /* @__PURE__ */ (0,
|
|
5419
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
5383
5420
|
RoundButton_default,
|
|
5384
5421
|
{
|
|
5385
5422
|
icon: "backspaceOutlined",
|
|
@@ -5399,7 +5436,7 @@ var Numpad_default = Numpad;
|
|
|
5399
5436
|
var import_react21 = require("react");
|
|
5400
5437
|
var import_material39 = require("@mui/material");
|
|
5401
5438
|
var import_mui33 = require("tss-react/mui");
|
|
5402
|
-
var
|
|
5439
|
+
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
5403
5440
|
var useStyles31 = (0, import_mui33.makeStyles)()(() => ({
|
|
5404
5441
|
c_numpadinput__textfield: {
|
|
5405
5442
|
"& .MuiInputLabel-outlined.MuiInputLabel-shrink": {
|
|
@@ -5436,13 +5473,13 @@ var NumpadInput = (props) => {
|
|
|
5436
5473
|
function handleSubmit() {
|
|
5437
5474
|
handleNextClick?.(state);
|
|
5438
5475
|
}
|
|
5439
|
-
const DefaultInput = /* @__PURE__ */ (0,
|
|
5440
|
-
/* @__PURE__ */ (0,
|
|
5441
|
-
/* @__PURE__ */ (0,
|
|
5476
|
+
const DefaultInput = /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { children: [
|
|
5477
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(import_material39.Typography, { variant: "h5", style: { padding: "16px 0 3rem" }, children: inputLabel }),
|
|
5478
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("form", { noValidate: true, autoComplete: "off", children: /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
5442
5479
|
import_material39.TextField,
|
|
5443
5480
|
{
|
|
5444
5481
|
id: "outlined-basic",
|
|
5445
|
-
label: /* @__PURE__ */ (0,
|
|
5482
|
+
label: /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(import_material39.Typography, { style: { fontSize: "1.5rem" }, children: "Insert" }),
|
|
5446
5483
|
value: state,
|
|
5447
5484
|
variant: "outlined",
|
|
5448
5485
|
autoFocus: true,
|
|
@@ -5457,19 +5494,19 @@ var NumpadInput = (props) => {
|
|
|
5457
5494
|
) }),
|
|
5458
5495
|
children
|
|
5459
5496
|
] });
|
|
5460
|
-
return /* @__PURE__ */ (0,
|
|
5461
|
-
/* @__PURE__ */ (0,
|
|
5497
|
+
return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { children: [
|
|
5498
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { className: classes.c_numpadinput__body, children: [
|
|
5462
5499
|
children || DefaultInput,
|
|
5463
|
-
/* @__PURE__ */ (0,
|
|
5500
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(Numpad_default, { handleClick: handleNumpadClick, handleUndo })
|
|
5464
5501
|
] }),
|
|
5465
|
-
state ? /* @__PURE__ */ (0,
|
|
5502
|
+
state ? /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
5466
5503
|
FilledButtonLg_default,
|
|
5467
5504
|
{
|
|
5468
5505
|
color: "primary",
|
|
5469
5506
|
copy: "next",
|
|
5470
5507
|
handleClick: handleSubmit
|
|
5471
5508
|
}
|
|
5472
|
-
) : /* @__PURE__ */ (0,
|
|
5509
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(FilledButtonLg_default, { copy: "next", disabled: true })
|
|
5473
5510
|
] });
|
|
5474
5511
|
};
|
|
5475
5512
|
var NumpadInput_default = (0, import_react21.memo)(NumpadInput);
|
|
@@ -5477,7 +5514,7 @@ var NumpadInput_default = (0, import_react21.memo)(NumpadInput);
|
|
|
5477
5514
|
// src/components/NumpadPlus/NumpadPlus.tsx
|
|
5478
5515
|
var import_material40 = require("@mui/material");
|
|
5479
5516
|
var import_mui34 = require("tss-react/mui");
|
|
5480
|
-
var
|
|
5517
|
+
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
5481
5518
|
var useStyles32 = (0, import_mui34.makeStyles)()(() => ({
|
|
5482
5519
|
numpadContainer: {
|
|
5483
5520
|
display: "flex",
|
|
@@ -5509,10 +5546,10 @@ var useStyles32 = (0, import_mui34.makeStyles)()(() => ({
|
|
|
5509
5546
|
}));
|
|
5510
5547
|
var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
5511
5548
|
const { classes: styles } = useStyles32();
|
|
5512
|
-
return /* @__PURE__ */ (0,
|
|
5513
|
-
/* @__PURE__ */ (0,
|
|
5514
|
-
/* @__PURE__ */ (0,
|
|
5515
|
-
/* @__PURE__ */ (0,
|
|
5549
|
+
return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material40.Box, { className: styles.numpadContainer, children: [
|
|
5550
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material40.Box, { className: styles.numpadNumbersContainer, children: [
|
|
5551
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material40.Box, { className: styles.numpadRow, children: [
|
|
5552
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5516
5553
|
RoundButton_default,
|
|
5517
5554
|
{
|
|
5518
5555
|
onClick: () => handleClick("1"),
|
|
@@ -5521,7 +5558,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5521
5558
|
children: "1"
|
|
5522
5559
|
}
|
|
5523
5560
|
),
|
|
5524
|
-
/* @__PURE__ */ (0,
|
|
5561
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5525
5562
|
RoundButton_default,
|
|
5526
5563
|
{
|
|
5527
5564
|
onClick: () => handleClick("2"),
|
|
@@ -5530,7 +5567,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5530
5567
|
children: "2"
|
|
5531
5568
|
}
|
|
5532
5569
|
),
|
|
5533
|
-
/* @__PURE__ */ (0,
|
|
5570
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5534
5571
|
RoundButton_default,
|
|
5535
5572
|
{
|
|
5536
5573
|
onClick: () => handleClick("3"),
|
|
@@ -5540,8 +5577,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5540
5577
|
}
|
|
5541
5578
|
)
|
|
5542
5579
|
] }),
|
|
5543
|
-
/* @__PURE__ */ (0,
|
|
5544
|
-
/* @__PURE__ */ (0,
|
|
5580
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material40.Box, { className: styles.numpadRow, children: [
|
|
5581
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5545
5582
|
RoundButton_default,
|
|
5546
5583
|
{
|
|
5547
5584
|
onClick: () => handleClick("4"),
|
|
@@ -5550,7 +5587,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5550
5587
|
children: "4"
|
|
5551
5588
|
}
|
|
5552
5589
|
),
|
|
5553
|
-
/* @__PURE__ */ (0,
|
|
5590
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5554
5591
|
RoundButton_default,
|
|
5555
5592
|
{
|
|
5556
5593
|
onClick: () => handleClick("5"),
|
|
@@ -5559,7 +5596,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5559
5596
|
children: "5"
|
|
5560
5597
|
}
|
|
5561
5598
|
),
|
|
5562
|
-
/* @__PURE__ */ (0,
|
|
5599
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5563
5600
|
RoundButton_default,
|
|
5564
5601
|
{
|
|
5565
5602
|
onClick: () => handleClick("6"),
|
|
@@ -5569,8 +5606,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5569
5606
|
}
|
|
5570
5607
|
)
|
|
5571
5608
|
] }),
|
|
5572
|
-
/* @__PURE__ */ (0,
|
|
5573
|
-
/* @__PURE__ */ (0,
|
|
5609
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material40.Box, { className: styles.numpadRow, children: [
|
|
5610
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5574
5611
|
RoundButton_default,
|
|
5575
5612
|
{
|
|
5576
5613
|
onClick: () => handleClick("7"),
|
|
@@ -5579,7 +5616,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5579
5616
|
children: "7"
|
|
5580
5617
|
}
|
|
5581
5618
|
),
|
|
5582
|
-
/* @__PURE__ */ (0,
|
|
5619
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5583
5620
|
RoundButton_default,
|
|
5584
5621
|
{
|
|
5585
5622
|
onClick: () => handleClick("8"),
|
|
@@ -5588,7 +5625,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5588
5625
|
children: "8"
|
|
5589
5626
|
}
|
|
5590
5627
|
),
|
|
5591
|
-
/* @__PURE__ */ (0,
|
|
5628
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5592
5629
|
RoundButton_default,
|
|
5593
5630
|
{
|
|
5594
5631
|
onClick: () => handleClick("9"),
|
|
@@ -5598,8 +5635,8 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5598
5635
|
}
|
|
5599
5636
|
)
|
|
5600
5637
|
] }),
|
|
5601
|
-
/* @__PURE__ */ (0,
|
|
5602
|
-
/* @__PURE__ */ (0,
|
|
5638
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(import_material40.Box, { className: styles.numpadRow, children: [
|
|
5639
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5603
5640
|
RoundButton_default,
|
|
5604
5641
|
{
|
|
5605
5642
|
onClick: () => handleClick("0"),
|
|
@@ -5608,7 +5645,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5608
5645
|
children: "0"
|
|
5609
5646
|
}
|
|
5610
5647
|
),
|
|
5611
|
-
/* @__PURE__ */ (0,
|
|
5648
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5612
5649
|
RoundButton_default,
|
|
5613
5650
|
{
|
|
5614
5651
|
onClick: () => handleClick("."),
|
|
@@ -5617,7 +5654,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5617
5654
|
children: "."
|
|
5618
5655
|
}
|
|
5619
5656
|
),
|
|
5620
|
-
/* @__PURE__ */ (0,
|
|
5657
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5621
5658
|
RoundButton_default,
|
|
5622
5659
|
{
|
|
5623
5660
|
onClick: () => handleClick("-"),
|
|
@@ -5628,7 +5665,7 @@ var NumpadPlus = ({ handleClick, handleUndo }) => {
|
|
|
5628
5665
|
)
|
|
5629
5666
|
] })
|
|
5630
5667
|
] }),
|
|
5631
|
-
/* @__PURE__ */ (0,
|
|
5668
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_material40.Box, { className: styles.numpadBackspace, children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5632
5669
|
RoundButton_default,
|
|
5633
5670
|
{
|
|
5634
5671
|
icon: "backspaceOutlined",
|
|
@@ -5644,7 +5681,7 @@ var NumpadPlus_default = NumpadPlus;
|
|
|
5644
5681
|
// src/components/Pagination/Pagination.tsx
|
|
5645
5682
|
var import_material41 = require("@mui/material");
|
|
5646
5683
|
var import_mui35 = require("tss-react/mui");
|
|
5647
|
-
var
|
|
5684
|
+
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
5648
5685
|
var paginationHeight = "56px";
|
|
5649
5686
|
var useStyles33 = (0, import_mui35.makeStyles)()((theme) => ({
|
|
5650
5687
|
root: {
|
|
@@ -5687,7 +5724,7 @@ var PaginationForTable = ({
|
|
|
5687
5724
|
updateFilters({ ...appliedFilters, page: value });
|
|
5688
5725
|
};
|
|
5689
5726
|
const isFixed = position === "fixed";
|
|
5690
|
-
return /* @__PURE__ */ (0,
|
|
5727
|
+
return /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(import_material41.Paper, { children: /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
|
|
5691
5728
|
"div",
|
|
5692
5729
|
{
|
|
5693
5730
|
style,
|
|
@@ -5695,11 +5732,11 @@ var PaginationForTable = ({
|
|
|
5695
5732
|
[classes.fixed]: isFixed
|
|
5696
5733
|
}),
|
|
5697
5734
|
children: [
|
|
5698
|
-
/* @__PURE__ */ (0,
|
|
5735
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_material41.Typography, { variant: "body1", children: [
|
|
5699
5736
|
"Page: ",
|
|
5700
5737
|
page
|
|
5701
5738
|
] }),
|
|
5702
|
-
/* @__PURE__ */ (0,
|
|
5739
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
5703
5740
|
import_material41.Pagination,
|
|
5704
5741
|
{
|
|
5705
5742
|
count: pagination.num_pages,
|
|
@@ -5716,8 +5753,8 @@ var Pagination_default = PaginationForTable;
|
|
|
5716
5753
|
// src/components/PhoneInput/PhoneInput.tsx
|
|
5717
5754
|
var import_react_phone_input_material_ui = __toESM(require("react-phone-input-material-ui"), 1);
|
|
5718
5755
|
var import_material42 = require("@mui/material");
|
|
5719
|
-
var
|
|
5720
|
-
var TextInput = (props) => /* @__PURE__ */ (0,
|
|
5756
|
+
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
5757
|
+
var TextInput = (props) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(import_material42.TextField, { ...props, variant: "standard" });
|
|
5721
5758
|
var PhoneInput = ({
|
|
5722
5759
|
value,
|
|
5723
5760
|
onChange,
|
|
@@ -5725,7 +5762,7 @@ var PhoneInput = ({
|
|
|
5725
5762
|
label = "Phone",
|
|
5726
5763
|
className,
|
|
5727
5764
|
error = false
|
|
5728
|
-
}) => /* @__PURE__ */ (0,
|
|
5765
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
5729
5766
|
import_material42.Box,
|
|
5730
5767
|
{
|
|
5731
5768
|
sx: {
|
|
@@ -5734,7 +5771,7 @@ var PhoneInput = ({
|
|
|
5734
5771
|
},
|
|
5735
5772
|
className,
|
|
5736
5773
|
children: [
|
|
5737
|
-
/* @__PURE__ */ (0,
|
|
5774
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
5738
5775
|
import_react_phone_input_material_ui.default,
|
|
5739
5776
|
{
|
|
5740
5777
|
label,
|
|
@@ -5749,7 +5786,7 @@ var PhoneInput = ({
|
|
|
5749
5786
|
}
|
|
5750
5787
|
}
|
|
5751
5788
|
),
|
|
5752
|
-
/* @__PURE__ */ (0,
|
|
5789
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
5753
5790
|
import_material42.Typography,
|
|
5754
5791
|
{
|
|
5755
5792
|
variant: "caption",
|
|
@@ -5773,7 +5810,7 @@ var import_react22 = require("react");
|
|
|
5773
5810
|
var import_react_hook_form7 = require("react-hook-form");
|
|
5774
5811
|
var import_material43 = require("@mui/material");
|
|
5775
5812
|
var import_mui36 = require("tss-react/mui");
|
|
5776
|
-
var
|
|
5813
|
+
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
5777
5814
|
var useStyles34 = (0, import_mui36.makeStyles)()((theme) => ({
|
|
5778
5815
|
container: {
|
|
5779
5816
|
position: "relative",
|
|
@@ -5916,7 +5953,7 @@ var PlusMinusInput = ({
|
|
|
5916
5953
|
updateInputValue(value);
|
|
5917
5954
|
};
|
|
5918
5955
|
const { classes, cx } = useStyles34();
|
|
5919
|
-
return /* @__PURE__ */ (0,
|
|
5956
|
+
return /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("div", { className: classes.container, children: /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
|
|
5920
5957
|
import_material43.FormGroup,
|
|
5921
5958
|
{
|
|
5922
5959
|
className: cx(classes.wrapper, {
|
|
@@ -5924,7 +5961,7 @@ var PlusMinusInput = ({
|
|
|
5924
5961
|
[classes.rightButtons]: buttonsPosition === "right"
|
|
5925
5962
|
}),
|
|
5926
5963
|
children: [
|
|
5927
|
-
/* @__PURE__ */ (0,
|
|
5964
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
5928
5965
|
RoundButton_default,
|
|
5929
5966
|
{
|
|
5930
5967
|
className: classes.minus,
|
|
@@ -5934,18 +5971,18 @@ var PlusMinusInput = ({
|
|
|
5934
5971
|
size: "small"
|
|
5935
5972
|
}
|
|
5936
5973
|
),
|
|
5937
|
-
/* @__PURE__ */ (0,
|
|
5938
|
-
/* @__PURE__ */ (0,
|
|
5974
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { children: [
|
|
5975
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
5939
5976
|
import_react_hook_form7.Controller,
|
|
5940
5977
|
{
|
|
5941
5978
|
control,
|
|
5942
5979
|
name: "inputValue",
|
|
5943
|
-
render: ({ field }) => /* @__PURE__ */ (0,
|
|
5980
|
+
render: ({ field }) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
5944
5981
|
import_material43.FormControlLabel,
|
|
5945
5982
|
{
|
|
5946
5983
|
...field,
|
|
5947
5984
|
className: classes.formControlLabel,
|
|
5948
|
-
control: /* @__PURE__ */ (0,
|
|
5985
|
+
control: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
5949
5986
|
import_material43.TextField,
|
|
5950
5987
|
{
|
|
5951
5988
|
className: classes.input,
|
|
@@ -5962,7 +5999,7 @@ var PlusMinusInput = ({
|
|
|
5962
5999
|
)
|
|
5963
6000
|
}
|
|
5964
6001
|
),
|
|
5965
|
-
errors.inputValue && /* @__PURE__ */ (0,
|
|
6002
|
+
errors.inputValue && /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
5966
6003
|
import_material43.Typography,
|
|
5967
6004
|
{
|
|
5968
6005
|
className: classes.errorText,
|
|
@@ -5973,7 +6010,7 @@ var PlusMinusInput = ({
|
|
|
5973
6010
|
}
|
|
5974
6011
|
)
|
|
5975
6012
|
] }),
|
|
5976
|
-
/* @__PURE__ */ (0,
|
|
6013
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
5977
6014
|
RoundButton_default,
|
|
5978
6015
|
{
|
|
5979
6016
|
className: classes.plus,
|
|
@@ -5997,21 +6034,21 @@ var import_mui38 = require("tss-react/mui");
|
|
|
5997
6034
|
// src/components/ProductImage/ProductImage.tsx
|
|
5998
6035
|
var import_material44 = require("@mui/material");
|
|
5999
6036
|
var import_mui37 = require("tss-react/mui");
|
|
6000
|
-
var
|
|
6037
|
+
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
6001
6038
|
var PImage = ({
|
|
6002
6039
|
classes,
|
|
6003
6040
|
image,
|
|
6004
6041
|
size = "c_productbust__image_xs",
|
|
6005
6042
|
status
|
|
6006
|
-
}) => /* @__PURE__ */ (0,
|
|
6007
|
-
/* @__PURE__ */ (0,
|
|
6043
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: classes.c_productbust__image, children: [
|
|
6044
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
6008
6045
|
import_material44.CardMedia,
|
|
6009
6046
|
{
|
|
6010
6047
|
className: classes[size],
|
|
6011
6048
|
image: image || "@/resources/img/peas.jpg"
|
|
6012
6049
|
}
|
|
6013
6050
|
),
|
|
6014
|
-
status && status !== "ACTIVE" && /* @__PURE__ */ (0,
|
|
6051
|
+
status && status !== "ACTIVE" && /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("div", { className: classes.c_productbust__label_status, children: status })
|
|
6015
6052
|
] });
|
|
6016
6053
|
var ProductImage = (0, import_mui37.withStyles)(PImage, (theme) => ({
|
|
6017
6054
|
c_productbust__label_status: {
|
|
@@ -6093,7 +6130,7 @@ var ProductImage = (0, import_mui37.withStyles)(PImage, (theme) => ({
|
|
|
6093
6130
|
var ProductImage_default = ProductImage;
|
|
6094
6131
|
|
|
6095
6132
|
// src/components/ProductBust/ProductBust.tsx
|
|
6096
|
-
var
|
|
6133
|
+
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
6097
6134
|
var PBust = ({
|
|
6098
6135
|
classes,
|
|
6099
6136
|
size,
|
|
@@ -6136,7 +6173,7 @@ var PBust = ({
|
|
|
6136
6173
|
break;
|
|
6137
6174
|
}
|
|
6138
6175
|
const [historyVisible, setHistoryVisible] = (0, import_react23.useState)(false);
|
|
6139
|
-
const historyDataIcon = () => /* @__PURE__ */ (0,
|
|
6176
|
+
const historyDataIcon = () => /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
6140
6177
|
RoundButton_default,
|
|
6141
6178
|
{
|
|
6142
6179
|
icon: "history",
|
|
@@ -6144,8 +6181,8 @@ var PBust = ({
|
|
|
6144
6181
|
size: "small"
|
|
6145
6182
|
}
|
|
6146
6183
|
);
|
|
6147
|
-
return /* @__PURE__ */ (0,
|
|
6148
|
-
/* @__PURE__ */ (0,
|
|
6184
|
+
return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: classes.c_productbust, children: [
|
|
6185
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
6149
6186
|
ProductImage_default,
|
|
6150
6187
|
{
|
|
6151
6188
|
image: product?.image,
|
|
@@ -6153,10 +6190,10 @@ var PBust = ({
|
|
|
6153
6190
|
size: imageSize
|
|
6154
6191
|
}
|
|
6155
6192
|
),
|
|
6156
|
-
/* @__PURE__ */ (0,
|
|
6157
|
-
/* @__PURE__ */ (0,
|
|
6158
|
-
/* @__PURE__ */ (0,
|
|
6159
|
-
/* @__PURE__ */ (0,
|
|
6193
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: classes.c_productbust__container, children: [
|
|
6194
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: classes.c_productbust__heading, children: [
|
|
6195
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { children: [
|
|
6196
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
6160
6197
|
import_material45.Typography,
|
|
6161
6198
|
{
|
|
6162
6199
|
component: "span",
|
|
@@ -6165,10 +6202,10 @@ var PBust = ({
|
|
|
6165
6202
|
children: !!locationData && locationData
|
|
6166
6203
|
}
|
|
6167
6204
|
),
|
|
6168
|
-
/* @__PURE__ */ (0,
|
|
6169
|
-
!product && /* @__PURE__ */ (0,
|
|
6170
|
-
primaryData || /* @__PURE__ */ (0,
|
|
6171
|
-
/* @__PURE__ */ (0,
|
|
6205
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_material45.Typography, { component: "span", className: classes[titleSize], children: product?.name }),
|
|
6206
|
+
!product && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_material45.Typography, { component: "span", className: classes[titleSize], children: "Empty Position" }),
|
|
6207
|
+
primaryData || /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)(import_jsx_runtime97.Fragment, { children: [
|
|
6208
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
6172
6209
|
import_material45.Typography,
|
|
6173
6210
|
{
|
|
6174
6211
|
style: { color: "#555" },
|
|
@@ -6176,7 +6213,7 @@ var PBust = ({
|
|
|
6176
6213
|
children: product?.category.name
|
|
6177
6214
|
}
|
|
6178
6215
|
),
|
|
6179
|
-
/* @__PURE__ */ (0,
|
|
6216
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
6180
6217
|
import_material45.Typography,
|
|
6181
6218
|
{
|
|
6182
6219
|
style: { color: "#A42966", textTransform: "uppercase" },
|
|
@@ -6186,14 +6223,14 @@ var PBust = ({
|
|
|
6186
6223
|
)
|
|
6187
6224
|
] })
|
|
6188
6225
|
] }),
|
|
6189
|
-
/* @__PURE__ */ (0,
|
|
6190
|
-
/* @__PURE__ */ (0,
|
|
6191
|
-
/* @__PURE__ */ (0,
|
|
6226
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: classes.c_productbust__btns, children: [
|
|
6227
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("div", { children: buttonData }),
|
|
6228
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("div", { children: !!locationId && historyDataIcon() })
|
|
6192
6229
|
] })
|
|
6193
6230
|
] }),
|
|
6194
|
-
/* @__PURE__ */ (0,
|
|
6231
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("div", { children: !!secondaryData && secondaryData })
|
|
6195
6232
|
] }),
|
|
6196
|
-
/* @__PURE__ */ (0,
|
|
6233
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
6197
6234
|
LocationHistoryDialog,
|
|
6198
6235
|
{
|
|
6199
6236
|
handleVisible: setHistoryVisible,
|
|
@@ -6297,7 +6334,7 @@ var ProductBust_default = ProductBust;
|
|
|
6297
6334
|
// src/components/RenderAvatar/RenderAvatar.tsx
|
|
6298
6335
|
var import_material46 = require("@mui/material");
|
|
6299
6336
|
var import_mui39 = require("tss-react/mui");
|
|
6300
|
-
var
|
|
6337
|
+
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
6301
6338
|
var RenderAvatar = ({ active }) => {
|
|
6302
6339
|
const StyledBadge = (0, import_mui39.withStyles)(import_material46.Badge, () => ({
|
|
6303
6340
|
root: {
|
|
@@ -6306,12 +6343,12 @@ var RenderAvatar = ({ active }) => {
|
|
|
6306
6343
|
}
|
|
6307
6344
|
}
|
|
6308
6345
|
}));
|
|
6309
|
-
return /* @__PURE__ */ (0,
|
|
6346
|
+
return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)(
|
|
6310
6347
|
import_material46.Box,
|
|
6311
6348
|
{
|
|
6312
6349
|
sx: { display: "flex", flexDirection: "column", alignItems: "center" },
|
|
6313
6350
|
children: [
|
|
6314
|
-
/* @__PURE__ */ (0,
|
|
6351
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
6315
6352
|
StyledBadge,
|
|
6316
6353
|
{
|
|
6317
6354
|
overlap: "circular",
|
|
@@ -6320,10 +6357,10 @@ var RenderAvatar = ({ active }) => {
|
|
|
6320
6357
|
horizontal: "right"
|
|
6321
6358
|
},
|
|
6322
6359
|
variant: "dot",
|
|
6323
|
-
children: /* @__PURE__ */ (0,
|
|
6360
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(import_material46.Avatar, {})
|
|
6324
6361
|
}
|
|
6325
6362
|
),
|
|
6326
|
-
/* @__PURE__ */ (0,
|
|
6363
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)(import_material46.Typography, { variant: "caption", children: active ? "Active" : "Disabled" })
|
|
6327
6364
|
]
|
|
6328
6365
|
}
|
|
6329
6366
|
);
|
|
@@ -6341,7 +6378,7 @@ var import_react24 = require("react");
|
|
|
6341
6378
|
var transformNameToID = (name) => name.replaceAll(" ", "-").toLocaleLowerCase();
|
|
6342
6379
|
|
|
6343
6380
|
// src/components/RenderContentList/RenderContentList.tsx
|
|
6344
|
-
var
|
|
6381
|
+
var import_jsx_runtime99 = require("react/jsx-runtime");
|
|
6345
6382
|
var useStyles35 = (0, import_mui40.makeStyles)()(
|
|
6346
6383
|
(_theme, _params, classes) => ({
|
|
6347
6384
|
root: {
|
|
@@ -6396,15 +6433,15 @@ var RenderContentList = ({
|
|
|
6396
6433
|
observer.current?.disconnect();
|
|
6397
6434
|
};
|
|
6398
6435
|
}, [items]);
|
|
6399
|
-
return /* @__PURE__ */ (0,
|
|
6436
|
+
return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
6400
6437
|
import_material47.List,
|
|
6401
6438
|
{
|
|
6402
6439
|
component: "nav",
|
|
6403
6440
|
"aria-labelledby": "nested-list-subheader",
|
|
6404
|
-
subheader: /* @__PURE__ */ (0,
|
|
6441
|
+
subheader: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(import_material47.ListSubheader, { component: "div", id: "nested-list-subheader", children: "Contents" }),
|
|
6405
6442
|
children: items.map((item) => {
|
|
6406
6443
|
const id = transformNameToID(item);
|
|
6407
|
-
return /* @__PURE__ */ (0,
|
|
6444
|
+
return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)(
|
|
6408
6445
|
import_material47.ListItemButton,
|
|
6409
6446
|
{
|
|
6410
6447
|
selected: active === id,
|
|
@@ -6420,8 +6457,8 @@ var RenderContentList = ({
|
|
|
6420
6457
|
}
|
|
6421
6458
|
},
|
|
6422
6459
|
children: [
|
|
6423
|
-
/* @__PURE__ */ (0,
|
|
6424
|
-
warningItems?.includes(item) && /* @__PURE__ */ (0,
|
|
6460
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)(import_material47.ListItemText, { primary: item }),
|
|
6461
|
+
warningItems?.includes(item) && /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(import_material47.Tooltip, { title: warningMessage, children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(import_icons_material10.WarningAmber, { color: "warning" }) })
|
|
6425
6462
|
]
|
|
6426
6463
|
},
|
|
6427
6464
|
id
|
|
@@ -6435,7 +6472,7 @@ var RenderContentList_default = RenderContentList;
|
|
|
6435
6472
|
// src/components/RowProductCard/RowProductCard.tsx
|
|
6436
6473
|
var import_material48 = require("@mui/material");
|
|
6437
6474
|
var import_mui41 = require("tss-react/mui");
|
|
6438
|
-
var
|
|
6475
|
+
var import_jsx_runtime100 = require("react/jsx-runtime");
|
|
6439
6476
|
var useStyles36 = (0, import_mui41.makeStyles)()((theme) => ({
|
|
6440
6477
|
wrapper: {
|
|
6441
6478
|
display: "flex",
|
|
@@ -6474,8 +6511,8 @@ var RowProductCard = ({
|
|
|
6474
6511
|
medium: "c_productbust__image_md",
|
|
6475
6512
|
large: "c_productbust__image_lg"
|
|
6476
6513
|
};
|
|
6477
|
-
return /* @__PURE__ */ (0,
|
|
6478
|
-
/* @__PURE__ */ (0,
|
|
6514
|
+
return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(import_material48.Paper, { className: classes.wrapper, children: [
|
|
6515
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
6479
6516
|
ProductImage_default,
|
|
6480
6517
|
{
|
|
6481
6518
|
image: product.image,
|
|
@@ -6483,14 +6520,14 @@ var RowProductCard = ({
|
|
|
6483
6520
|
size: imageSize[size]
|
|
6484
6521
|
}
|
|
6485
6522
|
),
|
|
6486
|
-
/* @__PURE__ */ (0,
|
|
6523
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
|
|
6487
6524
|
"div",
|
|
6488
6525
|
{
|
|
6489
6526
|
className: cx(classes.content, {
|
|
6490
6527
|
[classes.onlyProductName]: !hasColumns && !location
|
|
6491
6528
|
}),
|
|
6492
6529
|
children: [
|
|
6493
|
-
/* @__PURE__ */ (0,
|
|
6530
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
|
|
6494
6531
|
import_material48.Box,
|
|
6495
6532
|
{
|
|
6496
6533
|
className: classes.upperRow,
|
|
@@ -6500,26 +6537,26 @@ var RowProductCard = ({
|
|
|
6500
6537
|
alignItems: "center"
|
|
6501
6538
|
},
|
|
6502
6539
|
children: [
|
|
6503
|
-
/* @__PURE__ */ (0,
|
|
6504
|
-
location ? /* @__PURE__ */ (0,
|
|
6505
|
-
/* @__PURE__ */ (0,
|
|
6540
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { children: [
|
|
6541
|
+
location ? /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material48.Typography, { className: classes.smallTitle, variant: "caption", children: `Location: ${location}` }) : null,
|
|
6542
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material48.Typography, { variant: "h6", children: product.name })
|
|
6506
6543
|
] }),
|
|
6507
6544
|
children
|
|
6508
6545
|
]
|
|
6509
6546
|
}
|
|
6510
6547
|
),
|
|
6511
|
-
hasColumns ? /* @__PURE__ */ (0,
|
|
6512
|
-
/* @__PURE__ */ (0,
|
|
6513
|
-
/* @__PURE__ */ (0,
|
|
6548
|
+
hasColumns ? /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(import_jsx_runtime100.Fragment, { children: [
|
|
6549
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material48.Divider, { className: classes.divider }),
|
|
6550
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
6514
6551
|
import_material48.Box,
|
|
6515
6552
|
{
|
|
6516
6553
|
sx: {
|
|
6517
6554
|
display: "flex",
|
|
6518
6555
|
gap: "24px"
|
|
6519
6556
|
},
|
|
6520
|
-
children: columns.map((column) => /* @__PURE__ */ (0,
|
|
6521
|
-
/* @__PURE__ */ (0,
|
|
6522
|
-
typeof column.value === "string" ? /* @__PURE__ */ (0,
|
|
6557
|
+
children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { children: [
|
|
6558
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material48.Typography, { className: classes.smallTitle, variant: "caption", children: column.title }),
|
|
6559
|
+
typeof column.value === "string" ? /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_material48.Typography, { variant: "body1", children: column.value }) : column.value
|
|
6523
6560
|
] }, column.title))
|
|
6524
6561
|
}
|
|
6525
6562
|
)
|
|
@@ -6535,7 +6572,7 @@ var RowProductCard_default = RowProductCard;
|
|
|
6535
6572
|
var import_react26 = require("react");
|
|
6536
6573
|
var import_material49 = require("@mui/material");
|
|
6537
6574
|
var import_mui42 = require("tss-react/mui");
|
|
6538
|
-
var
|
|
6575
|
+
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
6539
6576
|
var useStyles37 = (0, import_mui42.makeStyles)()((theme) => ({
|
|
6540
6577
|
dialog: {
|
|
6541
6578
|
margin: "0 auto",
|
|
@@ -6628,10 +6665,10 @@ var ScrollableDialog = ({
|
|
|
6628
6665
|
setDialogBodyMaxHeight();
|
|
6629
6666
|
}
|
|
6630
6667
|
}, [isOpen, maxDialogHeight, header]);
|
|
6631
|
-
return /* @__PURE__ */ (0,
|
|
6632
|
-
header ? /* @__PURE__ */ (0,
|
|
6633
|
-
/* @__PURE__ */ (0,
|
|
6634
|
-
/* @__PURE__ */ (0,
|
|
6668
|
+
return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(import_material49.Dialog, { className: classes.dialog, fullWidth: true, maxWidth: false, open: isOpen, children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(import_material49.Fade, { in: isOpen, children: /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(import_material49.Paper, { className: classes.wrapper, children: [
|
|
6669
|
+
header ? /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: classes.header, id: "dialog-header", children: header }) : null,
|
|
6670
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: classes.body, children: [
|
|
6671
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
6635
6672
|
import_material49.Typography,
|
|
6636
6673
|
{
|
|
6637
6674
|
className: classes.title,
|
|
@@ -6640,7 +6677,7 @@ var ScrollableDialog = ({
|
|
|
6640
6677
|
children: title
|
|
6641
6678
|
}
|
|
6642
6679
|
),
|
|
6643
|
-
/* @__PURE__ */ (0,
|
|
6680
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
6644
6681
|
"div",
|
|
6645
6682
|
{
|
|
6646
6683
|
className: cx(classes.scrollableContainer, {
|
|
@@ -6654,8 +6691,8 @@ var ScrollableDialog = ({
|
|
|
6654
6691
|
}
|
|
6655
6692
|
)
|
|
6656
6693
|
] }),
|
|
6657
|
-
/* @__PURE__ */ (0,
|
|
6658
|
-
footer ? /* @__PURE__ */ (0,
|
|
6694
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(import_material49.Divider, {}),
|
|
6695
|
+
footer ? /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
6659
6696
|
import_material49.Box,
|
|
6660
6697
|
{
|
|
6661
6698
|
className: classes.footer,
|
|
@@ -6681,7 +6718,7 @@ var React2 = __toESM(require("react"), 1);
|
|
|
6681
6718
|
var import_icons_material11 = require("@mui/icons-material");
|
|
6682
6719
|
var import_material50 = require("@mui/material");
|
|
6683
6720
|
var import_mui43 = require("tss-react/mui");
|
|
6684
|
-
var
|
|
6721
|
+
var import_jsx_runtime102 = require("react/jsx-runtime");
|
|
6685
6722
|
var useStyles38 = (0, import_mui43.makeStyles)()((theme) => ({
|
|
6686
6723
|
searchContainer: {
|
|
6687
6724
|
height: 46,
|
|
@@ -6741,9 +6778,9 @@ var SearchWithFilters = ({
|
|
|
6741
6778
|
(0, import_react27.useEffect)(() => {
|
|
6742
6779
|
setSearchText(searchValue);
|
|
6743
6780
|
}, [searchValue]);
|
|
6744
|
-
return /* @__PURE__ */ (0,
|
|
6745
|
-
/* @__PURE__ */ (0,
|
|
6746
|
-
/* @__PURE__ */ (0,
|
|
6781
|
+
return /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(import_material50.Paper, { className: classes.searchContainer, children: [
|
|
6782
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)(import_icons_material11.Search, { className: classes.icon, fontSize: "small" }),
|
|
6783
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
6747
6784
|
import_material50.InputBase,
|
|
6748
6785
|
{
|
|
6749
6786
|
className: classes.input,
|
|
@@ -6755,8 +6792,8 @@ var SearchWithFilters = ({
|
|
|
6755
6792
|
inputProps: { "aria-label": "search" }
|
|
6756
6793
|
}
|
|
6757
6794
|
),
|
|
6758
|
-
/* @__PURE__ */ (0,
|
|
6759
|
-
/* @__PURE__ */ (0,
|
|
6795
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)(import_material50.Divider, { className: classes.divider, orientation: "vertical" }),
|
|
6796
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
6760
6797
|
import_material50.Button,
|
|
6761
6798
|
{
|
|
6762
6799
|
className: classes.filterButton,
|
|
@@ -6764,7 +6801,7 @@ var SearchWithFilters = ({
|
|
|
6764
6801
|
disabled,
|
|
6765
6802
|
children: [
|
|
6766
6803
|
"Filters",
|
|
6767
|
-
showFilters ? /* @__PURE__ */ (0,
|
|
6804
|
+
showFilters ? /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(import_icons_material11.ArrowDropUp, {}) : /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(import_icons_material11.ArrowDropDown, {})
|
|
6768
6805
|
]
|
|
6769
6806
|
}
|
|
6770
6807
|
)
|
|
@@ -6773,7 +6810,7 @@ var SearchWithFilters = ({
|
|
|
6773
6810
|
var SearchWithFilters_default = React2.memo(SearchWithFilters);
|
|
6774
6811
|
|
|
6775
6812
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeader.tsx
|
|
6776
|
-
var
|
|
6813
|
+
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
6777
6814
|
var useStyles39 = (0, import_mui44.makeStyles)()((theme) => ({
|
|
6778
6815
|
wrapper: {
|
|
6779
6816
|
display: "flex",
|
|
@@ -6809,11 +6846,11 @@ var SearchAndFilterHeader = ({
|
|
|
6809
6846
|
searchValue
|
|
6810
6847
|
}) => {
|
|
6811
6848
|
const { classes } = useStyles39();
|
|
6812
|
-
return /* @__PURE__ */ (0,
|
|
6813
|
-
/* @__PURE__ */ (0,
|
|
6814
|
-
/* @__PURE__ */ (0,
|
|
6815
|
-
/* @__PURE__ */ (0,
|
|
6816
|
-
/* @__PURE__ */ (0,
|
|
6849
|
+
return /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_material51.Paper, { children: /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(import_material51.Box, { className: classes.wrapper, children: [
|
|
6850
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(import_material51.Box, { className: classes.container, children: [
|
|
6851
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(import_material51.Box, { className: classes.leftSection, children: [
|
|
6852
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)(AppLabel_default, { appName }),
|
|
6853
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
6817
6854
|
SearchWithFilters_default,
|
|
6818
6855
|
{
|
|
6819
6856
|
searchValue,
|
|
@@ -6824,9 +6861,9 @@ var SearchAndFilterHeader = ({
|
|
|
6824
6861
|
}
|
|
6825
6862
|
)
|
|
6826
6863
|
] }),
|
|
6827
|
-
/* @__PURE__ */ (0,
|
|
6864
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_material51.Box, { children: extraButton })
|
|
6828
6865
|
] }),
|
|
6829
|
-
showFilters ? /* @__PURE__ */ (0,
|
|
6866
|
+
showFilters ? /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_material51.Box, { children: filtersComponent }) : null,
|
|
6830
6867
|
appliedFiltersComponent
|
|
6831
6868
|
] }) });
|
|
6832
6869
|
};
|
|
@@ -6842,7 +6879,7 @@ var import_react28 = require("react");
|
|
|
6842
6879
|
var import_icons_material12 = require("@mui/icons-material");
|
|
6843
6880
|
var import_material52 = require("@mui/material");
|
|
6844
6881
|
var import_mui45 = require("tss-react/mui");
|
|
6845
|
-
var
|
|
6882
|
+
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
6846
6883
|
var useStyles40 = (0, import_mui45.makeStyles)()((theme) => ({
|
|
6847
6884
|
c_search: {
|
|
6848
6885
|
height: 46,
|
|
@@ -6917,9 +6954,9 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6917
6954
|
}
|
|
6918
6955
|
};
|
|
6919
6956
|
const ArrowIcon = isOpen ? import_icons_material12.ArrowDropUp : import_icons_material12.ArrowDropDown;
|
|
6920
|
-
return /* @__PURE__ */ (0,
|
|
6921
|
-
/* @__PURE__ */ (0,
|
|
6922
|
-
/* @__PURE__ */ (0,
|
|
6957
|
+
return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(import_material52.Paper, { className: classes.c_search, children: [
|
|
6958
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_material52.Box, { className: classes.c_search__icon, children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_icons_material12.Search, { className: classes.icon, fontSize: "small" }) }),
|
|
6959
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
6923
6960
|
import_material52.InputBase,
|
|
6924
6961
|
{
|
|
6925
6962
|
className: classes.c_search__input,
|
|
@@ -6929,22 +6966,22 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6929
6966
|
onKeyDown: handleKeyPress
|
|
6930
6967
|
}
|
|
6931
6968
|
),
|
|
6932
|
-
showFilterButton && /* @__PURE__ */ (0,
|
|
6933
|
-
/* @__PURE__ */ (0,
|
|
6969
|
+
showFilterButton && /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(import_jsx_runtime104.Fragment, { children: [
|
|
6970
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
6934
6971
|
import_material52.Divider,
|
|
6935
6972
|
{
|
|
6936
6973
|
className: classes.c_search__divider,
|
|
6937
6974
|
orientation: "vertical"
|
|
6938
6975
|
}
|
|
6939
6976
|
),
|
|
6940
|
-
/* @__PURE__ */ (0,
|
|
6977
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
|
|
6941
6978
|
import_material52.Button,
|
|
6942
6979
|
{
|
|
6943
6980
|
className: classes.c_search__bt_filter,
|
|
6944
6981
|
onClick: handleFilterButtonClick,
|
|
6945
6982
|
children: [
|
|
6946
6983
|
"Filters",
|
|
6947
|
-
/* @__PURE__ */ (0,
|
|
6984
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(ArrowIcon, { className: classes.c_search__bt_icon_filter })
|
|
6948
6985
|
]
|
|
6949
6986
|
}
|
|
6950
6987
|
)
|
|
@@ -6954,7 +6991,7 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
6954
6991
|
var SearchWithFiltersForTable_default = (0, import_react28.memo)(SearchWithFiltersForTable);
|
|
6955
6992
|
|
|
6956
6993
|
// src/components/SearchAndFilterHeader/SearchAndFilterHeaderForTable.tsx
|
|
6957
|
-
var
|
|
6994
|
+
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
6958
6995
|
var useStyles41 = (0, import_mui46.makeStyles)()((theme) => ({
|
|
6959
6996
|
container: {
|
|
6960
6997
|
display: "flex",
|
|
@@ -6986,10 +7023,10 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
6986
7023
|
searchedValue
|
|
6987
7024
|
} = props;
|
|
6988
7025
|
const { classes } = useStyles41();
|
|
6989
|
-
return /* @__PURE__ */ (0,
|
|
6990
|
-
/* @__PURE__ */ (0,
|
|
6991
|
-
/* @__PURE__ */ (0,
|
|
6992
|
-
/* @__PURE__ */ (0,
|
|
7026
|
+
return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(import_material53.Box, { className: classes.container, children: [
|
|
7027
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(import_material53.Box, { className: classes.leftSection, children: [
|
|
7028
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(AppLabel_default, { appName }),
|
|
7029
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
6993
7030
|
SearchWithFiltersForTable_default,
|
|
6994
7031
|
{
|
|
6995
7032
|
onFilterButtonClick,
|
|
@@ -7000,17 +7037,17 @@ var SearchAndFilterHeaderForTable = (props) => {
|
|
|
7000
7037
|
searchedValue
|
|
7001
7038
|
}
|
|
7002
7039
|
),
|
|
7003
|
-
copy && /* @__PURE__ */ (0,
|
|
7040
|
+
copy && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
7004
7041
|
import_material53.Box,
|
|
7005
7042
|
{
|
|
7006
7043
|
sx: {
|
|
7007
7044
|
margin: 0.5
|
|
7008
7045
|
},
|
|
7009
|
-
children: /* @__PURE__ */ (0,
|
|
7046
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(OutlinedButton_default, { copy })
|
|
7010
7047
|
}
|
|
7011
7048
|
)
|
|
7012
7049
|
] }),
|
|
7013
|
-
/* @__PURE__ */ (0,
|
|
7050
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_material53.Box, { children: button })
|
|
7014
7051
|
] });
|
|
7015
7052
|
};
|
|
7016
7053
|
var SearchAndFilterHeaderForTable_default = React3.memo(SearchAndFilterHeaderForTable);
|
|
@@ -7019,7 +7056,7 @@ var SearchAndFilterHeaderForTable_default = React3.memo(SearchAndFilterHeaderFor
|
|
|
7019
7056
|
var import_icons_material13 = require("@mui/icons-material");
|
|
7020
7057
|
var import_material54 = require("@mui/material");
|
|
7021
7058
|
var import_mui47 = require("tss-react/mui");
|
|
7022
|
-
var
|
|
7059
|
+
var import_jsx_runtime106 = require("react/jsx-runtime");
|
|
7023
7060
|
var useStyles42 = (0, import_mui47.makeStyles)()((theme) => ({
|
|
7024
7061
|
container: {
|
|
7025
7062
|
display: "flex",
|
|
@@ -7062,9 +7099,9 @@ var SectionName = ({
|
|
|
7062
7099
|
openHistoryLog
|
|
7063
7100
|
}) => {
|
|
7064
7101
|
const { classes } = useStyles42();
|
|
7065
|
-
return /* @__PURE__ */ (0,
|
|
7066
|
-
/* @__PURE__ */ (0,
|
|
7067
|
-
/* @__PURE__ */ (0,
|
|
7102
|
+
return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_material54.Box, { className: classes.container, children: [
|
|
7103
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_material54.Box, { className: classes.titleContainer, children: [
|
|
7104
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
7068
7105
|
import_material54.Typography,
|
|
7069
7106
|
{
|
|
7070
7107
|
variant: "h5",
|
|
@@ -7074,7 +7111,7 @@ var SectionName = ({
|
|
|
7074
7111
|
children: name
|
|
7075
7112
|
}
|
|
7076
7113
|
),
|
|
7077
|
-
tooltipDescription ? /* @__PURE__ */ (0,
|
|
7114
|
+
tooltipDescription ? /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_material54.Tooltip, { title: tooltipDescription, placement: "right", children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
7078
7115
|
import_icons_material13.Info,
|
|
7079
7116
|
{
|
|
7080
7117
|
fontSize: "small",
|
|
@@ -7083,8 +7120,8 @@ var SectionName = ({
|
|
|
7083
7120
|
}
|
|
7084
7121
|
) }) : null
|
|
7085
7122
|
] }),
|
|
7086
|
-
/* @__PURE__ */ (0,
|
|
7087
|
-
buttonText ? /* @__PURE__ */ (0,
|
|
7123
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(import_material54.Box, { className: classes.actionButtons, children: [
|
|
7124
|
+
buttonText ? /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
7088
7125
|
ExtendedButton_default,
|
|
7089
7126
|
{
|
|
7090
7127
|
type: buttonType,
|
|
@@ -7097,8 +7134,8 @@ var SectionName = ({
|
|
|
7097
7134
|
variant: "text"
|
|
7098
7135
|
}
|
|
7099
7136
|
) : null,
|
|
7100
|
-
openHistoryLog && buttonText && /* @__PURE__ */ (0,
|
|
7101
|
-
openHistoryLog && /* @__PURE__ */ (0,
|
|
7137
|
+
openHistoryLog && buttonText && /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_material54.Divider, { orientation: "vertical", sx: { height: "24px" } }),
|
|
7138
|
+
openHistoryLog && /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_material54.IconButton, { size: "small", onClick: () => openHistoryLog(), children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_icons_material13.History, {}) })
|
|
7102
7139
|
] })
|
|
7103
7140
|
] });
|
|
7104
7141
|
};
|
|
@@ -7108,7 +7145,7 @@ var SectionName_default = SectionName;
|
|
|
7108
7145
|
var import_react29 = require("react");
|
|
7109
7146
|
var import_material55 = require("@mui/material");
|
|
7110
7147
|
var import_mui48 = require("tss-react/mui");
|
|
7111
|
-
var
|
|
7148
|
+
var import_jsx_runtime107 = require("react/jsx-runtime");
|
|
7112
7149
|
var useStyles43 = (0, import_mui48.makeStyles)()(() => ({
|
|
7113
7150
|
container: {
|
|
7114
7151
|
display: "flex",
|
|
@@ -7175,7 +7212,7 @@ var SmartSelect = (0, import_react29.forwardRef)(
|
|
|
7175
7212
|
onChange(selectedOption);
|
|
7176
7213
|
}
|
|
7177
7214
|
};
|
|
7178
|
-
return /* @__PURE__ */ (0,
|
|
7215
|
+
return /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(
|
|
7179
7216
|
import_material55.FormControl,
|
|
7180
7217
|
{
|
|
7181
7218
|
fullWidth: true,
|
|
@@ -7185,7 +7222,7 @@ var SmartSelect = (0, import_react29.forwardRef)(
|
|
|
7185
7222
|
"data-testid": dataTestId,
|
|
7186
7223
|
disabled,
|
|
7187
7224
|
children: [
|
|
7188
|
-
inputLabel && /* @__PURE__ */ (0,
|
|
7225
|
+
inputLabel && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
7189
7226
|
import_material55.InputLabel,
|
|
7190
7227
|
{
|
|
7191
7228
|
id: "smart-select-label",
|
|
@@ -7193,7 +7230,7 @@ var SmartSelect = (0, import_react29.forwardRef)(
|
|
|
7193
7230
|
children: inputLabel
|
|
7194
7231
|
}
|
|
7195
7232
|
),
|
|
7196
|
-
/* @__PURE__ */ (0,
|
|
7233
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(
|
|
7197
7234
|
import_material55.Select,
|
|
7198
7235
|
{
|
|
7199
7236
|
ref,
|
|
@@ -7210,17 +7247,17 @@ var SmartSelect = (0, import_react29.forwardRef)(
|
|
|
7210
7247
|
MenuProps: menuProps,
|
|
7211
7248
|
label: inputLabel,
|
|
7212
7249
|
children: [
|
|
7213
|
-
isFetching && /* @__PURE__ */ (0,
|
|
7250
|
+
isFetching && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
7214
7251
|
import_material55.MenuItem,
|
|
7215
7252
|
{
|
|
7216
7253
|
disabled: true,
|
|
7217
7254
|
"data-testid": `${dataTestId}-loading`,
|
|
7218
7255
|
id: `${dataTestId}-loading`,
|
|
7219
|
-
children: /* @__PURE__ */ (0,
|
|
7256
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(import_material55.CircularProgress, { size: 24 })
|
|
7220
7257
|
}
|
|
7221
7258
|
),
|
|
7222
|
-
(defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */ (0,
|
|
7223
|
-
localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */ (0,
|
|
7259
|
+
(defaultOption === null || !defaultOptionLabelIsValid || !defaultOptionValueIsValid) && !isFetching && options?.length === 0 && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(import_material55.MenuItem, { disabled: true, "data-testid": `${dataTestId}-empty-message`, children: emptyMessage }),
|
|
7260
|
+
localOptions.length === 0 && !isFetching && options?.length !== 0 && defaultOptionLabelIsValid && defaultOptionValueIsValid && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
7224
7261
|
import_material55.MenuItem,
|
|
7225
7262
|
{
|
|
7226
7263
|
value: defaultOption?.value,
|
|
@@ -7228,7 +7265,7 @@ var SmartSelect = (0, import_react29.forwardRef)(
|
|
|
7228
7265
|
children: defaultOption?.label
|
|
7229
7266
|
}
|
|
7230
7267
|
),
|
|
7231
|
-
!isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */ (0,
|
|
7268
|
+
!isFetching && combinedOptions.length > 0 && combinedOptions.map((option) => /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
7232
7269
|
import_material55.MenuItem,
|
|
7233
7270
|
{
|
|
7234
7271
|
value: option?.value,
|
|
@@ -7241,7 +7278,7 @@ var SmartSelect = (0, import_react29.forwardRef)(
|
|
|
7241
7278
|
]
|
|
7242
7279
|
}
|
|
7243
7280
|
),
|
|
7244
|
-
helperText && /* @__PURE__ */ (0,
|
|
7281
|
+
helperText && /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(import_material55.FormHelperText, { "data-testid": `${dataTestId}-helper-text`, children: helperText })
|
|
7245
7282
|
]
|
|
7246
7283
|
}
|
|
7247
7284
|
);
|
|
@@ -7254,7 +7291,7 @@ var import_react30 = require("react");
|
|
|
7254
7291
|
var import_material56 = require("@mui/material");
|
|
7255
7292
|
var import_red2 = __toESM(require("@mui/material/colors/red"), 1);
|
|
7256
7293
|
var import_mui49 = require("tss-react/mui");
|
|
7257
|
-
var
|
|
7294
|
+
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
7258
7295
|
var useStyles44 = (0, import_mui49.makeStyles)()((theme) => ({
|
|
7259
7296
|
red: {
|
|
7260
7297
|
backgroundColor: import_red2.default["50"],
|
|
@@ -7269,7 +7306,7 @@ var useStyles44 = (0, import_mui49.makeStyles)()((theme) => ({
|
|
|
7269
7306
|
}));
|
|
7270
7307
|
var SquareLabel = ({ color, copy }) => {
|
|
7271
7308
|
const { classes } = useStyles44();
|
|
7272
|
-
return /* @__PURE__ */ (0,
|
|
7309
|
+
return /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(import_material56.Typography, { className: classes[color], children: copy });
|
|
7273
7310
|
};
|
|
7274
7311
|
var SquareLabel_default = (0, import_react30.memo)(SquareLabel);
|
|
7275
7312
|
|
|
@@ -7277,7 +7314,7 @@ var SquareLabel_default = (0, import_react30.memo)(SquareLabel);
|
|
|
7277
7314
|
var import_react31 = require("react");
|
|
7278
7315
|
var import_material57 = require("@mui/material");
|
|
7279
7316
|
var import_mui50 = require("tss-react/mui");
|
|
7280
|
-
var
|
|
7317
|
+
var import_jsx_runtime109 = require("react/jsx-runtime");
|
|
7281
7318
|
var LSwitch = ({
|
|
7282
7319
|
checked,
|
|
7283
7320
|
labelOn,
|
|
@@ -7285,7 +7322,7 @@ var LSwitch = ({
|
|
|
7285
7322
|
handleChange,
|
|
7286
7323
|
classes,
|
|
7287
7324
|
disabled
|
|
7288
|
-
}) => /* @__PURE__ */ (0,
|
|
7325
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("div", { className: classes.c_switch, children: /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)(
|
|
7289
7326
|
import_material57.Grid2,
|
|
7290
7327
|
{
|
|
7291
7328
|
component: "label",
|
|
@@ -7295,8 +7332,8 @@ var LSwitch = ({
|
|
|
7295
7332
|
alignItems: "center"
|
|
7296
7333
|
},
|
|
7297
7334
|
children: [
|
|
7298
|
-
labelOff && /* @__PURE__ */ (0,
|
|
7299
|
-
/* @__PURE__ */ (0,
|
|
7335
|
+
labelOff && /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(import_material57.Grid2, { children: labelOff }),
|
|
7336
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)(import_material57.Grid2, { children: /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
7300
7337
|
import_material57.Switch,
|
|
7301
7338
|
{
|
|
7302
7339
|
checked,
|
|
@@ -7305,7 +7342,7 @@ var LSwitch = ({
|
|
|
7305
7342
|
disabled
|
|
7306
7343
|
}
|
|
7307
7344
|
) }),
|
|
7308
|
-
labelOn && /* @__PURE__ */ (0,
|
|
7345
|
+
labelOn && /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(import_material57.Grid2, { children: labelOn })
|
|
7309
7346
|
]
|
|
7310
7347
|
}
|
|
7311
7348
|
) });
|
|
@@ -7335,7 +7372,7 @@ var import_icons_material14 = require("@mui/icons-material");
|
|
|
7335
7372
|
var import_material58 = require("@mui/material");
|
|
7336
7373
|
var import_classnames3 = __toESM(require("classnames"), 1);
|
|
7337
7374
|
var import_mui51 = require("tss-react/mui");
|
|
7338
|
-
var
|
|
7375
|
+
var import_jsx_runtime110 = require("react/jsx-runtime");
|
|
7339
7376
|
var useStyles45 = (0, import_mui51.makeStyles)()((theme) => ({
|
|
7340
7377
|
filterMenu: {
|
|
7341
7378
|
display: "flex",
|
|
@@ -7406,8 +7443,8 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7406
7443
|
}
|
|
7407
7444
|
setSelectedFilters(newSelected);
|
|
7408
7445
|
};
|
|
7409
|
-
return /* @__PURE__ */ (0,
|
|
7410
|
-
/* @__PURE__ */ (0,
|
|
7446
|
+
return /* @__PURE__ */ (0, import_jsx_runtime110.jsxs)(import_jsx_runtime110.Fragment, { children: [
|
|
7447
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
7411
7448
|
import_material58.IconButton,
|
|
7412
7449
|
{
|
|
7413
7450
|
disableRipple: true,
|
|
@@ -7417,17 +7454,17 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7417
7454
|
className: (0, import_classnames3.default)("filter-menu-trigger", {
|
|
7418
7455
|
"has-active-filters": hasActiveFilters
|
|
7419
7456
|
}),
|
|
7420
|
-
children: hasActiveFilters ? /* @__PURE__ */ (0,
|
|
7457
|
+
children: hasActiveFilters ? /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
7421
7458
|
import_material58.Chip,
|
|
7422
7459
|
{
|
|
7423
7460
|
sx: { height: 24 },
|
|
7424
7461
|
label: headerFilters[headCell.id]?.length,
|
|
7425
|
-
icon: /* @__PURE__ */ (0,
|
|
7462
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_icons_material14.FilterList, { style: { fontSize: 18 }, color: "primary" })
|
|
7426
7463
|
}
|
|
7427
|
-
) : /* @__PURE__ */ (0,
|
|
7464
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_icons_material14.FilterList, { style: { fontSize: 18 } })
|
|
7428
7465
|
}
|
|
7429
7466
|
),
|
|
7430
|
-
/* @__PURE__ */ (0,
|
|
7467
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
7431
7468
|
import_material58.Menu,
|
|
7432
7469
|
{
|
|
7433
7470
|
open: !!anchorEl,
|
|
@@ -7436,19 +7473,19 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7436
7473
|
"data-testid": "filter-menu",
|
|
7437
7474
|
anchorOrigin: { vertical: "bottom", horizontal: "right" },
|
|
7438
7475
|
transformOrigin: { vertical: "top", horizontal: "right" },
|
|
7439
|
-
children: /* @__PURE__ */ (0,
|
|
7476
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime110.jsxs)(import_material58.Box, { className: classes.filterMenu, children: [
|
|
7440
7477
|
headCell.filterOptionsQuery?.data?.map(
|
|
7441
7478
|
(option) => {
|
|
7442
7479
|
const resolvedOption = resolveFilterOption(option);
|
|
7443
|
-
return /* @__PURE__ */ (0,
|
|
7480
|
+
return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
7444
7481
|
import_material58.FormControl,
|
|
7445
7482
|
{
|
|
7446
7483
|
className: classes.filterCheckboxDropdown,
|
|
7447
|
-
children: /* @__PURE__ */ (0,
|
|
7484
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
7448
7485
|
import_material58.FormControlLabel,
|
|
7449
7486
|
{
|
|
7450
7487
|
label: resolvedOption,
|
|
7451
|
-
control: /* @__PURE__ */ (0,
|
|
7488
|
+
control: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
7452
7489
|
import_material58.Checkbox,
|
|
7453
7490
|
{
|
|
7454
7491
|
disableRipple: true,
|
|
@@ -7465,13 +7502,13 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7465
7502
|
);
|
|
7466
7503
|
}
|
|
7467
7504
|
),
|
|
7468
|
-
/* @__PURE__ */ (0,
|
|
7469
|
-
/* @__PURE__ */ (0,
|
|
7470
|
-
/* @__PURE__ */ (0,
|
|
7505
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_material58.Divider, {}),
|
|
7506
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsxs)(import_material58.FormControl, { className: classes.filterCheckboxDropdown, children: [
|
|
7507
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
7471
7508
|
import_material58.FormControlLabel,
|
|
7472
7509
|
{
|
|
7473
7510
|
label: "Save Filters",
|
|
7474
|
-
control: /* @__PURE__ */ (0,
|
|
7511
|
+
control: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
7475
7512
|
import_material58.Checkbox,
|
|
7476
7513
|
{
|
|
7477
7514
|
disableRipple: true,
|
|
@@ -7481,11 +7518,11 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7481
7518
|
)
|
|
7482
7519
|
}
|
|
7483
7520
|
),
|
|
7484
|
-
/* @__PURE__ */ (0,
|
|
7521
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_material58.FormHelperText, { sx: { margin: 0 }, children: "Filters auto-apply on return." })
|
|
7485
7522
|
] }),
|
|
7486
|
-
/* @__PURE__ */ (0,
|
|
7487
|
-
/* @__PURE__ */ (0,
|
|
7488
|
-
/* @__PURE__ */ (0,
|
|
7523
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_material58.Divider, {}),
|
|
7524
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsxs)(import_material58.Box, { className: classes.applyFilterButtonsContainer, children: [
|
|
7525
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
7489
7526
|
ExtendedButton_default,
|
|
7490
7527
|
{
|
|
7491
7528
|
buttonType: "button",
|
|
@@ -7494,7 +7531,7 @@ var SmartTableHeaderFilterMenu = ({
|
|
|
7494
7531
|
onClick: () => setSelectedFilters([])
|
|
7495
7532
|
}
|
|
7496
7533
|
),
|
|
7497
|
-
/* @__PURE__ */ (0,
|
|
7534
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
7498
7535
|
ExtendedButton_default,
|
|
7499
7536
|
{
|
|
7500
7537
|
copy: "Apply",
|
|
@@ -7523,7 +7560,7 @@ var SmartTableHeaderFilterMenu_default = import_react32.default.memo(SmartTableH
|
|
|
7523
7560
|
var import_react33 = require("react");
|
|
7524
7561
|
var import_material59 = require("@mui/material");
|
|
7525
7562
|
var import_mui52 = require("tss-react/mui");
|
|
7526
|
-
var
|
|
7563
|
+
var import_jsx_runtime111 = require("react/jsx-runtime");
|
|
7527
7564
|
var useStyles46 = (0, import_mui52.makeStyles)()((theme) => ({
|
|
7528
7565
|
root: {
|
|
7529
7566
|
backgroundColor: colors.neutral100,
|
|
@@ -7595,8 +7632,8 @@ var SmartTableHeader = ({
|
|
|
7595
7632
|
onRequestSort(event, property);
|
|
7596
7633
|
};
|
|
7597
7634
|
const isSortActive = (headCellId) => orderBy === headCellId;
|
|
7598
|
-
return /* @__PURE__ */ (0,
|
|
7599
|
-
enableCheckboxSelection ? /* @__PURE__ */ (0,
|
|
7635
|
+
return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(import_material59.TableHead, { className: classes.root, children: /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(import_material59.TableRow, { children: [
|
|
7636
|
+
enableCheckboxSelection ? /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(import_material59.TableCell, { padding: "checkbox", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
7600
7637
|
import_material59.Checkbox,
|
|
7601
7638
|
{
|
|
7602
7639
|
color: "primary",
|
|
@@ -7605,14 +7642,14 @@ var SmartTableHeader = ({
|
|
|
7605
7642
|
onChange: onSelectAllClick
|
|
7606
7643
|
}
|
|
7607
7644
|
) }) : null,
|
|
7608
|
-
headCells.map((headCell) => /* @__PURE__ */ (0,
|
|
7645
|
+
headCells.map((headCell) => /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(
|
|
7609
7646
|
import_material59.TableCell,
|
|
7610
7647
|
{
|
|
7611
7648
|
className: classes.tableHeaderContent,
|
|
7612
7649
|
align: "left",
|
|
7613
7650
|
sortDirection: orderBy === headCell.id ? order : false,
|
|
7614
7651
|
children: [
|
|
7615
|
-
/* @__PURE__ */ (0,
|
|
7652
|
+
/* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(
|
|
7616
7653
|
import_material59.TableSortLabel,
|
|
7617
7654
|
{
|
|
7618
7655
|
"data-testid": "table-sort-label",
|
|
@@ -7621,11 +7658,11 @@ var SmartTableHeader = ({
|
|
|
7621
7658
|
onClick: createSortHandler(headCell.id),
|
|
7622
7659
|
children: [
|
|
7623
7660
|
headCell.renderHeader ?? headCell.label,
|
|
7624
|
-
orderBy === headCell.id ? /* @__PURE__ */ (0,
|
|
7661
|
+
orderBy === headCell.id ? /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: classes.visuallyHidden, children: order === "desc" ? "sorted descending" : "sorted ascending" }) : null
|
|
7625
7662
|
]
|
|
7626
7663
|
}
|
|
7627
7664
|
),
|
|
7628
|
-
headCell.filterOptionsQuery ? /* @__PURE__ */ (0,
|
|
7665
|
+
headCell.filterOptionsQuery ? /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
7629
7666
|
SmartTableHeaderFilterMenu_default,
|
|
7630
7667
|
{
|
|
7631
7668
|
headCell,
|
|
@@ -7651,11 +7688,11 @@ var import_uuid = require("uuid");
|
|
|
7651
7688
|
|
|
7652
7689
|
// src/components/TableLoading/TableLoading.tsx
|
|
7653
7690
|
var import_material60 = require("@mui/material");
|
|
7654
|
-
var
|
|
7691
|
+
var import_jsx_runtime112 = require("react/jsx-runtime");
|
|
7655
7692
|
var TableLoading = ({
|
|
7656
7693
|
rowsPerPage,
|
|
7657
7694
|
rowHeight
|
|
7658
|
-
}) => /* @__PURE__ */ (0,
|
|
7695
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(import_material60.Box, { children: Array.from({ length: rowsPerPage ?? 0 }).map((_, index) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
7659
7696
|
import_material60.Skeleton,
|
|
7660
7697
|
{
|
|
7661
7698
|
animation: "pulse",
|
|
@@ -7704,7 +7741,7 @@ function calculateRowsPerPage(rowHeight) {
|
|
|
7704
7741
|
}
|
|
7705
7742
|
|
|
7706
7743
|
// src/components/Table/Table.tsx
|
|
7707
|
-
var
|
|
7744
|
+
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
7708
7745
|
var useStyles47 = (0, import_mui53.makeStyles)()(() => ({
|
|
7709
7746
|
root: {
|
|
7710
7747
|
height: "calc(100vh - 262px)",
|
|
@@ -7782,24 +7819,24 @@ var Table = ({
|
|
|
7782
7819
|
);
|
|
7783
7820
|
const rowsComponents = rows.map((row) => {
|
|
7784
7821
|
if (RenderItem) {
|
|
7785
|
-
return /* @__PURE__ */ (0,
|
|
7822
|
+
return /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(RenderItem, { ...row }, row.id);
|
|
7786
7823
|
}
|
|
7787
|
-
return /* @__PURE__ */ (0,
|
|
7824
|
+
return /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableRow, { hover: true, onClick: () => onRowClick?.(row), children: headCells?.map((column) => /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableCell, { children: row[column.id] }, column.id)) }, row.id);
|
|
7788
7825
|
});
|
|
7789
7826
|
if (emptyRows > 0 && rowsPerPage > emptyRows) {
|
|
7790
7827
|
rowsComponents.push(
|
|
7791
|
-
/* @__PURE__ */ (0,
|
|
7828
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableRow, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableCell, { colSpan: 8 }) }, (0, import_uuid.v4)())
|
|
7792
7829
|
);
|
|
7793
7830
|
}
|
|
7794
7831
|
return rowsComponents;
|
|
7795
7832
|
};
|
|
7796
|
-
return /* @__PURE__ */ (0,
|
|
7797
|
-
/* @__PURE__ */ (0,
|
|
7833
|
+
return /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.Paper, { className: classes.root, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.Box, { className: classes.paper, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(TableLoading_default, { rowHeight, rowsPerPage }) : /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableContainer, { className: classes.container, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(import_material61.Table, { size: "medium", stickyHeader: true, children: [
|
|
7834
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableHead, { className: classes.header, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableRow, { children: headCells?.map((headCell) => /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
7798
7835
|
import_material61.TableCell,
|
|
7799
7836
|
{
|
|
7800
7837
|
align: "left",
|
|
7801
7838
|
sortDirection: orderBy === headCell.id ? order : void 0,
|
|
7802
|
-
children: /* @__PURE__ */ (0,
|
|
7839
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
7803
7840
|
import_material61.TableSortLabel,
|
|
7804
7841
|
{
|
|
7805
7842
|
active: orderBy === headCell.id,
|
|
@@ -7811,9 +7848,9 @@ var Table = ({
|
|
|
7811
7848
|
},
|
|
7812
7849
|
headCell.id
|
|
7813
7850
|
)) }) }),
|
|
7814
|
-
/* @__PURE__ */ (0,
|
|
7851
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(import_material61.TableBody, { children: [
|
|
7815
7852
|
getTableRows(),
|
|
7816
|
-
rowsPerPage === emptyRows && /* @__PURE__ */ (0,
|
|
7853
|
+
rowsPerPage === emptyRows && /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableRow, { style: { height: rowHeight * emptyRows }, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_material61.TableCell, { colSpan: 8, align: "center", children: "Nothing to display" }) })
|
|
7817
7854
|
] })
|
|
7818
7855
|
] }) }) }) });
|
|
7819
7856
|
};
|
|
@@ -7828,7 +7865,7 @@ var import_uuid2 = require("uuid");
|
|
|
7828
7865
|
// src/components/TableEmptyResult/TableEmptyResult.tsx
|
|
7829
7866
|
var import_material62 = require("@mui/material");
|
|
7830
7867
|
var import_mui54 = require("tss-react/mui");
|
|
7831
|
-
var
|
|
7868
|
+
var import_jsx_runtime114 = require("react/jsx-runtime");
|
|
7832
7869
|
var useStyles48 = (0, import_mui54.makeStyles)()(() => ({
|
|
7833
7870
|
tableCellIcon: { padding: 24, height: "calc(100vh - 320px)" },
|
|
7834
7871
|
tableCellDefault: { padding: 24 }
|
|
@@ -7840,17 +7877,17 @@ var TableEmptyResult = ({
|
|
|
7840
7877
|
}
|
|
7841
7878
|
}) => {
|
|
7842
7879
|
const { classes } = useStyles48();
|
|
7843
|
-
return showClearFilterButton ? /* @__PURE__ */ (0,
|
|
7880
|
+
return showClearFilterButton ? /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(import_material62.TableRow, { children: /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
|
|
7844
7881
|
import_material62.TableCell,
|
|
7845
7882
|
{
|
|
7846
7883
|
className: classes.tableCellIcon,
|
|
7847
7884
|
colSpan,
|
|
7848
7885
|
align: "center",
|
|
7849
7886
|
children: [
|
|
7850
|
-
/* @__PURE__ */ (0,
|
|
7851
|
-
/* @__PURE__ */ (0,
|
|
7852
|
-
/* @__PURE__ */ (0,
|
|
7853
|
-
/* @__PURE__ */ (0,
|
|
7887
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(EmptyGlassIcon_default, {}),
|
|
7888
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(import_material62.Typography, { variant: "h6", children: "No results found." }),
|
|
7889
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(import_material62.Typography, { variant: "subtitle1", children: "Search without applied filters?" }),
|
|
7890
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
7854
7891
|
FilledButton_default,
|
|
7855
7892
|
{
|
|
7856
7893
|
copy: "Search",
|
|
@@ -7861,7 +7898,7 @@ var TableEmptyResult = ({
|
|
|
7861
7898
|
)
|
|
7862
7899
|
]
|
|
7863
7900
|
}
|
|
7864
|
-
) }) : /* @__PURE__ */ (0,
|
|
7901
|
+
) }) : /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(import_material62.TableRow, { children: /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
7865
7902
|
import_material62.TableCell,
|
|
7866
7903
|
{
|
|
7867
7904
|
className: classes.tableCellDefault,
|
|
@@ -7874,7 +7911,7 @@ var TableEmptyResult = ({
|
|
|
7874
7911
|
var TableEmptyResult_default = TableEmptyResult;
|
|
7875
7912
|
|
|
7876
7913
|
// src/components/TableDesktop/TableDesktop.tsx
|
|
7877
|
-
var
|
|
7914
|
+
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
7878
7915
|
var useStyles49 = (0, import_mui55.makeStyles)()((theme) => ({
|
|
7879
7916
|
root: {
|
|
7880
7917
|
justifyContent: "space-between",
|
|
@@ -8011,7 +8048,7 @@ var TableDesktop = ({
|
|
|
8011
8048
|
const sortedData = disableInternalSort ? data : stableSort2(data, getComparator(order, orderBy));
|
|
8012
8049
|
return sortedData.slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map((row, index) => {
|
|
8013
8050
|
const isItemSelected = selected.includes(row[keyField]);
|
|
8014
|
-
return /* @__PURE__ */ (0,
|
|
8051
|
+
return /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
8015
8052
|
RenderItem,
|
|
8016
8053
|
{
|
|
8017
8054
|
...{
|
|
@@ -8043,7 +8080,7 @@ var TableDesktop = ({
|
|
|
8043
8080
|
visibleHeadCells,
|
|
8044
8081
|
RenderItem
|
|
8045
8082
|
]);
|
|
8046
|
-
return /* @__PURE__ */ (0,
|
|
8083
|
+
return /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("div", { className: classes.root, style: { height }, children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material63.Paper, { className: classes.paper, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_jsx_runtime115.Fragment, { children: [...Array(Math.floor(rowsPerPage ?? 50))].map(() => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
8047
8084
|
import_material63.Skeleton,
|
|
8048
8085
|
{
|
|
8049
8086
|
animation: "pulse",
|
|
@@ -8053,15 +8090,15 @@ var TableDesktop = ({
|
|
|
8053
8090
|
"data-testid": "loading-skeleton"
|
|
8054
8091
|
},
|
|
8055
8092
|
(0, import_uuid2.v4)()
|
|
8056
|
-
)) }) : /* @__PURE__ */ (0,
|
|
8057
|
-
/* @__PURE__ */ (0,
|
|
8093
|
+
)) }) : /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(import_jsx_runtime115.Fragment, { children: [
|
|
8094
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material63.TableContainer, { className: classes.container, children: /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
|
|
8058
8095
|
import_material63.Table,
|
|
8059
8096
|
{
|
|
8060
8097
|
"aria-labelledby": "tableTitle",
|
|
8061
8098
|
"aria-label": "sticky table",
|
|
8062
8099
|
stickyHeader: true,
|
|
8063
8100
|
children: [
|
|
8064
|
-
/* @__PURE__ */ (0,
|
|
8101
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
8065
8102
|
SmartTableHeader_default,
|
|
8066
8103
|
{
|
|
8067
8104
|
headCells: visibleHeadCells,
|
|
@@ -8076,7 +8113,7 @@ var TableDesktop = ({
|
|
|
8076
8113
|
onApplyFilters
|
|
8077
8114
|
}
|
|
8078
8115
|
),
|
|
8079
|
-
/* @__PURE__ */ (0,
|
|
8116
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material63.TableBody, { children: rowsPerPage !== emptyRows ? renderTableRows : /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
8080
8117
|
TableEmptyResult_default,
|
|
8081
8118
|
{
|
|
8082
8119
|
colSpan: enableCheckboxSelection ? visibleHeadCells.length + 1 : visibleHeadCells.length,
|
|
@@ -8097,7 +8134,7 @@ var import_react36 = require("react");
|
|
|
8097
8134
|
var import_icons_material15 = require("@mui/icons-material");
|
|
8098
8135
|
var import_material64 = require("@mui/material");
|
|
8099
8136
|
var import_mui56 = require("tss-react/mui");
|
|
8100
|
-
var
|
|
8137
|
+
var import_jsx_runtime116 = require("react/jsx-runtime");
|
|
8101
8138
|
var useStyles50 = (0, import_mui56.makeStyles)()(() => ({
|
|
8102
8139
|
sortLabel: {
|
|
8103
8140
|
"& .MuiTableSortLabel-icon": {
|
|
@@ -8142,7 +8179,7 @@ var TableHeader = ({ cells, onSort = null }) => {
|
|
|
8142
8179
|
});
|
|
8143
8180
|
setSortableCells(sortedCells);
|
|
8144
8181
|
};
|
|
8145
|
-
return /* @__PURE__ */ (0,
|
|
8182
|
+
return /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(import_material64.TableHead, { children: /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(import_material64.TableRow, { children: sortableCells.map((cell, key) => /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(import_material64.TableCell, { children: cell.isSortable ? /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
8146
8183
|
import_material64.TableSortLabel,
|
|
8147
8184
|
{
|
|
8148
8185
|
className: classes.sortLabel,
|
|
@@ -8158,7 +8195,7 @@ var TableHeader_default = (0, import_react36.memo)(TableHeader);
|
|
|
8158
8195
|
// src/components/TextDivider/TextDivider.tsx
|
|
8159
8196
|
var import_material65 = require("@mui/material");
|
|
8160
8197
|
var import_mui57 = require("tss-react/mui");
|
|
8161
|
-
var
|
|
8198
|
+
var import_jsx_runtime117 = require("react/jsx-runtime");
|
|
8162
8199
|
var useStyles51 = (0, import_mui57.makeStyles)()(() => ({
|
|
8163
8200
|
icon: {
|
|
8164
8201
|
fontSize: 20
|
|
@@ -8195,7 +8232,7 @@ var TextDivider = ({
|
|
|
8195
8232
|
}) => {
|
|
8196
8233
|
const { classes } = useStyles51();
|
|
8197
8234
|
const iconColor = color ?? colors.neutral900;
|
|
8198
|
-
return /* @__PURE__ */ (0,
|
|
8235
|
+
return /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
|
|
8199
8236
|
import_material65.Box,
|
|
8200
8237
|
{
|
|
8201
8238
|
display: "flex",
|
|
@@ -8203,10 +8240,10 @@ var TextDivider = ({
|
|
|
8203
8240
|
justifyContent: "space-between",
|
|
8204
8241
|
className: classes.container,
|
|
8205
8242
|
children: [
|
|
8206
|
-
/* @__PURE__ */ (0,
|
|
8207
|
-
/* @__PURE__ */ (0,
|
|
8208
|
-
Icon3 && iconPosition === "left" && /* @__PURE__ */ (0,
|
|
8209
|
-
/* @__PURE__ */ (0,
|
|
8243
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)(import_material65.Divider, { className: classes.leftDivider }),
|
|
8244
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)(import_material65.Button, { onClick, disabled: !onClick, className: classes.button, children: /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(import_material65.Box, { className: classes.center, children: [
|
|
8245
|
+
Icon3 && iconPosition === "left" && /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(Icon3, { className: classes.icon, style: { color: iconColor } }),
|
|
8246
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
8210
8247
|
import_material65.Typography,
|
|
8211
8248
|
{
|
|
8212
8249
|
color: "textSecondary",
|
|
@@ -8215,9 +8252,9 @@ var TextDivider = ({
|
|
|
8215
8252
|
children: title
|
|
8216
8253
|
}
|
|
8217
8254
|
),
|
|
8218
|
-
Icon3 && iconPosition === "right" && /* @__PURE__ */ (0,
|
|
8255
|
+
Icon3 && iconPosition === "right" && /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(Icon3, { className: classes.icon, style: { color: iconColor } })
|
|
8219
8256
|
] }) }),
|
|
8220
|
-
/* @__PURE__ */ (0,
|
|
8257
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)(import_material65.Divider, { className: classes.rightDivider })
|
|
8221
8258
|
]
|
|
8222
8259
|
}
|
|
8223
8260
|
);
|
|
@@ -8229,8 +8266,7 @@ var import_react_dates = require("react-dates");
|
|
|
8229
8266
|
var import_mui58 = require("tss-react/mui");
|
|
8230
8267
|
var import_initialize = require("react-dates/initialize");
|
|
8231
8268
|
var import_datepicker = require("react-dates/lib/css/_datepicker.css");
|
|
8232
|
-
var
|
|
8233
|
-
var import_jsx_runtime117 = require("react/jsx-runtime");
|
|
8269
|
+
var import_jsx_runtime118 = require("react/jsx-runtime");
|
|
8234
8270
|
var useStyles52 = (0, import_mui58.makeStyles)()((theme) => ({
|
|
8235
8271
|
wrapper: {
|
|
8236
8272
|
"& .DateRangePicker": {
|
|
@@ -8244,7 +8280,8 @@ var useStyles52 = (0, import_mui58.makeStyles)()((theme) => ({
|
|
|
8244
8280
|
"& .DateRangePickerInput": {
|
|
8245
8281
|
backgroundColor: "transparent",
|
|
8246
8282
|
color: theme.palette.mode === "dark" ? "theme.palette.common.white" : theme.palette.text.primary,
|
|
8247
|
-
borderRadius: 4
|
|
8283
|
+
borderRadius: 4,
|
|
8284
|
+
paddingTop: "2px"
|
|
8248
8285
|
},
|
|
8249
8286
|
"& .DateInput": {
|
|
8250
8287
|
backgroundColor: theme.palette.mode === "dark" ? theme.palette.grey[900] : colors.neutral100,
|
|
@@ -8324,8 +8361,8 @@ var ThemedDateRangePicker = ({
|
|
|
8324
8361
|
className,
|
|
8325
8362
|
...props
|
|
8326
8363
|
}) => {
|
|
8327
|
-
const { classes } = useStyles52();
|
|
8328
|
-
return /* @__PURE__ */ (0,
|
|
8364
|
+
const { classes, cx } = useStyles52();
|
|
8365
|
+
return /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("div", { className: cx(classes.wrapper, className), children: /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(import_react_dates.DateRangePicker, { ...props }) });
|
|
8329
8366
|
};
|
|
8330
8367
|
var ThemedDateRangePicker_default = ThemedDateRangePicker;
|
|
8331
8368
|
|
|
@@ -8333,7 +8370,7 @@ var ThemedDateRangePicker_default = ThemedDateRangePicker;
|
|
|
8333
8370
|
var import_react37 = require("react");
|
|
8334
8371
|
var import_material66 = require("@mui/material");
|
|
8335
8372
|
var import_mui59 = require("tss-react/mui");
|
|
8336
|
-
var
|
|
8373
|
+
var import_jsx_runtime119 = require("react/jsx-runtime");
|
|
8337
8374
|
var useStyles53 = (0, import_mui59.makeStyles)()((theme) => ({
|
|
8338
8375
|
menuButton: {
|
|
8339
8376
|
color: theme.palette.primary.contrastText
|
|
@@ -8372,9 +8409,9 @@ var TheToolbar = ({
|
|
|
8372
8409
|
LeftDrawer: LeftDrawer2
|
|
8373
8410
|
}) => {
|
|
8374
8411
|
const { classes } = useStyles53();
|
|
8375
|
-
return /* @__PURE__ */ (0,
|
|
8376
|
-
/* @__PURE__ */ (0,
|
|
8377
|
-
/* @__PURE__ */ (0,
|
|
8412
|
+
return /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(import_material66.Box, { children: [
|
|
8413
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(import_material66.AppBar, { children: /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(import_material66.Toolbar, { className: classes.topBar, children: [
|
|
8414
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
8378
8415
|
RoundButton_default,
|
|
8379
8416
|
{
|
|
8380
8417
|
className: classes.menuButton,
|
|
@@ -8383,7 +8420,7 @@ var TheToolbar = ({
|
|
|
8383
8420
|
onClick: handleOpen
|
|
8384
8421
|
}
|
|
8385
8422
|
),
|
|
8386
|
-
/* @__PURE__ */ (0,
|
|
8423
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
8387
8424
|
CompanyLogo_default,
|
|
8388
8425
|
{
|
|
8389
8426
|
size: "small",
|
|
@@ -8393,7 +8430,7 @@ var TheToolbar = ({
|
|
|
8393
8430
|
}
|
|
8394
8431
|
)
|
|
8395
8432
|
] }) }),
|
|
8396
|
-
/* @__PURE__ */ (0,
|
|
8433
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(import_material66.Box, { className: classes.offset }),
|
|
8397
8434
|
LeftDrawer2
|
|
8398
8435
|
] });
|
|
8399
8436
|
};
|
|
@@ -8401,20 +8438,20 @@ var TheToolbar_default = (0, import_react37.memo)(TheToolbar);
|
|
|
8401
8438
|
|
|
8402
8439
|
// src/components/ToastMessage/ToastMessage.tsx
|
|
8403
8440
|
var import_material67 = require("@mui/material");
|
|
8404
|
-
var
|
|
8441
|
+
var import_jsx_runtime120 = require("react/jsx-runtime");
|
|
8405
8442
|
var ToastMessage = ({
|
|
8406
8443
|
toastType,
|
|
8407
8444
|
toastMessage,
|
|
8408
8445
|
open,
|
|
8409
8446
|
onClose
|
|
8410
|
-
}) => /* @__PURE__ */ (0,
|
|
8447
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8411
8448
|
import_material67.Snackbar,
|
|
8412
8449
|
{
|
|
8413
8450
|
open,
|
|
8414
8451
|
autoHideDuration: 1500,
|
|
8415
8452
|
onClose,
|
|
8416
8453
|
anchorOrigin: { vertical: "top", horizontal: "right" },
|
|
8417
|
-
children: /* @__PURE__ */ (0,
|
|
8454
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8418
8455
|
import_material67.Alert,
|
|
8419
8456
|
{
|
|
8420
8457
|
elevation: 6,
|
|
@@ -8443,7 +8480,7 @@ var ToastMessage_default = ToastMessage;
|
|
|
8443
8480
|
// src/components/TwoButtonDialog/TwoButtonDialog.tsx
|
|
8444
8481
|
var import_material68 = require("@mui/material");
|
|
8445
8482
|
var import_mui60 = require("tss-react/mui");
|
|
8446
|
-
var
|
|
8483
|
+
var import_jsx_runtime121 = require("react/jsx-runtime");
|
|
8447
8484
|
var useStyles54 = (0, import_mui60.makeStyles)()((theme) => ({
|
|
8448
8485
|
paper: {
|
|
8449
8486
|
padding: theme.spacing(2)
|
|
@@ -8473,7 +8510,7 @@ var TwoButtonDialog = ({
|
|
|
8473
8510
|
cancelButton
|
|
8474
8511
|
}) => {
|
|
8475
8512
|
const { classes } = useStyles54();
|
|
8476
|
-
return /* @__PURE__ */ (0,
|
|
8513
|
+
return /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
8477
8514
|
import_material68.Dialog,
|
|
8478
8515
|
{
|
|
8479
8516
|
open,
|
|
@@ -8485,9 +8522,9 @@ var TwoButtonDialog = ({
|
|
|
8485
8522
|
BackdropProps: {
|
|
8486
8523
|
timeout: 500
|
|
8487
8524
|
},
|
|
8488
|
-
children: /* @__PURE__ */ (0,
|
|
8489
|
-
/* @__PURE__ */ (0,
|
|
8490
|
-
/* @__PURE__ */ (0,
|
|
8525
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(import_material68.Fade, { in: open, children: /* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(import_material68.Paper, { className: classes.paper, children: [
|
|
8526
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(import_material68.Box, { className: classes.mb, children: [
|
|
8527
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)(import_material68.Typography, { variant: "h5", component: "div", children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
8491
8528
|
import_material68.Box,
|
|
8492
8529
|
{
|
|
8493
8530
|
sx: {
|
|
@@ -8496,7 +8533,7 @@ var TwoButtonDialog = ({
|
|
|
8496
8533
|
children: title
|
|
8497
8534
|
}
|
|
8498
8535
|
) }),
|
|
8499
|
-
/* @__PURE__ */ (0,
|
|
8536
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(
|
|
8500
8537
|
import_material68.Box,
|
|
8501
8538
|
{
|
|
8502
8539
|
className: classes.mt,
|
|
@@ -8504,15 +8541,15 @@ var TwoButtonDialog = ({
|
|
|
8504
8541
|
fontWeight: 600
|
|
8505
8542
|
},
|
|
8506
8543
|
children: [
|
|
8507
|
-
subtitle1 && /* @__PURE__ */ (0,
|
|
8508
|
-
subtitle2 && /* @__PURE__ */ (0,
|
|
8544
|
+
subtitle1 && /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(import_material68.Typography, { variant: "subtitle1", children: subtitle1 }),
|
|
8545
|
+
subtitle2 && /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(import_material68.Typography, { variant: "subtitle1", children: subtitle2 })
|
|
8509
8546
|
]
|
|
8510
8547
|
}
|
|
8511
8548
|
)
|
|
8512
8549
|
] }),
|
|
8513
|
-
/* @__PURE__ */ (0,
|
|
8514
|
-
/* @__PURE__ */ (0,
|
|
8515
|
-
/* @__PURE__ */ (0,
|
|
8550
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)(import_material68.Divider, {}),
|
|
8551
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(import_material68.Box, { className: classes.buttonContainer, children: [
|
|
8552
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
8516
8553
|
FilledButton_default,
|
|
8517
8554
|
{
|
|
8518
8555
|
copy: cancelLabel,
|
|
@@ -8525,7 +8562,7 @@ var TwoButtonDialog = ({
|
|
|
8525
8562
|
}
|
|
8526
8563
|
}
|
|
8527
8564
|
),
|
|
8528
|
-
/* @__PURE__ */ (0,
|
|
8565
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
8529
8566
|
FilledButton_default,
|
|
8530
8567
|
{
|
|
8531
8568
|
color: "primary",
|
|
@@ -8534,12 +8571,37 @@ var TwoButtonDialog = ({
|
|
|
8534
8571
|
}
|
|
8535
8572
|
)
|
|
8536
8573
|
] }),
|
|
8537
|
-
/* @__PURE__ */ (0,
|
|
8574
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)(Loading_default, { isLoading: dialogLoading })
|
|
8538
8575
|
] }) })
|
|
8539
8576
|
}
|
|
8540
8577
|
);
|
|
8541
8578
|
};
|
|
8542
8579
|
var TwoButtonDialog_default = TwoButtonDialog;
|
|
8580
|
+
|
|
8581
|
+
// src/components/icons/IconChart.tsx
|
|
8582
|
+
var import_jsx_runtime122 = require("react/jsx-runtime");
|
|
8583
|
+
var SvgIconChart = (props) => {
|
|
8584
|
+
const { fill } = props;
|
|
8585
|
+
return /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
8586
|
+
"svg",
|
|
8587
|
+
{
|
|
8588
|
+
width: "20",
|
|
8589
|
+
height: "20",
|
|
8590
|
+
viewBox: "0 0 20 20",
|
|
8591
|
+
fill: "none",
|
|
8592
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8593
|
+
...props,
|
|
8594
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
8595
|
+
"path",
|
|
8596
|
+
{
|
|
8597
|
+
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",
|
|
8598
|
+
fill: fill ?? "#1976D2"
|
|
8599
|
+
}
|
|
8600
|
+
)
|
|
8601
|
+
}
|
|
8602
|
+
);
|
|
8603
|
+
};
|
|
8604
|
+
var IconChart_default = SvgIconChart;
|
|
8543
8605
|
// Annotate the CommonJS export names for ESM import in node:
|
|
8544
8606
|
0 && (module.exports = {
|
|
8545
8607
|
AlertDialog,
|
|
@@ -8569,6 +8631,8 @@ var TwoButtonDialog_default = TwoButtonDialog;
|
|
|
8569
8631
|
FilterSimpleSelector,
|
|
8570
8632
|
FixedFooter,
|
|
8571
8633
|
Header,
|
|
8634
|
+
IconChart,
|
|
8635
|
+
IconCompare,
|
|
8572
8636
|
ImageButton,
|
|
8573
8637
|
LeftDrawer,
|
|
8574
8638
|
List,
|