@openui5/ts-types 1.93.3 → 1.96.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/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.93.3
1
+ // For Library Version: 1.96.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1497,8 +1497,11 @@ declare namespace sap {
1497
1497
  * Used for closing dialogs and showing transitions in `NavContainers` when targets are displayed.
1498
1498
  *
1499
1499
  * **Note:** You should not create an own instance of this class. It is created when using `{@link sap.m.routing.Router}`
1500
- * or `{@link sap.m.routing.Targets}`. You may use the `{@link #setCloseDialogs}` function to specify if
1501
- * dialogs should be closed on displaying other views.
1500
+ * or `{@link sap.m.routing.Targets}`.
1501
+ *
1502
+ * **Note:** You may use the `{@link #setCloseDialogs}` function to specify if dialogs should be closed
1503
+ * on displaying other views. The dialogs are closed when a different target is displayed than the previously
1504
+ * displayed one, otherwise the dialogs are kept open.
1502
1505
  */
1503
1506
  class TargetHandler extends sap.ui.base.Object {
1504
1507
  /**
@@ -1506,8 +1509,8 @@ declare namespace sap {
1506
1509
  */
1507
1510
  constructor(
1508
1511
  /**
1509
- * Closes all open dialogs before navigating, if set to `true` (default). If set to `false`, it will just
1510
- * navigate without closing dialogs.
1512
+ * Closes all open dialogs before navigating to a different target, if set to `true` (default). If set to
1513
+ * `false`, it will just navigate without closing dialogs.
1511
1514
  */
1512
1515
  closeDialogs: boolean
1513
1516
  );
@@ -1543,6 +1546,9 @@ declare namespace sap {
1543
1546
  getCloseDialogs(): boolean;
1544
1547
  /**
1545
1548
  * Sets if a navigation should close dialogs.
1549
+ *
1550
+ * **Note:** The dialogs are closed when a different target is displayed than the previous one, otherwise
1551
+ * the dialogs are kept open even when `bCloseDialogs` is `true`.
1546
1552
  */
1547
1553
  setCloseDialogs(
1548
1554
  /**
@@ -10848,9 +10854,6 @@ declare namespace sap {
10848
10854
 
10849
10855
  /**
10850
10856
  * Determines the background color of the control.
10851
- *
10852
- * **Note:** By using background colors from the predefined sets, your colors can later be customized from
10853
- * the Theme Designer.
10854
10857
  */
10855
10858
  backgroundColor?:
10856
10859
  | sap.m.AvatarColor
@@ -11956,6 +11959,13 @@ declare namespace sap {
11956
11959
  | Function
11957
11960
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
11958
11961
 
11962
+ /**
11963
+ * Defines a method that can validate all controls from the value help UI related to a given option.
11964
+ */
11965
+ validateValueHelpUI?:
11966
+ | Function
11967
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
11968
+
11959
11969
  /**
11960
11970
  * Defines a method that can collect the value from the value help UI.
11961
11971
  */
@@ -12085,6 +12095,18 @@ declare namespace sap {
12085
12095
  */
12086
12096
  showFooter?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
12087
12097
 
12098
+ /**
12099
+ * @SINCE 1.95
12100
+ *
12101
+ * Determines whether there is a shortcut navigation to Today. When used in Month, Year or Year-range picker
12102
+ * view, the calendar navigates to Day picker view.
12103
+ *
12104
+ * Note: The Current date button appears if the `displayFormat` property allows entering day.
12105
+ */
12106
+ showCurrentDateButton?:
12107
+ | boolean
12108
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
12109
+
12088
12110
  /**
12089
12111
  * @SINCE 1.38.5
12090
12112
  *
@@ -12369,7 +12391,7 @@ declare namespace sap {
12369
12391
  * @SINCE 1.11.2
12370
12392
  * @deprecated (since 1.13.1) - Please use the new stretch property instead. This enables a stretched Dialog
12371
12393
  * even on tablet and desktop. If you want to achieve the same effect as `stretchOnPhone`, please set the
12372
- * stretch with jQuery.device.is.phone, then the Dialog is only stretched when it runs on a phone.
12394
+ * stretch with `Device.system.phone`, then the Dialog is only stretched when it runs on a phone.
12373
12395
  *
12374
12396
  * Determines whether the Dialog will be displayed on full screen on a phone.
12375
12397
  */
@@ -13883,6 +13905,25 @@ declare namespace sap {
13883
13905
  */
13884
13906
  url?: sap.ui.core.URI | sap.ui.base.ManagedObject.PropertyBindingInfo;
13885
13907
 
13908
+ /**
13909
+ * @EXPERIMENTAL (since 1.96)
13910
+ *
13911
+ * Renders the given link as a button, enabling the option of opening the link in new tab/window functionality.
13912
+ * Works only in ArticleMode.
13913
+ */
13914
+ enableNavigationButton?:
13915
+ | boolean
13916
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
13917
+
13918
+ /**
13919
+ * @EXPERIMENTAL (since 1.96)
13920
+ *
13921
+ * Text for navigate action button. Default Value is "Read More". Works only in ArticleMode.
13922
+ */
13923
+ navigationButtonText?:
13924
+ | string
13925
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
13926
+
13886
13927
  /**
13887
13928
  * @SINCE 1.60
13888
13929
  *
@@ -13910,6 +13951,36 @@ declare namespace sap {
13910
13951
  | string
13911
13952
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
13912
13953
 
13954
+ /**
13955
+ * @SINCE 1.96
13956
+ * @EXPERIMENTAL (since 1.96)
13957
+ *
13958
+ * Icon of the GenericTile. Only applicable for IconMode.
13959
+ */
13960
+ tileIcon?:
13961
+ | sap.ui.core.URI
13962
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
13963
+
13964
+ /**
13965
+ * @SINCE 1.96
13966
+ * @EXPERIMENTAL (since 1.96)
13967
+ *
13968
+ * Background color of the GenericTile. Only applicable for IconMode.
13969
+ */
13970
+ backgroundColor?:
13971
+ | sap.ui.core.CSSColor
13972
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
13973
+
13974
+ /**
13975
+ * @SINCE 1.95
13976
+ * @EXPERIMENTAL
13977
+ *
13978
+ * The semantic color of the value.
13979
+ */
13980
+ valueColor?:
13981
+ | sap.m.ValueColor
13982
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
13983
+
13913
13984
  /**
13914
13985
  * The content of the tile.
13915
13986
  */
@@ -13927,6 +13998,16 @@ declare namespace sap {
13927
13998
  */
13928
13999
  icon?: sap.ui.core.Control;
13929
14000
 
14001
+ /**
14002
+ * @EXPERIMENTAL (since 1.96)
14003
+ *
14004
+ * Action buttons added in ActionMode.
14005
+ */
14006
+ actionButtons?:
14007
+ | sap.m.Button[]
14008
+ | sap.m.Button
14009
+ | sap.ui.base.ManagedObject.AggregationBindingInfo;
14010
+
13930
14011
  /**
13931
14012
  * The event is triggered when the user presses the tile.
13932
14013
  */
@@ -14912,6 +14993,14 @@ declare namespace sap {
14912
14993
  */
14913
14994
  autocomplete?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
14914
14995
 
14996
+ /**
14997
+ * @SINCE 1.94
14998
+ *
14999
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
15000
+ * and liveChange events.
15001
+ */
15002
+ showClearIcon?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
15003
+
14915
15004
  /**
14916
15005
  * @SINCE 1.16.1
14917
15006
  *
@@ -15881,6 +15970,14 @@ declare namespace sap {
15881
15970
  */
15882
15971
  mask?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
15883
15972
 
15973
+ /**
15974
+ * @SINCE 1.96
15975
+ *
15976
+ * Specifies whether a clear icon is shown. Pressing the icon will clear input's value and fire the change
15977
+ * event.
15978
+ */
15979
+ showClearIcon?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
15980
+
15884
15981
  /**
15885
15982
  * A list of validation rules (one rule per mask character).
15886
15983
  */
@@ -16037,6 +16134,13 @@ declare namespace sap {
16037
16134
  * is set to `false` and another action from the menu has been selected previously.
16038
16135
  */
16039
16136
  defaultAction?: (oEvent: sap.ui.base.Event) => void;
16137
+
16138
+ /**
16139
+ * @SINCE 1.94.0
16140
+ *
16141
+ * Fired before menu opening when the `buttonMode` is set to `Split` and the user presses the arrow button.
16142
+ */
16143
+ beforeMenuOpen?: (oEvent: sap.ui.base.Event) => void;
16040
16144
  }
16041
16145
 
16042
16146
  interface $MenuItemSettings extends sap.ui.core.$ItemSettings {
@@ -16492,6 +16596,11 @@ declare namespace sap {
16492
16596
  */
16493
16597
  selectedKeys?: string[] | sap.ui.base.ManagedObject.PropertyBindingInfo;
16494
16598
 
16599
+ /**
16600
+ * Determines if the select all checkbox is visible on top of suggestions.
16601
+ */
16602
+ showSelectAll?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
16603
+
16495
16604
  /**
16496
16605
  * Provides getter and setter for the selected items from the aggregation named items.
16497
16606
  */
@@ -19206,8 +19315,8 @@ declare namespace sap {
19206
19315
  * @SINCE 1.81.0
19207
19316
  * @EXPERIMENTAL (since 1.81.0)
19208
19317
  *
19209
- * Defines rounding of the width CalendarAppoinment **Note:** This property is applied, when
19210
- * the calendar interval type is day and the view shows more than 20 days
19318
+ * Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
19319
+ * interval type is day and the view shows more than 20 days
19211
19320
  */
19212
19321
  appointmentRoundWidth?:
19213
19322
  | sap.ui.unified.CalendarAppointmentRoundWidth
@@ -19299,6 +19408,17 @@ declare namespace sap {
19299
19408
  */
19300
19409
  stickyHeader?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
19301
19410
 
19411
+ /**
19412
+ * @SINCE 1.94
19413
+ *
19414
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
19415
+ * If there is no valid value set, the default of the used locale is used.
19416
+ *
19417
+ * Note: this property will only have effect in the weekly – based views of the PlanningCalendar – Week
19418
+ * view, and OneMonth view (on small devices).
19419
+ */
19420
+ firstDayOfWeek?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
19421
+
19302
19422
  /**
19303
19423
  * Rows of the `PlanningCalendar`.
19304
19424
  */
@@ -22222,6 +22342,16 @@ declare namespace sap {
22222
22342
  | sap.ui.core.CSSSize
22223
22343
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
22224
22344
 
22345
+ /**
22346
+ * @SINCE 1.96
22347
+ * @EXPERIMENTAL
22348
+ *
22349
+ * Height of the control.
22350
+ */
22351
+ height?:
22352
+ | sap.ui.core.CSSSize
22353
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
22354
+
22225
22355
  /**
22226
22356
  * The set of Generic Tiles to be shown in the control.
22227
22357
  */
@@ -22488,7 +22618,9 @@ declare namespace sap {
22488
22618
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
22489
22619
 
22490
22620
  /**
22491
- * Defines an additional information text.
22621
+ * Defines an additional information text. **Note:** A wrapping of the information text is also supported
22622
+ * as of version 1.95, if `wrapping=true`. Although long strings are supported for the information text,
22623
+ * it is recommended to use short strings. For more details, see {@link #getWrapping wrapping}.
22492
22624
  */
22493
22625
  info?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
22494
22626
 
@@ -22537,6 +22669,9 @@ declare namespace sap {
22537
22669
  *
22538
22670
  * In the desktop mode, initial rendering of the control contains 300 characters along with a button to
22539
22671
  * expand and collapse the text whereas in the phone mode, the character limit is set to 100 characters.
22672
+ * A wrapping of the information text is supported as of 1.95. But expanding and collapsing the information
22673
+ * text is not possible. A wrapping of the information text is disabled if `infoStateInverted` is set to
22674
+ * `true`.
22540
22675
  */
22541
22676
  wrapping?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
22542
22677
 
@@ -22550,6 +22685,20 @@ declare namespace sap {
22550
22685
  infoStateInverted?:
22551
22686
  | boolean
22552
22687
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
22688
+
22689
+ /**
22690
+ * @SINCE 1.94
22691
+ *
22692
+ * This property can be used to change the default character limits for the wrapping behavior.
22693
+ *
22694
+ * If this property is set to 0, then the default character limit used by the wrapping behavior is used.
22695
+ * For details see {@link #getWrapping wrapping}.
22696
+ *
22697
+ * **Note:**
22698
+ *
22699
+ * 0 or a positive integer must be used for this property.
22700
+ */
22701
+ wrapCharLimit?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
22553
22702
  }
22554
22703
 
22555
22704
  interface $StandardTileSettings extends sap.m.$TileSettings {
@@ -23514,7 +23663,7 @@ declare namespace sap {
23514
23663
  * @SINCE 1.38.0
23515
23664
  *
23516
23665
  * Indicates the ability of the control to automatically grow and shrink dynamically with its content. **Note:**
23517
- * The `height` property is ignored, if this property set to `true`.
23666
+ * This property should not be used when the `height` property is set.
23518
23667
  */
23519
23668
  growing?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
23520
23669
 
@@ -23634,6 +23783,15 @@ declare namespace sap {
23634
23783
  | sap.m.FrameType
23635
23784
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
23636
23785
 
23786
+ /**
23787
+ * @EXPERIMENTAL (since 1.96)
23788
+ *
23789
+ * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
23790
+ */
23791
+ priority?:
23792
+ | sap.ui.core.Priority
23793
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
23794
+
23637
23795
  /**
23638
23796
  * The switchable view that depends on the tile type.
23639
23797
  */
@@ -27872,9 +28030,6 @@ declare namespace sap {
27872
28030
  *
27873
28031
  * Determines the background color of the control.
27874
28032
  *
27875
- * **Note:** By using background colors from the predefined sets, your colors can later be customized from
27876
- * the Theme Designer.
27877
- *
27878
28033
  * Default value is `Accent6`.
27879
28034
  */
27880
28035
  getBackgroundColor(): sap.m.AvatarColor;
@@ -28019,9 +28174,6 @@ declare namespace sap {
28019
28174
  *
28020
28175
  * Determines the background color of the control.
28021
28176
  *
28022
- * **Note:** By using background colors from the predefined sets, your colors can later be customized from
28023
- * the Theme Designer.
28024
- *
28025
28177
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
28026
28178
  *
28027
28179
  * Default value is `Accent6`.
@@ -31792,11 +31944,13 @@ declare namespace sap {
31792
31944
  * See:
31793
31945
  * {@link sap.m.ColorPalettePopover}
31794
31946
  *
31795
- * **Note:** The {@link sap.ui.unified.ColorPicker} is used internally only if the `ColorPicker`
31947
+ * **Note:** The application developers should add dependency to `sap.ui.unified` library
31948
+ * on application level to ensure that the library is loaded before the module dependencies will be required.
31949
+ * The {@link sap.ui.unified.ColorPicker} is used internally only if the `ColorPicker`
31796
31950
  * is opened (not used for the initial rendering). If the `sap.ui.unified` library is not loaded
31797
- * before the `ColorPicker` is opened, it will be loaded upon opening. This could lead to a waiting
31798
- * time when the `ColorPicker` is opened for the first time. To prevent this, apps using the
31799
- * `ColorPalette` should also load the `sap.ui.unified` library.
31951
+ * before the `ColorPicker` is opened, it will be loaded upon opening. This could lead to CSP compliance
31952
+ * issues and adds an additional waiting time when the `ColorPicker` is opened for the first time.
31953
+ * To prevent this, apps using the `ColorPalette` should also load the `sap.ui.unified` library in advance.
31800
31954
  */
31801
31955
  constructor(
31802
31956
  /**
@@ -31813,11 +31967,13 @@ declare namespace sap {
31813
31967
  * See:
31814
31968
  * {@link sap.m.ColorPalettePopover}
31815
31969
  *
31816
- * **Note:** The {@link sap.ui.unified.ColorPicker} is used internally only if the `ColorPicker`
31970
+ * **Note:** The application developers should add dependency to `sap.ui.unified` library
31971
+ * on application level to ensure that the library is loaded before the module dependencies will be required.
31972
+ * The {@link sap.ui.unified.ColorPicker} is used internally only if the `ColorPicker`
31817
31973
  * is opened (not used for the initial rendering). If the `sap.ui.unified` library is not loaded
31818
- * before the `ColorPicker` is opened, it will be loaded upon opening. This could lead to a waiting
31819
- * time when the `ColorPicker` is opened for the first time. To prevent this, apps using the
31820
- * `ColorPalette` should also load the `sap.ui.unified` library.
31974
+ * before the `ColorPicker` is opened, it will be loaded upon opening. This could lead to CSP compliance
31975
+ * issues and adds an additional waiting time when the `ColorPicker` is opened for the first time.
31976
+ * To prevent this, apps using the `ColorPalette` should also load the `sap.ui.unified` library in advance.
31821
31977
  */
31822
31978
  constructor(
31823
31979
  /**
@@ -34559,6 +34715,12 @@ declare namespace sap {
34559
34715
  * Defines a method that calculates an absolute date range from the options relative value. See DynamicDateOption.toDates.
34560
34716
  */
34561
34717
  getToDates(): Function;
34718
+ /**
34719
+ * Gets current value of property {@link #getValidateValueHelpUI validateValueHelpUI}.
34720
+ *
34721
+ * Defines a method that can validate all controls from the value help UI related to a given option.
34722
+ */
34723
+ getValidateValueHelpUI(): Function;
34562
34724
  /**
34563
34725
  * Sets a new value for property {@link #getCreateValueHelpUI createValueHelpUI}.
34564
34726
  *
@@ -34693,6 +34855,19 @@ declare namespace sap {
34693
34855
  */
34694
34856
  fnToDates: Function
34695
34857
  ): this;
34858
+ /**
34859
+ * Sets a new value for property {@link #getValidateValueHelpUI validateValueHelpUI}.
34860
+ *
34861
+ * Defines a method that can validate all controls from the value help UI related to a given option.
34862
+ *
34863
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
34864
+ */
34865
+ setValidateValueHelpUI(
34866
+ /**
34867
+ * New value for property `validateValueHelpUI`
34868
+ */
34869
+ fnValidateValueHelpUI: Function
34870
+ ): this;
34696
34871
  }
34697
34872
  /**
34698
34873
  * This control with a content aggregation can be used to customize standard list items that we don't provide.
@@ -35097,11 +35272,13 @@ declare namespace sap {
35097
35272
  * The `DatePicker` lets the users select a localized date using touch, mouse, or keyboard input. It consists
35098
35273
  * of two parts: the date input field and the date picker.
35099
35274
  *
35100
- * **Note:** The {@link sap.ui.unified.Calendar} is used internally only if the `DatePicker` is opened (not
35101
- * used for the initial rendering). If the `sap.ui.unified` library is not loaded before the `DatePicker`
35102
- * is opened, it will be loaded upon opening. This could lead to a waiting time when the `DatePicker` is
35103
- * opened for the first time. To prevent this, apps using the `DatePicker` should also load the `sap.ui.unified`
35104
- * library.
35275
+ * **Note:** The application developer should add dependency to `sap.ui.unified` library on application
35276
+ * level to ensure that the library is loaded before the module dependencies will be required. The {@link
35277
+ * sap.ui.unified.Calendar} is used internally only if the `DatePicker` is opened (not used for the initial
35278
+ * rendering). If the `sap.ui.unified` library is not loaded before the `DatePicker` is opened, it will
35279
+ * be loaded upon opening. This could lead to CSP compliance issues and adds an additional waiting time
35280
+ * when the `DatePicker` is opened for the first time. To prevent this, apps using the `DatePicker` should
35281
+ * also load the `sap.ui.unified` library in advance.
35105
35282
  *
35106
35283
  * Usage:
35107
35284
  *
@@ -35390,6 +35567,19 @@ declare namespace sap {
35390
35567
  * are only displayed in the primary calendar type
35391
35568
  */
35392
35569
  getSecondaryCalendarType(): sap.ui.core.CalendarType;
35570
+ /**
35571
+ * @SINCE 1.95
35572
+ *
35573
+ * Gets current value of property {@link #getShowCurrentDateButton showCurrentDateButton}.
35574
+ *
35575
+ * Determines whether there is a shortcut navigation to Today. When used in Month, Year or Year-range picker
35576
+ * view, the calendar navigates to Day picker view.
35577
+ *
35578
+ * Note: The Current date button appears if the `displayFormat` property allows entering day.
35579
+ *
35580
+ * Default value is `false`.
35581
+ */
35582
+ getShowCurrentDateButton(): boolean;
35393
35583
  /**
35394
35584
  * @SINCE 1.70
35395
35585
  *
@@ -35589,6 +35779,26 @@ declare namespace sap {
35589
35779
  */
35590
35780
  sSecondaryCalendarType?: sap.ui.core.CalendarType
35591
35781
  ): this;
35782
+ /**
35783
+ * @SINCE 1.95
35784
+ *
35785
+ * Sets a new value for property {@link #getShowCurrentDateButton showCurrentDateButton}.
35786
+ *
35787
+ * Determines whether there is a shortcut navigation to Today. When used in Month, Year or Year-range picker
35788
+ * view, the calendar navigates to Day picker view.
35789
+ *
35790
+ * Note: The Current date button appears if the `displayFormat` property allows entering day.
35791
+ *
35792
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
35793
+ *
35794
+ * Default value is `false`.
35795
+ */
35796
+ setShowCurrentDateButton(
35797
+ /**
35798
+ * New value for property `showCurrentDateButton`
35799
+ */
35800
+ bShowCurrentDateButton?: boolean
35801
+ ): this;
35592
35802
  /**
35593
35803
  * @SINCE 1.70
35594
35804
  *
@@ -35644,11 +35854,13 @@ declare namespace sap {
35644
35854
  * **Note:** The control is not UTC aware and the selected date range starts from 00:00:00:000 of the first
35645
35855
  * date and ends in 23:59:59:999 on the second date.
35646
35856
  *
35647
- * The {@link sap.ui.unified.Calendar} is used internally only if the `DateRangeSelection` is opened (not
35648
- * used for the initial rendering). If the `sap.ui.unified` library is not loaded before the `DateRangeSelection`
35649
- * is opened, it will be loaded upon opening. This could lead to a waiting time when the `DateRangeSelection`
35857
+ * The application developer should add dependency to `sap.ui.unified` library on application level to ensure
35858
+ * that the library is loaded before the module dependencies will be required. The {@link sap.ui.unified.Calendar}
35859
+ * is used internally only if the `DateRangeSelection` is opened (not used for the initial rendering). If
35860
+ * the `sap.ui.unified` library is not loaded before the `DateRangeSelection` is opened, it will be loaded
35861
+ * upon opening. This could lead to CSP compliance issues and adds an additional waiting time when the `DateRangeSelection`
35650
35862
  * is opened for the first time. To prevent this, apps using the `DateRangeSelection` should also load the
35651
- * `sap.ui.unified` library.
35863
+ * `sap.ui.unified` library in advance.
35652
35864
  *
35653
35865
  * Usage:
35654
35866
  *
@@ -36675,11 +36887,13 @@ declare namespace sap {
36675
36887
  *
36676
36888
  * The `DateTimePicker` control consists of two parts: the input field and the date/time picker.
36677
36889
  *
36678
- * **Note:** The {@link sap.ui.unified.Calendar} is used internally only if the `DateTimePicker` is opened
36679
- * (not used for the initial rendering). If the `sap.ui.unified` library is not loaded before the `DateTimePicker`
36680
- * is opened, it will be loaded upon opening. This could lead to a waiting time when the `DateTimePicker`
36681
- * is opened for the first time. To prevent this, apps using the `DateTimePicker` should also load the `sap.ui.unified`
36682
- * library.
36890
+ * **Note:** The application developer should add dependency to `sap.ui.unified` library on application
36891
+ * level to ensure that the library is loaded before the module dependencies will be required. The {@link
36892
+ * sap.ui.unified.Calendar} is used internally only if the `DateTimePicker` is opened (not used for the
36893
+ * initial rendering). If the `sap.ui.unified` library is not loaded before the `DateTimePicker` is opened,
36894
+ * it will be loaded upon opening. This could lead to CSP compliance issues and adds an additional waiting
36895
+ * time when the `DateTimePicker` is opened for the first time. To prevent this, apps using the `DateTimePicker`
36896
+ * should also load the `sap.ui.unified` library in advance.
36683
36897
  *
36684
36898
  * Usage:
36685
36899
  *
@@ -37540,7 +37754,7 @@ declare namespace sap {
37540
37754
  * @SINCE 1.11.2
37541
37755
  * @deprecated (since 1.13.1) - Please use the new stretch property instead. This enables a stretched Dialog
37542
37756
  * even on tablet and desktop. If you want to achieve the same effect as `stretchOnPhone`, please set the
37543
- * stretch with jQuery.device.is.phone, then the Dialog is only stretched when it runs on a phone.
37757
+ * stretch with `Device.system.phone`, then the Dialog is only stretched when it runs on a phone.
37544
37758
  *
37545
37759
  * Gets current value of property {@link #getStretchOnPhone stretchOnPhone}.
37546
37760
  *
@@ -38002,7 +38216,7 @@ declare namespace sap {
38002
38216
  * @SINCE 1.11.2
38003
38217
  * @deprecated (since 1.13.1) - Please use the new stretch property instead. This enables a stretched Dialog
38004
38218
  * even on tablet and desktop. If you want to achieve the same effect as `stretchOnPhone`, please set the
38005
- * stretch with jQuery.device.is.phone, then the Dialog is only stretched when it runs on a phone.
38219
+ * stretch with `Device.system.phone`, then the Dialog is only stretched when it runs on a phone.
38006
38220
  *
38007
38221
  * Sets a new value for property {@link #getStretchOnPhone stretchOnPhone}.
38008
38222
  *
@@ -38355,7 +38569,11 @@ declare namespace sap {
38355
38569
  * @SINCE 1.92
38356
38570
  * @EXPERIMENTAL (since 1.92)
38357
38571
  *
38358
- * This class represents the dynamic date range type.
38572
+ * This class represents the dynamic date range type. Model values should be in the following format: {
38573
+ * operator: "KEY", values: [param1, param2] }. Where the supported parameters are timestamps, month indexes
38574
+ * and numbers (all three are numbers). Their type is defined by the corresponding DynamicDateOption instance
38575
+ * identified by the same "KEY". This class is capable of formatting only the value parameters expected
38576
+ * by the DynamicDateRange control. A display format may be provided via the format options.
38359
38577
  */
38360
38578
  class DynamicDate extends sap.ui.model.SimpleType {
38361
38579
  /**
@@ -38363,19 +38581,22 @@ declare namespace sap {
38363
38581
  */
38364
38582
  constructor(
38365
38583
  /**
38366
- * Formatting options.
38584
+ * Format options. There are format options for each of the supported types of value parameters.
38367
38585
  */
38368
38586
  oFormatOptions?: {
38369
38587
  /**
38370
- * Format options controlling the options that contain dates in their display values.
38588
+ * Display format options for the values that contain dates. For a list of all available options, see {@link
38589
+ * sap.ui.core.format.DateFormat.getDateInstance DateFormat}.
38371
38590
  */
38372
38591
  date?: object;
38373
38592
  /**
38374
- * Format options controlling the options that contain months in their display values.
38593
+ * Display format options for the values that contain month names. The only supported option is the `pattern`
38594
+ * using the respective symbols for displaying months "MM", "MMM" or "MMMM".
38375
38595
  */
38376
38596
  month?: object;
38377
38597
  /**
38378
- * Format options controlling the options that contain numbers in their display values.
38598
+ * Display format options for the values that contain numbers. For a list of all available options, see
38599
+ * {@link sap.ui.core.format.NumberFormat.getInstance NumberFormat}.
38379
38600
  */
38380
38601
  int?: object;
38381
38602
  },
@@ -38435,7 +38656,7 @@ declare namespace sap {
38435
38656
  * Parses the given object value to a similar object. The whole value is in the following format { operator:
38436
38657
  * "KEY", values: [...array with JS dates or numbers to be parsed]}. Only parses the 'values' part of the
38437
38658
  * given object. The dates are expected as Javascript Dates and are converted to timestamps. The numbers
38438
- * and strings are left untouched.
38659
+ * and strings are left untouched. Special values with operator: "PARSEERROR" generate a parse exception.
38439
38660
  */
38440
38661
  parseValue(
38441
38662
  /**
@@ -38674,6 +38895,17 @@ declare namespace sap {
38674
38895
  */
38675
38896
  oValue: object
38676
38897
  ): /* was: sap.ui.core.date.UniversalDate */ any[];
38898
+ /**
38899
+ * Validates all input controls in the value help UI related to the current option. If one of the input
38900
+ * controls contains invalid value, then validation will return `false`. If all input controls contain valid
38901
+ * value, then the validation will return `true`.
38902
+ */
38903
+ validateValueHelpUI(
38904
+ /**
38905
+ * The control instance
38906
+ */
38907
+ oControl: sap.m.DynamicDateRange
38908
+ ): boolean;
38677
38909
  }
38678
38910
  /**
38679
38911
  * @SINCE 1.92.0
@@ -44064,6 +44296,17 @@ declare namespace sap {
44064
44296
  * Returns a metadata object for class sap.m.GenericTile.
44065
44297
  */
44066
44298
  static getMetadata(): sap.ui.core.ElementMetadata;
44299
+ /**
44300
+ * @EXPERIMENTAL (since 1.96)
44301
+ *
44302
+ * Adds some actionButton to the aggregation {@link #getActionButtons actionButtons}.
44303
+ */
44304
+ addActionButton(
44305
+ /**
44306
+ * The actionButton to add; if empty, nothing is inserted
44307
+ */
44308
+ oActionButton: sap.m.Button
44309
+ ): this;
44067
44310
  /**
44068
44311
  * Adds some tileContent to the aggregation {@link #getTileContent tileContent}.
44069
44312
  */
@@ -44114,6 +44357,20 @@ declare namespace sap {
44114
44357
  */
44115
44358
  oListener?: object
44116
44359
  ): this;
44360
+ /**
44361
+ * @EXPERIMENTAL (since 1.96)
44362
+ *
44363
+ * Binds aggregation {@link #getActionButtons actionButtons} to model data.
44364
+ *
44365
+ * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
44366
+ * of the possible properties of `oBindingInfo`.
44367
+ */
44368
+ bindActionButtons(
44369
+ /**
44370
+ * The binding information
44371
+ */
44372
+ oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
44373
+ ): this;
44117
44374
  /**
44118
44375
  * Binds aggregation {@link #getTileContent tileContent} to model data.
44119
44376
  *
@@ -44126,6 +44383,12 @@ declare namespace sap {
44126
44383
  */
44127
44384
  oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
44128
44385
  ): this;
44386
+ /**
44387
+ * @EXPERIMENTAL (since 1.96)
44388
+ *
44389
+ * Destroys all the actionButtons in the aggregation {@link #getActionButtons actionButtons}.
44390
+ */
44391
+ destroyActionButtons(): this;
44129
44392
  /**
44130
44393
  * @deprecated (since 1.36.0) - This aggregation is deprecated, use sap.m.ImageContent control to display
44131
44394
  * an icon instead.
@@ -44177,6 +44440,14 @@ declare namespace sap {
44177
44440
  domRef?: any;
44178
44441
  }
44179
44442
  ): this;
44443
+ /**
44444
+ * @EXPERIMENTAL (since 1.96)
44445
+ *
44446
+ * Gets content of aggregation {@link #getActionButtons actionButtons}.
44447
+ *
44448
+ * Action buttons added in ActionMode.
44449
+ */
44450
+ getActionButtons(): sap.m.Button[];
44180
44451
  /**
44181
44452
  * @SINCE 1.82
44182
44453
  *
@@ -44218,6 +44489,15 @@ declare namespace sap {
44218
44489
  * Additional description for aria-roledescription.
44219
44490
  */
44220
44491
  getAriaRoleDescription(): string;
44492
+ /**
44493
+ * @SINCE 1.96
44494
+ * @EXPERIMENTAL (since 1.96)
44495
+ *
44496
+ * Gets current value of property {@link #getBackgroundColor backgroundColor}.
44497
+ *
44498
+ * Background color of the GenericTile. Only applicable for IconMode.
44499
+ */
44500
+ getBackgroundColor(): sap.ui.core.CSSColor;
44221
44501
  /**
44222
44502
  * Gets current value of property {@link #getBackgroundImage backgroundImage}.
44223
44503
  *
@@ -44230,6 +44510,17 @@ declare namespace sap {
44230
44510
  * Provides an interface to the tile's layout information consistent in all modes and content densities.
44231
44511
  */
44232
44512
  getBoundingRects(): object[];
44513
+ /**
44514
+ * @EXPERIMENTAL (since 1.96)
44515
+ *
44516
+ * Gets current value of property {@link #getEnableNavigationButton enableNavigationButton}.
44517
+ *
44518
+ * Renders the given link as a button, enabling the option of opening the link in new tab/window functionality.
44519
+ * Works only in ArticleMode.
44520
+ *
44521
+ * Default value is `false`.
44522
+ */
44523
+ getEnableNavigationButton(): boolean;
44233
44524
  /**
44234
44525
  * Gets current value of property {@link #getFailedText failedText}.
44235
44526
  *
@@ -44282,6 +44573,14 @@ declare namespace sap {
44282
44573
  * Default value is `ContentMode`.
44283
44574
  */
44284
44575
  getMode(): sap.m.GenericTileMode;
44576
+ /**
44577
+ * @EXPERIMENTAL (since 1.96)
44578
+ *
44579
+ * Gets current value of property {@link #getNavigationButtonText navigationButtonText}.
44580
+ *
44581
+ * Text for navigate action button. Default Value is "Read More". Works only in ArticleMode.
44582
+ */
44583
+ getNavigationButtonText(): string;
44285
44584
  /**
44286
44585
  * @SINCE 1.46.0
44287
44586
  *
@@ -44342,6 +44641,15 @@ declare namespace sap {
44342
44641
  * The content of the tile.
44343
44642
  */
44344
44643
  getTileContent(): sap.m.TileContent[];
44644
+ /**
44645
+ * @SINCE 1.96
44646
+ * @EXPERIMENTAL (since 1.96)
44647
+ *
44648
+ * Gets current value of property {@link #getTileIcon tileIcon}.
44649
+ *
44650
+ * Icon of the GenericTile. Only applicable for IconMode.
44651
+ */
44652
+ getTileIcon(): sap.ui.core.URI;
44345
44653
  /**
44346
44654
  * @SINCE 1.76
44347
44655
  *
@@ -44350,6 +44658,17 @@ declare namespace sap {
44350
44658
  * Renders the given link as root element and therefore enables the open in new tab / window functionality
44351
44659
  */
44352
44660
  getUrl(): sap.ui.core.URI;
44661
+ /**
44662
+ * @SINCE 1.95
44663
+ * @EXPERIMENTAL
44664
+ *
44665
+ * Gets current value of property {@link #getValueColor valueColor}.
44666
+ *
44667
+ * The semantic color of the value.
44668
+ *
44669
+ * Default value is `"None"`.
44670
+ */
44671
+ getValueColor(): sap.m.ValueColor;
44353
44672
  /**
44354
44673
  * @SINCE 1.72
44355
44674
  *
@@ -44368,6 +44687,18 @@ declare namespace sap {
44368
44687
  * Default value is `Normal`.
44369
44688
  */
44370
44689
  getWrappingType(): sap.m.WrappingType;
44690
+ /**
44691
+ * @EXPERIMENTAL (since 1.96)
44692
+ *
44693
+ * Checks for the provided `sap.m.Button` in the aggregation {@link #getActionButtons actionButtons}. and
44694
+ * returns its index if found or -1 otherwise.
44695
+ */
44696
+ indexOfActionButton(
44697
+ /**
44698
+ * The actionButton whose index is looked for
44699
+ */
44700
+ oActionButton: sap.m.Button
44701
+ ): int;
44371
44702
  /**
44372
44703
  * Checks for the provided `sap.m.TileContent` in the aggregation {@link #getTileContent tileContent}. and
44373
44704
  * returns its index if found or -1 otherwise.
@@ -44378,6 +44709,23 @@ declare namespace sap {
44378
44709
  */
44379
44710
  oTileContent: sap.m.TileContent
44380
44711
  ): int;
44712
+ /**
44713
+ * @EXPERIMENTAL (since 1.96)
44714
+ *
44715
+ * Inserts a actionButton into the aggregation {@link #getActionButtons actionButtons}.
44716
+ */
44717
+ insertActionButton(
44718
+ /**
44719
+ * The actionButton to insert; if empty, nothing is inserted
44720
+ */
44721
+ oActionButton: sap.m.Button,
44722
+ /**
44723
+ * The `0`-based index the actionButton should be inserted at; for a negative value of `iIndex`, the actionButton
44724
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the actionButton
44725
+ * is inserted at the last position
44726
+ */
44727
+ iIndex: int
44728
+ ): this;
44381
44729
  /**
44382
44730
  * Inserts a tileContent into the aggregation {@link #getTileContent tileContent}.
44383
44731
  */
@@ -44393,6 +44741,25 @@ declare namespace sap {
44393
44741
  */
44394
44742
  iIndex: int
44395
44743
  ): this;
44744
+ /**
44745
+ * @EXPERIMENTAL (since 1.96)
44746
+ *
44747
+ * Removes a actionButton from the aggregation {@link #getActionButtons actionButtons}.
44748
+ */
44749
+ removeActionButton(
44750
+ /**
44751
+ * The actionButton to remove or its index or id
44752
+ */
44753
+ vActionButton: int | string | sap.m.Button
44754
+ ): sap.m.Button;
44755
+ /**
44756
+ * @EXPERIMENTAL (since 1.96)
44757
+ *
44758
+ * Removes all the controls from the aggregation {@link #getActionButtons actionButtons}.
44759
+ *
44760
+ * Additionally, it unregisters them from the hosting UIArea.
44761
+ */
44762
+ removeAllActionButtons(): sap.m.Button[];
44396
44763
  /**
44397
44764
  * Removes all the controls from the aggregation {@link #getTileContent tileContent}.
44398
44765
  *
@@ -44484,6 +44851,22 @@ declare namespace sap {
44484
44851
  */
44485
44852
  sAriaRoleDescription?: string
44486
44853
  ): this;
44854
+ /**
44855
+ * @SINCE 1.96
44856
+ * @EXPERIMENTAL (since 1.96)
44857
+ *
44858
+ * Sets a new value for property {@link #getBackgroundColor backgroundColor}.
44859
+ *
44860
+ * Background color of the GenericTile. Only applicable for IconMode.
44861
+ *
44862
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
44863
+ */
44864
+ setBackgroundColor(
44865
+ /**
44866
+ * New value for property `backgroundColor`
44867
+ */
44868
+ sBackgroundColor: sap.ui.core.CSSColor
44869
+ ): this;
44487
44870
  /**
44488
44871
  * Sets a new value for property {@link #getBackgroundImage backgroundImage}.
44489
44872
  *
@@ -44497,6 +44880,24 @@ declare namespace sap {
44497
44880
  */
44498
44881
  sBackgroundImage?: sap.ui.core.URI
44499
44882
  ): this;
44883
+ /**
44884
+ * @EXPERIMENTAL (since 1.96)
44885
+ *
44886
+ * Sets a new value for property {@link #getEnableNavigationButton enableNavigationButton}.
44887
+ *
44888
+ * Renders the given link as a button, enabling the option of opening the link in new tab/window functionality.
44889
+ * Works only in ArticleMode.
44890
+ *
44891
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
44892
+ *
44893
+ * Default value is `false`.
44894
+ */
44895
+ setEnableNavigationButton(
44896
+ /**
44897
+ * New value for property `enableNavigationButton`
44898
+ */
44899
+ bEnableNavigationButton?: boolean
44900
+ ): this;
44500
44901
  /**
44501
44902
  * Sets a new value for property {@link #getFailedText failedText}.
44502
44903
  *
@@ -44593,6 +44994,21 @@ declare namespace sap {
44593
44994
  */
44594
44995
  sMode?: sap.m.GenericTileMode
44595
44996
  ): this;
44997
+ /**
44998
+ * @EXPERIMENTAL (since 1.96)
44999
+ *
45000
+ * Sets a new value for property {@link #getNavigationButtonText navigationButtonText}.
45001
+ *
45002
+ * Text for navigate action button. Default Value is "Read More". Works only in ArticleMode.
45003
+ *
45004
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
45005
+ */
45006
+ setNavigationButtonText(
45007
+ /**
45008
+ * New value for property `navigationButtonText`
45009
+ */
45010
+ sNavigationButtonText?: string
45011
+ ): this;
44596
45012
  /**
44597
45013
  * @SINCE 1.46
44598
45014
  *
@@ -44700,6 +45116,22 @@ declare namespace sap {
44700
45116
  */
44701
45117
  sSystemInfo?: string
44702
45118
  ): this;
45119
+ /**
45120
+ * @SINCE 1.96
45121
+ * @EXPERIMENTAL (since 1.96)
45122
+ *
45123
+ * Sets a new value for property {@link #getTileIcon tileIcon}.
45124
+ *
45125
+ * Icon of the GenericTile. Only applicable for IconMode.
45126
+ *
45127
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
45128
+ */
45129
+ setTileIcon(
45130
+ /**
45131
+ * New value for property `tileIcon`
45132
+ */
45133
+ sTileIcon: sap.ui.core.URI
45134
+ ): this;
44703
45135
  /**
44704
45136
  * @SINCE 1.76
44705
45137
  *
@@ -44715,6 +45147,24 @@ declare namespace sap {
44715
45147
  */
44716
45148
  sUrl?: sap.ui.core.URI
44717
45149
  ): this;
45150
+ /**
45151
+ * @SINCE 1.95
45152
+ * @EXPERIMENTAL
45153
+ *
45154
+ * Sets a new value for property {@link #getValueColor valueColor}.
45155
+ *
45156
+ * The semantic color of the value.
45157
+ *
45158
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
45159
+ *
45160
+ * Default value is `"None"`.
45161
+ */
45162
+ setValueColor(
45163
+ /**
45164
+ * New value for property `valueColor`
45165
+ */
45166
+ sValueColor?: sap.m.ValueColor
45167
+ ): this;
44718
45168
  /**
44719
45169
  * @SINCE 1.72
44720
45170
  *
@@ -44759,6 +45209,12 @@ declare namespace sap {
44759
45209
  */
44760
45210
  value: boolean
44761
45211
  ): void;
45212
+ /**
45213
+ * @EXPERIMENTAL (since 1.96)
45214
+ *
45215
+ * Unbinds aggregation {@link #getActionButtons actionButtons} from model data.
45216
+ */
45217
+ unbindActionButtons(): this;
44762
45218
  /**
44763
45219
  * Unbinds aggregation {@link #getTileContent tileContent} from model data.
44764
45220
  */
@@ -45946,6 +46402,10 @@ declare namespace sap {
45946
46402
  * The key of the selected item
45947
46403
  */
45948
46404
  key?: string;
46405
+ /**
46406
+ * The key of the previous selected item
46407
+ */
46408
+ previousKey?: string;
45949
46409
  /**
45950
46410
  * The selected item
45951
46411
  */
@@ -47048,6 +47508,10 @@ declare namespace sap {
47048
47508
  * The key of the selected item
47049
47509
  */
47050
47510
  key?: string;
47511
+ /**
47512
+ * The key of the previous selected item
47513
+ */
47514
+ previousKey?: string;
47051
47515
  }
47052
47516
  ): this;
47053
47517
  /**
@@ -49480,6 +49944,17 @@ declare namespace sap {
49480
49944
  * or `null`.
49481
49945
  */
49482
49946
  getSelectedRow(): sap.ui.core.ID;
49947
+ /**
49948
+ * @SINCE 1.94
49949
+ *
49950
+ * Gets current value of property {@link #getShowClearIcon showClearIcon}.
49951
+ *
49952
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
49953
+ * and liveChange events.
49954
+ *
49955
+ * Default value is `false`.
49956
+ */
49957
+ getShowClearIcon(): boolean;
49483
49958
  /**
49484
49959
  * @SINCE 1.16.1
49485
49960
  *
@@ -50174,6 +50649,24 @@ declare namespace sap {
50174
50649
  */
50175
50650
  oListItem: sap.m.ColumnListItem
50176
50651
  ): this;
50652
+ /**
50653
+ * @SINCE 1.94
50654
+ *
50655
+ * Sets a new value for property {@link #getShowClearIcon showClearIcon}.
50656
+ *
50657
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
50658
+ * and liveChange events.
50659
+ *
50660
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
50661
+ *
50662
+ * Default value is `false`.
50663
+ */
50664
+ setShowClearIcon(
50665
+ /**
50666
+ * New value for property `showClearIcon`
50667
+ */
50668
+ bShowClearIcon?: boolean
50669
+ ): this;
50177
50670
  /**
50178
50671
  * @SINCE 1.16.1
50179
50672
  *
@@ -50564,7 +51057,11 @@ declare namespace sap {
50564
51057
  /**
50565
51058
  * settings for creating an icon
50566
51059
  */
50567
- oIconSettings: object
51060
+ oIconSettings: object,
51061
+ /**
51062
+ * position to be inserted in the aggregation. If not provided, the icon gets inserted on last position.
51063
+ */
51064
+ iPosition: int
50568
51065
  ): null | sap.ui.core.Icon;
50569
51066
  /**
50570
51067
  * Applies the focus info. To be overwritten by subclasses.
@@ -51905,7 +52402,7 @@ declare namespace sap {
51905
52402
  /**
51906
52403
  * Origin of the invalidation.
51907
52404
  */
51908
- oOrigin: object
52405
+ oOrigin: sap.ui.base.ManagedObject
51909
52406
  ): this;
51910
52407
  /**
51911
52408
  * Returns if the LightBox is open.
@@ -55445,6 +55942,17 @@ declare namespace sap {
55445
55942
  * A list of validation rules (one rule per mask character).
55446
55943
  */
55447
55944
  getRules(): sap.m.MaskInputRule[];
55945
+ /**
55946
+ * @SINCE 1.96
55947
+ *
55948
+ * Gets current value of property {@link #getShowClearIcon showClearIcon}.
55949
+ *
55950
+ * Specifies whether a clear icon is shown. Pressing the icon will clear input's value and fire the change
55951
+ * event.
55952
+ *
55953
+ * Default value is `false`.
55954
+ */
55955
+ getShowClearIcon(): boolean;
55448
55956
  /**
55449
55957
  * Checks for the provided `sap.m.MaskInputRule` in the aggregation {@link #getRules rules}. and returns
55450
55958
  * its index if found or -1 otherwise.
@@ -55520,6 +56028,24 @@ declare namespace sap {
55520
56028
  */
55521
56029
  sPlaceholderSymbol?: string
55522
56030
  ): this;
56031
+ /**
56032
+ * @SINCE 1.96
56033
+ *
56034
+ * Sets a new value for property {@link #getShowClearIcon showClearIcon}.
56035
+ *
56036
+ * Specifies whether a clear icon is shown. Pressing the icon will clear input's value and fire the change
56037
+ * event.
56038
+ *
56039
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
56040
+ *
56041
+ * Default value is `false`.
56042
+ */
56043
+ setShowClearIcon(
56044
+ /**
56045
+ * New value for property `showClearIcon`
56046
+ */
56047
+ bShowClearIcon?: boolean
56048
+ ): this;
55523
56049
  }
55524
56050
  /**
55525
56051
  * @SINCE 1.34.0
@@ -55634,6 +56160,11 @@ declare namespace sap {
55634
56160
  /**
55635
56161
  * The `sap.m.Menu` control represents a hierarchical menu. When opened on mobile devices it occupies the
55636
56162
  * whole screen.
56163
+ *
56164
+ * **Note:** The application developer should add dependency to `sap.ui.unified` library on application
56165
+ * level to ensure that the library is loaded before the module dependencies will be required. If the `sap.ui.unified`
56166
+ * library is not loaded in advance, this could lead to CSP compliance issues and adds an additional waiting
56167
+ * time. To prevent this, ensure that the `sap.ui.unified` library is loaded in advance.
55637
56168
  */
55638
56169
  class Menu extends sap.ui.core.Control implements sap.ui.core.IContextMenu {
55639
56170
  __implements__sap_ui_core_IContextMenu: boolean;
@@ -56050,6 +56581,53 @@ declare namespace sap {
56050
56581
  */
56051
56582
  vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
56052
56583
  ): this;
56584
+ /**
56585
+ * @SINCE 1.94.0
56586
+ *
56587
+ * Attaches event handler `fnFunction` to the {@link #event:beforeMenuOpen beforeMenuOpen} event of this
56588
+ * `sap.m.MenuButton`.
56589
+ *
56590
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
56591
+ * otherwise it will be bound to this `sap.m.MenuButton` itself.
56592
+ *
56593
+ * Fired before menu opening when the `buttonMode` is set to `Split` and the user presses the arrow button.
56594
+ */
56595
+ attachBeforeMenuOpen(
56596
+ /**
56597
+ * An application-specific payload object that will be passed to the event handler along with the event
56598
+ * object when firing the event
56599
+ */
56600
+ oData: object,
56601
+ /**
56602
+ * The function to be called when the event occurs
56603
+ */
56604
+ fnFunction: (p1: sap.ui.base.Event) => void,
56605
+ /**
56606
+ * Context object to call the event handler with. Defaults to this `sap.m.MenuButton` itself
56607
+ */
56608
+ oListener?: object
56609
+ ): this;
56610
+ /**
56611
+ * @SINCE 1.94.0
56612
+ *
56613
+ * Attaches event handler `fnFunction` to the {@link #event:beforeMenuOpen beforeMenuOpen} event of this
56614
+ * `sap.m.MenuButton`.
56615
+ *
56616
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
56617
+ * otherwise it will be bound to this `sap.m.MenuButton` itself.
56618
+ *
56619
+ * Fired before menu opening when the `buttonMode` is set to `Split` and the user presses the arrow button.
56620
+ */
56621
+ attachBeforeMenuOpen(
56622
+ /**
56623
+ * The function to be called when the event occurs
56624
+ */
56625
+ fnFunction: (p1: sap.ui.base.Event) => void,
56626
+ /**
56627
+ * Context object to call the event handler with. Defaults to this `sap.m.MenuButton` itself
56628
+ */
56629
+ oListener?: object
56630
+ ): this;
56053
56631
  /**
56054
56632
  * Attaches event handler `fnFunction` to the {@link #event:defaultAction defaultAction} event of this `sap.m.MenuButton`.
56055
56633
  *
@@ -56097,6 +56675,24 @@ declare namespace sap {
56097
56675
  * Destroys the menu in the aggregation {@link #getMenu menu}.
56098
56676
  */
56099
56677
  destroyMenu(): this;
56678
+ /**
56679
+ * @SINCE 1.94.0
56680
+ *
56681
+ * Detaches event handler `fnFunction` from the {@link #event:beforeMenuOpen beforeMenuOpen} event of this
56682
+ * `sap.m.MenuButton`.
56683
+ *
56684
+ * The passed function and listener object must match the ones used for event registration.
56685
+ */
56686
+ detachBeforeMenuOpen(
56687
+ /**
56688
+ * The function to be called, when the event occurs
56689
+ */
56690
+ fnFunction: (p1: sap.ui.base.Event) => void,
56691
+ /**
56692
+ * Context object on which the given function had to be called
56693
+ */
56694
+ oListener?: object
56695
+ ): this;
56100
56696
  /**
56101
56697
  * Detaches event handler `fnFunction` from the {@link #event:defaultAction defaultAction} event of this
56102
56698
  * `sap.m.MenuButton`.
@@ -56113,6 +56709,17 @@ declare namespace sap {
56113
56709
  */
56114
56710
  oListener?: object
56115
56711
  ): this;
56712
+ /**
56713
+ * @SINCE 1.94.0
56714
+ *
56715
+ * Fires event {@link #event:beforeMenuOpen beforeMenuOpen} to attached listeners.
56716
+ */
56717
+ fireBeforeMenuOpen(
56718
+ /**
56719
+ * Parameters to pass along with the event
56720
+ */
56721
+ mParameters?: object
56722
+ ): this;
56116
56723
  /**
56117
56724
  * Fires event {@link #event:defaultAction defaultAction} to attached listeners.
56118
56725
  */
@@ -60148,6 +60755,14 @@ declare namespace sap {
60148
60755
  * Default value is `[]`.
60149
60756
  */
60150
60757
  getSelectedKeys(): string[];
60758
+ /**
60759
+ * Gets current value of property {@link #getShowSelectAll showSelectAll}.
60760
+ *
60761
+ * Determines if the select all checkbox is visible on top of suggestions.
60762
+ *
60763
+ * Default value is `false`.
60764
+ */
60765
+ getShowSelectAll(): boolean;
60151
60766
  /**
60152
60767
  * Checks whether an item is selected.
60153
60768
  */
@@ -60222,6 +60837,21 @@ declare namespace sap {
60222
60837
  */
60223
60838
  aKeys: string[]
60224
60839
  ): this;
60840
+ /**
60841
+ * Sets a new value for property {@link #getShowSelectAll showSelectAll}.
60842
+ *
60843
+ * Determines if the select all checkbox is visible on top of suggestions.
60844
+ *
60845
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
60846
+ *
60847
+ * Default value is `false`.
60848
+ */
60849
+ setShowSelectAll(
60850
+ /**
60851
+ * New value for property `showSelectAll`
60852
+ */
60853
+ bShowSelectAll?: boolean
60854
+ ): this;
60225
60855
  /**
60226
60856
  * Creates picker if doesn't exist yet and sync with Control items
60227
60857
  */
@@ -60271,7 +60901,10 @@ declare namespace sap {
60271
60901
  * - You can review the tokens by pressing the right or left arrows on the keyboard.
60272
60902
  * - You can select single tokens or a range of tokens and you can copy/cut/delete them.
60273
60903
  */
60274
- class MultiInput extends sap.m.Input {
60904
+ class MultiInput
60905
+ extends sap.m.Input
60906
+ implements sap.ui.core.ISemanticFormContent {
60907
+ __implements__sap_ui_core_ISemanticFormContent: boolean;
60275
60908
  /**
60276
60909
  * Constructor for a new MultiInput.
60277
60910
  *
@@ -61419,12 +62052,6 @@ declare namespace sap {
61419
62052
  * Default value is `'100%'`.
61420
62053
  */
61421
62054
  getWidth(): sap.ui.core.CSSSize;
61422
- /**
61423
- * @SINCE 1.91
61424
- *
61425
- * Hides the placeholder and removes the 'onAfterRendering' placeholder delegate.
61426
- */
61427
- hidePlaceholder(): void;
61428
62055
  /**
61429
62056
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getPages pages}. and returns
61430
62057
  * its index if found or -1 otherwise.
@@ -61621,23 +62248,6 @@ declare namespace sap {
61621
62248
  */
61622
62249
  sWidth?: sap.ui.core.CSSSize
61623
62250
  ): this;
61624
- /**
61625
- * @SINCE 1.91
61626
- *
61627
- * Shows the placeholder if NavContainer is rendered. Otherwise, registers the 'onAfterRendering' delegate
61628
- * which shows the placeholder.
61629
- */
61630
- showPlaceholder(
61631
- /**
61632
- * Object containing the placeholder instance
61633
- */
61634
- mSettings: {
61635
- /**
61636
- * The placeholder instance
61637
- */
61638
- placeholder: /* was: sap.ui.core.Placeholder */ any;
61639
- }
61640
- ): void;
61641
62251
  /**
61642
62252
  * Navigates to the next page (with drill-down semantic) with the given (or default) animation. This creates
61643
62253
  * a new history item inside the NavContainer and allows going back.
@@ -74936,7 +75546,12 @@ declare namespace sap {
74936
75546
  /**
74937
75547
  * Parameters to pass along with the event
74938
75548
  */
74939
- mParameters?: object
75549
+ mParameters?: {
75550
+ /**
75551
+ * The iframe element.
75552
+ */
75553
+ target?: any;
75554
+ }
74940
75555
  ): this;
74941
75556
  /**
74942
75557
  * Fires event {@link #event:loaded loaded} to attached listeners.
@@ -75275,10 +75890,12 @@ declare namespace sap {
75275
75890
  * and even a whole week/month. The available navigation allows the user to select a specific interval using
75276
75891
  * a picker, or move to the previous/next interval using arrows.
75277
75892
  *
75278
- * **Note:** The `PlanningCalendar` uses parts of the `sap.ui.unified` library. This library will be loaded
75279
- * after the `PlanningCalendar`, if it wasn't loaded first. This could lead to a waiting time when a `PlanningCalendar`
75280
- * is used for the first time. To prevent this, apps that use the `PlanningCalendar` should also load the
75281
- * `sap.ui.unified` library.
75893
+ * **Note:** The application developer should add dependency to `sap.ui.unified` library on application
75894
+ * level to ensure that the library is loaded before the module dependencies will be required. The `PlanningCalendar`
75895
+ * uses parts of the `sap.ui.unified` library. This library will be loaded after the `PlanningCalendar`,
75896
+ * if it wasn't loaded first. This could lead to CSP compliance issues and adds an additional waiting time
75897
+ * when a `PlanningCalendar` is used for the first time. To prevent this, apps that use the `PlanningCalendar`
75898
+ * should also load the `sap.ui.unified` library in advance.
75282
75899
  *
75283
75900
  * Usage:
75284
75901
  *
@@ -75919,8 +76536,8 @@ declare namespace sap {
75919
76536
  *
75920
76537
  * Gets current value of property {@link #getAppointmentRoundWidth appointmentRoundWidth}.
75921
76538
  *
75922
- * Defines rounding of the width CalendarAppoinment **Note:** This property is applied, when
75923
- * the calendar interval type is day and the view shows more than 20 days
76539
+ * Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
76540
+ * interval type is day and the view shows more than 20 days
75924
76541
  *
75925
76542
  * Default value is `None`.
75926
76543
  */
@@ -75981,6 +76598,20 @@ declare namespace sap {
75981
76598
  * Getter for the end point in time of the shown interval
75982
76599
  */
75983
76600
  getEndDate(): Date;
76601
+ /**
76602
+ * @SINCE 1.94
76603
+ *
76604
+ * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
76605
+ *
76606
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
76607
+ * If there is no valid value set, the default of the used locale is used.
76608
+ *
76609
+ * Note: this property will only have effect in the weekly – based views of the PlanningCalendar – Week
76610
+ * view, and OneMonth view (on small devices).
76611
+ *
76612
+ * Default value is `-1`.
76613
+ */
76614
+ getFirstDayOfWeek(): int;
75984
76615
  /**
75985
76616
  * @SINCE 1.48.0
75986
76617
  *
@@ -76408,8 +77039,8 @@ declare namespace sap {
76408
77039
  *
76409
77040
  * Sets a new value for property {@link #getAppointmentRoundWidth appointmentRoundWidth}.
76410
77041
  *
76411
- * Defines rounding of the width CalendarAppoinment **Note:** This property is applied, when
76412
- * the calendar interval type is day and the view shows more than 20 days
77042
+ * Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
77043
+ * interval type is day and the view shows more than 20 days
76413
77044
  *
76414
77045
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
76415
77046
  *
@@ -76490,6 +77121,27 @@ declare namespace sap {
76490
77121
  setCustomAppointmentsSorterCallback(
76491
77122
  fnSorter: sap.m.PlanningCalendar.appointmentsSorterCallback
76492
77123
  ): this;
77124
+ /**
77125
+ * @SINCE 1.94
77126
+ *
77127
+ * Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
77128
+ *
77129
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
77130
+ * If there is no valid value set, the default of the used locale is used.
77131
+ *
77132
+ * Note: this property will only have effect in the weekly – based views of the PlanningCalendar – Week
77133
+ * view, and OneMonth view (on small devices).
77134
+ *
77135
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
77136
+ *
77137
+ * Default value is `-1`.
77138
+ */
77139
+ setFirstDayOfWeek(
77140
+ /**
77141
+ * New value for property `firstDayOfWeek`
77142
+ */
77143
+ iFirstDayOfWeek?: int
77144
+ ): this;
76493
77145
  /**
76494
77146
  * @SINCE 1.48.0
76495
77147
  *
@@ -86815,6 +87467,10 @@ declare namespace sap {
86815
87467
  * The selected item.
86816
87468
  */
86817
87469
  selectedItem?: sap.ui.core.Item;
87470
+ /**
87471
+ * The previous selected item.
87472
+ */
87473
+ previousSelectedItem?: sap.ui.core.Item;
86818
87474
  }
86819
87475
  ): this;
86820
87476
  /**
@@ -91178,10 +91834,12 @@ declare namespace sap {
91178
91834
  *
91179
91835
  * Overview:
91180
91836
  *
91181
- * **Note:** The `SinglePlanningCalendar` uses parts of the `sap.ui.unified` library. This library will
91182
- * be loaded after the `SinglePlanningCalendar`, if it wasn't previously loaded. This could lead to a waiting
91837
+ * **Note:** The application developer should add dependency to `sap.ui.unified` library on application
91838
+ * level to ensure that the library is loaded before the module dependencies will be required. The `SinglePlanningCalendar`
91839
+ * uses parts of the `sap.ui.unified` library. This library will be loaded after the `SinglePlanningCalendar`,
91840
+ * if it wasn't previously loaded. This could lead to CSP compliance issues and adds an additional waiting
91183
91841
  * time when a `SinglePlanningCalendar` is used for the first time. To prevent this, apps using the `SinglePlanningCalendar`
91184
- * must also load the `sap.ui.unified` library.
91842
+ * must also load the `sap.ui.unified` library in advance.
91185
91843
  *
91186
91844
  * The `SinglePlanningCalendar` has the following structure:
91187
91845
  *
@@ -94014,6 +94672,15 @@ declare namespace sap {
94014
94672
  * Default value is `5000`.
94015
94673
  */
94016
94674
  getDisplayTime(): int;
94675
+ /**
94676
+ * @SINCE 1.96
94677
+ * @EXPERIMENTAL
94678
+ *
94679
+ * Gets current value of property {@link #getHeight height}.
94680
+ *
94681
+ * Height of the control.
94682
+ */
94683
+ getHeight(): sap.ui.core.CSSSize;
94017
94684
  /**
94018
94685
  * @SINCE 1.46.0
94019
94686
  *
@@ -94112,6 +94779,22 @@ declare namespace sap {
94112
94779
  */
94113
94780
  iDisplayTime?: int
94114
94781
  ): this;
94782
+ /**
94783
+ * @SINCE 1.96
94784
+ * @EXPERIMENTAL
94785
+ *
94786
+ * Sets a new value for property {@link #getHeight height}.
94787
+ *
94788
+ * Height of the control.
94789
+ *
94790
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
94791
+ */
94792
+ setHeight(
94793
+ /**
94794
+ * New value for property `height`
94795
+ */
94796
+ sHeight: sap.ui.core.CSSSize
94797
+ ): this;
94115
94798
  /**
94116
94799
  * @SINCE 1.46.0
94117
94800
  *
@@ -95700,22 +96383,6 @@ declare namespace sap {
95700
96383
  * Used to hide the master page when in ShowHideMode and the device is in portrait mode.
95701
96384
  */
95702
96385
  hideMaster(): this;
95703
- /**
95704
- * @SINCE 1.91
95705
- *
95706
- * Hides the placeholder on the corresponding column for the provided aggregation name.
95707
- */
95708
- hidePlaceholder(
95709
- /**
95710
- * Object containing the aggregation name
95711
- */
95712
- mSettings: {
95713
- /**
95714
- * The aggregation name to decide on which column/container the placeholder should be hidden
95715
- */
95716
- aggregation: string;
95717
- }
95718
- ): void;
95719
96386
  /**
95720
96387
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getDetailPages detailPages}.
95721
96388
  * and returns its index if found or -1 otherwise.
@@ -96034,22 +96701,6 @@ declare namespace sap {
96034
96701
  * Used to make the master page visible when in ShowHideMode and the device is in portrait mode.
96035
96702
  */
96036
96703
  showMaster(): this;
96037
- /**
96038
- * @SINCE 1.91
96039
- *
96040
- * Shows the placeholder on the corresponding column for the provided aggregation name.
96041
- */
96042
- showPlaceholder(
96043
- /**
96044
- * Object containing the aggregation name
96045
- */
96046
- mSettings: {
96047
- /**
96048
- * The aggregation name to decide on which column/container the placeholder should be shown
96049
- */
96050
- aggregation: string;
96051
- }
96052
- ): void;
96053
96704
  /**
96054
96705
  * @SINCE 1.10.0
96055
96706
  *
@@ -96275,6 +96926,17 @@ declare namespace sap {
96275
96926
  * Returns a metadata object for class sap.m.StandardDynamicDateOption.
96276
96927
  */
96277
96928
  static getMetadata(): sap.ui.core.ElementMetadata;
96929
+ /**
96930
+ * Validates all input controls in the value help UI related to the current option. If one of the input
96931
+ * controls contains invalid value, then validation will return `false`. If all input controls contain valid
96932
+ * value, then the validation will return `true`.
96933
+ */
96934
+ validateValueHelpUI(
96935
+ /**
96936
+ * The control instance
96937
+ */
96938
+ oControl: sap.m.DynamicDateRange
96939
+ ): boolean;
96278
96940
  }
96279
96941
  /**
96280
96942
  * `sap.m.StandardListItem` is a list item providing the most common use cases, e.g. image, title and description.
@@ -96393,7 +97055,9 @@ declare namespace sap {
96393
97055
  /**
96394
97056
  * Gets current value of property {@link #getInfo info}.
96395
97057
  *
96396
- * Defines an additional information text.
97058
+ * Defines an additional information text. **Note:** A wrapping of the information text is also supported
97059
+ * as of version 1.95, if `wrapping=true`. Although long strings are supported for the information text,
97060
+ * it is recommended to use short strings. For more details, see {@link #getWrapping wrapping}.
96397
97061
  */
96398
97062
  getInfo(): string;
96399
97063
  /**
@@ -96444,6 +97108,23 @@ declare namespace sap {
96444
97108
  * Default value is `Inherit`.
96445
97109
  */
96446
97110
  getTitleTextDirection(): sap.ui.core.TextDirection;
97111
+ /**
97112
+ * @SINCE 1.94
97113
+ *
97114
+ * Gets current value of property {@link #getWrapCharLimit wrapCharLimit}.
97115
+ *
97116
+ * This property can be used to change the default character limits for the wrapping behavior.
97117
+ *
97118
+ * If this property is set to 0, then the default character limit used by the wrapping behavior is used.
97119
+ * For details see {@link #getWrapping wrapping}.
97120
+ *
97121
+ * **Note:**
97122
+ *
97123
+ * 0 or a positive integer must be used for this property.
97124
+ *
97125
+ * Default value is `0`.
97126
+ */
97127
+ getWrapCharLimit(): int;
96447
97128
  /**
96448
97129
  * @SINCE 1.67
96449
97130
  *
@@ -96455,6 +97136,9 @@ declare namespace sap {
96455
97136
  *
96456
97137
  * In the desktop mode, initial rendering of the control contains 300 characters along with a button to
96457
97138
  * expand and collapse the text whereas in the phone mode, the character limit is set to 100 characters.
97139
+ * A wrapping of the information text is supported as of 1.95. But expanding and collapsing the information
97140
+ * text is not possible. A wrapping of the information text is disabled if `infoStateInverted` is set to
97141
+ * `true`.
96458
97142
  *
96459
97143
  * Default value is `false`.
96460
97144
  */
@@ -96554,7 +97238,9 @@ declare namespace sap {
96554
97238
  /**
96555
97239
  * Sets a new value for property {@link #getInfo info}.
96556
97240
  *
96557
- * Defines an additional information text.
97241
+ * Defines an additional information text. **Note:** A wrapping of the information text is also supported
97242
+ * as of version 1.95, if `wrapping=true`. Although long strings are supported for the information text,
97243
+ * it is recommended to use short strings. For more details, see {@link #getWrapping wrapping}.
96558
97244
  *
96559
97245
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
96560
97246
  */
@@ -96647,6 +97333,30 @@ declare namespace sap {
96647
97333
  */
96648
97334
  sTitleTextDirection?: sap.ui.core.TextDirection
96649
97335
  ): this;
97336
+ /**
97337
+ * @SINCE 1.94
97338
+ *
97339
+ * Sets a new value for property {@link #getWrapCharLimit wrapCharLimit}.
97340
+ *
97341
+ * This property can be used to change the default character limits for the wrapping behavior.
97342
+ *
97343
+ * If this property is set to 0, then the default character limit used by the wrapping behavior is used.
97344
+ * For details see {@link #getWrapping wrapping}.
97345
+ *
97346
+ * **Note:**
97347
+ *
97348
+ * 0 or a positive integer must be used for this property.
97349
+ *
97350
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
97351
+ *
97352
+ * Default value is `0`.
97353
+ */
97354
+ setWrapCharLimit(
97355
+ /**
97356
+ * New value for property `wrapCharLimit`
97357
+ */
97358
+ iWrapCharLimit?: int
97359
+ ): this;
96650
97360
  /**
96651
97361
  * @SINCE 1.67
96652
97362
  *
@@ -96658,6 +97368,9 @@ declare namespace sap {
96658
97368
  *
96659
97369
  * In the desktop mode, initial rendering of the control contains 300 characters along with a button to
96660
97370
  * expand and collapse the text whereas in the phone mode, the character limit is set to 100 characters.
97371
+ * A wrapping of the information text is supported as of 1.95. But expanding and collapsing the information
97372
+ * text is not possible. A wrapping of the information text is disabled if `infoStateInverted` is set to
97373
+ * `true`.
96661
97374
  *
96662
97375
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
96663
97376
  *
@@ -102245,7 +102958,7 @@ declare namespace sap {
102245
102958
  * Gets current value of property {@link #getGrowing growing}.
102246
102959
  *
102247
102960
  * Indicates the ability of the control to automatically grow and shrink dynamically with its content. **Note:**
102248
- * The `height` property is ignored, if this property set to `true`.
102961
+ * This property should not be used when the `height` property is set.
102249
102962
  *
102250
102963
  * Default value is `false`.
102251
102964
  */
@@ -102339,7 +103052,7 @@ declare namespace sap {
102339
103052
  * Sets a new value for property {@link #getGrowing growing}.
102340
103053
  *
102341
103054
  * Indicates the ability of the control to automatically grow and shrink dynamically with its content. **Note:**
102342
- * The `height` property is ignored, if this property set to `true`.
103055
+ * This property should not be used when the `height` property is set.
102343
103056
  *
102344
103057
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
102345
103058
  *
@@ -103204,6 +103917,16 @@ declare namespace sap {
103204
103917
  * Default value is `"Auto"`.
103205
103918
  */
103206
103919
  getFrameType(): sap.m.FrameType;
103920
+ /**
103921
+ * @EXPERIMENTAL (since 1.96)
103922
+ *
103923
+ * Gets current value of property {@link #getPriority priority}.
103924
+ *
103925
+ * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
103926
+ *
103927
+ * Default value is `None`.
103928
+ */
103929
+ getPriority(): sap.ui.core.Priority;
103207
103930
  /**
103208
103931
  * @deprecated (since 1.38.0) - The TileContent control has now a fixed size, depending on the used media
103209
103932
  * (desktop, tablet or phone).
@@ -103291,6 +104014,23 @@ declare namespace sap {
103291
104014
  */
103292
104015
  sFrameType?: sap.m.FrameType
103293
104016
  ): this;
104017
+ /**
104018
+ * @EXPERIMENTAL (since 1.96)
104019
+ *
104020
+ * Sets a new value for property {@link #getPriority priority}.
104021
+ *
104022
+ * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
104023
+ *
104024
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
104025
+ *
104026
+ * Default value is `None`.
104027
+ */
104028
+ setPriority(
104029
+ /**
104030
+ * New value for property `priority`
104031
+ */
104032
+ sPriority?: sap.ui.core.Priority
104033
+ ): this;
103294
104034
  /**
103295
104035
  * Setter for protected property to enable or disable content rendering. This function does not invalidate
103296
104036
  * the control.
@@ -112497,14 +113237,15 @@ declare namespace sap {
112497
113237
  * - Steps can be branching depending on choices the user made in their input - this is set by the `enableBranching`
112498
113238
  * property.
112499
113239
  * - Steps can have different visual representations - numbers or icons. You can add labels for better
112500
- * readability Content: The content occupies the main part of the page. It can hold any type of input
112501
- * controls. The content is kept in {@link sap.m.WizardStep wizard steps}. Next Step Button: The next step
112502
- * button is displayed below the content. It can be hidden by setting `showNextButton` to `false` and displayed,
112503
- * for example, only after the user has filled all mandatory fields. Usage: When to use:: When the user
112504
- * has to accomplish a long or unfamiliar task. When not to use:: When the user has to accomplish a routine
112505
- * task that is clear and familiar. When the task has only two steps or less. Responsive Behavior: On mobile
112506
- * devices the steps in the StepNavigator are grouped together and overlap. Tapping on them will show a
112507
- * popover to select the step to navigate to.
113240
+ * readability **Note:** Dynamic step insertion is not supported. Even if branching steps are used,
113241
+ * the steps should be known in advance. Content: The content occupies the main part of the page. It can
113242
+ * hold any type of input controls. The content is kept in {@link sap.m.WizardStep wizard steps}. Next Step
113243
+ * Button: The next step button is displayed below the content. It can be hidden by setting `showNextButton`
113244
+ * to `false` and displayed, for example, only after the user has filled all mandatory fields. Usage: When
113245
+ * to use:: When the user has to accomplish a long or unfamiliar task. When not to use:: When the user has
113246
+ * to accomplish a routine task that is clear and familiar. When the task has only two steps or less. Responsive
113247
+ * Behavior: On mobile devices the steps in the StepNavigator are grouped together and overlap. Tapping
113248
+ * on them will show a popover to select the step to navigate to.
112508
113249
  *
112509
113250
  * When using the sap.m.Wizard in SAP Quartz theme, the breakpoints and layout paddings could be determined
112510
113251
  * by the container's width. To enable this concept and add responsive paddings to the navigation area and
@@ -114211,6 +114952,22 @@ declare namespace sap {
114211
114952
  * Defines the mode of GenericTile.
114212
114953
  */
114213
114954
  enum GenericTileMode {
114955
+ /**
114956
+ * @EXPERIMENTAL (since 1.96)
114957
+ *
114958
+ * Action Mode (Two lines for the header).
114959
+ *
114960
+ * Generic Tile renders buttons that are specified under 'actionButtons' aggregation
114961
+ */
114962
+ ActionMode = "ActionMode",
114963
+ /**
114964
+ * @EXPERIMENTAL (since 1.96)
114965
+ *
114966
+ * Article Mode (Two lines for the header and one line for the subtitle).
114967
+ *
114968
+ * Enables Article Mode.
114969
+ */
114970
+ ArticleMode = "ArticleMode",
114214
114971
  /**
114215
114972
  * Default mode (Two lines for the header and one line for the subtitle).
114216
114973
  */
@@ -114219,6 +114976,15 @@ declare namespace sap {
114219
114976
  * Header mode (Four lines for the header and one line for the subtitle).
114220
114977
  */
114221
114978
  HeaderMode = "HeaderMode",
114979
+ /**
114980
+ * @EXPERIMENTAL (since 1.96)
114981
+ *
114982
+ * Icon mode.
114983
+ *
114984
+ * GenericTile displays a combination of icon and header title. It is applicable only for the OneByOne FrameType
114985
+ * and TwoByHalf FrameType.
114986
+ */
114987
+ IconMode = "IconMode",
114222
114988
  /**
114223
114989
  * @SINCE 1.44.0
114224
114990
  *
@@ -115600,7 +116366,7 @@ declare namespace sap {
115600
116366
  */
115601
116367
  Auto = "Auto",
115602
116368
  /**
115603
- * Explicitly sets the alignment to the start (left or right depending on LTR/RTL)
116369
+ * Explicitly sets the alignment to the center
115604
116370
  */
115605
116371
  Center = "Center",
115606
116372
  /**
@@ -116045,6 +116811,18 @@ declare namespace sap {
116045
116811
 
116046
116812
  "sap/m/OverflowToolbarToggleButton": undefined;
116047
116813
 
116814
+ "sap/m/p13n/BasePanel": undefined;
116815
+
116816
+ "sap/m/p13n/Container": undefined;
116817
+
116818
+ "sap/m/p13n/GroupPanel": undefined;
116819
+
116820
+ "sap/m/p13n/QueryPanel": undefined;
116821
+
116822
+ "sap/m/p13n/SelectionPanel": undefined;
116823
+
116824
+ "sap/m/p13n/SortPanel": undefined;
116825
+
116048
116826
  "sap/m/P13nColumnsItem": undefined;
116049
116827
 
116050
116828
  "sap/m/P13nColumnsPanel": undefined;