qt-ui-kit 1.0.72 → 1.0.73
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.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15706,7 +15706,10 @@ function DropDown({
|
|
|
15706
15706
|
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("ul", { className: "text-sm text-gray-800 space-y-2", children: items.map((item) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
15707
15707
|
"li",
|
|
15708
15708
|
{
|
|
15709
|
-
onClick: () =>
|
|
15709
|
+
onClick: (e) => {
|
|
15710
|
+
e.stopPropagation();
|
|
15711
|
+
onItemClick?.(item);
|
|
15712
|
+
},
|
|
15710
15713
|
className: (0, import_clsx4.default)(
|
|
15711
15714
|
"border-t border-gray-200 pt-2 cursor-pointer label-2 text-qtneutral-800 hover:text-qtpurple-500 !hover:label-2-bold",
|
|
15712
15715
|
activeItem === item ? "text-indigo-600 font-semibold" : ""
|
|
@@ -15779,7 +15782,8 @@ function PreviewCard({
|
|
|
15779
15782
|
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
15780
15783
|
"div",
|
|
15781
15784
|
{
|
|
15782
|
-
onClick: () => {
|
|
15785
|
+
onClick: (e) => {
|
|
15786
|
+
e.stopPropagation();
|
|
15783
15787
|
setoverrideMenuOpen(!overrideMenuOpen);
|
|
15784
15788
|
},
|
|
15785
15789
|
children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|