You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Defines if the <code>heading</code> and <code>description</code> should wrap,
47
+
* Defines if the <code>titleText</code> and <code>description</code> should wrap,
48
48
* they truncate by default.
49
49
*
50
50
* <br><br>
51
-
* <b>Note:</b> by default the <code>heading</code> and <code>decription</code>,
51
+
* <b>Note:</b> by default the <code>titleText</code> and <code>decription</code>,
52
52
* and a <code>ShowMore/Less</code> button would be displayed.
53
53
* @type {WrappingType}
54
54
* @defaultvalue "None"
@@ -61,7 +61,7 @@ const metadata = {
61
61
},
62
62
63
63
/**
64
-
* Defines the state of the <code>heading</code> and <code>description</code>,
64
+
* Defines the state of the <code>titleText</code> and <code>description</code>,
65
65
* if less or more information is displayed.
66
66
* @private
67
67
*/
@@ -137,14 +137,14 @@ const metadata = {
137
137
* The <code>ui5-li-notification</code> is a type of list item, meant to display notifications.
138
138
* <br>
139
139
*
140
-
* The component has a rich set of various properties that allows the user to set <code>avatar</code>, <code>heading</code>, descriptive <code>content</code>
140
+
* The component has a rich set of various properties that allows the user to set <code>avatar</code>, <code>titleText</code>, descriptive <code>content</code>
141
141
* and <code>footnotes</code> to fully describe a notification.
142
142
* <br>
143
143
*
144
144
* The user can:
145
145
* <ul>
146
146
* <li>display a <code>Close</code> button</li>
147
-
* <li>can control whether the <code>heading</code> and <code>description</code> should wrap or truncate
147
+
* <li>can control whether the <code>titleText</code> and <code>description</code> should wrap or truncate
148
148
* and display a <code>ShowMore</code> button to switch between less and more information</li>
149
149
* <li>add custom actions by using the <code>ui5-notification-action</code> component</li>
150
150
* </ul>
@@ -158,7 +158,7 @@ const metadata = {
158
158
* <br>
159
159
* The <code>ui5-li-notification</code> exposes the following CSS Shadow Parts:
160
160
* <ul>
161
-
* <li>heading - Used to style the heading of the notification list item</li>
161
+
* <li>title-text - Used to style the titleText of the notification list item</li>
162
162
* </ul>
163
163
*
164
164
* <h3>ES6 Module Import</h3>
@@ -180,8 +180,8 @@ class NotificationListItem extends NotificationListItemBase {
180
180
constructor(){
181
181
super();
182
182
183
-
// the heading overflow height
184
-
this._headingOverflowHeight=0;
183
+
// the titleText overflow height
184
+
this._titleTextOverflowHeight=0;
185
185
186
186
// the description overflow height
187
187
this._descOverflowHeight=0;
@@ -260,30 +260,30 @@ class NotificationListItem extends NotificationListItemBase {
0 commit comments