Results 3 issues of creater

OnDragListener接口里 DragEvent是什么?里边的常量值能说一下么

### Describe the bug ![image](https://github.com/user-attachments/assets/bca8fb6f-f447-45a1-95b6-70819995e5bf) ### Reproducer https://primevue.org/tieredmenu/ ### PrimeVue version latest ### Vue version 4.x ### Language TypeScript ### Build / Runtime Vite ### Browser(s) any ### Steps to...

Status: Needs Triage

```javascript // 忽略关键字大小写的关键函数,支持语法定义中直接使用关键字字面量 function makeCaseInsensitive(lexer, tokenType) { // 将tokenType 转换成map, const map = new Map(); for (const [type, keywords] of Object.entries(tokenType)) { Array.from(keywords).forEach(k => map.set(k.toLowerCase(), type)); } lexer.next = (next...