@openui5/ts-types-esm 1.111.2 → 1.112.2
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 +1 -1
- package/types/sap.m.d.ts +81 -8
- 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 +75 -33
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -1
- package/types/sap.ui.integration.d.ts +121 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +3 -5
- 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 +28 -22
- 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 +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +14 -17
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.112.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -14575,7 +14575,6 @@ declare module "sap/m/ComboBoxBase" {
|
|
|
14575
14575
|
): this;
|
|
14576
14576
|
/**
|
|
14577
14577
|
* @SINCE 1.64
|
|
14578
|
-
* @EXPERIMENTAL (since 1.64)
|
|
14579
14578
|
*
|
|
14580
14579
|
* Opens the `SuggestionsPopover` with the available items.
|
|
14581
14580
|
*/
|
|
@@ -19077,6 +19076,8 @@ declare module "sap/m/Dialog" {
|
|
|
19077
19076
|
*/
|
|
19078
19077
|
destroyEndButton(): this;
|
|
19079
19078
|
/**
|
|
19079
|
+
* @SINCE 1.110
|
|
19080
|
+
*
|
|
19080
19081
|
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
19081
19082
|
*
|
|
19082
19083
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -19357,6 +19358,8 @@ declare module "sap/m/Dialog" {
|
|
|
19357
19358
|
}) => void)
|
|
19358
19359
|
| null;
|
|
19359
19360
|
/**
|
|
19361
|
+
* @SINCE 1.110
|
|
19362
|
+
*
|
|
19360
19363
|
* Gets content of aggregation {@link #getFooter footer}.
|
|
19361
19364
|
*
|
|
19362
19365
|
* The footer of this dialog. It is always located at the bottom of the dialog. The footer aggregation can
|
|
@@ -19839,6 +19842,8 @@ declare module "sap/m/Dialog" {
|
|
|
19839
19842
|
}) => void
|
|
19840
19843
|
): this;
|
|
19841
19844
|
/**
|
|
19845
|
+
* @SINCE 1.110
|
|
19846
|
+
*
|
|
19842
19847
|
* Sets the aggregated {@link #getFooter footer}.
|
|
19843
19848
|
*
|
|
19844
19849
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -20348,6 +20353,8 @@ declare module "sap/m/Dialog" {
|
|
|
20348
20353
|
buttons?: Button[] | Button | AggregationBindingInfo | `{${string}}`;
|
|
20349
20354
|
|
|
20350
20355
|
/**
|
|
20356
|
+
* @SINCE 1.110
|
|
20357
|
+
*
|
|
20351
20358
|
* The footer of this dialog. It is always located at the bottom of the dialog. The footer aggregation can
|
|
20352
20359
|
* not be used together with the buttons aggregation.
|
|
20353
20360
|
*/
|
|
@@ -34360,7 +34367,7 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
34360
34367
|
|
|
34361
34368
|
import Button from "sap/m/Button";
|
|
34362
34369
|
|
|
34363
|
-
import { ID } from "sap/ui/core/library";
|
|
34370
|
+
import { ID, TitleLevel } from "sap/ui/core/library";
|
|
34364
34371
|
|
|
34365
34372
|
import IllustratedMessageSize from "sap/m/IllustratedMessageSize";
|
|
34366
34373
|
|
|
@@ -34526,6 +34533,20 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
34526
34533
|
* **Note:** Not displayed when `illustrationSize` is set to `Base`.
|
|
34527
34534
|
*/
|
|
34528
34535
|
getAdditionalContent(): Button[];
|
|
34536
|
+
/**
|
|
34537
|
+
* @SINCE 1.111
|
|
34538
|
+
*
|
|
34539
|
+
* Gets current value of property {@link #getAriaTitleLevel ariaTitleLevel}.
|
|
34540
|
+
*
|
|
34541
|
+
* Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
|
|
34542
|
+
*
|
|
34543
|
+
* **Note:** Used for accessibility purposes only.
|
|
34544
|
+
*
|
|
34545
|
+
* Default value is `Auto`.
|
|
34546
|
+
*
|
|
34547
|
+
* @returns Value of property `ariaTitleLevel`
|
|
34548
|
+
*/
|
|
34549
|
+
getAriaTitleLevel(): TitleLevel | keyof typeof TitleLevel;
|
|
34529
34550
|
/**
|
|
34530
34551
|
* @SINCE 1.98
|
|
34531
34552
|
*
|
|
@@ -34721,6 +34742,27 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
34721
34742
|
*/
|
|
34722
34743
|
vIllustrationAriaLabelledBy: int | ID | Control
|
|
34723
34744
|
): ID | null;
|
|
34745
|
+
/**
|
|
34746
|
+
* @SINCE 1.111
|
|
34747
|
+
*
|
|
34748
|
+
* Sets a new value for property {@link #getAriaTitleLevel ariaTitleLevel}.
|
|
34749
|
+
*
|
|
34750
|
+
* Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
|
|
34751
|
+
*
|
|
34752
|
+
* **Note:** Used for accessibility purposes only.
|
|
34753
|
+
*
|
|
34754
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
34755
|
+
*
|
|
34756
|
+
* Default value is `Auto`.
|
|
34757
|
+
*
|
|
34758
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
34759
|
+
*/
|
|
34760
|
+
setAriaTitleLevel(
|
|
34761
|
+
/**
|
|
34762
|
+
* New value for property `ariaTitleLevel`
|
|
34763
|
+
*/
|
|
34764
|
+
sAriaTitleLevel?: TitleLevel | keyof typeof TitleLevel
|
|
34765
|
+
): this;
|
|
34724
34766
|
/**
|
|
34725
34767
|
* @SINCE 1.98
|
|
34726
34768
|
*
|
|
@@ -34938,6 +34980,18 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
34938
34980
|
*/
|
|
34939
34981
|
title?: string | PropertyBindingInfo;
|
|
34940
34982
|
|
|
34983
|
+
/**
|
|
34984
|
+
* @SINCE 1.111
|
|
34985
|
+
*
|
|
34986
|
+
* Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
|
|
34987
|
+
*
|
|
34988
|
+
* **Note:** Used for accessibility purposes only.
|
|
34989
|
+
*/
|
|
34990
|
+
ariaTitleLevel?:
|
|
34991
|
+
| (TitleLevel | keyof typeof TitleLevel)
|
|
34992
|
+
| PropertyBindingInfo
|
|
34993
|
+
| `{${string}}`;
|
|
34994
|
+
|
|
34941
34995
|
/**
|
|
34942
34996
|
* @SINCE 1.98
|
|
34943
34997
|
*
|
|
@@ -38775,15 +38829,27 @@ declare module "sap/m/Input" {
|
|
|
38775
38829
|
bShowSuggestion?: boolean
|
|
38776
38830
|
): this;
|
|
38777
38831
|
/**
|
|
38778
|
-
*
|
|
38832
|
+
* @SINCE 1.22.1
|
|
38779
38833
|
*
|
|
38780
|
-
*
|
|
38834
|
+
* Sets a new value for property {@link #getShowTableSuggestionValueHelp showTableSuggestionValueHelp}.
|
|
38835
|
+
*
|
|
38836
|
+
* For tabular suggestions, this flag will show/hide the button at the end of the suggestion table that
|
|
38837
|
+
* triggers the event "valueHelpRequest" when pressed. The default value is true.
|
|
38838
|
+
*
|
|
38839
|
+
* **Note:** If suggestions are not tabular or no suggestions are used, the button will not be displayed
|
|
38840
|
+
* and this flag is without effect.
|
|
38841
|
+
*
|
|
38842
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
38843
|
+
*
|
|
38844
|
+
* Default value is `true`.
|
|
38845
|
+
*
|
|
38846
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
38781
38847
|
*/
|
|
38782
38848
|
setShowTableSuggestionValueHelp(
|
|
38783
38849
|
/**
|
|
38784
|
-
*
|
|
38850
|
+
* New value for property `showTableSuggestionValueHelp`
|
|
38785
38851
|
*/
|
|
38786
|
-
|
|
38852
|
+
bShowTableSuggestionValueHelp?: boolean
|
|
38787
38853
|
): this;
|
|
38788
38854
|
/**
|
|
38789
38855
|
* @SINCE 1.16
|
|
@@ -39026,7 +39092,6 @@ declare module "sap/m/Input" {
|
|
|
39026
39092
|
): boolean;
|
|
39027
39093
|
/**
|
|
39028
39094
|
* @SINCE 1.64
|
|
39029
|
-
* @EXPERIMENTAL (since 1.64)
|
|
39030
39095
|
*
|
|
39031
39096
|
* Opens the `SuggestionsPopover` with the available items. **Note:** When `valueHelpOnly` property is set
|
|
39032
39097
|
* to true, the `SuggestionsPopover` will not open.
|
|
@@ -50602,6 +50667,7 @@ declare module "sap/m/MessagePage" {
|
|
|
50602
50667
|
|
|
50603
50668
|
/**
|
|
50604
50669
|
* @SINCE 1.28
|
|
50670
|
+
* @deprecated (since 1.112) - Use the {@link sap.m.IllustratedMessage} instead.
|
|
50605
50671
|
*
|
|
50606
50672
|
* Displays an empty page with an icon and a header when certain conditions are met. Overview: MessagePage
|
|
50607
50673
|
* is displayed when there is no data or matching content. There are different use cases where a MessagePage
|
|
@@ -59151,6 +59217,13 @@ declare module "sap/m/ObjectAttribute" {
|
|
|
59151
59217
|
* **Note:** It will only allow sap.m.Text and sap.m.Link controls.
|
|
59152
59218
|
*/
|
|
59153
59219
|
getCustomContent(): Control;
|
|
59220
|
+
/**
|
|
59221
|
+
* See:
|
|
59222
|
+
* sap.ui.core.Element.prototype.getFocusDomRef
|
|
59223
|
+
*
|
|
59224
|
+
* @returns Returns the DOM Element that should get the focus or `null`
|
|
59225
|
+
*/
|
|
59226
|
+
getFocusDomRef(): Element | null;
|
|
59154
59227
|
/**
|
|
59155
59228
|
* Defines to which DOM reference the Popup should be docked.
|
|
59156
59229
|
*
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -266,7 +266,21 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
266
266
|
): jQuery;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
|
-
|
|
269
|
+
declare module "sap/ui/thirdparty/jquery" {
|
|
270
|
+
export default jQuery;
|
|
271
|
+
}
|
|
272
|
+
declare module "sap/ui/thirdparty/qunit-2" {
|
|
273
|
+
export default QUnit;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
declare namespace sap {
|
|
277
|
+
interface IUI5DefineDependencyNames {
|
|
278
|
+
"sap/ui/thirdparty/jquery": undefined;
|
|
279
|
+
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
// For Library Version: 1.112.2
|
|
270
284
|
|
|
271
285
|
declare module "sap/base/assert" {
|
|
272
286
|
/**
|
|
@@ -2536,7 +2550,8 @@ declare module "sap/ui/core/date/UI5Date" {
|
|
|
2536
2550
|
*/
|
|
2537
2551
|
getUTCSeconds(): int;
|
|
2538
2552
|
/**
|
|
2539
|
-
* @deprecated (since 1.111
|
|
2553
|
+
* @deprecated (since 1.111) - as it is deprecated in the base class JavaScript Date; use {@link #getFullYear}
|
|
2554
|
+
* instead
|
|
2540
2555
|
*
|
|
2541
2556
|
* Returns the year of this date instance minus 1900 according to the configured time zone, see `Date.prototype.getYear`.
|
|
2542
2557
|
*
|
|
@@ -2800,7 +2815,8 @@ declare module "sap/ui/core/date/UI5Date" {
|
|
|
2800
2815
|
iMilliseconds?: int
|
|
2801
2816
|
): int;
|
|
2802
2817
|
/**
|
|
2803
|
-
* @deprecated (since 1.111
|
|
2818
|
+
* @deprecated (since 1.111) - as it is deprecated in the base class JavaScript Date; use {@link #setFullYear}
|
|
2819
|
+
* instead
|
|
2804
2820
|
*
|
|
2805
2821
|
* Sets the year for this date instance plus 1900 considering the configured time zone, see `Date.prototype.setYear`.
|
|
2806
2822
|
*
|
|
@@ -9300,7 +9316,7 @@ declare module "sap/ui/base/Object" {
|
|
|
9300
9316
|
*
|
|
9301
9317
|
* @returns Whether the given object is an instance of the given type or of any of the given types
|
|
9302
9318
|
*/
|
|
9303
|
-
static isA(
|
|
9319
|
+
static isA<T extends BaseObject = BaseObject>(
|
|
9304
9320
|
/**
|
|
9305
9321
|
* Object which will be checked whether it is an instance of the given type
|
|
9306
9322
|
*/
|
|
@@ -9309,7 +9325,7 @@ declare module "sap/ui/base/Object" {
|
|
|
9309
9325
|
* Type or types to check for
|
|
9310
9326
|
*/
|
|
9311
9327
|
vTypeName: string | string[]
|
|
9312
|
-
):
|
|
9328
|
+
): oObject is T;
|
|
9313
9329
|
/**
|
|
9314
9330
|
* Destructor method for objects.
|
|
9315
9331
|
*/
|
|
@@ -9353,12 +9369,12 @@ declare module "sap/ui/base/Object" {
|
|
|
9353
9369
|
*
|
|
9354
9370
|
* @returns Whether this object is an instance of the given type or of any of the given types
|
|
9355
9371
|
*/
|
|
9356
|
-
isA(
|
|
9372
|
+
isA<T extends BaseObject = BaseObject>(
|
|
9357
9373
|
/**
|
|
9358
9374
|
* Type or types to check for
|
|
9359
9375
|
*/
|
|
9360
9376
|
vTypeName: string | string[]
|
|
9361
|
-
):
|
|
9377
|
+
): this is T;
|
|
9362
9378
|
}
|
|
9363
9379
|
/**
|
|
9364
9380
|
* The structure of the "metadata" object which is passed when inheriting from sap.ui.base.Object using
|
|
@@ -52739,7 +52755,7 @@ declare module "sap/ui/model/odata/ODataUtils" {
|
|
|
52739
52755
|
* if `true`, the string values `vValue1` and `vValue2` are compared as a decimal number (only sign, integer
|
|
52740
52756
|
* and fraction digits; no exponential format). Otherwise they are recognized by looking at their types.
|
|
52741
52757
|
*/
|
|
52742
|
-
bAsDecimal?:
|
|
52758
|
+
bAsDecimal?: boolean
|
|
52743
52759
|
): int;
|
|
52744
52760
|
/**
|
|
52745
52761
|
* Formats a JavaScript value according to the given
|
|
@@ -52821,9 +52837,9 @@ declare module "sap/ui/model/odata/ODataUtils" {
|
|
|
52821
52837
|
*/
|
|
52822
52838
|
client: string;
|
|
52823
52839
|
/**
|
|
52824
|
-
* setting this flag to
|
|
52840
|
+
* setting this flag to `true` overrides the already existing origin
|
|
52825
52841
|
*/
|
|
52826
|
-
force:
|
|
52842
|
+
force: boolean;
|
|
52827
52843
|
}
|
|
52828
52844
|
| string
|
|
52829
52845
|
): string;
|
|
@@ -57421,6 +57437,13 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
57421
57437
|
* Map of custom headers (name/value pairs) like {"myHeader":"myHeaderValue",...}
|
|
57422
57438
|
*/
|
|
57423
57439
|
headers?: Record<string, string>;
|
|
57440
|
+
/**
|
|
57441
|
+
* **Experimental** as of version 1.112.0; may change behavior or be removed in future versions. Whether
|
|
57442
|
+
* to ignore all annotations from service metadata, so that they are not available as V4 annotations in
|
|
57443
|
+
* this model's metamodel; see {@link #getMetaModel}. Only annotations from annotation files are loaded;
|
|
57444
|
+
* see the `annotationURI` parameter.
|
|
57445
|
+
*/
|
|
57446
|
+
ignoreAnnotationsFromMetadata?: boolean;
|
|
57424
57447
|
/**
|
|
57425
57448
|
* If set to `true`, request payloads will be JSON, XML for `false`
|
|
57426
57449
|
*/
|
|
@@ -57476,12 +57499,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
57476
57499
|
* for the `$metadata` request
|
|
57477
57500
|
*/
|
|
57478
57501
|
serviceUrlParams?: Record<string, string>;
|
|
57479
|
-
/**
|
|
57480
|
-
* Whether to skip the automated loading of annotations from the metadata document. Loading annotations
|
|
57481
|
-
* from metadata does not have any effects (except the lost performance by invoking the parser) if there
|
|
57482
|
-
* are not annotations inside the metadata document
|
|
57483
|
-
*/
|
|
57484
|
-
skipMetadataAnnotationParsing?: boolean;
|
|
57485
57502
|
/**
|
|
57486
57503
|
* Enable/disable security token handling
|
|
57487
57504
|
*/
|
|
@@ -57505,6 +57522,13 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
57505
57522
|
* service.
|
|
57506
57523
|
*/
|
|
57507
57524
|
password?: string;
|
|
57525
|
+
/**
|
|
57526
|
+
* **Deprecated** This parameter does not prevent creation of annotations from the metadata document in
|
|
57527
|
+
* this model's metamodel. Whether to skip the automated loading of annotations from the metadata document.
|
|
57528
|
+
* Loading annotations from metadata does not have any effects (except the lost performance by invoking
|
|
57529
|
+
* the parser) if there are no annotations inside the metadata document
|
|
57530
|
+
*/
|
|
57531
|
+
skipMetadataAnnotationParsing?: boolean;
|
|
57508
57532
|
/**
|
|
57509
57533
|
* **Deprecated** for security reasons. Use strong server side authentication instead. UserID for the service.
|
|
57510
57534
|
*/
|
|
@@ -58416,7 +58440,7 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
58416
58440
|
* for dependent bindings into fewer $batch requests. For more information, see {@link topic:6c47b2b39db9404582994070ec3d57a2#loio62149734b5c24507868e722fe87a75db
|
|
58417
58441
|
* Optimizing Dependent Bindings}
|
|
58418
58442
|
*/
|
|
58419
|
-
|
|
58443
|
+
createPreliminaryContext?: boolean;
|
|
58420
58444
|
/**
|
|
58421
58445
|
* Optional map of custom query parameters, names of custom parameters must not start with `$`.
|
|
58422
58446
|
*/
|
|
@@ -59820,10 +59844,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
59820
59844
|
* A map which contains the following parameter properties:
|
|
59821
59845
|
*/
|
|
59822
59846
|
mParameters?: {
|
|
59823
|
-
/**
|
|
59824
|
-
* Deprecated - use `groupId` instead
|
|
59825
|
-
*/
|
|
59826
|
-
batchGroupId?: string;
|
|
59827
59847
|
/**
|
|
59828
59848
|
* Defines the group that should be submitted. If not specified, all deferred groups will be submitted.
|
|
59829
59849
|
* Requests belonging to the same group will be bundled in one batch request.
|
|
@@ -59843,6 +59863,16 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
59843
59863
|
* which contains additional error information
|
|
59844
59864
|
*/
|
|
59845
59865
|
error?: Function;
|
|
59866
|
+
/**
|
|
59867
|
+
* **Deprecated**, use `groupId` instead
|
|
59868
|
+
*/
|
|
59869
|
+
batchGroupId?: string;
|
|
59870
|
+
/**
|
|
59871
|
+
* **Deprecated** since 1.38.0; use the `defaultUpdateMethod` constructor parameter instead. If unset, the
|
|
59872
|
+
* update method is determined from the `defaultUpdateMethod` constructor parameter. If `true`, `sap.ui.model.odata.UpdateMethod.Merge`
|
|
59873
|
+
* is used for update operations; if set to `false`, `sap.ui.model.odata.UpdateMethod.Put` is used.
|
|
59874
|
+
*/
|
|
59875
|
+
merge?: boolean;
|
|
59846
59876
|
}
|
|
59847
59877
|
): object;
|
|
59848
59878
|
/**
|
|
@@ -62176,8 +62206,12 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
62176
62206
|
* set `bSkipRefresh` to `true`. To avoid errors you must skip this refresh when using {@link sap.ui.model.odata.v4.Context#requestSideEffects}
|
|
62177
62207
|
* in the same $batch to refresh the complete collection containing the newly created entity.
|
|
62178
62208
|
*
|
|
62179
|
-
*
|
|
62180
|
-
*
|
|
62209
|
+
* Since 1.112.0 it is possible to create nested entities in a collection-valued navigation property together
|
|
62210
|
+
* with the entity (so-called "deep create"), for example a list of items for an order. For this purpose,
|
|
62211
|
+
* bind the list relative to a transient context. Calling this method then adds a transient entity to the
|
|
62212
|
+
* parent's navigation property, which is sent with the payload of the parent entity. Such a nested context
|
|
62213
|
+
* also has a {@link sap.ui.model.odata.v4.Context#created created} promise, which resolves when the deep
|
|
62214
|
+
* create resolves. Deep create is an **experimental** API.
|
|
62181
62215
|
*
|
|
62182
62216
|
* Note: Creating at the end is only allowed if the final length of the binding is known (see {@link #isLengthFinal}),
|
|
62183
62217
|
* so that there is a clear position to place this entity at. This is the case if the complete collection
|
|
@@ -62193,7 +62227,8 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
62193
62227
|
*/
|
|
62194
62228
|
oInitialData?: object,
|
|
62195
62229
|
/**
|
|
62196
|
-
* Whether an automatic refresh of the created entity will be skipped
|
|
62230
|
+
* Whether an automatic refresh of the created entity will be skipped; ignored within a deep create (when
|
|
62231
|
+
* the binding's parent context is transient)
|
|
62197
62232
|
*/
|
|
62198
62233
|
bSkipRefresh?: boolean,
|
|
62199
62234
|
/**
|
|
@@ -63305,8 +63340,8 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
|
|
|
63305
63340
|
getOriginalProperty(): void;
|
|
63306
63341
|
/**
|
|
63307
63342
|
* @SINCE 1.37.0
|
|
63308
|
-
* @deprecated (since 1.37.0) - use {@link #getObject}.
|
|
63309
63343
|
*
|
|
63344
|
+
* Use {@link #getObject}.
|
|
63310
63345
|
* See:
|
|
63311
63346
|
* sap.ui.model.Model#getProperty
|
|
63312
63347
|
*/
|
|
@@ -64245,11 +64280,10 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
64245
64280
|
*/
|
|
64246
64281
|
$$ownRequest?: boolean;
|
|
64247
64282
|
/**
|
|
64248
|
-
* Whether multiple bindings for the same resource path share the data, so that it is requested only once
|
|
64249
|
-
*
|
|
64250
|
-
*
|
|
64251
|
-
*
|
|
64252
|
-
* following APIs are **not** allowed
|
|
64283
|
+
* Whether multiple bindings for the same resource path share the data, so that it is requested only once.
|
|
64284
|
+
* This parameter can be inherited from the model's parameter "sharedRequests", see {@link sap.ui.model.odata.v4.ODataModel#constructor}.
|
|
64285
|
+
* Supported since 1.80.0 **Note:** These bindings are read-only, so they may be especially useful for value
|
|
64286
|
+
* lists; state messages (since 1.108.0) and the following APIs are **not** allowed
|
|
64253
64287
|
* for the list binding itself:
|
|
64254
64288
|
* {@link sap.ui.model.odata.v4.ODataListBinding#create} {@link sap.ui.model.odata.v4.ODataListBinding#getKeepAliveContext}
|
|
64255
64289
|
* or {@link #getKeepAliveContext} as far as it affects such a list binding {@link sap.ui.model.odata.v4.ODataListBinding#resetChanges}
|
|
@@ -71757,6 +71791,8 @@ declare module "sap/ui/test/Opa5" {
|
|
|
71757
71791
|
|
|
71758
71792
|
import OpaPlugin from "sap/ui/test/OpaPlugin";
|
|
71759
71793
|
|
|
71794
|
+
import UI5Element from "sap/ui/core/Element";
|
|
71795
|
+
|
|
71760
71796
|
import Matcher from "sap/ui/test/matchers/Matcher";
|
|
71761
71797
|
|
|
71762
71798
|
import Action from "sap/ui/test/actions/Action";
|
|
@@ -72333,7 +72369,13 @@ declare module "sap/ui/test/Opa5" {
|
|
|
72333
72369
|
* ]}
|
|
72334
72370
|
* ```
|
|
72335
72371
|
*/
|
|
72336
|
-
matchers?:
|
|
72372
|
+
matchers?:
|
|
72373
|
+
| ((p1: UI5Element) => void)
|
|
72374
|
+
| Record<string, object>
|
|
72375
|
+
| Matcher
|
|
72376
|
+
| Array<(p1: UI5Element) => void>
|
|
72377
|
+
| Array<Record<string, object>>
|
|
72378
|
+
| Matcher[];
|
|
72337
72379
|
/**
|
|
72338
72380
|
* Selects all control by their type. It is usually combined with a viewName or searchOpenDialogs. If no
|
|
72339
72381
|
* control is matching the type, an empty array will be returned. Here are some samples:
|
|
@@ -72416,7 +72458,7 @@ declare module "sap/ui/test/Opa5" {
|
|
|
72416
72458
|
* will stop. The first parameter passed into the function is the same value that gets passed to the success
|
|
72417
72459
|
* function. Returning something other than boolean in check will not change the first parameter of success.
|
|
72418
72460
|
*/
|
|
72419
|
-
check?:
|
|
72461
|
+
check?: (p1: UI5Element | UI5Element[]) => boolean;
|
|
72420
72462
|
/**
|
|
72421
72463
|
* Will get invoked after the following conditions are met:
|
|
72422
72464
|
* - One or multiple controls were found using controlType, Id, viewName. If visible is true (it is by
|
|
@@ -72427,7 +72469,7 @@ declare module "sap/ui/test/Opa5" {
|
|
|
72427
72469
|
* (viewName, controlType, multiple ID's, regex ID's) that matched all matchers. Matchers can alter the
|
|
72428
72470
|
* array or single control to something different. Please read the documentation of waitFor's matcher parameter.
|
|
72429
72471
|
*/
|
|
72430
|
-
success?:
|
|
72472
|
+
success?: (p1: UI5Element | UI5Element[]) => void;
|
|
72431
72473
|
/**
|
|
72432
72474
|
* Invoked when the timeout is reached and the check never returned true.
|
|
72433
72475
|
*/
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.112.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/fl/library" {}
|
|
4
4
|
|
|
@@ -1410,10 +1410,14 @@ declare namespace sap {
|
|
|
1410
1410
|
interface IUI5DefineDependencyNames {
|
|
1411
1411
|
"sap/ui/fl/apply/_internal/changes/descriptor/app/AddAnnotationsToOData": undefined;
|
|
1412
1412
|
|
|
1413
|
+
"sap/ui/fl/apply/_internal/changes/descriptor/app/AddNewInbound": undefined;
|
|
1414
|
+
|
|
1413
1415
|
"sap/ui/fl/apply/_internal/changes/descriptor/app/ChangeDataSource": undefined;
|
|
1414
1416
|
|
|
1415
1417
|
"sap/ui/fl/apply/_internal/changes/descriptor/app/ChangeInbound": undefined;
|
|
1416
1418
|
|
|
1419
|
+
"sap/ui/fl/apply/_internal/changes/descriptor/app/RemoveAllInboundsExceptOne": undefined;
|
|
1420
|
+
|
|
1417
1421
|
"sap/ui/fl/apply/_internal/changes/descriptor/app/SetTitle": undefined;
|
|
1418
1422
|
|
|
1419
1423
|
"sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetAbstract": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.112.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/integration/library" {
|
|
4
4
|
import { URI } from "sap/ui/core/library";
|
|
@@ -164,6 +164,28 @@ declare module "sap/ui/integration/library" {
|
|
|
164
164
|
*/
|
|
165
165
|
parameters: object;
|
|
166
166
|
};
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* @SINCE 1.112
|
|
170
|
+
* @EXPERIMENTAL (since 1.112)
|
|
171
|
+
*
|
|
172
|
+
* Preview modes for `{@link sap.ui.integration.widgets.Card}`. Helpful in scenarios when the end user is
|
|
173
|
+
* choosing or configuring a card.
|
|
174
|
+
*/
|
|
175
|
+
export enum CardPreviewMode {
|
|
176
|
+
/**
|
|
177
|
+
* Card displays abstract preview. No data requests are made.
|
|
178
|
+
*/
|
|
179
|
+
Abstract = "Abstract",
|
|
180
|
+
/**
|
|
181
|
+
* Card displays mocked data, loaded using a data request as configured in the manifest.
|
|
182
|
+
*/
|
|
183
|
+
MockData = "MockData",
|
|
184
|
+
/**
|
|
185
|
+
* Card displays real data.
|
|
186
|
+
*/
|
|
187
|
+
Off = "Off",
|
|
188
|
+
}
|
|
167
189
|
}
|
|
168
190
|
|
|
169
191
|
declare module "sap/ui/integration/ActionDefinition" {
|
|
@@ -1151,6 +1173,10 @@ declare module "sap/ui/integration/Extension" {
|
|
|
1151
1173
|
*
|
|
1152
1174
|
* Fired when an action is triggered in the card.
|
|
1153
1175
|
*
|
|
1176
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
1177
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
1178
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
1179
|
+
*
|
|
1154
1180
|
* @returns Reference to `this` in order to allow method chaining
|
|
1155
1181
|
*/
|
|
1156
1182
|
attachAction(
|
|
@@ -1179,6 +1205,10 @@ declare module "sap/ui/integration/Extension" {
|
|
|
1179
1205
|
*
|
|
1180
1206
|
* Fired when an action is triggered in the card.
|
|
1181
1207
|
*
|
|
1208
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
1209
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
1210
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
1211
|
+
*
|
|
1182
1212
|
* @returns Reference to `this` in order to allow method chaining
|
|
1183
1213
|
*/
|
|
1184
1214
|
attachAction(
|
|
@@ -1326,6 +1356,10 @@ declare module "sap/ui/integration/Extension" {
|
|
|
1326
1356
|
* be done before its official public release. Use at your own discretion.
|
|
1327
1357
|
*
|
|
1328
1358
|
* Fired when an action is triggered in the card.
|
|
1359
|
+
*
|
|
1360
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
1361
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
1362
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
1329
1363
|
*/
|
|
1330
1364
|
action?: (oEvent: Event) => void;
|
|
1331
1365
|
}
|
|
@@ -1426,6 +1460,10 @@ declare module "sap/ui/integration/Host" {
|
|
|
1426
1460
|
*
|
|
1427
1461
|
* Fired when an action is triggered.
|
|
1428
1462
|
*
|
|
1463
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
1464
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
1465
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
1466
|
+
*
|
|
1429
1467
|
* @returns Reference to `this` in order to allow method chaining
|
|
1430
1468
|
*/
|
|
1431
1469
|
attachAction(
|
|
@@ -1454,6 +1492,10 @@ declare module "sap/ui/integration/Host" {
|
|
|
1454
1492
|
*
|
|
1455
1493
|
* Fired when an action is triggered.
|
|
1456
1494
|
*
|
|
1495
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
1496
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
1497
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
1498
|
+
*
|
|
1457
1499
|
* @returns Reference to `this` in order to allow method chaining
|
|
1458
1500
|
*/
|
|
1459
1501
|
attachAction(
|
|
@@ -2004,6 +2046,10 @@ declare module "sap/ui/integration/Host" {
|
|
|
2004
2046
|
* be done before its official public release. Use at your own discretion.
|
|
2005
2047
|
*
|
|
2006
2048
|
* Fired when an action is triggered.
|
|
2049
|
+
*
|
|
2050
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
2051
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
2052
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
2007
2053
|
*/
|
|
2008
2054
|
action?: (oEvent: Event) => void;
|
|
2009
2055
|
|
|
@@ -2045,6 +2091,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2045
2091
|
CardActionType,
|
|
2046
2092
|
CardDataMode,
|
|
2047
2093
|
CardDesign,
|
|
2094
|
+
CardPreviewMode,
|
|
2048
2095
|
CardArea,
|
|
2049
2096
|
} from "sap/ui/integration/library";
|
|
2050
2097
|
|
|
@@ -2192,6 +2239,10 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2192
2239
|
*
|
|
2193
2240
|
* Fired when an action is triggered on the card.
|
|
2194
2241
|
*
|
|
2242
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
2243
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
2244
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
2245
|
+
*
|
|
2195
2246
|
* @returns Reference to `this` in order to allow method chaining
|
|
2196
2247
|
*/
|
|
2197
2248
|
attachAction(
|
|
@@ -2220,6 +2271,10 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2220
2271
|
*
|
|
2221
2272
|
* Fired when an action is triggered on the card.
|
|
2222
2273
|
*
|
|
2274
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
2275
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
2276
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
2277
|
+
*
|
|
2223
2278
|
* @returns Reference to `this` in order to allow method chaining
|
|
2224
2279
|
*/
|
|
2225
2280
|
attachAction(
|
|
@@ -2792,6 +2847,24 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2792
2847
|
*/
|
|
2793
2848
|
sPath: string
|
|
2794
2849
|
): any;
|
|
2850
|
+
/**
|
|
2851
|
+
* @SINCE 1.112
|
|
2852
|
+
* @EXPERIMENTAL (since 1.112)
|
|
2853
|
+
*
|
|
2854
|
+
* Gets current value of property {@link #getPreviewMode previewMode}.
|
|
2855
|
+
*
|
|
2856
|
+
* Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
|
|
2857
|
+
*
|
|
2858
|
+
* - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
|
|
2859
|
+
* in the manifest. If such configuration is missing, then the real data is loaded.
|
|
2860
|
+
* - When set to "Abstract", the card shows abstract placeholder without loading data.
|
|
2861
|
+
* - When set to "Off", the card displays real data.
|
|
2862
|
+
*
|
|
2863
|
+
* Default value is `Off`.
|
|
2864
|
+
*
|
|
2865
|
+
* @returns Value of property `previewMode`
|
|
2866
|
+
*/
|
|
2867
|
+
getPreviewMode(): CardPreviewMode | keyof typeof CardPreviewMode;
|
|
2795
2868
|
/**
|
|
2796
2869
|
* Gets current value of property {@link #getReferenceId referenceId}.
|
|
2797
2870
|
*
|
|
@@ -3129,6 +3202,31 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
3129
3202
|
*/
|
|
3130
3203
|
sManifestChanges: object[]
|
|
3131
3204
|
): this;
|
|
3205
|
+
/**
|
|
3206
|
+
* @SINCE 1.112
|
|
3207
|
+
* @EXPERIMENTAL (since 1.112)
|
|
3208
|
+
*
|
|
3209
|
+
* Sets a new value for property {@link #getPreviewMode previewMode}.
|
|
3210
|
+
*
|
|
3211
|
+
* Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
|
|
3212
|
+
*
|
|
3213
|
+
* - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
|
|
3214
|
+
* in the manifest. If such configuration is missing, then the real data is loaded.
|
|
3215
|
+
* - When set to "Abstract", the card shows abstract placeholder without loading data.
|
|
3216
|
+
* - When set to "Off", the card displays real data.
|
|
3217
|
+
*
|
|
3218
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3219
|
+
*
|
|
3220
|
+
* Default value is `Off`.
|
|
3221
|
+
*
|
|
3222
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3223
|
+
*/
|
|
3224
|
+
setPreviewMode(
|
|
3225
|
+
/**
|
|
3226
|
+
* New value for property `previewMode`
|
|
3227
|
+
*/
|
|
3228
|
+
sPreviewMode?: CardPreviewMode | keyof typeof CardPreviewMode
|
|
3229
|
+
): this;
|
|
3132
3230
|
/**
|
|
3133
3231
|
* Sets a new value for property {@link #getReferenceId referenceId}.
|
|
3134
3232
|
*
|
|
@@ -3623,6 +3721,22 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
3623
3721
|
| PropertyBindingInfo
|
|
3624
3722
|
| `{${string}}`;
|
|
3625
3723
|
|
|
3724
|
+
/**
|
|
3725
|
+
* @SINCE 1.112
|
|
3726
|
+
* @EXPERIMENTAL (since 1.112)
|
|
3727
|
+
*
|
|
3728
|
+
* Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
|
|
3729
|
+
*
|
|
3730
|
+
* - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
|
|
3731
|
+
* in the manifest. If such configuration is missing, then the real data is loaded.
|
|
3732
|
+
* - When set to "Abstract", the card shows abstract placeholder without loading data.
|
|
3733
|
+
* - When set to "Off", the card displays real data.
|
|
3734
|
+
*/
|
|
3735
|
+
previewMode?:
|
|
3736
|
+
| (CardPreviewMode | keyof typeof CardPreviewMode)
|
|
3737
|
+
| PropertyBindingInfo
|
|
3738
|
+
| `{${string}}`;
|
|
3739
|
+
|
|
3626
3740
|
/**
|
|
3627
3741
|
* @SINCE 1.85
|
|
3628
3742
|
* @EXPERIMENTAL (since 1.85) - Disclaimer: this aggregation is in a beta state - incompatible API changes
|
|
@@ -3647,6 +3761,10 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
3647
3761
|
* be done before its official public release. Use at your own discretion.
|
|
3648
3762
|
*
|
|
3649
3763
|
* Fired when an action is triggered on the card.
|
|
3764
|
+
*
|
|
3765
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
3766
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3767
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3650
3768
|
*/
|
|
3651
3769
|
action?: (oEvent: Event) => void;
|
|
3652
3770
|
|
|
@@ -3816,6 +3934,8 @@ declare namespace sap {
|
|
|
3816
3934
|
|
|
3817
3935
|
"sap/ui/integration/editor/Editor": undefined;
|
|
3818
3936
|
|
|
3937
|
+
"sap/ui/integration/editor/EditorResourceBundles": undefined;
|
|
3938
|
+
|
|
3819
3939
|
"sap/ui/integration/editor/Extension": undefined;
|
|
3820
3940
|
|
|
3821
3941
|
"sap/ui/integration/editor/fields/BaseField": undefined;
|
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.112.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/enum/FilterBarValidationStatus" {
|
|
4
4
|
/**
|
|
@@ -350,6 +350,8 @@ declare namespace sap {
|
|
|
350
350
|
|
|
351
351
|
"sap/ui/mdc/filterbar/FilterBarBase": undefined;
|
|
352
352
|
|
|
353
|
+
"sap/ui/mdc/filterbar/p13n/AdaptationFilterBar": undefined;
|
|
354
|
+
|
|
353
355
|
"sap/ui/mdc/filterbar/vh/CollectiveSearchSelect": undefined;
|
|
354
356
|
|
|
355
357
|
"sap/ui/mdc/filterbar/vh/FilterBar": undefined;
|
|
@@ -390,14 +392,10 @@ declare namespace sap {
|
|
|
390
392
|
|
|
391
393
|
"sap/ui/mdc/odata/v4/ValueHelpDelegate": undefined;
|
|
392
394
|
|
|
393
|
-
"sap/ui/mdc/p13n/Engine": undefined;
|
|
394
|
-
|
|
395
395
|
"sap/ui/mdc/p13n/panels/FilterPanel": undefined;
|
|
396
396
|
|
|
397
397
|
"sap/ui/mdc/p13n/StateUtil": undefined;
|
|
398
398
|
|
|
399
|
-
"sap/ui/mdc/p13n/subcontroller/BaseController": undefined;
|
|
400
|
-
|
|
401
399
|
"sap/ui/mdc/p13n/UIManager": undefined;
|
|
402
400
|
|
|
403
401
|
"sap/ui/mdc/Table": 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.112.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -2667,16 +2667,16 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
2667
2667
|
* Implements a plugin to enable a special multi-selection behavior:
|
|
2668
2668
|
* - No Select All checkbox, select all can only be done via range selection
|
|
2669
2669
|
* - Dedicated Deselect All button to clear the selection
|
|
2670
|
-
* - The number of indices which can be selected in a range is defined by the `limit` property
|
|
2671
|
-
*
|
|
2672
|
-
*
|
|
2670
|
+
* - The number of indices which can be selected in a range is defined by the `limit` property. If the
|
|
2671
|
+
* user tries to select more indices, the selection is automatically limited, and the table scrolls to the
|
|
2672
|
+
* last selected index.
|
|
2673
2673
|
* - The plugin makes sure that the corresponding binding contexts up to the given limit are available,
|
|
2674
2674
|
* by requesting them from the binding.
|
|
2675
2675
|
* - Multiple consecutive selections are possible
|
|
2676
2676
|
*
|
|
2677
|
-
* This plugin is intended for
|
|
2678
|
-
*
|
|
2679
|
-
* and
|
|
2677
|
+
* This plugin is intended for server-side models and multi-selection mode. Range selections, including
|
|
2678
|
+
* Select All, only work properly if the count is known. Make sure the model/binding is configured to request
|
|
2679
|
+
* the count from the service. For ease of use, client-side models and single selection are also supported.
|
|
2680
2680
|
*/
|
|
2681
2681
|
export default class MultiSelectionPlugin extends SelectionPlugin {
|
|
2682
2682
|
/**
|
|
@@ -2858,14 +2858,16 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
2858
2858
|
* Gets current value of property {@link #getLimit limit}.
|
|
2859
2859
|
*
|
|
2860
2860
|
* Number of indices which can be selected in a range. Accepts positive integer values. If set to 0, the
|
|
2861
|
-
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
2862
|
-
*
|
|
2861
|
+
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
2862
|
+
*
|
|
2863
|
+
* **Note:** To avoid severe performance problems, the limit should only be set to 0 in the following cases:
|
|
2863
2864
|
*
|
|
2864
2865
|
* - With client-side models
|
|
2865
2866
|
* - With server-side models if they are used in client mode
|
|
2866
|
-
* - If the entity set is small
|
|
2867
|
-
*
|
|
2868
|
-
*
|
|
2867
|
+
* - If the entity set is small
|
|
2868
|
+
*
|
|
2869
|
+
* In other cases, we recommend to set the limit to at least double the value of the {@link sap.ui.table.Table#getThreshold
|
|
2870
|
+
* threshold} property of the related `sap.ui.table.Table` control.
|
|
2869
2871
|
*
|
|
2870
2872
|
* Default value is `200`.
|
|
2871
2873
|
*
|
|
@@ -2966,14 +2968,16 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
2966
2968
|
* Sets a new value for property {@link #getLimit limit}.
|
|
2967
2969
|
*
|
|
2968
2970
|
* Number of indices which can be selected in a range. Accepts positive integer values. If set to 0, the
|
|
2969
|
-
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
2970
|
-
*
|
|
2971
|
+
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
2972
|
+
*
|
|
2973
|
+
* **Note:** To avoid severe performance problems, the limit should only be set to 0 in the following cases:
|
|
2971
2974
|
*
|
|
2972
2975
|
* - With client-side models
|
|
2973
2976
|
* - With server-side models if they are used in client mode
|
|
2974
|
-
* - If the entity set is small
|
|
2975
|
-
*
|
|
2976
|
-
*
|
|
2977
|
+
* - If the entity set is small
|
|
2978
|
+
*
|
|
2979
|
+
* In other cases, we recommend to set the limit to at least double the value of the {@link sap.ui.table.Table#getThreshold
|
|
2980
|
+
* threshold} property of the related `sap.ui.table.Table` control.
|
|
2977
2981
|
*
|
|
2978
2982
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2979
2983
|
*
|
|
@@ -3069,14 +3073,16 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3069
3073
|
extends $SelectionPluginSettings {
|
|
3070
3074
|
/**
|
|
3071
3075
|
* Number of indices which can be selected in a range. Accepts positive integer values. If set to 0, the
|
|
3072
|
-
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
3073
|
-
*
|
|
3076
|
+
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
3077
|
+
*
|
|
3078
|
+
* **Note:** To avoid severe performance problems, the limit should only be set to 0 in the following cases:
|
|
3074
3079
|
*
|
|
3075
3080
|
* - With client-side models
|
|
3076
3081
|
* - With server-side models if they are used in client mode
|
|
3077
|
-
* - If the entity set is small
|
|
3078
|
-
*
|
|
3079
|
-
*
|
|
3082
|
+
* - If the entity set is small
|
|
3083
|
+
*
|
|
3084
|
+
* In other cases, we recommend to set the limit to at least double the value of the {@link sap.ui.table.Table#getThreshold
|
|
3085
|
+
* threshold} property of the related `sap.ui.table.Table` control.
|
|
3080
3086
|
*/
|
|
3081
3087
|
limit?: int | PropertyBindingInfo | `{${string}}`;
|
|
3082
3088
|
|
package/types/sap.ui.ux3.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.112.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/webc/main/library" {
|
|
4
4
|
/**
|
|
@@ -9711,7 +9711,7 @@ declare module "sap/ui/webc/main/DatePicker" {
|
|
|
9711
9711
|
/**
|
|
9712
9712
|
* A Java Script date object to be formatted as string
|
|
9713
9713
|
*/
|
|
9714
|
-
date:
|
|
9714
|
+
date: object
|
|
9715
9715
|
): void;
|
|
9716
9716
|
/**
|
|
9717
9717
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
@@ -10676,7 +10676,7 @@ declare module "sap/ui/webc/main/DateRangePicker" {
|
|
|
10676
10676
|
/**
|
|
10677
10677
|
* A Java Script date object to be formatted as string
|
|
10678
10678
|
*/
|
|
10679
|
-
date:
|
|
10679
|
+
date: object
|
|
10680
10680
|
): void;
|
|
10681
10681
|
/**
|
|
10682
10682
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
@@ -11721,7 +11721,7 @@ declare module "sap/ui/webc/main/DateTimePicker" {
|
|
|
11721
11721
|
/**
|
|
11722
11722
|
* A Java Script date object to be formatted as string
|
|
11723
11723
|
*/
|
|
11724
|
-
date:
|
|
11724
|
+
date: object
|
|
11725
11725
|
): void;
|
|
11726
11726
|
/**
|
|
11727
11727
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
@@ -14585,10 +14585,9 @@ declare module "sap/ui/webc/main/Icon" {
|
|
|
14585
14585
|
* Defines the unique identifier (icon name) of the component.
|
|
14586
14586
|
*
|
|
14587
14587
|
*
|
|
14588
|
-
* To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html
|
|
14589
|
-
*
|
|
14590
|
-
*
|
|
14591
|
-
* SAP Business Suite Icons} collections.
|
|
14588
|
+
* To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Icons},
|
|
14589
|
+
* {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT SAP Fiori Tools} and
|
|
14590
|
+
* {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Business Suite} collections.
|
|
14592
14591
|
*
|
|
14593
14592
|
*
|
|
14594
14593
|
* Example:
|
|
@@ -14740,10 +14739,9 @@ declare module "sap/ui/webc/main/Icon" {
|
|
|
14740
14739
|
* Defines the unique identifier (icon name) of the component.
|
|
14741
14740
|
*
|
|
14742
14741
|
*
|
|
14743
|
-
* To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html
|
|
14744
|
-
*
|
|
14745
|
-
*
|
|
14746
|
-
* SAP Business Suite Icons} collections.
|
|
14742
|
+
* To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Icons},
|
|
14743
|
+
* {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT SAP Fiori Tools} and
|
|
14744
|
+
* {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Business Suite} collections.
|
|
14747
14745
|
*
|
|
14748
14746
|
*
|
|
14749
14747
|
* Example:
|
|
@@ -14851,10 +14849,9 @@ declare module "sap/ui/webc/main/Icon" {
|
|
|
14851
14849
|
* Defines the unique identifier (icon name) of the component.
|
|
14852
14850
|
*
|
|
14853
14851
|
*
|
|
14854
|
-
* To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html
|
|
14855
|
-
*
|
|
14856
|
-
*
|
|
14857
|
-
* SAP Business Suite Icons} collections.
|
|
14852
|
+
* To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Icons},
|
|
14853
|
+
* {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT SAP Fiori Tools} and
|
|
14854
|
+
* {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Business Suite} collections.
|
|
14858
14855
|
*
|
|
14859
14856
|
*
|
|
14860
14857
|
* Example:
|
|
@@ -37145,7 +37142,7 @@ declare module "sap/ui/webc/main/TimePicker" {
|
|
|
37145
37142
|
/**
|
|
37146
37143
|
* A Java Script date object to be formatted as string
|
|
37147
37144
|
*/
|
|
37148
|
-
date:
|
|
37145
|
+
date: object
|
|
37149
37146
|
): void;
|
|
37150
37147
|
/**
|
|
37151
37148
|
* Returns the currently selected time represented as JavaScript Date instance
|
package/types/sap.uxap.d.ts
CHANGED