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.
UI5 Web Components tag names may vary. Users can take advantage of the "scoping" feature (#2091), so for example
ui5-button
could be used asui5-button-demo
. However, it will always have aui5-button
attribute set, no matter what its name is.Example
This attribute will always be there, even if the scoping feature is not used:
Example
You must only use this attribute in your code, never the tag name.
The following are not allowed:
localName
of a componentAlso, it is important to set
dependencies
for all components, otherwise the.hbs
preprocessor will not scope some of the components used in the shadow root, and the scoping feature will break.closes: #4528