@fctc/sme-widget-ui 2.7.4 → 2.7.5
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/index.css +1 -1
- package/dist/index.js +172 -167
- package/dist/index.mjs +173 -168
- package/dist/widgets.css +1 -1
- package/dist/widgets.d.mts +1 -1
- package/dist/widgets.d.ts +1 -1
- package/dist/widgets.js +253 -248
- package/dist/widgets.mjs +245 -240
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
+
@import "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";
|
|
2
3
|
|
|
3
4
|
/* src/index.css */
|
|
4
5
|
@tailwind base;
|
|
5
6
|
@tailwind components;
|
|
6
7
|
@tailwind utilities;
|
|
7
|
-
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
|
|
8
8
|
* {
|
|
9
9
|
font-family: "Inter", sans-serif;
|
|
10
10
|
}
|
package/dist/index.js
CHANGED
|
@@ -15678,7 +15678,7 @@ var PopupFilter = ({
|
|
|
15678
15678
|
right: 0,
|
|
15679
15679
|
zIndex: 33
|
|
15680
15680
|
},
|
|
15681
|
-
className: "popup-filter w-full overflow-x-auto rounded-lg border
|
|
15681
|
+
className: "popup-filter w-full overflow-x-auto rounded-lg border bg-white border-none shadow-xl",
|
|
15682
15682
|
children: /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
|
|
15683
15683
|
"div",
|
|
15684
15684
|
{
|
|
@@ -15783,36 +15783,121 @@ var PopupFilter = ({
|
|
|
15783
15783
|
// src/widgets/advanced/search/search-item/index.tsx
|
|
15784
15784
|
var import_react21 = require("react");
|
|
15785
15785
|
|
|
15786
|
+
// src/widgets/advanced/search/search-list/index.tsx
|
|
15787
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
15788
|
+
var SearchList = ({
|
|
15789
|
+
handleAddTagSearch,
|
|
15790
|
+
handleMouseEnter,
|
|
15791
|
+
handleMouseLeave,
|
|
15792
|
+
searchBy,
|
|
15793
|
+
searchString,
|
|
15794
|
+
hoveredIndexSearchList
|
|
15795
|
+
}) => {
|
|
15796
|
+
const { t: t3 } = useI18n();
|
|
15797
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
15798
|
+
"div",
|
|
15799
|
+
{
|
|
15800
|
+
style: {
|
|
15801
|
+
position: "absolute",
|
|
15802
|
+
top: "calc(100% + 5px)",
|
|
15803
|
+
left: 0,
|
|
15804
|
+
right: 0,
|
|
15805
|
+
zIndex: 31
|
|
15806
|
+
},
|
|
15807
|
+
className: `${searchString === "" ? "hidden" : "block"} w-full overflow-x-auto rounded-[0.25rem] border-none bg-white shadow-lg`,
|
|
15808
|
+
children: searchBy?.map((searchItem, index4) => {
|
|
15809
|
+
if (searchItem?.type === "date" || searchItem?.type === "datetime") {
|
|
15810
|
+
if (!validateAndParseDate(searchString, searchItem?.type === "datetime"))
|
|
15811
|
+
return;
|
|
15812
|
+
}
|
|
15813
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
|
|
15814
|
+
"button",
|
|
15815
|
+
{
|
|
15816
|
+
onClick: () => {
|
|
15817
|
+
typeof handleAddTagSearch === "function" && handleAddTagSearch({
|
|
15818
|
+
title: searchItem?.title,
|
|
15819
|
+
name: searchItem?.name,
|
|
15820
|
+
value: searchString,
|
|
15821
|
+
domain: searchItem?.filter_domain,
|
|
15822
|
+
operator: searchItem?.operator,
|
|
15823
|
+
type: SearchType.SEARCH,
|
|
15824
|
+
modelType: searchItem?.type,
|
|
15825
|
+
widget: searchItem?.widget,
|
|
15826
|
+
dataIndex: searchItem?.dataIndex
|
|
15827
|
+
});
|
|
15828
|
+
},
|
|
15829
|
+
onMouseEnter: () => typeof handleMouseEnter === "function" && handleMouseEnter(index4),
|
|
15830
|
+
onMouseLeave: () => typeof handleMouseLeave === "function" && handleMouseLeave(),
|
|
15831
|
+
style: {
|
|
15832
|
+
display: "block",
|
|
15833
|
+
width: "100%",
|
|
15834
|
+
cursor: "pointer",
|
|
15835
|
+
whiteSpace: "nowrap",
|
|
15836
|
+
padding: "2px 12px",
|
|
15837
|
+
paddingTop: "4px",
|
|
15838
|
+
paddingBottom: "4px",
|
|
15839
|
+
textAlign: "left",
|
|
15840
|
+
transitionDuration: "0ms",
|
|
15841
|
+
backgroundColor: hoveredIndexSearchList === index4 ? "rgba(0,0,0,0.08)" : "white",
|
|
15842
|
+
fontSize: "14px"
|
|
15843
|
+
},
|
|
15844
|
+
children: [
|
|
15845
|
+
t3("search"),
|
|
15846
|
+
" ",
|
|
15847
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "font-bold", children: searchItem?.title }),
|
|
15848
|
+
" ",
|
|
15849
|
+
t3("for"),
|
|
15850
|
+
":",
|
|
15851
|
+
" ",
|
|
15852
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "custom-input-result text-primary font-bold italic", children: searchString })
|
|
15853
|
+
]
|
|
15854
|
+
},
|
|
15855
|
+
"header-" + index4 + 1
|
|
15856
|
+
);
|
|
15857
|
+
})
|
|
15858
|
+
}
|
|
15859
|
+
);
|
|
15860
|
+
};
|
|
15861
|
+
|
|
15786
15862
|
// src/widgets/advanced/search/tag-search/index.tsx
|
|
15787
15863
|
var import_react20 = require("react");
|
|
15788
|
-
var
|
|
15864
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
15789
15865
|
var TagSearch = ({
|
|
15790
15866
|
removeSearchItems,
|
|
15791
15867
|
selectedTags,
|
|
15792
15868
|
filterBy,
|
|
15793
|
-
setFilterBy
|
|
15794
|
-
setGroupBy
|
|
15869
|
+
setFilterBy
|
|
15795
15870
|
}) => {
|
|
15871
|
+
const { t: t3 } = useI18n();
|
|
15796
15872
|
return selectedTags?.length > 0 && selectedTags?.map((tag, index4) => {
|
|
15797
15873
|
if (tag?.values?.length > 0) {
|
|
15798
15874
|
if (tag?.type !== "group_by") {
|
|
15799
|
-
return /* @__PURE__ */ (0,
|
|
15875
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
|
|
15800
15876
|
"div",
|
|
15801
15877
|
{
|
|
15802
15878
|
className: "flex min-h-full overflow-hidden rounded bg-[#E9ECEF] hover:shadow-xl",
|
|
15803
15879
|
children: [
|
|
15804
|
-
/* @__PURE__ */ (0,
|
|
15805
|
-
/* @__PURE__ */ (0,
|
|
15806
|
-
|
|
15807
|
-
|
|
15808
|
-
|
|
15809
|
-
|
|
15810
|
-
|
|
15811
|
-
|
|
15812
|
-
|
|
15813
|
-
|
|
15814
|
-
|
|
15815
|
-
|
|
15880
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: "bg-primary flex items-center justify-center px-2 text-sm font-semibold leading-[1.5] text-white", children: tag?.type === SearchType.SEARCH ? tag?.title : /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(FilterIcon, {}) }),
|
|
15881
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
15882
|
+
"div",
|
|
15883
|
+
{
|
|
15884
|
+
style: {
|
|
15885
|
+
paddingLeft: "8px"
|
|
15886
|
+
},
|
|
15887
|
+
className: "align-middle text-[#495057] text-[14px]",
|
|
15888
|
+
children: tag.values.map((value, idx) => {
|
|
15889
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(import_react20.Fragment, { children: [
|
|
15890
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { children: value }),
|
|
15891
|
+
idx < tag.values.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("span", { className: "text-sm italic text-[#495057] text-opacity-50", children: [
|
|
15892
|
+
" ",
|
|
15893
|
+
t3("or"),
|
|
15894
|
+
" "
|
|
15895
|
+
] })
|
|
15896
|
+
] }, idx);
|
|
15897
|
+
})
|
|
15898
|
+
}
|
|
15899
|
+
),
|
|
15900
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
15816
15901
|
"button",
|
|
15817
15902
|
{
|
|
15818
15903
|
className: "px-2 text-sm font-bold",
|
|
@@ -15829,7 +15914,7 @@ var TagSearch = ({
|
|
|
15829
15914
|
);
|
|
15830
15915
|
}
|
|
15831
15916
|
},
|
|
15832
|
-
children: /* @__PURE__ */ (0,
|
|
15917
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(CloseIcon, { className: "size-4 cursor-pointer" })
|
|
15833
15918
|
}
|
|
15834
15919
|
)
|
|
15835
15920
|
]
|
|
@@ -15837,41 +15922,35 @@ var TagSearch = ({
|
|
|
15837
15922
|
"selected-tag-" + index4
|
|
15838
15923
|
);
|
|
15839
15924
|
} else if (tag?.type === "group_by") {
|
|
15840
|
-
return /* @__PURE__ */ (0,
|
|
15925
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
15841
15926
|
"div",
|
|
15842
15927
|
{
|
|
15843
15928
|
className: "flex min-h-full overflow-hidden",
|
|
15844
|
-
children: /* @__PURE__ */ (0,
|
|
15845
|
-
(value, indexValue) => value?.strings?.length > 0 && /* @__PURE__ */ (0,
|
|
15929
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: "flex flex-wrap items-center gap-2 align-middle text-[#495057] text-[14px]", children: tag?.values?.length > 0 && tag?.values.map(
|
|
15930
|
+
(value, indexValue) => value?.strings?.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
|
|
15846
15931
|
"div",
|
|
15847
15932
|
{
|
|
15848
15933
|
className: "flex gap-2 overflow-hidden rounded bg-[#E9ECEF] hover:shadow-xl",
|
|
15849
15934
|
children: [
|
|
15850
|
-
/* @__PURE__ */ (0,
|
|
15851
|
-
value?.strings?.map((string, idx) => /* @__PURE__ */ (0,
|
|
15852
|
-
/* @__PURE__ */ (0,
|
|
15853
|
-
idx < value?.strings.length - 1 && /* @__PURE__ */ (0,
|
|
15935
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: "bg-primary flex items-center justify-center px-2 text-sm font-semibold leading-[1.5] text-white", children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(GroupByIcon, {}) }),
|
|
15936
|
+
value?.strings?.map((string, idx) => /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(import_jsx_runtime64.Fragment, { children: [
|
|
15937
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { children: string }),
|
|
15938
|
+
idx < value?.strings.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("span", { className: "text-sm italic text-[#495057] text-opacity-50", children: [
|
|
15854
15939
|
" ",
|
|
15855
15940
|
"> ",
|
|
15856
15941
|
" "
|
|
15857
15942
|
] })
|
|
15858
15943
|
] })),
|
|
15859
|
-
/* @__PURE__ */ (0,
|
|
15944
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
15860
15945
|
"button",
|
|
15861
15946
|
{
|
|
15862
15947
|
className: "pr-2 text-sm font-bold",
|
|
15863
15948
|
onClick: () => {
|
|
15864
15949
|
if (tag?.type === SearchType.GROUP) {
|
|
15865
15950
|
typeof removeSearchItems === "function" && removeSearchItems(`${SearchType.GROUP}`);
|
|
15866
|
-
setGroupBy(
|
|
15867
|
-
(prev2) => prev2?.map((item) => ({
|
|
15868
|
-
...item,
|
|
15869
|
-
active: false
|
|
15870
|
-
}))
|
|
15871
|
-
);
|
|
15872
15951
|
}
|
|
15873
15952
|
},
|
|
15874
|
-
children: /* @__PURE__ */ (0,
|
|
15953
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(CloseIcon, { className: "size-4 cursor-pointer" })
|
|
15875
15954
|
}
|
|
15876
15955
|
)
|
|
15877
15956
|
]
|
|
@@ -15887,75 +15966,6 @@ var TagSearch = ({
|
|
|
15887
15966
|
});
|
|
15888
15967
|
};
|
|
15889
15968
|
|
|
15890
|
-
// src/widgets/advanced/search/search-list/index.tsx
|
|
15891
|
-
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
15892
|
-
var SearchList = ({
|
|
15893
|
-
handleAddTagSearch,
|
|
15894
|
-
handleMouseEnter,
|
|
15895
|
-
handleMouseLeave,
|
|
15896
|
-
searchBy,
|
|
15897
|
-
searchString,
|
|
15898
|
-
hoveredIndexSearchList
|
|
15899
|
-
}) => {
|
|
15900
|
-
const { t: t3 } = useI18n();
|
|
15901
|
-
return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
15902
|
-
"div",
|
|
15903
|
-
{
|
|
15904
|
-
style: {
|
|
15905
|
-
top: "calc(100% + 3px)"
|
|
15906
|
-
},
|
|
15907
|
-
className: `${searchString === "" ? "hidden" : "block"} absolute left-0 right-0 top-[calc(100%_+_3px)] z-[31] w-full overflow-x-auto rounded-[0.25rem] border-none bg-white shadow-lg`,
|
|
15908
|
-
children: searchBy?.map((searchItem, index4) => {
|
|
15909
|
-
if (searchItem?.type === "date" || searchItem?.type === "datetime") {
|
|
15910
|
-
if (!validateAndParseDate(searchString, searchItem?.type === "datetime"))
|
|
15911
|
-
return;
|
|
15912
|
-
}
|
|
15913
|
-
return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
|
|
15914
|
-
"button",
|
|
15915
|
-
{
|
|
15916
|
-
onClick: () => {
|
|
15917
|
-
typeof handleAddTagSearch === "function" && handleAddTagSearch({
|
|
15918
|
-
title: searchItem?.title,
|
|
15919
|
-
name: searchItem?.name,
|
|
15920
|
-
value: searchString,
|
|
15921
|
-
domain: searchItem?.filter_domain,
|
|
15922
|
-
operator: searchItem?.operator,
|
|
15923
|
-
type: SearchType.SEARCH,
|
|
15924
|
-
modelType: searchItem?.type,
|
|
15925
|
-
widget: searchItem?.widget,
|
|
15926
|
-
dataIndex: searchItem?.dataIndex
|
|
15927
|
-
});
|
|
15928
|
-
},
|
|
15929
|
-
onMouseEnter: () => typeof handleMouseEnter === "function" && handleMouseEnter(index4),
|
|
15930
|
-
onMouseLeave: () => typeof handleMouseLeave === "function" && handleMouseLeave(),
|
|
15931
|
-
className: `block w-full cursor-pointer whitespace-nowrap p-2 px-3 py-1 text-left !duration-0 hover:!bg-[rgba(0,0,0,0.08)] hover:text-inherit text-sm ${hoveredIndexSearchList === index4 ? "bg-[rgba(0,0,0,0.08)]" : "bg-white"}`,
|
|
15932
|
-
children: [
|
|
15933
|
-
t3("search"),
|
|
15934
|
-
" ",
|
|
15935
|
-
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: "font-bold", children: searchItem?.title }),
|
|
15936
|
-
" ",
|
|
15937
|
-
t3("for"),
|
|
15938
|
-
":",
|
|
15939
|
-
" ",
|
|
15940
|
-
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
15941
|
-
"span",
|
|
15942
|
-
{
|
|
15943
|
-
style: {
|
|
15944
|
-
color: "var(--color-primary)"
|
|
15945
|
-
},
|
|
15946
|
-
className: "custom-input-result text-primary font-bold italic",
|
|
15947
|
-
children: searchString
|
|
15948
|
-
}
|
|
15949
|
-
)
|
|
15950
|
-
]
|
|
15951
|
-
},
|
|
15952
|
-
"header-" + index4 + 1
|
|
15953
|
-
);
|
|
15954
|
-
})
|
|
15955
|
-
}
|
|
15956
|
-
);
|
|
15957
|
-
};
|
|
15958
|
-
|
|
15959
15969
|
// src/widgets/advanced/search/search-item/index.tsx
|
|
15960
15970
|
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
15961
15971
|
var Search = ({
|
|
@@ -15980,7 +15990,11 @@ var Search = ({
|
|
|
15980
15990
|
selectedRowKeys,
|
|
15981
15991
|
domainSearch,
|
|
15982
15992
|
evalJSONContext,
|
|
15983
|
-
clearSearch
|
|
15993
|
+
clearSearch,
|
|
15994
|
+
onKeyDown,
|
|
15995
|
+
handleMouseEnter,
|
|
15996
|
+
handleMouseLeave,
|
|
15997
|
+
hoveredIndexSearchList
|
|
15984
15998
|
}) => {
|
|
15985
15999
|
const { t: t3 } = useI18n();
|
|
15986
16000
|
const [showPopupFilter, setShowPopupFilter] = (0, import_react21.useState)(false);
|
|
@@ -16017,9 +16031,8 @@ var Search = ({
|
|
|
16017
16031
|
const searchDefaults = Object.entries(context || {}).filter(
|
|
16018
16032
|
([key]) => key.startsWith("search_default_")
|
|
16019
16033
|
);
|
|
16020
|
-
const defaultGroupBy = context ? Object.entries(context).filter(([key]) => key.includes("group_by")) : [];
|
|
16021
16034
|
const hasGroupBy = viewData?.views?.search?.filters_by?.length > 0;
|
|
16022
|
-
if (searchDefaults.length === 0 && !hasGroupBy
|
|
16035
|
+
if (searchDefaults.length === 0 && !hasGroupBy) {
|
|
16023
16036
|
setIsReadyFormatDomain(true);
|
|
16024
16037
|
setDidInit(true);
|
|
16025
16038
|
return;
|
|
@@ -16040,23 +16053,7 @@ var Search = ({
|
|
|
16040
16053
|
}
|
|
16041
16054
|
return item;
|
|
16042
16055
|
});
|
|
16043
|
-
const updatedGroupBy = groupBy?.map((item) => {
|
|
16044
|
-
const defaultGroupByItem = defaultGroupBy.find(
|
|
16045
|
-
([_2, value]) => item?.context?.includes(value)
|
|
16046
|
-
);
|
|
16047
|
-
if (defaultGroupByItem && typeof handleAddTagSearch == "function") {
|
|
16048
|
-
handleAddTagSearch({
|
|
16049
|
-
name: item?.name,
|
|
16050
|
-
value: item?.string,
|
|
16051
|
-
type: SearchType.GROUP,
|
|
16052
|
-
context: JSON.parse(item?.context.replace(/'/g, '"'))
|
|
16053
|
-
});
|
|
16054
|
-
return { ...item, active: true };
|
|
16055
|
-
}
|
|
16056
|
-
return item;
|
|
16057
|
-
});
|
|
16058
16056
|
if (updatedFilter) setFilterBy(updatedFilter);
|
|
16059
|
-
if (updatedGroupBy) setGroupBy(updatedGroupBy);
|
|
16060
16057
|
if (hasGroupBy) {
|
|
16061
16058
|
viewData?.views?.search?.filters_by?.forEach((item, idx) => {
|
|
16062
16059
|
const groupCtx = evalJSONContext(item?.context);
|
|
@@ -16078,60 +16075,68 @@ var Search = ({
|
|
|
16078
16075
|
"div",
|
|
16079
16076
|
{
|
|
16080
16077
|
ref: popupFilterRef,
|
|
16081
|
-
className: `search
|
|
16078
|
+
className: `search ${selectedRowKeys?.length <= 0 ? "flex" : "hidden"} bg-white custom-search-input py-[8px] px-[16px] relative items-center w-full flex-1 xl:flex-1 rounded-[10px] bg-grey-100 shadow-[0px_1px_3px_rgba(16,24,40,0.1),0px_1px_2px_rgba(16,24,40,0.06)] min-h-[40px] border border-[#F2F2F2]`,
|
|
16082
16079
|
children: [
|
|
16083
|
-
/* @__PURE__ */ (0, import_jsx_runtime65.
|
|
16084
|
-
|
|
16085
|
-
|
|
16086
|
-
|
|
16087
|
-
|
|
16088
|
-
|
|
16089
|
-
|
|
16090
|
-
|
|
16091
|
-
|
|
16092
|
-
|
|
16093
|
-
|
|
16094
|
-
|
|
16095
|
-
|
|
16096
|
-
|
|
16097
|
-
|
|
16098
|
-
|
|
16099
|
-
|
|
16100
|
-
|
|
16101
|
-
|
|
16102
|
-
|
|
16103
|
-
|
|
16104
|
-
|
|
16105
|
-
|
|
16106
|
-
|
|
16107
|
-
|
|
16080
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
|
|
16081
|
+
"div",
|
|
16082
|
+
{
|
|
16083
|
+
className: `relative flex md:min-w-[400px] max-w-full items-center gap-[8px] w-full ${(showFiltersGroups || filterBy?.length > 0 || groupBy?.length > 0) && "border-r border-[rgba(242,242,242,1)]"}`,
|
|
16084
|
+
children: [
|
|
16085
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { className: "min-h-5 min-w-5", children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(SearchIcon, {}) }),
|
|
16086
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("div", { className: "flex flex-1 flex-wrap items-center gap-[8px]", children: [
|
|
16087
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
16088
|
+
TagSearch,
|
|
16089
|
+
{
|
|
16090
|
+
removeSearchItems,
|
|
16091
|
+
selectedTags,
|
|
16092
|
+
filterBy,
|
|
16093
|
+
setFilterBy
|
|
16094
|
+
}
|
|
16095
|
+
),
|
|
16096
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
16097
|
+
"input",
|
|
16098
|
+
{
|
|
16099
|
+
value: searchString,
|
|
16100
|
+
className: "min-h-[25px] w-fit flex-1 border-none bg-transparent outline-none min-w-[50px] text-sm",
|
|
16101
|
+
placeholder: t3("search..."),
|
|
16102
|
+
onChange: (e3) => {
|
|
16103
|
+
onSearchString(e3.target.value);
|
|
16104
|
+
setShowPopupFilter(false);
|
|
16105
|
+
},
|
|
16106
|
+
onKeyDown,
|
|
16107
|
+
onKeyUp: (e3) => e3.preventDefault()
|
|
16108
|
+
}
|
|
16109
|
+
),
|
|
16110
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
16111
|
+
SearchList,
|
|
16112
|
+
{
|
|
16113
|
+
handleAddTagSearch,
|
|
16114
|
+
searchBy,
|
|
16115
|
+
searchString,
|
|
16116
|
+
handleMouseEnter,
|
|
16117
|
+
handleMouseLeave,
|
|
16118
|
+
hoveredIndexSearchList
|
|
16119
|
+
}
|
|
16120
|
+
)
|
|
16121
|
+
] })
|
|
16122
|
+
]
|
|
16123
|
+
}
|
|
16124
|
+
),
|
|
16125
|
+
(showFiltersGroups || filterBy?.length > 0 || groupBy?.length > 0) && /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(import_jsx_runtime65.Fragment, { children: [
|
|
16108
16126
|
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
16109
|
-
SearchList,
|
|
16110
|
-
{
|
|
16111
|
-
handleAddTagSearch,
|
|
16112
|
-
searchBy,
|
|
16113
|
-
searchString
|
|
16114
|
-
}
|
|
16115
|
-
)
|
|
16116
|
-
] }),
|
|
16117
|
-
showFiltersGroups && /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(import_jsx_runtime65.Fragment, { children: [
|
|
16118
|
-
/* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
|
|
16119
16127
|
"div",
|
|
16120
16128
|
{
|
|
16121
|
-
className: `flex h-full
|
|
16129
|
+
className: `flex h-full cursor-pointer items-center justify-center px-[10px] max-w-fit`,
|
|
16122
16130
|
onClick: (e3) => {
|
|
16123
16131
|
e3.stopPropagation();
|
|
16124
16132
|
setShowPopupFilter((prev2) => !prev2);
|
|
16125
16133
|
},
|
|
16126
|
-
children:
|
|
16127
|
-
|
|
16128
|
-
|
|
16129
|
-
|
|
16130
|
-
|
|
16131
|
-
|
|
16132
|
-
}
|
|
16133
|
-
)
|
|
16134
|
-
]
|
|
16134
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("button", { className: "w-max cursor-pointer", children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
16135
|
+
ChevronBottomIcon,
|
|
16136
|
+
{
|
|
16137
|
+
className: `h-5 w-5 min-w-fit transition-all ${showPopupFilter ? "rotate-180 " : ""}`
|
|
16138
|
+
}
|
|
16139
|
+
) })
|
|
16135
16140
|
}
|
|
16136
16141
|
),
|
|
16137
16142
|
showPopupFilter && /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|