@openui5/ts-types 1.93.3 → 1.96.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.93.3
1
+ // For Library Version: 1.96.2
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,32 @@ 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
+ * Disables press event for the tile control.
13922
+ */
13923
+ pressEnabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
13924
+
13925
+ /**
13926
+ * @EXPERIMENTAL (since 1.96)
13927
+ *
13928
+ * Text for navigate action button. Default Value is "Read More". Works only in ArticleMode.
13929
+ */
13930
+ navigationButtonText?:
13931
+ | string
13932
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
13933
+
13886
13934
  /**
13887
13935
  * @SINCE 1.60
13888
13936
  *
@@ -13910,6 +13958,36 @@ declare namespace sap {
13910
13958
  | string
13911
13959
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
13912
13960
 
13961
+ /**
13962
+ * @SINCE 1.96
13963
+ * @EXPERIMENTAL (since 1.96)
13964
+ *
13965
+ * Icon of the GenericTile. Only applicable for IconMode.
13966
+ */
13967
+ tileIcon?:
13968
+ | sap.ui.core.URI
13969
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
13970
+
13971
+ /**
13972
+ * @SINCE 1.96
13973
+ * @EXPERIMENTAL (since 1.96)
13974
+ *
13975
+ * Background color of the GenericTile. Only applicable for IconMode.
13976
+ */
13977
+ backgroundColor?:
13978
+ | sap.ui.core.CSSColor
13979
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
13980
+
13981
+ /**
13982
+ * @SINCE 1.95
13983
+ * @EXPERIMENTAL
13984
+ *
13985
+ * The semantic color of the value.
13986
+ */
13987
+ valueColor?:
13988
+ | sap.m.ValueColor
13989
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
13990
+
13913
13991
  /**
13914
13992
  * The content of the tile.
13915
13993
  */
@@ -13927,6 +14005,16 @@ declare namespace sap {
13927
14005
  */
13928
14006
  icon?: sap.ui.core.Control;
13929
14007
 
14008
+ /**
14009
+ * @EXPERIMENTAL (since 1.96)
14010
+ *
14011
+ * Action buttons added in ActionMode.
14012
+ */
14013
+ actionButtons?:
14014
+ | sap.m.Button[]
14015
+ | sap.m.Button
14016
+ | sap.ui.base.ManagedObject.AggregationBindingInfo;
14017
+
13930
14018
  /**
13931
14019
  * The event is triggered when the user presses the tile.
13932
14020
  */
@@ -14912,6 +15000,14 @@ declare namespace sap {
14912
15000
  */
14913
15001
  autocomplete?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
14914
15002
 
15003
+ /**
15004
+ * @SINCE 1.94
15005
+ *
15006
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
15007
+ * and liveChange events.
15008
+ */
15009
+ showClearIcon?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
15010
+
14915
15011
  /**
14916
15012
  * @SINCE 1.16.1
14917
15013
  *
@@ -15881,6 +15977,14 @@ declare namespace sap {
15881
15977
  */
15882
15978
  mask?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
15883
15979
 
15980
+ /**
15981
+ * @SINCE 1.96
15982
+ *
15983
+ * Specifies whether a clear icon is shown. Pressing the icon will clear input's value and fire the change
15984
+ * event.
15985
+ */
15986
+ showClearIcon?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
15987
+
15884
15988
  /**
15885
15989
  * A list of validation rules (one rule per mask character).
15886
15990
  */
@@ -16037,6 +16141,13 @@ declare namespace sap {
16037
16141
  * is set to `false` and another action from the menu has been selected previously.
16038
16142
  */
16039
16143
  defaultAction?: (oEvent: sap.ui.base.Event) => void;
16144
+
16145
+ /**
16146
+ * @SINCE 1.94.0
16147
+ *
16148
+ * Fired before menu opening when the `buttonMode` is set to `Split` and the user presses the arrow button.
16149
+ */
16150
+ beforeMenuOpen?: (oEvent: sap.ui.base.Event) => void;
16040
16151
  }
16041
16152
 
16042
16153
  interface $MenuItemSettings extends sap.ui.core.$ItemSettings {
@@ -16492,6 +16603,11 @@ declare namespace sap {
16492
16603
  */
16493
16604
  selectedKeys?: string[] | sap.ui.base.ManagedObject.PropertyBindingInfo;
16494
16605
 
16606
+ /**
16607
+ * Determines if the select all checkbox is visible on top of suggestions.
16608
+ */
16609
+ showSelectAll?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
16610
+
16495
16611
  /**
16496
16612
  * Provides getter and setter for the selected items from the aggregation named items.
16497
16613
  */
@@ -19206,8 +19322,8 @@ declare namespace sap {
19206
19322
  * @SINCE 1.81.0
19207
19323
  * @EXPERIMENTAL (since 1.81.0)
19208
19324
  *
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
19325
+ * Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
19326
+ * interval type is day and the view shows more than 20 days
19211
19327
  */
19212
19328
  appointmentRoundWidth?:
19213
19329
  | sap.ui.unified.CalendarAppointmentRoundWidth
@@ -19299,6 +19415,17 @@ declare namespace sap {
19299
19415
  */
19300
19416
  stickyHeader?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
19301
19417
 
19418
+ /**
19419
+ * @SINCE 1.94
19420
+ *
19421
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
19422
+ * If there is no valid value set, the default of the used locale is used.
19423
+ *
19424
+ * Note: this property will only have effect in the weekly – based views of the PlanningCalendar – Week
19425
+ * view, and OneMonth view (on small devices).
19426
+ */
19427
+ firstDayOfWeek?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
19428
+
19302
19429
  /**
19303
19430
  * Rows of the `PlanningCalendar`.
19304
19431
  */
@@ -22222,6 +22349,16 @@ declare namespace sap {
22222
22349
  | sap.ui.core.CSSSize
22223
22350
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
22224
22351
 
22352
+ /**
22353
+ * @SINCE 1.96
22354
+ * @EXPERIMENTAL
22355
+ *
22356
+ * Height of the control.
22357
+ */
22358
+ height?:
22359
+ | sap.ui.core.CSSSize
22360
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
22361
+
22225
22362
  /**
22226
22363
  * The set of Generic Tiles to be shown in the control.
22227
22364
  */
@@ -22488,7 +22625,9 @@ declare namespace sap {
22488
22625
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
22489
22626
 
22490
22627
  /**
22491
- * Defines an additional information text.
22628
+ * Defines an additional information text. **Note:** A wrapping of the information text is also supported
22629
+ * as of version 1.95, if `wrapping=true`. Although long strings are supported for the information text,
22630
+ * it is recommended to use short strings. For more details, see {@link #getWrapping wrapping}.
22492
22631
  */
22493
22632
  info?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
22494
22633
 
@@ -22537,6 +22676,9 @@ declare namespace sap {
22537
22676
  *
22538
22677
  * In the desktop mode, initial rendering of the control contains 300 characters along with a button to
22539
22678
  * expand and collapse the text whereas in the phone mode, the character limit is set to 100 characters.
22679
+ * A wrapping of the information text is supported as of 1.95. But expanding and collapsing the information
22680
+ * text is not possible. A wrapping of the information text is disabled if `infoStateInverted` is set to
22681
+ * `true`.
22540
22682
  */
22541
22683
  wrapping?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
22542
22684
 
@@ -22550,6 +22692,20 @@ declare namespace sap {
22550
22692
  infoStateInverted?:
22551
22693
  | boolean
22552
22694
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
22695
+
22696
+ /**
22697
+ * @SINCE 1.94
22698
+ *
22699
+ * This property can be used to change the default character limits for the wrapping behavior.
22700
+ *
22701
+ * If this property is set to 0, then the default character limit used by the wrapping behavior is used.
22702
+ * For details see {@link #getWrapping wrapping}.
22703
+ *
22704
+ * **Note:**
22705
+ *
22706
+ * 0 or a positive integer must be used for this property.
22707
+ */
22708
+ wrapCharLimit?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
22553
22709
  }
22554
22710
 
22555
22711
  interface $StandardTileSettings extends sap.m.$TileSettings {
@@ -23514,7 +23670,7 @@ declare namespace sap {
23514
23670
  * @SINCE 1.38.0
23515
23671
  *
23516
23672
  * 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`.
23673
+ * This property should not be used when the `height` property is set.
23518
23674
  */
23519
23675
  growing?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
23520
23676
 
@@ -23634,6 +23790,15 @@ declare namespace sap {
23634
23790
  | sap.m.FrameType
23635
23791
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
23636
23792
 
23793
+ /**
23794
+ * @EXPERIMENTAL (since 1.96)
23795
+ *
23796
+ * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
23797
+ */
23798
+ priority?:
23799
+ | sap.ui.core.Priority
23800
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
23801
+
23637
23802
  /**
23638
23803
  * The switchable view that depends on the tile type.
23639
23804
  */
@@ -27872,9 +28037,6 @@ declare namespace sap {
27872
28037
  *
27873
28038
  * Determines the background color of the control.
27874
28039
  *
27875
- * **Note:** By using background colors from the predefined sets, your colors can later be customized from
27876
- * the Theme Designer.
27877
- *
27878
28040
  * Default value is `Accent6`.
27879
28041
  */
27880
28042
  getBackgroundColor(): sap.m.AvatarColor;
@@ -28019,9 +28181,6 @@ declare namespace sap {
28019
28181
  *
28020
28182
  * Determines the background color of the control.
28021
28183
  *
28022
- * **Note:** By using background colors from the predefined sets, your colors can later be customized from
28023
- * the Theme Designer.
28024
- *
28025
28184
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
28026
28185
  *
28027
28186
  * Default value is `Accent6`.
@@ -31792,11 +31951,13 @@ declare namespace sap {
31792
31951
  * See:
31793
31952
  * {@link sap.m.ColorPalettePopover}
31794
31953
  *
31795
- * **Note:** The {@link sap.ui.unified.ColorPicker} is used internally only if the `ColorPicker`
31954
+ * **Note:** The application developers should add dependency to `sap.ui.unified` library
31955
+ * on application level to ensure that the library is loaded before the module dependencies will be required.
31956
+ * The {@link sap.ui.unified.ColorPicker} is used internally only if the `ColorPicker`
31796
31957
  * 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.
31958
+ * before the `ColorPicker` is opened, it will be loaded upon opening. This could lead to CSP compliance
31959
+ * issues and adds an additional waiting time when the `ColorPicker` is opened for the first time.
31960
+ * To prevent this, apps using the `ColorPalette` should also load the `sap.ui.unified` library in advance.
31800
31961
  */
31801
31962
  constructor(
31802
31963
  /**
@@ -31813,11 +31974,13 @@ declare namespace sap {
31813
31974
  * See:
31814
31975
  * {@link sap.m.ColorPalettePopover}
31815
31976
  *
31816
- * **Note:** The {@link sap.ui.unified.ColorPicker} is used internally only if the `ColorPicker`
31977
+ * **Note:** The application developers should add dependency to `sap.ui.unified` library
31978
+ * on application level to ensure that the library is loaded before the module dependencies will be required.
31979
+ * The {@link sap.ui.unified.ColorPicker} is used internally only if the `ColorPicker`
31817
31980
  * 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.
31981
+ * before the `ColorPicker` is opened, it will be loaded upon opening. This could lead to CSP compliance
31982
+ * issues and adds an additional waiting time when the `ColorPicker` is opened for the first time.
31983
+ * To prevent this, apps using the `ColorPalette` should also load the `sap.ui.unified` library in advance.
31821
31984
  */
31822
31985
  constructor(
31823
31986
  /**
@@ -34559,6 +34722,12 @@ declare namespace sap {
34559
34722
  * Defines a method that calculates an absolute date range from the options relative value. See DynamicDateOption.toDates.
34560
34723
  */
34561
34724
  getToDates(): Function;
34725
+ /**
34726
+ * Gets current value of property {@link #getValidateValueHelpUI validateValueHelpUI}.
34727
+ *
34728
+ * Defines a method that can validate all controls from the value help UI related to a given option.
34729
+ */
34730
+ getValidateValueHelpUI(): Function;
34562
34731
  /**
34563
34732
  * Sets a new value for property {@link #getCreateValueHelpUI createValueHelpUI}.
34564
34733
  *
@@ -34693,6 +34862,19 @@ declare namespace sap {
34693
34862
  */
34694
34863
  fnToDates: Function
34695
34864
  ): this;
34865
+ /**
34866
+ * Sets a new value for property {@link #getValidateValueHelpUI validateValueHelpUI}.
34867
+ *
34868
+ * Defines a method that can validate all controls from the value help UI related to a given option.
34869
+ *
34870
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
34871
+ */
34872
+ setValidateValueHelpUI(
34873
+ /**
34874
+ * New value for property `validateValueHelpUI`
34875
+ */
34876
+ fnValidateValueHelpUI: Function
34877
+ ): this;
34696
34878
  }
34697
34879
  /**
34698
34880
  * This control with a content aggregation can be used to customize standard list items that we don't provide.
@@ -35097,11 +35279,13 @@ declare namespace sap {
35097
35279
  * The `DatePicker` lets the users select a localized date using touch, mouse, or keyboard input. It consists
35098
35280
  * of two parts: the date input field and the date picker.
35099
35281
  *
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.
35282
+ * **Note:** The application developer should add dependency to `sap.ui.unified` library on application
35283
+ * level to ensure that the library is loaded before the module dependencies will be required. The {@link
35284
+ * sap.ui.unified.Calendar} is used internally only if the `DatePicker` is opened (not used for the initial
35285
+ * rendering). If the `sap.ui.unified` library is not loaded before the `DatePicker` is opened, it will
35286
+ * be loaded upon opening. This could lead to CSP compliance issues and adds an additional waiting time
35287
+ * when the `DatePicker` is opened for the first time. To prevent this, apps using the `DatePicker` should
35288
+ * also load the `sap.ui.unified` library in advance.
35105
35289
  *
35106
35290
  * Usage:
35107
35291
  *
@@ -35390,6 +35574,19 @@ declare namespace sap {
35390
35574
  * are only displayed in the primary calendar type
35391
35575
  */
35392
35576
  getSecondaryCalendarType(): sap.ui.core.CalendarType;
35577
+ /**
35578
+ * @SINCE 1.95
35579
+ *
35580
+ * Gets current value of property {@link #getShowCurrentDateButton showCurrentDateButton}.
35581
+ *
35582
+ * Determines whether there is a shortcut navigation to Today. When used in Month, Year or Year-range picker
35583
+ * view, the calendar navigates to Day picker view.
35584
+ *
35585
+ * Note: The Current date button appears if the `displayFormat` property allows entering day.
35586
+ *
35587
+ * Default value is `false`.
35588
+ */
35589
+ getShowCurrentDateButton(): boolean;
35393
35590
  /**
35394
35591
  * @SINCE 1.70
35395
35592
  *
@@ -35589,6 +35786,26 @@ declare namespace sap {
35589
35786
  */
35590
35787
  sSecondaryCalendarType?: sap.ui.core.CalendarType
35591
35788
  ): this;
35789
+ /**
35790
+ * @SINCE 1.95
35791
+ *
35792
+ * Sets a new value for property {@link #getShowCurrentDateButton showCurrentDateButton}.
35793
+ *
35794
+ * Determines whether there is a shortcut navigation to Today. When used in Month, Year or Year-range picker
35795
+ * view, the calendar navigates to Day picker view.
35796
+ *
35797
+ * Note: The Current date button appears if the `displayFormat` property allows entering day.
35798
+ *
35799
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
35800
+ *
35801
+ * Default value is `false`.
35802
+ */
35803
+ setShowCurrentDateButton(
35804
+ /**
35805
+ * New value for property `showCurrentDateButton`
35806
+ */
35807
+ bShowCurrentDateButton?: boolean
35808
+ ): this;
35592
35809
  /**
35593
35810
  * @SINCE 1.70
35594
35811
  *
@@ -35644,11 +35861,13 @@ declare namespace sap {
35644
35861
  * **Note:** The control is not UTC aware and the selected date range starts from 00:00:00:000 of the first
35645
35862
  * date and ends in 23:59:59:999 on the second date.
35646
35863
  *
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`
35864
+ * The application developer should add dependency to `sap.ui.unified` library on application level to ensure
35865
+ * that the library is loaded before the module dependencies will be required. The {@link sap.ui.unified.Calendar}
35866
+ * is used internally only if the `DateRangeSelection` is opened (not used for the initial rendering). If
35867
+ * the `sap.ui.unified` library is not loaded before the `DateRangeSelection` is opened, it will be loaded
35868
+ * upon opening. This could lead to CSP compliance issues and adds an additional waiting time when the `DateRangeSelection`
35650
35869
  * is opened for the first time. To prevent this, apps using the `DateRangeSelection` should also load the
35651
- * `sap.ui.unified` library.
35870
+ * `sap.ui.unified` library in advance.
35652
35871
  *
35653
35872
  * Usage:
35654
35873
  *
@@ -36675,11 +36894,13 @@ declare namespace sap {
36675
36894
  *
36676
36895
  * The `DateTimePicker` control consists of two parts: the input field and the date/time picker.
36677
36896
  *
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.
36897
+ * **Note:** The application developer should add dependency to `sap.ui.unified` library on application
36898
+ * level to ensure that the library is loaded before the module dependencies will be required. The {@link
36899
+ * sap.ui.unified.Calendar} is used internally only if the `DateTimePicker` is opened (not used for the
36900
+ * initial rendering). If the `sap.ui.unified` library is not loaded before the `DateTimePicker` is opened,
36901
+ * it will be loaded upon opening. This could lead to CSP compliance issues and adds an additional waiting
36902
+ * time when the `DateTimePicker` is opened for the first time. To prevent this, apps using the `DateTimePicker`
36903
+ * should also load the `sap.ui.unified` library in advance.
36683
36904
  *
36684
36905
  * Usage:
36685
36906
  *
@@ -37540,7 +37761,7 @@ declare namespace sap {
37540
37761
  * @SINCE 1.11.2
37541
37762
  * @deprecated (since 1.13.1) - Please use the new stretch property instead. This enables a stretched Dialog
37542
37763
  * 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.
37764
+ * stretch with `Device.system.phone`, then the Dialog is only stretched when it runs on a phone.
37544
37765
  *
37545
37766
  * Gets current value of property {@link #getStretchOnPhone stretchOnPhone}.
37546
37767
  *
@@ -38002,7 +38223,7 @@ declare namespace sap {
38002
38223
  * @SINCE 1.11.2
38003
38224
  * @deprecated (since 1.13.1) - Please use the new stretch property instead. This enables a stretched Dialog
38004
38225
  * 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.
38226
+ * stretch with `Device.system.phone`, then the Dialog is only stretched when it runs on a phone.
38006
38227
  *
38007
38228
  * Sets a new value for property {@link #getStretchOnPhone stretchOnPhone}.
38008
38229
  *
@@ -38355,7 +38576,11 @@ declare namespace sap {
38355
38576
  * @SINCE 1.92
38356
38577
  * @EXPERIMENTAL (since 1.92)
38357
38578
  *
38358
- * This class represents the dynamic date range type.
38579
+ * This class represents the dynamic date range type. Model values should be in the following format: {
38580
+ * operator: "KEY", values: [param1, param2] }. Where the supported parameters are timestamps, month indexes
38581
+ * and numbers (all three are numbers). Their type is defined by the corresponding DynamicDateOption instance
38582
+ * identified by the same "KEY". This class is capable of formatting only the value parameters expected
38583
+ * by the DynamicDateRange control. A display format may be provided via the format options.
38359
38584
  */
38360
38585
  class DynamicDate extends sap.ui.model.SimpleType {
38361
38586
  /**
@@ -38363,19 +38588,22 @@ declare namespace sap {
38363
38588
  */
38364
38589
  constructor(
38365
38590
  /**
38366
- * Formatting options.
38591
+ * Format options. There are format options for each of the supported types of value parameters.
38367
38592
  */
38368
38593
  oFormatOptions?: {
38369
38594
  /**
38370
- * Format options controlling the options that contain dates in their display values.
38595
+ * Display format options for the values that contain dates. For a list of all available options, see {@link
38596
+ * sap.ui.core.format.DateFormat.getDateInstance DateFormat}.
38371
38597
  */
38372
38598
  date?: object;
38373
38599
  /**
38374
- * Format options controlling the options that contain months in their display values.
38600
+ * Display format options for the values that contain month names. The only supported option is the `pattern`
38601
+ * using the respective symbols for displaying months "MM", "MMM" or "MMMM".
38375
38602
  */
38376
38603
  month?: object;
38377
38604
  /**
38378
- * Format options controlling the options that contain numbers in their display values.
38605
+ * Display format options for the values that contain numbers. For a list of all available options, see
38606
+ * {@link sap.ui.core.format.NumberFormat.getInstance NumberFormat}.
38379
38607
  */
38380
38608
  int?: object;
38381
38609
  },
@@ -38435,7 +38663,7 @@ declare namespace sap {
38435
38663
  * Parses the given object value to a similar object. The whole value is in the following format { operator:
38436
38664
  * "KEY", values: [...array with JS dates or numbers to be parsed]}. Only parses the 'values' part of the
38437
38665
  * given object. The dates are expected as Javascript Dates and are converted to timestamps. The numbers
38438
- * and strings are left untouched.
38666
+ * and strings are left untouched. Special values with operator: "PARSEERROR" generate a parse exception.
38439
38667
  */
38440
38668
  parseValue(
38441
38669
  /**
@@ -38674,6 +38902,17 @@ declare namespace sap {
38674
38902
  */
38675
38903
  oValue: object
38676
38904
  ): /* was: sap.ui.core.date.UniversalDate */ any[];
38905
+ /**
38906
+ * Validates all input controls in the value help UI related to the current option. If one of the input
38907
+ * controls contains invalid value, then validation will return `false`. If all input controls contain valid
38908
+ * value, then the validation will return `true`.
38909
+ */
38910
+ validateValueHelpUI(
38911
+ /**
38912
+ * The control instance
38913
+ */
38914
+ oControl: sap.m.DynamicDateRange
38915
+ ): boolean;
38677
38916
  }
38678
38917
  /**
38679
38918
  * @SINCE 1.92.0
@@ -44064,6 +44303,17 @@ declare namespace sap {
44064
44303
  * Returns a metadata object for class sap.m.GenericTile.
44065
44304
  */
44066
44305
  static getMetadata(): sap.ui.core.ElementMetadata;
44306
+ /**
44307
+ * @EXPERIMENTAL (since 1.96)
44308
+ *
44309
+ * Adds some actionButton to the aggregation {@link #getActionButtons actionButtons}.
44310
+ */
44311
+ addActionButton(
44312
+ /**
44313
+ * The actionButton to add; if empty, nothing is inserted
44314
+ */
44315
+ oActionButton: sap.m.Button
44316
+ ): this;
44067
44317
  /**
44068
44318
  * Adds some tileContent to the aggregation {@link #getTileContent tileContent}.
44069
44319
  */
@@ -44114,6 +44364,20 @@ declare namespace sap {
44114
44364
  */
44115
44365
  oListener?: object
44116
44366
  ): this;
44367
+ /**
44368
+ * @EXPERIMENTAL (since 1.96)
44369
+ *
44370
+ * Binds aggregation {@link #getActionButtons actionButtons} to model data.
44371
+ *
44372
+ * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
44373
+ * of the possible properties of `oBindingInfo`.
44374
+ */
44375
+ bindActionButtons(
44376
+ /**
44377
+ * The binding information
44378
+ */
44379
+ oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
44380
+ ): this;
44117
44381
  /**
44118
44382
  * Binds aggregation {@link #getTileContent tileContent} to model data.
44119
44383
  *
@@ -44126,6 +44390,12 @@ declare namespace sap {
44126
44390
  */
44127
44391
  oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
44128
44392
  ): this;
44393
+ /**
44394
+ * @EXPERIMENTAL (since 1.96)
44395
+ *
44396
+ * Destroys all the actionButtons in the aggregation {@link #getActionButtons actionButtons}.
44397
+ */
44398
+ destroyActionButtons(): this;
44129
44399
  /**
44130
44400
  * @deprecated (since 1.36.0) - This aggregation is deprecated, use sap.m.ImageContent control to display
44131
44401
  * an icon instead.
@@ -44177,6 +44447,14 @@ declare namespace sap {
44177
44447
  domRef?: any;
44178
44448
  }
44179
44449
  ): this;
44450
+ /**
44451
+ * @EXPERIMENTAL (since 1.96)
44452
+ *
44453
+ * Gets content of aggregation {@link #getActionButtons actionButtons}.
44454
+ *
44455
+ * Action buttons added in ActionMode.
44456
+ */
44457
+ getActionButtons(): sap.m.Button[];
44180
44458
  /**
44181
44459
  * @SINCE 1.82
44182
44460
  *
@@ -44218,6 +44496,15 @@ declare namespace sap {
44218
44496
  * Additional description for aria-roledescription.
44219
44497
  */
44220
44498
  getAriaRoleDescription(): string;
44499
+ /**
44500
+ * @SINCE 1.96
44501
+ * @EXPERIMENTAL (since 1.96)
44502
+ *
44503
+ * Gets current value of property {@link #getBackgroundColor backgroundColor}.
44504
+ *
44505
+ * Background color of the GenericTile. Only applicable for IconMode.
44506
+ */
44507
+ getBackgroundColor(): sap.ui.core.CSSColor;
44221
44508
  /**
44222
44509
  * Gets current value of property {@link #getBackgroundImage backgroundImage}.
44223
44510
  *
@@ -44230,6 +44517,17 @@ declare namespace sap {
44230
44517
  * Provides an interface to the tile's layout information consistent in all modes and content densities.
44231
44518
  */
44232
44519
  getBoundingRects(): object[];
44520
+ /**
44521
+ * @EXPERIMENTAL (since 1.96)
44522
+ *
44523
+ * Gets current value of property {@link #getEnableNavigationButton enableNavigationButton}.
44524
+ *
44525
+ * Renders the given link as a button, enabling the option of opening the link in new tab/window functionality.
44526
+ * Works only in ArticleMode.
44527
+ *
44528
+ * Default value is `false`.
44529
+ */
44530
+ getEnableNavigationButton(): boolean;
44233
44531
  /**
44234
44532
  * Gets current value of property {@link #getFailedText failedText}.
44235
44533
  *
@@ -44282,6 +44580,24 @@ declare namespace sap {
44282
44580
  * Default value is `ContentMode`.
44283
44581
  */
44284
44582
  getMode(): sap.m.GenericTileMode;
44583
+ /**
44584
+ * @EXPERIMENTAL (since 1.96)
44585
+ *
44586
+ * Gets current value of property {@link #getNavigationButtonText navigationButtonText}.
44587
+ *
44588
+ * Text for navigate action button. Default Value is "Read More". Works only in ArticleMode.
44589
+ */
44590
+ getNavigationButtonText(): string;
44591
+ /**
44592
+ * @EXPERIMENTAL (since 1.96)
44593
+ *
44594
+ * Gets current value of property {@link #getPressEnabled pressEnabled}.
44595
+ *
44596
+ * Disables press event for the tile control.
44597
+ *
44598
+ * Default value is `true`.
44599
+ */
44600
+ getPressEnabled(): boolean;
44285
44601
  /**
44286
44602
  * @SINCE 1.46.0
44287
44603
  *
@@ -44342,6 +44658,15 @@ declare namespace sap {
44342
44658
  * The content of the tile.
44343
44659
  */
44344
44660
  getTileContent(): sap.m.TileContent[];
44661
+ /**
44662
+ * @SINCE 1.96
44663
+ * @EXPERIMENTAL (since 1.96)
44664
+ *
44665
+ * Gets current value of property {@link #getTileIcon tileIcon}.
44666
+ *
44667
+ * Icon of the GenericTile. Only applicable for IconMode.
44668
+ */
44669
+ getTileIcon(): sap.ui.core.URI;
44345
44670
  /**
44346
44671
  * @SINCE 1.76
44347
44672
  *
@@ -44350,6 +44675,17 @@ declare namespace sap {
44350
44675
  * Renders the given link as root element and therefore enables the open in new tab / window functionality
44351
44676
  */
44352
44677
  getUrl(): sap.ui.core.URI;
44678
+ /**
44679
+ * @SINCE 1.95
44680
+ * @EXPERIMENTAL
44681
+ *
44682
+ * Gets current value of property {@link #getValueColor valueColor}.
44683
+ *
44684
+ * The semantic color of the value.
44685
+ *
44686
+ * Default value is `"None"`.
44687
+ */
44688
+ getValueColor(): sap.m.ValueColor;
44353
44689
  /**
44354
44690
  * @SINCE 1.72
44355
44691
  *
@@ -44368,6 +44704,18 @@ declare namespace sap {
44368
44704
  * Default value is `Normal`.
44369
44705
  */
44370
44706
  getWrappingType(): sap.m.WrappingType;
44707
+ /**
44708
+ * @EXPERIMENTAL (since 1.96)
44709
+ *
44710
+ * Checks for the provided `sap.m.Button` in the aggregation {@link #getActionButtons actionButtons}. and
44711
+ * returns its index if found or -1 otherwise.
44712
+ */
44713
+ indexOfActionButton(
44714
+ /**
44715
+ * The actionButton whose index is looked for
44716
+ */
44717
+ oActionButton: sap.m.Button
44718
+ ): int;
44371
44719
  /**
44372
44720
  * Checks for the provided `sap.m.TileContent` in the aggregation {@link #getTileContent tileContent}. and
44373
44721
  * returns its index if found or -1 otherwise.
@@ -44378,6 +44726,23 @@ declare namespace sap {
44378
44726
  */
44379
44727
  oTileContent: sap.m.TileContent
44380
44728
  ): int;
44729
+ /**
44730
+ * @EXPERIMENTAL (since 1.96)
44731
+ *
44732
+ * Inserts a actionButton into the aggregation {@link #getActionButtons actionButtons}.
44733
+ */
44734
+ insertActionButton(
44735
+ /**
44736
+ * The actionButton to insert; if empty, nothing is inserted
44737
+ */
44738
+ oActionButton: sap.m.Button,
44739
+ /**
44740
+ * The `0`-based index the actionButton should be inserted at; for a negative value of `iIndex`, the actionButton
44741
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the actionButton
44742
+ * is inserted at the last position
44743
+ */
44744
+ iIndex: int
44745
+ ): this;
44381
44746
  /**
44382
44747
  * Inserts a tileContent into the aggregation {@link #getTileContent tileContent}.
44383
44748
  */
@@ -44393,6 +44758,25 @@ declare namespace sap {
44393
44758
  */
44394
44759
  iIndex: int
44395
44760
  ): this;
44761
+ /**
44762
+ * @EXPERIMENTAL (since 1.96)
44763
+ *
44764
+ * Removes a actionButton from the aggregation {@link #getActionButtons actionButtons}.
44765
+ */
44766
+ removeActionButton(
44767
+ /**
44768
+ * The actionButton to remove or its index or id
44769
+ */
44770
+ vActionButton: int | string | sap.m.Button
44771
+ ): sap.m.Button;
44772
+ /**
44773
+ * @EXPERIMENTAL (since 1.96)
44774
+ *
44775
+ * Removes all the controls from the aggregation {@link #getActionButtons actionButtons}.
44776
+ *
44777
+ * Additionally, it unregisters them from the hosting UIArea.
44778
+ */
44779
+ removeAllActionButtons(): sap.m.Button[];
44396
44780
  /**
44397
44781
  * Removes all the controls from the aggregation {@link #getTileContent tileContent}.
44398
44782
  *
@@ -44484,6 +44868,22 @@ declare namespace sap {
44484
44868
  */
44485
44869
  sAriaRoleDescription?: string
44486
44870
  ): this;
44871
+ /**
44872
+ * @SINCE 1.96
44873
+ * @EXPERIMENTAL (since 1.96)
44874
+ *
44875
+ * Sets a new value for property {@link #getBackgroundColor backgroundColor}.
44876
+ *
44877
+ * Background color of the GenericTile. Only applicable for IconMode.
44878
+ *
44879
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
44880
+ */
44881
+ setBackgroundColor(
44882
+ /**
44883
+ * New value for property `backgroundColor`
44884
+ */
44885
+ sBackgroundColor: sap.ui.core.CSSColor
44886
+ ): this;
44487
44887
  /**
44488
44888
  * Sets a new value for property {@link #getBackgroundImage backgroundImage}.
44489
44889
  *
@@ -44497,6 +44897,24 @@ declare namespace sap {
44497
44897
  */
44498
44898
  sBackgroundImage?: sap.ui.core.URI
44499
44899
  ): this;
44900
+ /**
44901
+ * @EXPERIMENTAL (since 1.96)
44902
+ *
44903
+ * Sets a new value for property {@link #getEnableNavigationButton enableNavigationButton}.
44904
+ *
44905
+ * Renders the given link as a button, enabling the option of opening the link in new tab/window functionality.
44906
+ * Works only in ArticleMode.
44907
+ *
44908
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
44909
+ *
44910
+ * Default value is `false`.
44911
+ */
44912
+ setEnableNavigationButton(
44913
+ /**
44914
+ * New value for property `enableNavigationButton`
44915
+ */
44916
+ bEnableNavigationButton?: boolean
44917
+ ): this;
44500
44918
  /**
44501
44919
  * Sets a new value for property {@link #getFailedText failedText}.
44502
44920
  *
@@ -44593,6 +45011,21 @@ declare namespace sap {
44593
45011
  */
44594
45012
  sMode?: sap.m.GenericTileMode
44595
45013
  ): this;
45014
+ /**
45015
+ * @EXPERIMENTAL (since 1.96)
45016
+ *
45017
+ * Sets a new value for property {@link #getNavigationButtonText navigationButtonText}.
45018
+ *
45019
+ * Text for navigate action button. Default Value is "Read More". Works only in ArticleMode.
45020
+ *
45021
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
45022
+ */
45023
+ setNavigationButtonText(
45024
+ /**
45025
+ * New value for property `navigationButtonText`
45026
+ */
45027
+ sNavigationButtonText?: string
45028
+ ): this;
44596
45029
  /**
44597
45030
  * @SINCE 1.46
44598
45031
  *
@@ -44700,6 +45133,22 @@ declare namespace sap {
44700
45133
  */
44701
45134
  sSystemInfo?: string
44702
45135
  ): this;
45136
+ /**
45137
+ * @SINCE 1.96
45138
+ * @EXPERIMENTAL (since 1.96)
45139
+ *
45140
+ * Sets a new value for property {@link #getTileIcon tileIcon}.
45141
+ *
45142
+ * Icon of the GenericTile. Only applicable for IconMode.
45143
+ *
45144
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
45145
+ */
45146
+ setTileIcon(
45147
+ /**
45148
+ * New value for property `tileIcon`
45149
+ */
45150
+ sTileIcon: sap.ui.core.URI
45151
+ ): this;
44703
45152
  /**
44704
45153
  * @SINCE 1.76
44705
45154
  *
@@ -44715,6 +45164,24 @@ declare namespace sap {
44715
45164
  */
44716
45165
  sUrl?: sap.ui.core.URI
44717
45166
  ): this;
45167
+ /**
45168
+ * @SINCE 1.95
45169
+ * @EXPERIMENTAL
45170
+ *
45171
+ * Sets a new value for property {@link #getValueColor valueColor}.
45172
+ *
45173
+ * The semantic color of the value.
45174
+ *
45175
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
45176
+ *
45177
+ * Default value is `"None"`.
45178
+ */
45179
+ setValueColor(
45180
+ /**
45181
+ * New value for property `valueColor`
45182
+ */
45183
+ sValueColor?: sap.m.ValueColor
45184
+ ): this;
44718
45185
  /**
44719
45186
  * @SINCE 1.72
44720
45187
  *
@@ -44759,6 +45226,12 @@ declare namespace sap {
44759
45226
  */
44760
45227
  value: boolean
44761
45228
  ): void;
45229
+ /**
45230
+ * @EXPERIMENTAL (since 1.96)
45231
+ *
45232
+ * Unbinds aggregation {@link #getActionButtons actionButtons} from model data.
45233
+ */
45234
+ unbindActionButtons(): this;
44762
45235
  /**
44763
45236
  * Unbinds aggregation {@link #getTileContent tileContent} from model data.
44764
45237
  */
@@ -45946,6 +46419,10 @@ declare namespace sap {
45946
46419
  * The key of the selected item
45947
46420
  */
45948
46421
  key?: string;
46422
+ /**
46423
+ * The key of the previous selected item
46424
+ */
46425
+ previousKey?: string;
45949
46426
  /**
45950
46427
  * The selected item
45951
46428
  */
@@ -47048,6 +47525,10 @@ declare namespace sap {
47048
47525
  * The key of the selected item
47049
47526
  */
47050
47527
  key?: string;
47528
+ /**
47529
+ * The key of the previous selected item
47530
+ */
47531
+ previousKey?: string;
47051
47532
  }
47052
47533
  ): this;
47053
47534
  /**
@@ -49480,6 +49961,17 @@ declare namespace sap {
49480
49961
  * or `null`.
49481
49962
  */
49482
49963
  getSelectedRow(): sap.ui.core.ID;
49964
+ /**
49965
+ * @SINCE 1.94
49966
+ *
49967
+ * Gets current value of property {@link #getShowClearIcon showClearIcon}.
49968
+ *
49969
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
49970
+ * and liveChange events.
49971
+ *
49972
+ * Default value is `false`.
49973
+ */
49974
+ getShowClearIcon(): boolean;
49483
49975
  /**
49484
49976
  * @SINCE 1.16.1
49485
49977
  *
@@ -50174,6 +50666,24 @@ declare namespace sap {
50174
50666
  */
50175
50667
  oListItem: sap.m.ColumnListItem
50176
50668
  ): this;
50669
+ /**
50670
+ * @SINCE 1.94
50671
+ *
50672
+ * Sets a new value for property {@link #getShowClearIcon showClearIcon}.
50673
+ *
50674
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
50675
+ * and liveChange events.
50676
+ *
50677
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
50678
+ *
50679
+ * Default value is `false`.
50680
+ */
50681
+ setShowClearIcon(
50682
+ /**
50683
+ * New value for property `showClearIcon`
50684
+ */
50685
+ bShowClearIcon?: boolean
50686
+ ): this;
50177
50687
  /**
50178
50688
  * @SINCE 1.16.1
50179
50689
  *
@@ -50564,7 +51074,11 @@ declare namespace sap {
50564
51074
  /**
50565
51075
  * settings for creating an icon
50566
51076
  */
50567
- oIconSettings: object
51077
+ oIconSettings: object,
51078
+ /**
51079
+ * position to be inserted in the aggregation. If not provided, the icon gets inserted on last position.
51080
+ */
51081
+ iPosition: int
50568
51082
  ): null | sap.ui.core.Icon;
50569
51083
  /**
50570
51084
  * Applies the focus info. To be overwritten by subclasses.
@@ -50819,6 +51333,10 @@ declare namespace sap {
50819
51333
  * Defines the value of the control.
50820
51334
  */
50821
51335
  getValue(): string;
51336
+ /**
51337
+ * Gets the value of the accessibility description info field.
51338
+ */
51339
+ getValueDescriptionInfo(): string;
50822
51340
  /**
50823
51341
  * Gets current value of property {@link #getValueState valueState}.
50824
51342
  *
@@ -51905,7 +52423,7 @@ declare namespace sap {
51905
52423
  /**
51906
52424
  * Origin of the invalidation.
51907
52425
  */
51908
- oOrigin: object
52426
+ oOrigin: sap.ui.base.ManagedObject
51909
52427
  ): this;
51910
52428
  /**
51911
52429
  * Returns if the LightBox is open.
@@ -55445,6 +55963,17 @@ declare namespace sap {
55445
55963
  * A list of validation rules (one rule per mask character).
55446
55964
  */
55447
55965
  getRules(): sap.m.MaskInputRule[];
55966
+ /**
55967
+ * @SINCE 1.96
55968
+ *
55969
+ * Gets current value of property {@link #getShowClearIcon showClearIcon}.
55970
+ *
55971
+ * Specifies whether a clear icon is shown. Pressing the icon will clear input's value and fire the change
55972
+ * event.
55973
+ *
55974
+ * Default value is `false`.
55975
+ */
55976
+ getShowClearIcon(): boolean;
55448
55977
  /**
55449
55978
  * Checks for the provided `sap.m.MaskInputRule` in the aggregation {@link #getRules rules}. and returns
55450
55979
  * its index if found or -1 otherwise.
@@ -55520,6 +56049,24 @@ declare namespace sap {
55520
56049
  */
55521
56050
  sPlaceholderSymbol?: string
55522
56051
  ): this;
56052
+ /**
56053
+ * @SINCE 1.96
56054
+ *
56055
+ * Sets a new value for property {@link #getShowClearIcon showClearIcon}.
56056
+ *
56057
+ * Specifies whether a clear icon is shown. Pressing the icon will clear input's value and fire the change
56058
+ * event.
56059
+ *
56060
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
56061
+ *
56062
+ * Default value is `false`.
56063
+ */
56064
+ setShowClearIcon(
56065
+ /**
56066
+ * New value for property `showClearIcon`
56067
+ */
56068
+ bShowClearIcon?: boolean
56069
+ ): this;
55523
56070
  }
55524
56071
  /**
55525
56072
  * @SINCE 1.34.0
@@ -55634,6 +56181,11 @@ declare namespace sap {
55634
56181
  /**
55635
56182
  * The `sap.m.Menu` control represents a hierarchical menu. When opened on mobile devices it occupies the
55636
56183
  * whole screen.
56184
+ *
56185
+ * **Note:** The application developer should add dependency to `sap.ui.unified` library on application
56186
+ * level to ensure that the library is loaded before the module dependencies will be required. If the `sap.ui.unified`
56187
+ * library is not loaded in advance, this could lead to CSP compliance issues and adds an additional waiting
56188
+ * time. To prevent this, ensure that the `sap.ui.unified` library is loaded in advance.
55637
56189
  */
55638
56190
  class Menu extends sap.ui.core.Control implements sap.ui.core.IContextMenu {
55639
56191
  __implements__sap_ui_core_IContextMenu: boolean;
@@ -56050,6 +56602,53 @@ declare namespace sap {
56050
56602
  */
56051
56603
  vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
56052
56604
  ): this;
56605
+ /**
56606
+ * @SINCE 1.94.0
56607
+ *
56608
+ * Attaches event handler `fnFunction` to the {@link #event:beforeMenuOpen beforeMenuOpen} event of this
56609
+ * `sap.m.MenuButton`.
56610
+ *
56611
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
56612
+ * otherwise it will be bound to this `sap.m.MenuButton` itself.
56613
+ *
56614
+ * Fired before menu opening when the `buttonMode` is set to `Split` and the user presses the arrow button.
56615
+ */
56616
+ attachBeforeMenuOpen(
56617
+ /**
56618
+ * An application-specific payload object that will be passed to the event handler along with the event
56619
+ * object when firing the event
56620
+ */
56621
+ oData: object,
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;
56631
+ /**
56632
+ * @SINCE 1.94.0
56633
+ *
56634
+ * Attaches event handler `fnFunction` to the {@link #event:beforeMenuOpen beforeMenuOpen} event of this
56635
+ * `sap.m.MenuButton`.
56636
+ *
56637
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
56638
+ * otherwise it will be bound to this `sap.m.MenuButton` itself.
56639
+ *
56640
+ * Fired before menu opening when the `buttonMode` is set to `Split` and the user presses the arrow button.
56641
+ */
56642
+ attachBeforeMenuOpen(
56643
+ /**
56644
+ * The function to be called when the event occurs
56645
+ */
56646
+ fnFunction: (p1: sap.ui.base.Event) => void,
56647
+ /**
56648
+ * Context object to call the event handler with. Defaults to this `sap.m.MenuButton` itself
56649
+ */
56650
+ oListener?: object
56651
+ ): this;
56053
56652
  /**
56054
56653
  * Attaches event handler `fnFunction` to the {@link #event:defaultAction defaultAction} event of this `sap.m.MenuButton`.
56055
56654
  *
@@ -56097,6 +56696,24 @@ declare namespace sap {
56097
56696
  * Destroys the menu in the aggregation {@link #getMenu menu}.
56098
56697
  */
56099
56698
  destroyMenu(): this;
56699
+ /**
56700
+ * @SINCE 1.94.0
56701
+ *
56702
+ * Detaches event handler `fnFunction` from the {@link #event:beforeMenuOpen beforeMenuOpen} event of this
56703
+ * `sap.m.MenuButton`.
56704
+ *
56705
+ * The passed function and listener object must match the ones used for event registration.
56706
+ */
56707
+ detachBeforeMenuOpen(
56708
+ /**
56709
+ * The function to be called, when the event occurs
56710
+ */
56711
+ fnFunction: (p1: sap.ui.base.Event) => void,
56712
+ /**
56713
+ * Context object on which the given function had to be called
56714
+ */
56715
+ oListener?: object
56716
+ ): this;
56100
56717
  /**
56101
56718
  * Detaches event handler `fnFunction` from the {@link #event:defaultAction defaultAction} event of this
56102
56719
  * `sap.m.MenuButton`.
@@ -56113,6 +56730,17 @@ declare namespace sap {
56113
56730
  */
56114
56731
  oListener?: object
56115
56732
  ): this;
56733
+ /**
56734
+ * @SINCE 1.94.0
56735
+ *
56736
+ * Fires event {@link #event:beforeMenuOpen beforeMenuOpen} to attached listeners.
56737
+ */
56738
+ fireBeforeMenuOpen(
56739
+ /**
56740
+ * Parameters to pass along with the event
56741
+ */
56742
+ mParameters?: object
56743
+ ): this;
56116
56744
  /**
56117
56745
  * Fires event {@link #event:defaultAction defaultAction} to attached listeners.
56118
56746
  */
@@ -60148,6 +60776,14 @@ declare namespace sap {
60148
60776
  * Default value is `[]`.
60149
60777
  */
60150
60778
  getSelectedKeys(): string[];
60779
+ /**
60780
+ * Gets current value of property {@link #getShowSelectAll showSelectAll}.
60781
+ *
60782
+ * Determines if the select all checkbox is visible on top of suggestions.
60783
+ *
60784
+ * Default value is `false`.
60785
+ */
60786
+ getShowSelectAll(): boolean;
60151
60787
  /**
60152
60788
  * Checks whether an item is selected.
60153
60789
  */
@@ -60222,6 +60858,21 @@ declare namespace sap {
60222
60858
  */
60223
60859
  aKeys: string[]
60224
60860
  ): this;
60861
+ /**
60862
+ * Sets a new value for property {@link #getShowSelectAll showSelectAll}.
60863
+ *
60864
+ * Determines if the select all checkbox is visible on top of suggestions.
60865
+ *
60866
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
60867
+ *
60868
+ * Default value is `false`.
60869
+ */
60870
+ setShowSelectAll(
60871
+ /**
60872
+ * New value for property `showSelectAll`
60873
+ */
60874
+ bShowSelectAll?: boolean
60875
+ ): this;
60225
60876
  /**
60226
60877
  * Creates picker if doesn't exist yet and sync with Control items
60227
60878
  */
@@ -60271,7 +60922,10 @@ declare namespace sap {
60271
60922
  * - You can review the tokens by pressing the right or left arrows on the keyboard.
60272
60923
  * - You can select single tokens or a range of tokens and you can copy/cut/delete them.
60273
60924
  */
60274
- class MultiInput extends sap.m.Input {
60925
+ class MultiInput
60926
+ extends sap.m.Input
60927
+ implements sap.ui.core.ISemanticFormContent {
60928
+ __implements__sap_ui_core_ISemanticFormContent: boolean;
60275
60929
  /**
60276
60930
  * Constructor for a new MultiInput.
60277
60931
  *
@@ -61419,12 +62073,6 @@ declare namespace sap {
61419
62073
  * Default value is `'100%'`.
61420
62074
  */
61421
62075
  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
62076
  /**
61429
62077
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getPages pages}. and returns
61430
62078
  * its index if found or -1 otherwise.
@@ -61621,23 +62269,6 @@ declare namespace sap {
61621
62269
  */
61622
62270
  sWidth?: sap.ui.core.CSSSize
61623
62271
  ): 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
62272
  /**
61642
62273
  * Navigates to the next page (with drill-down semantic) with the given (or default) animation. This creates
61643
62274
  * a new history item inside the NavContainer and allows going back.
@@ -74936,7 +75567,12 @@ declare namespace sap {
74936
75567
  /**
74937
75568
  * Parameters to pass along with the event
74938
75569
  */
74939
- mParameters?: object
75570
+ mParameters?: {
75571
+ /**
75572
+ * The iframe element.
75573
+ */
75574
+ target?: any;
75575
+ }
74940
75576
  ): this;
74941
75577
  /**
74942
75578
  * Fires event {@link #event:loaded loaded} to attached listeners.
@@ -75275,10 +75911,12 @@ declare namespace sap {
75275
75911
  * and even a whole week/month. The available navigation allows the user to select a specific interval using
75276
75912
  * a picker, or move to the previous/next interval using arrows.
75277
75913
  *
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.
75914
+ * **Note:** The application developer should add dependency to `sap.ui.unified` library on application
75915
+ * level to ensure that the library is loaded before the module dependencies will be required. The `PlanningCalendar`
75916
+ * uses parts of the `sap.ui.unified` library. This library will be loaded after the `PlanningCalendar`,
75917
+ * if it wasn't loaded first. This could lead to CSP compliance issues and adds an additional waiting time
75918
+ * when a `PlanningCalendar` is used for the first time. To prevent this, apps that use the `PlanningCalendar`
75919
+ * should also load the `sap.ui.unified` library in advance.
75282
75920
  *
75283
75921
  * Usage:
75284
75922
  *
@@ -75919,8 +76557,8 @@ declare namespace sap {
75919
76557
  *
75920
76558
  * Gets current value of property {@link #getAppointmentRoundWidth appointmentRoundWidth}.
75921
76559
  *
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
76560
+ * Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
76561
+ * interval type is day and the view shows more than 20 days
75924
76562
  *
75925
76563
  * Default value is `None`.
75926
76564
  */
@@ -75981,6 +76619,20 @@ declare namespace sap {
75981
76619
  * Getter for the end point in time of the shown interval
75982
76620
  */
75983
76621
  getEndDate(): Date;
76622
+ /**
76623
+ * @SINCE 1.94
76624
+ *
76625
+ * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
76626
+ *
76627
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
76628
+ * If there is no valid value set, the default of the used locale is used.
76629
+ *
76630
+ * Note: this property will only have effect in the weekly – based views of the PlanningCalendar – Week
76631
+ * view, and OneMonth view (on small devices).
76632
+ *
76633
+ * Default value is `-1`.
76634
+ */
76635
+ getFirstDayOfWeek(): int;
75984
76636
  /**
75985
76637
  * @SINCE 1.48.0
75986
76638
  *
@@ -76408,8 +77060,8 @@ declare namespace sap {
76408
77060
  *
76409
77061
  * Sets a new value for property {@link #getAppointmentRoundWidth appointmentRoundWidth}.
76410
77062
  *
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
77063
+ * Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
77064
+ * interval type is day and the view shows more than 20 days
76413
77065
  *
76414
77066
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
76415
77067
  *
@@ -76490,6 +77142,27 @@ declare namespace sap {
76490
77142
  setCustomAppointmentsSorterCallback(
76491
77143
  fnSorter: sap.m.PlanningCalendar.appointmentsSorterCallback
76492
77144
  ): this;
77145
+ /**
77146
+ * @SINCE 1.94
77147
+ *
77148
+ * Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
77149
+ *
77150
+ * If set, the first day of the displayed week is this day. Valid values are 0 to 6 starting on Sunday.
77151
+ * If there is no valid value set, the default of the used locale is used.
77152
+ *
77153
+ * Note: this property will only have effect in the weekly – based views of the PlanningCalendar – Week
77154
+ * view, and OneMonth view (on small devices).
77155
+ *
77156
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
77157
+ *
77158
+ * Default value is `-1`.
77159
+ */
77160
+ setFirstDayOfWeek(
77161
+ /**
77162
+ * New value for property `firstDayOfWeek`
77163
+ */
77164
+ iFirstDayOfWeek?: int
77165
+ ): this;
76493
77166
  /**
76494
77167
  * @SINCE 1.48.0
76495
77168
  *
@@ -86815,6 +87488,10 @@ declare namespace sap {
86815
87488
  * The selected item.
86816
87489
  */
86817
87490
  selectedItem?: sap.ui.core.Item;
87491
+ /**
87492
+ * The previous selected item.
87493
+ */
87494
+ previousSelectedItem?: sap.ui.core.Item;
86818
87495
  }
86819
87496
  ): this;
86820
87497
  /**
@@ -91178,10 +91855,12 @@ declare namespace sap {
91178
91855
  *
91179
91856
  * Overview:
91180
91857
  *
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
91858
+ * **Note:** The application developer should add dependency to `sap.ui.unified` library on application
91859
+ * level to ensure that the library is loaded before the module dependencies will be required. The `SinglePlanningCalendar`
91860
+ * uses parts of the `sap.ui.unified` library. This library will be loaded after the `SinglePlanningCalendar`,
91861
+ * if it wasn't previously loaded. This could lead to CSP compliance issues and adds an additional waiting
91183
91862
  * 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.
91863
+ * must also load the `sap.ui.unified` library in advance.
91185
91864
  *
91186
91865
  * The `SinglePlanningCalendar` has the following structure:
91187
91866
  *
@@ -94014,6 +94693,15 @@ declare namespace sap {
94014
94693
  * Default value is `5000`.
94015
94694
  */
94016
94695
  getDisplayTime(): int;
94696
+ /**
94697
+ * @SINCE 1.96
94698
+ * @EXPERIMENTAL
94699
+ *
94700
+ * Gets current value of property {@link #getHeight height}.
94701
+ *
94702
+ * Height of the control.
94703
+ */
94704
+ getHeight(): sap.ui.core.CSSSize;
94017
94705
  /**
94018
94706
  * @SINCE 1.46.0
94019
94707
  *
@@ -94112,6 +94800,22 @@ declare namespace sap {
94112
94800
  */
94113
94801
  iDisplayTime?: int
94114
94802
  ): this;
94803
+ /**
94804
+ * @SINCE 1.96
94805
+ * @EXPERIMENTAL
94806
+ *
94807
+ * Sets a new value for property {@link #getHeight height}.
94808
+ *
94809
+ * Height of the control.
94810
+ *
94811
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
94812
+ */
94813
+ setHeight(
94814
+ /**
94815
+ * New value for property `height`
94816
+ */
94817
+ sHeight: sap.ui.core.CSSSize
94818
+ ): this;
94115
94819
  /**
94116
94820
  * @SINCE 1.46.0
94117
94821
  *
@@ -95700,22 +96404,6 @@ declare namespace sap {
95700
96404
  * Used to hide the master page when in ShowHideMode and the device is in portrait mode.
95701
96405
  */
95702
96406
  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
96407
  /**
95720
96408
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getDetailPages detailPages}.
95721
96409
  * and returns its index if found or -1 otherwise.
@@ -96034,22 +96722,6 @@ declare namespace sap {
96034
96722
  * Used to make the master page visible when in ShowHideMode and the device is in portrait mode.
96035
96723
  */
96036
96724
  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
96725
  /**
96054
96726
  * @SINCE 1.10.0
96055
96727
  *
@@ -96275,6 +96947,17 @@ declare namespace sap {
96275
96947
  * Returns a metadata object for class sap.m.StandardDynamicDateOption.
96276
96948
  */
96277
96949
  static getMetadata(): sap.ui.core.ElementMetadata;
96950
+ /**
96951
+ * Validates all input controls in the value help UI related to the current option. If one of the input
96952
+ * controls contains invalid value, then validation will return `false`. If all input controls contain valid
96953
+ * value, then the validation will return `true`.
96954
+ */
96955
+ validateValueHelpUI(
96956
+ /**
96957
+ * The control instance
96958
+ */
96959
+ oControl: sap.m.DynamicDateRange
96960
+ ): boolean;
96278
96961
  }
96279
96962
  /**
96280
96963
  * `sap.m.StandardListItem` is a list item providing the most common use cases, e.g. image, title and description.
@@ -96393,7 +97076,9 @@ declare namespace sap {
96393
97076
  /**
96394
97077
  * Gets current value of property {@link #getInfo info}.
96395
97078
  *
96396
- * Defines an additional information text.
97079
+ * Defines an additional information text. **Note:** A wrapping of the information text is also supported
97080
+ * as of version 1.95, if `wrapping=true`. Although long strings are supported for the information text,
97081
+ * it is recommended to use short strings. For more details, see {@link #getWrapping wrapping}.
96397
97082
  */
96398
97083
  getInfo(): string;
96399
97084
  /**
@@ -96444,6 +97129,23 @@ declare namespace sap {
96444
97129
  * Default value is `Inherit`.
96445
97130
  */
96446
97131
  getTitleTextDirection(): sap.ui.core.TextDirection;
97132
+ /**
97133
+ * @SINCE 1.94
97134
+ *
97135
+ * Gets current value of property {@link #getWrapCharLimit wrapCharLimit}.
97136
+ *
97137
+ * This property can be used to change the default character limits for the wrapping behavior.
97138
+ *
97139
+ * If this property is set to 0, then the default character limit used by the wrapping behavior is used.
97140
+ * For details see {@link #getWrapping wrapping}.
97141
+ *
97142
+ * **Note:**
97143
+ *
97144
+ * 0 or a positive integer must be used for this property.
97145
+ *
97146
+ * Default value is `0`.
97147
+ */
97148
+ getWrapCharLimit(): int;
96447
97149
  /**
96448
97150
  * @SINCE 1.67
96449
97151
  *
@@ -96455,6 +97157,9 @@ declare namespace sap {
96455
97157
  *
96456
97158
  * In the desktop mode, initial rendering of the control contains 300 characters along with a button to
96457
97159
  * expand and collapse the text whereas in the phone mode, the character limit is set to 100 characters.
97160
+ * A wrapping of the information text is supported as of 1.95. But expanding and collapsing the information
97161
+ * text is not possible. A wrapping of the information text is disabled if `infoStateInverted` is set to
97162
+ * `true`.
96458
97163
  *
96459
97164
  * Default value is `false`.
96460
97165
  */
@@ -96554,7 +97259,9 @@ declare namespace sap {
96554
97259
  /**
96555
97260
  * Sets a new value for property {@link #getInfo info}.
96556
97261
  *
96557
- * Defines an additional information text.
97262
+ * Defines an additional information text. **Note:** A wrapping of the information text is also supported
97263
+ * as of version 1.95, if `wrapping=true`. Although long strings are supported for the information text,
97264
+ * it is recommended to use short strings. For more details, see {@link #getWrapping wrapping}.
96558
97265
  *
96559
97266
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
96560
97267
  */
@@ -96647,6 +97354,30 @@ declare namespace sap {
96647
97354
  */
96648
97355
  sTitleTextDirection?: sap.ui.core.TextDirection
96649
97356
  ): this;
97357
+ /**
97358
+ * @SINCE 1.94
97359
+ *
97360
+ * Sets a new value for property {@link #getWrapCharLimit wrapCharLimit}.
97361
+ *
97362
+ * This property can be used to change the default character limits for the wrapping behavior.
97363
+ *
97364
+ * If this property is set to 0, then the default character limit used by the wrapping behavior is used.
97365
+ * For details see {@link #getWrapping wrapping}.
97366
+ *
97367
+ * **Note:**
97368
+ *
97369
+ * 0 or a positive integer must be used for this property.
97370
+ *
97371
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
97372
+ *
97373
+ * Default value is `0`.
97374
+ */
97375
+ setWrapCharLimit(
97376
+ /**
97377
+ * New value for property `wrapCharLimit`
97378
+ */
97379
+ iWrapCharLimit?: int
97380
+ ): this;
96650
97381
  /**
96651
97382
  * @SINCE 1.67
96652
97383
  *
@@ -96658,6 +97389,9 @@ declare namespace sap {
96658
97389
  *
96659
97390
  * In the desktop mode, initial rendering of the control contains 300 characters along with a button to
96660
97391
  * expand and collapse the text whereas in the phone mode, the character limit is set to 100 characters.
97392
+ * A wrapping of the information text is supported as of 1.95. But expanding and collapsing the information
97393
+ * text is not possible. A wrapping of the information text is disabled if `infoStateInverted` is set to
97394
+ * `true`.
96661
97395
  *
96662
97396
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
96663
97397
  *
@@ -102245,7 +102979,7 @@ declare namespace sap {
102245
102979
  * Gets current value of property {@link #getGrowing growing}.
102246
102980
  *
102247
102981
  * 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`.
102982
+ * This property should not be used when the `height` property is set.
102249
102983
  *
102250
102984
  * Default value is `false`.
102251
102985
  */
@@ -102339,7 +103073,7 @@ declare namespace sap {
102339
103073
  * Sets a new value for property {@link #getGrowing growing}.
102340
103074
  *
102341
103075
  * 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`.
103076
+ * This property should not be used when the `height` property is set.
102343
103077
  *
102344
103078
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
102345
103079
  *
@@ -103204,6 +103938,16 @@ declare namespace sap {
103204
103938
  * Default value is `"Auto"`.
103205
103939
  */
103206
103940
  getFrameType(): sap.m.FrameType;
103941
+ /**
103942
+ * @EXPERIMENTAL (since 1.96)
103943
+ *
103944
+ * Gets current value of property {@link #getPriority priority}.
103945
+ *
103946
+ * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
103947
+ *
103948
+ * Default value is `None`.
103949
+ */
103950
+ getPriority(): sap.ui.core.Priority;
103207
103951
  /**
103208
103952
  * @deprecated (since 1.38.0) - The TileContent control has now a fixed size, depending on the used media
103209
103953
  * (desktop, tablet or phone).
@@ -103291,6 +104035,23 @@ declare namespace sap {
103291
104035
  */
103292
104036
  sFrameType?: sap.m.FrameType
103293
104037
  ): this;
104038
+ /**
104039
+ * @EXPERIMENTAL (since 1.96)
104040
+ *
104041
+ * Sets a new value for property {@link #getPriority priority}.
104042
+ *
104043
+ * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
104044
+ *
104045
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
104046
+ *
104047
+ * Default value is `None`.
104048
+ */
104049
+ setPriority(
104050
+ /**
104051
+ * New value for property `priority`
104052
+ */
104053
+ sPriority?: sap.ui.core.Priority
104054
+ ): this;
103294
104055
  /**
103295
104056
  * Setter for protected property to enable or disable content rendering. This function does not invalidate
103296
104057
  * the control.
@@ -112497,14 +113258,15 @@ declare namespace sap {
112497
113258
  * - Steps can be branching depending on choices the user made in their input - this is set by the `enableBranching`
112498
113259
  * property.
112499
113260
  * - 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.
113261
+ * readability **Note:** Dynamic step insertion is not supported. Even if branching steps are used,
113262
+ * the steps should be known in advance. Content: The content occupies the main part of the page. It can
113263
+ * hold any type of input controls. The content is kept in {@link sap.m.WizardStep wizard steps}. Next Step
113264
+ * Button: The next step button is displayed below the content. It can be hidden by setting `showNextButton`
113265
+ * to `false` and displayed, for example, only after the user has filled all mandatory fields. Usage: When
113266
+ * to use:: When the user has to accomplish a long or unfamiliar task. When not to use:: When the user has
113267
+ * to accomplish a routine task that is clear and familiar. When the task has only two steps or less. Responsive
113268
+ * Behavior: On mobile devices the steps in the StepNavigator are grouped together and overlap. Tapping
113269
+ * on them will show a popover to select the step to navigate to.
112508
113270
  *
112509
113271
  * When using the sap.m.Wizard in SAP Quartz theme, the breakpoints and layout paddings could be determined
112510
113272
  * by the container's width. To enable this concept and add responsive paddings to the navigation area and
@@ -114211,6 +114973,22 @@ declare namespace sap {
114211
114973
  * Defines the mode of GenericTile.
114212
114974
  */
114213
114975
  enum GenericTileMode {
114976
+ /**
114977
+ * @EXPERIMENTAL (since 1.96)
114978
+ *
114979
+ * Action Mode (Two lines for the header).
114980
+ *
114981
+ * Generic Tile renders buttons that are specified under 'actionButtons' aggregation
114982
+ */
114983
+ ActionMode = "ActionMode",
114984
+ /**
114985
+ * @EXPERIMENTAL (since 1.96)
114986
+ *
114987
+ * Article Mode (Two lines for the header and one line for the subtitle).
114988
+ *
114989
+ * Enables Article Mode.
114990
+ */
114991
+ ArticleMode = "ArticleMode",
114214
114992
  /**
114215
114993
  * Default mode (Two lines for the header and one line for the subtitle).
114216
114994
  */
@@ -114219,6 +114997,15 @@ declare namespace sap {
114219
114997
  * Header mode (Four lines for the header and one line for the subtitle).
114220
114998
  */
114221
114999
  HeaderMode = "HeaderMode",
115000
+ /**
115001
+ * @EXPERIMENTAL (since 1.96)
115002
+ *
115003
+ * Icon mode.
115004
+ *
115005
+ * GenericTile displays a combination of icon and header title. It is applicable only for the OneByOne FrameType
115006
+ * and TwoByHalf FrameType.
115007
+ */
115008
+ IconMode = "IconMode",
114222
115009
  /**
114223
115010
  * @SINCE 1.44.0
114224
115011
  *
@@ -115600,7 +116387,7 @@ declare namespace sap {
115600
116387
  */
115601
116388
  Auto = "Auto",
115602
116389
  /**
115603
- * Explicitly sets the alignment to the start (left or right depending on LTR/RTL)
116390
+ * Explicitly sets the alignment to the center
115604
116391
  */
115605
116392
  Center = "Center",
115606
116393
  /**
@@ -116045,6 +116832,18 @@ declare namespace sap {
116045
116832
 
116046
116833
  "sap/m/OverflowToolbarToggleButton": undefined;
116047
116834
 
116835
+ "sap/m/p13n/BasePanel": undefined;
116836
+
116837
+ "sap/m/p13n/Container": undefined;
116838
+
116839
+ "sap/m/p13n/GroupPanel": undefined;
116840
+
116841
+ "sap/m/p13n/QueryPanel": undefined;
116842
+
116843
+ "sap/m/p13n/SelectionPanel": undefined;
116844
+
116845
+ "sap/m/p13n/SortPanel": undefined;
116846
+
116048
116847
  "sap/m/P13nColumnsItem": undefined;
116049
116848
 
116050
116849
  "sap/m/P13nColumnsPanel": undefined;