@sapui5/sap.me 1.106.0 → 1.108.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.me",
3
- "version": "1.106.0",
3
+ "version": "1.108.0",
4
4
  "description": "SAPUI5 Library sap.me",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -5,7 +5,7 @@
5
5
  <vendor>SAP SE</vendor>
6
6
  <copyright>SAPUI5
7
7
  * (c) Copyright 2009-2022 SAP SE. All rights reserved.</copyright>
8
- <version>1.106.0</version>
8
+ <version>1.108.0</version>
9
9
 
10
10
  <documentation>SAPUI5 library with controls specialized for mobile devices (extension).</documentation>
11
11
 
@@ -64,7 +64,6 @@ sap.ui.define([
64
64
  * @deprecated Since version 1.26.0.
65
65
  * This control was experimental since 1.12. Please use the sap.ui.unified.Calendar instead!
66
66
  * @alias sap.me.Calendar
67
- * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
68
67
  */
69
68
  var Calendar = Control.extend("sap.me.Calendar", /** @lends sap.me.Calendar.prototype */ { metadata : {
70
69
 
@@ -541,7 +540,6 @@ sap.ui.define([
541
540
  *
542
541
  * @type any
543
542
  * @public
544
- * @ui5-metamodel This method also will be described in the UI5 (legacy) designtime metamodel
545
543
  */
546
544
  Calendar.prototype.getSelectedDates = function () {
547
545
  return this._getDatesWithStyleClass("sapMeCalendarSelected");
@@ -557,7 +555,6 @@ sap.ui.define([
557
555
  * select/unselect. Optional, if omitted it inverts each date's current state
558
556
  * @type void
559
557
  * @public
560
- * @ui5-metamodel This method also will be described in the UI5 (legacy) designtime metamodel
561
558
  */
562
559
  Calendar.prototype.toggleDatesSelection = function (aDates, bSelected) {
563
560
  this._toggleDatesStyleClass("sapMeCalendarSelected", aDates, bSelected);
@@ -575,7 +572,6 @@ sap.ui.define([
575
572
  * Add/remove the type, if ommited it will toggle
576
573
  * @type void
577
574
  * @public
578
- * @ui5-metamodel This method also will be described in the UI5 (legacy) designtime metamodel
579
575
  */
580
576
  Calendar.prototype.toggleDatesType = function (aDates, sType, bSelected) {
581
577
  this._toggleDatesStyleClass("sapMeCalendar" + sType, aDates, bSelected);
@@ -596,7 +592,6 @@ sap.ui.define([
596
592
  *
597
593
  * @type void
598
594
  * @public
599
- * @ui5-metamodel This method also will be described in the UI5 (legacy) designtime metamodel
600
595
  */
601
596
  Calendar.prototype.unselectAllDates = function () {
602
597
  this._removeStyleClassOfAllDates("sapMeCalendarSelected");
@@ -614,7 +609,6 @@ sap.ui.define([
614
609
  * selected/unselected. Optional, if omitted it inverts each date's current state
615
610
  * @type void
616
611
  * @public
617
- * @ui5-metamodel This method also will be described in the UI5 (legacy) designtime metamodel
618
612
  */
619
613
  Calendar.prototype.toggleDatesRangeSelection = function (oDateStart, oDateEnd, bSelected) {
620
614
  this._toggleDatesRangeStyleClass("sapMeCalendarSelected", oDateStart,
@@ -40,7 +40,6 @@ sap.ui.define([
40
40
  * @deprecated Since version 1.34.0.
41
41
  * This control was experimental since 1.12. Please use the sap.ui.unified.CalendarLegend instead!
42
42
  * @alias sap.me.CalendarLegend
43
- * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
44
43
  */
45
44
  var CalendarLegend = Control.extend("sap.me.CalendarLegend", /** @lends sap.me.CalendarLegend.prototype */ { metadata : {
46
45
 
@@ -47,7 +47,6 @@ sap.ui.define([
47
47
  * @deprecated Since version 1.34.0.
48
48
  * This control was experimental since 1.12. Please use the sap.m.PlanningCalendar instead!
49
49
  * @alias sap.me.OverlapCalendar
50
- * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
51
50
  */
52
51
  var OverlapCalendar = Control.extend("sap.me.OverlapCalendar", /** @lends sap.me.OverlapCalendar.prototype */ { metadata : {
53
52
  library : "sap.me",
@@ -25,7 +25,6 @@ sap.ui.define(['./library', 'sap/ui/core/Element'],
25
25
  * @deprecated Since version 1.34.0.
26
26
  * This control was experimental since 1.12. Please use the sap.ui.unified.CalendarAppointment instead!
27
27
  * @alias sap.me.OverlapCalendarEvent
28
- * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
29
28
  */
30
29
  var OverlapCalendarEvent = Element.extend("sap.me.OverlapCalendarEvent", /** @lends sap.me.OverlapCalendarEvent.prototype */ { metadata : {
31
30
 
@@ -33,7 +33,6 @@ sap.ui.define(['sap/ui/thirdparty/jquery', './library', 'sap/ui/core/Control', '
33
33
  * @deprecated Since version 1.14.
34
34
  * This control is replaced by sap.m.ProgressIndicator
35
35
  * @alias sap.me.ProgressIndicator
36
- * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
37
36
  */
38
37
  var ProgressIndicator = Control.extend("sap.me.ProgressIndicator", /** @lends sap.me.ProgressIndicator.prototype */ { metadata : {
39
38
 
@@ -50,7 +50,6 @@ sap.ui.define([
50
50
  * Please use the sap.m.IconTabBar instead!
51
51
  * This control will not be supported anymore.
52
52
  * @alias sap.me.TabContainer
53
- * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
54
53
  */
55
54
  var TabContainer = Control.extend("sap.me.TabContainer", /** @lends sap.me.TabContainer.prototype */ { metadata : {
56
55
 
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'],
20
20
  */
21
21
  var thisLib = sap.ui.getCore().initLibrary({
22
22
  name : "sap.me",
23
- version: "1.106.0",
23
+ version: "1.108.0",
24
24
  dependencies : ["sap.ui.core"],
25
25
  types: [
26
26
  "sap.me.CalendarDesign",
@@ -47,7 +47,6 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'],
47
47
  * @public
48
48
  * @experimental Since version 1.12.
49
49
  * API is not yet finished and might change completely
50
- * @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
51
50
  * @deprecated as of version 1.34
52
51
  */
53
52
  thisLib.CalendarDesign = {
@@ -73,7 +72,6 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'],
73
72
  * @public
74
73
  * @experimental Since version 1.12.
75
74
  * API is not yet finished and might change completely
76
- * @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
77
75
  * @deprecated as of version 1.34
78
76
  */
79
77
  thisLib.CalendarEventType = {
@@ -123,7 +121,6 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'],
123
121
  * @public
124
122
  * @experimental Since version 1.12.
125
123
  * API is not yet finished and might change completely
126
- * @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
127
124
  * @deprecated as of version 1.34
128
125
  */
129
126
  thisLib.CalendarSelectionMode = {