@sapui5/ts-types 1.104.1 → 1.105.1
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 +1 -1
- package/types/sap.esh.search.ui.d.ts +829 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +2 -2
- package/types/sap.fe.macros.d.ts +8 -4
- package/types/sap.fe.navigation.d.ts +53 -5
- package/types/sap.fe.templates.d.ts +2 -2
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +66 -54
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +197 -47
- 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 +122 -179
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +97 -6
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +73 -22
- package/types/sap.ui.core.d.ts +195 -43
- 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 +9 -10
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +59 -7
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +3 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +51 -4
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +272 -19
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +209 -16
- package/types/sap.ui.webc.main.d.ts +524 -62
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +6 -8
- package/types/sap.ushell_abap.d.ts +1 -215
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- 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.105.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.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.105.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -765,8 +765,24 @@ declare namespace sap {
|
|
|
765
765
|
* ```javascript
|
|
766
766
|
*
|
|
767
767
|
* [
|
|
768
|
-
*
|
|
769
|
-
*
|
|
768
|
+
* {
|
|
769
|
+
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
770
|
+
* "/sap.card/content/maxItems": 10,
|
|
771
|
+
* "texts": {
|
|
772
|
+
* "en-US": {
|
|
773
|
+
* "/sap.card/header/title": "My Configured Title in US-English"
|
|
774
|
+
* }
|
|
775
|
+
* }
|
|
776
|
+
* },
|
|
777
|
+
* {
|
|
778
|
+
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
779
|
+
* "/sap.card/content/maxItems": 10,
|
|
780
|
+
* "texts": {
|
|
781
|
+
* "en-US": {
|
|
782
|
+
* "/sap.card/header/title": "My Configured Title in US-English"
|
|
783
|
+
* }
|
|
784
|
+
* }
|
|
785
|
+
* }
|
|
770
786
|
* ]
|
|
771
787
|
* ```
|
|
772
788
|
*/
|
|
@@ -1427,8 +1443,24 @@ declare namespace sap {
|
|
|
1427
1443
|
* ```javascript
|
|
1428
1444
|
*
|
|
1429
1445
|
* [
|
|
1430
|
-
*
|
|
1431
|
-
*
|
|
1446
|
+
* {
|
|
1447
|
+
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
1448
|
+
* "/sap.card/content/maxItems": 10,
|
|
1449
|
+
* "texts": {
|
|
1450
|
+
* "en-US": {
|
|
1451
|
+
* "/sap.card/header/title": "My Configured Title in US-English"
|
|
1452
|
+
* }
|
|
1453
|
+
* }
|
|
1454
|
+
* },
|
|
1455
|
+
* {
|
|
1456
|
+
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
1457
|
+
* "/sap.card/content/maxItems": 10,
|
|
1458
|
+
* "texts": {
|
|
1459
|
+
* "en-US": {
|
|
1460
|
+
* "/sap.card/header/title": "My Configured Title in US-English"
|
|
1461
|
+
* }
|
|
1462
|
+
* }
|
|
1463
|
+
* }
|
|
1432
1464
|
* ]
|
|
1433
1465
|
* ```
|
|
1434
1466
|
*
|
|
@@ -1729,8 +1761,24 @@ declare namespace sap {
|
|
|
1729
1761
|
* ```javascript
|
|
1730
1762
|
*
|
|
1731
1763
|
* [
|
|
1732
|
-
*
|
|
1733
|
-
*
|
|
1764
|
+
* {
|
|
1765
|
+
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
1766
|
+
* "/sap.card/content/maxItems": 10,
|
|
1767
|
+
* "texts": {
|
|
1768
|
+
* "en-US": {
|
|
1769
|
+
* "/sap.card/header/title": "My Configured Title in US-English"
|
|
1770
|
+
* }
|
|
1771
|
+
* }
|
|
1772
|
+
* },
|
|
1773
|
+
* {
|
|
1774
|
+
* "/sap.card/header/title": "My Configured Title in Default Language",
|
|
1775
|
+
* "/sap.card/content/maxItems": 10,
|
|
1776
|
+
* "texts": {
|
|
1777
|
+
* "en-US": {
|
|
1778
|
+
* "/sap.card/header/title": "My Configured Title in US-English"
|
|
1779
|
+
* }
|
|
1780
|
+
* }
|
|
1781
|
+
* }
|
|
1734
1782
|
* ]
|
|
1735
1783
|
* ```
|
|
1736
1784
|
*
|
|
@@ -3365,6 +3413,8 @@ declare namespace sap {
|
|
|
3365
3413
|
|
|
3366
3414
|
"sap/ui/integration/editor/fields/DestinationField": undefined;
|
|
3367
3415
|
|
|
3416
|
+
"sap/ui/integration/editor/fields/fragment/Controller": undefined;
|
|
3417
|
+
|
|
3368
3418
|
"sap/ui/integration/editor/fields/IntegerField": undefined;
|
|
3369
3419
|
|
|
3370
3420
|
"sap/ui/integration/editor/fields/NumberField": undefined;
|
|
@@ -3383,6 +3433,8 @@ declare namespace sap {
|
|
|
3383
3433
|
|
|
3384
3434
|
"sap/ui/integration/editor/fields/viz/ShapeSelect": undefined;
|
|
3385
3435
|
|
|
3436
|
+
"sap/ui/integration/editor/fields/viz/VizBase": undefined;
|
|
3437
|
+
|
|
3386
3438
|
"sap/ui/integration/editor/Settings": undefined;
|
|
3387
3439
|
|
|
3388
3440
|
"sap/ui/integration/Extension": undefined;
|
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.105.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;
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.105.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -6707,6 +6707,16 @@ declare namespace sap {
|
|
|
6707
6707
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
6708
6708
|
| `{${string}}`;
|
|
6709
6709
|
|
|
6710
|
+
/**
|
|
6711
|
+
* @SINCE 1.105.0
|
|
6712
|
+
*
|
|
6713
|
+
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
6714
|
+
*/
|
|
6715
|
+
directory?:
|
|
6716
|
+
| boolean
|
|
6717
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
6718
|
+
| `{${string}}`;
|
|
6719
|
+
|
|
6710
6720
|
/**
|
|
6711
6721
|
* @SINCE 1.12.2
|
|
6712
6722
|
*
|
|
@@ -12630,7 +12640,13 @@ declare namespace sap {
|
|
|
12630
12640
|
*
|
|
12631
12641
|
* @returns Containing current RGB values
|
|
12632
12642
|
*/
|
|
12633
|
-
getRGB():
|
|
12643
|
+
getRGB(): {
|
|
12644
|
+
r: int;
|
|
12645
|
+
|
|
12646
|
+
g: int;
|
|
12647
|
+
|
|
12648
|
+
b: int;
|
|
12649
|
+
};
|
|
12634
12650
|
/**
|
|
12635
12651
|
* @SINCE 1.48.0
|
|
12636
12652
|
*
|
|
@@ -13046,8 +13062,8 @@ declare namespace sap {
|
|
|
13046
13062
|
* When this control is displayed on tablet or desktop, the `ColorPickerPopover` is positioned relative
|
|
13047
13063
|
* to this control
|
|
13048
13064
|
*/
|
|
13049
|
-
openBy:
|
|
13050
|
-
):
|
|
13065
|
+
openBy: sap.ui.core.Control | HTMLElement
|
|
13066
|
+
): /* was: sap.m.Popover */ any | /* was: sap.m.Dialog */ any;
|
|
13051
13067
|
/**
|
|
13052
13068
|
* @SINCE 1.60.0
|
|
13053
13069
|
*
|
|
@@ -15223,6 +15239,18 @@ declare namespace sap {
|
|
|
15223
15239
|
* @returns Value of property `buttonText`
|
|
15224
15240
|
*/
|
|
15225
15241
|
getButtonText(): string;
|
|
15242
|
+
/**
|
|
15243
|
+
* @SINCE 1.105.0
|
|
15244
|
+
*
|
|
15245
|
+
* Gets current value of property {@link #getDirectory directory}.
|
|
15246
|
+
*
|
|
15247
|
+
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
15248
|
+
*
|
|
15249
|
+
* Default value is `false`.
|
|
15250
|
+
*
|
|
15251
|
+
* @returns Value of property `directory`
|
|
15252
|
+
*/
|
|
15253
|
+
getDirectory(): boolean;
|
|
15226
15254
|
/**
|
|
15227
15255
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
15228
15256
|
*
|
|
@@ -15746,6 +15774,25 @@ declare namespace sap {
|
|
|
15746
15774
|
*/
|
|
15747
15775
|
sButtonText?: string
|
|
15748
15776
|
): this;
|
|
15777
|
+
/**
|
|
15778
|
+
* @SINCE 1.105.0
|
|
15779
|
+
*
|
|
15780
|
+
* Sets a new value for property {@link #getDirectory directory}.
|
|
15781
|
+
*
|
|
15782
|
+
* Allows users to upload all files from a given directory and its corresponding subdirectories.
|
|
15783
|
+
*
|
|
15784
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15785
|
+
*
|
|
15786
|
+
* Default value is `false`.
|
|
15787
|
+
*
|
|
15788
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
15789
|
+
*/
|
|
15790
|
+
setDirectory(
|
|
15791
|
+
/**
|
|
15792
|
+
* New value for property `directory`
|
|
15793
|
+
*/
|
|
15794
|
+
bDirectory?: boolean
|
|
15795
|
+
): this;
|
|
15749
15796
|
/**
|
|
15750
15797
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
15751
15798
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED