Inspector Controls: add custom slot group after core slot #38215
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.
See: #37845
This pull request will provide a new group to the
InspectorControls
slot, allowing controls to be added after the typography / dimensions /border.Currently, it is possible to inject any
InspectorControls
using theeditor.BlockEdit
filter.However, the injected position is fixed to before typegraphy slot.
So if you inject an InspectorControl in custom block with multiple supports, the control will be inserted between the Color panel and the Typography panel.
I think that it is unnatural for a custom control to be interrupted between the panels provided by the core.
I think there needs to be a receptacle at the end of all the core controls, just before the advanced controls, where any
InspectorControls
can be injected.The name of the group I added is "bottom", but there may be a better name.
Please let me know what you think about this pull request.