@openui5/ts-types 1.113.0 → 1.114.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.f.d.ts +51 -1
- package/types/sap.m.d.ts +499 -992
- 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.core.d.ts +1342 -856
- 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 +107 -4
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +17 -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 +1 -1
- package/types/sap.ui.table.d.ts +36 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +159 -141
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -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.114.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -1299,6 +1299,8 @@ declare namespace sap {
|
|
|
1299
1299
|
|
|
1300
1300
|
"sap/ui/fl/apply/_internal/flexState/UI2Personalization/UI2PersonalizationState": undefined;
|
|
1301
1301
|
|
|
1302
|
+
"sap/ui/fl/apply/_internal/preprocessors/ComponentLifecycleHooks": undefined;
|
|
1303
|
+
|
|
1302
1304
|
"sap/ui/fl/apply/_internal/preprocessors/ControllerExtension": undefined;
|
|
1303
1305
|
|
|
1304
1306
|
"sap/ui/fl/apply/_internal/preprocessors/EventHistory": undefined;
|
|
@@ -1327,8 +1329,6 @@ declare namespace sap {
|
|
|
1327
1329
|
|
|
1328
1330
|
"sap/ui/fl/FlexControllerFactory": undefined;
|
|
1329
1331
|
|
|
1330
|
-
"sap/ui/fl/initial/_internal/changeHandlers/ChangeRegistryItem": undefined;
|
|
1331
|
-
|
|
1332
1332
|
"sap/ui/fl/initial/_internal/connectors/BackendConnector": undefined;
|
|
1333
1333
|
|
|
1334
1334
|
"sap/ui/fl/initial/_internal/connectors/KeyUserConnector": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.114.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -438,6 +438,14 @@ declare namespace sap {
|
|
|
438
438
|
* @returns Value of property `baseUrl`
|
|
439
439
|
*/
|
|
440
440
|
getBaseUrl(): sap.ui.core.URI;
|
|
441
|
+
/**
|
|
442
|
+
* @EXPERIMENTAL (since 1.114)
|
|
443
|
+
*
|
|
444
|
+
* Get information about the blocking message in the card.
|
|
445
|
+
*
|
|
446
|
+
* @returns Information about the message or `null`, if such isn't shown.
|
|
447
|
+
*/
|
|
448
|
+
getBlockingMessage(): sap.ui.integration.BlockingMessageSettings | null;
|
|
441
449
|
/**
|
|
442
450
|
* @EXPERIMENTAL (since 1.77)
|
|
443
451
|
*
|
|
@@ -506,6 +514,12 @@ declare namespace sap {
|
|
|
506
514
|
*/
|
|
507
515
|
bIgnoreKeyFallback?: boolean
|
|
508
516
|
): string;
|
|
517
|
+
/**
|
|
518
|
+
* @EXPERIMENTAL (since 1.114)
|
|
519
|
+
*
|
|
520
|
+
* Hide the blocking message that is shown in the card by `showBlockingMessage` call.
|
|
521
|
+
*/
|
|
522
|
+
hideBlockingMessage(): void;
|
|
509
523
|
/**
|
|
510
524
|
* Hides the loading placeholders on the whole card, or a particular section of the card.
|
|
511
525
|
*/
|
|
@@ -637,6 +651,18 @@ declare namespace sap {
|
|
|
637
651
|
*/
|
|
638
652
|
sKey: string
|
|
639
653
|
): Promise<string>;
|
|
654
|
+
/**
|
|
655
|
+
* @EXPERIMENTAL (since 1.114)
|
|
656
|
+
*
|
|
657
|
+
* Show blocking message in the card's content area. Should be used after the `manifestApplied` event or
|
|
658
|
+
* after the `cardReady` lifecycle hook in Component cards and Extensions.
|
|
659
|
+
*/
|
|
660
|
+
showBlockingMessage(
|
|
661
|
+
/**
|
|
662
|
+
* Blocking message settings
|
|
663
|
+
*/
|
|
664
|
+
oSettings: sap.ui.integration.BlockingMessageSettings
|
|
665
|
+
): void;
|
|
640
666
|
/**
|
|
641
667
|
* Displays the loading placeholders on the whole card, or a particular area of the card. **Note:** Only
|
|
642
668
|
* areas that contain binding will receive a loading placeholder.
|
|
@@ -825,7 +851,7 @@ declare namespace sap {
|
|
|
825
851
|
* Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
|
|
826
852
|
*
|
|
827
853
|
* - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
|
|
828
|
-
* in the manifest. If such configuration is missing, then the
|
|
854
|
+
* in the manifest. If such configuration is missing, then the Abstract mode will be used instead.
|
|
829
855
|
* - When set to "Abstract", the card shows abstract placeholder without loading data.
|
|
830
856
|
* - When set to "Off", the card displays real data.
|
|
831
857
|
*/
|
|
@@ -1518,6 +1544,14 @@ declare namespace sap {
|
|
|
1518
1544
|
* @returns Value of property `baseUrl`
|
|
1519
1545
|
*/
|
|
1520
1546
|
getBaseUrl(): sap.ui.core.URI;
|
|
1547
|
+
/**
|
|
1548
|
+
* @EXPERIMENTAL (since 1.114)
|
|
1549
|
+
*
|
|
1550
|
+
* Get information about the blocking message in the card.
|
|
1551
|
+
*
|
|
1552
|
+
* @returns Information about the message or `null`, if such isn't shown.
|
|
1553
|
+
*/
|
|
1554
|
+
getBlockingMessage(): sap.ui.integration.BlockingMessageSettings | null;
|
|
1521
1555
|
/**
|
|
1522
1556
|
* @EXPERIMENTAL (since 1.77)
|
|
1523
1557
|
*
|
|
@@ -1655,7 +1689,7 @@ declare namespace sap {
|
|
|
1655
1689
|
* Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
|
|
1656
1690
|
*
|
|
1657
1691
|
* - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
|
|
1658
|
-
* in the manifest. If such configuration is missing, then the
|
|
1692
|
+
* in the manifest. If such configuration is missing, then the Abstract mode will be used instead.
|
|
1659
1693
|
* - When set to "Abstract", the card shows abstract placeholder without loading data.
|
|
1660
1694
|
* - When set to "Off", the card displays real data.
|
|
1661
1695
|
*
|
|
@@ -1703,6 +1737,12 @@ declare namespace sap {
|
|
|
1703
1737
|
*/
|
|
1704
1738
|
bIgnoreKeyFallback?: boolean
|
|
1705
1739
|
): string;
|
|
1740
|
+
/**
|
|
1741
|
+
* @EXPERIMENTAL (since 1.114)
|
|
1742
|
+
*
|
|
1743
|
+
* Hide the blocking message that is shown in the card by `showBlockingMessage` call.
|
|
1744
|
+
*/
|
|
1745
|
+
hideBlockingMessage(): void;
|
|
1706
1746
|
/**
|
|
1707
1747
|
* Hides the loading placeholders on the whole card, or a particular section of the card.
|
|
1708
1748
|
*/
|
|
@@ -2011,7 +2051,7 @@ declare namespace sap {
|
|
|
2011
2051
|
* Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
|
|
2012
2052
|
*
|
|
2013
2053
|
* - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
|
|
2014
|
-
* in the manifest. If such configuration is missing, then the
|
|
2054
|
+
* in the manifest. If such configuration is missing, then the Abstract mode will be used instead.
|
|
2015
2055
|
* - When set to "Abstract", the card shows abstract placeholder without loading data.
|
|
2016
2056
|
* - When set to "Off", the card displays real data.
|
|
2017
2057
|
*
|
|
@@ -2045,6 +2085,18 @@ declare namespace sap {
|
|
|
2045
2085
|
*/
|
|
2046
2086
|
sReferenceId?: string
|
|
2047
2087
|
): this;
|
|
2088
|
+
/**
|
|
2089
|
+
* @EXPERIMENTAL (since 1.114)
|
|
2090
|
+
*
|
|
2091
|
+
* Show blocking message in the card's content area. Should be used after the `manifestApplied` event or
|
|
2092
|
+
* after the `cardReady` lifecycle hook in Component cards and Extensions.
|
|
2093
|
+
*/
|
|
2094
|
+
showBlockingMessage(
|
|
2095
|
+
/**
|
|
2096
|
+
* Blocking message settings
|
|
2097
|
+
*/
|
|
2098
|
+
oSettings: sap.ui.integration.BlockingMessageSettings
|
|
2099
|
+
): void;
|
|
2048
2100
|
/**
|
|
2049
2101
|
* Displays the loading placeholders on the whole card, or a particular area of the card. **Note:** Only
|
|
2050
2102
|
* areas that contain binding will receive a loading placeholder.
|
|
@@ -3683,6 +3735,25 @@ declare namespace sap {
|
|
|
3683
3735
|
*/
|
|
3684
3736
|
Header = "Header",
|
|
3685
3737
|
}
|
|
3738
|
+
/**
|
|
3739
|
+
* @EXPERIMENTAL (since 1.114)
|
|
3740
|
+
*
|
|
3741
|
+
* Card blocking message types.
|
|
3742
|
+
*/
|
|
3743
|
+
enum CardBlockingMessageType {
|
|
3744
|
+
/**
|
|
3745
|
+
* An error ocurred in the card.
|
|
3746
|
+
*/
|
|
3747
|
+
Error = "Error",
|
|
3748
|
+
/**
|
|
3749
|
+
* Information message.
|
|
3750
|
+
*/
|
|
3751
|
+
Information = "Information",
|
|
3752
|
+
/**
|
|
3753
|
+
* There is no data to be displayed.
|
|
3754
|
+
*/
|
|
3755
|
+
NoData = "NoData",
|
|
3756
|
+
}
|
|
3686
3757
|
/**
|
|
3687
3758
|
* @SINCE 1.65
|
|
3688
3759
|
* @EXPERIMENTAL (since 1.65)
|
|
@@ -3740,6 +3811,38 @@ declare namespace sap {
|
|
|
3740
3811
|
*/
|
|
3741
3812
|
Off = "Off",
|
|
3742
3813
|
}
|
|
3814
|
+
/**
|
|
3815
|
+
* @EXPERIMENTAL (since 1.114)
|
|
3816
|
+
*
|
|
3817
|
+
* Settings for blocking message that ocurred in a {@link sap.ui.integration.widgets.Card}
|
|
3818
|
+
*/
|
|
3819
|
+
type BlockingMessageSettings = {
|
|
3820
|
+
/**
|
|
3821
|
+
* Blocking message type
|
|
3822
|
+
*/
|
|
3823
|
+
type: sap.ui.integration.CardBlockingMessageType;
|
|
3824
|
+
/**
|
|
3825
|
+
* Illustration type
|
|
3826
|
+
*/
|
|
3827
|
+
illustrationType: sap.m.IllustratedMessageType;
|
|
3828
|
+
/**
|
|
3829
|
+
* Illustration size
|
|
3830
|
+
*/
|
|
3831
|
+
illustrationSize?: sap.m.IllustratedMessageSize;
|
|
3832
|
+
/**
|
|
3833
|
+
* Title
|
|
3834
|
+
*/
|
|
3835
|
+
title: string;
|
|
3836
|
+
/**
|
|
3837
|
+
* Description
|
|
3838
|
+
*/
|
|
3839
|
+
description?: string;
|
|
3840
|
+
/**
|
|
3841
|
+
* Response object in case of a network error
|
|
3842
|
+
*/
|
|
3843
|
+
httpResponse?: Response;
|
|
3844
|
+
};
|
|
3845
|
+
|
|
3743
3846
|
/**
|
|
3744
3847
|
* @EXPERIMENTAL (since 1.79)
|
|
3745
3848
|
*
|
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.114.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -6,6 +6,8 @@ declare namespace sap {
|
|
|
6
6
|
|
|
7
7
|
"sap/ui/mdc/actiontoolbar/ActionToolbarAction": undefined;
|
|
8
8
|
|
|
9
|
+
"sap/ui/mdc/BaseDelegate": undefined;
|
|
10
|
+
|
|
9
11
|
"sap/ui/mdc/Chart": undefined;
|
|
10
12
|
|
|
11
13
|
"sap/ui/mdc/chart/ChartImplementationContainer": undefined;
|
|
@@ -56,6 +58,8 @@ declare namespace sap {
|
|
|
56
58
|
|
|
57
59
|
"sap/ui/mdc/enum/FilterBarValidationStatus": undefined;
|
|
58
60
|
|
|
61
|
+
"sap/ui/mdc/enum/LinkType": undefined;
|
|
62
|
+
|
|
59
63
|
"sap/ui/mdc/enum/PersistenceMode": undefined;
|
|
60
64
|
|
|
61
65
|
"sap/ui/mdc/enum/ProcessingStrategy": undefined;
|
|
@@ -74,8 +78,6 @@ declare namespace sap {
|
|
|
74
78
|
|
|
75
79
|
"sap/ui/mdc/field/CustomFieldInfo": undefined;
|
|
76
80
|
|
|
77
|
-
"sap/ui/mdc/field/DefineConditionPanel": undefined;
|
|
78
|
-
|
|
79
81
|
"sap/ui/mdc/field/DynamicDateRangeConditionsType": undefined;
|
|
80
82
|
|
|
81
83
|
"sap/ui/mdc/field/FieldBase": undefined;
|
|
@@ -100,14 +102,14 @@ declare namespace sap {
|
|
|
100
102
|
|
|
101
103
|
"sap/ui/mdc/FilterBar": undefined;
|
|
102
104
|
|
|
103
|
-
"sap/ui/mdc/filterbar/aligned/FilterContainer": undefined;
|
|
104
|
-
|
|
105
|
-
"sap/ui/mdc/filterbar/aligned/FilterItemLayout": undefined;
|
|
106
|
-
|
|
107
105
|
"sap/ui/mdc/filterbar/FilterBarBase": undefined;
|
|
108
106
|
|
|
107
|
+
"sap/ui/mdc/filterbar/IFilterContainer": undefined;
|
|
108
|
+
|
|
109
109
|
"sap/ui/mdc/filterbar/p13n/AdaptationFilterBar": undefined;
|
|
110
110
|
|
|
111
|
+
"sap/ui/mdc/filterbar/PropertyHelper": undefined;
|
|
112
|
+
|
|
111
113
|
"sap/ui/mdc/filterbar/vh/CollectiveSearchSelect": undefined;
|
|
112
114
|
|
|
113
115
|
"sap/ui/mdc/filterbar/vh/FilterBar": undefined;
|
|
@@ -192,14 +194,20 @@ declare namespace sap {
|
|
|
192
194
|
|
|
193
195
|
"sap/ui/mdc/util/PropertyHelper": undefined;
|
|
194
196
|
|
|
197
|
+
"sap/ui/mdc/util/TypeMap": undefined;
|
|
198
|
+
|
|
195
199
|
"sap/ui/mdc/util/TypeUtil": undefined;
|
|
196
200
|
|
|
201
|
+
"sap/ui/mdc/util/TypeUtilFactory": undefined;
|
|
202
|
+
|
|
197
203
|
"sap/ui/mdc/ValueHelp": undefined;
|
|
198
204
|
|
|
199
205
|
"sap/ui/mdc/valuehelp/base/Container": undefined;
|
|
200
206
|
|
|
201
207
|
"sap/ui/mdc/valuehelp/base/Content": undefined;
|
|
202
208
|
|
|
209
|
+
"sap/ui/mdc/valuehelp/base/DefineConditionPanel": undefined;
|
|
210
|
+
|
|
203
211
|
"sap/ui/mdc/valuehelp/base/DialogTab": undefined;
|
|
204
212
|
|
|
205
213
|
"sap/ui/mdc/valuehelp/base/FilterableListContent": undefined;
|
|
@@ -212,6 +220,8 @@ declare namespace sap {
|
|
|
212
220
|
|
|
213
221
|
"sap/ui/mdc/valuehelp/content/FixedList": undefined;
|
|
214
222
|
|
|
223
|
+
"sap/ui/mdc/valuehelp/content/FixedListItem": undefined;
|
|
224
|
+
|
|
215
225
|
"sap/ui/mdc/valuehelp/content/MDCTable": undefined;
|
|
216
226
|
|
|
217
227
|
"sap/ui/mdc/valuehelp/content/MTable": 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.114.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -65,6 +65,14 @@ declare namespace sap {
|
|
|
65
65
|
|
|
66
66
|
interface $SelectionPluginSettings
|
|
67
67
|
extends sap.ui.core.$ElementSettings {
|
|
68
|
+
/**
|
|
69
|
+
* Indicates whether this plugin is enabled.
|
|
70
|
+
*/
|
|
71
|
+
enabled?:
|
|
72
|
+
| boolean
|
|
73
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
74
|
+
| `{${string}}`;
|
|
75
|
+
|
|
68
76
|
/**
|
|
69
77
|
* This event is fired when the selection is changed.
|
|
70
78
|
*/
|
|
@@ -612,6 +620,33 @@ declare namespace sap {
|
|
|
612
620
|
*/
|
|
613
621
|
mParameters?: object
|
|
614
622
|
): this;
|
|
623
|
+
/**
|
|
624
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
625
|
+
*
|
|
626
|
+
* Indicates whether this plugin is enabled.
|
|
627
|
+
*
|
|
628
|
+
* Default value is `true`.
|
|
629
|
+
*
|
|
630
|
+
* @returns Value of property `enabled`
|
|
631
|
+
*/
|
|
632
|
+
getEnabled(): boolean;
|
|
633
|
+
/**
|
|
634
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
635
|
+
*
|
|
636
|
+
* Indicates whether this plugin is enabled.
|
|
637
|
+
*
|
|
638
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
639
|
+
*
|
|
640
|
+
* Default value is `true`.
|
|
641
|
+
*
|
|
642
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
643
|
+
*/
|
|
644
|
+
setEnabled(
|
|
645
|
+
/**
|
|
646
|
+
* New value for property `enabled`
|
|
647
|
+
*/
|
|
648
|
+
bEnabled?: boolean
|
|
649
|
+
): this;
|
|
615
650
|
}
|
|
616
651
|
}
|
|
617
652
|
|