-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: radio/checkbox选中判断改回正则 (#2927) * fix(table): row-edit event not trigger (#2934) * fix(statistic): fix with missing default precision (#2933) * fix(radio): 选项内容变化后样式问题修复 (#2936) fix #2930 * feat: cascader value-display (#2938) * feat: 增加 cascader 对 valueDisplay 的支持 * test: update snap * fix(pagination): when total is 0 and pageSize change, current value is 0 (#2937) * fix(tree): tree 节点禁用状态逻辑改进 (#2935) * test(tree): 完善 tree 组件的禁用示例 * fix(tree): tree 组件, 禁用状态过滤函数不再仅生效于UI层,将传递到模型侧参与状态计算 * fix(tree): tree 组件完善禁用逻辑 * fix(tree): tree 组件添加 refresh 方法刷新节点状态 * test(tree): tree 组件,完善 disabled 相关示例 * fix(tree): tree 组件,完善半选状态下的状态切换 * test(tree): tree 组件,完善操作示例,提供 disabled 状态与其他状态的整合演示 * chore(tree): tree 组件,更新 common 依赖 * test(tree): tree 组件,添加禁用状态相关测试 * chore(tree): tree 组件,更新 common 依赖,补充文档 * test(tree): tree 组件,update snapshot * fix(auto-complete): using lodash escapeRegExp transform keyword text (#2943) * fix(auto-complete): using lodash escapeRegExp transform keyword text * docs(auto-complete): update auto-complete custom filter example * chore: update contributing (#2950) * chore: update contributing * chore: update docs * fix(tree): tree 组件, value, active, expanded 属性, 支持数组操作触发视图变更 (#2951) * fix(tree): tree 组件, value, active, expanded 属性, 支持数组操作触发视图变更 * refactor(tree): tree 组件,改进属性监听代码结构 * fix(tree): tree 组件,解决 value 传递 undefined,可能导致视图操作报错的问题 * ci: add workflow for issue label (#2953) * fix(table): pagination (#2954) * fix(image-viewer): 修改键盘事件绑定对象 (#2958) * feat(Table): fix some pagination problems (#2962) * feat(table): pagination * feat: code save * fix(table): pagination * fix: row select and drag sort * docs(table): demo * feat(menu): close menu after clicking (#2963) * feat(tabs): scroll to better position when active tab is in middle (#2964) * chore: release 1.8.1 (#2965) * chore: release 1.8.1 * chore: changelog's changes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * feat(upload): uploadPastedFiles (#2966) * fix(tree): the height attribute does not work (#2968) * fix(tree): the height attribute does not work * test(tree): the height attribute does not work * chore: update publish frequency descriptions (#2969) * chore: update Publish.md * chore: fix table test * chore: update PUBLISH.md * fix(image-viewer): 滚轮缩放符合操作直觉 (#2974) 自然滚动与标准滚动对图片放大缩小的操作均符合直觉 #2825 * fix(date-range-picker): 修复12月时选择同一个月内的日期后,第一次打开面板左右月份一样的问题 (#2972) * fix(drawer): unable to close by click on escape (#2967) * chore: fix ssr error (#2985) * chore: release 1.8.2 (#2986) * chore: release 1.8.2 * chore: changelog's changes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * chore: release 1.8.3 (#2988) * chore: release 1.8.3 * chore: release 1.8.3 * chore: release 1.8.3 * chore: release 1.8.3-naruto --------- Co-authored-by: liweijie0812 <674416404@qq.com> Co-authored-by: sheepluo <yaoyanhuoyi@qq.com> Co-authored-by: 李江辰 <SpaceCode@foxmail.com> Co-authored-by: hkaikai <617760820@qq.com> Co-authored-by: PY <pengyue970715@gmail.com> Co-authored-by: betavs <34408516+betavs@users.noreply.github.com> Co-authored-by: TabSpace <pillar0514@163.com> Co-authored-by: kang <kang95630@gmail.com> Co-authored-by: Y <anllyyao@gmail.com> Co-authored-by: sinbadmaster <40019023+sinbadmaster@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Lyan-u <46185702+Lyan-u@users.noreply.github.com>
- Loading branch information
1 parent
1d04334
commit e92a880
Showing
63 changed files
with
3,447 additions
and
1,457 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## IssueShoot | ||
- 预估时长: {{ .duration }} | ||
- 期望完成时间: {{ .deadline }} | ||
- 开发难度: {{ .level }} | ||
- 参与人数: 1 | ||
- 验收标准: 实现期望改造效果,提 PR 并通过验收无误 | ||
- 备注: 最终激励以实际提交 `pull request` 并合并为准 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: issue on label | ||
on: | ||
issues: | ||
types: ['labeled'] | ||
jobs: | ||
add-issueshoot-template: | ||
runs-on: ubuntu-latest | ||
if: contains(fromJSON('["easy", "middle", "hard"]'), github.event.label.name) | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Get token | ||
id: token | ||
run: | | ||
label=${{ github.event.label.name }} | ||
if [[ $label = "easy" ]] | ||
then | ||
echo "level=低" >> $GITHUB_OUTPUT | ||
echo "duration=1" >> $GITHUB_OUTPUT | ||
deadline=$(date -d "+3 days" +'%Y-%m-%d') | ||
echo "deadline=${deadline}" >> $GITHUB_OUTPUT | ||
elif [[ $label = "middle" ]] | ||
then | ||
echo "level=中" >> $GITHUB_OUTPUT | ||
echo "duration=3" >> $GITHUB_OUTPUT | ||
deadline=$(date -d "+7 days" +'%Y-%m-%d') | ||
echo "deadline=${deadline}" >> $GITHUB_OUTPUT | ||
else | ||
echo "level=高" >> $GITHUB_OUTPUT | ||
echo "duration=5" >> $GITHUB_OUTPUT | ||
deadline=$(date -d "+10 days" +'%Y-%m-%d') | ||
echo "deadline=${deadline}" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Create template | ||
id: template | ||
uses: chuhlomin/render-template@v1.4 | ||
with: | ||
template: .github/issue-shoot.md | ||
vars: | | ||
level: ${{ steps.token.outputs.level }} | ||
duration: ${{ steps.token.outputs.duration }} | ||
deadline: ${{ steps.token.outputs.deadline }} | ||
- name: Update issue | ||
uses: actions-cool/issues-helper@v3 | ||
with: | ||
actions: 'update-issue' | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-number: ${{ github.event.issue.number }} | ||
body: ${{ steps.template.outputs.result }} | ||
update-mode: 'append' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule _common
updated
22 files
+4 −0 | docs/web/api/card.en-US.md | |
+5 −0 | docs/web/api/card.md | |
+4 −0 | docs/web/api/date-picker.en-US.md | |
+4 −0 | docs/web/api/date-picker.md | |
+6 −0 | docs/web/api/time-picker.en-US.md | |
+6 −0 | docs/web/api/time-picker.md | |
+1 −0 | js/color-picker/color.ts | |
+9 −8 | js/common.ts | |
+11 −7 | js/date-picker/utils.ts | |
+10 −0 | js/statistic/utils.ts | |
+19 −9 | js/tree/tree-node-model.ts | |
+174 −49 | js/tree/tree-node.ts | |
+2 −0 | js/tree/tree-store.ts | |
+9 −1 | js/tree/types.ts | |
+1 −0 | style/mobile/components/side-bar/v2/_index.less | |
+7 −34 | style/web/components/dropdown/_index.less | |
+4 −0 | style/web/components/input/_mixin.less | |
+6 −1 | style/web/components/tag-input/_index.less | |
+1 −0 | style/web/components/tag/_index.less | |
+0 −1 | style/web/components/upload/_index.less | |
+86 −0 | test/unit/tree/checkable.test.js | |
+226 −20 | test/unit/tree/disabled.test.js |
Oops, something went wrong.