@openui5/ts-types 1.100.0 → 1.101.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 +236 -25
- package/types/sap.m.d.ts +209 -38
- 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 +73 -27
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +9 -1
- 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 +10 -6
- package/types/sap.ui.table.d.ts +11 -34
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +11 -11
- package/types/sap.ui.webc.main.d.ts +176 -66
- package/types/sap.uxap.d.ts +2 -2
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.
|
|
267
|
+
// For Library Version: 1.101.0
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -11113,7 +11113,6 @@ declare namespace sap {
|
|
|
11113
11113
|
*
|
|
11114
11114
|
* Provides the base class for all drag-and-drop configurations. This feature enables a native HTML5 drag-and-drop
|
|
11115
11115
|
* API for the controls, therefore it is limited to browser support. Restrictions:
|
|
11116
|
-
* - There is no mobile device that supports drag and drop.
|
|
11117
11116
|
* - There is no accessible alternative for drag and drop. Applications which use the drag-and-drop functionality
|
|
11118
11117
|
* must provide an accessible alternative UI (for example, action buttons or menus) to perform the same
|
|
11119
11118
|
* operations.
|
|
@@ -12459,13 +12458,20 @@ declare namespace sap {
|
|
|
12459
12458
|
*/
|
|
12460
12459
|
pattern?: string;
|
|
12461
12460
|
/**
|
|
12462
|
-
* Specifies the
|
|
12463
|
-
*
|
|
12464
|
-
* - "Hide": display only datetime
|
|
12465
|
-
* - "Only": display only timezone It is ignored for formatting when an options pattern or a format
|
|
12466
|
-
* are supplied.
|
|
12461
|
+
* Specifies if the date should be displayed. It is ignored for formatting when an options pattern or a
|
|
12462
|
+
* format are supplied.
|
|
12467
12463
|
*/
|
|
12468
|
-
|
|
12464
|
+
showDate?: boolean;
|
|
12465
|
+
/**
|
|
12466
|
+
* Specifies if the time should be displayed. It is ignored for formatting when an options pattern or a
|
|
12467
|
+
* format are supplied.
|
|
12468
|
+
*/
|
|
12469
|
+
showTime?: boolean;
|
|
12470
|
+
/**
|
|
12471
|
+
* Specifies if the timezone should be displayed. It is ignored for formatting when an options pattern or
|
|
12472
|
+
* a format are supplied.
|
|
12473
|
+
*/
|
|
12474
|
+
showTimezone?: boolean;
|
|
12469
12475
|
/**
|
|
12470
12476
|
* Can be either 'short, 'medium', 'long' or 'full'. For datetime you can also define mixed styles, separated
|
|
12471
12477
|
* with a slash, where the first part is the date style and the second part is the time style (e.g. "medium/short").
|
|
@@ -12490,7 +12496,8 @@ declare namespace sap {
|
|
|
12490
12496
|
*/
|
|
12491
12497
|
relativeRange?: int[];
|
|
12492
12498
|
/**
|
|
12493
|
-
* If 'auto' is set, a new relative time format is switched on for all Date/Time instances.
|
|
12499
|
+
* If 'auto' is set, a new relative time format is switched on for all Date/Time instances. The default
|
|
12500
|
+
* value depends on `showDate` and `showTime` options.
|
|
12494
12501
|
*/
|
|
12495
12502
|
relativeScale?: string;
|
|
12496
12503
|
/**
|
|
@@ -13622,6 +13629,8 @@ declare namespace sap {
|
|
|
13622
13629
|
}
|
|
13623
13630
|
/**
|
|
13624
13631
|
* @SINCE 1.99.0
|
|
13632
|
+
* @deprecated (since 1.101) - replaced by `DateFormat#getDateTimeWithTimezoneInstance` with the `showDate`,
|
|
13633
|
+
* `showTime` and `showTimezone` format options.
|
|
13625
13634
|
*
|
|
13626
13635
|
* Configuration options for the `showTimezone` format option of `DateFormat#getDateTimeWithTimezoneInstance`.
|
|
13627
13636
|
*/
|
|
@@ -25148,7 +25157,7 @@ declare namespace sap {
|
|
|
25148
25157
|
* the settings object for the component
|
|
25149
25158
|
*/
|
|
25150
25159
|
mSettings?: object
|
|
25151
|
-
): sap.ui.core.Component
|
|
25160
|
+
): sap.ui.core.Component | Promise<sap.ui.core.Component>;
|
|
25152
25161
|
/**
|
|
25153
25162
|
* Returns a new instance of the RenderManager for exclusive use by the caller.
|
|
25154
25163
|
*
|
|
@@ -25539,8 +25548,10 @@ declare namespace sap {
|
|
|
25539
25548
|
): sap.ui.model.Model;
|
|
25540
25549
|
/**
|
|
25541
25550
|
* @deprecated (since 0.15.0) - Replaced by `createRenderManager()`
|
|
25551
|
+
*
|
|
25552
|
+
* Creates a new `RenderManager` instance for use by the caller.
|
|
25542
25553
|
*/
|
|
25543
|
-
getRenderManager():
|
|
25554
|
+
getRenderManager(): sap.ui.core.RenderManager;
|
|
25544
25555
|
/**
|
|
25545
25556
|
* @deprecated (since 1.95) - Please use {@link module:sap/ui/core/ComponentSupport} instead. See also {@link
|
|
25546
25557
|
* topic:82a0fcecc3cb427c91469bc537ebdddf Declarative API for Initial Components}.
|
|
@@ -25701,7 +25712,7 @@ declare namespace sap {
|
|
|
25701
25712
|
*/
|
|
25702
25713
|
extensions?: object;
|
|
25703
25714
|
}
|
|
25704
|
-
):
|
|
25715
|
+
): object | undefined;
|
|
25705
25716
|
/**
|
|
25706
25717
|
* Returns true if the Core has already been initialized. This means that instances of RenderManager etc.
|
|
25707
25718
|
* do already exist and the init event has already been fired (and will not be fired again).
|
|
@@ -25716,9 +25727,14 @@ declare namespace sap {
|
|
|
25716
25727
|
*/
|
|
25717
25728
|
isMobile(): boolean;
|
|
25718
25729
|
/**
|
|
25719
|
-
*
|
|
25730
|
+
* Checks whether the given DOM element is the root of the static area.
|
|
25720
25731
|
*/
|
|
25721
|
-
isStaticAreaRef(
|
|
25732
|
+
isStaticAreaRef(
|
|
25733
|
+
/**
|
|
25734
|
+
* DOM element to check
|
|
25735
|
+
*/
|
|
25736
|
+
oDomRef: /* was Element */ global_Element
|
|
25737
|
+
): boolean;
|
|
25722
25738
|
/**
|
|
25723
25739
|
* Returns true, if the styles of the current theme are already applied, false otherwise.
|
|
25724
25740
|
*
|
|
@@ -41965,10 +41981,10 @@ declare namespace sap {
|
|
|
41965
41981
|
/**
|
|
41966
41982
|
* Gets an array of indices that determine which parts of this type shall not propagate their model messages
|
|
41967
41983
|
* to the attached control. Prerequisite is that the corresponding binding supports this feature, see {@link
|
|
41968
|
-
* sap.ui.model.Binding#supportsIgnoreMessages}. If the `showTimezone` format option is set to `
|
|
41969
|
-
*
|
|
41970
|
-
* to the control. Analogously, if the format option `
|
|
41971
|
-
* the date and time are not shown in the control and the parts for the date and time shall not propagate
|
|
41984
|
+
* sap.ui.model.Binding#supportsIgnoreMessages}. If the `showTimezone` format option is set to `false`,
|
|
41985
|
+
* the time zone is not shown in the control, and the part for the time zone shall not propagate model messages
|
|
41986
|
+
* to the control. Analogously, if the format option `showDate` and `showTime` are both set to `false`,
|
|
41987
|
+
* the date and time are not shown in the control, and the parts for the date and time shall not propagate
|
|
41972
41988
|
* model messages to the control.
|
|
41973
41989
|
* See:
|
|
41974
41990
|
* sap.ui.model.Binding#supportsIgnoreMessages
|
|
@@ -43766,6 +43782,32 @@ declare namespace sap {
|
|
|
43766
43782
|
* and the entity for this context has been stored in the back end, {@link #created} returns `undefined`.
|
|
43767
43783
|
*/
|
|
43768
43784
|
created(): Promise<any>;
|
|
43785
|
+
/**
|
|
43786
|
+
* @SINCE 1.101
|
|
43787
|
+
*
|
|
43788
|
+
* Deletes the OData entity this context points to. **Note:** The context must not be used anymore after
|
|
43789
|
+
* successful deletion.
|
|
43790
|
+
*/
|
|
43791
|
+
delete(
|
|
43792
|
+
/**
|
|
43793
|
+
* For a persistent context, a map of parameters as specified for {@link sap.ui.model.odata.v2.ODataModel#remove}
|
|
43794
|
+
*/
|
|
43795
|
+
mParameters?: {
|
|
43796
|
+
/**
|
|
43797
|
+
* ID of a request group; requests belonging to the same group will be bundled in one batch request
|
|
43798
|
+
*/
|
|
43799
|
+
groupId?: string;
|
|
43800
|
+
/**
|
|
43801
|
+
* ID of the `ChangeSet` that this request should belong to
|
|
43802
|
+
*/
|
|
43803
|
+
changeSetId?: string;
|
|
43804
|
+
/**
|
|
43805
|
+
* Defines whether to update all bindings after submitting this change operation, see {@link #setRefreshAfterChange}.
|
|
43806
|
+
* If given, this overrules the model-wide `refreshAfterChange` flag for this operation only.
|
|
43807
|
+
*/
|
|
43808
|
+
refreshAfterChange?: boolean;
|
|
43809
|
+
}
|
|
43810
|
+
): Promise<any>;
|
|
43769
43811
|
/**
|
|
43770
43812
|
* @SINCE 1.98.0
|
|
43771
43813
|
*
|
|
@@ -44529,7 +44571,8 @@ declare namespace sap {
|
|
|
44529
44571
|
error?: Function;
|
|
44530
44572
|
/**
|
|
44531
44573
|
* A comma-separated list of navigation properties to be expanded for the newly created entity; see {@link
|
|
44532
|
-
* sap.ui.model.odata.v2.ODataModel#createEntry}
|
|
44574
|
+
* sap.ui.model.odata.v2.ODataModel#createEntry}; **Note:** if no expand parameter is given, the expand
|
|
44575
|
+
* parameter of this binding is used; see {@link sap.ui.model.odata.v2.ODataModel#bindList}
|
|
44533
44576
|
*/
|
|
44534
44577
|
expand?: string;
|
|
44535
44578
|
/**
|
|
@@ -44577,7 +44620,8 @@ declare namespace sap {
|
|
|
44577
44620
|
error?: Function;
|
|
44578
44621
|
/**
|
|
44579
44622
|
* A comma-separated list of navigation properties to be expanded for the newly created entity; see {@link
|
|
44580
|
-
* sap.ui.model.odata.v2.ODataModel#createEntry}
|
|
44623
|
+
* sap.ui.model.odata.v2.ODataModel#createEntry}; **Note:** if no expand parameter is given, the expand
|
|
44624
|
+
* parameter of this binding is used; see {@link sap.ui.model.odata.v2.ODataModel#bindList}
|
|
44581
44625
|
*/
|
|
44582
44626
|
expand?: string;
|
|
44583
44627
|
/**
|
|
@@ -44628,7 +44672,8 @@ declare namespace sap {
|
|
|
44628
44672
|
error?: Function;
|
|
44629
44673
|
/**
|
|
44630
44674
|
* A comma-separated list of navigation properties to be expanded for the newly created entity; see {@link
|
|
44631
|
-
* sap.ui.model.odata.v2.ODataModel#createEntry}
|
|
44675
|
+
* sap.ui.model.odata.v2.ODataModel#createEntry}; **Note:** if no expand parameter is given, the expand
|
|
44676
|
+
* parameter of this binding is used; see {@link sap.ui.model.odata.v2.ODataModel#bindList}
|
|
44632
44677
|
*/
|
|
44633
44678
|
expand?: string;
|
|
44634
44679
|
/**
|
|
@@ -44672,7 +44717,8 @@ declare namespace sap {
|
|
|
44672
44717
|
error?: Function;
|
|
44673
44718
|
/**
|
|
44674
44719
|
* A comma-separated list of navigation properties to be expanded for the newly created entity; see {@link
|
|
44675
|
-
* sap.ui.model.odata.v2.ODataModel#createEntry}
|
|
44720
|
+
* sap.ui.model.odata.v2.ODataModel#createEntry}; **Note:** if no expand parameter is given, the expand
|
|
44721
|
+
* parameter of this binding is used; see {@link sap.ui.model.odata.v2.ODataModel#bindList}
|
|
44676
44722
|
*/
|
|
44677
44723
|
expand?: string;
|
|
44678
44724
|
/**
|
|
@@ -48088,8 +48134,8 @@ declare namespace sap {
|
|
|
48088
48134
|
*
|
|
48089
48135
|
* Returns a promise that is resolved without data when the entity represented by this context has been
|
|
48090
48136
|
* created in the back end and all selected properties of this entity are available. Expanded navigation
|
|
48091
|
-
* properties are only available if the context's binding is refreshable. {@link sap.ui.model.odata.v4.
|
|
48092
|
-
*
|
|
48137
|
+
* properties are only available if the context's binding is refreshable. {@link sap.ui.model.odata.v4.ODataContextBinding#refresh}
|
|
48138
|
+
* and {@link sap.ui.model.odata.v4.ODataListBinding#refresh} describe which bindings are refreshable.
|
|
48093
48139
|
*
|
|
48094
48140
|
* As long as the promise is not yet resolved or rejected, the entity represented by this context is transient.
|
|
48095
48141
|
*
|
|
@@ -48173,7 +48219,7 @@ declare namespace sap {
|
|
|
48173
48219
|
* is added via {@link sap.ui.model.odata.v4.ODataListBinding#create} without `bAtEnd`, and when a context
|
|
48174
48220
|
* representing a created entity is deleted again.
|
|
48175
48221
|
*/
|
|
48176
|
-
getIndex(): number;
|
|
48222
|
+
getIndex(): number | undefined;
|
|
48177
48223
|
/**
|
|
48178
48224
|
* @SINCE 1.39.0
|
|
48179
48225
|
*
|
|
@@ -49446,7 +49492,7 @@ declare namespace sap {
|
|
|
49446
49492
|
* {@link #getGroupId group ID} is used. Supported since 1.100.0
|
|
49447
49493
|
*/
|
|
49448
49494
|
sGroupId?: string
|
|
49449
|
-
): sap.ui.model.odata.v4.Context
|
|
49495
|
+
): sap.ui.model.odata.v4.Context;
|
|
49450
49496
|
/**
|
|
49451
49497
|
* @SINCE 1.37.0
|
|
49452
49498
|
*
|
|
@@ -51081,7 +51127,7 @@ declare namespace sap {
|
|
|
51081
51127
|
*/
|
|
51082
51128
|
$$updateGroupId?: string;
|
|
51083
51129
|
}
|
|
51084
|
-
): sap.ui.model.odata.v4.Context
|
|
51130
|
+
): sap.ui.model.odata.v4.Context;
|
|
51085
51131
|
/**
|
|
51086
51132
|
* @SINCE 1.85.0
|
|
51087
51133
|
*
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
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.101.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -52,6 +52,8 @@ declare namespace sap {
|
|
|
52
52
|
|
|
53
53
|
"sap/ui/mdc/enum/PersistenceMode": undefined;
|
|
54
54
|
|
|
55
|
+
"sap/ui/mdc/enum/PropagationReason": undefined;
|
|
56
|
+
|
|
55
57
|
"sap/ui/mdc/enum/SelectType": undefined;
|
|
56
58
|
|
|
57
59
|
"sap/ui/mdc/Field": undefined;
|
|
@@ -118,6 +120,10 @@ declare namespace sap {
|
|
|
118
120
|
|
|
119
121
|
"sap/ui/mdc/FilterBar": undefined;
|
|
120
122
|
|
|
123
|
+
"sap/ui/mdc/filterbar/aligned/FilterContainer": undefined;
|
|
124
|
+
|
|
125
|
+
"sap/ui/mdc/filterbar/aligned/FilterItemLayout": undefined;
|
|
126
|
+
|
|
121
127
|
"sap/ui/mdc/filterbar/FilterBarBase": undefined;
|
|
122
128
|
|
|
123
129
|
"sap/ui/mdc/filterbar/vh/CollectiveSearchSelect": undefined;
|
|
@@ -154,6 +160,8 @@ declare namespace sap {
|
|
|
154
160
|
|
|
155
161
|
"sap/ui/mdc/odata/v4/TableDelegate": undefined;
|
|
156
162
|
|
|
163
|
+
"sap/ui/mdc/odata/v4/ValueHelpDelegate": undefined;
|
|
164
|
+
|
|
157
165
|
"sap/ui/mdc/p13n/AdaptationProvider": undefined;
|
|
158
166
|
|
|
159
167
|
"sap/ui/mdc/p13n/Engine": 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.101.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -232,7 +232,7 @@ declare namespace sap {
|
|
|
232
232
|
static getType(): string;
|
|
233
233
|
}
|
|
234
234
|
/**
|
|
235
|
-
* @SINCE 1.
|
|
235
|
+
* @SINCE 1.50
|
|
236
236
|
*
|
|
237
237
|
* Defines the Audiences.
|
|
238
238
|
*/
|
|
@@ -251,7 +251,7 @@ declare namespace sap {
|
|
|
251
251
|
Internal = "Internal",
|
|
252
252
|
}
|
|
253
253
|
/**
|
|
254
|
-
* @SINCE 1.
|
|
254
|
+
* @SINCE 1.50
|
|
255
255
|
*
|
|
256
256
|
* Issue Categories.
|
|
257
257
|
*/
|
|
@@ -273,6 +273,8 @@ declare namespace sap {
|
|
|
273
273
|
*/
|
|
274
274
|
DataModel = "DataModel",
|
|
275
275
|
/**
|
|
276
|
+
* @SINCE 1.58
|
|
277
|
+
*
|
|
276
278
|
* Fiori Guidelines issue category.
|
|
277
279
|
*/
|
|
278
280
|
FioriGuidelines = "FioriGuidelines",
|
|
@@ -285,6 +287,8 @@ declare namespace sap {
|
|
|
285
287
|
*/
|
|
286
288
|
Memory = "Memory",
|
|
287
289
|
/**
|
|
290
|
+
* @SINCE 1.60
|
|
291
|
+
*
|
|
288
292
|
* Modularization issue category.
|
|
289
293
|
*/
|
|
290
294
|
Modularization = "Modularization",
|
|
@@ -306,7 +310,7 @@ declare namespace sap {
|
|
|
306
310
|
Usage = "Usage",
|
|
307
311
|
}
|
|
308
312
|
/**
|
|
309
|
-
* @SINCE 1.
|
|
313
|
+
* @SINCE 1.58
|
|
310
314
|
*
|
|
311
315
|
* Analysis history formats.
|
|
312
316
|
*/
|
|
@@ -321,7 +325,7 @@ declare namespace sap {
|
|
|
321
325
|
String = "String",
|
|
322
326
|
}
|
|
323
327
|
/**
|
|
324
|
-
* @SINCE 1.
|
|
328
|
+
* @SINCE 1.50
|
|
325
329
|
*
|
|
326
330
|
* Defines severity types.
|
|
327
331
|
*/
|
|
@@ -340,7 +344,7 @@ declare namespace sap {
|
|
|
340
344
|
Medium = "Medium",
|
|
341
345
|
}
|
|
342
346
|
/**
|
|
343
|
-
* @SINCE 1.
|
|
347
|
+
* @SINCE 1.60
|
|
344
348
|
*
|
|
345
349
|
* Contains the available system presets.
|
|
346
350
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.101.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -1147,11 +1147,11 @@ declare namespace sap {
|
|
|
1147
1147
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1148
1148
|
|
|
1149
1149
|
/**
|
|
1150
|
-
*
|
|
1151
|
-
* smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount`
|
|
1152
|
-
* 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
|
|
1153
|
-
* is lower than the
|
|
1154
|
-
* is
|
|
1150
|
+
* Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
|
|
1151
|
+
* enable smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount`
|
|
1152
|
+
* is 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
|
|
1153
|
+
* is lower than the number of rows in the scrollable area (`visibleRowCount` minus number of fixed rows),
|
|
1154
|
+
* this number is used as the `threshold`. If the value is 0, thresholding is disabled.
|
|
1155
1155
|
*/
|
|
1156
1156
|
threshold?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1157
1157
|
|
|
@@ -1819,16 +1819,6 @@ declare namespace sap {
|
|
|
1819
1819
|
* Default value is `false`.
|
|
1820
1820
|
*/
|
|
1821
1821
|
getSummed(): boolean;
|
|
1822
|
-
/**
|
|
1823
|
-
* Returns the information whether the column is groupable.
|
|
1824
|
-
*
|
|
1825
|
-
* The column is groupable only if the following conditions are fulfilled:
|
|
1826
|
-
* - The column must be child of an `AnalyticalTable`.
|
|
1827
|
-
* - The `rows` aggregation of the table must be bound.
|
|
1828
|
-
* - The metadata of the model must be loaded.
|
|
1829
|
-
* - The column's `leadingProperty` must be a sortable and filterable dimension.
|
|
1830
|
-
*/
|
|
1831
|
-
isGroupable(): boolean;
|
|
1832
1822
|
/**
|
|
1833
1823
|
* Sets a new value for property {@link #getGroupHeaderFormatter groupHeaderFormatter}.
|
|
1834
1824
|
*
|
|
@@ -3591,13 +3581,6 @@ declare namespace sap {
|
|
|
3591
3581
|
* scroll position of the table and also takes fixed rows and fixed bottom rows into account.
|
|
3592
3582
|
*/
|
|
3593
3583
|
getIndex(): int;
|
|
3594
|
-
/**
|
|
3595
|
-
* Returns the related `RowAction` of the row.
|
|
3596
|
-
*
|
|
3597
|
-
* This function must only be used for application testing purposes. The `RowAction` is generated based
|
|
3598
|
-
* on a template. Manipulations of the object or its items are not supported.
|
|
3599
|
-
*/
|
|
3600
|
-
getRowAction(): sap.ui.table.RowAction;
|
|
3601
3584
|
/**
|
|
3602
3585
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getCells cells}. and returns
|
|
3603
3586
|
* its index if found or -1 otherwise.
|
|
@@ -5924,12 +5907,6 @@ declare namespace sap {
|
|
|
5924
5907
|
* Columns of the Table
|
|
5925
5908
|
*/
|
|
5926
5909
|
getColumns(): sap.ui.table.Column[];
|
|
5927
|
-
/**
|
|
5928
|
-
* In contrast to the function `getFixedColumnCount` which returns the value of the property `fixedColumnCount`,
|
|
5929
|
-
* this function returns the actual fixed column count computed based on the column spans of the header,
|
|
5930
|
-
* the width of the table and the width of the columns.
|
|
5931
|
-
*/
|
|
5932
|
-
getComputedFixedColumnCount(): int;
|
|
5933
5910
|
/**
|
|
5934
5911
|
* Returns the context of a row by its index. Please note that for server-based models like OData, the supplied
|
|
5935
5912
|
* index might not have been loaded yet. If the context is not available at the client, the binding will
|
|
@@ -6322,11 +6299,11 @@ declare namespace sap {
|
|
|
6322
6299
|
/**
|
|
6323
6300
|
* Gets current value of property {@link #getThreshold threshold}.
|
|
6324
6301
|
*
|
|
6325
|
-
*
|
|
6326
|
-
* smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount`
|
|
6327
|
-
* 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
|
|
6328
|
-
* is lower than the
|
|
6329
|
-
* is
|
|
6302
|
+
* Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
|
|
6303
|
+
* enable smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount`
|
|
6304
|
+
* is 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
|
|
6305
|
+
* is lower than the number of rows in the scrollable area (`visibleRowCount` minus number of fixed rows),
|
|
6306
|
+
* this number is used as the `threshold`. If the value is 0, thresholding is disabled.
|
|
6330
6307
|
*
|
|
6331
6308
|
* Default value is `100`.
|
|
6332
6309
|
*/
|
package/types/sap.ui.ux3.d.ts
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.101.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
5
|
+
/**
|
|
6
|
+
* @SINCE 1.92.0
|
|
7
|
+
* @EXPERIMENTAL (since 1.92.0)
|
|
8
|
+
*
|
|
9
|
+
* Namespace for UI5 Web Components Retrofit libraries
|
|
10
|
+
*/
|
|
5
11
|
namespace webc {
|
|
6
12
|
/**
|
|
7
13
|
* @SINCE 1.92.0
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.101.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -1967,7 +1967,7 @@ declare namespace sap {
|
|
|
1967
1967
|
/**
|
|
1968
1968
|
* New value for property `width`
|
|
1969
1969
|
*/
|
|
1970
|
-
sWidth
|
|
1970
|
+
sWidth: sap.ui.core.CSSSize
|
|
1971
1971
|
): this;
|
|
1972
1972
|
}
|
|
1973
1973
|
/**
|
|
@@ -3379,7 +3379,7 @@ declare namespace sap {
|
|
|
3379
3379
|
/**
|
|
3380
3380
|
* New value for property `height`
|
|
3381
3381
|
*/
|
|
3382
|
-
sHeight
|
|
3382
|
+
sHeight: sap.ui.core.CSSSize
|
|
3383
3383
|
): this;
|
|
3384
3384
|
/**
|
|
3385
3385
|
* Sets a new value for property {@link #getHideArrows hideArrows}.
|
|
@@ -3457,7 +3457,7 @@ declare namespace sap {
|
|
|
3457
3457
|
/**
|
|
3458
3458
|
* New value for property `width`
|
|
3459
3459
|
*/
|
|
3460
|
-
sWidth
|
|
3460
|
+
sWidth: sap.ui.core.CSSSize
|
|
3461
3461
|
): this;
|
|
3462
3462
|
}
|
|
3463
3463
|
/**
|
|
@@ -5931,7 +5931,7 @@ declare namespace sap {
|
|
|
5931
5931
|
/**
|
|
5932
5932
|
* New value for property `height`
|
|
5933
5933
|
*/
|
|
5934
|
-
sHeight
|
|
5934
|
+
sHeight: sap.ui.core.CSSSize
|
|
5935
5935
|
): this;
|
|
5936
5936
|
/**
|
|
5937
5937
|
* Sets a new value for property {@link #getHideFooter hideFooter}.
|
|
@@ -5959,7 +5959,7 @@ declare namespace sap {
|
|
|
5959
5959
|
/**
|
|
5960
5960
|
* New value for property `width`
|
|
5961
5961
|
*/
|
|
5962
|
-
sWidth
|
|
5962
|
+
sWidth: sap.ui.core.CSSSize
|
|
5963
5963
|
): this;
|
|
5964
5964
|
}
|
|
5965
5965
|
/**
|
|
@@ -8617,7 +8617,7 @@ declare namespace sap {
|
|
|
8617
8617
|
/**
|
|
8618
8618
|
* New value for property `height`
|
|
8619
8619
|
*/
|
|
8620
|
-
sHeight
|
|
8620
|
+
sHeight: sap.ui.core.CSSSize
|
|
8621
8621
|
): this;
|
|
8622
8622
|
/**
|
|
8623
8623
|
* Sets a new value for property {@link #getLayout layout}.
|
|
@@ -8651,7 +8651,7 @@ declare namespace sap {
|
|
|
8651
8651
|
/**
|
|
8652
8652
|
* New value for property `width`
|
|
8653
8653
|
*/
|
|
8654
|
-
sWidth
|
|
8654
|
+
sWidth: sap.ui.core.CSSSize
|
|
8655
8655
|
): this;
|
|
8656
8656
|
}
|
|
8657
8657
|
/**
|
|
@@ -9483,7 +9483,7 @@ declare namespace sap {
|
|
|
9483
9483
|
/**
|
|
9484
9484
|
* New value for property `height`
|
|
9485
9485
|
*/
|
|
9486
|
-
sHeight
|
|
9486
|
+
sHeight: sap.ui.core.CSSSize
|
|
9487
9487
|
): this;
|
|
9488
9488
|
/**
|
|
9489
9489
|
* Sets a new value for property {@link #getHideDragOverlay hideDragOverlay}.
|
|
@@ -9568,7 +9568,7 @@ declare namespace sap {
|
|
|
9568
9568
|
/**
|
|
9569
9569
|
* New value for property `width`
|
|
9570
9570
|
*/
|
|
9571
|
-
sWidth
|
|
9571
|
+
sWidth: sap.ui.core.CSSSize
|
|
9572
9572
|
): this;
|
|
9573
9573
|
}
|
|
9574
9574
|
/**
|
|
@@ -10874,7 +10874,7 @@ declare namespace sap {
|
|
|
10874
10874
|
/**
|
|
10875
10875
|
* New value for property `height`
|
|
10876
10876
|
*/
|
|
10877
|
-
sHeight
|
|
10877
|
+
sHeight: sap.ui.core.CSSSize
|
|
10878
10878
|
): this;
|
|
10879
10879
|
}
|
|
10880
10880
|
/**
|