@natoora-libs/core 0.2.30 → 0.2.31-dev-doug-1
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.
|
@@ -416,7 +416,7 @@ module.exports = __toCommonJS(components_exports);
|
|
|
416
416
|
|
|
417
417
|
// src/components/ActiveFiltersIconButton/ActiveFiltersIconButton.tsx
|
|
418
418
|
var import_react = require("react");
|
|
419
|
-
var
|
|
419
|
+
var import_FilterList = __toESM(require("@mui/icons-material/FilterList"), 1);
|
|
420
420
|
var import_material = require("@mui/material");
|
|
421
421
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
422
422
|
var ActiveFiltersIconButton = (0, import_react.memo)(
|
|
@@ -441,9 +441,9 @@ var ActiveFiltersIconButton = (0, import_react.memo)(
|
|
|
441
441
|
{
|
|
442
442
|
sx: { height: 24 },
|
|
443
443
|
label: numActiveFilters,
|
|
444
|
-
icon: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
444
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_FilterList.default, { style: { fontSize: 18 }, color: "primary" })
|
|
445
445
|
}
|
|
446
|
-
) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
446
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_FilterList.default, { style: { fontSize: 18 } })
|
|
447
447
|
]
|
|
448
448
|
}
|
|
449
449
|
)
|
|
@@ -1028,6 +1028,7 @@ var SmartSelect = (0, import_react3.forwardRef)(
|
|
|
1028
1028
|
refetch,
|
|
1029
1029
|
isFetching = false,
|
|
1030
1030
|
onChange,
|
|
1031
|
+
onKeyDownCapture,
|
|
1031
1032
|
inputLabel,
|
|
1032
1033
|
variant = "standard",
|
|
1033
1034
|
size,
|
|
@@ -1078,6 +1079,9 @@ var SmartSelect = (0, import_react3.forwardRef)(
|
|
|
1078
1079
|
onChange(nextOption);
|
|
1079
1080
|
}
|
|
1080
1081
|
};
|
|
1082
|
+
const handleKeyDownCapture = (event) => {
|
|
1083
|
+
onKeyDownCapture?.(event);
|
|
1084
|
+
};
|
|
1081
1085
|
const renderMenuContent = () => {
|
|
1082
1086
|
if (isFetching) {
|
|
1083
1087
|
return [
|
|
@@ -1152,6 +1156,7 @@ var SmartSelect = (0, import_react3.forwardRef)(
|
|
|
1152
1156
|
onOpen: handleFetchData,
|
|
1153
1157
|
onFocus: handleFetchData,
|
|
1154
1158
|
onKeyDown: handleKeyDown,
|
|
1159
|
+
onKeyDownCapture: handleKeyDownCapture,
|
|
1155
1160
|
label: inputLabel,
|
|
1156
1161
|
MenuProps: menuProps,
|
|
1157
1162
|
children: renderMenuContent()
|
|
@@ -1177,6 +1182,7 @@ var ADDRESS_FORM_FIELDS = [
|
|
|
1177
1182
|
];
|
|
1178
1183
|
var AddressFormFields = ({
|
|
1179
1184
|
form,
|
|
1185
|
+
hidePrimaryPhoneNumberField = false,
|
|
1180
1186
|
countriesSelectProps: { countries, isCountriesFetching, refetchCountries },
|
|
1181
1187
|
statesSelectProps: { addressStates, isAddressStatesFetching },
|
|
1182
1188
|
googlePlacesAutocompleteProps
|
|
@@ -1241,7 +1247,7 @@ var AddressFormFields = ({
|
|
|
1241
1247
|
helperText: "Name this address for easier reference (e.g. Office, Home, etc.)."
|
|
1242
1248
|
}
|
|
1243
1249
|
),
|
|
1244
|
-
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1250
|
+
!hidePrimaryPhoneNumberField && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1245
1251
|
import_react_hook_form2.Controller,
|
|
1246
1252
|
{
|
|
1247
1253
|
control,
|
|
@@ -1774,7 +1780,7 @@ var resolveObjectType = (object, fieldName) => {
|
|
|
1774
1780
|
|
|
1775
1781
|
// src/components/Buttons/ExtendedButton/ExtendedButton.tsx
|
|
1776
1782
|
var import_react9 = require("react");
|
|
1777
|
-
var
|
|
1783
|
+
var import_icons_material = require("@mui/icons-material");
|
|
1778
1784
|
var import_material12 = require("@mui/material");
|
|
1779
1785
|
var import_mui4 = require("tss-react/mui");
|
|
1780
1786
|
|
|
@@ -1882,19 +1888,19 @@ var ExtendedButton = ({
|
|
|
1882
1888
|
}) => {
|
|
1883
1889
|
const { classes, cx } = useStyles4();
|
|
1884
1890
|
const icons2 = {
|
|
1885
|
-
add:
|
|
1886
|
-
apps:
|
|
1887
|
-
childCare:
|
|
1888
|
-
delete:
|
|
1889
|
-
edit:
|
|
1890
|
-
importExport:
|
|
1891
|
-
notes:
|
|
1892
|
-
print:
|
|
1893
|
-
save:
|
|
1894
|
-
upload:
|
|
1895
|
-
refresh:
|
|
1896
|
-
download:
|
|
1897
|
-
publish:
|
|
1891
|
+
add: import_icons_material.Add,
|
|
1892
|
+
apps: import_icons_material.Apps,
|
|
1893
|
+
childCare: import_icons_material.ChildCare,
|
|
1894
|
+
delete: import_icons_material.Delete,
|
|
1895
|
+
edit: import_icons_material.Edit,
|
|
1896
|
+
importExport: import_icons_material.ImportExport,
|
|
1897
|
+
notes: import_icons_material.Notes,
|
|
1898
|
+
print: import_icons_material.Print,
|
|
1899
|
+
save: import_icons_material.Save,
|
|
1900
|
+
upload: import_icons_material.CloudUpload,
|
|
1901
|
+
refresh: import_icons_material.Refresh,
|
|
1902
|
+
download: import_icons_material.GetApp,
|
|
1903
|
+
publish: import_icons_material.Publish,
|
|
1898
1904
|
compare: IconCompare_default
|
|
1899
1905
|
};
|
|
1900
1906
|
const IconComponent = icons2[type || "add"];
|
|
@@ -2677,7 +2683,8 @@ var ImageButton = (props) => {
|
|
|
2677
2683
|
var ImageButton_default = (0, import_react14.memo)(ImageButton);
|
|
2678
2684
|
|
|
2679
2685
|
// src/components/Buttons/SquareButton/SquareButton.tsx
|
|
2680
|
-
var
|
|
2686
|
+
var import_Add = __toESM(require("@mui/icons-material/Add"), 1);
|
|
2687
|
+
var import_ChevronRight = __toESM(require("@mui/icons-material/ChevronRight"), 1);
|
|
2681
2688
|
var import_material22 = require("@mui/material");
|
|
2682
2689
|
var import_mui11 = require("tss-react/mui");
|
|
2683
2690
|
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
@@ -2716,8 +2723,8 @@ var SquareButton = ({
|
|
|
2716
2723
|
}) => {
|
|
2717
2724
|
const { classes, cx } = useStyles10();
|
|
2718
2725
|
const icon = {
|
|
2719
|
-
add: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2720
|
-
forward: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2726
|
+
add: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_Add.default, { className: classes.icon }),
|
|
2727
|
+
forward: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_ChevronRight.default, { className: classes.icon })
|
|
2721
2728
|
};
|
|
2722
2729
|
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2723
2730
|
import_material22.Button,
|
|
@@ -2983,7 +2990,7 @@ var FilterButtonLg = (0, import_mui13.withStyles)(AButton, (theme) => ({
|
|
|
2983
2990
|
var OutlinedButtonLg_default = (0, import_react17.memo)(FilterButtonLg);
|
|
2984
2991
|
|
|
2985
2992
|
// src/components/Buttons/RoundButton/RoundButton.tsx
|
|
2986
|
-
var
|
|
2993
|
+
var import_icons_material2 = require("@mui/icons-material");
|
|
2987
2994
|
var import_material26 = require("@mui/material");
|
|
2988
2995
|
var import_mui14 = require("tss-react/mui");
|
|
2989
2996
|
|
|
@@ -4331,39 +4338,39 @@ var RoundButton = ({
|
|
|
4331
4338
|
const { classes, cx } = useStyles12();
|
|
4332
4339
|
const iconSize = size === "small" ? "small" : "medium";
|
|
4333
4340
|
const iconComponentMap = {
|
|
4334
|
-
add: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4335
|
-
apps: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4336
|
-
arrowBack: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4337
|
-
arrowForward: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4341
|
+
add: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Add, { fontSize: iconSize }),
|
|
4342
|
+
apps: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Apps, { fontSize: iconSize }),
|
|
4343
|
+
arrowBack: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.ArrowBack, { fontSize: iconSize }),
|
|
4344
|
+
arrowForward: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.ArrowForward, { fontSize: iconSize }),
|
|
4338
4345
|
avocado: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconAvocado_default, {}),
|
|
4339
|
-
backspaceOutlined: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4346
|
+
backspaceOutlined: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.BackspaceOutlined, { fontSize: iconSize }),
|
|
4340
4347
|
banana: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconBanana_default, {}),
|
|
4341
|
-
block: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4348
|
+
block: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Block, { fontSize: iconSize }),
|
|
4342
4349
|
bulk: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(BulkIcon_default, { fill: colors.contrast }),
|
|
4343
|
-
callSplit: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4344
|
-
chevronRight: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4345
|
-
chevronUp: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4346
|
-
chevronDown: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4347
|
-
close: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4348
|
-
delete: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4349
|
-
done: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4350
|
-
edit: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4351
|
-
email: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4350
|
+
callSplit: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.CallSplit, { fontSize: iconSize }),
|
|
4351
|
+
chevronRight: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.ChevronRight, { fontSize: iconSize }),
|
|
4352
|
+
chevronUp: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.KeyboardArrowUp, { fontSize: iconSize }),
|
|
4353
|
+
chevronDown: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.KeyboardArrowDown, { fontSize: iconSize }),
|
|
4354
|
+
close: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Close, { fontSize: iconSize }),
|
|
4355
|
+
delete: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Delete, { fontSize: iconSize, fill: colors.neutral800 }),
|
|
4356
|
+
done: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Done, { fontSize: iconSize }),
|
|
4357
|
+
edit: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Edit, { fontSize: iconSize }),
|
|
4358
|
+
email: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Email, { fontSize: iconSize }),
|
|
4352
4359
|
grape: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconGrape_default, {}),
|
|
4353
|
-
groupAdd: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4354
|
-
history: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4355
|
-
menu: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4356
|
-
threeDots: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4357
|
-
notes: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4358
|
-
refresh: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4359
|
-
remove: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4360
|
-
search: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4361
|
-
send: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4360
|
+
groupAdd: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.GroupAdd, { fontSize: iconSize }),
|
|
4361
|
+
history: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.History, { fontSize: iconSize }),
|
|
4362
|
+
menu: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Menu, { fontSize: iconSize }),
|
|
4363
|
+
threeDots: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.MoreHoriz, { fontSize: iconSize, color: iconColor }),
|
|
4364
|
+
notes: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Comment, { fontSize: iconSize }),
|
|
4365
|
+
refresh: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Refresh, { fontSize: iconSize }),
|
|
4366
|
+
remove: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Remove, { fontSize: iconSize }),
|
|
4367
|
+
search: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Search, { fontSize: iconSize }),
|
|
4368
|
+
send: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Send, { fontSize: iconSize }),
|
|
4362
4369
|
strawberry: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconStrawberry_default, {}),
|
|
4363
|
-
thumbDown: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4364
|
-
thumbUp: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4365
|
-
undo: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4366
|
-
play: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4370
|
+
thumbDown: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.ThumbDown, { fontSize: iconSize }),
|
|
4371
|
+
thumbUp: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.ThumbUp, { fontSize: iconSize }),
|
|
4372
|
+
undo: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.Undo, { fontSize: iconSize }),
|
|
4373
|
+
play: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.PlayArrowRounded, { fontSize: iconSize }),
|
|
4367
4374
|
snail: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(icons_default.SvgIconSnail, { fontSize: iconSize, fill: colors.muiPrimary }),
|
|
4368
4375
|
bus: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconBus_default, {}),
|
|
4369
4376
|
spoon: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconSpoon_default, {}),
|
|
@@ -4373,7 +4380,7 @@ var RoundButton = ({
|
|
|
4373
4380
|
bicycle: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconBicycle_default, {}),
|
|
4374
4381
|
heart: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconHeart_default, {}),
|
|
4375
4382
|
airplane: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(IconAirplane_default, {}),
|
|
4376
|
-
swapHoriz: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
4383
|
+
swapHoriz: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_icons_material2.SwapHoriz, { fontSize: iconSize })
|
|
4377
4384
|
};
|
|
4378
4385
|
const filteredSize = size === "double" ? void 0 : size;
|
|
4379
4386
|
const handleClick = (e) => {
|
|
@@ -4899,7 +4906,7 @@ var ControlledNumberInput_default = ControlledNumberInput;
|
|
|
4899
4906
|
// src/components/ControlledNumericField/ControlledNumericField.tsx
|
|
4900
4907
|
var import_react19 = require("react");
|
|
4901
4908
|
var import_react_hook_form5 = require("react-hook-form");
|
|
4902
|
-
var
|
|
4909
|
+
var import_icons_material3 = require("@mui/icons-material");
|
|
4903
4910
|
var import_material33 = require("@mui/material");
|
|
4904
4911
|
var import_mui20 = require("tss-react/mui");
|
|
4905
4912
|
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
@@ -5056,7 +5063,7 @@ var ControlledNumericField = ({
|
|
|
5056
5063
|
className: classes.arrowButton,
|
|
5057
5064
|
onClick: incrementValue(field),
|
|
5058
5065
|
"data-testid": "arrow-up",
|
|
5059
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
5066
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(import_icons_material3.KeyboardArrowUp, { sx: { fontSize: 15 } })
|
|
5060
5067
|
}
|
|
5061
5068
|
),
|
|
5062
5069
|
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
@@ -5066,7 +5073,7 @@ var ControlledNumericField = ({
|
|
|
5066
5073
|
className: classes.arrowButton,
|
|
5067
5074
|
onClick: decrementValue(field),
|
|
5068
5075
|
"data-testid": "arrow-down",
|
|
5069
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
5076
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(import_icons_material3.KeyboardArrowDown, { sx: { fontSize: 15 } })
|
|
5070
5077
|
}
|
|
5071
5078
|
)
|
|
5072
5079
|
] }) })
|
|
@@ -5646,7 +5653,7 @@ var DeliveryInstructionsFormFields = ({
|
|
|
5646
5653
|
};
|
|
5647
5654
|
|
|
5648
5655
|
// src/components/FileCard/FileCard.tsx
|
|
5649
|
-
var
|
|
5656
|
+
var import_Description = __toESM(require("@mui/icons-material/Description"), 1);
|
|
5650
5657
|
var import_material40 = require("@mui/material");
|
|
5651
5658
|
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
5652
5659
|
var getFileMetadata = (file) => {
|
|
@@ -5681,7 +5688,7 @@ var FileCard = ({ document: document2 }) => {
|
|
|
5681
5688
|
justifyContent: "center",
|
|
5682
5689
|
alignItems: "center"
|
|
5683
5690
|
},
|
|
5684
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
5691
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_Description.default, { fontSize: "medium", color: "action" })
|
|
5685
5692
|
}
|
|
5686
5693
|
),
|
|
5687
5694
|
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
@@ -7666,7 +7673,7 @@ var import_mui45 = require("tss-react/mui");
|
|
|
7666
7673
|
// src/components/SearchWithFilters/SearchWithFilters.tsx
|
|
7667
7674
|
var import_react34 = require("react");
|
|
7668
7675
|
var React6 = __toESM(require("react"), 1);
|
|
7669
|
-
var
|
|
7676
|
+
var import_icons_material4 = require("@mui/icons-material");
|
|
7670
7677
|
var import_material60 = require("@mui/material");
|
|
7671
7678
|
var import_mui44 = require("tss-react/mui");
|
|
7672
7679
|
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
@@ -7730,7 +7737,7 @@ var SearchWithFilters = ({
|
|
|
7730
7737
|
setSearchText(searchValue);
|
|
7731
7738
|
}, [searchValue]);
|
|
7732
7739
|
return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(import_material60.Paper, { className: classes.searchContainer, children: [
|
|
7733
|
-
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
7740
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_icons_material4.Search, { className: classes.icon, fontSize: "small" }),
|
|
7734
7741
|
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
7735
7742
|
import_material60.InputBase,
|
|
7736
7743
|
{
|
|
@@ -7752,7 +7759,7 @@ var SearchWithFilters = ({
|
|
|
7752
7759
|
disabled,
|
|
7753
7760
|
children: [
|
|
7754
7761
|
"Filters",
|
|
7755
|
-
showFilters ? /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
7762
|
+
showFilters ? /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_icons_material4.ArrowDropUp, {}) : /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_icons_material4.ArrowDropDown, {})
|
|
7756
7763
|
]
|
|
7757
7764
|
}
|
|
7758
7765
|
)
|
|
@@ -7827,7 +7834,7 @@ var import_mui47 = require("tss-react/mui");
|
|
|
7827
7834
|
|
|
7828
7835
|
// src/components/SearchWithFilters/SearchWithFiltersForTable.tsx
|
|
7829
7836
|
var import_react35 = require("react");
|
|
7830
|
-
var
|
|
7837
|
+
var import_icons_material5 = require("@mui/icons-material");
|
|
7831
7838
|
var import_material62 = require("@mui/material");
|
|
7832
7839
|
var import_mui46 = require("tss-react/mui");
|
|
7833
7840
|
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
@@ -7904,9 +7911,9 @@ var SearchWithFiltersForTable = (props) => {
|
|
|
7904
7911
|
enterPressedInSearch();
|
|
7905
7912
|
}
|
|
7906
7913
|
};
|
|
7907
|
-
const ArrowIcon = isOpen ?
|
|
7914
|
+
const ArrowIcon = isOpen ? import_icons_material5.ArrowDropUp : import_icons_material5.ArrowDropDown;
|
|
7908
7915
|
return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(import_material62.Paper, { className: classes.c_search, children: [
|
|
7909
|
-
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material62.Box, { className: classes.c_search__icon, children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
7916
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_material62.Box, { className: classes.c_search__icon, children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_icons_material5.Search, { className: classes.icon, fontSize: "small" }) }),
|
|
7910
7917
|
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
7911
7918
|
import_material62.InputBase,
|
|
7912
7919
|
{
|
|
@@ -10313,7 +10320,7 @@ var TableDesktopToolbar = ({
|
|
|
10313
10320
|
|
|
10314
10321
|
// src/components/TableHeader/TableHeader.tsx
|
|
10315
10322
|
var import_react52 = require("react");
|
|
10316
|
-
var
|
|
10323
|
+
var import_ImportExport = __toESM(require("@mui/icons-material/ImportExport"), 1);
|
|
10317
10324
|
var import_material84 = require("@mui/material");
|
|
10318
10325
|
var import_mui53 = require("tss-react/mui");
|
|
10319
10326
|
var import_jsx_runtime142 = require("react/jsx-runtime");
|
|
@@ -10366,7 +10373,7 @@ var TableHeader = ({ cells, onSort = null }) => {
|
|
|
10366
10373
|
{
|
|
10367
10374
|
className: classes.sortLabel,
|
|
10368
10375
|
direction: cell?.direction || "asc",
|
|
10369
|
-
IconComponent:
|
|
10376
|
+
IconComponent: import_ImportExport.default,
|
|
10370
10377
|
onClick: () => handleSortClick(cell),
|
|
10371
10378
|
children: cell.label
|
|
10372
10379
|
}
|