@openui5/ts-types 1.112.2 → 1.113.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/package.json +1 -1
- package/types/sap.f.d.ts +75 -38
- package/types/sap.m.d.ts +1854 -85
- package/types/sap.tnt.d.ts +7 -1
- package/types/sap.ui.codeeditor.d.ts +5 -1
- package/types/sap.ui.commons.d.ts +197 -1
- package/types/sap.ui.core.d.ts +1508 -518
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +13 -1
- package/types/sap.ui.integration.d.ts +52 -19
- package/types/sap.ui.layout.d.ts +43 -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 +5 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +63 -7
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +308 -4
- package/types/sap.ui.ux3.d.ts +147 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +63 -1
- package/types/sap.ui.webc.main.d.ts +189 -5
- package/types/sap.uxap.d.ts +26 -1
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.113.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -568,6 +568,8 @@ declare namespace sap {
|
|
|
568
568
|
oListener?: object
|
|
569
569
|
): this;
|
|
570
570
|
/**
|
|
571
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
572
|
+
*
|
|
571
573
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
572
574
|
*
|
|
573
575
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -579,6 +581,8 @@ declare namespace sap {
|
|
|
579
581
|
mParameters?: object
|
|
580
582
|
): this;
|
|
581
583
|
/**
|
|
584
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
585
|
+
*
|
|
582
586
|
* Fires event {@link #event:initialized initialized} to attached listeners.
|
|
583
587
|
*
|
|
584
588
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -590,6 +594,8 @@ declare namespace sap {
|
|
|
590
594
|
mParameters?: object
|
|
591
595
|
): this;
|
|
592
596
|
/**
|
|
597
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
598
|
+
*
|
|
593
599
|
* Fires event {@link #event:manage manage} to attached listeners.
|
|
594
600
|
*
|
|
595
601
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -619,6 +625,8 @@ declare namespace sap {
|
|
|
619
625
|
}
|
|
620
626
|
): this;
|
|
621
627
|
/**
|
|
628
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
629
|
+
*
|
|
622
630
|
* Fires event {@link #event:save save} to attached listeners.
|
|
623
631
|
*
|
|
624
632
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -661,6 +669,8 @@ declare namespace sap {
|
|
|
661
669
|
}
|
|
662
670
|
): this;
|
|
663
671
|
/**
|
|
672
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
673
|
+
*
|
|
664
674
|
* Fires event {@link #event:select select} to attached listeners.
|
|
665
675
|
*
|
|
666
676
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -782,6 +792,8 @@ declare namespace sap {
|
|
|
782
792
|
*/
|
|
783
793
|
getModified(): boolean;
|
|
784
794
|
/**
|
|
795
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
796
|
+
*
|
|
785
797
|
* Required by the {@link sap.m.IOverflowToolbarContent} interface. Registers invalidations event which
|
|
786
798
|
* is fired when width of the control is changed.
|
|
787
799
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.113.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -604,18 +604,16 @@ declare namespace sap {
|
|
|
604
604
|
*/
|
|
605
605
|
mode?: string;
|
|
606
606
|
/**
|
|
607
|
-
* The HTTP method. Possible values are "GET", "POST".
|
|
607
|
+
* The HTTP method. Possible values are "GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS", and "HEAD".
|
|
608
608
|
*/
|
|
609
609
|
method?: string;
|
|
610
610
|
/**
|
|
611
|
-
* The request parameters. If the method is "POST"
|
|
612
|
-
* body of the request.
|
|
611
|
+
* The request parameters. If the HTTP method is "POST", "PUT", "PATCH", or "DELETE" the parameters will
|
|
612
|
+
* be put as key/value pairs into the body of the request.
|
|
613
613
|
*/
|
|
614
614
|
parameters?: object;
|
|
615
615
|
/**
|
|
616
|
-
*
|
|
617
|
-
* "jsonp". Note: Complex Binding is not supported when a dataType is provided. Serialization of the response
|
|
618
|
-
* to an object is up to the developer.
|
|
616
|
+
* Deprecated. Use the correct Accept headers and correct Content-Type header in the response.
|
|
619
617
|
*/
|
|
620
618
|
dataType?: string;
|
|
621
619
|
/**
|
|
@@ -1396,6 +1394,7 @@ declare namespace sap {
|
|
|
1396
1394
|
/**
|
|
1397
1395
|
* @EXPERIMENTAL (since 1.64) - Disclaimer: this event is in a beta state - incompatible API changes may
|
|
1398
1396
|
* be done before its official public release. Use at your own discretion.
|
|
1397
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1399
1398
|
*
|
|
1400
1399
|
* Fires event {@link #event:action action} to attached listeners.
|
|
1401
1400
|
*
|
|
@@ -1429,6 +1428,7 @@ declare namespace sap {
|
|
|
1429
1428
|
): boolean;
|
|
1430
1429
|
/**
|
|
1431
1430
|
* @EXPERIMENTAL (since 1.96)
|
|
1431
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1432
1432
|
*
|
|
1433
1433
|
* Fires event {@link #event:configurationChange configurationChange} to attached listeners.
|
|
1434
1434
|
*
|
|
@@ -1446,8 +1446,8 @@ declare namespace sap {
|
|
|
1446
1446
|
* ```javascript
|
|
1447
1447
|
*
|
|
1448
1448
|
* {
|
|
1449
|
-
*
|
|
1450
|
-
*
|
|
1449
|
+
* "/sap.card/configuration/filters/shipper/value": "key3",
|
|
1450
|
+
* "/sap.card/configuration/filters/item/value": "key2",
|
|
1451
1451
|
* }
|
|
1452
1452
|
* ```
|
|
1453
1453
|
*/
|
|
@@ -1455,6 +1455,8 @@ declare namespace sap {
|
|
|
1455
1455
|
}
|
|
1456
1456
|
): this;
|
|
1457
1457
|
/**
|
|
1458
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1459
|
+
*
|
|
1458
1460
|
* Fires event {@link #event:manifestApplied manifestApplied} to attached listeners.
|
|
1459
1461
|
*
|
|
1460
1462
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1467,6 +1469,7 @@ declare namespace sap {
|
|
|
1467
1469
|
): this;
|
|
1468
1470
|
/**
|
|
1469
1471
|
* @EXPERIMENTAL (since 1.72)
|
|
1472
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1470
1473
|
*
|
|
1471
1474
|
* Fires event {@link #event:manifestReady manifestReady} to attached listeners.
|
|
1472
1475
|
*
|
|
@@ -1480,6 +1483,7 @@ declare namespace sap {
|
|
|
1480
1483
|
): this;
|
|
1481
1484
|
/**
|
|
1482
1485
|
* @EXPERIMENTAL (since 1.107)
|
|
1486
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1483
1487
|
*
|
|
1484
1488
|
* Fires event {@link #event:stateChanged stateChanged} to attached listeners.
|
|
1485
1489
|
*
|
|
@@ -1555,6 +1559,8 @@ declare namespace sap {
|
|
|
1555
1559
|
*/
|
|
1556
1560
|
getDesign(): sap.ui.integration.CardDesign;
|
|
1557
1561
|
/**
|
|
1562
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1563
|
+
*
|
|
1558
1564
|
* Returns the DOM Element that should get the focus.
|
|
1559
1565
|
*
|
|
1560
1566
|
* @returns Returns the DOM Element that should get the focus
|
|
@@ -1827,18 +1833,16 @@ declare namespace sap {
|
|
|
1827
1833
|
*/
|
|
1828
1834
|
mode?: string;
|
|
1829
1835
|
/**
|
|
1830
|
-
* The HTTP method. Possible values are "GET", "POST".
|
|
1836
|
+
* The HTTP method. Possible values are "GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS", and "HEAD".
|
|
1831
1837
|
*/
|
|
1832
1838
|
method?: string;
|
|
1833
1839
|
/**
|
|
1834
|
-
* The request parameters. If the method is "POST"
|
|
1835
|
-
* body of the request.
|
|
1840
|
+
* The request parameters. If the HTTP method is "POST", "PUT", "PATCH", or "DELETE" the parameters will
|
|
1841
|
+
* be put as key/value pairs into the body of the request.
|
|
1836
1842
|
*/
|
|
1837
1843
|
parameters?: object;
|
|
1838
1844
|
/**
|
|
1839
|
-
*
|
|
1840
|
-
* "jsonp". Note: Complex Binding is not supported when a dataType is provided. Serialization of the response
|
|
1841
|
-
* to an object is up to the developer.
|
|
1845
|
+
* Deprecated. Use the correct Accept headers and correct Content-Type header in the response.
|
|
1842
1846
|
*/
|
|
1843
1847
|
dataType?: string;
|
|
1844
1848
|
/**
|
|
@@ -2415,6 +2419,8 @@ declare namespace sap {
|
|
|
2415
2419
|
oListener?: object
|
|
2416
2420
|
): this;
|
|
2417
2421
|
/**
|
|
2422
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2423
|
+
*
|
|
2418
2424
|
* Fires event {@link #event:press press} to attached listeners.
|
|
2419
2425
|
*
|
|
2420
2426
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2832,9 +2838,34 @@ declare namespace sap {
|
|
|
2832
2838
|
*/
|
|
2833
2839
|
oListener?: object
|
|
2834
2840
|
): this;
|
|
2841
|
+
/**
|
|
2842
|
+
* @EXPERIMENTAL (since 1.113) - The API might change.
|
|
2843
|
+
*
|
|
2844
|
+
* Starts the process of fetching a resource from the network, returning a promise that is fulfilled once
|
|
2845
|
+
* the response is available. Use this method to override the default behavior when fetching network resources.
|
|
2846
|
+
* Mimics the browser native Fetch API.
|
|
2847
|
+
*
|
|
2848
|
+
* @returns A `Promise` that resolves to a `Response` object.
|
|
2849
|
+
*/
|
|
2850
|
+
fetch(
|
|
2851
|
+
/**
|
|
2852
|
+
* This defines the resource that you wish to fetch.
|
|
2853
|
+
*/
|
|
2854
|
+
sResource: string,
|
|
2855
|
+
/**
|
|
2856
|
+
* An object containing any custom settings that you want to apply to the request.
|
|
2857
|
+
*/
|
|
2858
|
+
mOptions: object,
|
|
2859
|
+
/**
|
|
2860
|
+
* The map of request settings defined in the card manifest. Use this only for reading, they can not be
|
|
2861
|
+
* modified.
|
|
2862
|
+
*/
|
|
2863
|
+
mRequestSettings: object
|
|
2864
|
+
): Promise<Response>;
|
|
2835
2865
|
/**
|
|
2836
2866
|
* @EXPERIMENTAL (since 1.75) - Disclaimer: this event is in a beta state - incompatible API changes may
|
|
2837
2867
|
* be done before its official public release. Use at your own discretion.
|
|
2868
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2838
2869
|
*
|
|
2839
2870
|
* Fires event {@link #event:action action} to attached listeners.
|
|
2840
2871
|
*
|
|
@@ -3319,6 +3350,7 @@ declare namespace sap {
|
|
|
3319
3350
|
/**
|
|
3320
3351
|
* @EXPERIMENTAL (since 1.75) - Disclaimer: this event is in a beta state - incompatible API changes may
|
|
3321
3352
|
* be done before its official public release. Use at your own discretion.
|
|
3353
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
3322
3354
|
*
|
|
3323
3355
|
* Fires event {@link #event:action action} to attached listeners.
|
|
3324
3356
|
*
|
|
@@ -3356,6 +3388,7 @@ declare namespace sap {
|
|
|
3356
3388
|
): boolean;
|
|
3357
3389
|
/**
|
|
3358
3390
|
* @EXPERIMENTAL (since 1.96)
|
|
3391
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
3359
3392
|
*
|
|
3360
3393
|
* Fires event {@link #event:cardConfigurationChange cardConfigurationChange} to attached listeners.
|
|
3361
3394
|
*
|
|
@@ -3377,8 +3410,8 @@ declare namespace sap {
|
|
|
3377
3410
|
* ```javascript
|
|
3378
3411
|
*
|
|
3379
3412
|
* {
|
|
3380
|
-
*
|
|
3381
|
-
*
|
|
3413
|
+
* "/sap.card/configuration/filters/shipper/value": "key3",
|
|
3414
|
+
* "/sap.card/configuration/filters/item/value": "key2"
|
|
3382
3415
|
* }
|
|
3383
3416
|
* ```
|
|
3384
3417
|
*/
|
|
@@ -3387,6 +3420,7 @@ declare namespace sap {
|
|
|
3387
3420
|
): this;
|
|
3388
3421
|
/**
|
|
3389
3422
|
* @EXPERIMENTAL (since 1.107)
|
|
3423
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
3390
3424
|
*
|
|
3391
3425
|
* Fires event {@link #event:cardStateChanged cardStateChanged} to attached listeners.
|
|
3392
3426
|
*
|
|
@@ -3405,6 +3439,7 @@ declare namespace sap {
|
|
|
3405
3439
|
): this;
|
|
3406
3440
|
/**
|
|
3407
3441
|
* @EXPERIMENTAL (since 1.91)
|
|
3442
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
3408
3443
|
*
|
|
3409
3444
|
* Fires event {@link #event:message message} to attached listeners.
|
|
3410
3445
|
*
|
|
@@ -3846,8 +3881,6 @@ declare namespace sap {
|
|
|
3846
3881
|
|
|
3847
3882
|
"sap/ui/integration/editor/Editor": undefined;
|
|
3848
3883
|
|
|
3849
|
-
"sap/ui/integration/editor/EditorResourceBundles": undefined;
|
|
3850
|
-
|
|
3851
3884
|
"sap/ui/integration/editor/Extension": undefined;
|
|
3852
3885
|
|
|
3853
3886
|
"sap/ui/integration/editor/fields/BaseField": undefined;
|
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.113.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -662,6 +662,8 @@ declare namespace sap {
|
|
|
662
662
|
*/
|
|
663
663
|
getGridColumnGap(): sap.ui.core.CSSSize;
|
|
664
664
|
/**
|
|
665
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
666
|
+
*
|
|
665
667
|
* Implements IGridConfigurable interface
|
|
666
668
|
*
|
|
667
669
|
* @returns An array with the DOM elements
|
|
@@ -680,6 +682,8 @@ declare namespace sap {
|
|
|
680
682
|
*/
|
|
681
683
|
getGridGap(): sap.ui.layout.cssgrid.CSSGridGapShortHand;
|
|
682
684
|
/**
|
|
685
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
686
|
+
*
|
|
683
687
|
* Returns the layout configuration of the `CSSGrid`.
|
|
684
688
|
*
|
|
685
689
|
* @returns The grid layout
|
|
@@ -1325,6 +1329,8 @@ declare namespace sap {
|
|
|
1325
1329
|
*/
|
|
1326
1330
|
static getMetadata(): sap.ui.base.ManagedObjectMetadata;
|
|
1327
1331
|
/**
|
|
1332
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1333
|
+
*
|
|
1328
1334
|
* Returns a gridTemplateColumns value based on boxWidth and boxMinWidth properties
|
|
1329
1335
|
*
|
|
1330
1336
|
* @returns A value for gridTemplateColumns property
|
|
@@ -1735,6 +1741,8 @@ declare namespace sap {
|
|
|
1735
1741
|
*/
|
|
1736
1742
|
static getMetadata(): sap.ui.base.ManagedObjectMetadata;
|
|
1737
1743
|
/**
|
|
1744
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1745
|
+
*
|
|
1738
1746
|
* Removes all display:grid styles from the provided HTML element
|
|
1739
1747
|
*/
|
|
1740
1748
|
_removeGridLayout(
|
|
@@ -1744,6 +1752,8 @@ declare namespace sap {
|
|
|
1744
1752
|
oElement: HTMLElement
|
|
1745
1753
|
): void;
|
|
1746
1754
|
/**
|
|
1755
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1756
|
+
*
|
|
1747
1757
|
* Sets all display:grid styles to the provided HTML element
|
|
1748
1758
|
*/
|
|
1749
1759
|
_setGridLayout(
|
|
@@ -1775,6 +1785,8 @@ declare namespace sap {
|
|
|
1775
1785
|
*/
|
|
1776
1786
|
isResponsive(): boolean;
|
|
1777
1787
|
/**
|
|
1788
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1789
|
+
*
|
|
1778
1790
|
* Hook function for the Grid's onAfterRendering
|
|
1779
1791
|
*/
|
|
1780
1792
|
onGridAfterRendering(
|
|
@@ -1784,6 +1796,8 @@ declare namespace sap {
|
|
|
1784
1796
|
oGrid: sap.ui.layout.cssgrid.IGridConfigurable
|
|
1785
1797
|
): void;
|
|
1786
1798
|
/**
|
|
1799
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1800
|
+
*
|
|
1787
1801
|
* Hook function for the Grid's resize. Will be called if the grid layout is responsive.
|
|
1788
1802
|
*/
|
|
1789
1803
|
onGridResize(
|
|
@@ -1966,6 +1980,8 @@ declare namespace sap {
|
|
|
1966
1980
|
oListener?: object
|
|
1967
1981
|
): this;
|
|
1968
1982
|
/**
|
|
1983
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1984
|
+
*
|
|
1969
1985
|
* Fires event {@link #event:layoutChange layoutChange} to attached listeners.
|
|
1970
1986
|
*
|
|
1971
1987
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2661,6 +2677,8 @@ declare namespace sap {
|
|
|
2661
2677
|
oListener?: object
|
|
2662
2678
|
): this;
|
|
2663
2679
|
/**
|
|
2680
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2681
|
+
*
|
|
2664
2682
|
* Fires event {@link #event:layoutChange layoutChange} to attached listeners.
|
|
2665
2683
|
*
|
|
2666
2684
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -4705,6 +4723,7 @@ declare namespace sap {
|
|
|
4705
4723
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4706
4724
|
/**
|
|
4707
4725
|
* @SINCE 1.74.0
|
|
4726
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
4708
4727
|
*
|
|
4709
4728
|
* Sets the editable state of the `FormContainer`.
|
|
4710
4729
|
*
|
|
@@ -5062,6 +5081,7 @@ declare namespace sap {
|
|
|
5062
5081
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
5063
5082
|
/**
|
|
5064
5083
|
* @SINCE 1.74.0
|
|
5084
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
5065
5085
|
*
|
|
5066
5086
|
* Sets the editable state of the `FormElement`.
|
|
5067
5087
|
*
|
|
@@ -5164,6 +5184,8 @@ declare namespace sap {
|
|
|
5164
5184
|
iIndex: int
|
|
5165
5185
|
): this;
|
|
5166
5186
|
/**
|
|
5187
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
5188
|
+
*
|
|
5167
5189
|
* Labels inside of a Form must be invalidated if "editable" changed on Form
|
|
5168
5190
|
*/
|
|
5169
5191
|
invalidateLabel(): void;
|
|
@@ -10054,6 +10076,7 @@ declare namespace sap {
|
|
|
10054
10076
|
): this;
|
|
10055
10077
|
/**
|
|
10056
10078
|
* @SINCE 1.32
|
|
10079
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
10057
10080
|
*
|
|
10058
10081
|
* Fires event {@link #event:breakpointChanged breakpointChanged} to attached listeners.
|
|
10059
10082
|
*
|
|
@@ -10830,6 +10853,8 @@ declare namespace sap {
|
|
|
10830
10853
|
*/
|
|
10831
10854
|
destroyContent(): this;
|
|
10832
10855
|
/**
|
|
10856
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
10857
|
+
*
|
|
10833
10858
|
* Returns the `Grid` accessibility information.
|
|
10834
10859
|
* See:
|
|
10835
10860
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
@@ -12126,6 +12151,8 @@ declare namespace sap {
|
|
|
12126
12151
|
*/
|
|
12127
12152
|
destroyContent(): this;
|
|
12128
12153
|
/**
|
|
12154
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12155
|
+
*
|
|
12129
12156
|
* See:
|
|
12130
12157
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
12131
12158
|
*
|
|
@@ -12364,6 +12391,8 @@ declare namespace sap {
|
|
|
12364
12391
|
oListener?: object
|
|
12365
12392
|
): this;
|
|
12366
12393
|
/**
|
|
12394
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12395
|
+
*
|
|
12367
12396
|
* Fires event {@link #event:resize resize} to attached listeners.
|
|
12368
12397
|
*
|
|
12369
12398
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -13394,6 +13423,7 @@ declare namespace sap {
|
|
|
13394
13423
|
* @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
|
|
13395
13424
|
* feature. It is declared as deprecated because the API might change in case the need for this is high
|
|
13396
13425
|
* enough to make it part of the official Splitter interface
|
|
13426
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13397
13427
|
*
|
|
13398
13428
|
* Disables the resize handler for this control, this leads to an automatic resize of the contents whenever
|
|
13399
13429
|
* the control changes its size. The resize handler is enabled in every control instance by default. For
|
|
@@ -13407,6 +13437,8 @@ declare namespace sap {
|
|
|
13407
13437
|
bTemporarily?: boolean
|
|
13408
13438
|
): void;
|
|
13409
13439
|
/**
|
|
13440
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13441
|
+
*
|
|
13410
13442
|
* Disables the resizing of the Splitter contents via keyboard. This changes the Splitter bars to non-focusable
|
|
13411
13443
|
* elements.
|
|
13412
13444
|
*/
|
|
@@ -13415,6 +13447,7 @@ declare namespace sap {
|
|
|
13415
13447
|
* @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
|
|
13416
13448
|
* feature. It is declared as deprecated because the API might change in case the need for this is high
|
|
13417
13449
|
* enough to make it part of the official Splitter interface
|
|
13450
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13418
13451
|
*
|
|
13419
13452
|
* Disables recalculation and resize of the splitter contents while dragging the splitter bar. This means
|
|
13420
13453
|
* that the contents are resized only once after moving the splitter bar.
|
|
@@ -13424,6 +13457,7 @@ declare namespace sap {
|
|
|
13424
13457
|
* @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
|
|
13425
13458
|
* feature. It is declared as deprecated because the API might change in case the need for this is high
|
|
13426
13459
|
* enough to make it part of the official Splitter interface
|
|
13460
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13427
13461
|
*
|
|
13428
13462
|
* Enables the resize handler for this control, this leads to an automatic resize of the contents whenever
|
|
13429
13463
|
* the control changes its size. The resize handler is enabled in every control instance by default. For
|
|
@@ -13436,6 +13470,8 @@ declare namespace sap {
|
|
|
13436
13470
|
bTemporarily?: boolean
|
|
13437
13471
|
): void;
|
|
13438
13472
|
/**
|
|
13473
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13474
|
+
*
|
|
13439
13475
|
* Enables the resizing of the Splitter contents via keyboard. This makes the Splitter bars focusable elements.
|
|
13440
13476
|
*/
|
|
13441
13477
|
enableKeyboardSupport(): void;
|
|
@@ -13443,12 +13479,15 @@ declare namespace sap {
|
|
|
13443
13479
|
* @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
|
|
13444
13480
|
* feature. It is declared as deprecated because the API might change in case the need for this is high
|
|
13445
13481
|
* enough to make it part of the official Splitter interface
|
|
13482
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13446
13483
|
*
|
|
13447
13484
|
* Enables recalculation and resize of the splitter contents while dragging the splitter bar. This means
|
|
13448
13485
|
* that the contents are resized several times per second when moving the splitter bar.
|
|
13449
13486
|
*/
|
|
13450
13487
|
enableLiveResize(): void;
|
|
13451
13488
|
/**
|
|
13489
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13490
|
+
*
|
|
13452
13491
|
* Fires event {@link #event:resize resize} to attached listeners.
|
|
13453
13492
|
*
|
|
13454
13493
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -13477,6 +13516,7 @@ declare namespace sap {
|
|
|
13477
13516
|
* @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
|
|
13478
13517
|
* feature. It is declared as deprecated because the API might change in case the need for this is high
|
|
13479
13518
|
* enough to make it part of the official Splitter interface
|
|
13519
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13480
13520
|
*
|
|
13481
13521
|
* Returns the current actual content sizes as pixel value - these values can change with every resize.
|
|
13482
13522
|
*
|
|
@@ -13875,6 +13915,8 @@ declare namespace sap {
|
|
|
13875
13915
|
*/
|
|
13876
13916
|
destroyContent(): this;
|
|
13877
13917
|
/**
|
|
13918
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13919
|
+
*
|
|
13878
13920
|
* See:
|
|
13879
13921
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
13880
13922
|
*
|
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.
|
|
1
|
+
// For Library Version: 1.113.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -239,6 +239,8 @@ declare namespace sap {
|
|
|
239
239
|
oListener?: object
|
|
240
240
|
): this;
|
|
241
241
|
/**
|
|
242
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
243
|
+
*
|
|
242
244
|
* Fires event {@link #event:press press} to attached listeners.
|
|
243
245
|
*
|
|
244
246
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -564,6 +566,8 @@ declare namespace sap {
|
|
|
564
566
|
oListener?: object
|
|
565
567
|
): this;
|
|
566
568
|
/**
|
|
569
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
570
|
+
*
|
|
567
571
|
* Fires event {@link #event:press press} to attached listeners.
|
|
568
572
|
*
|
|
569
573
|
* @returns Reference to `this` in order to allow method chaining
|