Electrolux
Electrolux
fix: https://github.com/evanw/esbuild/issues/3929
- [ ] I have searched the [issues](https://github.com/alibaba/formily/issues) of this repository and believe that this is not a duplicate. ### What problem does this feature solve? - 支持 在 x-validator...
_Before_ submitting a pull request, please make sure the following is done... - [x] Ensure the pull request title and commit message follow the [Commit Specific](https://formilyjs.org/guide/contribution#pr-specification) in **English**. - [x]...
- [ ] I have searched the [issues](https://github.com/alibaba/formily/issues) of this repository and believe that this is not a duplicate. 原因在于 源码中 `getRulesKeys` 的函数 只对key值的存在进行了校验,如果key存在那么就认为这条校验存在 ### Steps to reproduce ```tsx import...
fix https://github.com/ant-design/ant-design-mobile/issues/6334 移动端 级联选择器支持多选逻辑,一些ts类型和细节需要调整 - 设计的理念是 将分层级的 array数组变成 tree,尽可能保留原来代码的形式进行这个功能的新增。 - 由于屏幕尺寸的限制,原先默认 点击选项会进行check 和 uncheck的切换,但是考虑到用户可能不想 点击选项切换而是想要查看这个选择背后的选项。添加activeIconSetPath 这个bool值。对应着pc端的这个按钮。  之所以不直接用这个按钮是因为在mobile可能不好看  并且要处理类似于点击子级然后父级也要被选中的逻辑,由于是分层级的array数组,所以如果添加了这一个设计那么每一次点击这个选项都要深度遍历一次 options,因此将这个按钮和 activeIcon这个 元素做了合并 - 下面是使用示例视频: https://github.com/user-attachments/assets/52c823ab-8520-4078-975b-9914beef4300 - 下面是使用的demo ```tsx import...
fix https://github.com/testing-library/dom-testing-library/issues/1327 this pr is about mock brower event, it is a possible solutions to the https://github.com/testing-library/dom-testing-library/issues/1327) issues **What**: This PR adds two new lifecycle methods, `before` and `cond`, developers...
- @testing-library/dom 9.3.4 version: - Testing Framework and version: null - DOM Environment: 20.0.3 ### Reproduction: ```js import { fireEvent, render,act } from '@testing-library/react' import type { FC } from...
**Description** Hello, I've noticed that there seem to be several issues in the user collaboration. So I'd like to discuss and communicate about them with you. Issue One: Suppose there...
## Feature Proposal **Decouple CSV/XLSX Loading Logic in `exceljs`** , The path is `lib/doc/workbook.js` https://github.com/exceljs/exceljs/blob/5bed18b45e824f409b08456b59b87430ded023ab/lib/doc/workbook.js#L34-L42 Currently, the library bundles all parsing logic (CSV, XLSX, etc.) into a single monolithic file,...
fix https://github.com/tnfe/FFCreator/issues/326 在这个代码中 https://github.com/tnfe/FFCreator/blob/abbbb1104f484278cc61c3be65408f2a6c7cc3a7/lib/conf/conf.js#L48 给outputDir设置了一个默认值,导致了下面的代码每次都会进入 `if (this.inCenter && outputDir)` ,这导致了 output 这个变量永远都会被 uuid 设置,从而用户 实例化的 output永远不生效 https://github.com/tnfe/FFCreator/blob/abbbb1104f484278cc61c3be65408f2a6c7cc3a7/lib/creator.js#L99-L105