@openui5/types 1.113.0 → 1.115.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.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -44,7 +44,7 @@ declare module "sap/ui/suite/TaskCircle" {
44
44
  *
45
45
  * This control shows a circle which radius and color depends on the given parameters
46
46
  */
47
- export default class TaskCircle extends Control {
47
+ class TaskCircle extends Control {
48
48
  /**
49
49
  * Constructor for a new TaskCircle.
50
50
  *
@@ -207,13 +207,11 @@ declare module "sap/ui/suite/TaskCircle" {
207
207
  */
208
208
  focus(): void;
209
209
  /**
210
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
211
- * ariaDescribedBy}.
210
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
212
211
  */
213
212
  getAriaDescribedBy(): ID[];
214
213
  /**
215
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
216
- * ariaLabelledBy}.
214
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
217
215
  */
218
216
  getAriaLabelledBy(): ID[];
219
217
  /**
@@ -361,6 +359,7 @@ declare module "sap/ui/suite/TaskCircle" {
361
359
  iValue?: int
362
360
  ): this;
363
361
  }
362
+ export default TaskCircle;
364
363
 
365
364
  export interface $TaskCircleSettings extends $ControlSettings {
366
365
  /**
@@ -402,6 +401,8 @@ declare module "sap/ui/suite/TaskCircle" {
402
401
  */
403
402
  press?: (oEvent: Event) => void;
404
403
  }
404
+
405
+ export interface $TaskCirclePressEventParameters {}
405
406
  }
406
407
 
407
408
  declare module "sap/ui/suite/VerticalProgressIndicator" {
@@ -423,7 +424,7 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
423
424
  * This control shows a vertical progress bar in dependency of the given percentage. Only values between
424
425
  * 0 and 100 are valid.
425
426
  */
426
- export default class VerticalProgressIndicator extends Control {
427
+ class VerticalProgressIndicator extends Control {
427
428
  /**
428
429
  * Constructor for a new VerticalProgressIndicator.
429
430
  *
@@ -588,13 +589,11 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
588
589
  */
589
590
  focus(): void;
590
591
  /**
591
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
592
- * ariaDescribedBy}.
592
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
593
593
  */
594
594
  getAriaDescribedBy(): ID[];
595
595
  /**
596
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
597
- * ariaLabelledBy}.
596
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
598
597
  */
599
598
  getAriaLabelledBy(): ID[];
600
599
  /**
@@ -649,6 +648,7 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
649
648
  */
650
649
  setPercentage(iPercentage: int): this;
651
650
  }
651
+ export default VerticalProgressIndicator;
652
652
 
653
653
  export interface $VerticalProgressIndicatorSettings extends $ControlSettings {
654
654
  /**
@@ -672,6 +672,8 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
672
672
  */
673
673
  press?: (oEvent: Event) => void;
674
674
  }
675
+
676
+ export interface $VerticalProgressIndicatorPressEventParameters {}
675
677
  }
676
678
 
677
679
  declare namespace sap {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -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
- export default class ExecutionScope {
207
+ class ExecutionScope {
208
208
  constructor();
209
209
 
210
210
  /**
@@ -265,6 +265,7 @@ declare module "sap/ui/support/supportRules/ExecutionScope" {
265
265
  */
266
266
  getType(): string;
267
267
  }
268
+ export default ExecutionScope;
268
269
  }
269
270
 
270
271
  declare module "sap/ui/support/RuleAnalyzer" {
@@ -284,9 +285,9 @@ declare module "sap/ui/support/RuleAnalyzer" {
284
285
  * - `sap.ui.support.RuleAnalyzer.addRule` method allows adding a new rule.
285
286
  * - `sap.ui.support.RuleAnalyzer.analyze` starts the analysis of the application.
286
287
  * - Then the result can be accessed with methods `sap.ui.support.RuleAnalyzer.getAnalysisHistory`, `sap.ui.support.RuleAnalyzer.getLastAnalysisHistory`
287
- * or `sap.ui.support.RuleAnalyzer.getFormattedAnalysisHistory`.
288
+ * or `sap.ui.support.RuleAnalyzer.getFormattedAnalysisHistory`.
288
289
  *
289
- * For more information, see {@link topic:a34eb58aaf124f538a3ead23a6cab04a Support Assistant API}.
290
+ * For more information, see {@link https://ui5.sap.com/#/topic/a34eb58aaf124f538a3ead23a6cab04a Support Assistant API}.
290
291
  */
291
292
  interface RuleAnalyzer {
292
293
  /**
@@ -298,8 +299,7 @@ declare module "sap/ui/support/RuleAnalyzer" {
298
299
  */
299
300
  addRule(
300
301
  /**
301
- * Settings for the new rule. For detailed information about its properties see {@link topic:eaeea19a991d46f29e6d8d8827317d0e
302
- * Rule Property Values}
302
+ * Settings for the new rule. For detailed information about its properties see {@link https://ui5.sap.com/#/topic/eaeea19a991d46f29e6d8d8827317d0e Rule Property Values}
303
303
  */
304
304
  oRule: RuleConfiguration
305
305
  ): string;
@@ -313,7 +313,7 @@ declare module "sap/ui/support/RuleAnalyzer" {
313
313
  */
314
314
  analyze(
315
315
  /**
316
- * The execution scope of the analysis (see {@link topic:e15067d976f24b11907f4c262bd749a0 Execution Scope}).
316
+ * The execution scope of the analysis (see {@link https://ui5.sap.com/#/topic/e15067d976f24b11907f4c262bd749a0 Execution Scope}).
317
317
  */
318
318
  oExecutionScope?: {
319
319
  /**