@openui5/ts-types 1.96.14 → 1.96.15
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 +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +79 -19
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.15
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -29007,8 +29007,11 @@ declare namespace sap {
|
|
|
29007
29007
|
*/
|
|
29008
29008
|
class Breadcrumbs
|
|
29009
29009
|
extends sap.ui.core.Control
|
|
29010
|
-
implements
|
|
29010
|
+
implements
|
|
29011
|
+
sap.m.IBreadcrumbs,
|
|
29012
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
29011
29013
|
__implements__sap_m_IBreadcrumbs: boolean;
|
|
29014
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
29012
29015
|
/**
|
|
29013
29016
|
* Constructor for a new `Breadcrumbs`.
|
|
29014
29017
|
*
|
|
@@ -29983,8 +29986,11 @@ declare namespace sap {
|
|
|
29983
29986
|
*/
|
|
29984
29987
|
class Button
|
|
29985
29988
|
extends sap.ui.core.Control
|
|
29986
|
-
implements
|
|
29989
|
+
implements
|
|
29990
|
+
sap.ui.core.IFormContent,
|
|
29991
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
29987
29992
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
29993
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
29988
29994
|
/**
|
|
29989
29995
|
* Constructor for a new `Button`.
|
|
29990
29996
|
*
|
|
@@ -31353,9 +31359,13 @@ declare namespace sap {
|
|
|
31353
31359
|
*/
|
|
31354
31360
|
class CheckBox
|
|
31355
31361
|
extends sap.ui.core.Control
|
|
31356
|
-
implements
|
|
31362
|
+
implements
|
|
31363
|
+
sap.ui.core.IFormContent,
|
|
31364
|
+
sap.ui.core.ISemanticFormContent,
|
|
31365
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
31357
31366
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
31358
31367
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
31368
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
31359
31369
|
/**
|
|
31360
31370
|
* Constructor for a new `CheckBox`.
|
|
31361
31371
|
*
|
|
@@ -33562,7 +33572,10 @@ declare namespace sap {
|
|
|
33562
33572
|
* truncated.
|
|
33563
33573
|
* - On phone devices the combo box option list opens a dialog.
|
|
33564
33574
|
*/
|
|
33565
|
-
class ComboBox
|
|
33575
|
+
class ComboBox
|
|
33576
|
+
extends sap.m.ComboBoxBase
|
|
33577
|
+
implements /* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
33578
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
33566
33579
|
/**
|
|
33567
33580
|
* Constructor for a new ComboBox.
|
|
33568
33581
|
*
|
|
@@ -36439,7 +36452,10 @@ declare namespace sap {
|
|
|
36439
36452
|
* **Note:** This control should not be used any longer, instead please use the dedicated `sap.m.DatePicker`,
|
|
36440
36453
|
* `sap.m.TimePicker` or `sap.m.DateTimePicker` control.
|
|
36441
36454
|
*/
|
|
36442
|
-
class DateTimeInput
|
|
36455
|
+
class DateTimeInput
|
|
36456
|
+
extends sap.ui.core.Control
|
|
36457
|
+
implements /* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
36458
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
36443
36459
|
/**
|
|
36444
36460
|
* Constructor for a new DateTimeInput.
|
|
36445
36461
|
*
|
|
@@ -44105,8 +44121,11 @@ declare namespace sap {
|
|
|
44105
44121
|
*/
|
|
44106
44122
|
class GenericTag
|
|
44107
44123
|
extends sap.ui.core.Control
|
|
44108
|
-
implements
|
|
44124
|
+
implements
|
|
44125
|
+
sap.m.IOverflowToolbarContent,
|
|
44126
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
44109
44127
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
44128
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
44110
44129
|
/**
|
|
44111
44130
|
* Constructor for a new `sap.m.GenericTag`.
|
|
44112
44131
|
*
|
|
@@ -49391,7 +49410,10 @@ declare namespace sap {
|
|
|
49391
49410
|
* - If a `selectedKey` is bound and the user types before the data is loaded, the user's input will
|
|
49392
49411
|
* be overwritten by the binding update.
|
|
49393
49412
|
*/
|
|
49394
|
-
class Input
|
|
49413
|
+
class Input
|
|
49414
|
+
extends sap.m.InputBase
|
|
49415
|
+
implements /* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
49416
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
49395
49417
|
/**
|
|
49396
49418
|
* Constructor for a new `Input`.
|
|
49397
49419
|
*
|
|
@@ -52046,10 +52068,12 @@ declare namespace sap {
|
|
|
52046
52068
|
implements
|
|
52047
52069
|
sap.ui.core.Label,
|
|
52048
52070
|
sap.ui.core.IShrinkable,
|
|
52049
|
-
sap.m.IOverflowToolbarContent
|
|
52071
|
+
sap.m.IOverflowToolbarContent,
|
|
52072
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
52050
52073
|
__implements__sap_ui_core_Label: boolean;
|
|
52051
52074
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
52052
52075
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
52076
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
52053
52077
|
/**
|
|
52054
52078
|
* Constructor for a new Label.
|
|
52055
52079
|
*
|
|
@@ -52764,10 +52788,12 @@ declare namespace sap {
|
|
|
52764
52788
|
implements
|
|
52765
52789
|
sap.ui.core.IShrinkable,
|
|
52766
52790
|
sap.ui.core.IFormContent,
|
|
52767
|
-
sap.ui.core.ITitleContent
|
|
52791
|
+
sap.ui.core.ITitleContent,
|
|
52792
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
52768
52793
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
52769
52794
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
52770
52795
|
__implements__sap_ui_core_ITitleContent: boolean;
|
|
52796
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
52771
52797
|
/**
|
|
52772
52798
|
* Constructor for a new `Link`.
|
|
52773
52799
|
*
|
|
@@ -56665,7 +56691,10 @@ declare namespace sap {
|
|
|
56665
56691
|
/**
|
|
56666
56692
|
* The `sap.m.MenuButton` control enables the user to show a hierarchical menu.
|
|
56667
56693
|
*/
|
|
56668
|
-
class MenuButton
|
|
56694
|
+
class MenuButton
|
|
56695
|
+
extends sap.ui.core.Control
|
|
56696
|
+
implements /* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
56697
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
56669
56698
|
/**
|
|
56670
56699
|
* Constructor for a new MenuButton.
|
|
56671
56700
|
*
|
|
@@ -68280,9 +68309,13 @@ declare namespace sap {
|
|
|
68280
68309
|
*/
|
|
68281
68310
|
class OverflowToolbarButton
|
|
68282
68311
|
extends sap.m.Button
|
|
68283
|
-
implements
|
|
68312
|
+
implements
|
|
68313
|
+
sap.f.IShellBar,
|
|
68314
|
+
sap.m.IOverflowToolbarContent,
|
|
68315
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
68284
68316
|
__implements__sap_f_IShellBar: boolean;
|
|
68285
68317
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
68318
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
68286
68319
|
/**
|
|
68287
68320
|
* Constructor for a new `OverflowToolbarButton`.
|
|
68288
68321
|
*/
|
|
@@ -82754,8 +82787,11 @@ declare namespace sap {
|
|
|
82754
82787
|
*/
|
|
82755
82788
|
class RadioButton
|
|
82756
82789
|
extends sap.ui.core.Control
|
|
82757
|
-
implements
|
|
82790
|
+
implements
|
|
82791
|
+
sap.ui.core.IFormContent,
|
|
82792
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
82758
82793
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
82794
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
82759
82795
|
/**
|
|
82760
82796
|
* Constructor for a new RadioButton.
|
|
82761
82797
|
*
|
|
@@ -85753,9 +85789,13 @@ declare namespace sap {
|
|
|
85753
85789
|
*/
|
|
85754
85790
|
class SearchField
|
|
85755
85791
|
extends sap.ui.core.Control
|
|
85756
|
-
implements
|
|
85792
|
+
implements
|
|
85793
|
+
sap.ui.core.IFormContent,
|
|
85794
|
+
sap.f.IShellBar,
|
|
85795
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
85757
85796
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
85758
85797
|
__implements__sap_f_IShellBar: boolean;
|
|
85798
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
85759
85799
|
/**
|
|
85760
85800
|
* Constructor for a new SearchField.
|
|
85761
85801
|
*
|
|
@@ -86626,9 +86666,13 @@ declare namespace sap {
|
|
|
86626
86666
|
*/
|
|
86627
86667
|
class SegmentedButton
|
|
86628
86668
|
extends sap.ui.core.Control
|
|
86629
|
-
implements
|
|
86669
|
+
implements
|
|
86670
|
+
sap.ui.core.IFormContent,
|
|
86671
|
+
sap.m.IOverflowToolbarContent,
|
|
86672
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
86630
86673
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
86631
86674
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
86675
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
86632
86676
|
/**
|
|
86633
86677
|
* Constructor for a new `SegmentedButton`.
|
|
86634
86678
|
*
|
|
@@ -87436,10 +87480,12 @@ declare namespace sap {
|
|
|
87436
87480
|
sap.ui.core.IFormContent,
|
|
87437
87481
|
sap.ui.core.ISemanticFormContent,
|
|
87438
87482
|
sap.m.IOverflowToolbarContent,
|
|
87483
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object,
|
|
87439
87484
|
sap.f.IShellBar {
|
|
87440
87485
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
87441
87486
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
87442
87487
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
87488
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
87443
87489
|
__implements__sap_f_IShellBar: boolean;
|
|
87444
87490
|
/**
|
|
87445
87491
|
* Constructor for a new `sap.m.Select`.
|
|
@@ -98785,9 +98831,13 @@ declare namespace sap {
|
|
|
98785
98831
|
*/
|
|
98786
98832
|
class Switch
|
|
98787
98833
|
extends sap.ui.core.Control
|
|
98788
|
-
implements
|
|
98834
|
+
implements
|
|
98835
|
+
sap.ui.core.IFormContent,
|
|
98836
|
+
sap.m.IOverflowToolbarContent,
|
|
98837
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
98789
98838
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
98790
98839
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
98840
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
98791
98841
|
/**
|
|
98792
98842
|
* Constructor for a new Switch.
|
|
98793
98843
|
*
|
|
@@ -102489,10 +102539,12 @@ declare namespace sap {
|
|
|
102489
102539
|
implements
|
|
102490
102540
|
sap.ui.core.IShrinkable,
|
|
102491
102541
|
sap.ui.core.IFormContent,
|
|
102492
|
-
sap.ui.core.ISemanticFormContent
|
|
102542
|
+
sap.ui.core.ISemanticFormContent,
|
|
102543
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
102493
102544
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
102494
102545
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
102495
102546
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
102547
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
102496
102548
|
/**
|
|
102497
102549
|
* Constructor for a new Text.
|
|
102498
102550
|
*
|
|
@@ -105225,8 +105277,13 @@ declare namespace sap {
|
|
|
105225
105277
|
* - If the text is inside a text block.
|
|
105226
105278
|
* - If The text is inside a form element.
|
|
105227
105279
|
*/
|
|
105228
|
-
class Title
|
|
105280
|
+
class Title
|
|
105281
|
+
extends sap.ui.core.Control
|
|
105282
|
+
implements
|
|
105283
|
+
sap.ui.core.IShrinkable,
|
|
105284
|
+
/* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
105229
105285
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
105286
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
105230
105287
|
/**
|
|
105231
105288
|
* Constructor for a new Title control.
|
|
105232
105289
|
*
|
|
@@ -105577,7 +105634,10 @@ declare namespace sap {
|
|
|
105577
105634
|
* Clicking or tapping a `ToggleButton` changes its state to `pressed`. The button returns to its initial
|
|
105578
105635
|
* state when the user clicks or taps it again.
|
|
105579
105636
|
*/
|
|
105580
|
-
class ToggleButton
|
|
105637
|
+
class ToggleButton
|
|
105638
|
+
extends sap.m.Button
|
|
105639
|
+
implements /* was: sap.m.IToolbarInteractiveControl */ Object {
|
|
105640
|
+
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
105581
105641
|
/**
|
|
105582
105642
|
* Constructor for a new `ToggleButton`.
|
|
105583
105643
|
*
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.15
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -238,7 +238,7 @@ declare namespace sap {
|
|
|
238
238
|
static getType(): string;
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
|
-
* @SINCE 1.96.
|
|
241
|
+
* @SINCE 1.96.15
|
|
242
242
|
*
|
|
243
243
|
* Defines the Audiences.
|
|
244
244
|
*/
|
|
@@ -257,7 +257,7 @@ declare namespace sap {
|
|
|
257
257
|
Internal = "Internal",
|
|
258
258
|
}
|
|
259
259
|
/**
|
|
260
|
-
* @SINCE 1.96.
|
|
260
|
+
* @SINCE 1.96.15
|
|
261
261
|
*
|
|
262
262
|
* Issue Categories.
|
|
263
263
|
*/
|
|
@@ -312,7 +312,7 @@ declare namespace sap {
|
|
|
312
312
|
Usage = "Usage",
|
|
313
313
|
}
|
|
314
314
|
/**
|
|
315
|
-
* @SINCE 1.96.
|
|
315
|
+
* @SINCE 1.96.15
|
|
316
316
|
*
|
|
317
317
|
* Analysis history formats.
|
|
318
318
|
*/
|
|
@@ -327,7 +327,7 @@ declare namespace sap {
|
|
|
327
327
|
String = "String",
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
|
-
* @SINCE 1.96.
|
|
330
|
+
* @SINCE 1.96.15
|
|
331
331
|
*
|
|
332
332
|
* Defines severity types.
|
|
333
333
|
*/
|
|
@@ -346,7 +346,7 @@ declare namespace sap {
|
|
|
346
346
|
Medium = "Medium",
|
|
347
347
|
}
|
|
348
348
|
/**
|
|
349
|
-
* @SINCE 1.96.
|
|
349
|
+
* @SINCE 1.96.15
|
|
350
350
|
*
|
|
351
351
|
* Contains the available system presets.
|
|
352
352
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED