@openui5/ts-types 1.133.1 → 1.135.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.133.1
1
+ // For Library Version: 1.135.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1157,6 +1157,15 @@ declare namespace sap {
1157
1157
  */
1158
1158
  sKey: string
1159
1159
  ): sap.m.p13n.MetadataObject | undefined;
1160
+ /**
1161
+ * Gets a list of properties that are redundant and should be filtered out in the {@link sap.ui.mdc.p13n.SelectionController }
1162
+ * for personalization.
1163
+ *
1164
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1165
+ *
1166
+ * @returns A list of properties
1167
+ */
1168
+ getRedundantProperties(): object[];
1160
1169
  }
1161
1170
  /**
1162
1171
  * This control can be used to show personalization-related content in different popup controls.
@@ -1488,6 +1497,10 @@ declare namespace sap {
1488
1497
  * Width configuration for the related popup container
1489
1498
  */
1490
1499
  contentWidth?: sap.ui.core.CSSSize;
1500
+ /**
1501
+ * Key of active panel that is opened initially
1502
+ */
1503
+ activePanel?: string;
1491
1504
  }
1492
1505
  ): void;
1493
1506
  /**
@@ -2464,6 +2477,13 @@ declare namespace sap {
2464
2477
  ): object | undefined;
2465
2478
  }
2466
2479
 
2480
+ namespace Dialog {
2481
+ /**
2482
+ * Escape handler for sap.m.Dialog control.
2483
+ */
2484
+ type EscapeHandler = (oHandlers: object) => void;
2485
+ }
2486
+
2467
2487
  namespace MessageBox {
2468
2488
  /**
2469
2489
  * Enumeration of supported actions in a MessageBox.
@@ -17787,6 +17807,13 @@ declare namespace sap {
17787
17807
  uploadCompleted?: (
17788
17808
  oEvent: UploaderTableItem$UploadCompletedEvent
17789
17809
  ) => void;
17810
+
17811
+ /**
17812
+ * The event is fired when an XHR request reports its termination.
17813
+ */
17814
+ uploadTerminated?: (
17815
+ oEvent: UploaderTableItem$UploadTerminatedEvent
17816
+ ) => void;
17790
17817
  }
17791
17818
 
17792
17819
  /**
@@ -17857,6 +17884,16 @@ declare namespace sap {
17857
17884
  | sap.ui.core.Item
17858
17885
  | sap.ui.base.ManagedObject.AggregationBindingInfo
17859
17886
  | `{${string}}`;
17887
+
17888
+ /**
17889
+ * The event is fired every time an XHR request reports progress while uploading.
17890
+ */
17891
+ uploadProgress?: (oEvent: UploadItem$UploadProgressEvent) => void;
17892
+
17893
+ /**
17894
+ * This event is fired right after the upload is terminated.
17895
+ */
17896
+ uploadTerminated?: (oEvent: UploadItem$UploadTerminatedEvent) => void;
17860
17897
  }
17861
17898
 
17862
17899
  /**
@@ -18572,6 +18609,43 @@ declare namespace sap {
18572
18609
  item?: any;
18573
18610
  }
18574
18611
 
18612
+ /**
18613
+ * Parameters of the UploaderTableItem#uploadTerminated event.
18614
+ */
18615
+ interface UploaderTableItem$UploadTerminatedEventParameters {
18616
+ /**
18617
+ * The item that is going to be deleted.
18618
+ */
18619
+ item?: sap.m.upload.UploadItem;
18620
+ }
18621
+
18622
+ /**
18623
+ * Parameters of the UploadItem#uploadProgress event.
18624
+ */
18625
+ interface UploadItem$UploadProgressEventParameters {
18626
+ /**
18627
+ * The number of bytes transferred since the beginning of the operation. laoded parameter doesn't include
18628
+ * headers and other overhead, but only the content itself
18629
+ */
18630
+ loaded?: int;
18631
+
18632
+ /**
18633
+ * The total number of bytes of content that is transferred during the operation. If the total size is unknown,
18634
+ * this value is zero.
18635
+ */
18636
+ total?: int;
18637
+ }
18638
+
18639
+ /**
18640
+ * Parameters of the UploadItem#uploadTerminated event.
18641
+ */
18642
+ interface UploadItem$UploadTerminatedEventParameters {
18643
+ /**
18644
+ * The file whose upload has just been terminated.
18645
+ */
18646
+ item?: sap.m.upload.UploadItem;
18647
+ }
18648
+
18575
18649
  /**
18576
18650
  * Parameters of the UploadSet#afterItemAdded event.
18577
18651
  */
@@ -20127,6 +20201,55 @@ declare namespace sap {
20127
20201
  */
20128
20202
  oListener?: object
20129
20203
  ): this;
20204
+ /**
20205
+ * Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
20206
+ * this `sap.m.upload.UploaderTableItem`.
20207
+ *
20208
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
20209
+ * otherwise it will be bound to this `sap.m.upload.UploaderTableItem` itself.
20210
+ *
20211
+ * The event is fired when an XHR request reports its termination.
20212
+ *
20213
+ *
20214
+ * @returns Reference to `this` in order to allow method chaining
20215
+ */
20216
+ attachUploadTerminated(
20217
+ /**
20218
+ * An application-specific payload object that will be passed to the event handler along with the event
20219
+ * object when firing the event
20220
+ */
20221
+ oData: object,
20222
+ /**
20223
+ * The function to be called when the event occurs
20224
+ */
20225
+ fnFunction: (p1: UploaderTableItem$UploadTerminatedEvent) => void,
20226
+ /**
20227
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploaderTableItem` itself
20228
+ */
20229
+ oListener?: object
20230
+ ): this;
20231
+ /**
20232
+ * Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
20233
+ * this `sap.m.upload.UploaderTableItem`.
20234
+ *
20235
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
20236
+ * otherwise it will be bound to this `sap.m.upload.UploaderTableItem` itself.
20237
+ *
20238
+ * The event is fired when an XHR request reports its termination.
20239
+ *
20240
+ *
20241
+ * @returns Reference to `this` in order to allow method chaining
20242
+ */
20243
+ attachUploadTerminated(
20244
+ /**
20245
+ * The function to be called when the event occurs
20246
+ */
20247
+ fnFunction: (p1: UploaderTableItem$UploadTerminatedEvent) => void,
20248
+ /**
20249
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploaderTableItem` itself
20250
+ */
20251
+ oListener?: object
20252
+ ): this;
20130
20253
  /**
20131
20254
  * Detaches event handler `fnFunction` from the {@link #event:uploadCompleted uploadCompleted} event of
20132
20255
  * this `sap.m.upload.UploaderTableItem`.
@@ -20184,6 +20307,25 @@ declare namespace sap {
20184
20307
  */
20185
20308
  oListener?: object
20186
20309
  ): this;
20310
+ /**
20311
+ * Detaches event handler `fnFunction` from the {@link #event:uploadTerminated uploadTerminated} event of
20312
+ * this `sap.m.upload.UploaderTableItem`.
20313
+ *
20314
+ * The passed function and listener object must match the ones used for event registration.
20315
+ *
20316
+ *
20317
+ * @returns Reference to `this` in order to allow method chaining
20318
+ */
20319
+ detachUploadTerminated(
20320
+ /**
20321
+ * The function to be called, when the event occurs
20322
+ */
20323
+ fnFunction: (p1: UploaderTableItem$UploadTerminatedEvent) => void,
20324
+ /**
20325
+ * Context object on which the given function had to be called
20326
+ */
20327
+ oListener?: object
20328
+ ): this;
20187
20329
  /**
20188
20330
  * Starts the process of downloading a file.
20189
20331
  *
@@ -20243,6 +20385,19 @@ declare namespace sap {
20243
20385
  */
20244
20386
  mParameters?: sap.m.upload.UploaderTableItem$UploadStartedEventParameters
20245
20387
  ): this;
20388
+ /**
20389
+ * Fires event {@link #event:uploadTerminated uploadTerminated} to attached listeners.
20390
+ *
20391
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
20392
+ *
20393
+ * @returns Reference to `this` in order to allow method chaining
20394
+ */
20395
+ fireUploadTerminated(
20396
+ /**
20397
+ * Parameters to pass along with the event
20398
+ */
20399
+ mParameters?: sap.m.upload.UploaderTableItem$UploadTerminatedEventParameters
20400
+ ): this;
20246
20401
  /**
20247
20402
  * Gets current value of property {@link #getDownloadUrl downloadUrl}.
20248
20403
  *
@@ -20353,6 +20508,15 @@ declare namespace sap {
20353
20508
  */
20354
20509
  bUseMultipart?: boolean
20355
20510
  ): this;
20511
+ /**
20512
+ * Attempts to terminate the process of uploading the specified file.
20513
+ */
20514
+ terminateItem(
20515
+ /**
20516
+ * Item representing the file whose ongoing upload process is to be terminated.
20517
+ */
20518
+ oItem: sap.m.upload.UploadItem
20519
+ ): void;
20356
20520
  /**
20357
20521
  * Starts the process of uploading the specified file.
20358
20522
  */
@@ -20450,6 +20614,104 @@ declare namespace sap {
20450
20614
  */
20451
20615
  oHeaderField: sap.ui.core.Item
20452
20616
  ): this;
20617
+ /**
20618
+ * Attaches event handler `fnFunction` to the {@link #event:uploadProgress uploadProgress} event of this
20619
+ * `sap.m.upload.UploadItem`.
20620
+ *
20621
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
20622
+ * otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
20623
+ *
20624
+ * The event is fired every time an XHR request reports progress while uploading.
20625
+ *
20626
+ *
20627
+ * @returns Reference to `this` in order to allow method chaining
20628
+ */
20629
+ attachUploadProgress(
20630
+ /**
20631
+ * An application-specific payload object that will be passed to the event handler along with the event
20632
+ * object when firing the event
20633
+ */
20634
+ oData: object,
20635
+ /**
20636
+ * The function to be called when the event occurs
20637
+ */
20638
+ fnFunction: (p1: UploadItem$UploadProgressEvent) => void,
20639
+ /**
20640
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
20641
+ */
20642
+ oListener?: object
20643
+ ): this;
20644
+ /**
20645
+ * Attaches event handler `fnFunction` to the {@link #event:uploadProgress uploadProgress} event of this
20646
+ * `sap.m.upload.UploadItem`.
20647
+ *
20648
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
20649
+ * otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
20650
+ *
20651
+ * The event is fired every time an XHR request reports progress while uploading.
20652
+ *
20653
+ *
20654
+ * @returns Reference to `this` in order to allow method chaining
20655
+ */
20656
+ attachUploadProgress(
20657
+ /**
20658
+ * The function to be called when the event occurs
20659
+ */
20660
+ fnFunction: (p1: UploadItem$UploadProgressEvent) => void,
20661
+ /**
20662
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
20663
+ */
20664
+ oListener?: object
20665
+ ): this;
20666
+ /**
20667
+ * Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
20668
+ * this `sap.m.upload.UploadItem`.
20669
+ *
20670
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
20671
+ * otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
20672
+ *
20673
+ * This event is fired right after the upload is terminated.
20674
+ *
20675
+ *
20676
+ * @returns Reference to `this` in order to allow method chaining
20677
+ */
20678
+ attachUploadTerminated(
20679
+ /**
20680
+ * An application-specific payload object that will be passed to the event handler along with the event
20681
+ * object when firing the event
20682
+ */
20683
+ oData: object,
20684
+ /**
20685
+ * The function to be called when the event occurs
20686
+ */
20687
+ fnFunction: (p1: UploadItem$UploadTerminatedEvent) => void,
20688
+ /**
20689
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
20690
+ */
20691
+ oListener?: object
20692
+ ): this;
20693
+ /**
20694
+ * Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
20695
+ * this `sap.m.upload.UploadItem`.
20696
+ *
20697
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
20698
+ * otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
20699
+ *
20700
+ * This event is fired right after the upload is terminated.
20701
+ *
20702
+ *
20703
+ * @returns Reference to `this` in order to allow method chaining
20704
+ */
20705
+ attachUploadTerminated(
20706
+ /**
20707
+ * The function to be called when the event occurs
20708
+ */
20709
+ fnFunction: (p1: UploadItem$UploadTerminatedEvent) => void,
20710
+ /**
20711
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
20712
+ */
20713
+ oListener?: object
20714
+ ): this;
20453
20715
  /**
20454
20716
  * Destroys all the headerFields in the aggregation {@link #getHeaderFields headerFields}.
20455
20717
  *
@@ -20457,6 +20719,44 @@ declare namespace sap {
20457
20719
  * @returns Reference to `this` in order to allow method chaining
20458
20720
  */
20459
20721
  destroyHeaderFields(): this;
20722
+ /**
20723
+ * Detaches event handler `fnFunction` from the {@link #event:uploadProgress uploadProgress} event of this
20724
+ * `sap.m.upload.UploadItem`.
20725
+ *
20726
+ * The passed function and listener object must match the ones used for event registration.
20727
+ *
20728
+ *
20729
+ * @returns Reference to `this` in order to allow method chaining
20730
+ */
20731
+ detachUploadProgress(
20732
+ /**
20733
+ * The function to be called, when the event occurs
20734
+ */
20735
+ fnFunction: (p1: UploadItem$UploadProgressEvent) => void,
20736
+ /**
20737
+ * Context object on which the given function had to be called
20738
+ */
20739
+ oListener?: object
20740
+ ): this;
20741
+ /**
20742
+ * Detaches event handler `fnFunction` from the {@link #event:uploadTerminated uploadTerminated} event of
20743
+ * this `sap.m.upload.UploadItem`.
20744
+ *
20745
+ * The passed function and listener object must match the ones used for event registration.
20746
+ *
20747
+ *
20748
+ * @returns Reference to `this` in order to allow method chaining
20749
+ */
20750
+ detachUploadTerminated(
20751
+ /**
20752
+ * The function to be called, when the event occurs
20753
+ */
20754
+ fnFunction: (p1: UploadItem$UploadTerminatedEvent) => void,
20755
+ /**
20756
+ * Context object on which the given function had to be called
20757
+ */
20758
+ oListener?: object
20759
+ ): this;
20460
20760
  /**
20461
20761
  * Downloads the item. Only possible when the item has a valid URL specified in the `url` property.
20462
20762
  *
@@ -20469,6 +20769,32 @@ declare namespace sap {
20469
20769
  */
20470
20770
  bAskForLocation: boolean
20471
20771
  ): boolean;
20772
+ /**
20773
+ * Fires event {@link #event:uploadProgress uploadProgress} to attached listeners.
20774
+ *
20775
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
20776
+ *
20777
+ * @returns Reference to `this` in order to allow method chaining
20778
+ */
20779
+ fireUploadProgress(
20780
+ /**
20781
+ * Parameters to pass along with the event
20782
+ */
20783
+ mParameters?: sap.m.upload.UploadItem$UploadProgressEventParameters
20784
+ ): this;
20785
+ /**
20786
+ * Fires event {@link #event:uploadTerminated uploadTerminated} to attached listeners.
20787
+ *
20788
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
20789
+ *
20790
+ * @returns Reference to `this` in order to allow method chaining
20791
+ */
20792
+ fireUploadTerminated(
20793
+ /**
20794
+ * Parameters to pass along with the event
20795
+ */
20796
+ mParameters?: sap.m.upload.UploadItem$UploadTerminatedEventParameters
20797
+ ): this;
20472
20798
  /**
20473
20799
  * Returns the details of the file selected from the CloudFilePicker control.
20474
20800
  *
@@ -20767,6 +21093,14 @@ declare namespace sap {
20767
21093
  */
20768
21094
  sUrl?: string
20769
21095
  ): this;
21096
+ /**
21097
+ * API to terminate the upload of an item. With success, the event `uploadTerminated` is fired on the `UploadItem`.
21098
+ * Termination is only possible if the item is in `Uploading` state and uploadItem is associated with `UploadSetwithTable`
21099
+ * plugin.
21100
+ *
21101
+ * @since 1.134
21102
+ */
21103
+ terminateUpload(): void;
20770
21104
  }
20771
21105
  /**
20772
21106
  * `sap.m.UploadItemConfiguration` represents the configuration for the items in the {@link sap.m.plugins.UploadSetwithTable UploadSetwithTable }
@@ -24894,6 +25228,30 @@ declare namespace sap {
24894
25228
  UploaderTableItem
24895
25229
  >;
24896
25230
 
25231
+ /**
25232
+ * Event object of the UploaderTableItem#uploadTerminated event.
25233
+ */
25234
+ type UploaderTableItem$UploadTerminatedEvent = sap.ui.base.Event<
25235
+ UploaderTableItem$UploadTerminatedEventParameters,
25236
+ UploaderTableItem
25237
+ >;
25238
+
25239
+ /**
25240
+ * Event object of the UploadItem#uploadProgress event.
25241
+ */
25242
+ type UploadItem$UploadProgressEvent = sap.ui.base.Event<
25243
+ UploadItem$UploadProgressEventParameters,
25244
+ UploadItem
25245
+ >;
25246
+
25247
+ /**
25248
+ * Event object of the UploadItem#uploadTerminated event.
25249
+ */
25250
+ type UploadItem$UploadTerminatedEvent = sap.ui.base.Event<
25251
+ UploadItem$UploadTerminatedEventParameters,
25252
+ UploadItem
25253
+ >;
25254
+
24897
25255
  /**
24898
25256
  * Event object of the UploadSet#afterItemAdded event.
24899
25257
  */
@@ -25209,6 +25567,17 @@ declare namespace sap {
25209
25567
  __implements__sap_m_ITableItem: boolean;
25210
25568
  }
25211
25569
 
25570
+ /**
25571
+ * Interface for controls placed in the `content` aggregation of `{@link sap.m.Toolbar}` or `{@link sap.m.OverflowToolbar}`,
25572
+ * which need to indicate whether they are interactive or not.
25573
+ *
25574
+ * Controls that implement this interface should have the following method: `_getToolbarInteractive` - returns
25575
+ * boolean value that shows whether the control is interactive or not
25576
+ */
25577
+ interface IToolbarInteractiveControl {
25578
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
25579
+ }
25580
+
25212
25581
  /**
25213
25582
  * sap.m.NavContainerChild is an artificial interface with the only purpose to bear the documentation of
25214
25583
  * pseudo events triggered by sap.m.NavContainer on its child controls when navigation occurs and child
@@ -27829,15 +28198,15 @@ declare namespace sap {
27829
28198
  | `{${string}}`;
27830
28199
 
27831
28200
  /**
27832
- * This property expects a function with one parameter of type Promise. In the function, you should call
27833
- * either `resolve()` or `reject()` on the Promise object.
27834
- * The function allows you to define custom behavior which will be executed when the Escape key is pressed.
27835
- * By default, when the Escape key is pressed, the Dialog is immediately closed.
28201
+ * This property allows to define custom behavior if the Escape key is pressed. By default, the Dialog is
28202
+ * closed.
28203
+ * The property expects a function with one object parameter with `resolve` and `reject` properties. In
28204
+ * the function, either call `resolve` to close the dialog or call `reject` to prevent it from being closed.
27836
28205
  *
27837
28206
  * @since 1.44
27838
28207
  */
27839
28208
  escapeHandler?:
27840
- | Function
28209
+ | sap.m.Dialog.EscapeHandler
27841
28210
  | sap.ui.base.ManagedObject.PropertyBindingInfo
27842
28211
  | `{${string}}`;
27843
28212
 
@@ -29146,6 +29515,38 @@ declare namespace sap {
29146
29515
  | sap.ui.base.ManagedObject.PropertyBindingInfo
29147
29516
  | `{${string}}`;
29148
29517
 
29518
+ /**
29519
+ * The size of the gap between columns and rows. It serves as a shorthand property for `rowGap` and `columnGap`
29520
+ * properties. If either of the properties is set, the `gap` value will have lower priority and will be
29521
+ * overwritten.
29522
+ *
29523
+ * @since 1.134
29524
+ */
29525
+ gap?:
29526
+ | sap.ui.core.CSSGapShortHand
29527
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
29528
+ | `{${string}}`;
29529
+
29530
+ /**
29531
+ * The size of the gap between rows.
29532
+ *
29533
+ * @since 1.134
29534
+ */
29535
+ rowGap?:
29536
+ | sap.ui.core.CSSSize
29537
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
29538
+ | `{${string}}`;
29539
+
29540
+ /**
29541
+ * The size of the gap between columns.
29542
+ *
29543
+ * @since 1.134
29544
+ */
29545
+ columnGap?:
29546
+ | sap.ui.core.CSSSize
29547
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
29548
+ | `{${string}}`;
29549
+
29149
29550
  /**
29150
29551
  * Flex items within the flexible box layout
29151
29552
  */
@@ -29563,6 +29964,9 @@ declare namespace sap {
29563
29964
  /**
29564
29965
  * Additional description for aria-role.
29565
29966
  *
29967
+ * **Note:** When the control is placed inside a `sap.f.GridContainer`, its accessibility role is overridden
29968
+ * by the accessibility role specified by the `sap.f.GridContainer`.
29969
+ *
29566
29970
  * @since 1.83
29567
29971
  */
29568
29972
  ariaRole?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
@@ -39564,8 +39968,8 @@ declare namespace sap {
39564
39968
  * bound model (progressive loading). **Note:** This feature only works when an `items` aggregation is bound.
39565
39969
  * **Note:** Growing property, must not be used together with two-way binding. **Note:** If the property
39566
39970
  * is set to `true`, selected count (if present) and search, will work for currently loaded items only.
39567
- * To make sure that all items in the table are loaded at once and the above features work properly, we
39568
- * recommend setting the `growing` property to false.
39971
+ * To make sure that all items in the list are loaded at once and the above features work properly, we recommend
39972
+ * setting the `growing` property to false.
39569
39973
  *
39570
39974
  * @since 1.56
39571
39975
  */
@@ -42793,7 +43197,15 @@ declare namespace sap {
42793
43197
  /**
42794
43198
  * Describes the settings that can be provided to the TimePickerClocks constructor.
42795
43199
  */
42796
- interface $TimePickerClocksSettings extends sap.ui.core.$ControlSettings {}
43200
+ interface $TimePickerClocksSettings extends sap.ui.core.$ControlSettings {
43201
+ /**
43202
+ * When set to `true`, the clock will be displayed without the animation.
43203
+ */
43204
+ skipAnimation?:
43205
+ | boolean
43206
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
43207
+ | `{${string}}`;
43208
+ }
42797
43209
 
42798
43210
  /**
42799
43211
  * Describes the settings that can be provided to the TimePickerInputs constructor.
@@ -48992,7 +49404,11 @@ declare namespace sap {
48992
49404
  /**
48993
49405
  * whether or not all of the assets for the Illustration Set should be loaded once the metadata is loaded
48994
49406
  */
48995
- bLoadAllResources: boolean
49407
+ bLoadAllResources: boolean,
49408
+ /**
49409
+ * optional array containing the Illustration Set symbols
49410
+ */
49411
+ aOptionalSymbols: any[]
48996
49412
  ): void;
48997
49413
  }
48998
49414
 
@@ -54882,7 +55298,7 @@ declare namespace sap {
54882
55298
  sap.m.IBreadcrumbs,
54883
55299
  sap.m.IOverflowToolbarContent,
54884
55300
  sap.ui.core.IShrinkable,
54885
- /* was: sap.m.IToolbarInteractiveControl */ Object
55301
+ sap.m.IToolbarInteractiveControl
54886
55302
  {
54887
55303
  __implements__sap_m_IBreadcrumbs: boolean;
54888
55304
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -56082,7 +56498,7 @@ declare namespace sap {
56082
56498
  implements
56083
56499
  sap.ui.core.IFormContent,
56084
56500
  sap.ui.core.IAccessKeySupport,
56085
- /* was: sap.m.IToolbarInteractiveControl */ Object
56501
+ sap.m.IToolbarInteractiveControl
56086
56502
  {
56087
56503
  __implements__sap_ui_core_IFormContent: boolean;
56088
56504
  __implements__sap_ui_core_IAccessKeySupport: boolean;
@@ -57940,7 +58356,7 @@ declare namespace sap {
57940
58356
  sap.ui.core.IFormContent,
57941
58357
  sap.ui.core.ISemanticFormContent,
57942
58358
  sap.ui.core.IAccessKeySupport,
57943
- /* was: sap.m.IToolbarInteractiveControl */ Object
58359
+ sap.m.IToolbarInteractiveControl
57944
58360
  {
57945
58361
  __implements__sap_ui_core_IFormContent: boolean;
57946
58362
  __implements__sap_ui_core_ISemanticFormContent: boolean;
@@ -59005,7 +59421,7 @@ declare namespace sap {
59005
59421
  /**
59006
59422
  * the selected color
59007
59423
  */
59008
- color: sap.ui.core.CSSColor
59424
+ sColor: sap.ui.core.CSSColor
59009
59425
  ): this;
59010
59426
  /**
59011
59427
  * Sets a new value for property {@link #getColors colors}.
@@ -60578,7 +60994,7 @@ declare namespace sap {
60578
60994
  */
60579
60995
  class ComboBox
60580
60996
  extends sap.m.ComboBoxBase
60581
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
60997
+ implements sap.m.IToolbarInteractiveControl
60582
60998
  {
60583
60999
  __implements__sap_m_IToolbarInteractiveControl: boolean;
60584
61000
  /**
@@ -61642,7 +62058,7 @@ declare namespace sap {
61642
62058
  /**
61643
62059
  * A callback function called when typing in a ComboBoxBase control or ancestor.
61644
62060
  */
61645
- fnFilter?: (p1: string, p2: sap.ui.core.Item) => boolean
62061
+ fnFilter?: (p1?: string, p2?: sap.ui.core.Item) => boolean
61646
62062
  ): this;
61647
62063
  /**
61648
62064
  * Sets the property `_sPickerType`.
@@ -63073,7 +63489,7 @@ declare namespace sap {
63073
63489
  *
63074
63490
  * @returns the value of property `dateValue`
63075
63491
  */
63076
- getDateValue(): Date | import("sap/ui/core/date/UI5Date").default;
63492
+ getDateValue(): Date | import("sap/ui/core/date/UI5Date").default | null;
63077
63493
  /**
63078
63494
  * The date is displayed in the input field using this format. By default, the medium format of the used
63079
63495
  * locale is used.
@@ -63735,7 +64151,7 @@ declare namespace sap {
63735
64151
  *
63736
64152
  * @returns the value of property `dateValue`
63737
64153
  */
63738
- getDateValue(): Date | import("sap/ui/core/date/UI5Date").default;
64154
+ getDateValue(): Date | import("sap/ui/core/date/UI5Date").default | null;
63739
64155
  /**
63740
64156
  * Gets current value of property {@link #getDelimiter delimiter}.
63741
64157
  *
@@ -63755,7 +64171,7 @@ declare namespace sap {
63755
64171
  *
63756
64172
  * @returns the start date of the date range
63757
64173
  */
63758
- getFrom(): Date;
64174
+ getFrom(): Date | import("sap/ui/core/date/UI5Date").default | null;
63759
64175
  /**
63760
64176
  * Getter for property `secondDateValue`.
63761
64177
  *
@@ -63766,7 +64182,10 @@ declare namespace sap {
63766
64182
  *
63767
64183
  * @returns the value of property `secondDateValue`
63768
64184
  */
63769
- getSecondDateValue(): Date | import("sap/ui/core/date/UI5Date").default;
64185
+ getSecondDateValue():
64186
+ | Date
64187
+ | import("sap/ui/core/date/UI5Date").default
64188
+ | null;
63770
64189
  /**
63771
64190
  * Get the end date of the range.
63772
64191
  *
@@ -63774,7 +64193,7 @@ declare namespace sap {
63774
64193
  *
63775
64194
  * @returns the end date of the date range
63776
64195
  */
63777
- getTo(): Date | import("sap/ui/core/date/UI5Date").default;
64196
+ getTo(): Date | import("sap/ui/core/date/UI5Date").default | null;
63778
64197
  /**
63779
64198
  * Getter for property `value`.
63780
64199
  *
@@ -63811,7 +64230,7 @@ declare namespace sap {
63811
64230
  /**
63812
64231
  * New value for property `dateValue`
63813
64232
  */
63814
- oDateValue: Date | import("sap/ui/core/date/UI5Date").default
64233
+ oDateValue: Date | import("sap/ui/core/date/UI5Date").default | null
63815
64234
  ): this;
63816
64235
  /**
63817
64236
  * Sets a new value for property {@link #getDelimiter delimiter}.
@@ -63855,7 +64274,7 @@ declare namespace sap {
63855
64274
  /**
63856
64275
  * A date instance
63857
64276
  */
63858
- oFrom: Date | import("sap/ui/core/date/UI5Date").default
64277
+ oFrom: Date | import("sap/ui/core/date/UI5Date").default | null
63859
64278
  ): this;
63860
64279
  /**
63861
64280
  * Set maximum date that can be shown and selected in the `DatePicker`. This must be a UI5Date or JavaScript
@@ -63897,7 +64316,10 @@ declare namespace sap {
63897
64316
  /**
63898
64317
  * New value for property `dateValue`
63899
64318
  */
63900
- oSecondDateValue: Date | import("sap/ui/core/date/UI5Date").default
64319
+ oSecondDateValue:
64320
+ | Date
64321
+ | import("sap/ui/core/date/UI5Date").default
64322
+ | null
63901
64323
  ): this;
63902
64324
  /**
63903
64325
  * Set the end date of the range.
@@ -63910,7 +64332,7 @@ declare namespace sap {
63910
64332
  /**
63911
64333
  * A date instance
63912
64334
  */
63913
- oTo: Date | import("sap/ui/core/date/UI5Date").default
64335
+ oTo: Date | import("sap/ui/core/date/UI5Date").default | null
63914
64336
  ): this;
63915
64337
  /**
63916
64338
  * Setter for property `value`.
@@ -64104,18 +64526,16 @@ declare namespace sap {
64104
64526
  mParameters?: sap.m.DateTimeField$LiveChangeEventParameters
64105
64527
  ): this;
64106
64528
  /**
64107
- * Gets current value of property {@link #getDateValue dateValue}.
64529
+ * Getter for property `dateValue`.
64108
64530
  *
64109
- * Holds a reference to a UI5Date or JavaScript Date object. The `value` (string) property will be set according
64110
- * to it. Alternatively, if the `value` and `valueFormat` pair properties are supplied instead, the `dateValue`
64111
- * will be instantiated according to the parsed `value`. Use `dateValue` as a helper property to easily
64112
- * obtain the day, month, year, hours, minutes and seconds of the chosen date and time. Although possible
64113
- * to bind it, the recommendation is not to do it. When binding is needed, use `value` property instead.
64531
+ * The date and time in DateTimeField as UI5Date or JavaScript Date object.
64114
64532
  *
64533
+ * **Note:** If this property is used, the `value` property should not be changed from the caller.
64115
64534
  *
64116
- * @returns Value of property `dateValue`
64535
+ *
64536
+ * @returns the value of property `dateValue`
64117
64537
  */
64118
- getDateValue(): object;
64538
+ getDateValue(): Date | import("sap/ui/core/date/UI5Date").default | null;
64119
64539
  /**
64120
64540
  * Gets current value of property {@link #getDisplayFormat displayFormat}.
64121
64541
  *
@@ -64180,7 +64600,7 @@ declare namespace sap {
64180
64600
  /**
64181
64601
  * A date instance
64182
64602
  */
64183
- oDate: Date | import("sap/ui/core/date/UI5Date").default
64603
+ oDate: Date | import("sap/ui/core/date/UI5Date").default | null
64184
64604
  ): this;
64185
64605
  /**
64186
64606
  * Sets a new value for property {@link #getDisplayFormat displayFormat}.
@@ -64251,7 +64671,7 @@ declare namespace sap {
64251
64671
  */
64252
64672
  class DateTimeInput
64253
64673
  extends sap.ui.core.Control
64254
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
64674
+ implements sap.m.IToolbarInteractiveControl
64255
64675
  {
64256
64676
  __implements__sap_m_IToolbarInteractiveControl: boolean;
64257
64677
  /**
@@ -65963,21 +66383,16 @@ declare namespace sap {
65963
66383
  /**
65964
66384
  * Gets current value of property {@link #getEscapeHandler escapeHandler}.
65965
66385
  *
65966
- * This property expects a function with one parameter of type Promise. In the function, you should call
65967
- * either `resolve()` or `reject()` on the Promise object. The function allows you to define custom behavior
65968
- * which will be executed when the Escape key is pressed. By default, when the Escape key is pressed, the
65969
- * dialog is immediately closed.
66386
+ * This property allows to define custom behavior if the Escape key is pressed. By default, the Dialog is
66387
+ * closed.
66388
+ * The property expects a function with one object parameter with `resolve` and `reject` properties. In
66389
+ * the function, either call `resolve` to close the dialog or call `reject` to prevent it from being closed.
65970
66390
  *
66391
+ * @since 1.44
65971
66392
  *
65972
66393
  * @returns Value of property `escapeHandler`
65973
66394
  */
65974
- getEscapeHandler():
65975
- | ((p1: {
65976
- resolve: Function;
65977
-
65978
- reject: Function;
65979
- }) => void)
65980
- | null;
66395
+ getEscapeHandler(): sap.m.Dialog.EscapeHandler;
65981
66396
  /**
65982
66397
  * Gets content of aggregation {@link #getFooter footer}.
65983
66398
  *
@@ -66453,15 +66868,16 @@ declare namespace sap {
66453
66868
  oEndButton: sap.m.Button
66454
66869
  ): this;
66455
66870
  /**
66456
- * Sets a new value for property {@link #setEscapeHandler escapeHandler}.
66871
+ * Sets a new value for property {@link #getEscapeHandler escapeHandler}.
66457
66872
  *
66458
- * This property expects a function with one parameter of type Promise. In the function, you should call
66459
- * either `resolve()` or `reject()` on the Promise object. The function allows you to define custom behavior
66460
- * which will be executed when the Escape key is pressed. By default, when the Escape key is pressed, the
66461
- * dialog is immediately closed.
66873
+ * This property allows to define custom behavior if the Escape key is pressed. By default, the Dialog is
66874
+ * closed.
66875
+ * The property expects a function with one object parameter with `resolve` and `reject` properties. In
66876
+ * the function, either call `resolve` to close the dialog or call `reject` to prevent it from being closed.
66462
66877
  *
66463
66878
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
66464
66879
  *
66880
+ * @since 1.44
66465
66881
  *
66466
66882
  * @returns Reference to `this` in order to allow method chaining
66467
66883
  */
@@ -66469,11 +66885,7 @@ declare namespace sap {
66469
66885
  /**
66470
66886
  * New value for property `escapeHandler`
66471
66887
  */
66472
- fnEscapeHandler?: (p1: {
66473
- resolve: Function;
66474
-
66475
- reject: Function;
66476
- }) => void
66888
+ sEscapeHandler?: sap.m.Dialog.EscapeHandler
66477
66889
  ): this;
66478
66890
  /**
66479
66891
  * Sets the aggregated {@link #getFooter footer}.
@@ -72727,6 +73139,18 @@ declare namespace sap {
72727
73139
  * @returns Value of property `backgroundDesign`
72728
73140
  */
72729
73141
  getBackgroundDesign(): sap.m.BackgroundDesign;
73142
+ /**
73143
+ * Gets current value of property {@link #getColumnGap columnGap}.
73144
+ *
73145
+ * The size of the gap between columns.
73146
+ *
73147
+ * Default value is `empty string`.
73148
+ *
73149
+ * @since 1.134
73150
+ *
73151
+ * @returns Value of property `columnGap`
73152
+ */
73153
+ getColumnGap(): sap.ui.core.CSSSize;
72730
73154
  /**
72731
73155
  * Gets current value of property {@link #getDirection direction}.
72732
73156
  *
@@ -72762,6 +73186,20 @@ declare namespace sap {
72762
73186
  * @returns Value of property `fitContainer`
72763
73187
  */
72764
73188
  getFitContainer(): boolean;
73189
+ /**
73190
+ * Gets current value of property {@link #getGap gap}.
73191
+ *
73192
+ * The size of the gap between columns and rows. It serves as a shorthand property for `rowGap` and `columnGap`
73193
+ * properties. If either of the properties is set, the `gap` value will have lower priority and will be
73194
+ * overwritten.
73195
+ *
73196
+ * Default value is `empty string`.
73197
+ *
73198
+ * @since 1.134
73199
+ *
73200
+ * @returns Value of property `gap`
73201
+ */
73202
+ getGap(): sap.ui.core.CSSGapShortHand;
72765
73203
  /**
72766
73204
  * Gets current value of property {@link #getHeight height}.
72767
73205
  *
@@ -72805,6 +73243,18 @@ declare namespace sap {
72805
73243
  * @returns Value of property `renderType`
72806
73244
  */
72807
73245
  getRenderType(): sap.m.FlexRendertype;
73246
+ /**
73247
+ * Gets current value of property {@link #getRowGap rowGap}.
73248
+ *
73249
+ * The size of the gap between rows.
73250
+ *
73251
+ * Default value is `empty string`.
73252
+ *
73253
+ * @since 1.134
73254
+ *
73255
+ * @returns Value of property `rowGap`
73256
+ */
73257
+ getRowGap(): sap.ui.core.CSSSize;
72808
73258
  /**
72809
73259
  * Gets current value of property {@link #getWidth width}.
72810
73260
  *
@@ -72939,6 +73389,25 @@ declare namespace sap {
72939
73389
  */
72940
73390
  sBackgroundDesign?: sap.m.BackgroundDesign
72941
73391
  ): this;
73392
+ /**
73393
+ * Sets a new value for property {@link #getColumnGap columnGap}.
73394
+ *
73395
+ * The size of the gap between columns.
73396
+ *
73397
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
73398
+ *
73399
+ * Default value is `empty string`.
73400
+ *
73401
+ * @since 1.134
73402
+ *
73403
+ * @returns Reference to `this` in order to allow method chaining
73404
+ */
73405
+ setColumnGap(
73406
+ /**
73407
+ * New value for property `columnGap`
73408
+ */
73409
+ sColumnGap?: sap.ui.core.CSSSize
73410
+ ): this;
72942
73411
  /**
72943
73412
  * Sets a new value for property {@link #getDirection direction}.
72944
73413
  *
@@ -72995,6 +73464,27 @@ declare namespace sap {
72995
73464
  */
72996
73465
  bFitContainer?: boolean
72997
73466
  ): this;
73467
+ /**
73468
+ * Sets a new value for property {@link #getGap gap}.
73469
+ *
73470
+ * The size of the gap between columns and rows. It serves as a shorthand property for `rowGap` and `columnGap`
73471
+ * properties. If either of the properties is set, the `gap` value will have lower priority and will be
73472
+ * overwritten.
73473
+ *
73474
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
73475
+ *
73476
+ * Default value is `empty string`.
73477
+ *
73478
+ * @since 1.134
73479
+ *
73480
+ * @returns Reference to `this` in order to allow method chaining
73481
+ */
73482
+ setGap(
73483
+ /**
73484
+ * New value for property `gap`
73485
+ */
73486
+ sGap?: sap.ui.core.CSSGapShortHand
73487
+ ): this;
72998
73488
  /**
72999
73489
  * Sets a new value for property {@link #getHeight height}.
73000
73490
  *
@@ -73045,6 +73535,25 @@ declare namespace sap {
73045
73535
  */
73046
73536
  sValue: sap.m.FlexRendertype
73047
73537
  ): this;
73538
+ /**
73539
+ * Sets a new value for property {@link #getRowGap rowGap}.
73540
+ *
73541
+ * The size of the gap between rows.
73542
+ *
73543
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
73544
+ *
73545
+ * Default value is `empty string`.
73546
+ *
73547
+ * @since 1.134
73548
+ *
73549
+ * @returns Reference to `this` in order to allow method chaining
73550
+ */
73551
+ setRowGap(
73552
+ /**
73553
+ * New value for property `rowGap`
73554
+ */
73555
+ sRowGap?: sap.ui.core.CSSSize
73556
+ ): this;
73048
73557
  /**
73049
73558
  * Sets a new value for property {@link #getWidth width}.
73050
73559
  *
@@ -73881,9 +74390,7 @@ declare namespace sap {
73881
74390
  */
73882
74391
  class GenericTag
73883
74392
  extends sap.ui.core.Control
73884
- implements
73885
- sap.m.IOverflowToolbarContent,
73886
- /* was: sap.m.IToolbarInteractiveControl */ Object
74393
+ implements sap.m.IOverflowToolbarContent, sap.m.IToolbarInteractiveControl
73887
74394
  {
73888
74395
  __implements__sap_m_IOverflowToolbarContent: boolean;
73889
74396
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -74226,7 +74733,11 @@ declare namespace sap {
74226
74733
  *
74227
74734
  * @since 1.34.0
74228
74735
  */
74229
- class GenericTile extends sap.ui.core.Control {
74736
+ class GenericTile
74737
+ extends sap.ui.core.Control
74738
+ implements /* was: sap.f.IGridContainerItem */ Object
74739
+ {
74740
+ __implements__sap_f_IGridContainerItem: boolean;
74230
74741
  /**
74231
74742
  * Constructor for a new sap.m.GenericTile control.
74232
74743
  *
@@ -74533,7 +75044,8 @@ declare namespace sap {
74533
75044
  /**
74534
75045
  * Gets current value of property {@link #getAriaRole ariaRole}.
74535
75046
  *
74536
- * Additional description for aria-role.
75047
+ * Additional description for aria-role. *Note:** When the control is placed inside a `sap.f.GridContainer`,
75048
+ * its accessibility role is overridden by the accessibility role specified by the `sap.f.GridContainer`.
74537
75049
  *
74538
75050
  * @since 1.83
74539
75051
  *
@@ -74622,6 +75134,13 @@ declare namespace sap {
74622
75134
  * @returns Value of property `frameType`
74623
75135
  */
74624
75136
  getFrameType(): sap.m.FrameType;
75137
+ /**
75138
+ * Returns the accessibility role for the `sap.f.GridContainer` item.
75139
+ *
75140
+ *
75141
+ * @returns The accessibility role for the `sap.f.GridContainer` item
75142
+ */
75143
+ getGridItemRole(): string;
74625
75144
  /**
74626
75145
  * Gets current value of property {@link #getHeader header}.
74627
75146
  *
@@ -75085,7 +75604,8 @@ declare namespace sap {
75085
75604
  /**
75086
75605
  * Sets a new value for property {@link #getAriaRole ariaRole}.
75087
75606
  *
75088
- * Additional description for aria-role.
75607
+ * Additional description for aria-role. *Note:** When the control is placed inside a `sap.f.GridContainer`,
75608
+ * its accessibility role is overridden by the accessibility role specified by the `sap.f.GridContainer`.
75089
75609
  *
75090
75610
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
75091
75611
  *
@@ -75629,6 +76149,11 @@ declare namespace sap {
75629
76149
  * in `sap.m.List` and `sap.m.Table`. **Note:** The inherited properties `unread`, `selected`, `counter`
75630
76150
  * and `press` event from `sap.m.ListItemBase` are not supported.
75631
76151
  *
76152
+ * There are the following known restrictions:
76153
+ * - When a list is manually populated with items and groups without using data binding, changes to the
76154
+ * order or group structure will only be correctly applied when all items are removed and reinserted again.
76155
+ *
76156
+ *
75632
76157
  * @since 1.12
75633
76158
  */
75634
76159
  class GroupHeaderListItem
@@ -82693,9 +83218,9 @@ declare namespace sap {
82693
83218
  * filtered. Returning true will add this item to the popup, returning false will not display it.
82694
83219
  */
82695
83220
  fnFilter: (
82696
- p1: string,
82697
- p2: sap.ui.core.Item,
82698
- p3: boolean
83221
+ p1?: string,
83222
+ p2?: sap.ui.core.Item,
83223
+ p3?: boolean
82699
83224
  ) => boolean | undefined | Function
82700
83225
  ): this;
82701
83226
  /**
@@ -82773,9 +83298,9 @@ declare namespace sap {
82773
83298
  * must return a result string that will be displayed as the input field's value.
82774
83299
  */
82775
83300
  fnFilter: (
82776
- p1: string,
82777
- p2: sap.ui.core.Item,
82778
- p3: boolean
83301
+ p1?: string,
83302
+ p2?: sap.ui.core.Item,
83303
+ p3?: boolean
82779
83304
  ) => boolean | undefined | Function
82780
83305
  ): this;
82781
83306
  /**
@@ -83199,7 +83724,7 @@ declare namespace sap {
83199
83724
  sap.ui.core.IFormContent,
83200
83725
  sap.ui.core.ISemanticFormContent,
83201
83726
  sap.ui.core.ILabelable,
83202
- /* was: sap.m.IToolbarInteractiveControl */ Object
83727
+ sap.m.IToolbarInteractiveControl
83203
83728
  {
83204
83729
  __implements__sap_ui_core_IFormContent: boolean;
83205
83730
  __implements__sap_ui_core_ISemanticFormContent: boolean;
@@ -83673,6 +84198,22 @@ declare namespace sap {
83673
84198
  * @returns Value of property `valueState`
83674
84199
  */
83675
84200
  getValueState(): sap.ui.core.ValueState;
84201
+ /**
84202
+ * Gets the ID of the hidden value state message related to value state links
84203
+ *
84204
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
84205
+ *
84206
+ * @returns The ID of the hidden value state message related to value state links
84207
+ */
84208
+ getValueStateLinksShortcutsId(): string;
84209
+ /**
84210
+ * Returns the keyboard shortcuts announcement for the value state links
84211
+ *
84212
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
84213
+ *
84214
+ * @returns The text for value state links shortcuts
84215
+ */
84216
+ getValueStateLinksShortcutsTextAcc(): string;
83676
84217
  /**
83677
84218
  * Gets current value of property {@link #getValueStateText valueStateText}.
83678
84219
  *
@@ -84413,7 +84954,7 @@ declare namespace sap {
84413
84954
  sap.ui.core.IAccessKeySupport,
84414
84955
  sap.ui.core.ILabelable,
84415
84956
  sap.m.IOverflowToolbarContent,
84416
- /* was: sap.m.IToolbarInteractiveControl */ Object
84957
+ sap.m.IToolbarInteractiveControl
84417
84958
  {
84418
84959
  __implements__sap_ui_core_Label: boolean;
84419
84960
  __implements__sap_ui_core_IShrinkable: boolean;
@@ -85330,7 +85871,7 @@ declare namespace sap {
85330
85871
  sap.ui.core.ITitleContent,
85331
85872
  sap.ui.core.IAccessKeySupport,
85332
85873
  sap.ui.core.ILabelable,
85333
- /* was: sap.m.IToolbarInteractiveControl */ Object
85874
+ sap.m.IToolbarInteractiveControl
85334
85875
  {
85335
85876
  __implements__sap_ui_core_IShrinkable: boolean;
85336
85877
  __implements__sap_ui_core_IFormContent: boolean;
@@ -90584,7 +91125,7 @@ declare namespace sap {
90584
91125
  */
90585
91126
  class MenuButton
90586
91127
  extends sap.ui.core.Control
90587
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
91128
+ implements sap.m.IToolbarInteractiveControl
90588
91129
  {
90589
91130
  __implements__sap_m_IToolbarInteractiveControl: boolean;
90590
91131
  /**
@@ -96169,8 +96710,8 @@ declare namespace sap {
96169
96710
  * When not to use::
96170
96711
  * - When you need to select only one value.
96171
96712
  * - When you want the user to select from a predefined set of options. Use {@link sap.m.MultiComboBox }
96172
- * instead. Responsive Behavior: If there are many tokens, the control shows only the last selected
96173
- * tokens that fit and for the others a label N-more is provided. In case the length of the last
96713
+ * instead. Responsive Behavior: If there are many tokens, the control shows only the first selected
96714
+ * tokens that fit and for the others a label N-more is provided. In case the length of the first
96174
96715
  * selected token is exceeding the width of the control, only a label N-Items is shown. In both cases,
96175
96716
  * pressing on the label will show the tokens in a popup. On Phones:
96176
96717
  * - Only the last entered token is displayed.
@@ -105155,7 +105696,7 @@ declare namespace sap {
105155
105696
  implements
105156
105697
  sap.f.IShellBar,
105157
105698
  sap.m.IOverflowToolbarContent,
105158
- /* was: sap.m.IToolbarInteractiveControl */ Object
105699
+ sap.m.IToolbarInteractiveControl
105159
105700
  {
105160
105701
  __implements__sap_f_IShellBar: boolean;
105161
105702
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -116018,27 +116559,17 @@ declare namespace sap {
116018
116559
  sAppointmentRoundWidth?: sap.ui.unified.CalendarAppointmentRoundWidth
116019
116560
  ): this;
116020
116561
  /**
116021
- * Sets a new value for property {@link #getAppointmentsReducedHeight appointmentsReducedHeight}.
116022
- *
116023
- * Determines whether the appointments that have only title without text are rendered with smaller height.
116024
- *
116025
- * **Note:** On phone devices this property is ignored, appointments are always rendered in full height
116026
- * to facilitate touching.
116562
+ * Set the appointment reduced height property to the appointments in the calendar
116027
116563
  *
116028
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
116029
- *
116030
- * Default value is `false`.
116031
- *
116032
- * @since 1.38.0
116033
116564
  * @deprecated As of version 1.119. Please use the `appointmentHeight` with value "Automatic" property instead.
116034
116565
  *
116035
- * @returns Reference to `this` in order to allow method chaining
116566
+ * @returns Reference to `this` for method chaining
116036
116567
  */
116037
116568
  setAppointmentsReducedHeight(
116038
116569
  /**
116039
- * New value for property `appointmentsReducedHeight`
116570
+ * if set to true, the appointments will have a reduced height
116040
116571
  */
116041
- bAppointmentsReducedHeight?: boolean
116572
+ bAppointmentsReducedHeight: boolean
116042
116573
  ): this;
116043
116574
  /**
116044
116575
  * Sets a new value for property {@link #getAppointmentsVisualization appointmentsVisualization}.
@@ -122574,9 +123105,7 @@ declare namespace sap {
122574
123105
  */
122575
123106
  class RadioButton
122576
123107
  extends sap.ui.core.Control
122577
- implements
122578
- sap.ui.core.IFormContent,
122579
- /* was: sap.m.IToolbarInteractiveControl */ Object
123108
+ implements sap.ui.core.IFormContent, sap.m.IToolbarInteractiveControl
122580
123109
  {
122581
123110
  __implements__sap_ui_core_IFormContent: boolean;
122582
123111
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -126298,7 +126827,7 @@ declare namespace sap {
126298
126827
  implements
126299
126828
  sap.ui.core.IFormContent,
126300
126829
  sap.f.IShellBar,
126301
- /* was: sap.m.IToolbarInteractiveControl */ Object
126830
+ sap.m.IToolbarInteractiveControl
126302
126831
  {
126303
126832
  __implements__sap_ui_core_IFormContent: boolean;
126304
126833
  __implements__sap_f_IShellBar: boolean;
@@ -127297,7 +127826,7 @@ declare namespace sap {
127297
127826
  implements
127298
127827
  sap.ui.core.IFormContent,
127299
127828
  sap.m.IOverflowToolbarContent,
127300
- /* was: sap.m.IToolbarInteractiveControl */ Object
127829
+ sap.m.IToolbarInteractiveControl
127301
127830
  {
127302
127831
  __implements__sap_ui_core_IFormContent: boolean;
127303
127832
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -128239,7 +128768,7 @@ declare namespace sap {
128239
128768
  sap.ui.core.ISemanticFormContent,
128240
128769
  sap.ui.core.ILabelable,
128241
128770
  sap.m.IOverflowToolbarContent,
128242
- /* was: sap.m.IToolbarInteractiveControl */ Object,
128771
+ sap.m.IToolbarInteractiveControl,
128243
128772
  sap.f.IShellBar
128244
128773
  {
128245
128774
  __implements__sap_ui_core_IFormContent: boolean;
@@ -129572,7 +130101,10 @@ declare namespace sap {
129572
130101
  * instead. Note:: The property `growing` determines the progressive loading. If it's set to `true`
129573
130102
  * (the default value), the selected count (if present) and search, will work for currently loaded items
129574
130103
  * only. To make sure that all items in the list are loaded at once and the above features works properly,
129575
- * we recommend setting the `growing` property to `false`. Responsive Behavior:
130104
+ * we recommend setting the `growing` property to `false`. **Note: **The default size limit for entries
130105
+ * used for list bindings is set to 100. To change this behavior, you can adjust the size limit by using
130106
+ * `sap.ui.model.Model.prototype.setSizeLimit`; see {@link sap.ui.model.Model#setSizeLimit}. Responsive
130107
+ * Behavior:
129576
130108
  * - On phones, the select dialog takes up the whole screen.
129577
130109
  * - On desktop and tablet devices, the select dialog appears as a popover. When using the `sap.m.SelectDialog`
129578
130110
  * in SAP Quartz and Horizon themes, the breakpoints and layout paddings could be determined by the dialog's
@@ -130058,8 +130590,8 @@ declare namespace sap {
130058
130590
  * bound model (progressive loading). **Note:** This feature only works when an `items` aggregation is bound.
130059
130591
  * **Note:** Growing property, must not be used together with two-way binding. **Note:** If the property
130060
130592
  * is set to `true`, selected count (if present) and search, will work for currently loaded items only.
130061
- * To make sure that all items in the table are loaded at once and the above features work properly, we
130062
- * recommend setting the `growing` property to false.
130593
+ * To make sure that all items in the list are loaded at once and the above features work properly, we recommend
130594
+ * setting the `growing` property to false.
130063
130595
  *
130064
130596
  * Default value is `true`.
130065
130597
  *
@@ -136447,7 +136979,7 @@ declare namespace sap {
136447
136979
  implements
136448
136980
  sap.ui.core.IFormContent,
136449
136981
  sap.ui.core.ISemanticFormContent,
136450
- /* was: sap.m.IToolbarInteractiveControl */ Object
136982
+ sap.m.IToolbarInteractiveControl
136451
136983
  {
136452
136984
  __implements__sap_ui_core_IFormContent: boolean;
136453
136985
  __implements__sap_ui_core_ISemanticFormContent: boolean;
@@ -141931,7 +142463,7 @@ declare namespace sap {
141931
142463
  implements
141932
142464
  sap.ui.core.IFormContent,
141933
142465
  sap.m.IOverflowToolbarContent,
141934
- /* was: sap.m.IToolbarInteractiveControl */ Object
142466
+ sap.m.IToolbarInteractiveControl
141935
142467
  {
141936
142468
  __implements__sap_ui_core_IFormContent: boolean;
141937
142469
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -145104,12 +145636,15 @@ declare namespace sap {
145104
145636
  * - The property `growing` must not be used together with two-way binding. When the property `growing`
145105
145637
  * is set to `true` (default value), selected count (if present) and search, will work for currently loaded
145106
145638
  * items only. To make sure that all items in the table are loaded at once and the above features work properly,
145107
- * set the property to `false`. Since version 1.58, the columns headers and the info toolbar are sticky
145108
- * (remain fixed on top when scrolling). This feature is not supported in all browsers. The TableSelectDialog
145109
- * is usually displayed at the center of the screen. Its size and position can be changed by the user. To
145110
- * enable this you need to set the `resizable` and `draggable` properties. Both properties are available
145111
- * only in desktop mode. For more information on current restrictions, you can refer to the {@link sap.m.ListBase sap.m.ListBase }
145112
- * `sticky` property. Responsive Behavior:
145639
+ * set the property to `false`. **Note: **The default size limit for entries used for table bindings is
145640
+ * set to 100. To change this behavior, you can adjust the size limit by using `sap.ui.model.Model.prototype.setSizeLimit`;
145641
+ * see {@link sap.ui.model.Model#setSizeLimit}. Since version 1.58, the columns headers and the info
145642
+ * toolbar are sticky (remain fixed on top when scrolling). This feature is not supported in all browsers.
145643
+ * The TableSelectDialog is usually displayed at the center of the screen. Its size and position can
145644
+ * be changed by the user. To enable this you need to set the `resizable` and `draggable` properties. Both
145645
+ * properties are available only in desktop mode. For more information on current restrictions, you can
145646
+ * refer to the {@link sap.m.ListBase sap.m.ListBase} `sticky` property. Responsive Behavior:
145647
+ *
145113
145648
  * - On smaller screens, the columns of the table wrap and build a list that shows all the information.
145114
145649
  * When using the `sap.m.TableSelectDialog` in SAP Quartz and Horizon themes, the breakpoints and
145115
145650
  * layout paddings could be determined by the dialog's width. To enable this concept and add responsive
@@ -146212,7 +146747,7 @@ declare namespace sap {
146212
146747
  sap.ui.core.IFormContent,
146213
146748
  sap.ui.core.ISemanticFormContent,
146214
146749
  sap.ui.core.ILabelable,
146215
- /* was: sap.m.IToolbarInteractiveControl */ Object
146750
+ sap.m.IToolbarInteractiveControl
146216
146751
  {
146217
146752
  __implements__sap_ui_core_IShrinkable: boolean;
146218
146753
  __implements__sap_ui_core_IFormContent: boolean;
@@ -149762,6 +150297,17 @@ declare namespace sap {
149762
150297
  * @returns Metadata object describing this class
149763
150298
  */
149764
150299
  static getMetadata(): sap.ui.core.ElementMetadata;
150300
+ /**
150301
+ * Gets current value of property {@link #getSkipAnimation skipAnimation}.
150302
+ *
150303
+ * When set to `true`, the clock will be displayed without the animation.
150304
+ *
150305
+ * Default value is `false`.
150306
+ *
150307
+ *
150308
+ * @returns Value of property `skipAnimation`
150309
+ */
150310
+ getSkipAnimation(): boolean;
149765
150311
  /**
149766
150312
  * Gets the time values from the clocks, as a date object.
149767
150313
  *
@@ -149774,24 +150320,43 @@ declare namespace sap {
149774
150320
  */
149775
150321
  init(): void;
149776
150322
  /**
149777
- * Sets the value of the `TimePickerClocks` container.
150323
+ * Prepare the control for opening. If there are already clock and button objects created, set their appearance-related
150324
+ * properties.
149778
150325
  *
149779
150326
  *
149780
150327
  * @returns Pointer to the control instance to allow method chaining
149781
150328
  */
149782
- setValue(
150329
+ prepareForOpen(): this;
150330
+ /**
150331
+ * Sets a new value for property {@link #getSkipAnimation skipAnimation}.
150332
+ *
150333
+ * When set to `true`, the clock will be displayed without the animation.
150334
+ *
150335
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
150336
+ *
150337
+ * Default value is `false`.
150338
+ *
150339
+ *
150340
+ * @returns Reference to `this` in order to allow method chaining
150341
+ */
150342
+ setSkipAnimation(
149783
150343
  /**
149784
- * The value of the `TimePickerClocks`
150344
+ * New value for property `skipAnimation`
149785
150345
  */
149786
- sValue: string
150346
+ bSkipAnimation?: boolean
149787
150347
  ): this;
149788
150348
  /**
149789
- * Opens first clock.
150349
+ * Sets the value of the `TimePickerClocks` container.
149790
150350
  *
149791
150351
  *
149792
150352
  * @returns Pointer to the control instance to allow method chaining
149793
150353
  */
149794
- showFirstClock(): this;
150354
+ setValue(
150355
+ /**
150356
+ * The value of the `TimePickerClocks`
150357
+ */
150358
+ sValue: string
150359
+ ): this;
149795
150360
  }
149796
150361
  /**
149797
150362
  * A picker Inputs container control used inside the {@link sap.m.TimePicker}.
@@ -150324,9 +150889,7 @@ declare namespace sap {
150324
150889
  */
150325
150890
  class Title
150326
150891
  extends sap.ui.core.Control
150327
- implements
150328
- sap.ui.core.IShrinkable,
150329
- /* was: sap.m.IToolbarInteractiveControl */ Object
150892
+ implements sap.ui.core.IShrinkable, sap.m.IToolbarInteractiveControl
150330
150893
  {
150331
150894
  __implements__sap_ui_core_IShrinkable: boolean;
150332
150895
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -150743,7 +151306,7 @@ declare namespace sap {
150743
151306
  */
150744
151307
  class ToggleButton
150745
151308
  extends sap.m.Button
150746
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
151309
+ implements sap.m.IToolbarInteractiveControl
150747
151310
  {
150748
151311
  __implements__sap_m_IToolbarInteractiveControl: boolean;
150749
151312
  /**
@@ -151689,6 +152252,12 @@ declare namespace sap {
151689
152252
  */
151690
152253
  fValidator: Function
151691
152254
  ): void;
152255
+ /**
152256
+ * Function to execute after the n-more popover is closed.
152257
+ *
152258
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
152259
+ */
152260
+ afterPopupClose(): void;
151692
152261
  /**
151693
152262
  * Attaches event handler `fnFunction` to the {@link #event:renderModeChange renderModeChange} event of
151694
152263
  * this `sap.m.Tokenizer`.
@@ -157174,7 +157743,7 @@ declare namespace sap {
157174
157743
  implements
157175
157744
  sap.ui.core.IShrinkable,
157176
157745
  sap.m.IOverflowToolbarContent,
157177
- /* was: sap.m.IToolbarInteractiveControl */ Object
157746
+ sap.m.IToolbarInteractiveControl
157178
157747
  {
157179
157748
  __implements__sap_ui_core_IShrinkable: boolean;
157180
157749
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -163764,20 +164333,52 @@ declare namespace sap {
163764
164333
  Base = "Base",
163765
164334
  /**
163766
164335
  * Dialog `Illustration` size (M breakpoint). Suitable for dialogs.
164336
+ *
164337
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Medium}
163767
164338
  */
163768
164339
  Dialog = "Dialog",
163769
164340
  /**
163770
164341
  * Dot `Illustration` size (XS breakpoint). Suitable for spaces with little vertical space.
163771
164342
  *
163772
164343
  * @since 1.108
164344
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.ExtraSmall}
163773
164345
  */
163774
164346
  Dot = "Dot",
164347
+ /**
164348
+ * Extra Small `Illustration` size. Alias for `Dot` size (XS breakpoint). Suitable for spaces with little
164349
+ * vertical space.
164350
+ *
164351
+ * @since 1.136
164352
+ */
164353
+ ExtraSmall = "Dot",
164354
+ /**
164355
+ * Large `Illustration` size. Alias for `Scene` size (L breakpoint). Suitable for a `Page` or a table.
164356
+ *
164357
+ * @since 1.136
164358
+ */
164359
+ Large = "Scene",
164360
+ /**
164361
+ * Medium `Illustration` size. Alias for `Dialog` size (M breakpoint). Suitable for dialogs.
164362
+ *
164363
+ * @since 1.136
164364
+ */
164365
+ Medium = "Dialog",
163775
164366
  /**
163776
164367
  * Scene `Illustration` size (L breakpoint). Suitable for a `Page` or a table.
164368
+ *
164369
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Large}
163777
164370
  */
163778
164371
  Scene = "Scene",
164372
+ /**
164373
+ * Small `Illustration` size. Alias for `Spot` size (S breakpoint). Suitable for cards (four columns).
164374
+ *
164375
+ * @since 1.136
164376
+ */
164377
+ Small = "Spot",
163779
164378
  /**
163780
164379
  * Spot `Illustration` size (S breakpoint). Suitable for cards (four columns).
164380
+ *
164381
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Small}
163781
164382
  */
163782
164383
  Spot = "Spot",
163783
164384
  }
@@ -163787,18 +164388,34 @@ declare namespace sap {
163787
164388
  * @since 1.98
163788
164389
  */
163789
164390
  enum IllustratedMessageType {
164391
+ /**
164392
+ * "Achievement" illustration type.
164393
+ */
164394
+ Achievement = "sapIllus-Achievement",
163790
164395
  /**
163791
164396
  * "Add Column" illustration type.
164397
+ *
164398
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddingColumns}
163792
164399
  */
163793
164400
  AddColumn = "sapIllus-AddColumn",
163794
164401
  /**
163795
164402
  * "Add Dimensions" illustration type.
163796
164403
  */
163797
164404
  AddDimensions = "sapIllus-AddDimensions",
164405
+ /**
164406
+ * "Adding Columns" illustration type.
164407
+ */
164408
+ AddingColumns = "sapIllus-AddingColumns",
163798
164409
  /**
163799
164410
  * "Add People" illustration type.
164411
+ *
164412
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddPeopleToCalendar}
163800
164413
  */
163801
164414
  AddPeople = "sapIllus-AddPeople",
164415
+ /**
164416
+ * "Add People To Calendar" illustration type.
164417
+ */
164418
+ AddPeopleToCalendar = "sapIllus-AddPeopleToCalendar",
163802
164419
  /**
163803
164420
  * "Balloon Sky" illustration type.
163804
164421
  */
@@ -163811,12 +164428,20 @@ declare namespace sap {
163811
164428
  * "Connection" illustration type.
163812
164429
  */
163813
164430
  Connection = "sapIllus-Connection",
164431
+ /**
164432
+ * "Drag Files To Upload" illustration type.
164433
+ */
164434
+ DragFilesToUpload = "sapIllus-DragFilesToUpload",
163814
164435
  /**
163815
164436
  * "Empty Calendar" illustration type.
164437
+ *
164438
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
163816
164439
  */
163817
164440
  EmptyCalendar = "sapIllus-EmptyCalendar",
163818
164441
  /**
163819
164442
  * "Empty List" illustration type.
164443
+ *
164444
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
163820
164445
  */
163821
164446
  EmptyList = "sapIllus-EmptyList",
163822
164447
  /**
@@ -163825,16 +164450,34 @@ declare namespace sap {
163825
164450
  EmptyPlanningCalendar = "sapIllus-EmptyPlanningCalendar",
163826
164451
  /**
163827
164452
  * "Error Screen" illustration type.
164453
+ *
164454
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
163828
164455
  */
163829
164456
  ErrorScreen = "sapIllus-ErrorScreen",
164457
+ /**
164458
+ * "Filtering Columns" illustration type.
164459
+ */
164460
+ FilteringColumns = "sapIllus-FilteringColumns",
163830
164461
  /**
163831
164462
  * "Filter Table" illustration type.
164463
+ *
164464
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.FilteringColumns}
163832
164465
  */
163833
164466
  FilterTable = "sapIllus-FilterTable",
164467
+ /**
164468
+ * "Grouping Columns" illustration type.
164469
+ */
164470
+ GroupingColumns = "sapIllus-GroupingColumns",
163834
164471
  /**
163835
164472
  * "Group Table" illustration type.
164473
+ *
164474
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.GroupingColumns}
163836
164475
  */
163837
164476
  GroupTable = "sapIllus-GroupTable",
164477
+ /**
164478
+ * "KeyTask" illustration type.
164479
+ */
164480
+ KeyTask = "sapIllus-KeyTask",
163838
164481
  /**
163839
164482
  * "New Mail" illustration type.
163840
164483
  */
@@ -163843,6 +164486,10 @@ declare namespace sap {
163843
164486
  * "No Activities" illustration type.
163844
164487
  */
163845
164488
  NoActivities = "sapIllus-NoActivities",
164489
+ /**
164490
+ * "No Chart Data" illustration type.
164491
+ */
164492
+ NoChartData = "sapIllus-NoChartData",
163846
164493
  /**
163847
164494
  * "No Columns Set" illustration type.
163848
164495
  */
@@ -163853,6 +164500,8 @@ declare namespace sap {
163853
164500
  NoData = "sapIllus-NoData",
163854
164501
  /**
163855
164502
  * "No Dimensions Set" illustration type.
164503
+ *
164504
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoChartData}
163856
164505
  */
163857
164506
  NoDimensionsSet = "sapIllus-NoDimensionsSet",
163858
164507
  /**
@@ -163869,6 +164518,8 @@ declare namespace sap {
163869
164518
  NoMail = "sapIllus-NoMail",
163870
164519
  /**
163871
164520
  * "No Email v1" illustration type.
164521
+ *
164522
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
163872
164523
  */
163873
164524
  NoMailV1 = "sapIllus-NoMail_v1",
163874
164525
  /**
@@ -163881,6 +164532,8 @@ declare namespace sap {
163881
164532
  NoSavedItems = "sapIllus-NoSavedItems",
163882
164533
  /**
163883
164534
  * "No Saved Items v1" illustration type.
164535
+ *
164536
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
163884
164537
  */
163885
164538
  NoSavedItemsV1 = "sapIllus-NoSavedItems_v1",
163886
164539
  /**
@@ -163893,26 +164546,44 @@ declare namespace sap {
163893
164546
  NoTasks = "sapIllus-NoTasks",
163894
164547
  /**
163895
164548
  * "No Tasks v1" illustration type.
164549
+ *
164550
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
163896
164551
  */
163897
164552
  NoTasksV1 = "sapIllus-NoTasks_v1",
163898
164553
  /**
163899
164554
  * "Page Not Found" illustration type.
163900
164555
  */
163901
164556
  PageNotFound = "sapIllus-PageNotFound",
164557
+ /**
164558
+ * "Receive Appreciation" illustration type.
164559
+ */
164560
+ ReceiveAppreciation = "sapIllus-ReceiveAppreciation",
163902
164561
  /**
163903
164562
  * "Reload Screen" illustration type.
164563
+ *
164564
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
163904
164565
  */
163905
164566
  ReloadScreen = "sapIllus-ReloadScreen",
163906
164567
  /**
163907
164568
  * "Resize Column" illustration type.
164569
+ *
164570
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ResizingColumns}
163908
164571
  */
163909
164572
  ResizeColumn = "sapIllus-ResizeColumn",
164573
+ /**
164574
+ * "Resizing Columns" illustration type.
164575
+ */
164576
+ ResizingColumns = "sapIllus-ResizingColumns",
163910
164577
  /**
163911
164578
  * "Search Earth" illustration type.
164579
+ *
164580
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
163912
164581
  */
163913
164582
  SearchEarth = "sapIllus-SearchEarth",
163914
164583
  /**
163915
164584
  * "Search Folder" illustration type.
164585
+ *
164586
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
163916
164587
  */
163917
164588
  SearchFolder = "sapIllus-SearchFolder",
163918
164589
  /**
@@ -163921,18 +164592,26 @@ declare namespace sap {
163921
164592
  SignOut = "sapIllus-SignOut",
163922
164593
  /**
163923
164594
  * "Simple Balloon" illustration type.
164595
+ *
164596
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
163924
164597
  */
163925
164598
  SimpleBalloon = "sapIllus-SimpleBalloon",
163926
164599
  /**
163927
164600
  * "Simple Bell" illustration type.
164601
+ *
164602
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
163928
164603
  */
163929
164604
  SimpleBell = "sapIllus-SimpleBell",
163930
164605
  /**
163931
164606
  * "Simple Calendar" illustration type.
164607
+ *
164608
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
163932
164609
  */
163933
164610
  SimpleCalendar = "sapIllus-SimpleCalendar",
163934
164611
  /**
163935
164612
  * "Simple CheckMark" illustration type.
164613
+ *
164614
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
163936
164615
  */
163937
164616
  SimpleCheckMark = "sapIllus-SimpleCheckMark",
163938
164617
  /**
@@ -163941,62 +164620,96 @@ declare namespace sap {
163941
164620
  SimpleConnection = "sapIllus-SimpleConnection",
163942
164621
  /**
163943
164622
  * "Simple Empty Doc" illustration type.
164623
+ *
164624
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
163944
164625
  */
163945
164626
  SimpleEmptyDoc = "sapIllus-SimpleEmptyDoc",
163946
164627
  /**
163947
164628
  * "Simple Empty List" illustration type.
164629
+ *
164630
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
163948
164631
  */
163949
164632
  SimpleEmptyList = "sapIllus-SimpleEmptyList",
163950
164633
  /**
163951
164634
  * "Simple Error" illustration type.
164635
+ *
164636
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
163952
164637
  */
163953
164638
  SimpleError = "sapIllus-SimpleError",
163954
164639
  /**
163955
164640
  * "Simple Magnifier" illustration type.
164641
+ *
164642
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
163956
164643
  */
163957
164644
  SimpleMagnifier = "sapIllus-SimpleMagnifier",
163958
164645
  /**
163959
164646
  * "Simple Mail" illustration type.
164647
+ *
164648
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
163960
164649
  */
163961
164650
  SimpleMail = "sapIllus-SimpleMail",
163962
164651
  /**
163963
164652
  * "Simple No Saved Items" illustration type.
164653
+ *
164654
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
163964
164655
  */
163965
164656
  SimpleNoSavedItems = "sapIllus-SimpleNoSavedItems",
163966
164657
  /**
163967
164658
  * "Simple Not Found Magnifier" illustration type.
164659
+ *
164660
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
163968
164661
  */
163969
164662
  SimpleNotFoundMagnifier = "sapIllus-SimpleNotFoundMagnifier",
163970
164663
  /**
163971
164664
  * "Simple Reload" illustration type.
164665
+ *
164666
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
163972
164667
  */
163973
164668
  SimpleReload = "sapIllus-SimpleReload",
163974
164669
  /**
163975
164670
  * "Simple Task" illustration type.
164671
+ *
164672
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
163976
164673
  */
163977
164674
  SimpleTask = "sapIllus-SimpleTask",
163978
164675
  /**
163979
164676
  * "Sleeping Bell" illustration type.
164677
+ *
164678
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
163980
164679
  */
163981
164680
  SleepingBell = "sapIllus-SleepingBell",
163982
164681
  /**
163983
164682
  * "Sort Column" illustration type.
164683
+ *
164684
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.SortingColumns}
163984
164685
  */
163985
164686
  SortColumn = "sapIllus-SortColumn",
164687
+ /**
164688
+ * "Sorting Columns" illustration type.
164689
+ */
164690
+ SortingColumns = "sapIllus-SortingColumns",
163986
164691
  /**
163987
164692
  * "Success Balloon" illustration type.
164693
+ *
164694
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
163988
164695
  */
163989
164696
  SuccessBalloon = "sapIllus-SuccessBalloon",
163990
164697
  /**
163991
164698
  * "Success CheckMark" illustration type.
164699
+ *
164700
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
163992
164701
  */
163993
164702
  SuccessCheckMark = "sapIllus-SuccessCheckMark",
163994
164703
  /**
163995
164704
  * "Success HighFive" illustration type.
164705
+ *
164706
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
163996
164707
  */
163997
164708
  SuccessHighFive = "sapIllus-SuccessHighFive",
163998
164709
  /**
163999
164710
  * "Success Screen" illustration type.
164711
+ *
164712
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
164000
164713
  */
164001
164714
  SuccessScreen = "sapIllus-SuccessScreen",
164002
164715
  /**
@@ -164005,6 +164718,8 @@ declare namespace sap {
164005
164718
  Survey = "sapIllus-Survey",
164006
164719
  /**
164007
164720
  * "Tent" illustration type.
164721
+ *
164722
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
164008
164723
  */
164009
164724
  Tent = "sapIllus-Tent",
164010
164725
  /**
@@ -164021,12 +164736,18 @@ declare namespace sap {
164021
164736
  UnableToUpload = "sapIllus-UnableToUpload",
164022
164737
  /**
164023
164738
  * "Upload Collection" illustration type.
164739
+ *
164740
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.DragFilesToUpload}
164024
164741
  */
164025
164742
  UploadCollection = "sapIllus-UploadCollection",
164026
164743
  /**
164027
164744
  * "Upload To Cloud" illustration type.
164028
164745
  */
164029
164746
  UploadToCloud = "sapIllus-UploadToCloud",
164747
+ /**
164748
+ * "User has signed up for an application" illustration type.
164749
+ */
164750
+ UserHasSignedUp = "sapIllus-UserHasSignedUp",
164030
164751
  }
164031
164752
  /**
164032
164753
  * Determines how the source image is used on the output DOM element.
@@ -166381,6 +167102,8 @@ declare namespace sap {
166381
167102
  * In case the less parameter color cannot be determined, the validation fails. You need to check if less
166382
167103
  * parameters are supported on control level. An empty string is also allowed and has the same effect as
166383
167104
  * setting no color.
167105
+ *
167106
+ * @deprecated As of version 1.135. the concept has been discarded.
166384
167107
  */
166385
167108
  type ValueCSSColor = string;
166386
167109