joyexpr

Results 19 issues of joyexpr

- [ ] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design-vue/issues) ## Basic Info - **Package Name And Version:** @arco-design/[email protected] - **Browser:** chrome78.0.3904.108 ## Steps...

feature request: setCaptcha support to pass SetCaptchaOption array, for now, only can pass one SetCaptchaOption for example, I want generate a captcha: "abcd", and "ab" is red, "cd" is green

feature request
todo :spiral_notepad:

目前文件编码为GBK,在很多环境里中文是乱码,建议改为通用的UTF-8格式

目前文档上推荐esc取消截图方案为下述代码,但一旦使用globalShortcut,如果需要在其他页面上使用mousetrap捕捉esc事件就办法了。 需求:提供esc取消截图只在开始截图后才生效。 或者暴露更多screenshots的事件,我们在开始时注册globalShortcut,关闭时取消注册,目前只有ok、cancel、save 三个事件没办法做到上述需求 globalShortcut.register('esc', () => { if (screenshots.$win?.isFocused()) { screenshots.endCapture() } })

bug: scrollToBottom可能会导致无限循环执行,导致列表一直在底部无法向上拉 https://github.com/tangbc/vue-virtual-scroll-list/commit/feb2135437ee528b120542b67ed0eca9621767db ``` setTimeout(() => { if (this.getOffset() + this.getClientSize() < this.getScrollSize()) { this.scrollToBottom() } }, 3) ``` 应该改为 ``` setTimeout(() => { if (this.getOffset() + this.getClientSize() + 1...

is it possible to support creating throttle group for distributed environment (among multiple server nodes), using redis ? if so, that would be useful. for example, we can use it...

when used in electron, emits error TypeError: logger.isLevelEnabled is not a function, seems pino logger in electron not has this method may be should remove : if (log.isLevelEnabled('debug')) , because...

### Describe the bug vite从5.3.6升级到5.4.0后,import.meta.env无法正常读取,会报错 ReferenceError: Cannot access '__vite_import_meta_env__' before initialization export function getPackEnv(): string { console.error('111 2' + JSON.stringify(process.env)) console.error('111 ' + JSON.stringify(import.meta.env)) return ( import.meta.env?.MAIN_VITE_APP_ENV || import.meta.env?.RENDERER_VITE_APP_ENV ||...

请问主题商店创建的主题能否支持不发布到npm,只要直接下载即可? 或者发布到npm的主题包能否支持取消发布或撤销某个版本号?试了下删除主题商店自建的主题,npm上已发布的仍然还可访问下载