wwwxy
wwwxy
Fix typo in DAG demo ### Description fix typo ### Motivation and Context ### Types of changes - [x] Bug fix (non-breaking change which fixes an issue) - [ ]...
1. apiPrefix的类型为字符串,但是需要是嵌套的字符串('"api"')才能生效,如果只是单纯的字符串('api'),则会变成${api}的形式,这个是故意设计成这样的吗?感觉很怪 [代码行](https://github.com/chenshuai2144/openapi2typescript/blob/main/src/serviceGenerator.ts#L492) 2. README文件中apiPrefix的支持类型只写了string,但是实际还支持方法,是为了引导用户更多使用string故意不暴露还是遗漏了[代码行](https://github.com/chenshuai2144/openapi2typescript/blob/main/src/index.ts#L28)
[BUG] addImage editAs:'absolute' not working when use ext,the documentation needs to be more precise
## 🐛 Bug Report Lib version: 4.4.0 ## Steps To Reproduce [Codesandbox reproduce](https://codesandbox.io/p/sandbox/exceljs-test-87jxyk?file=%2Fsrc%2FApp.tsx) ```javascript const workbook = new ExcelJS.Workbook(); const imageDataURL = await qrcode.toDataURL("123"); const imageId = workbook.addImage({ base64: imageDataURL,...
### Initial checklist - [X] Is this really a problem? - [X] I have searched the Github Issues for similar issues, but did not find anything. ### Problem I want...
## Summary When adding images in a specific order, the wrong images are added fix https://github.com/exceljs/exceljs/issues/1804 ## Test plan before  after all case passed ## Related to source code...
## Summary I want remove some image in worksheet solve https://github.com/exceljs/exceljs/issues/1533 ## Test plan  ## Related to source code (for typings update)
说一下问题,感觉可能没必要为了这种特殊设备调整代码 我们这边有个工业平板(就是一个超大屏幕的定制安卓手机,不支持触屏操作,但是支持外接鼠标操作) 问题原因应该是这几行 https://github.com/alibaba/hooks/blob/661f1ff270674a2f255bb13319a9b6882c66a13c/packages/hooks/src/useLongPress/index.ts#L110-L119 这个设备很特殊,代码里的touchSupported是true,但是外接的鼠标操作,触发的时候是mouse相关事件,所以加的所有touch事件监听不生效。 没有设备想复现也有办法,在chrome里打开[useLongPress](https://ahooks.js.org/hooks/use-long-press/),这个时候长按和点击是有效的,然后在开发者工具将页面切换成移动设备,这个时候长按和点击都不生效了