@openui5/ts-types 1.108.2 → 1.110.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/index.d.ts +1 -1
- package/types/sap.f.d.ts +333 -52
- package/types/sap.m.d.ts +4405 -747
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +4 -2
- package/types/sap.ui.commons.d.ts +86 -32
- package/types/sap.ui.core.d.ts +2989 -2599
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +102 -11
- package/types/sap.ui.integration.d.ts +122 -45
- package/types/sap.ui.layout.d.ts +12 -12
- package/types/sap.ui.mdc.d.ts +13 -7
- 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 +93 -91
- package/types/sap.ui.table.d.ts +66 -12
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +180 -322
- package/types/sap.ui.ux3.d.ts +7 -3
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +6 -6
- package/types/sap.ui.webc.main.d.ts +5 -5
- package/types/sap.uxap.d.ts +8 -29
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.110.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -193,7 +193,9 @@ declare namespace sap {
|
|
|
193
193
|
/**
|
|
194
194
|
* Object with getCompletions method
|
|
195
195
|
*/
|
|
196
|
-
oCustomCompleter:
|
|
196
|
+
oCustomCompleter: {
|
|
197
|
+
getCompletions: Function;
|
|
198
|
+
}
|
|
197
199
|
): void;
|
|
198
200
|
/**
|
|
199
201
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.codeeditor.CodeEditor`.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.110.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -1332,7 +1332,11 @@ declare namespace sap {
|
|
|
1332
1332
|
* JSON-like object which defines the position of the child control in the layout. The object is expected
|
|
1333
1333
|
* to have one or more from the attribute set top, bottom, left, right; each with a value of type sap.ui.core.CSSSize.
|
|
1334
1334
|
*/
|
|
1335
|
-
oPos?:
|
|
1335
|
+
oPos?: {
|
|
1336
|
+
left: string;
|
|
1337
|
+
|
|
1338
|
+
right: string;
|
|
1339
|
+
}
|
|
1336
1340
|
): this;
|
|
1337
1341
|
/**
|
|
1338
1342
|
* Adds element to the layout.
|
|
@@ -1343,7 +1347,7 @@ declare namespace sap {
|
|
|
1343
1347
|
/**
|
|
1344
1348
|
* Element which must be positioned in the layout.
|
|
1345
1349
|
*/
|
|
1346
|
-
oPosition:
|
|
1350
|
+
oPosition: sap.ui.core.Control
|
|
1347
1351
|
): this;
|
|
1348
1352
|
/**
|
|
1349
1353
|
* Destroys all aggregated position containers and their child controls. Returns 'this' to allow method
|
|
@@ -1447,7 +1451,11 @@ declare namespace sap {
|
|
|
1447
1451
|
* JSON-like object which defines the position of the child control in the layout. The object is expected
|
|
1448
1452
|
* to have one or more from the attribute set top, bottom, left, right; each with a value of type sap.ui.core.CSSSize.
|
|
1449
1453
|
*/
|
|
1450
|
-
oPos?:
|
|
1454
|
+
oPos?: {
|
|
1455
|
+
left: string;
|
|
1456
|
+
|
|
1457
|
+
right: string;
|
|
1458
|
+
}
|
|
1451
1459
|
): this;
|
|
1452
1460
|
/**
|
|
1453
1461
|
* Inserts element to the layout on a specific index.
|
|
@@ -1458,7 +1466,7 @@ declare namespace sap {
|
|
|
1458
1466
|
/**
|
|
1459
1467
|
* Element which must be positioned in the layout.
|
|
1460
1468
|
*/
|
|
1461
|
-
oPosition:
|
|
1469
|
+
oPosition: sap.ui.core.Control,
|
|
1462
1470
|
/**
|
|
1463
1471
|
* Index of the element which is to be positioned.
|
|
1464
1472
|
*/
|
|
@@ -1474,7 +1482,7 @@ declare namespace sap {
|
|
|
1474
1482
|
*
|
|
1475
1483
|
* @returns Removed elements.
|
|
1476
1484
|
*/
|
|
1477
|
-
removeAllPositions():
|
|
1485
|
+
removeAllPositions(): sap.ui.core.Control[];
|
|
1478
1486
|
/**
|
|
1479
1487
|
* Removes the given control and its corresponding position container from the aggregation named 'positions'.
|
|
1480
1488
|
*/
|
|
@@ -1483,7 +1491,7 @@ declare namespace sap {
|
|
|
1483
1491
|
* The content control to remove, its ID, or the index of the corresponding position container in the 'positions'
|
|
1484
1492
|
* aggregation.
|
|
1485
1493
|
*/
|
|
1486
|
-
|
|
1494
|
+
vContent: string | sap.ui.core.Control
|
|
1487
1495
|
): sap.ui.core.Control;
|
|
1488
1496
|
/**
|
|
1489
1497
|
* Removes element from the layout.
|
|
@@ -1495,7 +1503,7 @@ declare namespace sap {
|
|
|
1495
1503
|
* Element which must be removed from the positions element within the layout.
|
|
1496
1504
|
*/
|
|
1497
1505
|
vPosition: any
|
|
1498
|
-
):
|
|
1506
|
+
): sap.ui.core.Control;
|
|
1499
1507
|
/**
|
|
1500
1508
|
* Sets the `height` property.
|
|
1501
1509
|
*
|
|
@@ -1516,7 +1524,7 @@ declare namespace sap {
|
|
|
1516
1524
|
/**
|
|
1517
1525
|
* Object that contains settings for Horizontal scrolling.
|
|
1518
1526
|
*/
|
|
1519
|
-
oHorizontalScrolling:
|
|
1527
|
+
oHorizontalScrolling: sap.ui.core.Scrolling
|
|
1520
1528
|
): this;
|
|
1521
1529
|
/**
|
|
1522
1530
|
* Allows to set or change the position information of the given child control
|
|
@@ -1531,7 +1539,11 @@ declare namespace sap {
|
|
|
1531
1539
|
* JSON-like object which defines the position of the child control in the layout. The object is expected
|
|
1532
1540
|
* to have one or more from the attribute set top, bottom, left, right; each with a value of type sap.ui.core.CSSSize.
|
|
1533
1541
|
*/
|
|
1534
|
-
oPos?:
|
|
1542
|
+
oPos?: {
|
|
1543
|
+
left: string;
|
|
1544
|
+
|
|
1545
|
+
right: string;
|
|
1546
|
+
}
|
|
1535
1547
|
): boolean;
|
|
1536
1548
|
/**
|
|
1537
1549
|
* Sets the `verticalScrolling` property.
|
|
@@ -1542,7 +1554,7 @@ declare namespace sap {
|
|
|
1542
1554
|
/**
|
|
1543
1555
|
* Object that contains settings for Vertical scrolling.
|
|
1544
1556
|
*/
|
|
1545
|
-
oVerticalScrolling:
|
|
1557
|
+
oVerticalScrolling: sap.ui.core.Scrolling
|
|
1546
1558
|
): this;
|
|
1547
1559
|
/**
|
|
1548
1560
|
* Sets the `width` property.
|
|
@@ -1628,7 +1640,7 @@ declare namespace sap {
|
|
|
1628
1640
|
/**
|
|
1629
1641
|
* Adds controls to the specified area.
|
|
1630
1642
|
*
|
|
1631
|
-
* @returns `this`
|
|
1643
|
+
* @returns Reference to `this` for method chaining
|
|
1632
1644
|
*/
|
|
1633
1645
|
addContent(
|
|
1634
1646
|
/**
|
|
@@ -1673,7 +1685,7 @@ declare namespace sap {
|
|
|
1673
1685
|
/**
|
|
1674
1686
|
* Destroys the content of the specified area.
|
|
1675
1687
|
*
|
|
1676
|
-
* @returns `this`
|
|
1688
|
+
* @returns Reference to `this` for method chaining
|
|
1677
1689
|
*/
|
|
1678
1690
|
destroyContent(
|
|
1679
1691
|
/**
|
|
@@ -1730,7 +1742,7 @@ declare namespace sap {
|
|
|
1730
1742
|
* Specifies the area whose data will be returned
|
|
1731
1743
|
*/
|
|
1732
1744
|
sAreaId: sap.ui.commons.layout.BorderLayoutAreaTypes
|
|
1733
|
-
):
|
|
1745
|
+
): sap.ui.commons.BorderLayoutAreaData;
|
|
1734
1746
|
/**
|
|
1735
1747
|
* Gets content of aggregation {@link #getBegin begin}.
|
|
1736
1748
|
*
|
|
@@ -1822,7 +1834,7 @@ declare namespace sap {
|
|
|
1822
1834
|
/**
|
|
1823
1835
|
* Inserts controls to an area at a given index.
|
|
1824
1836
|
*
|
|
1825
|
-
* @returns `this`
|
|
1837
|
+
* @returns Reference to `this` for method chaining
|
|
1826
1838
|
*/
|
|
1827
1839
|
insertContent(
|
|
1828
1840
|
/**
|
|
@@ -1839,7 +1851,7 @@ declare namespace sap {
|
|
|
1839
1851
|
/**
|
|
1840
1852
|
* Removes all content from an area.
|
|
1841
1853
|
*
|
|
1842
|
-
* @returns `this`
|
|
1854
|
+
* @returns Reference to `this` for method chaining
|
|
1843
1855
|
*/
|
|
1844
1856
|
removeAllContent(
|
|
1845
1857
|
/**
|
|
@@ -1850,7 +1862,7 @@ declare namespace sap {
|
|
|
1850
1862
|
/**
|
|
1851
1863
|
* Removes the content with the given index from an area.
|
|
1852
1864
|
*
|
|
1853
|
-
* @returns `this`
|
|
1865
|
+
* @returns Reference to `this` for method chaining
|
|
1854
1866
|
*/
|
|
1855
1867
|
removeContent(
|
|
1856
1868
|
/**
|
|
@@ -1865,7 +1877,7 @@ declare namespace sap {
|
|
|
1865
1877
|
/**
|
|
1866
1878
|
* Sets the properties of the specified area with the given values.
|
|
1867
1879
|
*
|
|
1868
|
-
* @returns `this`
|
|
1880
|
+
* @returns Reference to `this` for method chaining
|
|
1869
1881
|
*/
|
|
1870
1882
|
setAreaData(
|
|
1871
1883
|
/**
|
|
@@ -1875,7 +1887,7 @@ declare namespace sap {
|
|
|
1875
1887
|
/**
|
|
1876
1888
|
* JSON-like object that contains the values to be set
|
|
1877
1889
|
*/
|
|
1878
|
-
oData:
|
|
1890
|
+
oData: sap.ui.commons.BorderLayoutAreaData
|
|
1879
1891
|
): this;
|
|
1880
1892
|
/**
|
|
1881
1893
|
* Sets the aggregated {@link #getBegin begin}.
|
|
@@ -9175,7 +9187,7 @@ declare namespace sap {
|
|
|
9175
9187
|
*
|
|
9176
9188
|
* @returns Current accessibility state of the control.
|
|
9177
9189
|
*/
|
|
9178
|
-
getAccessibilityInfo():
|
|
9190
|
+
getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
|
|
9179
9191
|
/**
|
|
9180
9192
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
9181
9193
|
* ariaDescribedBy}.
|
|
@@ -10717,9 +10729,9 @@ declare namespace sap {
|
|
|
10717
10729
|
* See:
|
|
10718
10730
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
10719
10731
|
*
|
|
10720
|
-
* @returns The accessibility
|
|
10732
|
+
* @returns The object contains the accessibility information of `sap.ui.commons.CheckBox`
|
|
10721
10733
|
*/
|
|
10722
|
-
getAccessibilityInfo():
|
|
10734
|
+
getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
|
|
10723
10735
|
/**
|
|
10724
10736
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
10725
10737
|
* ariaDescribedBy}.
|
|
@@ -11197,7 +11209,7 @@ declare namespace sap {
|
|
|
11197
11209
|
*
|
|
11198
11210
|
* @returns The accessibility info
|
|
11199
11211
|
*/
|
|
11200
|
-
getAccessibilityInfo():
|
|
11212
|
+
getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
|
|
11201
11213
|
/**
|
|
11202
11214
|
* Gets current value of property {@link #getDisplaySecondaryValues displaySecondaryValues}.
|
|
11203
11215
|
*
|
|
@@ -11545,7 +11557,7 @@ declare namespace sap {
|
|
|
11545
11557
|
*
|
|
11546
11558
|
* @returns Current accessibility state of the control
|
|
11547
11559
|
*/
|
|
11548
|
-
getAccessibilityInfo():
|
|
11560
|
+
getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
|
|
11549
11561
|
/**
|
|
11550
11562
|
* Gets current value of property {@link #getLocale locale}.
|
|
11551
11563
|
*
|
|
@@ -14166,7 +14178,7 @@ declare namespace sap {
|
|
|
14166
14178
|
*
|
|
14167
14179
|
* @returns Current accessibility state of the control.
|
|
14168
14180
|
*/
|
|
14169
|
-
getAccessibilityInfo():
|
|
14181
|
+
getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
|
|
14170
14182
|
/**
|
|
14171
14183
|
* Gets content of aggregation {@link #getContent content}.
|
|
14172
14184
|
*
|
|
@@ -14382,7 +14394,7 @@ declare namespace sap {
|
|
|
14382
14394
|
*
|
|
14383
14395
|
* @returns The accessibility info
|
|
14384
14396
|
*/
|
|
14385
|
-
getAccessibilityInfo():
|
|
14397
|
+
getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
|
|
14386
14398
|
/**
|
|
14387
14399
|
* Gets current value of property {@link #getDesign design}.
|
|
14388
14400
|
*
|
|
@@ -14835,9 +14847,9 @@ declare namespace sap {
|
|
|
14835
14847
|
* See:
|
|
14836
14848
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
14837
14849
|
*
|
|
14838
|
-
* @returns The accessibility
|
|
14850
|
+
* @returns The object contains the accessibility information of `sap.ui.commons.Link`
|
|
14839
14851
|
*/
|
|
14840
|
-
getAccessibilityInfo():
|
|
14852
|
+
getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
|
|
14841
14853
|
/**
|
|
14842
14854
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
14843
14855
|
* ariaDescribedBy}.
|
|
@@ -25687,7 +25699,7 @@ declare namespace sap {
|
|
|
25687
25699
|
*
|
|
25688
25700
|
* @returns Current accessibility state of the control
|
|
25689
25701
|
*/
|
|
25690
|
-
getAccessibilityInfo():
|
|
25702
|
+
getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
|
|
25691
25703
|
/**
|
|
25692
25704
|
* Gets current value of property {@link #getAccessibleRole accessibleRole}.
|
|
25693
25705
|
*
|
|
@@ -25743,7 +25755,7 @@ declare namespace sap {
|
|
|
25743
25755
|
*
|
|
25744
25756
|
* @returns an object representing the serialized focus information
|
|
25745
25757
|
*/
|
|
25746
|
-
getFocusInfo():
|
|
25758
|
+
getFocusInfo(): sap.ui.commons.FocusInfo;
|
|
25747
25759
|
/**
|
|
25748
25760
|
* Gets current value of property {@link #getHelpId helpId}.
|
|
25749
25761
|
*
|
|
@@ -26321,7 +26333,7 @@ declare namespace sap {
|
|
|
26321
26333
|
*
|
|
26322
26334
|
* @returns The accessibility info
|
|
26323
26335
|
*/
|
|
26324
|
-
getAccessibilityInfo():
|
|
26336
|
+
getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
|
|
26325
26337
|
/**
|
|
26326
26338
|
* Gets current value of property {@link #getAccessibleRole accessibleRole}.
|
|
26327
26339
|
*
|
|
@@ -26812,7 +26824,7 @@ declare namespace sap {
|
|
|
26812
26824
|
*
|
|
26813
26825
|
* @returns Current accessibility state of the control
|
|
26814
26826
|
*/
|
|
26815
|
-
getAccessibilityInfo():
|
|
26827
|
+
getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
|
|
26816
26828
|
/**
|
|
26817
26829
|
* Gets current value of property {@link #getPressed pressed}.
|
|
26818
26830
|
*
|
|
@@ -29254,6 +29266,34 @@ declare namespace sap {
|
|
|
29254
29266
|
*/
|
|
29255
29267
|
Unchecked = "Unchecked",
|
|
29256
29268
|
}
|
|
29269
|
+
/**
|
|
29270
|
+
* @SINCE 1.110
|
|
29271
|
+
*
|
|
29272
|
+
* The object contains the available parameters for BorderLayout's Area.
|
|
29273
|
+
*/
|
|
29274
|
+
type BorderLayoutAreaData = {
|
|
29275
|
+
/**
|
|
29276
|
+
* Defines the height or the width. Is not used when the area element is in Center.
|
|
29277
|
+
*/
|
|
29278
|
+
size?: sap.ui.core.CSSSize;
|
|
29279
|
+
/**
|
|
29280
|
+
* Invisible controls are not rendered.
|
|
29281
|
+
*/
|
|
29282
|
+
visible?: boolean;
|
|
29283
|
+
/**
|
|
29284
|
+
* The overflow mode of the area in horizontal direction as CSS value.
|
|
29285
|
+
*/
|
|
29286
|
+
overflowX?: string;
|
|
29287
|
+
/**
|
|
29288
|
+
* The overflow mode of the area in vertical direction as CSS value.
|
|
29289
|
+
*/
|
|
29290
|
+
overflowY?: string;
|
|
29291
|
+
/**
|
|
29292
|
+
* The content alignment as CSS value.
|
|
29293
|
+
*/
|
|
29294
|
+
contentAlign?: string;
|
|
29295
|
+
};
|
|
29296
|
+
|
|
29257
29297
|
/**
|
|
29258
29298
|
* @deprecated (since 1.48.0) - Use {@link sap.ui.unified.ColorPickerMode} instead.
|
|
29259
29299
|
*
|
|
@@ -29264,6 +29304,20 @@ declare namespace sap {
|
|
|
29264
29304
|
*/
|
|
29265
29305
|
type ColorPickerMode = sap.ui.unified.ColorPickerMode;
|
|
29266
29306
|
|
|
29307
|
+
/**
|
|
29308
|
+
* The object representing the serialized focus information.
|
|
29309
|
+
*/
|
|
29310
|
+
type FocusInfo = {
|
|
29311
|
+
/**
|
|
29312
|
+
* ID of the component
|
|
29313
|
+
*/
|
|
29314
|
+
id?: string;
|
|
29315
|
+
/**
|
|
29316
|
+
* User input
|
|
29317
|
+
*/
|
|
29318
|
+
userinput?: /* was: sap.ui.commons.UserInputInfo */ any | null;
|
|
29319
|
+
};
|
|
29320
|
+
|
|
29267
29321
|
/**
|
|
29268
29322
|
* @deprecated (since 1.38)
|
|
29269
29323
|
*
|