-
Notifications
You must be signed in to change notification settings - Fork 275
fix(list items): rename info & infoState properties #3259
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ | |
<div class="ui5-li-description-info-wrapper"> | ||
<span part="description" class="ui5-li-desc">{{description}}</span> | ||
|
||
{{#if info}} | ||
<span part="info" class="ui5-li-info">{{info}}</span> | ||
{{#if additionalText}} | ||
<span part="additionalText" class="ui5-li-info">{{additionalText}}</span> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not familiar with part but should we keep its value in camelCase style? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @nnaydenow we decided to write the CSS Shadow Parts in kebab-case There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
{{/if}} | ||
</div> | ||
{{/if}} | ||
|
@@ -17,8 +17,8 @@ | |
{{/unless}} | ||
</div> | ||
{{#unless description}} | ||
{{#if info}} | ||
<span part="info" class="ui5-li-info">{{info}}</span> | ||
{{#if additionalText}} | ||
<span part="additionalText" class="ui5-li-info">{{additionalText}}</span> | ||
{{/if}} | ||
{{/unless}} | ||
{{/inline}} | ||
|
Uh oh!
There was an error while loading. Please reload this page.