@openui5/types 1.115.0 → 1.116.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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -6,8 +6,8 @@ declare module "sap/ui/rta/api/startAdaptation" {
6
6
  import UIComponent from "sap/ui/core/UIComponent";
7
7
 
8
8
  /**
9
- * @SINCE 1.83
10
- * @EXPERIMENTAL (since 1.83)
9
+ * @since 1.83
10
+ * @experimental (since 1.83)
11
11
  *
12
12
  * Starts UI adaptation, initiated for an application at the passed root control instance. With this API
13
13
  * you are also able to modify the UI adaptation plugins list and or add some event handler functions to
@@ -64,8 +64,8 @@ declare module "sap/ui/rta/api/startKeyUserAdaptation" {
64
64
  import UIComponent from "sap/ui/core/UIComponent";
65
65
 
66
66
  /**
67
- * @SINCE 1.71
68
- * @EXPERIMENTAL (since 1.71)
67
+ * @since 1.71
68
+ * @experimental (since 1.71)
69
69
  *
70
70
  * Starts key user adaptation, initiated for an application at the passed root control instance. It subsequently
71
71
  * extends to all valid child controls.
@@ -87,8 +87,8 @@ declare module "sap/ui/rta/api/startKeyUserAdaptation" {
87
87
 
88
88
  declare module "sap/ui/rta/enablement/TestDelegate" {
89
89
  /**
90
- * @SINCE 1.77
91
- * @EXPERIMENTAL (since 1.77)
90
+ * @since 1.77
91
+ * @experimental (since 1.77)
92
92
  *
93
93
  * sap.ui.fl Delegate to be used in elementActionTests.
94
94
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -40,11 +40,11 @@ declare module "sap/ui/suite/TaskCircle" {
40
40
  /**
41
41
  * @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
42
42
  * known
43
- * @EXPERIMENTAL (since 1.2) - The API may change. Use with care.
43
+ * @experimental (since 1.2) - The API may change. Use with care.
44
44
  *
45
45
  * This control shows a circle which radius and color depends on the given parameters
46
46
  */
47
- class TaskCircle extends Control {
47
+ export default class TaskCircle extends Control {
48
48
  /**
49
49
  * Constructor for a new TaskCircle.
50
50
  *
@@ -190,7 +190,7 @@ declare module "sap/ui/suite/TaskCircle" {
190
190
  oListener?: object
191
191
  ): this;
192
192
  /**
193
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
193
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
194
194
  *
195
195
  * Fires event {@link #event:press press} to attached listeners.
196
196
  *
@@ -359,7 +359,6 @@ declare module "sap/ui/suite/TaskCircle" {
359
359
  iValue?: int
360
360
  ): this;
361
361
  }
362
- export default TaskCircle;
363
362
 
364
363
  export interface $TaskCircleSettings extends $ControlSettings {
365
364
  /**
@@ -402,7 +401,9 @@ declare module "sap/ui/suite/TaskCircle" {
402
401
  press?: (oEvent: Event) => void;
403
402
  }
404
403
 
405
- export interface $TaskCirclePressEventParameters {}
404
+ export interface TaskCircle$PressEventParameters {}
405
+
406
+ export type TaskCircle$PressEvent = Event<TaskCircle$PressEventParameters>;
406
407
  }
407
408
 
408
409
  declare module "sap/ui/suite/VerticalProgressIndicator" {
@@ -419,12 +420,12 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
419
420
  /**
420
421
  * @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
421
422
  * known
422
- * @EXPERIMENTAL (since 1.2) - The API may change. Use with care.
423
+ * @experimental (since 1.2) - The API may change. Use with care.
423
424
  *
424
425
  * This control shows a vertical progress bar in dependency of the given percentage. Only values between
425
426
  * 0 and 100 are valid.
426
427
  */
427
- class VerticalProgressIndicator extends Control {
428
+ export default class VerticalProgressIndicator extends Control {
428
429
  /**
429
430
  * Constructor for a new VerticalProgressIndicator.
430
431
  *
@@ -572,7 +573,7 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
572
573
  oListener?: object
573
574
  ): this;
574
575
  /**
575
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
576
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
576
577
  *
577
578
  * Fires event {@link #event:press press} to attached listeners.
578
579
  *
@@ -648,7 +649,6 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
648
649
  */
649
650
  setPercentage(iPercentage: int): this;
650
651
  }
651
- export default VerticalProgressIndicator;
652
652
 
653
653
  export interface $VerticalProgressIndicatorSettings extends $ControlSettings {
654
654
  /**
@@ -673,7 +673,9 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
673
673
  press?: (oEvent: Event) => void;
674
674
  }
675
675
 
676
- export interface $VerticalProgressIndicatorPressEventParameters {}
676
+ export interface VerticalProgressIndicator$PressEventParameters {}
677
+
678
+ export type VerticalProgressIndicator$PressEvent = Event<VerticalProgressIndicator$PressEventParameters>;
677
679
  }
678
680
 
679
681
  declare namespace sap {
@@ -1,8 +1,8 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
5
- * @SINCE 1.50
5
+ * @since 1.50
6
6
  *
7
7
  * Defines the Audiences.
8
8
  */
@@ -21,7 +21,7 @@ declare module "sap/ui/support/library" {
21
21
  Internal = "Internal",
22
22
  }
23
23
  /**
24
- * @SINCE 1.50
24
+ * @since 1.50
25
25
  *
26
26
  * Issue Categories.
27
27
  */
@@ -43,7 +43,7 @@ declare module "sap/ui/support/library" {
43
43
  */
44
44
  DataModel = "DataModel",
45
45
  /**
46
- * @SINCE 1.58
46
+ * @since 1.58
47
47
  *
48
48
  * Fiori Guidelines issue category.
49
49
  */
@@ -57,7 +57,7 @@ declare module "sap/ui/support/library" {
57
57
  */
58
58
  Memory = "Memory",
59
59
  /**
60
- * @SINCE 1.60
60
+ * @since 1.60
61
61
  *
62
62
  * Modularization issue category.
63
63
  */
@@ -80,7 +80,7 @@ declare module "sap/ui/support/library" {
80
80
  Usage = "Usage",
81
81
  }
82
82
  /**
83
- * @SINCE 1.58
83
+ * @since 1.58
84
84
  *
85
85
  * Analysis history formats.
86
86
  */
@@ -120,7 +120,7 @@ declare module "sap/ui/support/library" {
120
120
  };
121
121
 
122
122
  /**
123
- * @SINCE 1.50
123
+ * @since 1.50
124
124
  *
125
125
  * Defines severity types.
126
126
  */
@@ -139,7 +139,7 @@ declare module "sap/ui/support/library" {
139
139
  Medium = "Medium",
140
140
  }
141
141
  /**
142
- * @SINCE 1.60
142
+ * @since 1.60
143
143
  *
144
144
  * Contains the available system presets.
145
145
  */
@@ -189,7 +189,7 @@ declare module "sap/ui/support/supportRules/History" {
189
189
 
190
190
  declare module "sap/ui/support/supportRules/ExecutionScope" {
191
191
  /**
192
- * @SINCE 1.48
192
+ * @since 1.48
193
193
  *
194
194
  * Allows to select the scope of analysis on an application.
195
195
  *
@@ -204,7 +204,7 @@ declare module "sap/ui/support/supportRules/ExecutionScope" {
204
204
  * When you analyze your application, available objects are collected depending on the settings passed to
205
205
  * the Support Assistant at the moment when you start it.
206
206
  */
207
- class ExecutionScope {
207
+ export default class ExecutionScope {
208
208
  constructor();
209
209
 
210
210
  /**
@@ -265,7 +265,6 @@ declare module "sap/ui/support/supportRules/ExecutionScope" {
265
265
  */
266
266
  getType(): string;
267
267
  }
268
- export default ExecutionScope;
269
268
  }
270
269
 
271
270
  declare module "sap/ui/support/RuleAnalyzer" {
@@ -291,7 +290,7 @@ declare module "sap/ui/support/RuleAnalyzer" {
291
290
  */
292
291
  interface RuleAnalyzer {
293
292
  /**
294
- * @SINCE 1.60
293
+ * @since 1.60
295
294
  *
296
295
  * Adds new temporary rule when in silent mode
297
296
  *
@@ -374,7 +373,7 @@ declare module "sap/ui/support/RuleAnalyzer" {
374
373
  declare namespace sap {
375
374
  namespace ui {
376
375
  /**
377
- * @SINCE 1.50
376
+ * @since 1.50
378
377
  *
379
378
  * UI5 library: sap.ui.support. A library for the Support Assistant tool. Overview: The library provides
380
379
  * the Support Assistant tool. It enables application developers to check whether their applications are