Allow parallel route slot names in kebab-case #74242
Open
+50
−2
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.
What?
This PR adds support for parallel route slot names written with kebab-case. So instead of
@deleteModal
, we can have@delete-modal
.Why?
There are projects that prefer to use exclusively kebab-case for file/folder names due to various reasons, such as to prevent issues related to how different operating systems handle file system casing.
However, currently, parallel route slot names must be a valid JavaScript variable name. This PR aims to relax this requirement.
How?
This alone is not enough to support parallel route slot names like
@!@#$%^&*()
, but should be well enough to support more normal file name conventions. (Even slot names with a space are supported.)Notes
It might be a cool idea to automatically transform kebab-case slot names to camelCase, sort of like how Nuxt does transforming for component names. If this sounds good to you, let me know and I will try to implement that.
This PR supersedes #67151 after fixing merge conflicts.