@openui5/types 1.115.0 → 1.115.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 +860 -754
- package/types/sap.m.d.ts +8300 -6415
- package/types/sap.tnt.d.ts +81 -74
- package/types/sap.ui.codeeditor.d.ts +40 -25
- package/types/sap.ui.commons.d.ts +991 -672
- package/types/sap.ui.core.d.ts +2853 -2263
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +85 -47
- package/types/sap.ui.integration.d.ts +355 -280
- package/types/sap.ui.layout.d.ts +399 -416
- package/types/sap.ui.mdc.d.ts +1016 -792
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +25 -11
- package/types/sap.ui.support.d.ts +12 -13
- package/types/sap.ui.table.d.ts +498 -354
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1228 -894
- package/types/sap.ui.ux3.d.ts +1023 -613
- package/types/sap.ui.webc.common.d.ts +7 -9
- package/types/sap.ui.webc.fiori.d.ts +578 -408
- package/types/sap.ui.webc.main.d.ts +1521 -878
- package/types/sap.uxap.d.ts +304 -267
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.115.
|
|
1
|
+
// For Library Version: 1.115.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/fl/library" {}
|
|
4
4
|
|
|
@@ -6,8 +6,8 @@ declare module "sap/ui/fl/apply/api/ControlVariantApplyAPI" {
|
|
|
6
6
|
import ManagedObject from "sap/ui/base/ManagedObject";
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
* @
|
|
10
|
-
* @
|
|
9
|
+
* @since 1.67
|
|
10
|
+
* @experimental (since 1.67)
|
|
11
11
|
*
|
|
12
12
|
* Provides an API for applications to work with control variants. See also {@link sap.ui.fl.variants.VariantManagement}.
|
|
13
13
|
*/
|
|
@@ -116,7 +116,7 @@ declare module "sap/ui/fl/transport/TransportDialog" {
|
|
|
116
116
|
* transport request. It is not a generic utility, but part of the Variantmanament and therefore cannot
|
|
117
117
|
* be used in any other application.
|
|
118
118
|
*/
|
|
119
|
-
class TransportDialog extends Dialog {
|
|
119
|
+
export default class TransportDialog extends Dialog {
|
|
120
120
|
/**
|
|
121
121
|
* Constructor for a new transport/TransportDialog.
|
|
122
122
|
*
|
|
@@ -184,7 +184,6 @@ declare module "sap/ui/fl/transport/TransportDialog" {
|
|
|
184
184
|
*/
|
|
185
185
|
static getMetadata(): ElementMetadata;
|
|
186
186
|
}
|
|
187
|
-
export default TransportDialog;
|
|
188
187
|
|
|
189
188
|
export interface $TransportDialogSettings extends $DialogSettings {}
|
|
190
189
|
}
|
|
@@ -203,13 +202,13 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
203
202
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
204
203
|
|
|
205
204
|
/**
|
|
206
|
-
* @
|
|
205
|
+
* @since 1.56
|
|
207
206
|
*
|
|
208
207
|
* Can be used to manage variants. You can use this control in most controls that are enabled for key
|
|
209
208
|
* user adaptation.
|
|
210
209
|
* **Note: **On the user interface, variants are generally referred to as "views".
|
|
211
210
|
*/
|
|
212
|
-
class VariantManagement
|
|
211
|
+
export default class VariantManagement
|
|
213
212
|
extends Control
|
|
214
213
|
implements
|
|
215
214
|
IShrinkable,
|
|
@@ -406,7 +405,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
406
405
|
/**
|
|
407
406
|
* The function to be called when the event occurs
|
|
408
407
|
*/
|
|
409
|
-
fnFunction: (p1:
|
|
408
|
+
fnFunction: (p1: VariantManagement$ManageEvent) => void,
|
|
410
409
|
/**
|
|
411
410
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
412
411
|
* itself
|
|
@@ -427,7 +426,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
427
426
|
/**
|
|
428
427
|
* The function to be called when the event occurs
|
|
429
428
|
*/
|
|
430
|
-
fnFunction: (p1:
|
|
429
|
+
fnFunction: (p1: VariantManagement$ManageEvent) => void,
|
|
431
430
|
/**
|
|
432
431
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
433
432
|
* itself
|
|
@@ -454,7 +453,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
454
453
|
/**
|
|
455
454
|
* The function to be called when the event occurs
|
|
456
455
|
*/
|
|
457
|
-
fnFunction: (p1:
|
|
456
|
+
fnFunction: (p1: VariantManagement$SaveEvent) => void,
|
|
458
457
|
/**
|
|
459
458
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
460
459
|
* itself
|
|
@@ -476,7 +475,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
476
475
|
/**
|
|
477
476
|
* The function to be called when the event occurs
|
|
478
477
|
*/
|
|
479
|
-
fnFunction: (p1:
|
|
478
|
+
fnFunction: (p1: VariantManagement$SaveEvent) => void,
|
|
480
479
|
/**
|
|
481
480
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
482
481
|
* itself
|
|
@@ -502,7 +501,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
502
501
|
/**
|
|
503
502
|
* The function to be called when the event occurs
|
|
504
503
|
*/
|
|
505
|
-
fnFunction: (p1:
|
|
504
|
+
fnFunction: (p1: VariantManagement$SelectEvent) => void,
|
|
506
505
|
/**
|
|
507
506
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
508
507
|
* itself
|
|
@@ -523,7 +522,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
523
522
|
/**
|
|
524
523
|
* The function to be called when the event occurs
|
|
525
524
|
*/
|
|
526
|
-
fnFunction: (p1:
|
|
525
|
+
fnFunction: (p1: VariantManagement$SelectEvent) => void,
|
|
527
526
|
/**
|
|
528
527
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
529
528
|
* itself
|
|
@@ -575,7 +574,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
575
574
|
/**
|
|
576
575
|
* The function to be called, when the event occurs
|
|
577
576
|
*/
|
|
578
|
-
fnFunction: (p1:
|
|
577
|
+
fnFunction: (p1: VariantManagement$ManageEvent) => void,
|
|
579
578
|
/**
|
|
580
579
|
* Context object on which the given function had to be called
|
|
581
580
|
*/
|
|
@@ -592,7 +591,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
592
591
|
/**
|
|
593
592
|
* The function to be called, when the event occurs
|
|
594
593
|
*/
|
|
595
|
-
fnFunction: (p1:
|
|
594
|
+
fnFunction: (p1: VariantManagement$SaveEvent) => void,
|
|
596
595
|
/**
|
|
597
596
|
* Context object on which the given function had to be called
|
|
598
597
|
*/
|
|
@@ -609,14 +608,14 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
609
608
|
/**
|
|
610
609
|
* The function to be called, when the event occurs
|
|
611
610
|
*/
|
|
612
|
-
fnFunction: (p1:
|
|
611
|
+
fnFunction: (p1: VariantManagement$SelectEvent) => void,
|
|
613
612
|
/**
|
|
614
613
|
* Context object on which the given function had to be called
|
|
615
614
|
*/
|
|
616
615
|
oListener?: object
|
|
617
616
|
): this;
|
|
618
617
|
/**
|
|
619
|
-
* @
|
|
618
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
620
619
|
*
|
|
621
620
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
622
621
|
*
|
|
@@ -629,7 +628,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
629
628
|
mParameters?: object
|
|
630
629
|
): this;
|
|
631
630
|
/**
|
|
632
|
-
* @
|
|
631
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
633
632
|
*
|
|
634
633
|
* Fires event {@link #event:initialized initialized} to attached listeners.
|
|
635
634
|
*
|
|
@@ -642,7 +641,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
642
641
|
mParameters?: object
|
|
643
642
|
): this;
|
|
644
643
|
/**
|
|
645
|
-
* @
|
|
644
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
646
645
|
*
|
|
647
646
|
* Fires event {@link #event:manage manage} to attached listeners.
|
|
648
647
|
*
|
|
@@ -652,10 +651,10 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
652
651
|
/**
|
|
653
652
|
* Parameters to pass along with the event
|
|
654
653
|
*/
|
|
655
|
-
mParameters?: $
|
|
654
|
+
mParameters?: VariantManagement$ManageEventParameters
|
|
656
655
|
): this;
|
|
657
656
|
/**
|
|
658
|
-
* @
|
|
657
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
659
658
|
*
|
|
660
659
|
* Fires event {@link #event:save save} to attached listeners.
|
|
661
660
|
*
|
|
@@ -665,10 +664,10 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
665
664
|
/**
|
|
666
665
|
* Parameters to pass along with the event
|
|
667
666
|
*/
|
|
668
|
-
mParameters?: $
|
|
667
|
+
mParameters?: VariantManagement$SaveEventParameters
|
|
669
668
|
): this;
|
|
670
669
|
/**
|
|
671
|
-
* @
|
|
670
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
672
671
|
*
|
|
673
672
|
* Fires event {@link #event:select select} to attached listeners.
|
|
674
673
|
*
|
|
@@ -678,7 +677,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
678
677
|
/**
|
|
679
678
|
* Parameters to pass along with the event
|
|
680
679
|
*/
|
|
681
|
-
mParameters?: $
|
|
680
|
+
mParameters?: VariantManagement$SelectEventParameters
|
|
682
681
|
): this;
|
|
683
682
|
/**
|
|
684
683
|
* Gets the currently selected variant key.
|
|
@@ -723,7 +722,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
723
722
|
*/
|
|
724
723
|
getFor(): ID[];
|
|
725
724
|
/**
|
|
726
|
-
* @
|
|
725
|
+
* @since 1.104
|
|
727
726
|
*
|
|
728
727
|
* Gets current value of property {@link #getHeaderLevel headerLevel}.
|
|
729
728
|
*
|
|
@@ -757,7 +756,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
757
756
|
*/
|
|
758
757
|
getManualVariantKey(): boolean;
|
|
759
758
|
/**
|
|
760
|
-
* @
|
|
759
|
+
* @since 1.109
|
|
761
760
|
*
|
|
762
761
|
* Gets current value of property {@link #getMaxWidth maxWidth}.
|
|
763
762
|
*
|
|
@@ -785,7 +784,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
785
784
|
*/
|
|
786
785
|
getModified(): boolean;
|
|
787
786
|
/**
|
|
788
|
-
* @
|
|
787
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
789
788
|
*
|
|
790
789
|
* Required by the {@link sap.m.IOverflowToolbarContent} interface. Registers invalidations event which
|
|
791
790
|
* is fired when width of the control is changed.
|
|
@@ -820,7 +819,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
820
819
|
*/
|
|
821
820
|
getShowSetAsDefault(): boolean;
|
|
822
821
|
/**
|
|
823
|
-
* @
|
|
822
|
+
* @since 1.109
|
|
824
823
|
*
|
|
825
824
|
* Gets current value of property {@link #getTitleStyle titleStyle}.
|
|
826
825
|
*
|
|
@@ -929,7 +928,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
929
928
|
bExecuteOnSelectionForStandardDefault?: boolean
|
|
930
929
|
): this;
|
|
931
930
|
/**
|
|
932
|
-
* @
|
|
931
|
+
* @since 1.104
|
|
933
932
|
*
|
|
934
933
|
* Sets a new value for property {@link #getHeaderLevel headerLevel}.
|
|
935
934
|
*
|
|
@@ -984,7 +983,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
984
983
|
bManualVariantKey?: boolean
|
|
985
984
|
): this;
|
|
986
985
|
/**
|
|
987
|
-
* @
|
|
986
|
+
* @since 1.109
|
|
988
987
|
*
|
|
989
988
|
* Sets a new value for property {@link #getMaxWidth maxWidth}.
|
|
990
989
|
*
|
|
@@ -1056,7 +1055,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1056
1055
|
bShowSetAsDefault?: boolean
|
|
1057
1056
|
): this;
|
|
1058
1057
|
/**
|
|
1059
|
-
* @
|
|
1058
|
+
* @since 1.109
|
|
1060
1059
|
*
|
|
1061
1060
|
* Sets a new value for property {@link #getTitleStyle titleStyle}.
|
|
1062
1061
|
*
|
|
@@ -1094,7 +1093,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1094
1093
|
bUpdateVariantInURL?: boolean
|
|
1095
1094
|
): this;
|
|
1096
1095
|
}
|
|
1097
|
-
export default VariantManagement;
|
|
1098
1096
|
|
|
1099
1097
|
export interface $VariantManagementSettings extends $ControlSettings {
|
|
1100
1098
|
/**
|
|
@@ -1156,7 +1154,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1156
1154
|
| PropertyBindingInfo;
|
|
1157
1155
|
|
|
1158
1156
|
/**
|
|
1159
|
-
* @
|
|
1157
|
+
* @since 1.104
|
|
1160
1158
|
*
|
|
1161
1159
|
* Semantic level of the header. For more information, see {@link sap.m.Title#setLevel}.
|
|
1162
1160
|
*/
|
|
@@ -1166,7 +1164,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1166
1164
|
| `{${string}}`;
|
|
1167
1165
|
|
|
1168
1166
|
/**
|
|
1169
|
-
* @
|
|
1167
|
+
* @since 1.109
|
|
1170
1168
|
*
|
|
1171
1169
|
* Defines the style of the title. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
1172
1170
|
*/
|
|
@@ -1176,7 +1174,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1176
1174
|
| `{${string}}`;
|
|
1177
1175
|
|
|
1178
1176
|
/**
|
|
1179
|
-
* @
|
|
1177
|
+
* @since 1.109
|
|
1180
1178
|
*
|
|
1181
1179
|
* Sets the maximum width of the control.
|
|
1182
1180
|
*/
|
|
@@ -1196,7 +1194,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1196
1194
|
* This event is fired when the Save View dialog or the Save As dialog is closed with the
|
|
1197
1195
|
* save button.
|
|
1198
1196
|
*/
|
|
1199
|
-
save?: (oEvent: Event
|
|
1197
|
+
save?: (oEvent: Event<VariantManagement$SaveEventParameters>) => void;
|
|
1200
1198
|
|
|
1201
1199
|
/**
|
|
1202
1200
|
* This event is fired when users presses the cancel button inside Save As dialog.
|
|
@@ -1206,19 +1204,35 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1206
1204
|
/**
|
|
1207
1205
|
* This event is fired when users apply changes to variants in the Manage Views dialog.
|
|
1208
1206
|
*/
|
|
1209
|
-
manage?: (oEvent: Event
|
|
1207
|
+
manage?: (oEvent: Event<VariantManagement$ManageEventParameters>) => void;
|
|
1210
1208
|
|
|
1211
1209
|
/**
|
|
1212
1210
|
* This event is fired when a new variant is selected.
|
|
1213
1211
|
*/
|
|
1214
|
-
select?: (oEvent: Event
|
|
1212
|
+
select?: (oEvent: Event<VariantManagement$SelectEventParameters>) => void;
|
|
1215
1213
|
}
|
|
1216
1214
|
|
|
1217
|
-
export interface $
|
|
1215
|
+
export interface VariantManagement$CancelEventParameters {}
|
|
1218
1216
|
|
|
1219
|
-
|
|
1217
|
+
/**
|
|
1218
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$CancelEventParameters'
|
|
1219
|
+
* in 1.115.1 and any later releases.
|
|
1220
|
+
*/
|
|
1221
|
+
export type $VariantManagementCancelEventParameters = VariantManagement$CancelEventParameters;
|
|
1222
|
+
|
|
1223
|
+
export type VariantManagement$CancelEvent = Event<VariantManagement$CancelEventParameters>;
|
|
1224
|
+
|
|
1225
|
+
export interface VariantManagement$InitializedEventParameters {}
|
|
1226
|
+
|
|
1227
|
+
/**
|
|
1228
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$InitializedEventParameters'
|
|
1229
|
+
* in 1.115.1 and any later releases.
|
|
1230
|
+
*/
|
|
1231
|
+
export type $VariantManagementInitializedEventParameters = VariantManagement$InitializedEventParameters;
|
|
1232
|
+
|
|
1233
|
+
export type VariantManagement$InitializedEvent = Event<VariantManagement$InitializedEventParameters>;
|
|
1220
1234
|
|
|
1221
|
-
export interface $
|
|
1235
|
+
export interface VariantManagement$ManageEventParameters {
|
|
1222
1236
|
/**
|
|
1223
1237
|
* List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
|
|
1224
1238
|
* of the variant
|
|
@@ -1241,7 +1255,15 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1241
1255
|
def?: string;
|
|
1242
1256
|
}
|
|
1243
1257
|
|
|
1244
|
-
|
|
1258
|
+
/**
|
|
1259
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$ManageEventParameters'
|
|
1260
|
+
* in 1.115.1 and any later releases.
|
|
1261
|
+
*/
|
|
1262
|
+
export type $VariantManagementManageEventParameters = VariantManagement$ManageEventParameters;
|
|
1263
|
+
|
|
1264
|
+
export type VariantManagement$ManageEvent = Event<VariantManagement$ManageEventParameters>;
|
|
1265
|
+
|
|
1266
|
+
export interface VariantManagement$SaveEventParameters {
|
|
1245
1267
|
/**
|
|
1246
1268
|
* Variant title
|
|
1247
1269
|
*/
|
|
@@ -1280,19 +1302,35 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1280
1302
|
tile?: boolean;
|
|
1281
1303
|
}
|
|
1282
1304
|
|
|
1283
|
-
|
|
1305
|
+
/**
|
|
1306
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$SaveEventParameters'
|
|
1307
|
+
* in 1.115.1 and any later releases.
|
|
1308
|
+
*/
|
|
1309
|
+
export type $VariantManagementSaveEventParameters = VariantManagement$SaveEventParameters;
|
|
1310
|
+
|
|
1311
|
+
export type VariantManagement$SaveEvent = Event<VariantManagement$SaveEventParameters>;
|
|
1312
|
+
|
|
1313
|
+
export interface VariantManagement$SelectEventParameters {
|
|
1284
1314
|
/**
|
|
1285
1315
|
* Variant key
|
|
1286
1316
|
*/
|
|
1287
1317
|
key?: string;
|
|
1288
1318
|
}
|
|
1319
|
+
|
|
1320
|
+
/**
|
|
1321
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$SelectEventParameters'
|
|
1322
|
+
* in 1.115.1 and any later releases.
|
|
1323
|
+
*/
|
|
1324
|
+
export type $VariantManagementSelectEventParameters = VariantManagement$SelectEventParameters;
|
|
1325
|
+
|
|
1326
|
+
export type VariantManagement$SelectEvent = Event<VariantManagement$SelectEventParameters>;
|
|
1289
1327
|
}
|
|
1290
1328
|
|
|
1291
1329
|
declare module "sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVariant" {
|
|
1292
1330
|
import Metadata from "sap/ui/base/Metadata";
|
|
1293
1331
|
|
|
1294
1332
|
/**
|
|
1295
|
-
* @
|
|
1333
|
+
* @since 1.87
|
|
1296
1334
|
*
|
|
1297
1335
|
* Abstraction providing an API to handle an ABAP extension variant. Serves also as base class and dummy
|
|
1298
1336
|
* implementation.
|
|
@@ -1336,7 +1374,7 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/MultiTenantABAPExte
|
|
|
1336
1374
|
import Metadata from "sap/ui/base/Metadata";
|
|
1337
1375
|
|
|
1338
1376
|
/**
|
|
1339
|
-
* @
|
|
1377
|
+
* @since 1.87
|
|
1340
1378
|
*
|
|
1341
1379
|
* Extension variant for ABAP multi tenant environments (via so called Predefined Fields)
|
|
1342
1380
|
*/
|
|
@@ -1379,7 +1417,7 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/SingleTenantABAPExt
|
|
|
1379
1417
|
import Metadata from "sap/ui/base/Metadata";
|
|
1380
1418
|
|
|
1381
1419
|
/**
|
|
1382
|
-
* @
|
|
1420
|
+
* @since 1.87
|
|
1383
1421
|
*
|
|
1384
1422
|
* Extension variant for ABAP single tenant environnments (via so called Custom Fields)
|
|
1385
1423
|
*/
|
|
@@ -1420,7 +1458,7 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/SingleTenantABAPExt
|
|
|
1420
1458
|
|
|
1421
1459
|
declare module "sap/ui/fl/write/api/FeaturesAPI" {
|
|
1422
1460
|
/**
|
|
1423
|
-
* @
|
|
1461
|
+
* @since 1.70
|
|
1424
1462
|
*
|
|
1425
1463
|
* Provides an API to determine which features are available for flexibility.
|
|
1426
1464
|
*/
|