-
Notifications
You must be signed in to change notification settings - Fork 4k
feat(module:input): hide stepper for type number #8003
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(module:input): hide stepper for type number #8003
Conversation
This preview will be available after the AzureCI is passed. |
Codecov Report
@@ Coverage Diff @@
## master #8003 +/- ##
=======================================
Coverage 91.64% 91.65%
=======================================
Files 515 515
Lines 17640 17641 +1
Branches 2790 2790
=======================================
+ Hits 16167 16169 +2
+ Misses 1175 1174 -1
Partials 298 298
|
cbdce13
to
53a9e8c
Compare
@@ -29,6 +29,7 @@ All props of input supported by [w3c standards](https://www.w3schools.com/tags/t | |||
| `[nzAutosize]` | Only used for `textarea`, height autosize feature, can be set to `boolean` or an object `{ minRows: 2, maxRows: 6 }` | `boolean \| { minRows: number, maxRows: number }` | `false` | | |||
| `[nzBorderless]` | Whether hide border | `boolean` | `false` | | |||
| `[nzStatus]` | Set validation status | `'error' \| 'warning'` | - | | |||
| `[nzStepperless]` | Whether hide stepper when input type is number | `'boolean' \| 'true'` | - | |
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.
zh-CN
:
| [nzStepperless]
| 输入框类型为 number
时是否隐藏 step
效果 |
53a9e8c
to
55d2181
Compare
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
have the possibility to hide or show native stepper for input of type number
What is the current behavior?
Issue Number: #7956
What is the new behavior?
It's now possible to have the possibility to hide or show the stepper with the directive nz-input and the type number
Does this PR introduce a breaking change?
Other information