@sapui5/ts-types 1.104.2 → 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.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +2 -2
- package/types/sap.collaboration.d.ts +25 -25
- package/types/sap.esh.search.ui.d.ts +939 -1
- package/types/sap.f.d.ts +80 -4
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +5 -5
- package/types/sap.fe.macros.d.ts +30 -98
- package/types/sap.fe.navigation.d.ts +53 -5
- package/types/sap.fe.templates.d.ts +155 -1
- package/types/sap.fe.test.d.ts +17 -3
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +218 -57
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +583 -149
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +68 -3
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +152 -171
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +121 -16
- package/types/sap.suite.ui.generic.template.d.ts +17 -3
- package/types/sap.suite.ui.microchart.d.ts +13 -13
- 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.comp.d.ts +182 -57
- package/types/sap.ui.core.d.ts +618 -265
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1117 -5
- package/types/sap.ui.generic.app.d.ts +14 -11
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +101 -18
- package/types/sap.ui.layout.d.ts +7 -7
- package/types/sap.ui.mdc.d.ts +5 -1
- package/types/sap.ui.richtexteditor.d.ts +2 -2
- 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 +66 -19
- package/types/sap.ui.ux3.d.ts +11 -11
- package/types/sap.ui.vbm.d.ts +3 -3
- package/types/sap.ui.vk.d.ts +315 -24
- package/types/sap.ui.vtm.d.ts +2 -2
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +239 -43
- package/types/sap.ui.webc.main.d.ts +636 -146
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +12 -10
- package/types/sap.ushell_abap.d.ts +1 -215
- package/types/sap.uxap.d.ts +41 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +2 -6
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
|
@@ -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 {
|
|
@@ -96,8 +96,8 @@ declare namespace sap {
|
|
|
96
96
|
* **Note:** This class requires that the UShell {@link sap.ushell.services.CrossApplicationNavigation}
|
|
97
97
|
* is available and initialized.
|
|
98
98
|
*/
|
|
99
|
-
class NavigationHandler
|
|
100
|
-
|
|
99
|
+
class NavigationHandler extends sap.fe.navigation
|
|
100
|
+
.NavigationHandler {
|
|
101
101
|
constructor(
|
|
102
102
|
/**
|
|
103
103
|
* UI5 controller that contains a router and a component; typically the main controller of your application,
|
|
@@ -1023,8 +1023,8 @@ declare namespace sap {
|
|
|
1023
1023
|
* is created whose ID has been set to `""`. Passing a JSON-serialized string complying to the Selection
|
|
1024
1024
|
* Variant Specification will parse it, and the newly created instance will contain the same information.
|
|
1025
1025
|
*/
|
|
1026
|
-
class PresentationVariant
|
|
1027
|
-
|
|
1026
|
+
class PresentationVariant extends sap.fe.navigation
|
|
1027
|
+
.PresentationVariant {
|
|
1028
1028
|
constructor(
|
|
1029
1029
|
/**
|
|
1030
1030
|
* If of type `string`, the selection variant is JSON-formatted; if of type `object`, the object represents
|
|
@@ -1211,8 +1211,7 @@ declare namespace sap {
|
|
|
1211
1211
|
* is created whose ID has been set to `""`. Passing a JSON-serialized string complying to the Selection
|
|
1212
1212
|
* Variant Specification will parse it, and the newly created instance will contain the same information.
|
|
1213
1213
|
*/
|
|
1214
|
-
class SelectionVariant
|
|
1215
|
-
/* was: sap.fe.navigation.SelectionVariant */ extends Object {
|
|
1214
|
+
class SelectionVariant extends sap.fe.navigation.SelectionVariant {
|
|
1216
1215
|
constructor(
|
|
1217
1216
|
/**
|
|
1218
1217
|
* If of type `string`, the selection variant is JSON-formatted; if of type `object`, the object represents
|
|
@@ -2422,9 +2421,9 @@ declare namespace sap {
|
|
|
2422
2421
|
destroy(): void;
|
|
2423
2422
|
/**
|
|
2424
2423
|
* Executes annotated side effects for properties/navigation properties or navigation entities. If no properties
|
|
2425
|
-
* or entities are passed the
|
|
2426
|
-
*
|
|
2427
|
-
*
|
|
2424
|
+
* or entities are passed then the global side effect (the one without source properties and source entites)
|
|
2425
|
+
* will be executed. PreparationAction will be called if there is no global side effect annotation available
|
|
2426
|
+
* or if no trigger action is configured in the global side effect.
|
|
2428
2427
|
*
|
|
2429
2428
|
* @returns A `Promise` for asynchronous execution of the action. The promise is either already resolved
|
|
2430
2429
|
* (when nothing needs to be processed) or resolves when the `triggerSubmitChanges()` has been executed.
|
|
@@ -2446,7 +2445,11 @@ declare namespace sap {
|
|
|
2446
2445
|
/**
|
|
2447
2446
|
* If not explicitly set to `false` a global model refresh is triggered.
|
|
2448
2447
|
*/
|
|
2449
|
-
bForceGlobalRefresh: boolean
|
|
2448
|
+
bForceGlobalRefresh: boolean,
|
|
2449
|
+
/**
|
|
2450
|
+
* Parameters to control the draft preparation
|
|
2451
|
+
*/
|
|
2452
|
+
mAdditionalParameters: Record<string, any>
|
|
2450
2453
|
): Promise<any>;
|
|
2451
2454
|
/**
|
|
2452
2455
|
* @SINCE 1.38
|
|
@@ -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,15 +767,35 @@ 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
|
-
*
|
|
769
|
-
*
|
|
780
|
+
* {
|
|
781
|
+
* // Administrator
|
|
782
|
+
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
783
|
+
* "/sap.card/content/maxItems": 10,
|
|
784
|
+
* "texts": {
|
|
785
|
+
* "en-US": {
|
|
786
|
+
* "/sap.card/header/title": "My Configured Title in US-English"
|
|
787
|
+
* }
|
|
788
|
+
* }
|
|
789
|
+
* },
|
|
790
|
+
* {
|
|
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
|
|
798
|
+
* }
|
|
770
799
|
* ]
|
|
771
800
|
* ```
|
|
772
801
|
*/
|
|
@@ -1420,15 +1449,35 @@ declare namespace sap {
|
|
|
1420
1449
|
*
|
|
1421
1450
|
* This can be a list of flexibility changes generated during designtime.
|
|
1422
1451
|
*
|
|
1423
|
-
* Each
|
|
1424
|
-
*
|
|
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.
|
|
1425
1457
|
*
|
|
1426
1458
|
* Example:
|
|
1427
1459
|
* ```javascript
|
|
1428
1460
|
*
|
|
1429
1461
|
* [
|
|
1430
|
-
*
|
|
1431
|
-
*
|
|
1462
|
+
* {
|
|
1463
|
+
* // Administrator
|
|
1464
|
+
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
1465
|
+
* "/sap.card/content/maxItems": 10,
|
|
1466
|
+
* "texts": {
|
|
1467
|
+
* "en-US": {
|
|
1468
|
+
* "/sap.card/header/title": "My Configured Title in US-English"
|
|
1469
|
+
* }
|
|
1470
|
+
* }
|
|
1471
|
+
* },
|
|
1472
|
+
* {
|
|
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
|
|
1480
|
+
* }
|
|
1432
1481
|
* ]
|
|
1433
1482
|
* ```
|
|
1434
1483
|
*
|
|
@@ -1454,7 +1503,8 @@ declare namespace sap {
|
|
|
1454
1503
|
/**
|
|
1455
1504
|
* Gets current value of property {@link #getReferenceId referenceId}.
|
|
1456
1505
|
*
|
|
1457
|
-
* 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.
|
|
1458
1508
|
*
|
|
1459
1509
|
* Default value is `empty string`.
|
|
1460
1510
|
*
|
|
@@ -1722,15 +1772,35 @@ declare namespace sap {
|
|
|
1722
1772
|
*
|
|
1723
1773
|
* This can be a list of flexibility changes generated during designtime.
|
|
1724
1774
|
*
|
|
1725
|
-
* Each
|
|
1726
|
-
*
|
|
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.
|
|
1727
1780
|
*
|
|
1728
1781
|
* Example:
|
|
1729
1782
|
* ```javascript
|
|
1730
1783
|
*
|
|
1731
1784
|
* [
|
|
1732
|
-
*
|
|
1733
|
-
*
|
|
1785
|
+
* {
|
|
1786
|
+
* // Administrator
|
|
1787
|
+
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
1788
|
+
* "/sap.card/content/maxItems": 10,
|
|
1789
|
+
* "texts": {
|
|
1790
|
+
* "en-US": {
|
|
1791
|
+
* "/sap.card/header/title": "My Configured Title in US-English"
|
|
1792
|
+
* }
|
|
1793
|
+
* }
|
|
1794
|
+
* },
|
|
1795
|
+
* {
|
|
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
|
|
1803
|
+
* }
|
|
1734
1804
|
* ]
|
|
1735
1805
|
* ```
|
|
1736
1806
|
*
|
|
@@ -1748,7 +1818,8 @@ declare namespace sap {
|
|
|
1748
1818
|
/**
|
|
1749
1819
|
* Sets a new value for property {@link #getReferenceId referenceId}.
|
|
1750
1820
|
*
|
|
1751
|
-
* 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.
|
|
1752
1823
|
*
|
|
1753
1824
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1754
1825
|
*
|
|
@@ -1827,6 +1898,14 @@ declare namespace sap {
|
|
|
1827
1898
|
parameters?: object;
|
|
1828
1899
|
}
|
|
1829
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;
|
|
1830
1909
|
}
|
|
1831
1910
|
}
|
|
1832
1911
|
|
|
@@ -3273,6 +3352,8 @@ declare namespace sap {
|
|
|
3273
3352
|
|
|
3274
3353
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor": undefined;
|
|
3275
3354
|
|
|
3355
|
+
"sap/ui/integration/designtime/baseEditor/propertyEditor/codeEditor/CodeEditor": undefined;
|
|
3356
|
+
|
|
3276
3357
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor": undefined;
|
|
3277
3358
|
|
|
3278
3359
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor": undefined;
|
|
@@ -3307,8 +3388,6 @@ declare namespace sap {
|
|
|
3307
3388
|
|
|
3308
3389
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor": undefined;
|
|
3309
3390
|
|
|
3310
|
-
"sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor": undefined;
|
|
3311
|
-
|
|
3312
3391
|
"sap/ui/integration/designtime/baseEditor/PropertyEditors": undefined;
|
|
3313
3392
|
|
|
3314
3393
|
"sap/ui/integration/designtime/baseEditor/util/unset": undefined;
|
|
@@ -3365,6 +3444,8 @@ declare namespace sap {
|
|
|
3365
3444
|
|
|
3366
3445
|
"sap/ui/integration/editor/fields/DestinationField": undefined;
|
|
3367
3446
|
|
|
3447
|
+
"sap/ui/integration/editor/fields/fragment/Controller": undefined;
|
|
3448
|
+
|
|
3368
3449
|
"sap/ui/integration/editor/fields/IntegerField": undefined;
|
|
3369
3450
|
|
|
3370
3451
|
"sap/ui/integration/editor/fields/NumberField": undefined;
|
|
@@ -3383,6 +3464,8 @@ declare namespace sap {
|
|
|
3383
3464
|
|
|
3384
3465
|
"sap/ui/integration/editor/fields/viz/ShapeSelect": undefined;
|
|
3385
3466
|
|
|
3467
|
+
"sap/ui/integration/editor/fields/viz/VizBase": undefined;
|
|
3468
|
+
|
|
3386
3469
|
"sap/ui/integration/editor/Settings": undefined;
|
|
3387
3470
|
|
|
3388
3471
|
"sap/ui/integration/Extension": 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 {
|
|
@@ -8,6 +8,8 @@ declare namespace sap {
|
|
|
8
8
|
|
|
9
9
|
"sap/ui/mdc/Chart": undefined;
|
|
10
10
|
|
|
11
|
+
"sap/ui/mdc/chart/ChartImplementationContainer": undefined;
|
|
12
|
+
|
|
11
13
|
"sap/ui/mdc/chart/ChartSelectionDetails": undefined;
|
|
12
14
|
|
|
13
15
|
"sap/ui/mdc/chart/Item": undefined;
|
|
@@ -194,6 +196,8 @@ declare namespace sap {
|
|
|
194
196
|
|
|
195
197
|
"sap/ui/mdc/table/TableTypeBase": undefined;
|
|
196
198
|
|
|
199
|
+
"sap/ui/mdc/table/V4AnalyticsPropertyHelper": undefined;
|
|
200
|
+
|
|
197
201
|
"sap/ui/mdc/TableDelegate": undefined;
|
|
198
202
|
|
|
199
203
|
"sap/ui/mdc/util/DateUtil": undefined;
|
|
@@ -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 {
|
|
@@ -1209,7 +1209,7 @@ declare namespace sap {
|
|
|
1209
1209
|
* The ariaLabelledBy to be removed or its index or ID
|
|
1210
1210
|
*/
|
|
1211
1211
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
1212
|
-
): sap.ui.core.ID;
|
|
1212
|
+
): sap.ui.core.ID | null;
|
|
1213
1213
|
/**
|
|
1214
1214
|
* Removes a button group from the editor.
|
|
1215
1215
|
*
|
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
|
*
|