@pnkx-lib/ui 1.9.263 → 1.9.264
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/es/ui/index.js +11 -4
- package/package.json +1 -1
package/es/ui/index.js
CHANGED
|
@@ -5008,7 +5008,7 @@ const DropListActions = ({
|
|
|
5008
5008
|
};
|
|
5009
5009
|
const renderContentPopover = () => {
|
|
5010
5010
|
return /* @__PURE__ */ jsx("div", { className: "flex flex-col", children: !isEmpty(listIcon) && listIcon?.map(
|
|
5011
|
-
(item, index) => item?.showTitle && /* @__PURE__ */ jsxs(
|
|
5011
|
+
(item, index) => item?.showTitle && IsShow(item?.arrShow) && /* @__PURE__ */ jsxs(
|
|
5012
5012
|
"button",
|
|
5013
5013
|
{
|
|
5014
5014
|
className: twMerge(
|
|
@@ -5034,7 +5034,7 @@ const DropListActions = ({
|
|
|
5034
5034
|
});
|
|
5035
5035
|
},
|
|
5036
5036
|
children: [
|
|
5037
|
-
|
|
5037
|
+
item.iconDropList,
|
|
5038
5038
|
/* @__PURE__ */ jsx("span", { children: item.name || "" })
|
|
5039
5039
|
]
|
|
5040
5040
|
},
|
|
@@ -5043,7 +5043,15 @@ const DropListActions = ({
|
|
|
5043
5043
|
) });
|
|
5044
5044
|
};
|
|
5045
5045
|
//! Render
|
|
5046
|
-
return /* @__PURE__ */ jsx("div", { className: "w-full flex justify-center items-center", children: /* @__PURE__ */ jsx(
|
|
5046
|
+
return /* @__PURE__ */ jsx("div", { className: "w-full flex justify-center items-center", children: /* @__PURE__ */ jsx(
|
|
5047
|
+
Popover,
|
|
5048
|
+
{
|
|
5049
|
+
placement: "bottom",
|
|
5050
|
+
content: renderContentPopover(),
|
|
5051
|
+
trigger: "click",
|
|
5052
|
+
children: /* @__PURE__ */ jsx("div", { className: "p-1 border-[#BDE3FF] rounded-full border cursor-pointer", children: /* @__PURE__ */ jsx(MoreIcon, { fill: "#007BE5" }) })
|
|
5053
|
+
}
|
|
5054
|
+
) });
|
|
5047
5055
|
};
|
|
5048
5056
|
|
|
5049
5057
|
const BulkActions = ({
|
|
@@ -5185,7 +5193,6 @@ const BulkActions = ({
|
|
|
5185
5193
|
handleSubmit: () => {
|
|
5186
5194
|
}
|
|
5187
5195
|
});
|
|
5188
|
-
console.log("typeBulkaction", typeBulkaction);
|
|
5189
5196
|
//! Function
|
|
5190
5197
|
const renderBulkActions = () => {
|
|
5191
5198
|
switch (typeBulkaction) {
|