-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Support marking utilities and theme values as deprecated #14915
base: feat/add-radius-utilities
Are you sure you want to change the base?
Support marking utilities and theme values as deprecated #14915
Conversation
Thinking out loud here. It's possible we'll want the deprecation information to be more than just a boolean. Maybe a list of suggested classes? I'm hesitant to put "message" strings in here though. I'd prefer those kinds of things were generated by the IntelliSense extension. |
So right now this is implemented in a very simple manner — affecting the classList metadata that IntelliSense uses. However, given that we have bare value support there are technically an infinite number of potential deprecated classes now or in the future this wouldn't be sufficient. I could also see a case in which a class becomes deprecated base of a specific modifier or something. I think this means we may need something like a |
rounded-*
utilities as deprecated in IntelliSense13f1106
to
fed942b
Compare
wip
IntelliSense PR: tailwindlabs/tailwindcss-intellisense#1084