@openui5/ts-types-esm 1.92.0 → 1.95.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,20 @@
1
- // For Library Version: 1.92.0
1
+ // For Library Version: 1.95.0
2
+
3
+ declare module "sap/ui/mdc/library" {
4
+ /**
5
+ * Enumeration of the `multiSelectMode>/code> in ListBase`.
6
+ */
7
+ export enum MultiSelectMode {
8
+ /**
9
+ * Renders the `clearAll` icon.
10
+ */
11
+ ClearAll = "ClearAll",
12
+ /**
13
+ * Renders the `selectAll` checkbox (default behavior).
14
+ */
15
+ Default = "Default",
16
+ }
17
+ }
2
18
 
3
19
  declare namespace sap {
4
20
  interface IUI5DefineDependencyNames {
@@ -38,6 +54,8 @@ declare namespace sap {
38
54
 
39
55
  "sap/ui/mdc/enum/PersistenceMode": undefined;
40
56
 
57
+ "sap/ui/mdc/enum/SelectType": undefined;
58
+
41
59
  "sap/ui/mdc/Field": undefined;
42
60
 
43
61
  "sap/ui/mdc/field/BoolFieldHelp": undefined;
@@ -84,6 +102,10 @@ declare namespace sap {
84
102
 
85
103
  "sap/ui/mdc/field/ListFieldHelpItem": undefined;
86
104
 
105
+ "sap/ui/mdc/field/MultiValueFieldDelegate": undefined;
106
+
107
+ "sap/ui/mdc/field/MultiValueFieldItem": undefined;
108
+
87
109
  "sap/ui/mdc/field/OutParameter": undefined;
88
110
 
89
111
  "sap/ui/mdc/field/ValueHelpPanel": undefined;
@@ -110,6 +132,10 @@ declare namespace sap {
110
132
 
111
133
  "sap/ui/mdc/mixin/FilterIntegrationMixin": undefined;
112
134
 
135
+ "sap/ui/mdc/mixin/PromiseMixin": undefined;
136
+
137
+ "sap/ui/mdc/MultiValueField": undefined;
138
+
113
139
  "sap/ui/mdc/odata/v4/FieldBaseDelegate": undefined;
114
140
 
115
141
  "sap/ui/mdc/odata/v4/FieldValueHelpDelegate": undefined;
@@ -140,6 +166,14 @@ declare namespace sap {
140
166
 
141
167
  "sap/ui/mdc/util/FilterUtil": undefined;
142
168
 
169
+ "sap/ui/mdc/util/PromiseCache": undefined;
170
+
143
171
  "sap/ui/mdc/util/TypeUtil": undefined;
172
+
173
+ "sap/ui/mdc/ValueHelp": undefined;
174
+
175
+ "sap/ui/mdc/valuehelp/base/Container": undefined;
176
+
177
+ "sap/ui/mdc/valuehelp/base/Content": undefined;
144
178
  }
145
179
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.92.0
1
+ // For Library Version: 1.95.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import UI5Element from "sap/ui/core/Element";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.92.0
1
+ // For Library Version: 1.95.0
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -74,6 +74,31 @@ declare module "sap/ui/suite/TaskCircle" {
74
74
  mSettings?: $TaskCircleSettings
75
75
  );
76
76
 
77
+ /**
78
+ * Creates a new subclass of class sap.ui.suite.TaskCircle with name `sClassName` and enriches it with the
79
+ * information contained in `oClassInfo`.
80
+ *
81
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
82
+ */
83
+ static extend<T extends Record<string, unknown>>(
84
+ /**
85
+ * Name of the class being created
86
+ */
87
+ sClassName: string,
88
+ /**
89
+ * Object literal with information about the class
90
+ */
91
+ oClassInfo?: sap.ClassInfo<T, TaskCircle>,
92
+ /**
93
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
94
+ * used by this class
95
+ */
96
+ FNMetaImpl?: Function
97
+ ): Function;
98
+ /**
99
+ * Returns a metadata object for class sap.ui.suite.TaskCircle.
100
+ */
101
+ static getMetadata(): ElementMetadata;
77
102
  /**
78
103
  * Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
79
104
  */
@@ -148,27 +173,6 @@ declare module "sap/ui/suite/TaskCircle" {
148
173
  */
149
174
  oListener?: object
150
175
  ): this;
151
- /**
152
- * Creates a new subclass of class sap.ui.suite.TaskCircle with name `sClassName` and enriches it with the
153
- * information contained in `oClassInfo`.
154
- *
155
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
156
- */
157
- static extend<T extends Record<string, unknown>>(
158
- /**
159
- * Name of the class being created
160
- */
161
- sClassName: string,
162
- /**
163
- * Object literal with information about the class
164
- */
165
- oClassInfo?: sap.ClassInfo<T, TaskCircle>,
166
- /**
167
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
168
- * used by this class
169
- */
170
- FNMetaImpl?: Function
171
- ): Function;
172
176
  /**
173
177
  * Fires event {@link #event:press press} to attached listeners.
174
178
  */
@@ -208,10 +212,6 @@ declare module "sap/ui/suite/TaskCircle" {
208
212
  * Default value is `100`.
209
213
  */
210
214
  getMaxValue(): int;
211
- /**
212
- * Returns a metadata object for class sap.ui.suite.TaskCircle.
213
- */
214
- static getMetadata(): ElementMetadata;
215
215
  /**
216
216
  * Gets current value of property {@link #getMinValue minValue}.
217
217
  *
@@ -355,7 +355,7 @@ declare module "sap/ui/suite/TaskCircle" {
355
355
  /**
356
356
  * Event is fired when the user clicks the control.
357
357
  */
358
- press?: Function;
358
+ press?: (oEvent: Event) => void;
359
359
  }
360
360
  }
361
361
 
@@ -408,6 +408,31 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
408
408
  mSettings?: $VerticalProgressIndicatorSettings
409
409
  );
410
410
 
411
+ /**
412
+ * Creates a new subclass of class sap.ui.suite.VerticalProgressIndicator with name `sClassName` and enriches
413
+ * it with the information contained in `oClassInfo`.
414
+ *
415
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
416
+ */
417
+ static extend<T extends Record<string, unknown>>(
418
+ /**
419
+ * Name of the class being created
420
+ */
421
+ sClassName: string,
422
+ /**
423
+ * Object literal with information about the class
424
+ */
425
+ oClassInfo?: sap.ClassInfo<T, VerticalProgressIndicator>,
426
+ /**
427
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
428
+ * used by this class
429
+ */
430
+ FNMetaImpl?: Function
431
+ ): Function;
432
+ /**
433
+ * Returns a metadata object for class sap.ui.suite.VerticalProgressIndicator.
434
+ */
435
+ static getMetadata(): ElementMetadata;
411
436
  /**
412
437
  * Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
413
438
  */
@@ -484,27 +509,6 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
484
509
  */
485
510
  oListener?: object
486
511
  ): this;
487
- /**
488
- * Creates a new subclass of class sap.ui.suite.VerticalProgressIndicator with name `sClassName` and enriches
489
- * it with the information contained in `oClassInfo`.
490
- *
491
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
492
- */
493
- static extend<T extends Record<string, unknown>>(
494
- /**
495
- * Name of the class being created
496
- */
497
- sClassName: string,
498
- /**
499
- * Object literal with information about the class
500
- */
501
- oClassInfo?: sap.ClassInfo<T, VerticalProgressIndicator>,
502
- /**
503
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
504
- * used by this class
505
- */
506
- FNMetaImpl?: Function
507
- ): Function;
508
512
  /**
509
513
  * Fires event {@link #event:press press} to attached listeners.
510
514
  */
@@ -528,10 +532,6 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
528
532
  * ariaLabelledBy}.
529
533
  */
530
534
  getAriaLabelledBy(): ID[];
531
- /**
532
- * Returns a metadata object for class sap.ui.suite.VerticalProgressIndicator.
533
- */
534
- static getMetadata(): ElementMetadata;
535
535
  /**
536
536
  * Gets current value of property {@link #getPercentage percentage}.
537
537
  *
@@ -593,7 +593,7 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
593
593
  /**
594
594
  * Event is fired when the user clicks the control.
595
595
  */
596
- press?: Function;
596
+ press?: (oEvent: Event) => void;
597
597
  }
598
598
  }
599
599
 
@@ -1,8 +1,8 @@
1
- // For Library Version: 1.92.0
1
+ // For Library Version: 1.95.0
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
5
- * @SINCE 1.92.0
5
+ * @SINCE 1.95.0
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.92.0
24
+ * @SINCE 1.95.0
25
25
  *
26
26
  * Issue Categories.
27
27
  */
@@ -76,7 +76,7 @@ declare module "sap/ui/support/library" {
76
76
  Usage = "Usage",
77
77
  }
78
78
  /**
79
- * @SINCE 1.92.0
79
+ * @SINCE 1.95.0
80
80
  *
81
81
  * Analysis history formats.
82
82
  */
@@ -91,7 +91,7 @@ declare module "sap/ui/support/library" {
91
91
  String = "String",
92
92
  }
93
93
  /**
94
- * @SINCE 1.92.0
94
+ * @SINCE 1.95.0
95
95
  *
96
96
  * Defines severity types.
97
97
  */
@@ -110,7 +110,7 @@ declare module "sap/ui/support/library" {
110
110
  Medium = "Medium",
111
111
  }
112
112
  /**
113
- * @SINCE 1.92.0
113
+ * @SINCE 1.95.0
114
114
  *
115
115
  * Contains the available system presets.
116
116
  */
@@ -355,14 +355,8 @@ declare namespace sap {
355
355
  * at the moment when you start it.
356
356
  */
357
357
  class ExecutionScope {
358
- /**
359
- *
360
- */
361
358
  constructor();
362
359
 
363
- /**
364
- *
365
- */
366
360
  static getElements(
367
361
  /**
368
362
  * Object with specific filtering options