@monolith-forensics/monolith-ui 1.2.120 → 1.2.121
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.
|
@@ -58,7 +58,8 @@ const EmptyComponent = styled.div `
|
|
|
58
58
|
align-items: center;
|
|
59
59
|
justify-content: center;
|
|
60
60
|
padding: 5px;
|
|
61
|
-
font-size:
|
|
61
|
+
font-size: 12px;
|
|
62
|
+
font-weight: 500;
|
|
62
63
|
color: ${(props) => props.theme.palette.text.secondary};
|
|
63
64
|
`;
|
|
64
65
|
const GroupTitle = styled((_a) => {
|
|
@@ -517,7 +518,11 @@ DropDownProps = {}, debounceTime = 175, sort = false, disabled = false, }) => {
|
|
|
517
518
|
: "",
|
|
518
519
|
}, variant: variant, "data-empty": filteredItems.length === 0 }, DropDownProps, { children: [loading && _jsx(Loader, {}), !loading && actionComponent && (_jsx(ActionMenu, { onClick: () => {
|
|
519
520
|
setIsOpen(false);
|
|
520
|
-
}, children: actionComponent })), !loading && filteredItems.length === 0 && (_jsx(EmptyComponent, { children:
|
|
521
|
+
}, children: actionComponent })), !loading && filteredItems.length === 0 && (_jsx(EmptyComponent, { children: allowCustomValue && searchValue
|
|
522
|
+
? `Add "${searchValue}" as a new item`
|
|
523
|
+
: !!searchValue
|
|
524
|
+
? `No items found`
|
|
525
|
+
: "No items" })), !loading && (_jsx(StyledInnerItemContainer, { ref: scrollContainerRef, "data-scroll-active": scrollActive, onScroll: onScroll, children: grouped
|
|
521
526
|
? groups.map((group, index) => (_jsxs("div", { children: [_jsx(GroupTitle, { size: size, children: group.label }), group.items.map((item, index) => {
|
|
522
527
|
return (_jsx(Tooltip, { content: OptionTooltip ? (_jsx(OptionTooltip, { data: item.data })) : null, side: "left", children: _jsx(StyledItem, { className: "mfFloatingItem", onClick: (e) => handleItemClick(e, item), "data-selected": (_value === null || _value === void 0 ? void 0 : _value.value) === item.value, "data-disabled": item.disabled, size: size, children: (renderOption === null || renderOption === void 0 ? void 0 : renderOption(item)) || _jsx(_Fragment, { children: item === null || item === void 0 ? void 0 : item.label }) }, index) }, index));
|
|
523
528
|
})] }, group.label)))
|