@pathscale/ui 1.1.66 → 1.1.67
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.
|
@@ -516,7 +516,8 @@ const SelectPopover = (props)=>{
|
|
|
516
516
|
"class",
|
|
517
517
|
"className",
|
|
518
518
|
"dataTheme",
|
|
519
|
-
"style"
|
|
519
|
+
"style",
|
|
520
|
+
"onPointerDown"
|
|
520
521
|
]);
|
|
521
522
|
const overlayPosition = (0, __WEBPACK_EXTERNAL_MODULE__shared_overlayPosition_js_ab299723__.createOverlayPosition)({
|
|
522
523
|
open: ()=>ctx?.open() ?? false,
|
|
@@ -560,6 +561,10 @@ const SelectPopover = (props)=>{
|
|
|
560
561
|
},
|
|
561
562
|
get style () {
|
|
562
563
|
return popoverStyle();
|
|
564
|
+
},
|
|
565
|
+
onPointerDown: (event)=>{
|
|
566
|
+
invokeEventHandler(local.onPointerDown, event);
|
|
567
|
+
if (!event.defaultPrevented) event.stopPropagation();
|
|
563
568
|
}
|
|
564
569
|
}), false, true);
|
|
565
570
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$10, ()=>local.children);
|