@openui5/sap.ui.unified 1.122.1 → 1.123.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/package.json +2 -2
  2. package/src/sap/ui/unified/.library +1 -1
  3. package/src/sap/ui/unified/Calendar.js +13 -7
  4. package/src/sap/ui/unified/CalendarAppointment.js +1 -1
  5. package/src/sap/ui/unified/CalendarDateInterval.js +1 -1
  6. package/src/sap/ui/unified/CalendarLegend.js +1 -1
  7. package/src/sap/ui/unified/CalendarLegendItem.js +1 -1
  8. package/src/sap/ui/unified/CalendarMonthInterval.js +1 -1
  9. package/src/sap/ui/unified/CalendarOneMonthInterval.js +1 -1
  10. package/src/sap/ui/unified/CalendarRow.js +1 -1
  11. package/src/sap/ui/unified/CalendarTimeInterval.js +1 -1
  12. package/src/sap/ui/unified/CalendarWeekInterval.js +1 -1
  13. package/src/sap/ui/unified/ColorPicker.js +1 -1
  14. package/src/sap/ui/unified/ColorPickerPopover.js +1 -1
  15. package/src/sap/ui/unified/ContentSwitcher.js +2 -2
  16. package/src/sap/ui/unified/ContentSwitcherRenderer.js +1 -1
  17. package/src/sap/ui/unified/Currency.js +1 -1
  18. package/src/sap/ui/unified/CurrencyRenderer.js +1 -1
  19. package/src/sap/ui/unified/DateRange.js +1 -1
  20. package/src/sap/ui/unified/DateTypeRange.js +1 -1
  21. package/src/sap/ui/unified/FileUploader.js +1 -1
  22. package/src/sap/ui/unified/FileUploaderParameter.js +1 -1
  23. package/src/sap/ui/unified/FileUploaderXHRSettings.js +1 -1
  24. package/src/sap/ui/unified/Menu.js +1 -1
  25. package/src/sap/ui/unified/MenuItem.js +26 -22
  26. package/src/sap/ui/unified/MenuItemBase.js +1 -1
  27. package/src/sap/ui/unified/MenuRenderer.js +1 -9
  28. package/src/sap/ui/unified/MenuTextFieldItem.js +1 -24
  29. package/src/sap/ui/unified/Shell.js +2 -2
  30. package/src/sap/ui/unified/ShellHeadItem.js +2 -2
  31. package/src/sap/ui/unified/ShellHeadUserItem.js +2 -2
  32. package/src/sap/ui/unified/ShellHeader.js +6 -0
  33. package/src/sap/ui/unified/ShellLayout.js +2 -2
  34. package/src/sap/ui/unified/ShellLayoutRenderer.js +1 -1
  35. package/src/sap/ui/unified/ShellOverlay.js +2 -2
  36. package/src/sap/ui/unified/ShellOverlayRenderer.js +1 -1
  37. package/src/sap/ui/unified/ShellRenderer.js +1 -1
  38. package/src/sap/ui/unified/SplitContainer.js +2 -2
  39. package/src/sap/ui/unified/SplitContainerRenderer.js +1 -1
  40. package/src/sap/ui/unified/calendar/DatesRow.js +1 -1
  41. package/src/sap/ui/unified/calendar/Header.js +1 -1
  42. package/src/sap/ui/unified/calendar/IndexPicker.js +1 -1
  43. package/src/sap/ui/unified/calendar/Month.js +19 -1
  44. package/src/sap/ui/unified/calendar/MonthPicker.js +1 -1
  45. package/src/sap/ui/unified/calendar/MonthsRow.js +1 -1
  46. package/src/sap/ui/unified/calendar/OneMonthDatesRow.js +1 -1
  47. package/src/sap/ui/unified/calendar/TimesRow.js +1 -1
  48. package/src/sap/ui/unified/calendar/YearPicker.js +1 -1
  49. package/src/sap/ui/unified/calendar/YearRangePicker.js +1 -1
  50. package/src/sap/ui/unified/library.js +2 -2
  51. package/src/sap/ui/unified/themes/base/Calendar.less +0 -9
  52. package/src/sap/ui/unified/themes/base/Menu.less +88 -177
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.unified",
3
- "version": "1.122.1",
3
+ "version": "1.123.0",
4
4
  "description": "OpenUI5 UI Library sap.ui.unified",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -14,6 +14,6 @@
14
14
  "url": "https://github.com/SAP/openui5.git"
15
15
  },
16
16
  "dependencies": {
17
- "@openui5/sap.ui.core": "1.122.1"
17
+ "@openui5/sap.ui.core": "1.123.0"
18
18
  }
19
19
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.122.1</version>
9
+ <version>1.123.0</version>
10
10
 
11
11
  <documentation>Unified controls intended for both, mobile and desktop scenarios</documentation>
12
12
 
@@ -78,7 +78,7 @@ sap.ui.define([
78
78
  * Basic Calendar.
79
79
  * This calendar is used for DatePickers
80
80
  * @extends sap.ui.core.Control
81
- * @version 1.122.1
81
+ * @version 1.123.0
82
82
  *
83
83
  * @constructor
84
84
  * @public
@@ -527,13 +527,16 @@ sap.ui.define([
527
527
  };
528
528
 
529
529
  Calendar.prototype._handleWeekNumberSelect = function (oEvent) {
530
- var oWeekDays = oEvent.getParameter("weekDays"),
530
+ const oWeekDays = oEvent.getParameter("weekDays"),
531
531
  bExecuteDefault = this.fireWeekNumberSelect({
532
532
  weekNumber: oEvent.getParameter("weekNumber"),
533
533
  weekDays: oWeekDays
534
- });
534
+ }),
535
+ iSelectedWeekMonth = oWeekDays.getStartDate() && oWeekDays.getStartDate().getMonth(),
536
+ iCurrentMonth = oEvent.getSource().getDate() && oEvent.getSource().getDate().getMonth();
537
+ const bOtherMonth = iSelectedWeekMonth !== iCurrentMonth;
535
538
 
536
- this._focusDate(CalendarDate.fromLocalJSDate(oWeekDays.getStartDate(), this._getPrimaryCalendarType()), true, false, false);
539
+ this._focusDate(CalendarDate.fromLocalJSDate(oWeekDays.getStartDate(), this._getPrimaryCalendarType()), bOtherMonth, false, false);
537
540
 
538
541
  if (!bExecuteDefault) {
539
542
  oEvent.preventDefault();
@@ -803,7 +806,7 @@ sap.ui.define([
803
806
  * @since 1.34.1
804
807
  * @public
805
808
  */
806
- Calendar.prototype.getStartDate = function(){
809
+ Calendar.prototype.getStartDate = function() {
807
810
 
808
811
  var oStartDate;
809
812
 
@@ -834,7 +837,7 @@ sap.ui.define([
834
837
  return this;
835
838
  };
836
839
 
837
- Calendar.prototype.setMonths = function(iMonths){
840
+ Calendar.prototype.setMonths = function(iMonths) {
838
841
 
839
842
  this._bDateRangeChanged = undefined; // to force rerendering
840
843
  this.setProperty("months", iMonths); // rerender
@@ -875,11 +878,14 @@ sap.ui.define([
875
878
  aMonths[0].setProperty("date", null, true);
876
879
  }
877
880
 
881
+ aMonths = this.getAggregation("month");
882
+ aMonths.forEach((oMonth) => oMonth.setProperty("_renderMonthWeeksOnly", iMonths > 1));
883
+
878
884
  return this;
879
885
 
880
886
  };
881
887
 
882
- Calendar.prototype.setPrimaryCalendarType = function(sCalendarType){
888
+ Calendar.prototype.setPrimaryCalendarType = function(sCalendarType) {
883
889
 
884
890
  var aMonths = this.getAggregation("month"),
885
891
  oMonth,
@@ -45,7 +45,7 @@ sap.ui.define([
45
45
  *
46
46
  * Applications could inherit from this element to add own fields.
47
47
  * @extends sap.ui.unified.DateTypeRange
48
- * @version 1.122.1
48
+ * @version 1.123.0
49
49
  *
50
50
  * @constructor
51
51
  * @public
@@ -59,7 +59,7 @@ sap.ui.define([
59
59
  * @class
60
60
  * <code>CalendarDateInterval</code> only visualizes the dates in a one-line interval and allows the selection of a single day.
61
61
  * @extends sap.ui.unified.Calendar
62
- * @version 1.122.1
62
+ * @version 1.123.0
63
63
  *
64
64
  * @constructor
65
65
  * @public
@@ -57,7 +57,7 @@ sap.ui.define([
57
57
  * @extends sap.ui.core.Control
58
58
  *
59
59
  * @author SAP SE
60
- * @version 1.122.1
60
+ * @version 1.123.0
61
61
  *
62
62
  * @constructor
63
63
  * @public
@@ -21,7 +21,7 @@ sap.ui.define(['sap/ui/core/Element', './library'],
21
21
  * @class
22
22
  * Item to be displayed in a CalendarLegend.
23
23
  * @extends sap.ui.core.Element
24
- * @version 1.122.1
24
+ * @version 1.123.0
25
25
  *
26
26
  * @constructor
27
27
  * @public
@@ -65,7 +65,7 @@ sap.ui.define([
65
65
  * <b>Note:</b> UI5Date or JavaScript Date objects are used to set and return the months, mark them as selected or as a special type.
66
66
  * But the date part of the Date object is not used. If a Date object is returned the date will be set to the 1st of the corresponding month.
67
67
  * @extends sap.ui.core.Control
68
- * @version 1.122.1
68
+ * @version 1.123.0
69
69
  *
70
70
  * @constructor
71
71
  * @public
@@ -57,7 +57,7 @@ sap.ui.define([
57
57
  * Navigation via year picker switches to the corresponding year and the same month as before the navigation.
58
58
  *
59
59
  * @extends sap.ui.unified.CalendarDateInterval
60
- * @version 1.122.1
60
+ * @version 1.123.0
61
61
  *
62
62
  * @constructor
63
63
  * @private
@@ -90,7 +90,7 @@ sap.ui.define([
90
90
  * @class
91
91
  * A calendar row with a header and appointments. The Appointments will be placed in the defined interval.
92
92
  * @extends sap.ui.core.Control
93
- * @version 1.122.1
93
+ * @version 1.123.0
94
94
  *
95
95
  * @constructor
96
96
  * @public
@@ -72,7 +72,7 @@ sap.ui.define([
72
72
  * @class
73
73
  * Calendar with granularity of time items displayed in one line.
74
74
  * @extends sap.ui.core.Control
75
- * @version 1.122.1
75
+ * @version 1.123.0
76
76
  *
77
77
  * @constructor
78
78
  * @public
@@ -39,7 +39,7 @@ sap.ui.define(['sap/ui/unified/calendar/CalendarUtils', 'sap/ui/unified/calendar
39
39
  * its start date to the first date of the same week as the date the user chose.
40
40
  *
41
41
  * @extends sap.ui.unified.CalendarDateInterval
42
- * @version 1.122.1
42
+ * @version 1.123.0
43
43
  *
44
44
  * @constructor
45
45
  * @private
@@ -69,7 +69,7 @@ sap.ui.define([
69
69
  * @extends sap.ui.core.Control
70
70
  *
71
71
  * @author SAP SE
72
- * @version 1.122.1
72
+ * @version 1.123.0
73
73
  *
74
74
  * @constructor
75
75
  * @public
@@ -49,7 +49,7 @@ sap.ui.define([
49
49
  * A thin wrapper over {@link sap.ui.unified.ColorPicker} allowing the latter to be used in a popover.
50
50
  *
51
51
  * @extends sap.ui.core.Control
52
- * @version 1.122.1
52
+ * @version 1.123.0
53
53
  *
54
54
  * @constructor
55
55
  * @public
@@ -31,14 +31,14 @@ sap.ui.define([
31
31
  * @extends sap.ui.core.Control
32
32
  *
33
33
  * @author SAP SE
34
- * @version 1.122.1
34
+ * @version 1.123.0
35
35
  *
36
36
  * @constructor
37
37
  * @public
38
38
  * @since 1.16.0
39
39
  * @experimental Since version 1.16.0.
40
40
  * API is not yet finished and might change completely
41
- * @deprecated Since version 1.44.0.
41
+ * @deprecated As of version 1.44.0, the concept has been discarded.
42
42
  * @alias sap.ui.unified.ContentSwitcher
43
43
  */
44
44
  var ContentSwitcher = Control.extend("sap.ui.unified.ContentSwitcher", /** @lends sap.ui.unified.ContentSwitcher.prototype */ { metadata : {
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  /**
21
21
  * AnimatedContentSwitcher renderer.
22
22
  * @namespace
23
- * @deprecated Since version 1.44.0.
23
+ * @deprecated As of version 1.44.0, the concept has been discarded.
24
24
  */
25
25
  var ContentSwitcherRenderer = {
26
26
  };
@@ -58,7 +58,7 @@ sap.ui.define([
58
58
  * @extends sap.ui.core.Control
59
59
  *
60
60
  * @author SAP SE
61
- * @version 1.122.1
61
+ * @version 1.123.0
62
62
  *
63
63
  * @constructor
64
64
  * @public
@@ -14,7 +14,7 @@ sap.ui.define(["sap/m/library", "sap/ui/core/Lib"],
14
14
  /**
15
15
  * Currency renderer.
16
16
  *
17
- * @version 1.122.1
17
+ * @version 1.123.0
18
18
  * @namespace
19
19
  */
20
20
  var CurrencyRenderer = {
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/core/Element', './library', 'sap/ui/unified/calendar/Cale
20
20
  * @class
21
21
  * Date range for use in DatePicker
22
22
  * @extends sap.ui.core.Element
23
- * @version 1.122.1
23
+ * @version 1.123.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
@@ -25,7 +25,7 @@ sap.ui.define(['./DateRange', './library'],
25
25
  * @class
26
26
  * Date range with calendar day type information. Used to visualize special days in the Calendar.
27
27
  * @extends sap.ui.unified.DateRange
28
- * @version 1.122.1
28
+ * @version 1.123.0
29
29
  *
30
30
  * @constructor
31
31
  * @public
@@ -73,7 +73,7 @@ sap.ui.define([
73
73
  * @implements sap.ui.core.IFormContent, sap.ui.unified.IProcessableBlobs
74
74
  *
75
75
  * @author SAP SE
76
- * @version 1.122.1
76
+ * @version 1.123.0
77
77
  *
78
78
  * @constructor
79
79
  * @public
@@ -22,7 +22,7 @@ sap.ui.define(['sap/ui/core/Element', './library'],
22
22
  * @extends sap.ui.core.Element
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.122.1
25
+ * @version 1.123.0
26
26
  *
27
27
  * @constructor
28
28
  * @public
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/core/Element', './library'],
20
20
  * @extends sap.ui.core.Element
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.122.1
23
+ * @version 1.123.0
24
24
  *
25
25
  * @constructor
26
26
  * @since 1.52
@@ -65,7 +65,7 @@ sap.ui.define([
65
65
  * @implements sap.ui.core.IContextMenu
66
66
  *
67
67
  * @author SAP SE
68
- * @version 1.122.1
68
+ * @version 1.123.0
69
69
  * @since 1.21.0
70
70
  *
71
71
  * @constructor
@@ -23,7 +23,7 @@ sap.ui.define(['sap/ui/core/IconPool', './MenuItemBase', './library', 'sap/ui/co
23
23
  * @extends sap.ui.unified.MenuItemBase
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.122.1
26
+ * @version 1.123.0
27
27
  * @since 1.21.0
28
28
  *
29
29
  * @constructor
@@ -43,7 +43,16 @@ sap.ui.define(['sap/ui/core/IconPool', './MenuItemBase', './library', 'sap/ui/co
43
43
  /**
44
44
  * Defines the icon of the {@link sap.ui.core.IconPool sap.ui.core.IconPool} or an image which should be displayed on the item.
45
45
  */
46
- icon : {type : "sap.ui.core.URI", group : "Appearance", defaultValue : ''}
46
+ icon : {type : "sap.ui.core.URI", group : "Appearance", defaultValue : ''},
47
+
48
+ /**
49
+ * Defines the shortcut text that should be displayed on the menu item on non-mobile devices.
50
+ * <b>Note:</b> The text is only displayed and set as а value of the <code>aria-keyshortcuts</code> attribute.
51
+ * There is no built-in functionality that selects the item when the corresponding shortcut is pressed.
52
+ * This should be implemented by the application developer.
53
+ */
54
+ shortcutText : {type : "string", group : "Appearance", defaultValue : ''}
55
+
47
56
  },
48
57
  associations : {
49
58
 
@@ -60,10 +69,15 @@ sap.ui.define(['sap/ui/core/IconPool', './MenuItemBase', './library', 'sap/ui/co
60
69
  var rm = oRenderManager,
61
70
  oSubMenu = oItem.getSubmenu(),
62
71
  bIsEnabled = oItem.getEnabled(),
72
+ sShortcutText = oItem.getShortcutText(),
63
73
  oIcon;
64
74
 
65
75
  rm.openStart("li", oItem);
66
76
 
77
+ if (!oSubMenu && sShortcutText) {
78
+ rm.attr("aria-keyshortcuts", sShortcutText);
79
+ }
80
+
67
81
  if (oItem.getVisible()) {
68
82
  rm.attr("tabindex", "0");
69
83
  }
@@ -100,24 +114,17 @@ sap.ui.define(['sap/ui/core/IconPool', './MenuItemBase', './library', 'sap/ui/co
100
114
  }
101
115
  }
102
116
 
103
- // Left border
104
117
  rm.openEnd();
118
+
105
119
  rm.openStart("div");
106
- rm.class("sapUiMnuItmL");
120
+ rm.class("sapUiMnuItmIco");
107
121
  rm.openEnd();
108
- rm.close("div");
109
122
 
110
123
  if (oItem.getIcon()) {
111
- // icon/check column
112
- rm.openStart("div");
113
- rm.class("sapUiMnuItmIco");
114
- rm.openEnd();
115
-
116
124
  oIcon = oItem._getIcon();
117
125
  rm.renderControl(oIcon);
118
-
119
- rm.close("div");
120
126
  }
127
+ rm.close("div");
121
128
 
122
129
  // Text column
123
130
  rm.openStart("div", this.getId() + "-txt");
@@ -130,25 +137,22 @@ sap.ui.define(['sap/ui/core/IconPool', './MenuItemBase', './library', 'sap/ui/co
130
137
  rm.openStart("div", this.getId() + "-scuttxt");
131
138
  rm.class("sapUiMnuItmSCut");
132
139
  rm.openEnd();
140
+ if (!oSubMenu && sShortcutText) {
141
+ rm.text(sShortcutText);
142
+ }
133
143
  rm.close("div");
134
144
 
135
145
  // Submenu column
136
- rm.openStart("div");
137
- rm.class("sapUiMnuItmSbMnu");
138
- rm.openEnd();
139
146
  if (oSubMenu) {
147
+ rm.openStart("div");
148
+ rm.class("sapUiMnuItmSbMnu");
149
+ rm.openEnd();
140
150
  rm.openStart("div");
141
151
  rm.class("sapUiIconMirrorInRTL");
142
152
  rm.openEnd();
143
153
  rm.close("div");
154
+ rm.close("div");
144
155
  }
145
- rm.close("div");
146
-
147
- // Right border
148
- rm.openStart("div");
149
- rm.class("sapUiMnuItmR");
150
- rm.openEnd();
151
- rm.close("div");
152
156
 
153
157
  rm.close("li");
154
158
  };
@@ -23,7 +23,7 @@ sap.ui.define(['sap/ui/core/Element', './library', 'sap/ui/core/IconPool', 'sap/
23
23
  * @extends sap.ui.core.Element
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.122.1
26
+ * @version 1.123.0
27
27
  * @since 1.21.0
28
28
  *
29
29
  * @constructor
@@ -15,7 +15,7 @@ sap.ui.define(["sap/ui/core/ControlBehavior"],
15
15
  * Menu renderer.
16
16
  * @author SAP - TD Core UI&AM UI Infra
17
17
  *
18
- * @version 1.122.1
18
+ * @version 1.123.0
19
19
  * @namespace
20
20
  */
21
21
  var MenuRenderer = {
@@ -66,14 +66,6 @@ sap.ui.define(["sap/ui/core/ControlBehavior"],
66
66
  oRm.class("sapUiMnuTop");
67
67
  }
68
68
 
69
- if (oRootMenu.isCozy()) {
70
- oRm.class("sapUiSizeCozy");
71
- }
72
-
73
- if (oMenu.bCozySupported) {
74
- oRm.class("sapUiMnuCozySupport");
75
- }
76
-
77
69
  oRm.openEnd();
78
70
  MenuRenderer.renderItems(oRm, oMenu);
79
71
  oRm.close("div");
@@ -52,7 +52,7 @@ sap.ui.define([
52
52
  * @extends sap.ui.unified.MenuItemBase
53
53
  *
54
54
  * @author SAP SE
55
- * @version 1.122.1
55
+ * @version 1.123.0
56
56
  * @since 1.21.0
57
57
  *
58
58
  * @constructor
@@ -122,9 +122,6 @@ sap.ui.define([
122
122
 
123
123
  rm.openEnd();
124
124
 
125
- // Left border
126
- rm.openStart("div").class("sapUiMnuItmL").openEnd().close("div");
127
-
128
125
  if (oItem.getIcon()) {
129
126
  // icon/check column
130
127
  rm.openStart("div").class("sapUiMnuItmIco").openEnd();
@@ -161,9 +158,6 @@ sap.ui.define([
161
158
  }
162
159
  rm.voidEnd().close("div").close("div");
163
160
 
164
- // Right border
165
- rm.openStart("div").class("sapUiMnuItmR").openEnd().close("div");
166
-
167
161
  rm.close("li");
168
162
  };
169
163
 
@@ -191,7 +185,6 @@ sap.ui.define([
191
185
  };
192
186
 
193
187
  MenuTextFieldItem.prototype.onAfterRendering = function(){
194
- this._adaptSizes();
195
188
  this.setValueState(this.getValueState());
196
189
  };
197
190
 
@@ -307,7 +300,6 @@ sap.ui.define([
307
300
  MenuTextFieldItem.prototype.setLabel = function(sLabel){
308
301
  this.setProperty("label", sLabel, true);
309
302
  this.$("lbl").text(sLabel);
310
- this._adaptSizes();
311
303
  return this;
312
304
  };
313
305
 
@@ -341,20 +333,6 @@ sap.ui.define([
341
333
  return $FocusRef.length ? $FocusRef.get(0) : null;
342
334
  };
343
335
 
344
-
345
- MenuTextFieldItem.prototype._adaptSizes = function(){
346
- var $tf = this.$("tf");
347
- var $lbl = this.$("lbl");
348
- var offsetLeft = $lbl.length ? $lbl.get(0).offsetLeft : 0;
349
-
350
- if (Localization.getRTL()) {
351
- $tf.parent().css({"width": "auto", "right": (this.$().outerWidth(true) - offsetLeft + ($lbl.outerWidth(true) - $lbl.outerWidth())) + "px"});
352
- } else {
353
- $tf.parent().css({"width": "auto", "left": (offsetLeft + $lbl.outerWidth(true)) + "px"});
354
- }
355
- };
356
-
357
-
358
336
  MenuTextFieldItem.prototype._checkCursorPosForNav = function(bForward) {
359
337
  var bRtl = Localization.getRTL();
360
338
  var bBack = bForward ? bRtl : !bRtl;
@@ -385,7 +363,6 @@ sap.ui.define([
385
363
  return this._invisibleDescription;
386
364
  };
387
365
 
388
-
389
366
  return MenuTextFieldItem;
390
367
 
391
368
  });
@@ -25,13 +25,13 @@ sap.ui.define(['./ShellHeader', './ShellLayout', './library', './ShellRenderer']
25
25
  * @extends sap.ui.unified.ShellLayout
26
26
  *
27
27
  * @author SAP SE
28
- * @version 1.122.1
28
+ * @version 1.123.0
29
29
  *
30
30
  * @constructor
31
31
  * @public
32
32
  * @since 1.15.1
33
33
  * @alias sap.ui.unified.Shell
34
- * @deprecated Since version 1.44.0.
34
+ * @deprecated As of version 1.44.0, the concept has been discarded.
35
35
  */
36
36
  var Shell = ShellLayout.extend("sap.ui.unified.Shell", /** @lends sap.ui.unified.Shell.prototype */ { metadata : {
37
37
 
@@ -28,13 +28,13 @@ sap.ui.define([
28
28
  * @extends sap.ui.core.Element
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.122.1
31
+ * @version 1.123.0
32
32
  *
33
33
  * @constructor
34
34
  * @public
35
35
  * @since 1.15.1
36
36
  * @alias sap.ui.unified.ShellHeadItem
37
- * @deprecated Since version 1.44.0.
37
+ * @deprecated As of version 1.44.0, the concept has been discarded.
38
38
  */
39
39
  var ShellHeadItem = Element.extend("sap.ui.unified.ShellHeadItem", /** @lends sap.ui.unified.ShellHeadItem.prototype */ { metadata : {
40
40
 
@@ -27,13 +27,13 @@ sap.ui.define([
27
27
  * @extends sap.ui.core.Element
28
28
  *
29
29
  * @author SAP SE
30
- * @version 1.122.1
30
+ * @version 1.123.0
31
31
  *
32
32
  * @constructor
33
33
  * @public
34
34
  * @since 1.22.0
35
35
  * @alias sap.ui.unified.ShellHeadUserItem
36
- * @deprecated Since version 1.44.0.
36
+ * @deprecated As of version 1.44.0, the concept has been discarded.
37
37
  */
38
38
  var ShellHeadUserItem = Element.extend("sap.ui.unified.ShellHeadUserItem", /** @lends sap.ui.unified.ShellHeadUserItem.prototype */ { metadata : {
39
39
 
@@ -18,6 +18,12 @@ sap.ui.define([
18
18
  "use strict";
19
19
 
20
20
 
21
+ /**
22
+ * Internal helper control for the <code>sap.ui.unified.Shell</code>.
23
+ *
24
+ * @deprecated As of version 1.44.0, the concept has been discarded.
25
+ * @private
26
+ */
21
27
  var ShellHeader = Control.extend("sap.ui.unified.ShellHeader", {
22
28
 
23
29
  metadata: {
@@ -56,13 +56,13 @@ sap.ui.define([
56
56
  * @extends sap.ui.core.Control
57
57
  *
58
58
  * @author SAP SE
59
- * @version 1.122.1
59
+ * @version 1.123.0
60
60
  *
61
61
  * @constructor
62
62
  * @public
63
63
  * @since 1.25.0
64
64
  * @alias sap.ui.unified.ShellLayout
65
- * @deprecated Since version 1.44.0.
65
+ * @deprecated As of version 1.44.0, the concept has been discarded.
66
66
  */
67
67
  var ShellLayout = Control.extend("sap.ui.unified.ShellLayout", /** @lends sap.ui.unified.ShellLayout.prototype */ { metadata : {
68
68
 
@@ -13,7 +13,7 @@ sap.ui.define(["sap/ui/core/ControlBehavior"],
13
13
  /**
14
14
  * Shell Layout renderer.
15
15
  * @namespace
16
- * @deprecated Since version 1.44.0.
16
+ * @deprecated As of version 1.44.0, the concept has been discarded.
17
17
  */
18
18
  var ShellLayoutRenderer = {};
19
19
 
@@ -46,13 +46,13 @@ sap.ui.define([
46
46
  * @extends sap.ui.core.Control
47
47
  *
48
48
  * @author SAP SE
49
- * @version 1.122.1
49
+ * @version 1.123.0
50
50
  *
51
51
  * @constructor
52
52
  * @public
53
53
  * @since 1.16.3
54
54
  * @alias sap.ui.unified.ShellOverlay
55
- * @deprecated Since version 1.44.0.
55
+ * @deprecated As of version 1.44.0, the concept has been discarded.
56
56
  */
57
57
  var ShellOverlay = Control.extend("sap.ui.unified.ShellOverlay", /** @lends sap.ui.unified.ShellOverlay.prototype */ {
58
58
  metadata : {
@@ -13,7 +13,7 @@ sap.ui.define(["sap/ui/core/Lib", "sap/ui/core/ControlBehavior"],
13
13
  /**
14
14
  * ShellOverlay renderer.
15
15
  * @namespace
16
- * @deprecated Since version 1.44.0.
16
+ * @deprecated As of version 1.44.0, the concept has been discarded.
17
17
  */
18
18
  var ShellOverlayRenderer = {};
19
19
 
@@ -13,7 +13,7 @@ sap.ui.define(['sap/ui/core/Renderer', './ShellLayoutRenderer'],
13
13
  /**
14
14
  * Renderer for the sap.ui.unified.Shell
15
15
  * @namespace
16
- * @deprecated Since version 1.44.0.
16
+ * @deprecated As of version 1.44.0, the concept has been discarded.
17
17
  */
18
18
  var ShellRenderer = Renderer.extend(ShellLayoutRenderer);
19
19