@openui5/types 1.113.0 → 1.114.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 +1 -1
- package/types/sap.f.d.ts +53 -1
- package/types/sap.m.d.ts +540 -1004
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1877 -1428
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -3
- package/types/sap.ui.integration.d.ts +2459 -2349
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +89 -7
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +35 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +179 -141
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.114.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/enum/FilterBarValidationStatus" {
|
|
4
4
|
/**
|
|
@@ -23,6 +23,78 @@ declare module "sap/ui/mdc/enum/FilterBarValidationStatus" {
|
|
|
23
23
|
export default FilterBarValidationStatus;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
declare module "sap/ui/mdc/filterbar/PropertyHelper" {
|
|
27
|
+
import ManagedObject from "sap/ui/base/ManagedObject";
|
|
28
|
+
|
|
29
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* @SINCE 1.95
|
|
33
|
+
*
|
|
34
|
+
* Filter bar property helper provide a consistent and standardized view on properties and their attributes.
|
|
35
|
+
* Validates the given properties, sets default values, and provides utilities to work with these properties.
|
|
36
|
+
* The utilities can only be used for properties that are known to the helper. Known properties are all
|
|
37
|
+
* those that are passed to the constructor.
|
|
38
|
+
*/
|
|
39
|
+
export default class PropertyHelper
|
|
40
|
+
/* was: sap.ui.mdc.util.PropertyHelper */ extends Object {
|
|
41
|
+
/**
|
|
42
|
+
* Constructor for a new filter bar property helper.
|
|
43
|
+
*/
|
|
44
|
+
constructor(
|
|
45
|
+
/**
|
|
46
|
+
* The properties to process in this helper
|
|
47
|
+
*/
|
|
48
|
+
aProperties: object[],
|
|
49
|
+
/**
|
|
50
|
+
* A reference to an instance that will act as the parent of this helper
|
|
51
|
+
*/
|
|
52
|
+
oParent?: ManagedObject
|
|
53
|
+
);
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Creates a new subclass of class sap.ui.mdc.filterbar.PropertyHelper with name `sClassName` and enriches
|
|
57
|
+
* it with the information contained in `oClassInfo`.
|
|
58
|
+
*
|
|
59
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.util.PropertyHelper.extend}.
|
|
60
|
+
*
|
|
61
|
+
* @returns Created class / constructor function
|
|
62
|
+
*/
|
|
63
|
+
static extend<T extends Record<string, unknown>>(
|
|
64
|
+
/**
|
|
65
|
+
* Name of the class being created
|
|
66
|
+
*/
|
|
67
|
+
sClassName: string,
|
|
68
|
+
/**
|
|
69
|
+
* Object literal with information about the class
|
|
70
|
+
*/
|
|
71
|
+
oClassInfo?: sap.ClassInfo<T, PropertyHelper>,
|
|
72
|
+
/**
|
|
73
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
74
|
+
* used by this class
|
|
75
|
+
*/
|
|
76
|
+
FNMetaImpl?: Function
|
|
77
|
+
): Function;
|
|
78
|
+
/**
|
|
79
|
+
* Returns a metadata object for class sap.ui.mdc.filterbar.PropertyHelper.
|
|
80
|
+
*
|
|
81
|
+
* @returns Metadata object describing this class
|
|
82
|
+
*/
|
|
83
|
+
static getMetadata(): Metadata;
|
|
84
|
+
/**
|
|
85
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
86
|
+
*
|
|
87
|
+
* Applies default values and resolves property references.
|
|
88
|
+
*/
|
|
89
|
+
prepareProperty(
|
|
90
|
+
/**
|
|
91
|
+
* The passed property
|
|
92
|
+
*/
|
|
93
|
+
oProperty: object
|
|
94
|
+
): void;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
26
98
|
declare module "sap/ui/mdc/filterbar/vh/FilterContainer" {
|
|
27
99
|
import Metadata from "sap/ui/base/Metadata";
|
|
28
100
|
|
|
@@ -257,6 +329,8 @@ declare namespace sap {
|
|
|
257
329
|
|
|
258
330
|
"sap/ui/mdc/actiontoolbar/ActionToolbarAction": undefined;
|
|
259
331
|
|
|
332
|
+
"sap/ui/mdc/BaseDelegate": undefined;
|
|
333
|
+
|
|
260
334
|
"sap/ui/mdc/Chart": undefined;
|
|
261
335
|
|
|
262
336
|
"sap/ui/mdc/chart/ChartImplementationContainer": undefined;
|
|
@@ -307,6 +381,8 @@ declare namespace sap {
|
|
|
307
381
|
|
|
308
382
|
"sap/ui/mdc/enum/FilterBarValidationStatus": undefined;
|
|
309
383
|
|
|
384
|
+
"sap/ui/mdc/enum/LinkType": undefined;
|
|
385
|
+
|
|
310
386
|
"sap/ui/mdc/enum/PersistenceMode": undefined;
|
|
311
387
|
|
|
312
388
|
"sap/ui/mdc/enum/ProcessingStrategy": undefined;
|
|
@@ -325,8 +401,6 @@ declare namespace sap {
|
|
|
325
401
|
|
|
326
402
|
"sap/ui/mdc/field/CustomFieldInfo": undefined;
|
|
327
403
|
|
|
328
|
-
"sap/ui/mdc/field/DefineConditionPanel": undefined;
|
|
329
|
-
|
|
330
404
|
"sap/ui/mdc/field/DynamicDateRangeConditionsType": undefined;
|
|
331
405
|
|
|
332
406
|
"sap/ui/mdc/field/FieldBase": undefined;
|
|
@@ -351,14 +425,14 @@ declare namespace sap {
|
|
|
351
425
|
|
|
352
426
|
"sap/ui/mdc/FilterBar": undefined;
|
|
353
427
|
|
|
354
|
-
"sap/ui/mdc/filterbar/aligned/FilterContainer": undefined;
|
|
355
|
-
|
|
356
|
-
"sap/ui/mdc/filterbar/aligned/FilterItemLayout": undefined;
|
|
357
|
-
|
|
358
428
|
"sap/ui/mdc/filterbar/FilterBarBase": undefined;
|
|
359
429
|
|
|
430
|
+
"sap/ui/mdc/filterbar/IFilterContainer": undefined;
|
|
431
|
+
|
|
360
432
|
"sap/ui/mdc/filterbar/p13n/AdaptationFilterBar": undefined;
|
|
361
433
|
|
|
434
|
+
"sap/ui/mdc/filterbar/PropertyHelper": undefined;
|
|
435
|
+
|
|
362
436
|
"sap/ui/mdc/filterbar/vh/CollectiveSearchSelect": undefined;
|
|
363
437
|
|
|
364
438
|
"sap/ui/mdc/filterbar/vh/FilterBar": undefined;
|
|
@@ -443,14 +517,20 @@ declare namespace sap {
|
|
|
443
517
|
|
|
444
518
|
"sap/ui/mdc/util/PropertyHelper": undefined;
|
|
445
519
|
|
|
520
|
+
"sap/ui/mdc/util/TypeMap": undefined;
|
|
521
|
+
|
|
446
522
|
"sap/ui/mdc/util/TypeUtil": undefined;
|
|
447
523
|
|
|
524
|
+
"sap/ui/mdc/util/TypeUtilFactory": undefined;
|
|
525
|
+
|
|
448
526
|
"sap/ui/mdc/ValueHelp": undefined;
|
|
449
527
|
|
|
450
528
|
"sap/ui/mdc/valuehelp/base/Container": undefined;
|
|
451
529
|
|
|
452
530
|
"sap/ui/mdc/valuehelp/base/Content": undefined;
|
|
453
531
|
|
|
532
|
+
"sap/ui/mdc/valuehelp/base/DefineConditionPanel": undefined;
|
|
533
|
+
|
|
454
534
|
"sap/ui/mdc/valuehelp/base/DialogTab": undefined;
|
|
455
535
|
|
|
456
536
|
"sap/ui/mdc/valuehelp/base/FilterableListContent": undefined;
|
|
@@ -463,6 +543,8 @@ declare namespace sap {
|
|
|
463
543
|
|
|
464
544
|
"sap/ui/mdc/valuehelp/content/FixedList": undefined;
|
|
465
545
|
|
|
546
|
+
"sap/ui/mdc/valuehelp/content/FixedListItem": undefined;
|
|
547
|
+
|
|
466
548
|
"sap/ui/mdc/valuehelp/content/MDCTable": undefined;
|
|
467
549
|
|
|
468
550
|
"sap/ui/mdc/valuehelp/content/MTable": undefined;
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.114.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -3133,6 +3133,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3133
3133
|
|
|
3134
3134
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
3135
3135
|
|
|
3136
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3137
|
+
|
|
3136
3138
|
/**
|
|
3137
3139
|
* @SINCE 1.64
|
|
3138
3140
|
* @EXPERIMENTAL (since 1.64)
|
|
@@ -3261,9 +3263,41 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3261
3263
|
*/
|
|
3262
3264
|
mParameters?: object
|
|
3263
3265
|
): this;
|
|
3266
|
+
/**
|
|
3267
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
3268
|
+
*
|
|
3269
|
+
* Indicates whether this plugin is enabled.
|
|
3270
|
+
*
|
|
3271
|
+
* Default value is `true`.
|
|
3272
|
+
*
|
|
3273
|
+
* @returns Value of property `enabled`
|
|
3274
|
+
*/
|
|
3275
|
+
getEnabled(): boolean;
|
|
3276
|
+
/**
|
|
3277
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
3278
|
+
*
|
|
3279
|
+
* Indicates whether this plugin is enabled.
|
|
3280
|
+
*
|
|
3281
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3282
|
+
*
|
|
3283
|
+
* Default value is `true`.
|
|
3284
|
+
*
|
|
3285
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3286
|
+
*/
|
|
3287
|
+
setEnabled(
|
|
3288
|
+
/**
|
|
3289
|
+
* New value for property `enabled`
|
|
3290
|
+
*/
|
|
3291
|
+
bEnabled?: boolean
|
|
3292
|
+
): this;
|
|
3264
3293
|
}
|
|
3265
3294
|
|
|
3266
3295
|
export interface $SelectionPluginSettings extends $ElementSettings {
|
|
3296
|
+
/**
|
|
3297
|
+
* Indicates whether this plugin is enabled.
|
|
3298
|
+
*/
|
|
3299
|
+
enabled?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3300
|
+
|
|
3267
3301
|
/**
|
|
3268
3302
|
* This event is fired when the selection is changed.
|
|
3269
3303
|
*/
|