@openui5/ts-types 1.92.0 → 1.93.3
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/README.md +3 -1
- package/package.json +1 -1
- package/types/sap.f.d.ts +623 -468
- package/types/sap.m.d.ts +5498 -4814
- package/types/sap.tnt.d.ts +149 -117
- package/types/sap.ui.codeeditor.d.ts +28 -28
- package/types/sap.ui.commons.d.ts +1387 -1387
- package/types/sap.ui.core.d.ts +3852 -3973
- package/types/sap.ui.dt.d.ts +2 -4
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +118 -112
- package/types/sap.ui.layout.d.ts +593 -586
- package/types/sap.ui.mdc.d.ts +7 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +53 -53
- package/types/sap.ui.support.d.ts +6 -12
- package/types/sap.ui.table.d.ts +248 -248
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +853 -713
- package/types/sap.ui.ux3.d.ts +785 -793
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +454 -450
- package/types/sap.ui.webc.main.d.ts +1317 -1317
- package/types/sap.uxap.d.ts +384 -220
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.93.3
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -84,6 +84,10 @@ declare namespace sap {
|
|
|
84
84
|
|
|
85
85
|
"sap/ui/mdc/field/ListFieldHelpItem": undefined;
|
|
86
86
|
|
|
87
|
+
"sap/ui/mdc/field/MultiValueFieldDelegate": undefined;
|
|
88
|
+
|
|
89
|
+
"sap/ui/mdc/field/MultiValueFieldItem": undefined;
|
|
90
|
+
|
|
87
91
|
"sap/ui/mdc/field/OutParameter": undefined;
|
|
88
92
|
|
|
89
93
|
"sap/ui/mdc/field/ValueHelpPanel": undefined;
|
|
@@ -110,6 +114,8 @@ declare namespace sap {
|
|
|
110
114
|
|
|
111
115
|
"sap/ui/mdc/mixin/FilterIntegrationMixin": undefined;
|
|
112
116
|
|
|
117
|
+
"sap/ui/mdc/MultiValueField": undefined;
|
|
118
|
+
|
|
113
119
|
"sap/ui/mdc/odata/v4/FieldBaseDelegate": undefined;
|
|
114
120
|
|
|
115
121
|
"sap/ui/mdc/odata/v4/FieldValueHelpDelegate": undefined;
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.93.3
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -45,7 +45,7 @@ declare namespace sap {
|
|
|
45
45
|
/**
|
|
46
46
|
* Event is fired when the user clicks the control.
|
|
47
47
|
*/
|
|
48
|
-
press?:
|
|
48
|
+
press?: (oEvent: sap.ui.base.Event) => void;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
interface $VerticalProgressIndicatorSettings
|
|
@@ -69,7 +69,7 @@ declare namespace sap {
|
|
|
69
69
|
/**
|
|
70
70
|
* Event is fired when the user clicks the control.
|
|
71
71
|
*/
|
|
72
|
-
press?:
|
|
72
|
+
press?: (oEvent: sap.ui.base.Event) => void;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
/**
|
|
@@ -109,6 +109,31 @@ declare namespace sap {
|
|
|
109
109
|
mSettings?: sap.ui.suite.$TaskCircleSettings
|
|
110
110
|
);
|
|
111
111
|
|
|
112
|
+
/**
|
|
113
|
+
* Creates a new subclass of class sap.ui.suite.TaskCircle with name `sClassName` and enriches it with the
|
|
114
|
+
* information contained in `oClassInfo`.
|
|
115
|
+
*
|
|
116
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
117
|
+
*/
|
|
118
|
+
static extend<T extends Record<string, unknown>>(
|
|
119
|
+
/**
|
|
120
|
+
* Name of the class being created
|
|
121
|
+
*/
|
|
122
|
+
sClassName: string,
|
|
123
|
+
/**
|
|
124
|
+
* Object literal with information about the class
|
|
125
|
+
*/
|
|
126
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.suite.TaskCircle>,
|
|
127
|
+
/**
|
|
128
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
129
|
+
* used by this class
|
|
130
|
+
*/
|
|
131
|
+
FNMetaImpl?: Function
|
|
132
|
+
): Function;
|
|
133
|
+
/**
|
|
134
|
+
* Returns a metadata object for class sap.ui.suite.TaskCircle.
|
|
135
|
+
*/
|
|
136
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
112
137
|
/**
|
|
113
138
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
114
139
|
*/
|
|
@@ -183,27 +208,6 @@ declare namespace sap {
|
|
|
183
208
|
*/
|
|
184
209
|
oListener?: object
|
|
185
210
|
): this;
|
|
186
|
-
/**
|
|
187
|
-
* Creates a new subclass of class sap.ui.suite.TaskCircle with name `sClassName` and enriches it with the
|
|
188
|
-
* information contained in `oClassInfo`.
|
|
189
|
-
*
|
|
190
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
191
|
-
*/
|
|
192
|
-
static extend<T extends Record<string, unknown>>(
|
|
193
|
-
/**
|
|
194
|
-
* Name of the class being created
|
|
195
|
-
*/
|
|
196
|
-
sClassName: string,
|
|
197
|
-
/**
|
|
198
|
-
* Object literal with information about the class
|
|
199
|
-
*/
|
|
200
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.suite.TaskCircle>,
|
|
201
|
-
/**
|
|
202
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
203
|
-
* used by this class
|
|
204
|
-
*/
|
|
205
|
-
FNMetaImpl?: Function
|
|
206
|
-
): Function;
|
|
207
211
|
/**
|
|
208
212
|
* Fires event {@link #event:press press} to attached listeners.
|
|
209
213
|
*/
|
|
@@ -243,10 +247,6 @@ declare namespace sap {
|
|
|
243
247
|
* Default value is `100`.
|
|
244
248
|
*/
|
|
245
249
|
getMaxValue(): int;
|
|
246
|
-
/**
|
|
247
|
-
* Returns a metadata object for class sap.ui.suite.TaskCircle.
|
|
248
|
-
*/
|
|
249
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
250
250
|
/**
|
|
251
251
|
* Gets current value of property {@link #getMinValue minValue}.
|
|
252
252
|
*
|
|
@@ -390,6 +390,31 @@ declare namespace sap {
|
|
|
390
390
|
mSettings?: sap.ui.suite.$VerticalProgressIndicatorSettings
|
|
391
391
|
);
|
|
392
392
|
|
|
393
|
+
/**
|
|
394
|
+
* Creates a new subclass of class sap.ui.suite.VerticalProgressIndicator with name `sClassName` and enriches
|
|
395
|
+
* it with the information contained in `oClassInfo`.
|
|
396
|
+
*
|
|
397
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
398
|
+
*/
|
|
399
|
+
static extend<T extends Record<string, unknown>>(
|
|
400
|
+
/**
|
|
401
|
+
* Name of the class being created
|
|
402
|
+
*/
|
|
403
|
+
sClassName: string,
|
|
404
|
+
/**
|
|
405
|
+
* Object literal with information about the class
|
|
406
|
+
*/
|
|
407
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.suite.VerticalProgressIndicator>,
|
|
408
|
+
/**
|
|
409
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
410
|
+
* used by this class
|
|
411
|
+
*/
|
|
412
|
+
FNMetaImpl?: Function
|
|
413
|
+
): Function;
|
|
414
|
+
/**
|
|
415
|
+
* Returns a metadata object for class sap.ui.suite.VerticalProgressIndicator.
|
|
416
|
+
*/
|
|
417
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
393
418
|
/**
|
|
394
419
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
395
420
|
*/
|
|
@@ -466,27 +491,6 @@ declare namespace sap {
|
|
|
466
491
|
*/
|
|
467
492
|
oListener?: object
|
|
468
493
|
): this;
|
|
469
|
-
/**
|
|
470
|
-
* Creates a new subclass of class sap.ui.suite.VerticalProgressIndicator with name `sClassName` and enriches
|
|
471
|
-
* it with the information contained in `oClassInfo`.
|
|
472
|
-
*
|
|
473
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
474
|
-
*/
|
|
475
|
-
static extend<T extends Record<string, unknown>>(
|
|
476
|
-
/**
|
|
477
|
-
* Name of the class being created
|
|
478
|
-
*/
|
|
479
|
-
sClassName: string,
|
|
480
|
-
/**
|
|
481
|
-
* Object literal with information about the class
|
|
482
|
-
*/
|
|
483
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.suite.VerticalProgressIndicator>,
|
|
484
|
-
/**
|
|
485
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
486
|
-
* used by this class
|
|
487
|
-
*/
|
|
488
|
-
FNMetaImpl?: Function
|
|
489
|
-
): Function;
|
|
490
494
|
/**
|
|
491
495
|
* Fires event {@link #event:press press} to attached listeners.
|
|
492
496
|
*/
|
|
@@ -510,10 +514,6 @@ declare namespace sap {
|
|
|
510
514
|
* ariaLabelledBy}.
|
|
511
515
|
*/
|
|
512
516
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
513
|
-
/**
|
|
514
|
-
* Returns a metadata object for class sap.ui.suite.VerticalProgressIndicator.
|
|
515
|
-
*/
|
|
516
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
517
517
|
/**
|
|
518
518
|
* Gets current value of property {@link #getPercentage percentage}.
|
|
519
519
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.93.3
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -189,14 +189,8 @@ declare namespace sap {
|
|
|
189
189
|
* at the moment when you start it.
|
|
190
190
|
*/
|
|
191
191
|
class ExecutionScope {
|
|
192
|
-
/**
|
|
193
|
-
*
|
|
194
|
-
*/
|
|
195
192
|
constructor();
|
|
196
193
|
|
|
197
|
-
/**
|
|
198
|
-
*
|
|
199
|
-
*/
|
|
200
194
|
static getElements(
|
|
201
195
|
/**
|
|
202
196
|
* Object with specific filtering options
|
|
@@ -244,7 +238,7 @@ declare namespace sap {
|
|
|
244
238
|
static getType(): string;
|
|
245
239
|
}
|
|
246
240
|
/**
|
|
247
|
-
* @SINCE 1.
|
|
241
|
+
* @SINCE 1.93.3
|
|
248
242
|
*
|
|
249
243
|
* Defines the Audiences.
|
|
250
244
|
*/
|
|
@@ -263,7 +257,7 @@ declare namespace sap {
|
|
|
263
257
|
Internal = "Internal",
|
|
264
258
|
}
|
|
265
259
|
/**
|
|
266
|
-
* @SINCE 1.
|
|
260
|
+
* @SINCE 1.93.3
|
|
267
261
|
*
|
|
268
262
|
* Issue Categories.
|
|
269
263
|
*/
|
|
@@ -318,7 +312,7 @@ declare namespace sap {
|
|
|
318
312
|
Usage = "Usage",
|
|
319
313
|
}
|
|
320
314
|
/**
|
|
321
|
-
* @SINCE 1.
|
|
315
|
+
* @SINCE 1.93.3
|
|
322
316
|
*
|
|
323
317
|
* Analysis history formats.
|
|
324
318
|
*/
|
|
@@ -333,7 +327,7 @@ declare namespace sap {
|
|
|
333
327
|
String = "String",
|
|
334
328
|
}
|
|
335
329
|
/**
|
|
336
|
-
* @SINCE 1.
|
|
330
|
+
* @SINCE 1.93.3
|
|
337
331
|
*
|
|
338
332
|
* Defines severity types.
|
|
339
333
|
*/
|
|
@@ -352,7 +346,7 @@ declare namespace sap {
|
|
|
352
346
|
Medium = "Medium",
|
|
353
347
|
}
|
|
354
348
|
/**
|
|
355
|
-
* @SINCE 1.
|
|
349
|
+
* @SINCE 1.93.3
|
|
356
350
|
*
|
|
357
351
|
* Contains the available system presets.
|
|
358
352
|
*/
|