-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(table): uploadFilePercent does not work with autoUpload=false (#2991) * fix(table): uploadFilePercent * fix: lint eorr * fix(upload): image preview * feat(card): card组件支持传入loadingProps参数 (#2959) * feat(card): card组件支持传入loadingProps参数 card组件支持传入loadingProps参数 fix #423 * chore: merge develop * feat(card): card组件支持传入loadingProps参数 card组件支持传入loadingProps参数 fix #423 * refactor(card): props属性用法优化 * chore: update snapshot * chore: update snapshot --------- Co-authored-by: Uyarn <[email protected]> * fix(table): affixed bugs, filter icon highlight bug (#2990) * fix(table): affixed bugs * fix(table): fix filter can not highlight with number 0 * chore: fix pagination text (#2996) * fix(radio): the checked state also triggers the change event (#3000) * fix(radio): the checked state also triggers the change event * test(radio): the checked state also triggers the change event * docs: update FAQ (#3002) * docs: update FAQ * chore: update docs * fix(textarea): 公共组件当初始处于隐藏状态再次可视后未做高度再计算的问题 (#3003) * fix(textarea.tsx): 修复textarea在折叠面板内时,高度计算不正确,会出现滚动条的问题 修复用户反馈issue"[Textarea] textarea在折叠面板内时,高度计算不正确,会出现滚动条",issue详情见:#2809 * fix(textarea.tsx): 修复t-textarea公共组件在初始被隐藏时没有做高度计算的问题 t-textarea在部分场景比如t-collapse-panel中使用时,初始化加载时该组件没有高度,但是当再次可视时因为没有再次做高度的计算导致没有获得响应式高度因此出现这个问题. * feat: provide a method to calculate the height of textArea component after DOM mounted (#3006) * fix(textarea.tsx): 修复textarea在折叠面板内时,高度计算不正确,会出现滚动条的问题 修复用户反馈issue"[Textarea] textarea在折叠面板内时,高度计算不正确,会出现滚动条",issue详情见:#2809 * fix(textarea.tsx): 修复t-textarea公共组件在初始被隐藏时没有做高度计算的问题 t-textarea在部分场景比如t-collapse-panel中使用时,初始化加载时该组件没有高度,但是当再次可视时因为没有再次做高度的计算导致没有获得响应式高度因此出现这个问题. * fix(textarea.tsx): provide a method to calculate the height of textArea component after DOM mounted Provide a method to calculate the height of textArea component after DOM mounted * chore(deps-dev): bump @typescript-eslint/typescript-estree (#3009) --- updated-dependencies: - dependency-name: "@typescript-eslint/typescript-estree" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix(imageviewer): 添加defaultScale (#3013) 添加defaultScale * docs: update popup plugin demo (#3014) * fix(upload): form disabled should effect upload trigger button (#3012) * fix(upload): form disabled should effect upload trigger button * chore: update snapshot * chore: release 1.8.4 (#3015) * chore: release 1.8.4 * chore: changelog's changes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * chore: update snapshot --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: sheepluo <[email protected]> Co-authored-by: iiimix <[email protected]> Co-authored-by: betavs <[email protected]> Co-authored-by: 梓晨 <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sinbadmaster <[email protected]> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
0fb83a3
commit 15b0113
Showing
26 changed files
with
344 additions
and
80 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<template> | ||
<t-card bordered :title="title" :loading="isLoading" :style="{ width: '400px' }" :loading-props="customProps"> | ||
{{ infoMessage }} | ||
</t-card> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
data() { | ||
return { | ||
title: '自定义loadingProps Card', | ||
isLoading: true, | ||
customProps: { | ||
text: 'TDesign努力加载中...', | ||
}, | ||
infoMessage: '卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。', | ||
}; | ||
}, | ||
}; | ||
</script> |
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
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
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
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
Oops, something went wrong.