-
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
Implement fallback plugins when arbitrary values result in css from multiple plugins #9376
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RobinMalfait
force-pushed
the
feat/add-fallback-plugins
branch
3 times, most recently
from
September 23, 2022 13:26
49acd57
to
85adfe3
Compare
RobinMalfait
changed the title
Add
[WIP]: Add Sep 23, 2022
fallback
to plugins for when arbitrary values collidefallback
to plugins for when arbitrary values collide
RobinMalfait
changed the title
[WIP]: Add
[WIP]: Implement fallback plugins when arbitrary values result in css from multiple plugins
Sep 23, 2022
fallback
to plugins for when arbitrary values collide
RobinMalfait
force-pushed
the
feat/add-fallback-plugins
branch
from
September 23, 2022 19:01
85adfe3
to
daf10f9
Compare
RobinMalfait
changed the title
[WIP]: Implement fallback plugins when arbitrary values result in css from multiple plugins
Implement fallback plugins when arbitrary values result in css from multiple plugins
Sep 23, 2022
Ensure that `backgroundColor` can take any value
Whenever an arbitrary value results in css from multiple plugins we first try to resolve a falback plugin. The fallback mechanism works like this: - If A has type `any` and B has type `color`, then B should win. > This is because `A` will match *anything*, but the more precise type should win instead. E.g.: `backgroundColor` has the type `any` so `bg-[100px_200px]` would match both the `backgroundColor` and `backgroundSize` but `backgroundSize` matched because of a specific type and not because of the `any` type. - If A has type `length` and B has type `[length, { disambiguate: true }]`, then B should win. > This is because `B` marked the `length` as the plugin that should win in case a clash happens.
Needs tests tho
Just for future debugging reasons!
RobinMalfait
force-pushed
the
feat/add-fallback-plugins
branch
from
September 29, 2022 15:21
7c174a0
to
0b356be
Compare
27 tasks
6 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This will allow us to use the fallback plugin if there are 2 colliding plugins given a certain arbitrary value that's indistinguishable in either plugin.
Normally we would then require a type cast, but now we can use the fallback. This is useful so that in the future adding more colliding plugins doesn't result in working code being broken because it requires a typehint all of a sudden.
E.g.: