@openui5/ts-types-esm 1.96.14 → 1.96.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types-esm",
3
- "version": "1.96.14",
3
+ "version": "1.96.16",
4
4
  "description": "OpenUI5 TypeScript Definitions - ES Modules",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
6
  * you may not use this file except in compliance with the License.
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -6039,8 +6039,13 @@ declare module "sap/m/Breadcrumbs" {
6039
6039
  * navigation path. The last three steps can be accessed as links directly, while the remaining links prior
6040
6040
  * to them are available in a drop-down menu.
6041
6041
  */
6042
- export default class Breadcrumbs extends Control implements IBreadcrumbs {
6042
+ export default class Breadcrumbs
6043
+ extends Control
6044
+ implements
6045
+ IBreadcrumbs,
6046
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
6043
6047
  __implements__sap_m_IBreadcrumbs: boolean;
6048
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
6044
6049
  /**
6045
6050
  * Constructor for a new `Breadcrumbs`.
6046
6051
  *
@@ -7244,8 +7249,13 @@ declare module "sap/m/Button" {
7244
7249
  * it and it changes its style to provide visual feedback to the user that it is pressed or hovered over
7245
7250
  * with the mouse cursor. A disabled `Button` appears inactive and cannot be pressed.
7246
7251
  */
7247
- export default class Button extends Control implements IFormContent {
7252
+ export default class Button
7253
+ extends Control
7254
+ implements
7255
+ IFormContent,
7256
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
7248
7257
  __implements__sap_ui_core_IFormContent: boolean;
7258
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
7249
7259
  /**
7250
7260
  * Constructor for a new `Button`.
7251
7261
  *
@@ -8882,9 +8892,13 @@ declare module "sap/m/CheckBox" {
8882
8892
  */
8883
8893
  export default class CheckBox
8884
8894
  extends Control
8885
- implements IFormContent, ISemanticFormContent {
8895
+ implements
8896
+ IFormContent,
8897
+ ISemanticFormContent,
8898
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
8886
8899
  __implements__sap_ui_core_IFormContent: boolean;
8887
8900
  __implements__sap_ui_core_ISemanticFormContent: boolean;
8901
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
8888
8902
  /**
8889
8903
  * Constructor for a new `CheckBox`.
8890
8904
  *
@@ -11542,7 +11556,10 @@ declare module "sap/m/ComboBox" {
11542
11556
  * truncated.
11543
11557
  * - On phone devices the combo box option list opens a dialog.
11544
11558
  */
11545
- export default class ComboBox extends ComboBoxBase {
11559
+ export default class ComboBox
11560
+ extends ComboBoxBase
11561
+ implements /* was: sap.m.IToolbarInteractiveControl */ Object {
11562
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
11546
11563
  /**
11547
11564
  * Constructor for a new ComboBox.
11548
11565
  *
@@ -14957,7 +14974,10 @@ declare module "sap/m/DateTimeInput" {
14957
14974
  * **Note:** This control should not be used any longer, instead please use the dedicated `sap.m.DatePicker`,
14958
14975
  * `sap.m.TimePicker` or `sap.m.DateTimePicker` control.
14959
14976
  */
14960
- export default class DateTimeInput extends Control {
14977
+ export default class DateTimeInput
14978
+ extends Control
14979
+ implements /* was: sap.m.IToolbarInteractiveControl */ Object {
14980
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
14961
14981
  /**
14962
14982
  * Constructor for a new DateTimeInput.
14963
14983
  *
@@ -24380,8 +24400,11 @@ declare module "sap/m/GenericTag" {
24380
24400
  */
24381
24401
  export default class GenericTag
24382
24402
  extends Control
24383
- implements IOverflowToolbarContent {
24403
+ implements
24404
+ IOverflowToolbarContent,
24405
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
24384
24406
  __implements__sap_m_IOverflowToolbarContent: boolean;
24407
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
24385
24408
  /**
24386
24409
  * Constructor for a new `sap.m.GenericTag`.
24387
24410
  *
@@ -30866,7 +30889,10 @@ declare module "sap/m/Input" {
30866
30889
  * - If a `selectedKey` is bound and the user types before the data is loaded, the user's input will
30867
30890
  * be overwritten by the binding update.
30868
30891
  */
30869
- export default class Input extends InputBase {
30892
+ export default class Input
30893
+ extends InputBase
30894
+ implements /* was: sap.m.IToolbarInteractiveControl */ Object {
30895
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
30870
30896
  /**
30871
30897
  * Constructor for a new `Input`.
30872
30898
  *
@@ -34229,10 +34255,15 @@ declare module "sap/m/Label" {
34229
34255
  */
34230
34256
  export default class Label
34231
34257
  extends Control
34232
- implements Label1, IShrinkable, IOverflowToolbarContent {
34258
+ implements
34259
+ Label1,
34260
+ IShrinkable,
34261
+ IOverflowToolbarContent,
34262
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
34233
34263
  __implements__sap_ui_core_Label: boolean;
34234
34264
  __implements__sap_ui_core_IShrinkable: boolean;
34235
34265
  __implements__sap_m_IOverflowToolbarContent: boolean;
34266
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
34236
34267
  /**
34237
34268
  * Constructor for a new Label.
34238
34269
  *
@@ -35101,10 +35132,15 @@ declare module "sap/m/Link" {
35101
35132
  */
35102
35133
  export default class Link
35103
35134
  extends Control
35104
- implements IShrinkable, IFormContent, ITitleContent {
35135
+ implements
35136
+ IShrinkable,
35137
+ IFormContent,
35138
+ ITitleContent,
35139
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
35105
35140
  __implements__sap_ui_core_IShrinkable: boolean;
35106
35141
  __implements__sap_ui_core_IFormContent: boolean;
35107
35142
  __implements__sap_ui_core_ITitleContent: boolean;
35143
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
35108
35144
  /**
35109
35145
  * Constructor for a new `Link`.
35110
35146
  *
@@ -39757,7 +39793,10 @@ declare module "sap/m/MenuButton" {
39757
39793
  /**
39758
39794
  * The `sap.m.MenuButton` control enables the user to show a hierarchical menu.
39759
39795
  */
39760
- export default class MenuButton extends Control {
39796
+ export default class MenuButton
39797
+ extends Control
39798
+ implements /* was: sap.m.IToolbarInteractiveControl */ Object {
39799
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
39761
39800
  /**
39762
39801
  * Constructor for a new MenuButton.
39763
39802
  *
@@ -54206,6 +54245,14 @@ declare module "sap/m/ObjectStatus" {
54206
54245
  * Default value is `ValueState.None`.
54207
54246
  */
54208
54247
  getState(): string;
54248
+ /**
54249
+ * @SINCE 1.110
54250
+ *
54251
+ * Gets current value of property {@link #getStateAnnouncementText stateAnnouncementText}.
54252
+ *
54253
+ * Еnables overriding of the default state announcement.
54254
+ */
54255
+ getStateAnnouncementText(): string;
54209
54256
  /**
54210
54257
  * Gets current value of property {@link #getText text}.
54211
54258
  *
@@ -54334,6 +54381,21 @@ declare module "sap/m/ObjectStatus" {
54334
54381
  */
54335
54382
  sValue: string
54336
54383
  ): this;
54384
+ /**
54385
+ * @SINCE 1.110
54386
+ *
54387
+ * Sets a new value for property {@link #getStateAnnouncementText stateAnnouncementText}.
54388
+ *
54389
+ * Еnables overriding of the default state announcement.
54390
+ *
54391
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
54392
+ */
54393
+ setStateAnnouncementText(
54394
+ /**
54395
+ * New value for property `stateAnnouncementText`
54396
+ */
54397
+ sStateAnnouncementText: string
54398
+ ): this;
54337
54399
  /**
54338
54400
  * Sets a new value for property {@link #getText text}.
54339
54401
  *
@@ -54443,6 +54505,13 @@ declare module "sap/m/ObjectStatus" {
54443
54505
  | (EmptyIndicatorMode | keyof typeof EmptyIndicatorMode)
54444
54506
  | PropertyBindingInfo;
54445
54507
 
54508
+ /**
54509
+ * @SINCE 1.110
54510
+ *
54511
+ * Еnables overriding of the default state announcement.
54512
+ */
54513
+ stateAnnouncementText?: string | PropertyBindingInfo;
54514
+
54446
54515
  /**
54447
54516
  * Association to controls / IDs, which describe this control (see WAI-ARIA attribute aria-describedby).
54448
54517
  */
@@ -54669,9 +54738,13 @@ declare module "sap/m/OverflowToolbarButton" {
54669
54738
  */
54670
54739
  export default class OverflowToolbarButton
54671
54740
  extends Button
54672
- implements IShellBar, IOverflowToolbarContent {
54741
+ implements
54742
+ IShellBar,
54743
+ IOverflowToolbarContent,
54744
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
54673
54745
  __implements__sap_f_IShellBar: boolean;
54674
54746
  __implements__sap_m_IOverflowToolbarContent: boolean;
54747
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
54675
54748
  /**
54676
54749
  * Constructor for a new `OverflowToolbarButton`.
54677
54750
  */
@@ -72884,8 +72957,13 @@ declare module "sap/m/RadioButton" {
72884
72957
  * to a new group and then `button2` is added to the same group, their TAB order and position in this group
72885
72958
  * will be `button1, button3, button2`.
72886
72959
  */
72887
- export default class RadioButton extends Control implements IFormContent {
72960
+ export default class RadioButton
72961
+ extends Control
72962
+ implements
72963
+ IFormContent,
72964
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
72888
72965
  __implements__sap_ui_core_IFormContent: boolean;
72966
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
72889
72967
  /**
72890
72968
  * Constructor for a new RadioButton.
72891
72969
  *
@@ -77304,9 +77382,13 @@ declare module "sap/m/SearchField" {
77304
77382
  */
77305
77383
  export default class SearchField
77306
77384
  extends Control
77307
- implements IFormContent, IShellBar {
77385
+ implements
77386
+ IFormContent,
77387
+ IShellBar,
77388
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
77308
77389
  __implements__sap_ui_core_IFormContent: boolean;
77309
77390
  __implements__sap_f_IShellBar: boolean;
77391
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
77310
77392
  /**
77311
77393
  * Constructor for a new SearchField.
77312
77394
  *
@@ -78344,9 +78426,13 @@ declare module "sap/m/SegmentedButton" {
78344
78426
  */
78345
78427
  export default class SegmentedButton
78346
78428
  extends Control
78347
- implements IFormContent, IOverflowToolbarContent {
78429
+ implements
78430
+ IFormContent,
78431
+ IOverflowToolbarContent,
78432
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
78348
78433
  __implements__sap_ui_core_IFormContent: boolean;
78349
78434
  __implements__sap_m_IOverflowToolbarContent: boolean;
78435
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
78350
78436
  /**
78351
78437
  * Constructor for a new `SegmentedButton`.
78352
78438
  *
@@ -79312,10 +79398,12 @@ declare module "sap/m/Select" {
79312
79398
  IFormContent,
79313
79399
  ISemanticFormContent,
79314
79400
  IOverflowToolbarContent,
79401
+ /* was: sap.m.IToolbarInteractiveControl */ Object,
79315
79402
  IShellBar {
79316
79403
  __implements__sap_ui_core_IFormContent: boolean;
79317
79404
  __implements__sap_ui_core_ISemanticFormContent: boolean;
79318
79405
  __implements__sap_m_IOverflowToolbarContent: boolean;
79406
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
79319
79407
  __implements__sap_f_IShellBar: boolean;
79320
79408
  /**
79321
79409
  * Constructor for a new `sap.m.Select`.
@@ -98167,9 +98255,13 @@ declare module "sap/m/Switch" {
98167
98255
  */
98168
98256
  export default class Switch
98169
98257
  extends Control
98170
- implements IFormContent, IOverflowToolbarContent {
98258
+ implements
98259
+ IFormContent,
98260
+ IOverflowToolbarContent,
98261
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
98171
98262
  __implements__sap_ui_core_IFormContent: boolean;
98172
98263
  __implements__sap_m_IOverflowToolbarContent: boolean;
98264
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
98173
98265
  /**
98174
98266
  * Constructor for a new Switch.
98175
98267
  *
@@ -102563,10 +102655,15 @@ declare module "sap/m/Text" {
102563
102655
  */
102564
102656
  export default class Text
102565
102657
  extends Control
102566
- implements IShrinkable, IFormContent, ISemanticFormContent {
102658
+ implements
102659
+ IShrinkable,
102660
+ IFormContent,
102661
+ ISemanticFormContent,
102662
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
102567
102663
  __implements__sap_ui_core_IShrinkable: boolean;
102568
102664
  __implements__sap_ui_core_IFormContent: boolean;
102569
102665
  __implements__sap_ui_core_ISemanticFormContent: boolean;
102666
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
102570
102667
  /**
102571
102668
  * Constructor for a new Text.
102572
102669
  *
@@ -105828,8 +105925,11 @@ declare module "sap/m/Title" {
105828
105925
  * - If the text is inside a text block.
105829
105926
  * - If The text is inside a form element.
105830
105927
  */
105831
- export default class Title extends Control implements IShrinkable {
105928
+ export default class Title
105929
+ extends Control
105930
+ implements IShrinkable, /* was: sap.m.IToolbarInteractiveControl */ Object {
105832
105931
  __implements__sap_ui_core_IShrinkable: boolean;
105932
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
105833
105933
  /**
105834
105934
  * Constructor for a new Title control.
105835
105935
  *
@@ -106287,7 +106387,10 @@ declare module "sap/m/ToggleButton" {
106287
106387
  * Clicking or tapping a `ToggleButton` changes its state to `pressed`. The button returns to its initial
106288
106388
  * state when the user clicks or taps it again.
106289
106389
  */
106290
- export default class ToggleButton extends Button {
106390
+ export default class ToggleButton
106391
+ extends Button
106392
+ implements /* was: sap.m.IToolbarInteractiveControl */ Object {
106393
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
106291
106394
  /**
106292
106395
  * Constructor for a new `ToggleButton`.
106293
106396
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.96.14
267
+ // For Library Version: 1.96.16
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -623,8 +623,11 @@ declare module "sap/ui/fl/variants/VariantManagement" {
623
623
  */
624
624
  export default class VariantManagement
625
625
  extends Control
626
- implements IOverflowToolbarContent {
626
+ implements
627
+ IOverflowToolbarContent,
628
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
627
629
  __implements__sap_m_IOverflowToolbarContent: boolean;
630
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
628
631
  /**
629
632
  * Constructor for a new `VariantManagement`.
630
633
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import UI5Element from "sap/ui/core/Element";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,8 +1,8 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
5
- * @SINCE 1.96.14
5
+ * @SINCE 1.96.16
6
6
  *
7
7
  * Defines the Audiences.
8
8
  */
@@ -21,7 +21,7 @@ declare module "sap/ui/support/library" {
21
21
  Internal = "Internal",
22
22
  }
23
23
  /**
24
- * @SINCE 1.96.14
24
+ * @SINCE 1.96.16
25
25
  *
26
26
  * Issue Categories.
27
27
  */
@@ -76,7 +76,7 @@ declare module "sap/ui/support/library" {
76
76
  Usage = "Usage",
77
77
  }
78
78
  /**
79
- * @SINCE 1.96.14
79
+ * @SINCE 1.96.16
80
80
  *
81
81
  * Analysis history formats.
82
82
  */
@@ -91,7 +91,7 @@ declare module "sap/ui/support/library" {
91
91
  String = "String",
92
92
  }
93
93
  /**
94
- * @SINCE 1.96.14
94
+ * @SINCE 1.96.16
95
95
  *
96
96
  * Defines severity types.
97
97
  */
@@ -110,7 +110,7 @@ declare module "sap/ui/support/library" {
110
110
  Medium = "Medium",
111
111
  }
112
112
  /**
113
- * @SINCE 1.96.14
113
+ * @SINCE 1.96.16
114
114
  *
115
115
  * Contains the available system presets.
116
116
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.14
1
+ // For Library Version: 1.96.16
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**