@openui5/ts-types 1.105.0 → 1.106.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 +80 -4
- package/types/sap.m.d.ts +387 -103
- package/types/sap.tnt.d.ts +3 -3
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +31 -31
- package/types/sap.ui.core.d.ts +426 -225
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -3
- package/types/sap.ui.integration.d.ts +64 -33
- package/types/sap.ui.layout.d.ts +7 -7
- package/types/sap.ui.mdc.d.ts +3 -1
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +5 -5
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +26 -8
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +16 -16
- package/types/sap.ui.ux3.d.ts +11 -11
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -28
- package/types/sap.ui.webc.main.d.ts +132 -104
- package/types/sap.uxap.d.ts +41 -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.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -656,7 +656,7 @@ declare namespace sap {
|
|
|
656
656
|
*
|
|
657
657
|
* @returns Key of the currently selected variant. In case the model is not yet set `null` will be returned.
|
|
658
658
|
*/
|
|
659
|
-
getCurrentVariantKey(): string;
|
|
659
|
+
getCurrentVariantKey(): string | null;
|
|
660
660
|
/**
|
|
661
661
|
* Gets current value of property {@link #getDisplayTextForExecuteOnSelectionForStandardVariant displayTextForExecuteOnSelectionForStandardVariant}.
|
|
662
662
|
*
|
|
@@ -807,7 +807,7 @@ declare namespace sap {
|
|
|
807
807
|
* The for to be removed or its index or ID
|
|
808
808
|
*/
|
|
809
809
|
vFor: int | sap.ui.core.ID | sap.ui.core.Control
|
|
810
|
-
): sap.ui.core.ID;
|
|
810
|
+
): sap.ui.core.ID | null;
|
|
811
811
|
/**
|
|
812
812
|
* Sets the new selected variant.
|
|
813
813
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -700,11 +700,20 @@ declare namespace sap {
|
|
|
700
700
|
parameters?: object;
|
|
701
701
|
}
|
|
702
702
|
): void;
|
|
703
|
+
/**
|
|
704
|
+
* @EXPERIMENTAL
|
|
705
|
+
*
|
|
706
|
+
* Causes all of the controls within the Card that support validation to validate their data.
|
|
707
|
+
*
|
|
708
|
+
* @returns if all of the controls validated successfully; otherwise, false
|
|
709
|
+
*/
|
|
710
|
+
validateControls(): boolean;
|
|
703
711
|
}
|
|
704
712
|
|
|
705
713
|
interface $CardSettings extends sap.f.$CardBaseSettings {
|
|
706
714
|
/**
|
|
707
|
-
* Optional property which can be used by the host to reference the card.
|
|
715
|
+
* Optional property which can be used by the host to reference the card. It will be forwarded to any children
|
|
716
|
+
* cards. Does not affect the card behavior.
|
|
708
717
|
*/
|
|
709
718
|
referenceId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
710
719
|
|
|
@@ -758,14 +767,18 @@ declare namespace sap {
|
|
|
758
767
|
*
|
|
759
768
|
* This can be a list of flexibility changes generated during designtime.
|
|
760
769
|
*
|
|
761
|
-
* Each
|
|
762
|
-
*
|
|
770
|
+
* Each item in the array represents a separate level of changes. For example, the first item might be created
|
|
771
|
+
* by an administrator, the second by a page administrator and the third by the end user.
|
|
772
|
+
*
|
|
773
|
+
* The order of the items is the order in which the changes will be merged on top of each other. So the
|
|
774
|
+
* last item will overwrite the previous items where the paths match.
|
|
763
775
|
*
|
|
764
776
|
* Example:
|
|
765
777
|
* ```javascript
|
|
766
778
|
*
|
|
767
779
|
* [
|
|
768
780
|
* {
|
|
781
|
+
* // Administrator
|
|
769
782
|
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
770
783
|
* "/sap.card/content/maxItems": 10,
|
|
771
784
|
* "texts": {
|
|
@@ -775,13 +788,13 @@ declare namespace sap {
|
|
|
775
788
|
* }
|
|
776
789
|
* },
|
|
777
790
|
* {
|
|
778
|
-
*
|
|
779
|
-
* "/sap.card/content/maxItems":
|
|
780
|
-
*
|
|
781
|
-
*
|
|
782
|
-
*
|
|
783
|
-
*
|
|
784
|
-
*
|
|
791
|
+
* // Page administrator
|
|
792
|
+
* "/sap.card/content/maxItems": 5
|
|
793
|
+
* },
|
|
794
|
+
* {
|
|
795
|
+
* // End user
|
|
796
|
+
* "/sap.card/header/title": "Title by End User",
|
|
797
|
+
* "/sap.card/content/maxItems": 8
|
|
785
798
|
* }
|
|
786
799
|
* ]
|
|
787
800
|
* ```
|
|
@@ -1436,14 +1449,18 @@ declare namespace sap {
|
|
|
1436
1449
|
*
|
|
1437
1450
|
* This can be a list of flexibility changes generated during designtime.
|
|
1438
1451
|
*
|
|
1439
|
-
* Each
|
|
1440
|
-
*
|
|
1452
|
+
* Each item in the array represents a separate level of changes. For example, the first item might be created
|
|
1453
|
+
* by an administrator, the second by a page administrator and the third by the end user.
|
|
1454
|
+
*
|
|
1455
|
+
* The order of the items is the order in which the changes will be merged on top of each other. So the
|
|
1456
|
+
* last item will overwrite the previous items where the paths match.
|
|
1441
1457
|
*
|
|
1442
1458
|
* Example:
|
|
1443
1459
|
* ```javascript
|
|
1444
1460
|
*
|
|
1445
1461
|
* [
|
|
1446
1462
|
* {
|
|
1463
|
+
* // Administrator
|
|
1447
1464
|
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
1448
1465
|
* "/sap.card/content/maxItems": 10,
|
|
1449
1466
|
* "texts": {
|
|
@@ -1453,13 +1470,13 @@ declare namespace sap {
|
|
|
1453
1470
|
* }
|
|
1454
1471
|
* },
|
|
1455
1472
|
* {
|
|
1456
|
-
*
|
|
1457
|
-
* "/sap.card/content/maxItems":
|
|
1458
|
-
*
|
|
1459
|
-
*
|
|
1460
|
-
*
|
|
1461
|
-
*
|
|
1462
|
-
*
|
|
1473
|
+
* // Page administrator
|
|
1474
|
+
* "/sap.card/content/maxItems": 5
|
|
1475
|
+
* },
|
|
1476
|
+
* {
|
|
1477
|
+
* // End user
|
|
1478
|
+
* "/sap.card/header/title": "Title by End User",
|
|
1479
|
+
* "/sap.card/content/maxItems": 8
|
|
1463
1480
|
* }
|
|
1464
1481
|
* ]
|
|
1465
1482
|
* ```
|
|
@@ -1486,7 +1503,8 @@ declare namespace sap {
|
|
|
1486
1503
|
/**
|
|
1487
1504
|
* Gets current value of property {@link #getReferenceId referenceId}.
|
|
1488
1505
|
*
|
|
1489
|
-
* Optional property which can be used by the host to reference the card.
|
|
1506
|
+
* Optional property which can be used by the host to reference the card. It will be forwarded to any children
|
|
1507
|
+
* cards. Does not affect the card behavior.
|
|
1490
1508
|
*
|
|
1491
1509
|
* Default value is `empty string`.
|
|
1492
1510
|
*
|
|
@@ -1754,14 +1772,18 @@ declare namespace sap {
|
|
|
1754
1772
|
*
|
|
1755
1773
|
* This can be a list of flexibility changes generated during designtime.
|
|
1756
1774
|
*
|
|
1757
|
-
* Each
|
|
1758
|
-
*
|
|
1775
|
+
* Each item in the array represents a separate level of changes. For example, the first item might be created
|
|
1776
|
+
* by an administrator, the second by a page administrator and the third by the end user.
|
|
1777
|
+
*
|
|
1778
|
+
* The order of the items is the order in which the changes will be merged on top of each other. So the
|
|
1779
|
+
* last item will overwrite the previous items where the paths match.
|
|
1759
1780
|
*
|
|
1760
1781
|
* Example:
|
|
1761
1782
|
* ```javascript
|
|
1762
1783
|
*
|
|
1763
1784
|
* [
|
|
1764
1785
|
* {
|
|
1786
|
+
* // Administrator
|
|
1765
1787
|
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
1766
1788
|
* "/sap.card/content/maxItems": 10,
|
|
1767
1789
|
* "texts": {
|
|
@@ -1771,13 +1793,13 @@ declare namespace sap {
|
|
|
1771
1793
|
* }
|
|
1772
1794
|
* },
|
|
1773
1795
|
* {
|
|
1774
|
-
*
|
|
1775
|
-
* "/sap.card/content/maxItems":
|
|
1776
|
-
*
|
|
1777
|
-
*
|
|
1778
|
-
*
|
|
1779
|
-
*
|
|
1780
|
-
*
|
|
1796
|
+
* // Page administrator
|
|
1797
|
+
* "/sap.card/content/maxItems": 5
|
|
1798
|
+
* },
|
|
1799
|
+
* {
|
|
1800
|
+
* // End user
|
|
1801
|
+
* "/sap.card/header/title": "Title by End User",
|
|
1802
|
+
* "/sap.card/content/maxItems": 8
|
|
1781
1803
|
* }
|
|
1782
1804
|
* ]
|
|
1783
1805
|
* ```
|
|
@@ -1796,7 +1818,8 @@ declare namespace sap {
|
|
|
1796
1818
|
/**
|
|
1797
1819
|
* Sets a new value for property {@link #getReferenceId referenceId}.
|
|
1798
1820
|
*
|
|
1799
|
-
* Optional property which can be used by the host to reference the card.
|
|
1821
|
+
* Optional property which can be used by the host to reference the card. It will be forwarded to any children
|
|
1822
|
+
* cards. Does not affect the card behavior.
|
|
1800
1823
|
*
|
|
1801
1824
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1802
1825
|
*
|
|
@@ -1875,6 +1898,14 @@ declare namespace sap {
|
|
|
1875
1898
|
parameters?: object;
|
|
1876
1899
|
}
|
|
1877
1900
|
): void;
|
|
1901
|
+
/**
|
|
1902
|
+
* @EXPERIMENTAL
|
|
1903
|
+
*
|
|
1904
|
+
* Causes all of the controls within the Card that support validation to validate their data.
|
|
1905
|
+
*
|
|
1906
|
+
* @returns if all of the controls validated successfully; otherwise, false
|
|
1907
|
+
*/
|
|
1908
|
+
validateControls(): boolean;
|
|
1878
1909
|
}
|
|
1879
1910
|
}
|
|
1880
1911
|
|
|
@@ -3321,6 +3352,8 @@ declare namespace sap {
|
|
|
3321
3352
|
|
|
3322
3353
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor": undefined;
|
|
3323
3354
|
|
|
3355
|
+
"sap/ui/integration/designtime/baseEditor/propertyEditor/codeEditor/CodeEditor": undefined;
|
|
3356
|
+
|
|
3324
3357
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor": undefined;
|
|
3325
3358
|
|
|
3326
3359
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor": undefined;
|
|
@@ -3355,8 +3388,6 @@ declare namespace sap {
|
|
|
3355
3388
|
|
|
3356
3389
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor": undefined;
|
|
3357
3390
|
|
|
3358
|
-
"sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor": undefined;
|
|
3359
|
-
|
|
3360
3391
|
"sap/ui/integration/designtime/baseEditor/PropertyEditors": undefined;
|
|
3361
3392
|
|
|
3362
3393
|
"sap/ui/integration/designtime/baseEditor/util/unset": undefined;
|
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -4543,7 +4543,7 @@ declare namespace sap {
|
|
|
4543
4543
|
* The ariaLabelledBy to be removed or its index or ID
|
|
4544
4544
|
*/
|
|
4545
4545
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
4546
|
-
): sap.ui.core.ID;
|
|
4546
|
+
): sap.ui.core.ID | null;
|
|
4547
4547
|
/**
|
|
4548
4548
|
* Removes a formContainer from the aggregation {@link #getFormContainers formContainers}.
|
|
4549
4549
|
*
|
|
@@ -4901,7 +4901,7 @@ declare namespace sap {
|
|
|
4901
4901
|
* The ariaLabelledBy to be removed or its index or ID
|
|
4902
4902
|
*/
|
|
4903
4903
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
4904
|
-
): sap.ui.core.ID;
|
|
4904
|
+
): sap.ui.core.ID | null;
|
|
4905
4905
|
/**
|
|
4906
4906
|
* Removes a formElement from the aggregation {@link #getFormElements formElements}.
|
|
4907
4907
|
*
|
|
@@ -7206,7 +7206,7 @@ declare namespace sap {
|
|
|
7206
7206
|
* The ariaLabelledBy to be removed or its index or ID
|
|
7207
7207
|
*/
|
|
7208
7208
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
7209
|
-
): sap.ui.core.ID;
|
|
7209
|
+
): sap.ui.core.ID | null;
|
|
7210
7210
|
/**
|
|
7211
7211
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
7212
7212
|
*
|
|
@@ -9768,7 +9768,7 @@ declare namespace sap {
|
|
|
9768
9768
|
* The accentCell to be removed or its index or ID
|
|
9769
9769
|
*/
|
|
9770
9770
|
vAccentCell: int | sap.ui.core.ID | sap.ui.layout.BlockLayoutCell
|
|
9771
|
-
): sap.ui.core.ID;
|
|
9771
|
+
): sap.ui.core.ID | null;
|
|
9772
9772
|
/**
|
|
9773
9773
|
* @SINCE 1.42
|
|
9774
9774
|
*
|
|
@@ -10989,7 +10989,7 @@ declare namespace sap {
|
|
|
10989
10989
|
* The ariaLabelledBy to be removed or its index or ID
|
|
10990
10990
|
*/
|
|
10991
10991
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
10992
|
-
): sap.ui.core.ID;
|
|
10992
|
+
): sap.ui.core.ID | null;
|
|
10993
10993
|
/**
|
|
10994
10994
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
10995
10995
|
*
|
|
@@ -12635,7 +12635,7 @@ declare namespace sap {
|
|
|
12635
12635
|
* The ariaLabelledBy to be removed or its index or ID
|
|
12636
12636
|
*/
|
|
12637
12637
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
12638
|
-
): sap.ui.core.ID;
|
|
12638
|
+
): sap.ui.core.ID | null;
|
|
12639
12639
|
/**
|
|
12640
12640
|
* Removes content. This function needs to be overridden to prevent any rendering while some content is
|
|
12641
12641
|
* still being added.
|
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -196,6 +196,8 @@ declare namespace sap {
|
|
|
196
196
|
|
|
197
197
|
"sap/ui/mdc/table/TableTypeBase": undefined;
|
|
198
198
|
|
|
199
|
+
"sap/ui/mdc/table/V4AnalyticsPropertyHelper": undefined;
|
|
200
|
+
|
|
199
201
|
"sap/ui/mdc/TableDelegate": undefined;
|
|
200
202
|
|
|
201
203
|
"sap/ui/mdc/util/DateUtil": undefined;
|
package/types/sap.ui.rta.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/rta/api/startAdaptation" {
|
|
4
4
|
/**
|
|
@@ -112,6 +112,8 @@ declare namespace sap {
|
|
|
112
112
|
|
|
113
113
|
"sap/ui/rta/service/Selection": undefined;
|
|
114
114
|
|
|
115
|
+
"sap/ui/rta/service/SupportTools": undefined;
|
|
116
|
+
|
|
115
117
|
"sap/ui/rta/util/ReloadManager": undefined;
|
|
116
118
|
}
|
|
117
119
|
}
|
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -323,7 +323,7 @@ declare namespace sap {
|
|
|
323
323
|
* The ariaDescribedBy to be removed or its index or ID
|
|
324
324
|
*/
|
|
325
325
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
326
|
-
): sap.ui.core.ID;
|
|
326
|
+
): sap.ui.core.ID | null;
|
|
327
327
|
/**
|
|
328
328
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
329
329
|
*
|
|
@@ -334,7 +334,7 @@ declare namespace sap {
|
|
|
334
334
|
* The ariaLabelledBy to be removed or its index or ID
|
|
335
335
|
*/
|
|
336
336
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
337
|
-
): sap.ui.core.ID;
|
|
337
|
+
): sap.ui.core.ID | null;
|
|
338
338
|
/**
|
|
339
339
|
* Sets a new value for property {@link #getColor color}.
|
|
340
340
|
*
|
|
@@ -614,7 +614,7 @@ declare namespace sap {
|
|
|
614
614
|
* The ariaDescribedBy to be removed or its index or ID
|
|
615
615
|
*/
|
|
616
616
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
617
|
-
): sap.ui.core.ID;
|
|
617
|
+
): sap.ui.core.ID | null;
|
|
618
618
|
/**
|
|
619
619
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
620
620
|
*
|
|
@@ -625,7 +625,7 @@ declare namespace sap {
|
|
|
625
625
|
* The ariaLabelledBy to be removed or its index or ID
|
|
626
626
|
*/
|
|
627
627
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
628
|
-
): sap.ui.core.ID;
|
|
628
|
+
): sap.ui.core.ID | null;
|
|
629
629
|
/**
|
|
630
630
|
* Property setter for the Percentage, which determines the height of the vertical bar. Values higher than
|
|
631
631
|
* 100 will be displayed as 100%, values lower than zero will be displayed as 0%. A new rendering is not
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -1677,12 +1677,18 @@ declare namespace sap {
|
|
|
1677
1677
|
columnMove?: (oEvent: sap.ui.base.Event) => void;
|
|
1678
1678
|
|
|
1679
1679
|
/**
|
|
1680
|
-
* fired
|
|
1680
|
+
* This event is fired before a sort order is applied to a column, if the table is sorted via {@link sap.ui.table.Table#sort}
|
|
1681
|
+
* call or user interaction with the column header.
|
|
1682
|
+
*
|
|
1683
|
+
* Sorters that are directly applied to the table binding will not fire this event.
|
|
1681
1684
|
*/
|
|
1682
1685
|
sort?: (oEvent: sap.ui.base.Event) => void;
|
|
1683
1686
|
|
|
1684
1687
|
/**
|
|
1685
|
-
* fired
|
|
1688
|
+
* This event is fired before a filter is applied to a column, if the table is filtered via {@link sap.ui.table.Table#filter}
|
|
1689
|
+
* call or user interaction with the column header.
|
|
1690
|
+
*
|
|
1691
|
+
* Filters that are directly applied to the table binding will not fire this event.
|
|
1686
1692
|
*/
|
|
1687
1693
|
filter?: (oEvent: sap.ui.base.Event) => void;
|
|
1688
1694
|
|
|
@@ -5315,7 +5321,10 @@ declare namespace sap {
|
|
|
5315
5321
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5316
5322
|
* otherwise it will be bound to this `sap.ui.table.Table` itself.
|
|
5317
5323
|
*
|
|
5318
|
-
* fired
|
|
5324
|
+
* This event is fired before a filter is applied to a column, if the table is filtered via {@link sap.ui.table.Table#filter}
|
|
5325
|
+
* call or user interaction with the column header.
|
|
5326
|
+
*
|
|
5327
|
+
* Filters that are directly applied to the table binding will not fire this event.
|
|
5319
5328
|
*
|
|
5320
5329
|
* @returns Reference to `this` in order to allow method chaining
|
|
5321
5330
|
*/
|
|
@@ -5340,7 +5349,10 @@ declare namespace sap {
|
|
|
5340
5349
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5341
5350
|
* otherwise it will be bound to this `sap.ui.table.Table` itself.
|
|
5342
5351
|
*
|
|
5343
|
-
* fired
|
|
5352
|
+
* This event is fired before a filter is applied to a column, if the table is filtered via {@link sap.ui.table.Table#filter}
|
|
5353
|
+
* call or user interaction with the column header.
|
|
5354
|
+
*
|
|
5355
|
+
* Filters that are directly applied to the table binding will not fire this event.
|
|
5344
5356
|
*
|
|
5345
5357
|
* @returns Reference to `this` in order to allow method chaining
|
|
5346
5358
|
*/
|
|
@@ -5617,7 +5629,10 @@ declare namespace sap {
|
|
|
5617
5629
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5618
5630
|
* otherwise it will be bound to this `sap.ui.table.Table` itself.
|
|
5619
5631
|
*
|
|
5620
|
-
* fired
|
|
5632
|
+
* This event is fired before a sort order is applied to a column, if the table is sorted via {@link sap.ui.table.Table#sort}
|
|
5633
|
+
* call or user interaction with the column header.
|
|
5634
|
+
*
|
|
5635
|
+
* Sorters that are directly applied to the table binding will not fire this event.
|
|
5621
5636
|
*
|
|
5622
5637
|
* @returns Reference to `this` in order to allow method chaining
|
|
5623
5638
|
*/
|
|
@@ -5642,7 +5657,10 @@ declare namespace sap {
|
|
|
5642
5657
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5643
5658
|
* otherwise it will be bound to this `sap.ui.table.Table` itself.
|
|
5644
5659
|
*
|
|
5645
|
-
* fired
|
|
5660
|
+
* This event is fired before a sort order is applied to a column, if the table is sorted via {@link sap.ui.table.Table#sort}
|
|
5661
|
+
* call or user interaction with the column header.
|
|
5662
|
+
*
|
|
5663
|
+
* Sorters that are directly applied to the table binding will not fire this event.
|
|
5646
5664
|
*
|
|
5647
5665
|
* @returns Reference to `this` in order to allow method chaining
|
|
5648
5666
|
*/
|
|
@@ -7300,7 +7318,7 @@ declare namespace sap {
|
|
|
7300
7318
|
* The ariaLabelledBy to be removed or its index or ID
|
|
7301
7319
|
*/
|
|
7302
7320
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
7303
|
-
): sap.ui.core.ID;
|
|
7321
|
+
): sap.ui.core.ID | null;
|
|
7304
7322
|
/**
|
|
7305
7323
|
* Removes a column from the aggregation {@link #getColumns columns}.
|
|
7306
7324
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -2600,7 +2600,7 @@ declare namespace sap {
|
|
|
2600
2600
|
* The ariaLabelledBy to be removed or its index or ID
|
|
2601
2601
|
*/
|
|
2602
2602
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
2603
|
-
): sap.ui.core.ID;
|
|
2603
|
+
): sap.ui.core.ID | null;
|
|
2604
2604
|
/**
|
|
2605
2605
|
* @SINCE 1.38.0
|
|
2606
2606
|
*
|
|
@@ -3250,7 +3250,7 @@ declare namespace sap {
|
|
|
3250
3250
|
* The ariaLabelledBy to be removed or its index or ID
|
|
3251
3251
|
*/
|
|
3252
3252
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
3253
|
-
): sap.ui.core.ID;
|
|
3253
|
+
): sap.ui.core.ID | null;
|
|
3254
3254
|
/**
|
|
3255
3255
|
* @SINCE 1.74
|
|
3256
3256
|
*
|
|
@@ -3871,7 +3871,7 @@ declare namespace sap {
|
|
|
3871
3871
|
* The ariaLabelledBy to be removed or its index or ID
|
|
3872
3872
|
*/
|
|
3873
3873
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
3874
|
-
): sap.ui.core.ID;
|
|
3874
|
+
): sap.ui.core.ID | null;
|
|
3875
3875
|
/**
|
|
3876
3876
|
* Removes a selectedDate from the aggregation {@link #getSelectedDates selectedDates}.
|
|
3877
3877
|
*
|
|
@@ -4484,7 +4484,7 @@ declare namespace sap {
|
|
|
4484
4484
|
* The ariaLabelledBy to be removed or its index or ID
|
|
4485
4485
|
*/
|
|
4486
4486
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
4487
|
-
): sap.ui.core.ID;
|
|
4487
|
+
): sap.ui.core.ID | null;
|
|
4488
4488
|
/**
|
|
4489
4489
|
* Removes a selectedDate from the aggregation {@link #getSelectedDates selectedDates}.
|
|
4490
4490
|
*
|
|
@@ -8250,7 +8250,7 @@ declare namespace sap {
|
|
|
8250
8250
|
* The ariaLabelledBy to be removed or its index or ID
|
|
8251
8251
|
*/
|
|
8252
8252
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
8253
|
-
): sap.ui.core.ID;
|
|
8253
|
+
): sap.ui.core.ID | null;
|
|
8254
8254
|
/**
|
|
8255
8255
|
* @SINCE 1.38.0
|
|
8256
8256
|
*
|
|
@@ -10037,7 +10037,7 @@ declare namespace sap {
|
|
|
10037
10037
|
* The ariaLabelledBy to be removed or its index or ID
|
|
10038
10038
|
*/
|
|
10039
10039
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
10040
|
-
): sap.ui.core.ID;
|
|
10040
|
+
): sap.ui.core.ID | null;
|
|
10041
10041
|
/**
|
|
10042
10042
|
* Removes a selectedDate from the aggregation {@link #getSelectedDates selectedDates}.
|
|
10043
10043
|
*
|
|
@@ -11074,7 +11074,7 @@ declare namespace sap {
|
|
|
11074
11074
|
* The ariaLabelledBy to be removed or its index or ID
|
|
11075
11075
|
*/
|
|
11076
11076
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
11077
|
-
): sap.ui.core.ID;
|
|
11077
|
+
): sap.ui.core.ID | null;
|
|
11078
11078
|
/**
|
|
11079
11079
|
* Removes a intervalHeader from the aggregation {@link #getIntervalHeaders intervalHeaders}.
|
|
11080
11080
|
*
|
|
@@ -12070,7 +12070,7 @@ declare namespace sap {
|
|
|
12070
12070
|
* The ariaLabelledBy to be removed or its index or ID
|
|
12071
12071
|
*/
|
|
12072
12072
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
12073
|
-
): sap.ui.core.ID;
|
|
12073
|
+
): sap.ui.core.ID | null;
|
|
12074
12074
|
/**
|
|
12075
12075
|
* Removes a selectedDate from the aggregation {@link #getSelectedDates selectedDates}.
|
|
12076
12076
|
*
|
|
@@ -15688,7 +15688,7 @@ declare namespace sap {
|
|
|
15688
15688
|
* The ariaDescribedBy to be removed or its index or ID
|
|
15689
15689
|
*/
|
|
15690
15690
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
15691
|
-
): sap.ui.core.ID;
|
|
15691
|
+
): sap.ui.core.ID | null;
|
|
15692
15692
|
/**
|
|
15693
15693
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
15694
15694
|
*
|
|
@@ -15699,7 +15699,7 @@ declare namespace sap {
|
|
|
15699
15699
|
* The ariaLabelledBy to be removed or its index or ID
|
|
15700
15700
|
*/
|
|
15701
15701
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
15702
|
-
): sap.ui.core.ID;
|
|
15702
|
+
): sap.ui.core.ID | null;
|
|
15703
15703
|
/**
|
|
15704
15704
|
* Removes a headerParameter from the aggregation {@link #getHeaderParameters headerParameters}.
|
|
15705
15705
|
*
|
|
@@ -16855,7 +16855,7 @@ declare namespace sap {
|
|
|
16855
16855
|
* The ariaLabelledBy to be removed or its index or ID
|
|
16856
16856
|
*/
|
|
16857
16857
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
16858
|
-
): sap.ui.core.ID;
|
|
16858
|
+
): sap.ui.core.ID | null;
|
|
16859
16859
|
/**
|
|
16860
16860
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
16861
16861
|
*
|
|
@@ -17067,7 +17067,7 @@ declare namespace sap {
|
|
|
17067
17067
|
* The ariaLabelledBy to be removed or its index or ID
|
|
17068
17068
|
*/
|
|
17069
17069
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
17070
|
-
): sap.ui.core.ID;
|
|
17070
|
+
): sap.ui.core.ID | null;
|
|
17071
17071
|
/**
|
|
17072
17072
|
* Sets a new value for property {@link #getIcon icon}.
|
|
17073
17073
|
*
|
|
@@ -18404,7 +18404,7 @@ declare namespace sap {
|
|
|
18404
18404
|
* The ariaLabelledBy to be removed or its index or ID
|
|
18405
18405
|
*/
|
|
18406
18406
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
18407
|
-
): sap.ui.core.ID;
|
|
18407
|
+
): sap.ui.core.ID | null;
|
|
18408
18408
|
/**
|
|
18409
18409
|
* Sets a new value for property {@link #getIcon icon}.
|
|
18410
18410
|
*
|
|
@@ -18739,7 +18739,7 @@ declare namespace sap {
|
|
|
18739
18739
|
* The ariaLabelledBy to be removed or its index or ID
|
|
18740
18740
|
*/
|
|
18741
18741
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
18742
|
-
): sap.ui.core.ID;
|
|
18742
|
+
): sap.ui.core.ID | null;
|
|
18743
18743
|
/**
|
|
18744
18744
|
* Sets a new value for property {@link #getImage image}.
|
|
18745
18745
|
*
|
|
@@ -19369,7 +19369,7 @@ declare namespace sap {
|
|
|
19369
19369
|
* The ariaLabelledBy to be removed or its index or ID
|
|
19370
19370
|
*/
|
|
19371
19371
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
19372
|
-
): sap.ui.core.ID;
|
|
19372
|
+
): sap.ui.core.ID | null;
|
|
19373
19373
|
/**
|
|
19374
19374
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
19375
19375
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -3249,14 +3249,14 @@ declare namespace sap {
|
|
|
3249
3249
|
): sap.ui.core.Item | null;
|
|
3250
3250
|
/**
|
|
3251
3251
|
*
|
|
3252
|
-
* @returns the
|
|
3252
|
+
* @returns the ID of the removed selected item or `null`
|
|
3253
3253
|
*/
|
|
3254
3254
|
removeSelectedItem(
|
|
3255
3255
|
/**
|
|
3256
|
-
* the
|
|
3256
|
+
* the selected item to remove or its index or ID
|
|
3257
3257
|
*/
|
|
3258
3258
|
vSelectedItem: int | string | sap.ui.core.Item
|
|
3259
|
-
): string;
|
|
3259
|
+
): string | null | undefined;
|
|
3260
3260
|
/**
|
|
3261
3261
|
* Sets a new value for property {@link #getEditable editable}.
|
|
3262
3262
|
*
|
|
@@ -3760,25 +3760,25 @@ declare namespace sap {
|
|
|
3760
3760
|
/**
|
|
3761
3761
|
* Removes a collection from the aggregation named `collections`.
|
|
3762
3762
|
*
|
|
3763
|
-
* @returns the removed collection or null
|
|
3763
|
+
* @returns the removed collection or `null`
|
|
3764
3764
|
*/
|
|
3765
3765
|
removeCollection(
|
|
3766
3766
|
/**
|
|
3767
|
-
* the collection to remove or its index or
|
|
3767
|
+
* the collection to remove or its index or ID
|
|
3768
3768
|
*/
|
|
3769
3769
|
vCollection: int | string | sap.ui.ux3.Collection
|
|
3770
|
-
): sap.ui.ux3.Collection;
|
|
3770
|
+
): sap.ui.ux3.Collection | null;
|
|
3771
3771
|
/**
|
|
3772
3772
|
* Removes a content from the aggregation named `content`.
|
|
3773
3773
|
*
|
|
3774
|
-
* @returns the removed content or null
|
|
3774
|
+
* @returns the removed content or `null`
|
|
3775
3775
|
*/
|
|
3776
3776
|
removeContent(
|
|
3777
3777
|
/**
|
|
3778
|
-
* the content to remove or its index or
|
|
3778
|
+
* the content to remove or its index or ID
|
|
3779
3779
|
*/
|
|
3780
3780
|
vContent: int | string | sap.ui.core.Control
|
|
3781
|
-
): sap.ui.core.Control;
|
|
3781
|
+
): sap.ui.core.Control | null;
|
|
3782
3782
|
/**
|
|
3783
3783
|
* Sets a new value for property {@link #getFitParent fitParent}.
|
|
3784
3784
|
*
|
|
@@ -10473,7 +10473,7 @@ declare namespace sap {
|
|
|
10473
10473
|
* The associatedItem to be removed or its index or ID
|
|
10474
10474
|
*/
|
|
10475
10475
|
vAssociatedItem: int | sap.ui.core.ID | sap.ui.ux3.NavigationItem
|
|
10476
|
-
): sap.ui.core.ID;
|
|
10476
|
+
): sap.ui.core.ID | null;
|
|
10477
10477
|
/**
|
|
10478
10478
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
10479
10479
|
*
|