Compare commits

...

2 Commits

Author SHA1 Message Date
f3a80560c8 Fixed missing parameter. 2025-04-11 10:19:19 +02:00
b65cb3354b Added missing parameter. 2025-04-10 15:54:36 +02:00
2 changed files with 4 additions and 0 deletions

View File

@ -984,6 +984,7 @@ export class InteractionMapper extends InteractionDelegate {
useCapture = true,
capturePointerEvents = true,
mouseWheelElement = null,
preventPointerClicks = true,
logInteractionsAbove = 12
} = {}
) {
@ -991,6 +992,7 @@ export class InteractionMapper extends InteractionDelegate {
tapDistance,
useCapture,
capturePointerEvents,
preventPointerClicks,
longPressTime,
mouseWheelElement
})

View File

@ -192,6 +192,7 @@ export default class PopupMenu extends Popup {
keepWithin = null,
backgroundColor = '#EEE',
normalColor = '#444',
highlightColor = 'black',
autoClose = true,
} = {}
) {
@ -214,6 +215,7 @@ export default class PopupMenu extends Popup {
maxWidth,
backgroundColor,
normalColor,
highlightColor,
notchPosition,
keepWithin,
autoClose,