Ejemplo n.º 1
0
 public static ValueTask <object> ShowTippyTooltip(this IJSRuntime jsRuntime,
                                                   ElementReference targetRef,
                                                   ElementReference contentRef,
                                                   PositionType position,
                                                   TriggerType trigger,
                                                   int duration,
                                                   int showDelay,
                                                   int hideDelay,
                                                   bool hasArrow) =>
 jsRuntime.InvokeAsync <object>("customComponentHandler.showTippyTooltip",
                                targetRef,
                                contentRef,
                                position.ToDescriptionString(),
                                trigger.ToDescriptionString(),
                                duration,
                                showDelay,
                                hideDelay,
                                hasArrow);