features/rewrite/dropdown #14

Merged
koma merged 10 commits from features/rewrite/dropdown into features/rewrite/main 2023-03-15 09:38:57 +00:00
Showing only changes of commit c0b1c950a6 - Show all commits

View File

@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Components;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Connected.Components;
[EventHandler("ontransitionend", typeof(EventArgs), enableStopPropagation: true, enablePreventDefault: false)]
[EventHandler("onanimationend", typeof(EventArgs), enableStopPropagation: true, enablePreventDefault: false)]
public static class EventHandlers
{
}