@openui5/ts-types 1.111.6 → 1.112.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types",
3
- "version": "1.111.6",
3
+ "version": "1.112.1",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -19927,6 +19927,8 @@ declare namespace sap {
19927
19927
  | `{${string}}`;
19928
19928
 
19929
19929
  /**
19930
+ * @SINCE 1.110
19931
+ *
19930
19932
  * The footer of this dialog. It is always located at the bottom of the dialog. The footer aggregation can
19931
19933
  * not be used together with the buttons aggregation.
19932
19934
  */
@@ -22414,6 +22416,18 @@ declare namespace sap {
22414
22416
  */
22415
22417
  title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
22416
22418
 
22419
+ /**
22420
+ * @SINCE 1.111
22421
+ *
22422
+ * Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
22423
+ *
22424
+ * **Note:** Used for accessibility purposes only.
22425
+ */
22426
+ ariaTitleLevel?:
22427
+ | sap.ui.core.TitleLevel
22428
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
22429
+ | `{${string}}`;
22430
+
22417
22431
  /**
22418
22432
  * @SINCE 1.98
22419
22433
  *
@@ -46500,7 +46514,6 @@ declare namespace sap {
46500
46514
  ): this;
46501
46515
  /**
46502
46516
  * @SINCE 1.64
46503
- * @EXPERIMENTAL (since 1.64)
46504
46517
  *
46505
46518
  * Opens the `SuggestionsPopover` with the available items.
46506
46519
  */
@@ -50294,6 +50307,8 @@ declare namespace sap {
50294
50307
  */
50295
50308
  destroyEndButton(): this;
50296
50309
  /**
50310
+ * @SINCE 1.110
50311
+ *
50297
50312
  * Destroys the footer in the aggregation {@link #getFooter footer}.
50298
50313
  *
50299
50314
  * @returns Reference to `this` in order to allow method chaining
@@ -50574,6 +50589,8 @@ declare namespace sap {
50574
50589
  }) => void)
50575
50590
  | null;
50576
50591
  /**
50592
+ * @SINCE 1.110
50593
+ *
50577
50594
  * Gets content of aggregation {@link #getFooter footer}.
50578
50595
  *
50579
50596
  * The footer of this dialog. It is always located at the bottom of the dialog. The footer aggregation can
@@ -51056,6 +51073,8 @@ declare namespace sap {
51056
51073
  }) => void
51057
51074
  ): this;
51058
51075
  /**
51076
+ * @SINCE 1.110
51077
+ *
51059
51078
  * Sets the aggregated {@link #getFooter footer}.
51060
51079
  *
51061
51080
  * @returns Reference to `this` in order to allow method chaining
@@ -62891,6 +62910,20 @@ declare namespace sap {
62891
62910
  * **Note:** Not displayed when `illustrationSize` is set to `Base`.
62892
62911
  */
62893
62912
  getAdditionalContent(): sap.m.Button[];
62913
+ /**
62914
+ * @SINCE 1.111
62915
+ *
62916
+ * Gets current value of property {@link #getAriaTitleLevel ariaTitleLevel}.
62917
+ *
62918
+ * Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
62919
+ *
62920
+ * **Note:** Used for accessibility purposes only.
62921
+ *
62922
+ * Default value is `Auto`.
62923
+ *
62924
+ * @returns Value of property `ariaTitleLevel`
62925
+ */
62926
+ getAriaTitleLevel(): sap.ui.core.TitleLevel;
62894
62927
  /**
62895
62928
  * @SINCE 1.98
62896
62929
  *
@@ -63084,6 +63117,27 @@ declare namespace sap {
63084
63117
  */
63085
63118
  vIllustrationAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
63086
63119
  ): sap.ui.core.ID | null;
63120
+ /**
63121
+ * @SINCE 1.111
63122
+ *
63123
+ * Sets a new value for property {@link #getAriaTitleLevel ariaTitleLevel}.
63124
+ *
63125
+ * Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
63126
+ *
63127
+ * **Note:** Used for accessibility purposes only.
63128
+ *
63129
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
63130
+ *
63131
+ * Default value is `Auto`.
63132
+ *
63133
+ * @returns Reference to `this` in order to allow method chaining
63134
+ */
63135
+ setAriaTitleLevel(
63136
+ /**
63137
+ * New value for property `ariaTitleLevel`
63138
+ */
63139
+ sAriaTitleLevel?: sap.ui.core.TitleLevel
63140
+ ): this;
63087
63141
  /**
63088
63142
  * @SINCE 1.98
63089
63143
  *
@@ -66369,15 +66423,27 @@ declare namespace sap {
66369
66423
  bShowSuggestion?: boolean
66370
66424
  ): this;
66371
66425
  /**
66372
- * Shows value help suggestions in table.
66426
+ * @SINCE 1.22.1
66373
66427
  *
66374
- * @returns this Input instance for chaining.
66428
+ * Sets a new value for property {@link #getShowTableSuggestionValueHelp showTableSuggestionValueHelp}.
66429
+ *
66430
+ * For tabular suggestions, this flag will show/hide the button at the end of the suggestion table that
66431
+ * triggers the event "valueHelpRequest" when pressed. The default value is true.
66432
+ *
66433
+ * **Note:** If suggestions are not tabular or no suggestions are used, the button will not be displayed
66434
+ * and this flag is without effect.
66435
+ *
66436
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
66437
+ *
66438
+ * Default value is `true`.
66439
+ *
66440
+ * @returns Reference to `this` in order to allow method chaining
66375
66441
  */
66376
66442
  setShowTableSuggestionValueHelp(
66377
66443
  /**
66378
- * Show suggestions.
66444
+ * New value for property `showTableSuggestionValueHelp`
66379
66445
  */
66380
- bValue: boolean
66446
+ bShowTableSuggestionValueHelp?: boolean
66381
66447
  ): this;
66382
66448
  /**
66383
66449
  * @SINCE 1.16
@@ -66620,7 +66686,6 @@ declare namespace sap {
66620
66686
  ): boolean;
66621
66687
  /**
66622
66688
  * @SINCE 1.64
66623
- * @EXPERIMENTAL (since 1.64)
66624
66689
  *
66625
66690
  * Opens the `SuggestionsPopover` with the available items. **Note:** When `valueHelpOnly` property is set
66626
66691
  * to true, the `SuggestionsPopover` will not open.
@@ -74672,6 +74737,7 @@ declare namespace sap {
74672
74737
  }
74673
74738
  /**
74674
74739
  * @SINCE 1.28
74740
+ * @deprecated (since 1.112) - Use the {@link sap.m.IllustratedMessage} instead.
74675
74741
  *
74676
74742
  * Displays an empty page with an icon and a header when certain conditions are met. Overview: MessagePage
74677
74743
  * is displayed when there is no data or matching content. There are different use cases where a MessagePage
@@ -82029,6 +82095,13 @@ declare namespace sap {
82029
82095
  * **Note:** It will only allow sap.m.Text and sap.m.Link controls.
82030
82096
  */
82031
82097
  getCustomContent(): sap.ui.core.Control;
82098
+ /**
82099
+ * See:
82100
+ * sap.ui.core.Element.prototype.getFocusDomRef
82101
+ *
82102
+ * @returns Returns the DOM Element that should get the focus or `null`
82103
+ */
82104
+ getFocusDomRef(): Element | null;
82032
82105
  /**
82033
82106
  * Defines to which DOM reference the Popup should be docked.
82034
82107
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -266,7 +266,21 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
266
266
  ): jQuery;
267
267
  }
268
268
 
269
- // For Library Version: 1.111.6
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.1
270
284
 
271
285
  declare module "sap/base/assert" {
272
286
  /**
@@ -2530,7 +2544,8 @@ declare module "sap/ui/core/date/UI5Date" {
2530
2544
  */
2531
2545
  getUTCSeconds(): int;
2532
2546
  /**
2533
- * @deprecated (since 1.111.0) - as it is deprecated in JavaScript Date; use {@link #getFullYear} instead
2547
+ * @deprecated (since 1.111) - as it is deprecated in the base class JavaScript Date; use {@link #getFullYear}
2548
+ * instead
2534
2549
  *
2535
2550
  * Returns the year of this date instance minus 1900 according to the configured time zone, see `Date.prototype.getYear`.
2536
2551
  *
@@ -2794,7 +2809,8 @@ declare module "sap/ui/core/date/UI5Date" {
2794
2809
  iMilliseconds?: int
2795
2810
  ): int;
2796
2811
  /**
2797
- * @deprecated (since 1.111.0) - as it is deprecated in JavaScript Date; use {@link #setFullYear} instead
2812
+ * @deprecated (since 1.111) - as it is deprecated in the base class JavaScript Date; use {@link #setFullYear}
2813
+ * instead
2798
2814
  *
2799
2815
  * Sets the year for this date instance plus 1900 considering the configured time zone, see `Date.prototype.setYear`.
2800
2816
  *
@@ -11721,7 +11737,7 @@ declare namespace sap {
11721
11737
  *
11722
11738
  * @returns Whether the given object is an instance of the given type or of any of the given types
11723
11739
  */
11724
- static isA(
11740
+ static isA<T extends sap.ui.base.Object = sap.ui.base.Object>(
11725
11741
  /**
11726
11742
  * Object which will be checked whether it is an instance of the given type
11727
11743
  */
@@ -11730,7 +11746,7 @@ declare namespace sap {
11730
11746
  * Type or types to check for
11731
11747
  */
11732
11748
  vTypeName: string | string[]
11733
- ): boolean;
11749
+ ): oObject is T;
11734
11750
  /**
11735
11751
  * Destructor method for objects.
11736
11752
  */
@@ -11774,12 +11790,12 @@ declare namespace sap {
11774
11790
  *
11775
11791
  * @returns Whether this object is an instance of the given type or of any of the given types
11776
11792
  */
11777
- isA(
11793
+ isA<T extends sap.ui.base.Object = sap.ui.base.Object>(
11778
11794
  /**
11779
11795
  * Type or types to check for
11780
11796
  */
11781
11797
  vTypeName: string | string[]
11782
- ): boolean;
11798
+ ): this is T;
11783
11799
  }
11784
11800
  /**
11785
11801
  * Manages a pool of objects for reuse, all of the same type; the type has to be specified at construction
@@ -50863,6 +50879,13 @@ declare namespace sap {
50863
50879
  * Map of custom headers (name/value pairs) like {"myHeader":"myHeaderValue",...}
50864
50880
  */
50865
50881
  headers?: Record<string, string>;
50882
+ /**
50883
+ * **Experimental** as of version 1.112.0; may change behavior or be removed in future versions. Whether
50884
+ * to ignore all annotations from service metadata, so that they are not available as V4 annotations in
50885
+ * this model's metamodel; see {@link #getMetaModel}. Only annotations from annotation files are loaded;
50886
+ * see the `annotationURI` parameter.
50887
+ */
50888
+ ignoreAnnotationsFromMetadata?: boolean;
50866
50889
  /**
50867
50890
  * If set to `true`, request payloads will be JSON, XML for `false`
50868
50891
  */
@@ -50918,12 +50941,6 @@ declare namespace sap {
50918
50941
  * for the `$metadata` request
50919
50942
  */
50920
50943
  serviceUrlParams?: Record<string, string>;
50921
- /**
50922
- * Whether to skip the automated loading of annotations from the metadata document. Loading annotations
50923
- * from metadata does not have any effects (except the lost performance by invoking the parser) if there
50924
- * are not annotations inside the metadata document
50925
- */
50926
- skipMetadataAnnotationParsing?: boolean;
50927
50944
  /**
50928
50945
  * Enable/disable security token handling
50929
50946
  */
@@ -50947,6 +50964,13 @@ declare namespace sap {
50947
50964
  * service.
50948
50965
  */
50949
50966
  password?: string;
50967
+ /**
50968
+ * **Deprecated** This parameter does not prevent creation of annotations from the metadata document in
50969
+ * this model's metamodel. Whether to skip the automated loading of annotations from the metadata document.
50970
+ * Loading annotations from metadata does not have any effects (except the lost performance by invoking
50971
+ * the parser) if there are no annotations inside the metadata document
50972
+ */
50973
+ skipMetadataAnnotationParsing?: boolean;
50950
50974
  /**
50951
50975
  * **Deprecated** for security reasons. Use strong server side authentication instead. UserID for the service.
50952
50976
  */
@@ -51858,7 +51882,7 @@ declare namespace sap {
51858
51882
  * for dependent bindings into fewer $batch requests. For more information, see {@link topic:6c47b2b39db9404582994070ec3d57a2#loio62149734b5c24507868e722fe87a75db
51859
51883
  * Optimizing Dependent Bindings}
51860
51884
  */
51861
- preliminaryContext?: boolean;
51885
+ createPreliminaryContext?: boolean;
51862
51886
  /**
51863
51887
  * Optional map of custom query parameters, names of custom parameters must not start with `$`.
51864
51888
  */
@@ -53274,10 +53298,6 @@ declare namespace sap {
53274
53298
  * A map which contains the following parameter properties:
53275
53299
  */
53276
53300
  mParameters?: {
53277
- /**
53278
- * Deprecated - use `groupId` instead
53279
- */
53280
- batchGroupId?: string;
53281
53301
  /**
53282
53302
  * Defines the group that should be submitted. If not specified, all deferred groups will be submitted.
53283
53303
  * Requests belonging to the same group will be bundled in one batch request.
@@ -53297,6 +53317,16 @@ declare namespace sap {
53297
53317
  * which contains additional error information
53298
53318
  */
53299
53319
  error?: Function;
53320
+ /**
53321
+ * **Deprecated**, use `groupId` instead
53322
+ */
53323
+ batchGroupId?: string;
53324
+ /**
53325
+ * **Deprecated** since 1.38.0; use the `defaultUpdateMethod` constructor parameter instead. If unset, the
53326
+ * update method is determined from the `defaultUpdateMethod` constructor parameter. If `true`, `sap.ui.model.odata.UpdateMethod.Merge`
53327
+ * is used for update operations; if set to `false`, `sap.ui.model.odata.UpdateMethod.Put` is used.
53328
+ */
53329
+ merge?: boolean;
53300
53330
  }
53301
53331
  ): object;
53302
53332
  /**
@@ -55678,8 +55708,12 @@ declare namespace sap {
55678
55708
  * set `bSkipRefresh` to `true`. To avoid errors you must skip this refresh when using {@link sap.ui.model.odata.v4.Context#requestSideEffects}
55679
55709
  * in the same $batch to refresh the complete collection containing the newly created entity.
55680
55710
  *
55681
- * Note: A deep create is not supported. The dependent entity has to be created using a second list binding.
55682
- * Note that it is not supported to bind relative to a transient context.
55711
+ * Since 1.112.0 it is possible to create nested entities in a collection-valued navigation property together
55712
+ * with the entity (so-called "deep create"), for example a list of items for an order. For this purpose,
55713
+ * bind the list relative to a transient context. Calling this method then adds a transient entity to the
55714
+ * parent's navigation property, which is sent with the payload of the parent entity. Such a nested context
55715
+ * also has a {@link sap.ui.model.odata.v4.Context#created created} promise, which resolves when the deep
55716
+ * create resolves. Deep create is an **experimental** API.
55683
55717
  *
55684
55718
  * Note: Creating at the end is only allowed if the final length of the binding is known (see {@link #isLengthFinal}),
55685
55719
  * so that there is a clear position to place this entity at. This is the case if the complete collection
@@ -55695,7 +55729,8 @@ declare namespace sap {
55695
55729
  */
55696
55730
  oInitialData?: object,
55697
55731
  /**
55698
- * Whether an automatic refresh of the created entity will be skipped
55732
+ * Whether an automatic refresh of the created entity will be skipped; ignored within a deep create (when
55733
+ * the binding's parent context is transient)
55699
55734
  */
55700
55735
  bSkipRefresh?: boolean,
55701
55736
  /**
@@ -56783,8 +56818,8 @@ declare namespace sap {
56783
56818
  getOriginalProperty(): void;
56784
56819
  /**
56785
56820
  * @SINCE 1.37.0
56786
- * @deprecated (since 1.37.0) - use {@link #getObject}.
56787
56821
  *
56822
+ * Use {@link #getObject}.
56788
56823
  * See:
56789
56824
  * sap.ui.model.Model#getProperty
56790
56825
  */
@@ -57692,11 +57727,10 @@ declare namespace sap {
57692
57727
  */
57693
57728
  $$ownRequest?: boolean;
57694
57729
  /**
57695
- * Whether multiple bindings for the same resource path share the data, so that it is requested only once;
57696
- * only the value `true` is allowed. This parameter can be inherited from the model's parameter "sharedRequests",
57697
- * see {@link sap.ui.model.odata.v4.ODataModel#constructor}. Supported since 1.80.0 **Note:** These bindings
57698
- * are read-only, so they may be especially useful for value lists; state messages (since 1.108.0) and the
57699
- * following APIs are **not** allowed
57730
+ * Whether multiple bindings for the same resource path share the data, so that it is requested only once.
57731
+ * This parameter can be inherited from the model's parameter "sharedRequests", see {@link sap.ui.model.odata.v4.ODataModel#constructor}.
57732
+ * Supported since 1.80.0 **Note:** These bindings are read-only, so they may be especially useful for value
57733
+ * lists; state messages (since 1.108.0) and the following APIs are **not** allowed
57700
57734
  * for the list binding itself:
57701
57735
  * {@link sap.ui.model.odata.v4.ODataListBinding#create} {@link sap.ui.model.odata.v4.ODataListBinding#getKeepAliveContext}
57702
57736
  * or {@link #getKeepAliveContext} as far as it affects such a list binding {@link sap.ui.model.odata.v4.ODataListBinding#resetChanges}
@@ -59064,7 +59098,7 @@ declare namespace sap {
59064
59098
  * if `true`, the string values `vValue1` and `vValue2` are compared as a decimal number (only sign, integer
59065
59099
  * and fraction digits; no exponential format). Otherwise they are recognized by looking at their types.
59066
59100
  */
59067
- bAsDecimal?: string
59101
+ bAsDecimal?: boolean
59068
59102
  ): int;
59069
59103
  /**
59070
59104
  * Formats a JavaScript value according to the given
@@ -59146,9 +59180,9 @@ declare namespace sap {
59146
59180
  */
59147
59181
  client: string;
59148
59182
  /**
59149
- * setting this flag to 'true' overrides the already existing origin
59183
+ * setting this flag to `true` overrides the already existing origin
59150
59184
  */
59151
- force: string;
59185
+ force: boolean;
59152
59186
  }
59153
59187
  | string
59154
59188
  ): string;
@@ -73714,7 +73748,13 @@ declare namespace sap {
73714
73748
  * ]}
73715
73749
  * ```
73716
73750
  */
73717
- matchers?: Function | any[] | object | sap.ui.test.matchers.Matcher;
73751
+ matchers?:
73752
+ | ((p1: sap.ui.core.Element) => void)
73753
+ | Record<string, object>
73754
+ | sap.ui.test.matchers.Matcher
73755
+ | Array<(p1: sap.ui.core.Element) => void>
73756
+ | Array<Record<string, object>>
73757
+ | sap.ui.test.matchers.Matcher[];
73718
73758
  /**
73719
73759
  * Selects all control by their type. It is usually combined with a viewName or searchOpenDialogs. If no
73720
73760
  * control is matching the type, an empty array will be returned. Here are some samples:
@@ -73797,7 +73837,9 @@ declare namespace sap {
73797
73837
  * will stop. The first parameter passed into the function is the same value that gets passed to the success
73798
73838
  * function. Returning something other than boolean in check will not change the first parameter of success.
73799
73839
  */
73800
- check?: Function;
73840
+ check?: (
73841
+ p1: sap.ui.core.Element | sap.ui.core.Element[]
73842
+ ) => boolean;
73801
73843
  /**
73802
73844
  * Will get invoked after the following conditions are met:
73803
73845
  * - One or multiple controls were found using controlType, Id, viewName. If visible is true (it is by
@@ -73808,7 +73850,7 @@ declare namespace sap {
73808
73850
  * (viewName, controlType, multiple ID's, regex ID's) that matched all matchers. Matchers can alter the
73809
73851
  * array or single control to something different. Please read the documentation of waitFor's matcher parameter.
73810
73852
  */
73811
- success?: Function;
73853
+ success?: (p1: sap.ui.core.Element | sap.ui.core.Element[]) => void;
73812
73854
  /**
73813
73855
  * Invoked when the timeout is reached and the check never returned true.
73814
73856
  */
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1205,10 +1205,14 @@ declare namespace sap {
1205
1205
  interface IUI5DefineDependencyNames {
1206
1206
  "sap/ui/fl/apply/_internal/changes/descriptor/app/AddAnnotationsToOData": undefined;
1207
1207
 
1208
+ "sap/ui/fl/apply/_internal/changes/descriptor/app/AddNewInbound": undefined;
1209
+
1208
1210
  "sap/ui/fl/apply/_internal/changes/descriptor/app/ChangeDataSource": undefined;
1209
1211
 
1210
1212
  "sap/ui/fl/apply/_internal/changes/descriptor/app/ChangeInbound": undefined;
1211
1213
 
1214
+ "sap/ui/fl/apply/_internal/changes/descriptor/app/RemoveAllInboundsExceptOne": undefined;
1215
+
1212
1216
  "sap/ui/fl/apply/_internal/changes/descriptor/app/SetTitle": undefined;
1213
1217
 
1214
1218
  "sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetAbstract": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -820,6 +820,22 @@ declare namespace sap {
820
820
  | sap.ui.base.ManagedObject.PropertyBindingInfo
821
821
  | `{${string}}`;
822
822
 
823
+ /**
824
+ * @SINCE 1.112
825
+ * @EXPERIMENTAL (since 1.112)
826
+ *
827
+ * Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
828
+ *
829
+ * - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
830
+ * in the manifest. If such configuration is missing, then the real data is loaded.
831
+ * - When set to "Abstract", the card shows abstract placeholder without loading data.
832
+ * - When set to "Off", the card displays real data.
833
+ */
834
+ previewMode?:
835
+ | sap.ui.integration.CardPreviewMode
836
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
837
+ | `{${string}}`;
838
+
823
839
  /**
824
840
  * @SINCE 1.85
825
841
  * @EXPERIMENTAL (since 1.85) - Disclaimer: this aggregation is in a beta state - incompatible API changes
@@ -844,6 +860,10 @@ declare namespace sap {
844
860
  * be done before its official public release. Use at your own discretion.
845
861
  *
846
862
  * Fired when an action is triggered on the card.
863
+ *
864
+ * When an action is triggered in the card it can be handled on several places by "action" event handlers.
865
+ * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
866
+ * one to handle the action by calling `oEvent.preventDefault()`.
847
867
  */
848
868
  action?: (oEvent: sap.ui.base.Event) => void;
849
869
 
@@ -1012,6 +1032,10 @@ declare namespace sap {
1012
1032
  *
1013
1033
  * Fired when an action is triggered on the card.
1014
1034
  *
1035
+ * When an action is triggered in the card it can be handled on several places by "action" event handlers.
1036
+ * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
1037
+ * one to handle the action by calling `oEvent.preventDefault()`.
1038
+ *
1015
1039
  * @returns Reference to `this` in order to allow method chaining
1016
1040
  */
1017
1041
  attachAction(
@@ -1040,6 +1064,10 @@ declare namespace sap {
1040
1064
  *
1041
1065
  * Fired when an action is triggered on the card.
1042
1066
  *
1067
+ * When an action is triggered in the card it can be handled on several places by "action" event handlers.
1068
+ * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
1069
+ * one to handle the action by calling `oEvent.preventDefault()`.
1070
+ *
1043
1071
  * @returns Reference to `this` in order to allow method chaining
1044
1072
  */
1045
1073
  attachAction(
@@ -1612,6 +1640,24 @@ declare namespace sap {
1612
1640
  */
1613
1641
  sPath: string
1614
1642
  ): any;
1643
+ /**
1644
+ * @SINCE 1.112
1645
+ * @EXPERIMENTAL (since 1.112)
1646
+ *
1647
+ * Gets current value of property {@link #getPreviewMode previewMode}.
1648
+ *
1649
+ * Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
1650
+ *
1651
+ * - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
1652
+ * in the manifest. If such configuration is missing, then the real data is loaded.
1653
+ * - When set to "Abstract", the card shows abstract placeholder without loading data.
1654
+ * - When set to "Off", the card displays real data.
1655
+ *
1656
+ * Default value is `Off`.
1657
+ *
1658
+ * @returns Value of property `previewMode`
1659
+ */
1660
+ getPreviewMode(): sap.ui.integration.CardPreviewMode;
1615
1661
  /**
1616
1662
  * Gets current value of property {@link #getReferenceId referenceId}.
1617
1663
  *
@@ -1952,6 +1998,31 @@ declare namespace sap {
1952
1998
  */
1953
1999
  sManifestChanges: object[]
1954
2000
  ): this;
2001
+ /**
2002
+ * @SINCE 1.112
2003
+ * @EXPERIMENTAL (since 1.112)
2004
+ *
2005
+ * Sets a new value for property {@link #getPreviewMode previewMode}.
2006
+ *
2007
+ * Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
2008
+ *
2009
+ * - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
2010
+ * in the manifest. If such configuration is missing, then the real data is loaded.
2011
+ * - When set to "Abstract", the card shows abstract placeholder without loading data.
2012
+ * - When set to "Off", the card displays real data.
2013
+ *
2014
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2015
+ *
2016
+ * Default value is `Off`.
2017
+ *
2018
+ * @returns Reference to `this` in order to allow method chaining
2019
+ */
2020
+ setPreviewMode(
2021
+ /**
2022
+ * New value for property `previewMode`
2023
+ */
2024
+ sPreviewMode?: sap.ui.integration.CardPreviewMode
2025
+ ): this;
1955
2026
  /**
1956
2027
  * Sets a new value for property {@link #getReferenceId referenceId}.
1957
2028
  *
@@ -2138,6 +2209,10 @@ declare namespace sap {
2138
2209
  * be done before its official public release. Use at your own discretion.
2139
2210
  *
2140
2211
  * Fired when an action is triggered in the card.
2212
+ *
2213
+ * When an action is triggered in the card it can be handled on several places by "action" event handlers.
2214
+ * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
2215
+ * one to handle the action by calling `oEvent.preventDefault()`.
2141
2216
  */
2142
2217
  action?: (oEvent: sap.ui.base.Event) => void;
2143
2218
  }
@@ -2175,6 +2250,10 @@ declare namespace sap {
2175
2250
  * be done before its official public release. Use at your own discretion.
2176
2251
  *
2177
2252
  * Fired when an action is triggered.
2253
+ *
2254
+ * When an action is triggered in the card it can be handled on several places by "action" event handlers.
2255
+ * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
2256
+ * one to handle the action by calling `oEvent.preventDefault()`.
2178
2257
  */
2179
2258
  action?: (oEvent: sap.ui.base.Event) => void;
2180
2259
 
@@ -2685,6 +2764,10 @@ declare namespace sap {
2685
2764
  *
2686
2765
  * Fired when an action is triggered in the card.
2687
2766
  *
2767
+ * When an action is triggered in the card it can be handled on several places by "action" event handlers.
2768
+ * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
2769
+ * one to handle the action by calling `oEvent.preventDefault()`.
2770
+ *
2688
2771
  * @returns Reference to `this` in order to allow method chaining
2689
2772
  */
2690
2773
  attachAction(
@@ -2713,6 +2796,10 @@ declare namespace sap {
2713
2796
  *
2714
2797
  * Fired when an action is triggered in the card.
2715
2798
  *
2799
+ * When an action is triggered in the card it can be handled on several places by "action" event handlers.
2800
+ * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
2801
+ * one to handle the action by calling `oEvent.preventDefault()`.
2802
+ *
2716
2803
  * @returns Reference to `this` in order to allow method chaining
2717
2804
  */
2718
2805
  attachAction(
@@ -2917,6 +3004,10 @@ declare namespace sap {
2917
3004
  *
2918
3005
  * Fired when an action is triggered.
2919
3006
  *
3007
+ * When an action is triggered in the card it can be handled on several places by "action" event handlers.
3008
+ * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
3009
+ * one to handle the action by calling `oEvent.preventDefault()`.
3010
+ *
2920
3011
  * @returns Reference to `this` in order to allow method chaining
2921
3012
  */
2922
3013
  attachAction(
@@ -2945,6 +3036,10 @@ declare namespace sap {
2945
3036
  *
2946
3037
  * Fired when an action is triggered.
2947
3038
  *
3039
+ * When an action is triggered in the card it can be handled on several places by "action" event handlers.
3040
+ * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
3041
+ * one to handle the action by calling `oEvent.preventDefault()`.
3042
+ *
2948
3043
  * @returns Reference to `this` in order to allow method chaining
2949
3044
  */
2950
3045
  attachAction(
@@ -3589,6 +3684,27 @@ declare namespace sap {
3589
3684
  */
3590
3685
  Transparent = "Transparent",
3591
3686
  }
3687
+ /**
3688
+ * @SINCE 1.112
3689
+ * @EXPERIMENTAL (since 1.112)
3690
+ *
3691
+ * Preview modes for `{@link sap.ui.integration.widgets.Card}`. Helpful in scenarios when the end user is
3692
+ * choosing or configuring a card.
3693
+ */
3694
+ enum CardPreviewMode {
3695
+ /**
3696
+ * Card displays abstract preview. No data requests are made.
3697
+ */
3698
+ Abstract = "Abstract",
3699
+ /**
3700
+ * Card displays mocked data, loaded using a data request as configured in the manifest.
3701
+ */
3702
+ MockData = "MockData",
3703
+ /**
3704
+ * Card displays real data.
3705
+ */
3706
+ Off = "Off",
3707
+ }
3592
3708
  /**
3593
3709
  * @EXPERIMENTAL (since 1.79)
3594
3710
  *
@@ -3730,6 +3846,8 @@ declare namespace sap {
3730
3846
 
3731
3847
  "sap/ui/integration/editor/Editor": undefined;
3732
3848
 
3849
+ "sap/ui/integration/editor/EditorResourceBundles": undefined;
3850
+
3733
3851
  "sap/ui/integration/editor/Extension": undefined;
3734
3852
 
3735
3853
  "sap/ui/integration/editor/fields/BaseField": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -106,6 +106,8 @@ declare namespace sap {
106
106
 
107
107
  "sap/ui/mdc/filterbar/FilterBarBase": undefined;
108
108
 
109
+ "sap/ui/mdc/filterbar/p13n/AdaptationFilterBar": undefined;
110
+
109
111
  "sap/ui/mdc/filterbar/vh/CollectiveSearchSelect": undefined;
110
112
 
111
113
  "sap/ui/mdc/filterbar/vh/FilterBar": undefined;
@@ -146,14 +148,10 @@ declare namespace sap {
146
148
 
147
149
  "sap/ui/mdc/odata/v4/ValueHelpDelegate": undefined;
148
150
 
149
- "sap/ui/mdc/p13n/Engine": undefined;
150
-
151
151
  "sap/ui/mdc/p13n/panels/FilterPanel": undefined;
152
152
 
153
153
  "sap/ui/mdc/p13n/StateUtil": undefined;
154
154
 
155
- "sap/ui/mdc/p13n/subcontroller/BaseController": undefined;
156
-
157
155
  "sap/ui/mdc/p13n/UIManager": undefined;
158
156
 
159
157
  "sap/ui/mdc/Table": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -13,14 +13,16 @@ declare namespace sap {
13
13
  extends sap.ui.table.plugins.$SelectionPluginSettings {
14
14
  /**
15
15
  * Number of indices which can be selected in a range. Accepts positive integer values. If set to 0, the
16
- * limit is disabled, and the Select All checkbox appears instead of the Deselect All button. **Note:**
17
- * To avoid severe performance problems, the limit should only be set to 0 in the following cases:
16
+ * limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
17
+ *
18
+ * **Note:** To avoid severe performance problems, the limit should only be set to 0 in the following cases:
18
19
  *
19
20
  * - With client-side models
20
21
  * - With server-side models if they are used in client mode
21
- * - If the entity set is small In other cases, we recommend to set the limit to at least double
22
- * the value of the {@link sap.ui.table.Table#getThreshold threshold} property of the related `sap.ui.table.Table`
23
- * control.
22
+ * - If the entity set is small
23
+ *
24
+ * In other cases, we recommend to set the limit to at least double the value of the {@link sap.ui.table.Table#getThreshold
25
+ * threshold} property of the related `sap.ui.table.Table` control.
24
26
  */
25
27
  limit?:
26
28
  | int
@@ -75,16 +77,16 @@ declare namespace sap {
75
77
  * Implements a plugin to enable a special multi-selection behavior:
76
78
  * - No Select All checkbox, select all can only be done via range selection
77
79
  * - Dedicated Deselect All button to clear the selection
78
- * - The number of indices which can be selected in a range is defined by the `limit` property by the
79
- * application. If the user tries to select more indices, the selection is automatically limited, and the
80
- * table scrolls to the last selected index.
80
+ * - The number of indices which can be selected in a range is defined by the `limit` property. If the
81
+ * user tries to select more indices, the selection is automatically limited, and the table scrolls to the
82
+ * last selected index.
81
83
  * - The plugin makes sure that the corresponding binding contexts up to the given limit are available,
82
84
  * by requesting them from the binding.
83
85
  * - Multiple consecutive selections are possible
84
86
  *
85
- * This plugin is intended for the multi-selection mode, but also supports single selection for ease of
86
- * use. When this plugin is applied to the table, the table's selection mode is automatically set to MultiToggle
87
- * and cannot be changed.
87
+ * This plugin is intended for server-side models and multi-selection mode. Range selections, including
88
+ * Select All, only work properly if the count is known. Make sure the model/binding is configured to request
89
+ * the count from the service. For ease of use, client-side models and single selection are also supported.
88
90
  */
89
91
  class MultiSelectionPlugin extends sap.ui.table.plugins
90
92
  .SelectionPlugin {
@@ -270,14 +272,16 @@ declare namespace sap {
270
272
  * Gets current value of property {@link #getLimit limit}.
271
273
  *
272
274
  * Number of indices which can be selected in a range. Accepts positive integer values. If set to 0, the
273
- * limit is disabled, and the Select All checkbox appears instead of the Deselect All button. **Note:**
274
- * To avoid severe performance problems, the limit should only be set to 0 in the following cases:
275
+ * limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
276
+ *
277
+ * **Note:** To avoid severe performance problems, the limit should only be set to 0 in the following cases:
275
278
  *
276
279
  * - With client-side models
277
280
  * - With server-side models if they are used in client mode
278
- * - If the entity set is small In other cases, we recommend to set the limit to at least double
279
- * the value of the {@link sap.ui.table.Table#getThreshold threshold} property of the related `sap.ui.table.Table`
280
- * control.
281
+ * - If the entity set is small
282
+ *
283
+ * In other cases, we recommend to set the limit to at least double the value of the {@link sap.ui.table.Table#getThreshold
284
+ * threshold} property of the related `sap.ui.table.Table` control.
281
285
  *
282
286
  * Default value is `200`.
283
287
  *
@@ -378,14 +382,16 @@ declare namespace sap {
378
382
  * Sets a new value for property {@link #getLimit limit}.
379
383
  *
380
384
  * Number of indices which can be selected in a range. Accepts positive integer values. If set to 0, the
381
- * limit is disabled, and the Select All checkbox appears instead of the Deselect All button. **Note:**
382
- * To avoid severe performance problems, the limit should only be set to 0 in the following cases:
385
+ * limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
386
+ *
387
+ * **Note:** To avoid severe performance problems, the limit should only be set to 0 in the following cases:
383
388
  *
384
389
  * - With client-side models
385
390
  * - With server-side models if they are used in client mode
386
- * - If the entity set is small In other cases, we recommend to set the limit to at least double
387
- * the value of the {@link sap.ui.table.Table#getThreshold threshold} property of the related `sap.ui.table.Table`
388
- * control.
391
+ * - If the entity set is small
392
+ *
393
+ * In other cases, we recommend to set the limit to at least double the value of the {@link sap.ui.table.Table#getThreshold
394
+ * threshold} property of the related `sap.ui.table.Table` control.
389
395
  *
390
396
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
391
397
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -8651,7 +8651,7 @@ declare namespace sap {
8651
8651
  /**
8652
8652
  * New value for property `primaryCalendarType`
8653
8653
  */
8654
- sPrimaryCalendarType: sap.ui.core.CalendarType
8654
+ sPrimaryCalendarType?: sap.ui.core.CalendarType
8655
8655
  ): this;
8656
8656
  /**
8657
8657
  * @SINCE 1.34.0
@@ -8669,7 +8669,7 @@ declare namespace sap {
8669
8669
  /**
8670
8670
  * New value for property `secondaryCalendarType`
8671
8671
  */
8672
- sSecondaryCalendarType: sap.ui.core.CalendarType
8672
+ sSecondaryCalendarType?: sap.ui.core.CalendarType
8673
8673
  ): this;
8674
8674
  /**
8675
8675
  * Sets the visibility of the Current date button in the calendar.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -2165,10 +2165,9 @@ declare namespace sap {
2165
2165
  * Defines the unique identifier (icon name) of the component.
2166
2166
  *
2167
2167
  *
2168
- * To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons
2169
- * SAP Icons}, {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT SAP TNT
2170
- * Icons} and {@link https://ui5.sap.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/BusinessSuiteInAppSymbols
2171
- * SAP Business Suite Icons} collections.
2168
+ * To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Icons},
2169
+ * {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT SAP Fiori Tools} and
2170
+ * {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Business Suite} collections.
2172
2171
  *
2173
2172
  *
2174
2173
  * Example:
@@ -13448,7 +13447,7 @@ declare namespace sap {
13448
13447
  /**
13449
13448
  * A Java Script date object to be formatted as string
13450
13449
  */
13451
- date: Date
13450
+ date: object
13452
13451
  ): void;
13453
13452
  /**
13454
13453
  * Gets current value of property {@link #getAccessibleName accessibleName}.
@@ -14259,7 +14258,7 @@ declare namespace sap {
14259
14258
  /**
14260
14259
  * A Java Script date object to be formatted as string
14261
14260
  */
14262
- date: Date
14261
+ date: object
14263
14262
  ): void;
14264
14263
  /**
14265
14264
  * Gets current value of property {@link #getAccessibleName accessibleName}.
@@ -15144,7 +15143,7 @@ declare namespace sap {
15144
15143
  /**
15145
15144
  * A Java Script date object to be formatted as string
15146
15145
  */
15147
- date: Date
15146
+ date: object
15148
15147
  ): void;
15149
15148
  /**
15150
15149
  * Gets current value of property {@link #getAccessibleName accessibleName}.
@@ -17586,10 +17585,9 @@ declare namespace sap {
17586
17585
  * Defines the unique identifier (icon name) of the component.
17587
17586
  *
17588
17587
  *
17589
- * To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons
17590
- * SAP Icons}, {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT SAP TNT
17591
- * Icons} and {@link https://ui5.sap.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/BusinessSuiteInAppSymbols
17592
- * SAP Business Suite Icons} collections.
17588
+ * To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Icons},
17589
+ * {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT SAP Fiori Tools} and
17590
+ * {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Business Suite} collections.
17593
17591
  *
17594
17592
  *
17595
17593
  * Example:
@@ -17741,10 +17739,9 @@ declare namespace sap {
17741
17739
  * Defines the unique identifier (icon name) of the component.
17742
17740
  *
17743
17741
  *
17744
- * To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons
17745
- * SAP Icons}, {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT SAP TNT
17746
- * Icons} and {@link https://ui5.sap.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/BusinessSuiteInAppSymbols
17747
- * SAP Business Suite Icons} collections.
17742
+ * To browse all available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Icons},
17743
+ * {@link demo:sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT SAP Fiori Tools} and
17744
+ * {@link demo:sap/m/demokit/iconExplorer/webapp/index.html SAP Business Suite} collections.
17748
17745
  *
17749
17746
  *
17750
17747
  * Example:
@@ -36591,7 +36588,7 @@ declare namespace sap {
36591
36588
  /**
36592
36589
  * A Java Script date object to be formatted as string
36593
36590
  */
36594
- date: Date
36591
+ date: object
36595
36592
  ): void;
36596
36593
  /**
36597
36594
  * Returns the currently selected time represented as JavaScript Date instance
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.111.6
1
+ // For Library Version: 1.112.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**