-
Notifications
You must be signed in to change notification settings - Fork 132
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
Initial implementation of generic attribute support #213
Conversation
Sorry about the late reply. I like this! You closed it again? |
I guess I can update it if we want it in the current v7 |
This is a initial implementation of generic attribute support to enable arbitrary `Html.Attributes`. This implementation tries to minimize the likelyhood of overriding internally used attributes while still maintaining `MINOR` change. This implementation may be revisited in the next MAJOR version to update the implementation. Add namespaced qualifiers to `Internal.attribute`, this way internal attributes are easy to search for as well separate them from `Options.attribute`
16ee5fc
to
a342646
Compare
This should reduce the likelihood of overriding internal attributes by separating them. |
Just to be clear: #179 contains this already, yes? In that case, do we want this now, or can it wait for v8? |
Yes, #179 contains generic attribute support as well. We may wait or we may use this for now. Either way works for me. I think it depends if this is needed now and if v8 is some time a way still. |
Ok, let's do it. It keeps coming up. |
This resolves debois#201. The implementation was simplified in a large way with debois#213.
This is a initial implementation of generic attribute support
to enable arbitrary
Html.Attributes
to resolve #208 . This implementationtries to minimize the likelihood of overriding internally used
attributes while still maintaining
MINOR
change.This implementation may be revisited in the next MAJOR version
to update the implementation.
Add namespaced qualifiers to
Internal.attribute
,this way internal attributes are easy to search for as well separate
them from
Options.attribute
.As always, open to feed back and suggestions!