@openui5/ts-types-esm 1.96.1 → 1.97.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.96.1
1
+ // For Library Version: 1.97.1
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -1644,6 +1644,19 @@ declare module "sap/m/library" {
1644
1644
  */
1645
1645
  sort = "sort",
1646
1646
  }
1647
+ /**
1648
+ * Type of popup used in the `sap.m.p13n.Popup`.
1649
+ */
1650
+ export enum P13nPopupMode {
1651
+ /**
1652
+ * Dialog type as popup type.
1653
+ */
1654
+ Dialog = "Dialog",
1655
+ /**
1656
+ * ResponsivePopover type as popup type.
1657
+ */
1658
+ ResponsivePopover = "ResponsivePopover",
1659
+ }
1647
1660
  /**
1648
1661
  * Available Page Background Design.
1649
1662
  */
@@ -4749,6 +4762,18 @@ declare module "sap/m/Avatar" {
4749
4762
  * Default value is `"1.125rem"`.
4750
4763
  */
4751
4764
  getCustomFontSize(): CSSSize;
4765
+ /**
4766
+ * @SINCE 1.97
4767
+ *
4768
+ * Gets current value of property {@link #getDecorative decorative}.
4769
+ *
4770
+ * Defines whether the `sap.m.Avatar` is used for decorative purposes and is ignored by accessibility tools.
4771
+ *
4772
+ * **Note:** This property doesn't take effect if `sap.m.Avatar` has a `press` handler.
4773
+ *
4774
+ * Default value is `false`.
4775
+ */
4776
+ getDecorative(): boolean;
4752
4777
  /**
4753
4778
  * Gets content of aggregation {@link #getDetailBox detailBox}.
4754
4779
  *
@@ -4928,6 +4953,25 @@ declare module "sap/m/Avatar" {
4928
4953
  */
4929
4954
  sCustomFontSize?: CSSSize
4930
4955
  ): this;
4956
+ /**
4957
+ * @SINCE 1.97
4958
+ *
4959
+ * Sets a new value for property {@link #getDecorative decorative}.
4960
+ *
4961
+ * Defines whether the `sap.m.Avatar` is used for decorative purposes and is ignored by accessibility tools.
4962
+ *
4963
+ * **Note:** This property doesn't take effect if `sap.m.Avatar` has a `press` handler.
4964
+ *
4965
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4966
+ *
4967
+ * Default value is `false`.
4968
+ */
4969
+ setDecorative(
4970
+ /**
4971
+ * New value for property `decorative`
4972
+ */
4973
+ bDecorative?: boolean
4974
+ ): this;
4931
4975
  /**
4932
4976
  * Sets the `detailBox` aggregation.
4933
4977
  */
@@ -5134,6 +5178,15 @@ declare module "sap/m/Avatar" {
5134
5178
  */
5135
5179
  badgeTooltip?: string | PropertyBindingInfo;
5136
5180
 
5181
+ /**
5182
+ * @SINCE 1.97
5183
+ *
5184
+ * Defines whether the `sap.m.Avatar` is used for decorative purposes and is ignored by accessibility tools.
5185
+ *
5186
+ * **Note:** This property doesn't take effect if `sap.m.Avatar` has a `press` handler.
5187
+ */
5188
+ decorative?: boolean | PropertyBindingInfo;
5189
+
5137
5190
  /**
5138
5191
  * A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
5139
5192
  * control.
@@ -12333,7 +12386,18 @@ declare module "sap/m/ComboBoxBase" {
12333
12386
  /**
12334
12387
  * Gets the flag indicating whether the list items should be recreated
12335
12388
  */
12336
- getRecreateItems(): void;
12389
+ getRecreateItems(): boolean;
12390
+ /**
12391
+ * @SINCE 1.96
12392
+ *
12393
+ * Gets current value of property {@link #getShowClearIcon showClearIcon}.
12394
+ *
12395
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
12396
+ * and liveChange events.
12397
+ *
12398
+ * Default value is `false`.
12399
+ */
12400
+ getShowClearIcon(): boolean;
12337
12401
  /**
12338
12402
  * @SINCE 1.60
12339
12403
  *
@@ -12346,13 +12410,23 @@ declare module "sap/m/ComboBoxBase" {
12346
12410
  */
12347
12411
  getShowSecondaryValues(): boolean;
12348
12412
  /**
12349
- * Fires when an object gets inserted in the items aggregation
12413
+ * Fires when an object gets inserted in the items aggregation.
12350
12414
  */
12351
- handleItemInsertion(): void;
12415
+ handleItemInsertion(
12416
+ /**
12417
+ * The item that should be inserted
12418
+ */
12419
+ oItem: Item
12420
+ ): void;
12352
12421
  /**
12353
- * Fires when an object gets removed from the items aggregation
12422
+ * Fires when an object gets removed from the items aggregation.
12354
12423
  */
12355
- handleItemRemoval(): void;
12424
+ handleItemRemoval(
12425
+ /**
12426
+ * The item that should be removed
12427
+ */
12428
+ oItem: Item
12429
+ ): void;
12356
12430
  /**
12357
12431
  * Determines whether the control has content or not.
12358
12432
  */
@@ -12489,9 +12563,14 @@ declare module "sap/m/ComboBoxBase" {
12489
12563
  sPickerType: string
12490
12564
  ): void;
12491
12565
  /**
12492
- * Sets whether the list items should be recreated
12566
+ * Sets whether the list items should be recreated.
12493
12567
  */
12494
- setRecreateItems(): void;
12568
+ setRecreateItems(
12569
+ /**
12570
+ * True if the list items should be recreated
12571
+ */
12572
+ bRecreate: boolean
12573
+ ): void;
12495
12574
  /**
12496
12575
  * Sets the selectable property of `sap.ui.core.Item`
12497
12576
  */
@@ -12505,6 +12584,24 @@ declare module "sap/m/ComboBoxBase" {
12505
12584
  */
12506
12585
  bSelectable: boolean
12507
12586
  ): void;
12587
+ /**
12588
+ * @SINCE 1.96
12589
+ *
12590
+ * Sets a new value for property {@link #getShowClearIcon showClearIcon}.
12591
+ *
12592
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
12593
+ * and liveChange events.
12594
+ *
12595
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12596
+ *
12597
+ * Default value is `false`.
12598
+ */
12599
+ setShowClearIcon(
12600
+ /**
12601
+ * New value for property `showClearIcon`
12602
+ */
12603
+ bShowClearIcon?: boolean
12604
+ ): this;
12508
12605
  /**
12509
12606
  * @SINCE 1.60
12510
12607
  *
@@ -12532,6 +12629,15 @@ declare module "sap/m/ComboBoxBase" {
12532
12629
  */
12533
12630
  oTextField: ComboBoxTextField | Input
12534
12631
  ): void;
12632
+ /**
12633
+ * Sets the value property of the control.
12634
+ */
12635
+ setValue(
12636
+ /**
12637
+ * The new value
12638
+ */
12639
+ sValue: string
12640
+ ): this;
12535
12641
  /**
12536
12642
  * @SINCE 1.64
12537
12643
  * @EXPERIMENTAL (since 1.64)
@@ -12568,6 +12674,14 @@ declare module "sap/m/ComboBoxBase" {
12568
12674
  */
12569
12675
  open?: boolean | PropertyBindingInfo;
12570
12676
 
12677
+ /**
12678
+ * @SINCE 1.96
12679
+ *
12680
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
12681
+ * and liveChange events.
12682
+ */
12683
+ showClearIcon?: boolean | PropertyBindingInfo;
12684
+
12571
12685
  /**
12572
12686
  * Defines the items contained within this control. **Note:** Disabled items are not visualized in the list
12573
12687
  * with the available options, however they can still be accessed through the aggregation.
@@ -12596,8 +12710,6 @@ declare module "sap/m/ComboBoxBase" {
12596
12710
  declare module "sap/m/ComboBoxTextField" {
12597
12711
  import { default as InputBase, $InputBaseSettings } from "sap/m/InputBase";
12598
12712
 
12599
- import Icon from "sap/ui/core/Icon";
12600
-
12601
12713
  import { CSSSize } from "sap/ui/core/library";
12602
12714
 
12603
12715
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -12640,6 +12752,12 @@ declare module "sap/m/ComboBoxTextField" {
12640
12752
  */
12641
12753
  mSettings?: $ComboBoxTextFieldSettings
12642
12754
  );
12755
+ /**
12756
+ * Returns the arrow icon
12757
+ *
12758
+ * Left for backward compatibility.
12759
+ */
12760
+ getIcon: undefined;
12643
12761
 
12644
12762
  /**
12645
12763
  * Creates a new subclass of class sap.m.ComboBoxTextField with name `sClassName` and enriches it with the
@@ -12666,10 +12784,6 @@ declare module "sap/m/ComboBoxTextField" {
12666
12784
  * Returns a metadata object for class sap.m.ComboBoxTextField.
12667
12785
  */
12668
12786
  static getMetadata(): ElementMetadata;
12669
- /**
12670
- * Returns the arrow icon
12671
- */
12672
- getIcon(): Icon;
12673
12787
  /**
12674
12788
  * Gets current value of property {@link #getMaxWidth maxWidth}.
12675
12789
  *
@@ -13868,6 +13982,24 @@ declare module "sap/m/DatePicker" {
13868
13982
  * Default value is `empty string`.
13869
13983
  */
13870
13984
  getDisplayFormatType(): string;
13985
+ /**
13986
+ * @SINCE 1.97
13987
+ *
13988
+ * Gets current value of property {@link #getHideInput hideInput}.
13989
+ *
13990
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
13991
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
13992
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
13993
+ * must be provided as parameter.
13994
+ *
13995
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
13996
+ * popover, those attributes should be added by the application developer. The following is recommended
13997
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
13998
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
13999
+ *
14000
+ * Default value is `false`.
14001
+ */
14002
+ getHideInput(): boolean;
13871
14003
  /**
13872
14004
  * @SINCE 1.38.5
13873
14005
  *
@@ -14005,6 +14137,26 @@ declare module "sap/m/DatePicker" {
14005
14137
  * Returns if the last entered value is valid.
14006
14138
  */
14007
14139
  isValidValue(): boolean;
14140
+ /**
14141
+ * @SINCE 1.97
14142
+ *
14143
+ * Opens the picker popover. The popover is positioned relatively to the control given as `oDomRef` parameter
14144
+ * on tablet or desktop and is full screen on phone. Therefore the control parameter is only used on tablet
14145
+ * or desktop and is ignored on phone.
14146
+ *
14147
+ * Note: use this method to open the picker popover only when the `hideInput` property is set to `true`.
14148
+ * Please consider opening of the picker popover by another control only in scenarios that comply with Fiori
14149
+ * guidelines. For example, opening the picker popover by another popover is not recommended. The application
14150
+ * developer should implement the following accessibility attributes to the opening control: a text or tooltip
14151
+ * that describes the action (example: "Open Date Picker"), and aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
14152
+ */
14153
+ openBy(
14154
+ /**
14155
+ * DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
14156
+ * control.
14157
+ */
14158
+ oDomRef: HTMLElement
14159
+ ): void;
14008
14160
  /**
14009
14161
  * @SINCE 1.38.5
14010
14162
  *
@@ -14053,6 +14205,31 @@ declare module "sap/m/DatePicker" {
14053
14205
  */
14054
14206
  sDisplayFormatType?: string
14055
14207
  ): this;
14208
+ /**
14209
+ * @SINCE 1.97
14210
+ *
14211
+ * Sets a new value for property {@link #getHideInput hideInput}.
14212
+ *
14213
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
14214
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
14215
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
14216
+ * must be provided as parameter.
14217
+ *
14218
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
14219
+ * popover, those attributes should be added by the application developer. The following is recommended
14220
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
14221
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
14222
+ *
14223
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
14224
+ *
14225
+ * Default value is `false`.
14226
+ */
14227
+ setHideInput(
14228
+ /**
14229
+ * New value for property `hideInput`
14230
+ */
14231
+ bHideInput?: boolean
14232
+ ): this;
14056
14233
  /**
14057
14234
  * @SINCE 1.38.5
14058
14235
  *
@@ -14236,6 +14413,21 @@ declare module "sap/m/DatePicker" {
14236
14413
  */
14237
14414
  showCurrentDateButton?: boolean | PropertyBindingInfo;
14238
14415
 
14416
+ /**
14417
+ * @SINCE 1.97
14418
+ *
14419
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
14420
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
14421
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
14422
+ * must be provided as parameter.
14423
+ *
14424
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
14425
+ * popover, those attributes should be added by the application developer. The following is recommended
14426
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
14427
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
14428
+ */
14429
+ hideInput?: boolean | PropertyBindingInfo;
14430
+
14239
14431
  /**
14240
14432
  * @SINCE 1.38.5
14241
14433
  *
@@ -15672,8 +15864,8 @@ declare module "sap/m/DateTimePicker" {
15672
15864
  *
15673
15865
  * Gets current value of property {@link #getMinutesStep minutesStep}.
15674
15866
  *
15675
- * Sets the minutes slider step. If the step is less than 1, it will be automatically converted back to
15676
- * 1. The minutes slider is populated only by multiples of the step.
15867
+ * Sets the minutes step. If the step is less than 1, it will be automatically converted back to 1. The
15868
+ * minutes clock is populated only by multiples of the step.
15677
15869
  *
15678
15870
  * Default value is `1`.
15679
15871
  */
@@ -15683,8 +15875,8 @@ declare module "sap/m/DateTimePicker" {
15683
15875
  *
15684
15876
  * Gets current value of property {@link #getSecondsStep secondsStep}.
15685
15877
  *
15686
- * Sets the seconds slider step. If the step is less than 1, it will be automatically converted back to
15687
- * 1. The seconds slider is populated only by multiples of the step.
15878
+ * Sets the seconds step. If the step is less than 1, it will be automatically converted back to 1. The
15879
+ * seconds clock is populated only by multiples of the step.
15688
15880
  *
15689
15881
  * Default value is `1`.
15690
15882
  */
@@ -15694,8 +15886,8 @@ declare module "sap/m/DateTimePicker" {
15694
15886
  *
15695
15887
  * Sets a new value for property {@link #getMinutesStep minutesStep}.
15696
15888
  *
15697
- * Sets the minutes slider step. If the step is less than 1, it will be automatically converted back to
15698
- * 1. The minutes slider is populated only by multiples of the step.
15889
+ * Sets the minutes step. If the step is less than 1, it will be automatically converted back to 1. The
15890
+ * minutes clock is populated only by multiples of the step.
15699
15891
  *
15700
15892
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15701
15893
  *
@@ -15712,8 +15904,8 @@ declare module "sap/m/DateTimePicker" {
15712
15904
  *
15713
15905
  * Sets a new value for property {@link #getSecondsStep secondsStep}.
15714
15906
  *
15715
- * Sets the seconds slider step. If the step is less than 1, it will be automatically converted back to
15716
- * 1. The seconds slider is populated only by multiples of the step.
15907
+ * Sets the seconds step. If the step is less than 1, it will be automatically converted back to 1. The
15908
+ * seconds clock is populated only by multiples of the step.
15717
15909
  *
15718
15910
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15719
15911
  *
@@ -15731,16 +15923,16 @@ declare module "sap/m/DateTimePicker" {
15731
15923
  /**
15732
15924
  * @SINCE 1.56
15733
15925
  *
15734
- * Sets the minutes slider step. If the step is less than 1, it will be automatically converted back to
15735
- * 1. The minutes slider is populated only by multiples of the step.
15926
+ * Sets the minutes step. If the step is less than 1, it will be automatically converted back to 1. The
15927
+ * minutes clock is populated only by multiples of the step.
15736
15928
  */
15737
15929
  minutesStep?: int | PropertyBindingInfo;
15738
15930
 
15739
15931
  /**
15740
15932
  * @SINCE 1.56
15741
15933
  *
15742
- * Sets the seconds slider step. If the step is less than 1, it will be automatically converted back to
15743
- * 1. The seconds slider is populated only by multiples of the step.
15934
+ * Sets the seconds step. If the step is less than 1, it will be automatically converted back to 1. The
15935
+ * seconds clock is populated only by multiples of the step.
15744
15936
  */
15745
15937
  secondsStep?: int | PropertyBindingInfo;
15746
15938
  }
@@ -18670,6 +18862,70 @@ declare module "sap/m/DynamicDateRange" {
18670
18862
  }
18671
18863
  }
18672
18864
 
18865
+ declare module "sap/m/DynamicDateUtil" {
18866
+ import DynamicDateOption from "sap/m/DynamicDateOption";
18867
+
18868
+ import DynamicDateFormat from "sap/m/DynamicDateFormat";
18869
+
18870
+ /**
18871
+ * @EXPERIMENTAL (since 1.92)
18872
+ *
18873
+ * The DynamicDateUtil is a utility class for working with the DynamicDateOption instances.
18874
+ */
18875
+ interface DynamicDateUtil {
18876
+ /**
18877
+ * Adds an option to be reused as a global object.
18878
+ */
18879
+ addOption(
18880
+ /**
18881
+ * The option to be added
18882
+ */
18883
+ option: DynamicDateOption
18884
+ ): void;
18885
+ /**
18886
+ * Gets all available standard and custom dynamic date option keys.
18887
+ */
18888
+ getAllOptionKeys(): string[];
18889
+ /**
18890
+ * Gets an option by its key.
18891
+ */
18892
+ getOption(
18893
+ /**
18894
+ * The option key
18895
+ */
18896
+ sKey: string
18897
+ ): DynamicDateOption;
18898
+ /**
18899
+ * Parses a string to an array of objects in the DynamicDateRange's value format. Uses the provided formatter.
18900
+ */
18901
+ parse(
18902
+ /**
18903
+ * The string to be parsed
18904
+ */
18905
+ sValue: string,
18906
+ /**
18907
+ * A dynamic date formatter
18908
+ */
18909
+ oFormatter: DynamicDateFormat,
18910
+ /**
18911
+ * array of option names
18912
+ */
18913
+ aOptionKeys: any[]
18914
+ ): object[];
18915
+ /**
18916
+ * Calculates a date range from a provided object in the format of the DynamicDateRange's value.
18917
+ */
18918
+ toDates(
18919
+ /**
18920
+ * The provided value
18921
+ */
18922
+ oValue: string
18923
+ ): /* was: sap.ui.core.date.UniversalDate */ any[];
18924
+ }
18925
+ const DynamicDateUtil: DynamicDateUtil;
18926
+ export default DynamicDateUtil;
18927
+ }
18928
+
18673
18929
  declare module "sap/m/DynamicDateValueHelpUIType" {
18674
18930
  import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
18675
18931
 
@@ -24255,12 +24511,12 @@ declare module "sap/m/GenericTag" {
24255
24511
  GenericTagValueState,
24256
24512
  } from "sap/m/library";
24257
24513
 
24514
+ import { ID, ValueState } from "sap/ui/core/library";
24515
+
24258
24516
  import Event from "sap/ui/base/Event";
24259
24517
 
24260
24518
  import ElementMetadata from "sap/ui/core/ElementMetadata";
24261
24519
 
24262
- import { ValueState } from "sap/ui/core/library";
24263
-
24264
24520
  import ObjectNumber from "sap/m/ObjectNumber";
24265
24521
 
24266
24522
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
@@ -24336,6 +24592,17 @@ declare module "sap/m/GenericTag" {
24336
24592
  * Returns a metadata object for class sap.m.GenericTag.
24337
24593
  */
24338
24594
  static getMetadata(): ElementMetadata;
24595
+ /**
24596
+ * @SINCE 1.97.0
24597
+ *
24598
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
24599
+ */
24600
+ addAriaLabelledBy(
24601
+ /**
24602
+ * The ariaLabelledBy to add; if empty, nothing is inserted
24603
+ */
24604
+ vAriaLabelledBy: ID | Control
24605
+ ): this;
24339
24606
  /**
24340
24607
  * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.GenericTag`.
24341
24608
  *
@@ -24405,6 +24672,13 @@ declare module "sap/m/GenericTag" {
24405
24672
  */
24406
24673
  mParameters?: object
24407
24674
  ): this;
24675
+ /**
24676
+ * @SINCE 1.97.0
24677
+ *
24678
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
24679
+ * ariaLabelledBy}.
24680
+ */
24681
+ getAriaLabelledBy(): ID[];
24408
24682
  /**
24409
24683
  * Gets current value of property {@link #getDesign design}.
24410
24684
  *
@@ -24451,6 +24725,23 @@ declare module "sap/m/GenericTag" {
24451
24725
  * Default value is `None`.
24452
24726
  */
24453
24727
  getValueState(): GenericTagValueState | keyof typeof GenericTagValueState;
24728
+ /**
24729
+ * @SINCE 1.97.0
24730
+ *
24731
+ * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
24732
+ */
24733
+ removeAllAriaLabelledBy(): ID[];
24734
+ /**
24735
+ * @SINCE 1.97.0
24736
+ *
24737
+ * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
24738
+ */
24739
+ removeAriaLabelledBy(
24740
+ /**
24741
+ * The ariaLabelledBy to be removed or its index or ID
24742
+ */
24743
+ vAriaLabelledBy: int | ID | Control
24744
+ ): ID;
24454
24745
  /**
24455
24746
  * Sets a new value for property {@link #getDesign design}.
24456
24747
  *
@@ -24555,6 +24846,13 @@ declare module "sap/m/GenericTag" {
24555
24846
  */
24556
24847
  value?: ObjectNumber;
24557
24848
 
24849
+ /**
24850
+ * @SINCE 1.97.0
24851
+ *
24852
+ * Association to controls / ids which label this control (see WAI-ARIA attribute aria-labelledBy).
24853
+ */
24854
+ ariaLabelledBy?: Array<Control | string>;
24855
+
24558
24856
  /**
24559
24857
  * Fired when the user clicks/taps on the control.
24560
24858
  */
@@ -24939,6 +25237,16 @@ declare module "sap/m/GenericTile" {
24939
25237
  * Text for navigate action button. Default Value is "Read More". Works only in ArticleMode.
24940
25238
  */
24941
25239
  getNavigationButtonText(): string;
25240
+ /**
25241
+ * @EXPERIMENTAL (since 1.96)
25242
+ *
25243
+ * Gets current value of property {@link #getPressEnabled pressEnabled}.
25244
+ *
25245
+ * Disables press event for the tile control.
25246
+ *
25247
+ * Default value is `true`.
25248
+ */
25249
+ getPressEnabled(): boolean;
24942
25250
  /**
24943
25251
  * @SINCE 1.46.0
24944
25252
  *
@@ -25707,6 +26015,13 @@ declare module "sap/m/GenericTile" {
25707
26015
  */
25708
26016
  enableNavigationButton?: boolean | PropertyBindingInfo;
25709
26017
 
26018
+ /**
26019
+ * @EXPERIMENTAL (since 1.96)
26020
+ *
26021
+ * Disables press event for the tile control.
26022
+ */
26023
+ pressEnabled?: boolean | PropertyBindingInfo;
26024
+
25710
26025
  /**
25711
26026
  * @EXPERIMENTAL (since 1.96)
25712
26027
  *
@@ -33094,6 +33409,10 @@ declare module "sap/m/InputBase" {
33094
33409
  * Defines the value of the control.
33095
33410
  */
33096
33411
  getValue(): string;
33412
+ /**
33413
+ * Gets the value of the accessibility description info field.
33414
+ */
33415
+ getValueDescriptionInfo(): string;
33097
33416
  /**
33098
33417
  * Gets current value of property {@link #getValueState valueState}.
33099
33418
  *
@@ -42018,7 +42337,7 @@ declare module "sap/m/MessageItem" {
42018
42337
  declare module "sap/m/MessagePage" {
42019
42338
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
42020
42339
 
42021
- import { ID, URI, TextDirection } from "sap/ui/core/library";
42340
+ import { ID, URI, TextDirection, TitleLevel } from "sap/ui/core/library";
42022
42341
 
42023
42342
  import Button from "sap/m/Button";
42024
42343
 
@@ -42339,6 +42658,18 @@ declare module "sap/m/MessagePage" {
42339
42658
  * Determines the title in the header of MessagePage.
42340
42659
  */
42341
42660
  getTitle(): string;
42661
+ /**
42662
+ * @SINCE 1.97
42663
+ *
42664
+ * Gets current value of property {@link #getTitleLevel titleLevel}.
42665
+ *
42666
+ * Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
42667
+ *
42668
+ * **Note:** Used for accessibility purposes only.
42669
+ *
42670
+ * Default value is `Auto`.
42671
+ */
42672
+ getTitleLevel(): TitleLevel | keyof typeof TitleLevel;
42342
42673
  /**
42343
42674
  * @SINCE 1.54
42344
42675
  *
@@ -42570,6 +42901,25 @@ declare module "sap/m/MessagePage" {
42570
42901
  */
42571
42902
  sTitle?: string
42572
42903
  ): this;
42904
+ /**
42905
+ * @SINCE 1.97
42906
+ *
42907
+ * Sets a new value for property {@link #getTitleLevel titleLevel}.
42908
+ *
42909
+ * Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
42910
+ *
42911
+ * **Note:** Used for accessibility purposes only.
42912
+ *
42913
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
42914
+ *
42915
+ * Default value is `Auto`.
42916
+ */
42917
+ setTitleLevel(
42918
+ /**
42919
+ * New value for property `titleLevel`
42920
+ */
42921
+ sTitleLevel?: TitleLevel | keyof typeof TitleLevel
42922
+ ): this;
42573
42923
  }
42574
42924
 
42575
42925
  export interface $MessagePageSettings extends $ControlSettings {
@@ -42588,6 +42938,15 @@ declare module "sap/m/MessagePage" {
42588
42938
  */
42589
42939
  title?: string | PropertyBindingInfo;
42590
42940
 
42941
+ /**
42942
+ * @SINCE 1.97
42943
+ *
42944
+ * Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
42945
+ *
42946
+ * **Note:** Used for accessibility purposes only.
42947
+ */
42948
+ titleLevel?: (TitleLevel | keyof typeof TitleLevel) | PropertyBindingInfo;
42949
+
42591
42950
  /**
42592
42951
  * Determines the visibility of the MessagePage header. Can be used to hide the header of the MessagePage
42593
42952
  * when it's embedded in another page.
@@ -45564,10 +45923,6 @@ declare module "sap/m/MultiComboBox" {
45564
45923
  * This hook method is called before the MultiComboBox is rendered.
45565
45924
  */
45566
45925
  onBeforeRendering(): void;
45567
- /**
45568
- * This hook method is called before the MultiComboBox's Pop-up is rendered.
45569
- */
45570
- onBeforeRenderingPicker(): void;
45571
45926
  /**
45572
45927
  * Handles control click event.
45573
45928
  */
@@ -64589,6 +64944,18 @@ declare module "sap/m/PlanningCalendar" {
64589
64944
  * date of the month in which the `minDate` belongs.
64590
64945
  */
64591
64946
  getMinDate(): object;
64947
+ /**
64948
+ * @SINCE 1.97
64949
+ *
64950
+ * Gets current value of property {@link #getMultipleAppointmentsSelection multipleAppointmentsSelection}.
64951
+ *
64952
+ * Determines whether the selection of multiple appointments is enabled.
64953
+ *
64954
+ * Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
64955
+ *
64956
+ * Default value is `false`.
64957
+ */
64958
+ getMultipleAppointmentsSelection(): boolean;
64592
64959
  /**
64593
64960
  * Gets current value of property {@link #getNoDataText noDataText}.
64594
64961
  *
@@ -65161,6 +65528,25 @@ declare module "sap/m/PlanningCalendar" {
65161
65528
  */
65162
65529
  oMinDate?: object
65163
65530
  ): this;
65531
+ /**
65532
+ * @SINCE 1.97
65533
+ *
65534
+ * Sets a new value for property {@link #getMultipleAppointmentsSelection multipleAppointmentsSelection}.
65535
+ *
65536
+ * Determines whether the selection of multiple appointments is enabled.
65537
+ *
65538
+ * Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
65539
+ *
65540
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
65541
+ *
65542
+ * Default value is `false`.
65543
+ */
65544
+ setMultipleAppointmentsSelection(
65545
+ /**
65546
+ * New value for property `multipleAppointmentsSelection`
65547
+ */
65548
+ bMultipleAppointmentsSelection?: boolean
65549
+ ): this;
65164
65550
  /**
65165
65551
  * Sets a new value for property {@link #getNoDataText noDataText}.
65166
65552
  *
@@ -65547,6 +65933,15 @@ declare module "sap/m/PlanningCalendar" {
65547
65933
  */
65548
65934
  firstDayOfWeek?: int | PropertyBindingInfo;
65549
65935
 
65936
+ /**
65937
+ * @SINCE 1.97
65938
+ *
65939
+ * Determines whether the selection of multiple appointments is enabled.
65940
+ *
65941
+ * Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
65942
+ */
65943
+ multipleAppointmentsSelection?: boolean | PropertyBindingInfo;
65944
+
65550
65945
  /**
65551
65946
  * Rows of the `PlanningCalendar`.
65552
65947
  */
@@ -65730,16 +66125,12 @@ declare module "sap/m/PlanningCalendarLegend" {
65730
66125
  *
65731
66126
  * Defines the text displayed in the header of the appointment items list. It is commonly related to the
65732
66127
  * calendar appointments.
65733
- *
65734
- * Default value is `"Appointments"`.
65735
66128
  */
65736
66129
  getAppointmentItemsHeader(): string;
65737
66130
  /**
65738
66131
  * Gets current value of property {@link #getItemsHeader itemsHeader}.
65739
66132
  *
65740
66133
  * Defines the text displayed in the header of the items list. It is commonly related to the calendar days.
65741
- *
65742
- * Default value is `"Calendar"`.
65743
66134
  */
65744
66135
  getItemsHeader(): string;
65745
66136
  /**
@@ -65789,14 +66180,12 @@ declare module "sap/m/PlanningCalendarLegend" {
65789
66180
  * calendar appointments.
65790
66181
  *
65791
66182
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
65792
- *
65793
- * Default value is `"Appointments"`.
65794
66183
  */
65795
66184
  setAppointmentItemsHeader(
65796
66185
  /**
65797
66186
  * New value for property `appointmentItemsHeader`
65798
66187
  */
65799
- sAppointmentItemsHeader?: string
66188
+ sAppointmentItemsHeader: string
65800
66189
  ): this;
65801
66190
  /**
65802
66191
  * Sets a new value for property {@link #getItemsHeader itemsHeader}.
@@ -65804,14 +66193,12 @@ declare module "sap/m/PlanningCalendarLegend" {
65804
66193
  * Defines the text displayed in the header of the items list. It is commonly related to the calendar days.
65805
66194
  *
65806
66195
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
65807
- *
65808
- * Default value is `"Calendar"`.
65809
66196
  */
65810
66197
  setItemsHeader(
65811
66198
  /**
65812
66199
  * New value for property `itemsHeader`
65813
66200
  */
65814
- sItemsHeader?: string
66201
+ sItemsHeader: string
65815
66202
  ): this;
65816
66203
  }
65817
66204
 
@@ -78511,6 +78898,11 @@ declare module "sap/m/SegmentedButton" {
78511
78898
  item?: SegmentedButtonItem;
78512
78899
  }
78513
78900
  ): this;
78901
+ /**
78902
+ * See:
78903
+ * sap.ui.core.Control#getAccessibilityInfo
78904
+ */
78905
+ getAccessibilityInfo(): object;
78514
78906
  /**
78515
78907
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
78516
78908
  * ariaDescribedBy}.
@@ -104660,6 +105052,24 @@ declare module "sap/m/TimePicker" {
104660
105052
  * the binding itself.
104661
105053
  */
104662
105054
  getDisplayFormat(): string;
105055
+ /**
105056
+ * @SINCE 1.97
105057
+ *
105058
+ * Gets current value of property {@link #getHideInput hideInput}.
105059
+ *
105060
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
105061
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
105062
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
105063
+ * must be provided as parameter.
105064
+ *
105065
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
105066
+ * popover, those attributes should be added by the application developer. The following is recommended
105067
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Time
105068
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
105069
+ *
105070
+ * Default value is `false`.
105071
+ */
105072
+ getHideInput(): boolean;
104663
105073
  /**
104664
105074
  * Gets current value of property {@link #getLocaleId localeId}.
104665
105075
  *
@@ -104807,6 +105217,26 @@ declare module "sap/m/TimePicker" {
104807
105217
  * Called before the clock picker appears.
104808
105218
  */
104809
105219
  onBeforeOpen(): void;
105220
+ /**
105221
+ * @SINCE 1.97
105222
+ *
105223
+ * Opens the picker popover. The popover is positioned relatively to the control given as `oDomRef` parameter
105224
+ * on tablet or desktop and is full screen on phone. Therefore the control parameter is only used on tablet
105225
+ * or desktop and is ignored on phone.
105226
+ *
105227
+ * Note: use this method to open the picker popover only when the `hideInput` property is set to `true`.
105228
+ * Please consider opening of the picker popover by another control only in scenarios that comply with Fiori
105229
+ * guidelines. For example, opening the picker popover by another popover is not recommended. The application
105230
+ * developer should implement the following accessibility attributes to the opening control: a text or tooltip
105231
+ * that describes the action (example: "Open Time Picker"), and aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
105232
+ */
105233
+ openBy(
105234
+ /**
105235
+ * DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
105236
+ * control.
105237
+ */
105238
+ oDomRef: HTMLElement
105239
+ ): void;
104810
105240
  /**
104811
105241
  * Removes all the controls from the aggregation {@link #getRules rules}.
104812
105242
  *
@@ -104840,6 +105270,31 @@ declare module "sap/m/TimePicker" {
104840
105270
  */
104841
105271
  sDisplayFormat: string
104842
105272
  ): this;
105273
+ /**
105274
+ * @SINCE 1.97
105275
+ *
105276
+ * Sets a new value for property {@link #getHideInput hideInput}.
105277
+ *
105278
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
105279
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
105280
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
105281
+ * must be provided as parameter.
105282
+ *
105283
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
105284
+ * popover, those attributes should be added by the application developer. The following is recommended
105285
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Time
105286
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
105287
+ *
105288
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
105289
+ *
105290
+ * Default value is `false`.
105291
+ */
105292
+ setHideInput(
105293
+ /**
105294
+ * New value for property `hideInput`
105295
+ */
105296
+ bHideInput?: boolean
105297
+ ): this;
104843
105298
  /**
104844
105299
  * Sets the locale of the control.
104845
105300
  *
@@ -105011,6 +105466,21 @@ declare module "sap/m/TimePicker" {
105011
105466
  */
105012
105467
  support2400?: boolean | PropertyBindingInfo;
105013
105468
 
105469
+ /**
105470
+ * @SINCE 1.97
105471
+ *
105472
+ * Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
105473
+ * field becomes invisible and there is no way to open the picker popover. In that case it can be opened
105474
+ * by another control through calling of picker's `openBy` method, and the opening control's DOM reference
105475
+ * must be provided as parameter.
105476
+ *
105477
+ * Note: Since the picker is not responsible for accessibility attributes of the control which opens its
105478
+ * popover, those attributes should be added by the application developer. The following is recommended
105479
+ * to be added to the opening control: a text or tooltip that describes the action (example: "Open Time
105480
+ * Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
105481
+ */
105482
+ hideInput?: boolean | PropertyBindingInfo;
105483
+
105014
105484
  /**
105015
105485
  * A list of validation rules (one rule per mask character).
105016
105486
  */
@@ -119568,13 +120038,6 @@ declare namespace sap {
119568
120038
  * browsers.
119569
120039
  */
119570
120040
  namespace m {
119571
- /**
119572
- * @EXPERIMENTAL (since 1.92)
119573
- *
119574
- * A utility class for working with the DynamicDateOption instances.
119575
- */
119576
- export const DynamicDateUtil: undefined;
119577
-
119578
120041
  /**
119579
120042
  * @EXPERIMENTAL (since 1.92)
119580
120043
  *
@@ -120039,6 +120502,8 @@ declare namespace sap {
120039
120502
 
120040
120503
  "sap/m/DynamicDateRange": undefined;
120041
120504
 
120505
+ "sap/m/DynamicDateUtil": undefined;
120506
+
120042
120507
  "sap/m/DynamicDateValueHelpUIType": undefined;
120043
120508
 
120044
120509
  "sap/m/ExpandableText": undefined;
@@ -120187,6 +120652,8 @@ declare namespace sap {
120187
120652
 
120188
120653
  "sap/m/p13n/GroupPanel": undefined;
120189
120654
 
120655
+ "sap/m/p13n/Popup": undefined;
120656
+
120190
120657
  "sap/m/p13n/QueryPanel": undefined;
120191
120658
 
120192
120659
  "sap/m/p13n/SelectionPanel": undefined;