-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
fix(module: textarea) affix-wrapper-disabled doesn't append #3538
fix(module: textarea) affix-wrapper-disabled doesn't append #3538
Conversation
@dotnet-policy-service agree |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #3538 +/- ##
==========================================
+ Coverage 44.38% 44.40% +0.02%
==========================================
Files 566 566
Lines 27174 27176 +2
Branches 5576 5575 -1
==========================================
+ Hits 12061 12068 +7
+ Misses 14128 14127 -1
+ Partials 985 981 -4 ☔ View full report in Codecov by Sentry. |
Thanks for contribution @zuevus , please use |
fa4f852
to
9f500d8
Compare
Thank you @zuevus , would you please add a unit test to cover this? |
* fix: when TextArea in disabled state the "affix-wrapper-disabled" didn't append to span
64a8587
to
15d2a90
Compare
…ign-blazor into fix/textarea_disabled_state
15d2a90
to
1d2c9e6
Compare
@ElderJames thanks for comments. I guess I've done everything as you said and debug it. I've checked a test locally for it and pass it. Should I do something more for the issue? |
🤔 This is a ...
🔗 Related issue link
💡 Background and solution
The TextArea component older then 14-th version of antdesign-blazor has the "affix-wrapper-disabled" class on span element of textarea wrap. It looked like this
But at the moment we don't have the class
We used it in our project for deactivate the textarea hover.
Solution is to add "affix-wrapper-disabled" class to wrapper span of textarea, as it has already done for inputs(base class) and as it was adding before in yonger then 14-th versions.
📝 Changelog
☑️ Self Check before Merge