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.mjs
CHANGED
|
@@ -15679,7 +15679,10 @@ function DropDown({
|
|
|
15679
15679
|
/* @__PURE__ */ jsx21("ul", { className: "text-sm text-gray-800 space-y-2", children: items.map((item) => /* @__PURE__ */ jsx21(
|
|
15680
15680
|
"li",
|
|
15681
15681
|
{
|
|
15682
|
-
onClick: () =>
|
|
15682
|
+
onClick: (e) => {
|
|
15683
|
+
e.stopPropagation();
|
|
15684
|
+
onItemClick?.(item);
|
|
15685
|
+
},
|
|
15683
15686
|
className: clsx4(
|
|
15684
15687
|
"border-t border-gray-200 pt-2 cursor-pointer label-2 text-qtneutral-800 hover:text-qtpurple-500 !hover:label-2-bold",
|
|
15685
15688
|
activeItem === item ? "text-indigo-600 font-semibold" : ""
|
|
@@ -15752,7 +15755,8 @@ function PreviewCard({
|
|
|
15752
15755
|
/* @__PURE__ */ jsx22(
|
|
15753
15756
|
"div",
|
|
15754
15757
|
{
|
|
15755
|
-
onClick: () => {
|
|
15758
|
+
onClick: (e) => {
|
|
15759
|
+
e.stopPropagation();
|
|
15756
15760
|
setoverrideMenuOpen(!overrideMenuOpen);
|
|
15757
15761
|
},
|
|
15758
15762
|
children: /* @__PURE__ */ jsx22(
|