-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(inputNumber): inputNumber #148
Conversation
src/input-number/input-number.tsx
Outdated
@@ -1,20 +1,438 @@ | |||
// 临时 input-number | |||
import 'tdesign-icons-web-components'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
按需引入对应的icon
src/input-number/input-number.tsx
Outdated
static css = ` | ||
.t-input-number t-button-light-dom.t-input-number__decrease, | ||
.t-input-number t-button-light-dom.t-input-number__increase { | ||
border: none; | ||
transition: none; | ||
} | ||
|
||
.t-input-number button.t-input-number__decrease, | ||
.t-input-number button.t-input-number__increase { | ||
position: static; | ||
} | ||
`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
t 使用 classPrefix
src/input-number/input-number.tsx
Outdated
theme: 'row', | ||
}; | ||
|
||
static propTypes = {}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
补全propTypes
src/input-number/input-number.tsx
Outdated
} | ||
|
||
install(): void { | ||
this.usedValue.value = this.props.value || this.props.defaultValue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
install里使用signal赋值,会多调用一次render;
这里this.usedValue 可以使用普通类变量,在需要更改的地方手动update
🤔 这个 PR 的性质是?
🔗 相关 Issue
💡 需求背景和解决方案
📝 更新日志
feat(inputNumber): inputNumber
本条 PR 不需要纳入 Changelog
☑️ 请求合并前的自查清单