@openui5/ts-types 1.130.0 → 1.131.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.131.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -721,7 +721,6 @@ declare namespace sap {
721
721
  * Applies a state to a control by passing an object that contains the registered controller key and an
722
722
  * object matching the inner subcontroller logic.
723
723
  *
724
- * @experimental (since 1.104) - Please note that the API of this control is not yet finalized!
725
724
  *
726
725
  * @returns A Promise resolving after the state has been applied
727
726
  */
@@ -803,7 +802,6 @@ declare namespace sap {
803
802
  * modification handler appliance). After the returned `Promise` has been resolved, the returned state is
804
803
  * in sync with the related state object of the control.
805
804
  *
806
- * @experimental (since 1.104) - Please note that the API of this control is not yet finalized!
807
805
  *
808
806
  * @returns A Promise resolving in the current control state
809
807
  */
@@ -32089,7 +32087,8 @@ declare namespace sap {
32089
32087
  * Defines the highlight state of the list items.
32090
32088
  *
32091
32089
  * Valid values for the `highlight` property are values of the enumerations {@link sap.ui.core.MessageType }
32092
- * or {@link sap.ui.core.IndicationColor}.
32090
+ * or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
32091
+ * for accessibility contrast reasons).
32093
32092
  *
32094
32093
  * Accessibility support is provided through the associated {@link sap.m.ListItemBase#setHighlightText highlightText }
32095
32094
  * property. If the `highlight` property is set to a value of {@link sap.ui.core.MessageType}, the `highlightText`
@@ -32208,6 +32207,18 @@ declare namespace sap {
32208
32207
  * @since 1.104.0
32209
32208
  */
32210
32209
  liveChange?: (oEvent: MaskInput$LiveChangeEvent) => void;
32210
+
32211
+ /**
32212
+ * This event is fired when user presses the Enter key on the Mask input.
32213
+ *
32214
+ * **Notes:**
32215
+ * - The event is fired independent of whether there was a change before or not. If a change was performed,
32216
+ * the event is fired after the change event.
32217
+ * - The event is only fired on an input which allows text input (`editable` and `enabled`).
32218
+ *
32219
+ * @since 1.131.0
32220
+ */
32221
+ submit?: (oEvent: MaskInput$SubmitEvent) => void;
32211
32222
  }
32212
32223
 
32213
32224
  /**
@@ -32252,6 +32263,14 @@ declare namespace sap {
32252
32263
  * Fired when the menu is closed.
32253
32264
  */
32254
32265
  closed?: (oEvent: sap.ui.base.Event) => void;
32266
+
32267
+ /**
32268
+ * Fired before the menu is closed. This event can be prevented which effectively prevents the menu from
32269
+ * closing.
32270
+ *
32271
+ * @since 1.131
32272
+ */
32273
+ beforeClose?: (oEvent: sap.ui.base.Event) => void;
32255
32274
  }
32256
32275
 
32257
32276
  /**
@@ -32450,6 +32469,19 @@ declare namespace sap {
32450
32469
  | sap.ui.base.ManagedObject.AggregationBindingInfo
32451
32470
  | `{${string}}`;
32452
32471
 
32472
+ /**
32473
+ * Defines the content that is displayed at the end of a menu item. This aggregation allows for the addition
32474
+ * of custom elements, such as icons and buttons.
32475
+ *
32476
+ * @since 1.131
32477
+ * @experimental
32478
+ */
32479
+ endContent?:
32480
+ | sap.ui.core.Control[]
32481
+ | sap.ui.core.Control
32482
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
32483
+ | `{${string}}`;
32484
+
32453
32485
  /**
32454
32486
  * Fired after the item has been pressed.
32455
32487
  */
@@ -34888,7 +34920,6 @@ declare namespace sap {
34888
34920
  * Describes the settings that can be provided to the P13nConditionPanel constructor.
34889
34921
  *
34890
34922
  * @deprecated (since 1.124) - replaced by the artifacts in {@link sap.m.p13n}.
34891
- * @experimental (since 1.26) - !!! THIS CONTROL IS ONLY FOR INTERNAL USE !!!
34892
34923
  */
34893
34924
  interface $P13nConditionPanelSettings extends sap.ui.core.$ControlSettings {
34894
34925
  /**
@@ -35246,8 +35277,6 @@ declare namespace sap {
35246
35277
 
35247
35278
  /**
35248
35279
  * Event raised if a filter item has been changed. reason can be added, updated or removed.
35249
- *
35250
- * @experimental (since 1.56)
35251
35280
  */
35252
35281
  filterItemChanged?: (
35253
35282
  oEvent: P13nFilterPanel$FilterItemChangedEvent
@@ -37448,6 +37477,8 @@ declare namespace sap {
37448
37477
  interface $ProgressIndicatorSettings extends sap.ui.core.$ControlSettings {
37449
37478
  /**
37450
37479
  * Switches enabled state of the control. Disabled fields have different colors, and cannot be focused.
37480
+ *
37481
+ * @deprecated (since 1.130) - with no replacement.
37451
37482
  */
37452
37483
  enabled?:
37453
37484
  | boolean
@@ -45273,6 +45304,21 @@ declare namespace sap {
45273
45304
  previousValue?: string;
45274
45305
  }
45275
45306
 
45307
+ /**
45308
+ * Parameters of the MaskInput#submit event.
45309
+ */
45310
+ interface MaskInput$SubmitEventParameters {
45311
+ /**
45312
+ * The new value of the Mask input.
45313
+ */
45314
+ value?: string;
45315
+ }
45316
+
45317
+ /**
45318
+ * Parameters of the Menu#beforeClose event.
45319
+ */
45320
+ interface Menu$BeforeCloseEventParameters {}
45321
+
45276
45322
  /**
45277
45323
  * Parameters of the Menu#closed event.
45278
45324
  */
@@ -45933,8 +45979,6 @@ declare namespace sap {
45933
45979
 
45934
45980
  /**
45935
45981
  * Parameters of the P13nFilterPanel#filterItemChanged event.
45936
- *
45937
- * @experimental (since 1.56)
45938
45982
  */
45939
45983
  interface P13nFilterPanel$FilterItemChangedEventParameters {
45940
45984
  /**
@@ -65279,29 +65323,35 @@ declare namespace sap {
65279
65323
  /**
65280
65324
  * Fires event {@link #event:beforeClose beforeClose} to attached listeners.
65281
65325
  *
65326
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
65327
+ * event object. The return value of this method indicates whether the default action should be executed.
65328
+ *
65282
65329
  * @ui5-protected Do not call from applications (only from related classes in the framework)
65283
65330
  *
65284
- * @returns Reference to `this` in order to allow method chaining
65331
+ * @returns Whether or not to prevent the default action
65285
65332
  */
65286
65333
  fireBeforeClose(
65287
65334
  /**
65288
65335
  * Parameters to pass along with the event
65289
65336
  */
65290
65337
  mParameters?: sap.m.Dialog$BeforeCloseEventParameters
65291
- ): this;
65338
+ ): boolean;
65292
65339
  /**
65293
65340
  * Fires event {@link #event:beforeOpen beforeOpen} to attached listeners.
65294
65341
  *
65342
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
65343
+ * event object. The return value of this method indicates whether the default action should be executed.
65344
+ *
65295
65345
  * @ui5-protected Do not call from applications (only from related classes in the framework)
65296
65346
  *
65297
- * @returns Reference to `this` in order to allow method chaining
65347
+ * @returns Whether or not to prevent the default action
65298
65348
  */
65299
65349
  fireBeforeOpen(
65300
65350
  /**
65301
65351
  * Parameters to pass along with the event
65302
65352
  */
65303
65353
  mParameters?: object
65304
- ): this;
65354
+ ): boolean;
65305
65355
  /**
65306
65356
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
65307
65357
  */
@@ -88418,7 +88468,8 @@ declare namespace sap {
88418
88468
  * Defines the highlight state of the list items.
88419
88469
  *
88420
88470
  * Valid values for the `highlight` property are values of the enumerations {@link sap.ui.core.MessageType }
88421
- * or {@link sap.ui.core.IndicationColor}.
88471
+ * or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
88472
+ * for accessibility contrast reasons).
88422
88473
  *
88423
88474
  * Accessibility support is provided through the associated {@link sap.m.ListItemBase#setHighlightText highlightText }
88424
88475
  * property. If the `highlight` property is set to a value of {@link sap.ui.core.MessageType}, the `highlightText`
@@ -88571,7 +88622,8 @@ declare namespace sap {
88571
88622
  * Defines the highlight state of the list items.
88572
88623
  *
88573
88624
  * Valid values for the `highlight` property are values of the enumerations {@link sap.ui.core.MessageType }
88574
- * or {@link sap.ui.core.IndicationColor}.
88625
+ * or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
88626
+ * for accessibility contrast reasons).
88575
88627
  *
88576
88628
  * Accessibility support is provided through the associated {@link sap.m.ListItemBase#setHighlightText highlightText }
88577
88629
  * property. If the `highlight` property is set to a value of {@link sap.ui.core.MessageType}, the `highlightText`
@@ -88860,6 +88912,65 @@ declare namespace sap {
88860
88912
  */
88861
88913
  oListener?: object
88862
88914
  ): this;
88915
+ /**
88916
+ * Attaches event handler `fnFunction` to the {@link #event:submit submit} event of this `sap.m.MaskInput`.
88917
+ *
88918
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
88919
+ * otherwise it will be bound to this `sap.m.MaskInput` itself.
88920
+ *
88921
+ * This event is fired when user presses the Enter key on the Mask input.
88922
+ *
88923
+ * **Notes:**
88924
+ * - The event is fired independent of whether there was a change before or not. If a change was performed,
88925
+ * the event is fired after the change event.
88926
+ * - The event is only fired on an input which allows text input (`editable` and `enabled`).
88927
+ *
88928
+ * @since 1.131.0
88929
+ *
88930
+ * @returns Reference to `this` in order to allow method chaining
88931
+ */
88932
+ attachSubmit(
88933
+ /**
88934
+ * An application-specific payload object that will be passed to the event handler along with the event
88935
+ * object when firing the event
88936
+ */
88937
+ oData: object,
88938
+ /**
88939
+ * The function to be called when the event occurs
88940
+ */
88941
+ fnFunction: (p1: MaskInput$SubmitEvent) => void,
88942
+ /**
88943
+ * Context object to call the event handler with. Defaults to this `sap.m.MaskInput` itself
88944
+ */
88945
+ oListener?: object
88946
+ ): this;
88947
+ /**
88948
+ * Attaches event handler `fnFunction` to the {@link #event:submit submit} event of this `sap.m.MaskInput`.
88949
+ *
88950
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
88951
+ * otherwise it will be bound to this `sap.m.MaskInput` itself.
88952
+ *
88953
+ * This event is fired when user presses the Enter key on the Mask input.
88954
+ *
88955
+ * **Notes:**
88956
+ * - The event is fired independent of whether there was a change before or not. If a change was performed,
88957
+ * the event is fired after the change event.
88958
+ * - The event is only fired on an input which allows text input (`editable` and `enabled`).
88959
+ *
88960
+ * @since 1.131.0
88961
+ *
88962
+ * @returns Reference to `this` in order to allow method chaining
88963
+ */
88964
+ attachSubmit(
88965
+ /**
88966
+ * The function to be called when the event occurs
88967
+ */
88968
+ fnFunction: (p1: MaskInput$SubmitEvent) => void,
88969
+ /**
88970
+ * Context object to call the event handler with. Defaults to this `sap.m.MaskInput` itself
88971
+ */
88972
+ oListener?: object
88973
+ ): this;
88863
88974
  /**
88864
88975
  * Destroys all the rules in the aggregation {@link #getRules rules}.
88865
88976
  *
@@ -88886,6 +88997,25 @@ declare namespace sap {
88886
88997
  */
88887
88998
  oListener?: object
88888
88999
  ): this;
89000
+ /**
89001
+ * Detaches event handler `fnFunction` from the {@link #event:submit submit} event of this `sap.m.MaskInput`.
89002
+ *
89003
+ * The passed function and listener object must match the ones used for event registration.
89004
+ *
89005
+ * @since 1.131.0
89006
+ *
89007
+ * @returns Reference to `this` in order to allow method chaining
89008
+ */
89009
+ detachSubmit(
89010
+ /**
89011
+ * The function to be called, when the event occurs
89012
+ */
89013
+ fnFunction: (p1: MaskInput$SubmitEvent) => void,
89014
+ /**
89015
+ * Context object on which the given function had to be called
89016
+ */
89017
+ oListener?: object
89018
+ ): this;
88889
89019
  /**
88890
89020
  * Fires event {@link #event:liveChange liveChange} to attached listeners.
88891
89021
  *
@@ -88900,6 +89030,20 @@ declare namespace sap {
88900
89030
  */
88901
89031
  mParameters?: sap.m.MaskInput$LiveChangeEventParameters
88902
89032
  ): this;
89033
+ /**
89034
+ * Fires event {@link #event:submit submit} to attached listeners.
89035
+ *
89036
+ * @since 1.131.0
89037
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
89038
+ *
89039
+ * @returns Reference to `this` in order to allow method chaining
89040
+ */
89041
+ fireSubmit(
89042
+ /**
89043
+ * Parameters to pass along with the event
89044
+ */
89045
+ mParameters?: sap.m.MaskInput$SubmitEventParameters
89046
+ ): this;
88903
89047
  /**
88904
89048
  * Gets current value of property {@link #getMask mask}.
88905
89049
  *
@@ -89273,6 +89417,57 @@ declare namespace sap {
89273
89417
  */
89274
89418
  oItem: sap.m.IMenuItem
89275
89419
  ): this;
89420
+ /**
89421
+ * Attaches event handler `fnFunction` to the {@link #event:beforeClose beforeClose} event of this `sap.m.Menu`.
89422
+ *
89423
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
89424
+ * otherwise it will be bound to this `sap.m.Menu` itself.
89425
+ *
89426
+ * Fired before the menu is closed. This event can be prevented which effectively prevents the menu from
89427
+ * closing.
89428
+ *
89429
+ * @since 1.131
89430
+ *
89431
+ * @returns Reference to `this` in order to allow method chaining
89432
+ */
89433
+ attachBeforeClose(
89434
+ /**
89435
+ * An application-specific payload object that will be passed to the event handler along with the event
89436
+ * object when firing the event
89437
+ */
89438
+ oData: object,
89439
+ /**
89440
+ * The function to be called when the event occurs
89441
+ */
89442
+ fnFunction: (p1: sap.ui.base.Event) => void,
89443
+ /**
89444
+ * Context object to call the event handler with. Defaults to this `sap.m.Menu` itself
89445
+ */
89446
+ oListener?: object
89447
+ ): this;
89448
+ /**
89449
+ * Attaches event handler `fnFunction` to the {@link #event:beforeClose beforeClose} event of this `sap.m.Menu`.
89450
+ *
89451
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
89452
+ * otherwise it will be bound to this `sap.m.Menu` itself.
89453
+ *
89454
+ * Fired before the menu is closed. This event can be prevented which effectively prevents the menu from
89455
+ * closing.
89456
+ *
89457
+ * @since 1.131
89458
+ *
89459
+ * @returns Reference to `this` in order to allow method chaining
89460
+ */
89461
+ attachBeforeClose(
89462
+ /**
89463
+ * The function to be called when the event occurs
89464
+ */
89465
+ fnFunction: (p1: sap.ui.base.Event) => void,
89466
+ /**
89467
+ * Context object to call the event handler with. Defaults to this `sap.m.Menu` itself
89468
+ */
89469
+ oListener?: object
89470
+ ): this;
89276
89471
  /**
89277
89472
  * Attaches event handler `fnFunction` to the {@link #event:closed closed} event of this `sap.m.Menu`.
89278
89473
  *
@@ -89393,6 +89588,25 @@ declare namespace sap {
89393
89588
  * @returns Reference to `this` in order to allow method chaining
89394
89589
  */
89395
89590
  destroyItems(): this;
89591
+ /**
89592
+ * Detaches event handler `fnFunction` from the {@link #event:beforeClose beforeClose} event of this `sap.m.Menu`.
89593
+ *
89594
+ * The passed function and listener object must match the ones used for event registration.
89595
+ *
89596
+ * @since 1.131
89597
+ *
89598
+ * @returns Reference to `this` in order to allow method chaining
89599
+ */
89600
+ detachBeforeClose(
89601
+ /**
89602
+ * The function to be called, when the event occurs
89603
+ */
89604
+ fnFunction: (p1: sap.ui.base.Event) => void,
89605
+ /**
89606
+ * Context object on which the given function had to be called
89607
+ */
89608
+ oListener?: object
89609
+ ): this;
89396
89610
  /**
89397
89611
  * Detaches event handler `fnFunction` from the {@link #event:closed closed} event of this `sap.m.Menu`.
89398
89612
  *
@@ -89429,6 +89643,23 @@ declare namespace sap {
89429
89643
  */
89430
89644
  oListener?: object
89431
89645
  ): this;
89646
+ /**
89647
+ * Fires event {@link #event:beforeClose beforeClose} to attached listeners.
89648
+ *
89649
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
89650
+ * event object. The return value of this method indicates whether the default action should be executed.
89651
+ *
89652
+ * @since 1.131
89653
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
89654
+ *
89655
+ * @returns Whether or not to prevent the default action
89656
+ */
89657
+ fireBeforeClose(
89658
+ /**
89659
+ * Parameters to pass along with the event
89660
+ */
89661
+ mParameters?: object
89662
+ ): boolean;
89432
89663
  /**
89433
89664
  * Fires event {@link #event:closed closed} to attached listeners.
89434
89665
  *
@@ -90378,6 +90609,20 @@ declare namespace sap {
90378
90609
  * @returns Metadata object describing this class
90379
90610
  */
90380
90611
  static getMetadata(): sap.ui.core.ElementMetadata;
90612
+ /**
90613
+ * Adds some endContent to the aggregation {@link #getEndContent endContent}.
90614
+ *
90615
+ * @since 1.131
90616
+ * @experimental
90617
+ *
90618
+ * @returns Reference to `this` in order to allow method chaining
90619
+ */
90620
+ addEndContent(
90621
+ /**
90622
+ * The endContent to add; if empty, nothing is inserted
90623
+ */
90624
+ oEndContent: sap.ui.core.Control
90625
+ ): this;
90381
90626
  /**
90382
90627
  * Adds some item to the aggregation {@link #getItems items}.
90383
90628
  *
@@ -90550,6 +90795,15 @@ declare namespace sap {
90550
90795
  */
90551
90796
  oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
90552
90797
  ): this;
90798
+ /**
90799
+ * Destroys all the endContent in the aggregation {@link #getEndContent endContent}.
90800
+ *
90801
+ * @since 1.131
90802
+ * @experimental
90803
+ *
90804
+ * @returns Reference to `this` in order to allow method chaining
90805
+ */
90806
+ destroyEndContent(): this;
90553
90807
  /**
90554
90808
  * Destroys all the items in the aggregation {@link #getItems items}.
90555
90809
  *
@@ -90652,6 +90906,16 @@ declare namespace sap {
90652
90906
  */
90653
90907
  mParameters?: sap.m.MenuItem$PropertyChangedEventParameters
90654
90908
  ): this;
90909
+ /**
90910
+ * Gets content of aggregation {@link #getEndContent endContent}.
90911
+ *
90912
+ * Defines the content that is displayed at the end of a menu item. This aggregation allows for the addition
90913
+ * of custom elements, such as icons and buttons.
90914
+ *
90915
+ * @since 1.131
90916
+ * @experimental
90917
+ */
90918
+ getEndContent(): sap.ui.core.Control[];
90655
90919
  /**
90656
90920
  * Gets current value of property {@link #getIcon icon}.
90657
90921
  *
@@ -90717,6 +90981,21 @@ declare namespace sap {
90717
90981
  * @returns Value of property `visible`
90718
90982
  */
90719
90983
  getVisible(): boolean;
90984
+ /**
90985
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getEndContent endContent}. and
90986
+ * returns its index if found or -1 otherwise.
90987
+ *
90988
+ * @since 1.131
90989
+ * @experimental
90990
+ *
90991
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
90992
+ */
90993
+ indexOfEndContent(
90994
+ /**
90995
+ * The endContent whose index is looked for
90996
+ */
90997
+ oEndContent: sap.ui.core.Control
90998
+ ): int;
90720
90999
  /**
90721
91000
  * Checks for the provided `sap.m.IMenuItem` in the aggregation {@link #getItems items}. and returns its
90722
91001
  * index if found or -1 otherwise.
@@ -90730,6 +91009,26 @@ declare namespace sap {
90730
91009
  */
90731
91010
  oItem: sap.m.IMenuItem
90732
91011
  ): int;
91012
+ /**
91013
+ * Inserts a endContent into the aggregation {@link #getEndContent endContent}.
91014
+ *
91015
+ * @since 1.131
91016
+ * @experimental
91017
+ *
91018
+ * @returns Reference to `this` in order to allow method chaining
91019
+ */
91020
+ insertEndContent(
91021
+ /**
91022
+ * The endContent to insert; if empty, nothing is inserted
91023
+ */
91024
+ oEndContent: sap.ui.core.Control,
91025
+ /**
91026
+ * The `0`-based index the endContent should be inserted at; for a negative value of `iIndex`, the endContent
91027
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the endContent
91028
+ * is inserted at the last position
91029
+ */
91030
+ iIndex: int
91031
+ ): this;
90733
91032
  /**
90734
91033
  * Inserts a item into the aggregation {@link #getItems items}.
90735
91034
  *
@@ -90748,6 +91047,17 @@ declare namespace sap {
90748
91047
  */
90749
91048
  iIndex: int
90750
91049
  ): this;
91050
+ /**
91051
+ * Removes all the controls from the aggregation {@link #getEndContent endContent}.
91052
+ *
91053
+ * Additionally, it unregisters them from the hosting UIArea.
91054
+ *
91055
+ * @since 1.131
91056
+ * @experimental
91057
+ *
91058
+ * @returns An array of the removed elements (might be empty)
91059
+ */
91060
+ removeAllEndContent(): sap.ui.core.Control[];
90751
91061
  /**
90752
91062
  * Removes all the controls from the aggregation {@link #getItems items}.
90753
91063
  *
@@ -90757,6 +91067,20 @@ declare namespace sap {
90757
91067
  * @returns An array of the removed elements (might be empty)
90758
91068
  */
90759
91069
  removeAllItems(): sap.m.IMenuItem[];
91070
+ /**
91071
+ * Removes a endContent from the aggregation {@link #getEndContent endContent}.
91072
+ *
91073
+ * @since 1.131
91074
+ * @experimental
91075
+ *
91076
+ * @returns The removed endContent or `null`
91077
+ */
91078
+ removeEndContent(
91079
+ /**
91080
+ * The endContent to remove or its index or id
91081
+ */
91082
+ vEndContent: int | string | sap.ui.core.Control
91083
+ ): sap.ui.core.Control | null;
90760
91084
  /**
90761
91085
  * Removes a item from the aggregation {@link #getItems items}.
90762
91086
  *
@@ -103671,7 +103995,6 @@ declare namespace sap {
103671
103995
  * - {@link sap.m.ComboBox}
103672
103996
  * - {@link sap.m.DatePicker}
103673
103997
  * - {@link sap.m.DateRangeSelection}
103674
- * - {@link sap.m.DateTimeInput}
103675
103998
  * - {@link sap.m.DateTimePicker}
103676
103999
  * - {@link sap.m.GenericTag}
103677
104000
  * - {@link sap.m.Input}
@@ -105005,7 +105328,6 @@ declare namespace sap {
105005
105328
  *
105006
105329
  * @since 1.26.0
105007
105330
  * @deprecated (since 1.124) - replaced by the artifacts in {@link sap.m.p13n}.
105008
- * @experimental (since 1.26) - !!! THIS CONTROL IS ONLY FOR INTERNAL USE !!!
105009
105331
  */
105010
105332
  class P13nConditionPanel extends sap.ui.core.Control {
105011
105333
  /**
@@ -107112,7 +107434,6 @@ declare namespace sap {
107112
107434
  *
107113
107435
  * Event raised if a filter item has been changed. reason can be added, updated or removed.
107114
107436
  *
107115
- * @experimental (since 1.56)
107116
107437
  *
107117
107438
  * @returns Reference to `this` in order to allow method chaining
107118
107439
  */
@@ -107140,7 +107461,6 @@ declare namespace sap {
107140
107461
  *
107141
107462
  * Event raised if a filter item has been changed. reason can be added, updated or removed.
107142
107463
  *
107143
- * @experimental (since 1.56)
107144
107464
  *
107145
107465
  * @returns Reference to `this` in order to allow method chaining
107146
107466
  */
@@ -107306,7 +107626,6 @@ declare namespace sap {
107306
107626
  *
107307
107627
  * The passed function and listener object must match the ones used for event registration.
107308
107628
  *
107309
- * @experimental (since 1.56)
107310
107629
  *
107311
107630
  * @returns Reference to `this` in order to allow method chaining
107312
107631
  */
@@ -107374,7 +107693,6 @@ declare namespace sap {
107374
107693
  /**
107375
107694
  * Fires event {@link #event:filterItemChanged filterItemChanged} to attached listeners.
107376
107695
  *
107377
- * @experimental (since 1.56)
107378
107696
  * @ui5-protected Do not call from applications (only from related classes in the framework)
107379
107697
  *
107380
107698
  * @returns Reference to `this` in order to allow method chaining
@@ -118744,6 +119062,7 @@ declare namespace sap {
118744
119062
  *
118745
119063
  * Default value is `true`.
118746
119064
  *
119065
+ * @deprecated (since 1.130) - with no replacement.
118747
119066
  *
118748
119067
  * @returns Value of property `enabled`
118749
119068
  */
@@ -118926,6 +119245,7 @@ declare namespace sap {
118926
119245
  *
118927
119246
  * Default value is `true`.
118928
119247
  *
119248
+ * @deprecated (since 1.130) - with no replacement.
118929
119249
  *
118930
119250
  * @returns Reference to `this` in order to allow method chaining
118931
119251
  */
@@ -162992,8 +163312,6 @@ declare namespace sap {
162992
163312
  * undefined
162993
163313
  *
162994
163314
  * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'P13nConditionOperation'.
162995
- *
162996
- * @experimental (since 1.26) - !!! THIS TYPE IS ONLY FOR INTERNAL USE !!!
162997
163315
  */
162998
163316
  enum P13nConditionOperation {
162999
163317
  Ascending = "Ascending",
@@ -165477,6 +165795,22 @@ declare namespace sap {
165477
165795
  MaskInput
165478
165796
  >;
165479
165797
 
165798
+ /**
165799
+ * Event object of the MaskInput#submit event.
165800
+ */
165801
+ type MaskInput$SubmitEvent = sap.ui.base.Event<
165802
+ MaskInput$SubmitEventParameters,
165803
+ MaskInput
165804
+ >;
165805
+
165806
+ /**
165807
+ * Event object of the Menu#beforeClose event.
165808
+ */
165809
+ type Menu$BeforeCloseEvent = sap.ui.base.Event<
165810
+ Menu$BeforeCloseEventParameters,
165811
+ Menu
165812
+ >;
165813
+
165480
165814
  /**
165481
165815
  * Event object of the Menu#closed event.
165482
165816
  */
@@ -165916,8 +166250,6 @@ declare namespace sap {
165916
166250
 
165917
166251
  /**
165918
166252
  * Event object of the P13nFilterPanel#filterItemChanged event.
165919
- *
165920
- * @experimental (since 1.56)
165921
166253
  */
165922
166254
  type P13nFilterPanel$FilterItemChangedEvent = sap.ui.base.Event<
165923
166255
  P13nFilterPanel$FilterItemChangedEventParameters,
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.131.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.131.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.131.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {