@natoora-libs/core 0.2.25 → 0.2.26
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.
|
@@ -2181,12 +2181,15 @@ var AutocompleteFilterMenuContent = ({
|
|
|
2181
2181
|
|
|
2182
2182
|
// src/components/BackHeader/BackHeader.tsx
|
|
2183
2183
|
var import_react_router = require("react-router");
|
|
2184
|
-
var
|
|
2184
|
+
var import_KeyboardBackspace = __toESM(require("@mui/icons-material/KeyboardBackspace"), 1);
|
|
2185
2185
|
var import_material16 = require("@mui/material");
|
|
2186
2186
|
var import_mui5 = require("tss-react/mui");
|
|
2187
2187
|
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
2188
2188
|
var useStyles5 = (0, import_mui5.makeStyles)()((theme) => ({
|
|
2189
2189
|
header: {
|
|
2190
|
+
display: "flex",
|
|
2191
|
+
alignItems: "center",
|
|
2192
|
+
justifyContent: "space-between",
|
|
2190
2193
|
padding: theme.spacing(2, 3),
|
|
2191
2194
|
borderBottom: `1px solid ${colors.neutral400}`,
|
|
2192
2195
|
backgroundColor: colors.neutral100
|
|
@@ -2207,7 +2210,11 @@ var useStyles5 = (0, import_mui5.makeStyles)()((theme) => ({
|
|
|
2207
2210
|
textTransform: "none"
|
|
2208
2211
|
}
|
|
2209
2212
|
}));
|
|
2210
|
-
var BackHeader = ({
|
|
2213
|
+
var BackHeader = ({
|
|
2214
|
+
appName,
|
|
2215
|
+
onGoBackClick,
|
|
2216
|
+
sideComponent = null
|
|
2217
|
+
}) => {
|
|
2211
2218
|
const { classes } = useStyles5();
|
|
2212
2219
|
const navigate = (0, import_react_router.useNavigate)();
|
|
2213
2220
|
const handleBackClick = () => {
|
|
@@ -2216,10 +2223,13 @@ var BackHeader = ({ appName, onGoBackClick }) => {
|
|
|
2216
2223
|
}
|
|
2217
2224
|
return navigate(-1);
|
|
2218
2225
|
};
|
|
2219
|
-
return /* @__PURE__ */ (0, import_jsx_runtime18.
|
|
2220
|
-
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2221
|
-
|
|
2222
|
-
|
|
2226
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_material16.Box, { component: "header", className: classes.header, children: [
|
|
2227
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_material16.Button, { className: classes.button, onClick: handleBackClick, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_material16.Box, { component: "span", className: classes.text, children: [
|
|
2228
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_KeyboardBackspace.default, { className: classes.icon }),
|
|
2229
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_material16.Typography, { variant: "body1", color: "textPrimary", children: appName })
|
|
2230
|
+
] }) }),
|
|
2231
|
+
sideComponent
|
|
2232
|
+
] });
|
|
2223
2233
|
};
|
|
2224
2234
|
var BackHeader_default = BackHeader;
|
|
2225
2235
|
|
|
@@ -2604,7 +2614,7 @@ var ImageButton = (props) => {
|
|
|
2604
2614
|
var ImageButton_default = (0, import_react14.memo)(ImageButton);
|
|
2605
2615
|
|
|
2606
2616
|
// src/components/Buttons/SquareButton/SquareButton.tsx
|
|
2607
|
-
var
|
|
2617
|
+
var import_icons_material3 = require("@mui/icons-material");
|
|
2608
2618
|
var import_material22 = require("@mui/material");
|
|
2609
2619
|
var import_mui11 = require("tss-react/mui");
|
|
2610
2620
|
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
@@ -2643,8 +2653,8 @@ var SquareButton = ({
|
|
|
2643
2653
|
}) => {
|
|
2644
2654
|
const { classes, cx } = useStyles10();
|
|
2645
2655
|
const icon = {
|
|
2646
|
-
add: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2647
|
-
forward: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2656
|
+
add: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_icons_material3.Add, { className: classes.icon }),
|
|
2657
|
+
forward: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_icons_material3.ChevronRight, { className: classes.icon })
|
|
2648
2658
|
};
|
|
2649
2659
|
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2650
2660
|
import_material22.Button,
|
|
@@ -2910,7 +2920,7 @@ var FilterButtonLg = (0, import_mui13.withStyles)(AButton, (theme) => ({
|
|
|
2910
2920
|
var OutlinedButtonLg_default = (0, import_react17.memo)(FilterButtonLg);
|
|
2911
2921
|
|
|
2912
2922
|
// src/components/Buttons/RoundButton/RoundButton.tsx
|
|
2913
|
-
var
|
|
2923
|
+
var import_icons_material4 = require("@mui/icons-material");
|
|
2914
2924
|
var import_material26 = require("@mui/material");
|
|
2915
2925
|
var import_mui14 = require("tss-react/mui");
|
|
2916
2926
|
|
|
@@ -4258,39 +4268,39 @@ var RoundButton = ({
|
|
|
4258
4268
|
const { classes, cx } = useStyles12();
|
|
4259
4269
|
const iconSize = size === "small" ? "small" : "medium";
|
|
4260
4270
|
const iconComponentMap = {
|
|
4261
|
-
add: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4262
|
-
apps: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4263
|
-
arrowBack: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4264
|
-
arrowForward: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4271
|
+
add: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Add, { fontSize: iconSize }),
|
|
4272
|
+
apps: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Apps, { fontSize: iconSize }),
|
|
4273
|
+
arrowBack: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.ArrowBack, { fontSize: iconSize }),
|
|
4274
|
+
arrowForward: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.ArrowForward, { fontSize: iconSize }),
|
|
4265
4275
|
avocado: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconAvocado_default, {}),
|
|
4266
|
-
backspaceOutlined: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4276
|
+
backspaceOutlined: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.BackspaceOutlined, { fontSize: iconSize }),
|
|
4267
4277
|
banana: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconBanana_default, {}),
|
|
4268
|
-
block: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4278
|
+
block: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Block, { fontSize: iconSize }),
|
|
4269
4279
|
bulk: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(BulkIcon_default, { fill: colors.contrast }),
|
|
4270
|
-
callSplit: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4271
|
-
chevronRight: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4272
|
-
chevronUp: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4273
|
-
chevronDown: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4274
|
-
close: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4275
|
-
delete: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4276
|
-
done: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4277
|
-
edit: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4278
|
-
email: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4280
|
+
callSplit: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.CallSplit, { fontSize: iconSize }),
|
|
4281
|
+
chevronRight: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.ChevronRight, { fontSize: iconSize }),
|
|
4282
|
+
chevronUp: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.KeyboardArrowUp, { fontSize: iconSize }),
|
|
4283
|
+
chevronDown: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.KeyboardArrowDown, { fontSize: iconSize }),
|
|
4284
|
+
close: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Close, { fontSize: iconSize }),
|
|
4285
|
+
delete: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Delete, { fontSize: iconSize, fill: colors.neutral800 }),
|
|
4286
|
+
done: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Done, { fontSize: iconSize }),
|
|
4287
|
+
edit: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Edit, { fontSize: iconSize }),
|
|
4288
|
+
email: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Email, { fontSize: iconSize }),
|
|
4279
4289
|
grape: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconGrape_default, {}),
|
|
4280
|
-
groupAdd: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4281
|
-
history: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4282
|
-
menu: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4283
|
-
threeDots: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4284
|
-
notes: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4285
|
-
refresh: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4286
|
-
remove: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4287
|
-
search: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4288
|
-
send: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4290
|
+
groupAdd: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.GroupAdd, { fontSize: iconSize }),
|
|
4291
|
+
history: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.History, { fontSize: iconSize }),
|
|
4292
|
+
menu: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Menu, { fontSize: iconSize }),
|
|
4293
|
+
threeDots: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.MoreHoriz, { fontSize: iconSize, color: iconColor }),
|
|
4294
|
+
notes: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Comment, { fontSize: iconSize }),
|
|
4295
|
+
refresh: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Refresh, { fontSize: iconSize }),
|
|
4296
|
+
remove: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Remove, { fontSize: iconSize }),
|
|
4297
|
+
search: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Search, { fontSize: iconSize }),
|
|
4298
|
+
send: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Send, { fontSize: iconSize }),
|
|
4289
4299
|
strawberry: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconStrawberry_default, {}),
|
|
4290
|
-
thumbDown: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4291
|
-
thumbUp: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4292
|
-
undo: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4293
|
-
play: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4300
|
+
thumbDown: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.ThumbDown, { fontSize: iconSize }),
|
|
4301
|
+
thumbUp: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.ThumbUp, { fontSize: iconSize }),
|
|
4302
|
+
undo: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.Undo, { fontSize: iconSize }),
|
|
4303
|
+
play: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.PlayArrowRounded, { fontSize: iconSize }),
|
|
4294
4304
|
snail: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(icons_default.SvgIconSnail, { fontSize: iconSize, fill: colors.muiPrimary }),
|
|
4295
4305
|
bus: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconBus_default, {}),
|
|
4296
4306
|
spoon: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconSpoon_default, {}),
|
|
@@ -4300,7 +4310,7 @@ var RoundButton = ({
|
|
|
4300
4310
|
bicycle: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconBicycle_default, {}),
|
|
4301
4311
|
heart: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconHeart_default, {}),
|
|
4302
4312
|
airplane: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconAirplane_default, {}),
|
|
4303
|
-
swapHoriz: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4313
|
+
swapHoriz: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material4.SwapHoriz, { fontSize: iconSize })
|
|
4304
4314
|
};
|
|
4305
4315
|
const filteredSize = size === "double" ? void 0 : size;
|
|
4306
4316
|
const handleClick = (e) => {
|
|
@@ -4826,7 +4836,7 @@ var ControlledNumberInput_default = ControlledNumberInput;
|
|
|
4826
4836
|
// src/components/ControlledNumericField/ControlledNumericField.tsx
|
|
4827
4837
|
var import_react19 = require("react");
|
|
4828
4838
|
var import_react_hook_form5 = require("react-hook-form");
|
|
4829
|
-
var
|
|
4839
|
+
var import_icons_material5 = require("@mui/icons-material");
|
|
4830
4840
|
var import_material33 = require("@mui/material");
|
|
4831
4841
|
var import_mui20 = require("tss-react/mui");
|
|
4832
4842
|
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
@@ -4983,7 +4993,7 @@ var ControlledNumericField = ({
|
|
|
4983
4993
|
className: classes.arrowButton,
|
|
4984
4994
|
onClick: incrementValue(field),
|
|
4985
4995
|
"data-testid": "arrow-up",
|
|
4986
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
4996
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(import_icons_material5.KeyboardArrowUp, { sx: { fontSize: 15 } })
|
|
4987
4997
|
}
|
|
4988
4998
|
),
|
|
4989
4999
|
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
@@ -4993,7 +5003,7 @@ var ControlledNumericField = ({
|
|
|
4993
5003
|
className: classes.arrowButton,
|
|
4994
5004
|
onClick: decrementValue(field),
|
|
4995
5005
|
"data-testid": "arrow-down",
|
|
4996
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
5006
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(import_icons_material5.KeyboardArrowDown, { sx: { fontSize: 15 } })
|
|
4997
5007
|
}
|
|
4998
5008
|
)
|
|
4999
5009
|
] }) })
|
|
@@ -5573,7 +5583,7 @@ var DeliveryInstructionsFormFields = ({
|
|
|
5573
5583
|
};
|
|
5574
5584
|
|
|
5575
5585
|
// src/components/FileCard/FileCard.tsx
|
|
5576
|
-
var
|
|
5586
|
+
var import_icons_material6 = require("@mui/icons-material");
|
|
5577
5587
|
var import_material40 = require("@mui/material");
|
|
5578
5588
|
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
5579
5589
|
var getFileMetadata = (file) => {
|
|
@@ -5608,7 +5618,7 @@ var FileCard = ({ document: document2 }) => {
|
|
|
5608
5618
|
justifyContent: "center",
|
|
5609
5619
|
alignItems: "center"
|
|
5610
5620
|
},
|
|
5611
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5621
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_icons_material6.Description, { fontSize: "medium", color: "action" })
|
|
5612
5622
|
}
|
|
5613
5623
|
),
|
|
5614
5624
|
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
@@ -7593,7 +7603,7 @@ var import_mui45 = require("tss-react/mui");
|
|
|
7593
7603
|
// src/components/SearchWithFilters/SearchWithFilters.tsx
|
|
7594
7604
|
var import_react34 = require("react");
|
|
7595
7605
|
var React6 = __toESM(require("react"), 1);
|
|
7596
|
-
var
|
|
7606
|
+
var import_icons_material7 = require("@mui/icons-material");
|
|
7597
7607
|
var import_material60 = require("@mui/material");
|
|
7598
7608
|
var import_mui44 = require("tss-react/mui");
|
|
7599
7609
|
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
@@ -7657,7 +7667,7 @@ var SearchWithFilters = ({
|
|
|
7657
7667
|
setSearchText(searchValue);
|
|
7658
7668
|
}, [searchValue]);
|
|
7659
7669
|
return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(import_material60.Paper, { className: classes.searchContainer, children: [
|
|
7660
|
-
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
7670
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_icons_material7.Search, { className: classes.icon, fontSize: "small" }),
|
|
7661
7671
|
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
7662
7672
|
import_material60.InputBase,
|
|
7663
7673
|
{
|
|
@@ -7679,7 +7689,7 @@ var SearchWithFilters = ({
|
|
|
7679
7689
|
disabled,
|
|
7680
7690
|
children: [
|
|
7681
7691
|
"Filters",
|
|
7682
|
-
showFilters ? /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
7692
|
+
showFilters ? /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_icons_material7.ArrowDropUp, {}) : /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_icons_material7.ArrowDropDown, {})
|
|
7683
7693
|
]
|
|
7684
7694
|
}
|
|
7685
7695
|
)
|
|
@@ -7754,7 +7764,7 @@ var import_mui47 = require("tss-react/mui");
|
|
|
7754
7764
|
|
|
7755
7765
|
// src/components/SearchWithFilters/SearchWithFiltersForTable.tsx
|
|
7756
7766
|
var import_react35 = require("react");
|
|
7757
|
-
var
|
|
7767
|
+
var import_icons_material8 = require("@mui/icons-material");
|
|
7758
7768
|
var import_material62 = require("@mui/material");
|
|
7759
7769
|
var import_mui46 = require("tss-react/mui");
|
|
7760
7770
|
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
@@ -7831,9 +7841,9 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
7831
7841
|
enterPressedInSearch();
|
|
7832
7842
|
}
|
|
7833
7843
|
};
|
|
7834
|
-
const ArrowIcon = isOpen ?
|
|
7844
|
+
const ArrowIcon = isOpen ? import_icons_material8.ArrowDropUp : import_icons_material8.ArrowDropDown;
|
|
7835
7845
|
return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(import_material62.Paper, { className: classes.c_search, children: [
|
|
7836
|
-
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material62.Box, { className: classes.c_search__icon, children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
7846
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material62.Box, { className: classes.c_search__icon, children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_icons_material8.Search, { className: classes.icon, fontSize: "small" }) }),
|
|
7837
7847
|
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
7838
7848
|
import_material62.InputBase,
|
|
7839
7849
|
{
|
|
@@ -10240,7 +10250,7 @@ var TableDesktopToolbar = ({
|
|
|
10240
10250
|
|
|
10241
10251
|
// src/components/TableHeader/TableHeader.tsx
|
|
10242
10252
|
var import_react52 = require("react");
|
|
10243
|
-
var
|
|
10253
|
+
var import_icons_material9 = require("@mui/icons-material");
|
|
10244
10254
|
var import_material84 = require("@mui/material");
|
|
10245
10255
|
var import_mui53 = require("tss-react/mui");
|
|
10246
10256
|
var import_jsx_runtime142 = require("react/jsx-runtime");
|
|
@@ -10293,7 +10303,7 @@ var TableHeader = ({ cells, onSort = null }) => {
|
|
|
10293
10303
|
{
|
|
10294
10304
|
className: classes.sortLabel,
|
|
10295
10305
|
direction: cell?.direction || "asc",
|
|
10296
|
-
IconComponent:
|
|
10306
|
+
IconComponent: import_icons_material9.ImportExport,
|
|
10297
10307
|
onClick: () => handleSortClick(cell),
|
|
10298
10308
|
children: cell.label
|
|
10299
10309
|
}
|