@sapui5/types 1.114.0 → 1.115.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 +70 -60
- package/types/sap.ca.ui.d.ts +207 -105
- package/types/sap.chart.d.ts +148 -129
- package/types/sap.collaboration.d.ts +98 -87
- package/types/sap.esh.search.ui.d.ts +92 -2
- package/types/sap.f.d.ts +1378 -1019
- package/types/sap.fe.core.d.ts +48 -163
- package/types/sap.fe.macros.d.ts +76 -16
- package/types/sap.fe.navigation.d.ts +42 -31
- package/types/sap.fe.templates.d.ts +15 -293
- package/types/sap.fe.test.d.ts +102 -46
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1987 -1251
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +75 -29
- package/types/sap.m.d.ts +6945 -4884
- package/types/sap.makit.d.ts +43 -18
- package/types/sap.me.d.ts +112 -69
- package/types/sap.ndc.d.ts +101 -39
- package/types/sap.ovp.d.ts +3 -3
- package/types/sap.rules.ui.d.ts +53 -24
- package/types/sap.sac.df.d.ts +11 -8
- package/types/sap.suite.ui.commons.d.ts +2090 -1437
- package/types/sap.suite.ui.generic.template.d.ts +47 -44
- package/types/sap.suite.ui.microchart.d.ts +242 -163
- package/types/sap.tnt.d.ts +138 -67
- package/types/sap.ui.codeeditor.d.ts +37 -30
- package/types/sap.ui.commons.d.ts +936 -708
- package/types/sap.ui.comp.d.ts +2336 -1606
- package/types/sap.ui.core.d.ts +4625 -2580
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +38 -32
- package/types/sap.ui.fl.d.ts +102 -80
- package/types/sap.ui.generic.app.d.ts +58 -49
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +219 -167
- package/types/sap.ui.layout.d.ts +378 -398
- package/types/sap.ui.mdc.d.ts +21983 -139
- package/types/sap.ui.richtexteditor.d.ts +55 -50
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +13 -11
- package/types/sap.ui.support.d.ts +7 -7
- package/types/sap.ui.table.d.ts +594 -478
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +839 -587
- package/types/sap.ui.ux3.d.ts +847 -592
- package/types/sap.ui.vbm.d.ts +1018 -760
- package/types/sap.ui.vk.d.ts +2858 -1896
- package/types/sap.ui.vtm.d.ts +650 -479
- package/types/sap.ui.webc.common.d.ts +5 -3
- package/types/sap.ui.webc.fiori.d.ts +530 -345
- package/types/sap.ui.webc.main.d.ts +1114 -835
- package/types/sap.uiext.inbox.d.ts +79 -37
- package/types/sap.ushell.d.ts +441 -213
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +309 -222
- package/types/sap.viz.d.ts +932 -521
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +15 -10
- package/types/sap.zen.crosstab.d.ts +7 -4
- package/types/sap.zen.dsh.d.ts +143 -87
package/types/sap.insights.d.ts
CHANGED
package/types/sap.landvisz.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.115.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/landvisz/library" {
|
|
4
4
|
/**
|
|
@@ -398,7 +398,7 @@ declare module "sap/landvisz/ConnectionEntity" {
|
|
|
398
398
|
*
|
|
399
399
|
* Connection Entity of Dependency view
|
|
400
400
|
*/
|
|
401
|
-
|
|
401
|
+
class ConnectionEntity extends Control {
|
|
402
402
|
/**
|
|
403
403
|
* Constructor for a new ConnectionEntity.
|
|
404
404
|
*
|
|
@@ -541,8 +541,8 @@ declare module "sap/landvisz/ConnectionEntity" {
|
|
|
541
541
|
*/
|
|
542
542
|
getType(): ConnectionType | keyof typeof ConnectionType;
|
|
543
543
|
/**
|
|
544
|
-
* Checks for the provided `sap.landvisz.internal.LinearRowField` in the aggregation {@link #getConnectionData
|
|
545
|
-
*
|
|
544
|
+
* Checks for the provided `sap.landvisz.internal.LinearRowField` in the aggregation {@link #getConnectionData connectionData}.
|
|
545
|
+
* and returns its index if found or -1 otherwise.
|
|
546
546
|
*
|
|
547
547
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
548
548
|
*/
|
|
@@ -696,6 +696,7 @@ declare module "sap/landvisz/ConnectionEntity" {
|
|
|
696
696
|
sType?: ConnectionType | keyof typeof ConnectionType
|
|
697
697
|
): this;
|
|
698
698
|
}
|
|
699
|
+
export default ConnectionEntity;
|
|
699
700
|
|
|
700
701
|
export interface $ConnectionEntitySettings extends $ControlSettings {
|
|
701
702
|
/**
|
|
@@ -759,7 +760,7 @@ declare module "sap/landvisz/Connector" {
|
|
|
759
760
|
*
|
|
760
761
|
* Connector of the entities
|
|
761
762
|
*/
|
|
762
|
-
|
|
763
|
+
class Connector extends Control {
|
|
763
764
|
/**
|
|
764
765
|
* Constructor for a new Connector.
|
|
765
766
|
*
|
|
@@ -867,6 +868,7 @@ declare module "sap/landvisz/Connector" {
|
|
|
867
868
|
sTarget?: string
|
|
868
869
|
): this;
|
|
869
870
|
}
|
|
871
|
+
export default Connector;
|
|
870
872
|
|
|
871
873
|
export interface $ConnectorSettings extends $ControlSettings {
|
|
872
874
|
/**
|
|
@@ -902,7 +904,7 @@ declare module "sap/landvisz/internal/ActionBar" {
|
|
|
902
904
|
/**
|
|
903
905
|
* A control that render actions of a system
|
|
904
906
|
*/
|
|
905
|
-
|
|
907
|
+
class ActionBar extends Control {
|
|
906
908
|
/**
|
|
907
909
|
* Constructor for a new internal/ActionBar.
|
|
908
910
|
*
|
|
@@ -1310,6 +1312,7 @@ declare module "sap/landvisz/internal/ActionBar" {
|
|
|
1310
1312
|
sRenderingSize?: EntityCSSSize | keyof typeof EntityCSSSize
|
|
1311
1313
|
): this;
|
|
1312
1314
|
}
|
|
1315
|
+
export default ActionBar;
|
|
1313
1316
|
|
|
1314
1317
|
export interface $ActionBarSettings extends $ControlSettings {
|
|
1315
1318
|
/**
|
|
@@ -1368,6 +1371,8 @@ declare module "sap/landvisz/internal/ActionBar" {
|
|
|
1368
1371
|
*/
|
|
1369
1372
|
select?: (oEvent: Event) => void;
|
|
1370
1373
|
}
|
|
1374
|
+
|
|
1375
|
+
export interface $ActionBarSelectEventParameters {}
|
|
1371
1376
|
}
|
|
1372
1377
|
|
|
1373
1378
|
declare module "sap/landvisz/internal/DataContainer" {
|
|
@@ -1387,7 +1392,7 @@ declare module "sap/landvisz/internal/DataContainer" {
|
|
|
1387
1392
|
/**
|
|
1388
1393
|
* A control that renders the data container section in a system
|
|
1389
1394
|
*/
|
|
1390
|
-
|
|
1395
|
+
class DataContainer extends Control {
|
|
1391
1396
|
/**
|
|
1392
1397
|
* Constructor for a new internal/DataContainer.
|
|
1393
1398
|
*
|
|
@@ -1697,6 +1702,7 @@ declare module "sap/landvisz/internal/DataContainer" {
|
|
|
1697
1702
|
sType?: LandscapeObject | keyof typeof LandscapeObject
|
|
1698
1703
|
): this;
|
|
1699
1704
|
}
|
|
1705
|
+
export default DataContainer;
|
|
1700
1706
|
|
|
1701
1707
|
export interface $DataContainerSettings extends $ControlSettings {
|
|
1702
1708
|
/**
|
|
@@ -1735,6 +1741,8 @@ declare module "sap/landvisz/internal/DataContainer" {
|
|
|
1735
1741
|
*/
|
|
1736
1742
|
select?: (oEvent: Event) => void;
|
|
1737
1743
|
}
|
|
1744
|
+
|
|
1745
|
+
export interface $DataContainerSelectEventParameters {}
|
|
1738
1746
|
}
|
|
1739
1747
|
|
|
1740
1748
|
declare module "sap/landvisz/internal/DeploymentType" {
|
|
@@ -1747,7 +1755,7 @@ declare module "sap/landvisz/internal/DeploymentType" {
|
|
|
1747
1755
|
/**
|
|
1748
1756
|
* A control to render deployment type of a component
|
|
1749
1757
|
*/
|
|
1750
|
-
|
|
1758
|
+
class DeploymentType extends Control {
|
|
1751
1759
|
/**
|
|
1752
1760
|
* Constructor for a new internal/DeploymentType.
|
|
1753
1761
|
*
|
|
@@ -1832,6 +1840,7 @@ declare module "sap/landvisz/internal/DeploymentType" {
|
|
|
1832
1840
|
sType?: string
|
|
1833
1841
|
): this;
|
|
1834
1842
|
}
|
|
1843
|
+
export default DeploymentType;
|
|
1835
1844
|
|
|
1836
1845
|
export interface $DeploymentTypeSettings extends $ControlSettings {
|
|
1837
1846
|
/**
|
|
@@ -1855,7 +1864,7 @@ declare module "sap/landvisz/internal/EntityAction" {
|
|
|
1855
1864
|
/**
|
|
1856
1865
|
* A control to specify entity actions
|
|
1857
1866
|
*/
|
|
1858
|
-
|
|
1867
|
+
class EntityAction extends Control {
|
|
1859
1868
|
/**
|
|
1860
1869
|
* Constructor for a new internal/EntityAction.
|
|
1861
1870
|
*
|
|
@@ -2063,6 +2072,7 @@ declare module "sap/landvisz/internal/EntityAction" {
|
|
|
2063
2072
|
sRenderingSize?: string
|
|
2064
2073
|
): this;
|
|
2065
2074
|
}
|
|
2075
|
+
export default EntityAction;
|
|
2066
2076
|
|
|
2067
2077
|
export interface $EntityActionSettings extends $ControlSettings {
|
|
2068
2078
|
/**
|
|
@@ -2085,6 +2095,8 @@ declare module "sap/landvisz/internal/EntityAction" {
|
|
|
2085
2095
|
*/
|
|
2086
2096
|
press?: (oEvent: Event) => void;
|
|
2087
2097
|
}
|
|
2098
|
+
|
|
2099
|
+
export interface $EntityActionPressEventParameters {}
|
|
2088
2100
|
}
|
|
2089
2101
|
|
|
2090
2102
|
declare module "sap/landvisz/internal/EntityCustomAction" {
|
|
@@ -2101,7 +2113,7 @@ declare module "sap/landvisz/internal/EntityCustomAction" {
|
|
|
2101
2113
|
/**
|
|
2102
2114
|
* A control to render custom actions of visualization control
|
|
2103
2115
|
*/
|
|
2104
|
-
|
|
2116
|
+
class EntityCustomAction extends Control {
|
|
2105
2117
|
/**
|
|
2106
2118
|
* Constructor for a new internal/EntityCustomAction.
|
|
2107
2119
|
*
|
|
@@ -2290,6 +2302,7 @@ declare module "sap/landvisz/internal/EntityCustomAction" {
|
|
|
2290
2302
|
sRenderingSize?: EntityCSSSize | keyof typeof EntityCSSSize
|
|
2291
2303
|
): this;
|
|
2292
2304
|
}
|
|
2305
|
+
export default EntityCustomAction;
|
|
2293
2306
|
|
|
2294
2307
|
export interface $EntityCustomActionSettings extends $ControlSettings {
|
|
2295
2308
|
/**
|
|
@@ -2310,6 +2323,8 @@ declare module "sap/landvisz/internal/EntityCustomAction" {
|
|
|
2310
2323
|
*/
|
|
2311
2324
|
select?: (oEvent: Event) => void;
|
|
2312
2325
|
}
|
|
2326
|
+
|
|
2327
|
+
export interface $EntityCustomActionSelectEventParameters {}
|
|
2313
2328
|
}
|
|
2314
2329
|
|
|
2315
2330
|
declare module "sap/landvisz/internal/HeaderList" {
|
|
@@ -2326,7 +2341,7 @@ declare module "sap/landvisz/internal/HeaderList" {
|
|
|
2326
2341
|
/**
|
|
2327
2342
|
* A control to render headers of a control
|
|
2328
2343
|
*/
|
|
2329
|
-
|
|
2344
|
+
class HeaderList extends Control {
|
|
2330
2345
|
/**
|
|
2331
2346
|
* Constructor for a new internal/HeaderList.
|
|
2332
2347
|
*
|
|
@@ -2559,6 +2574,7 @@ declare module "sap/landvisz/internal/HeaderList" {
|
|
|
2559
2574
|
sType?: LandscapeObject | keyof typeof LandscapeObject
|
|
2560
2575
|
): this;
|
|
2561
2576
|
}
|
|
2577
|
+
export default HeaderList;
|
|
2562
2578
|
|
|
2563
2579
|
export interface $HeaderListSettings extends $ControlSettings {
|
|
2564
2580
|
/**
|
|
@@ -2589,6 +2605,8 @@ declare module "sap/landvisz/internal/HeaderList" {
|
|
|
2589
2605
|
*/
|
|
2590
2606
|
press?: (oEvent: Event) => void;
|
|
2591
2607
|
}
|
|
2608
|
+
|
|
2609
|
+
export interface $HeaderListPressEventParameters {}
|
|
2592
2610
|
}
|
|
2593
2611
|
|
|
2594
2612
|
declare module "sap/landvisz/internal/IdentificationBar" {
|
|
@@ -2605,7 +2623,7 @@ declare module "sap/landvisz/internal/IdentificationBar" {
|
|
|
2605
2623
|
/**
|
|
2606
2624
|
* Acontrol to render identification bar of a system
|
|
2607
2625
|
*/
|
|
2608
|
-
|
|
2626
|
+
class IdentificationBar extends Control {
|
|
2609
2627
|
/**
|
|
2610
2628
|
* Constructor for a new internal/IdentificationBar.
|
|
2611
2629
|
*
|
|
@@ -2959,6 +2977,7 @@ declare module "sap/landvisz/internal/IdentificationBar" {
|
|
|
2959
2977
|
sType?: string
|
|
2960
2978
|
): this;
|
|
2961
2979
|
}
|
|
2980
|
+
export default IdentificationBar;
|
|
2962
2981
|
|
|
2963
2982
|
export interface $IdentificationBarSettings extends $ControlSettings {
|
|
2964
2983
|
/**
|
|
@@ -3017,6 +3036,8 @@ declare module "sap/landvisz/internal/IdentificationBar" {
|
|
|
3017
3036
|
*/
|
|
3018
3037
|
select?: (oEvent: Event) => void;
|
|
3019
3038
|
}
|
|
3039
|
+
|
|
3040
|
+
export interface $IdentificationBarSelectEventParameters {}
|
|
3020
3041
|
}
|
|
3021
3042
|
|
|
3022
3043
|
declare module "sap/landvisz/internal/LinearRowField" {
|
|
@@ -3031,7 +3052,7 @@ declare module "sap/landvisz/internal/LinearRowField" {
|
|
|
3031
3052
|
/**
|
|
3032
3053
|
* A control to render linear row fields in data container region of a system
|
|
3033
3054
|
*/
|
|
3034
|
-
|
|
3055
|
+
class LinearRowField extends Control {
|
|
3035
3056
|
/**
|
|
3036
3057
|
* Constructor for a new internal/LinearRowField.
|
|
3037
3058
|
*
|
|
@@ -3304,6 +3325,7 @@ declare module "sap/landvisz/internal/LinearRowField" {
|
|
|
3304
3325
|
sValue?: string
|
|
3305
3326
|
): this;
|
|
3306
3327
|
}
|
|
3328
|
+
export default LinearRowField;
|
|
3307
3329
|
|
|
3308
3330
|
export interface $LinearRowFieldSettings extends $ControlSettings {
|
|
3309
3331
|
/**
|
|
@@ -3368,7 +3390,7 @@ declare module "sap/landvisz/internal/ModelingStatus" {
|
|
|
3368
3390
|
*
|
|
3369
3391
|
* Modeling Status of entity
|
|
3370
3392
|
*/
|
|
3371
|
-
|
|
3393
|
+
class ModelingStatus extends Control {
|
|
3372
3394
|
/**
|
|
3373
3395
|
* Constructor for a new internal/ModelingStatus.
|
|
3374
3396
|
*
|
|
@@ -3522,6 +3544,7 @@ declare module "sap/landvisz/internal/ModelingStatus" {
|
|
|
3522
3544
|
sStatusTooltip?: string
|
|
3523
3545
|
): this;
|
|
3524
3546
|
}
|
|
3547
|
+
export default ModelingStatus;
|
|
3525
3548
|
|
|
3526
3549
|
export interface $ModelingStatusSettings extends $ControlSettings {
|
|
3527
3550
|
/**
|
|
@@ -3563,7 +3586,7 @@ declare module "sap/landvisz/internal/NestedRowField" {
|
|
|
3563
3586
|
/**
|
|
3564
3587
|
* A control to render nester row fields in a control
|
|
3565
3588
|
*/
|
|
3566
|
-
|
|
3589
|
+
class NestedRowField extends Control {
|
|
3567
3590
|
/**
|
|
3568
3591
|
* Constructor for a new internal/NestedRowField.
|
|
3569
3592
|
*
|
|
@@ -3714,8 +3737,8 @@ declare module "sap/landvisz/internal/NestedRowField" {
|
|
|
3714
3737
|
*/
|
|
3715
3738
|
getValueType(): string;
|
|
3716
3739
|
/**
|
|
3717
|
-
* Checks for the provided `sap.landvisz.internal.LinearRowField` in the aggregation {@link #getLinearRows
|
|
3718
|
-
*
|
|
3740
|
+
* Checks for the provided `sap.landvisz.internal.LinearRowField` in the aggregation {@link #getLinearRows linearRows}.
|
|
3741
|
+
* and returns its index if found or -1 otherwise.
|
|
3719
3742
|
*
|
|
3720
3743
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
3721
3744
|
*/
|
|
@@ -3884,6 +3907,7 @@ declare module "sap/landvisz/internal/NestedRowField" {
|
|
|
3884
3907
|
sValueType?: string
|
|
3885
3908
|
): this;
|
|
3886
3909
|
}
|
|
3910
|
+
export default NestedRowField;
|
|
3887
3911
|
|
|
3888
3912
|
export interface $NestedRowFieldSettings extends $ControlSettings {
|
|
3889
3913
|
/**
|
|
@@ -3955,7 +3979,7 @@ declare module "sap/landvisz/internal/SingleDataContainer" {
|
|
|
3955
3979
|
/**
|
|
3956
3980
|
* A control that shows all the tabs separately for a better view
|
|
3957
3981
|
*/
|
|
3958
|
-
|
|
3982
|
+
class SingleDataContainer extends Control {
|
|
3959
3983
|
/**
|
|
3960
3984
|
* Constructor for a new internal/SingleDataContainer.
|
|
3961
3985
|
*
|
|
@@ -4215,6 +4239,7 @@ declare module "sap/landvisz/internal/SingleDataContainer" {
|
|
|
4215
4239
|
sRenderingSize?: string
|
|
4216
4240
|
): this;
|
|
4217
4241
|
}
|
|
4242
|
+
export default SingleDataContainer;
|
|
4218
4243
|
|
|
4219
4244
|
export interface $SingleDataContainerSettings extends $ControlSettings {
|
|
4220
4245
|
/**
|
|
@@ -4237,6 +4262,8 @@ declare module "sap/landvisz/internal/SingleDataContainer" {
|
|
|
4237
4262
|
*/
|
|
4238
4263
|
closed?: (oEvent: Event) => void;
|
|
4239
4264
|
}
|
|
4265
|
+
|
|
4266
|
+
export interface $SingleDataContainerClosedEventParameters {}
|
|
4240
4267
|
}
|
|
4241
4268
|
|
|
4242
4269
|
declare module "sap/landvisz/internal/TreeField" {
|
|
@@ -4256,7 +4283,7 @@ declare module "sap/landvisz/internal/TreeField" {
|
|
|
4256
4283
|
/**
|
|
4257
4284
|
* A control to render tree field in the control
|
|
4258
4285
|
*/
|
|
4259
|
-
|
|
4286
|
+
class TreeField extends Control {
|
|
4260
4287
|
/**
|
|
4261
4288
|
* Constructor for a new internal/TreeField.
|
|
4262
4289
|
*
|
|
@@ -4458,6 +4485,7 @@ declare module "sap/landvisz/internal/TreeField" {
|
|
|
4458
4485
|
oTreeModel?: object
|
|
4459
4486
|
): this;
|
|
4460
4487
|
}
|
|
4488
|
+
export default TreeField;
|
|
4461
4489
|
|
|
4462
4490
|
export interface $TreeFieldSettings extends $ControlSettings {
|
|
4463
4491
|
/**
|
|
@@ -4517,7 +4545,7 @@ declare module "sap/landvisz/LandscapeEntity" {
|
|
|
4517
4545
|
*
|
|
4518
4546
|
* A control to render the system
|
|
4519
4547
|
*/
|
|
4520
|
-
|
|
4548
|
+
class LandscapeEntity extends Control {
|
|
4521
4549
|
/**
|
|
4522
4550
|
* Constructor for a new LandscapeEntity.
|
|
4523
4551
|
*
|
|
@@ -5056,8 +5084,8 @@ declare module "sap/landvisz/LandscapeEntity" {
|
|
|
5056
5084
|
oActionBar: ActionBar
|
|
5057
5085
|
): int;
|
|
5058
5086
|
/**
|
|
5059
|
-
* Checks for the provided `sap.landvisz.internal.DataContainer` in the aggregation {@link #getDataContainers
|
|
5060
|
-
*
|
|
5087
|
+
* Checks for the provided `sap.landvisz.internal.DataContainer` in the aggregation {@link #getDataContainers dataContainers}.
|
|
5088
|
+
* and returns its index if found or -1 otherwise.
|
|
5061
5089
|
*
|
|
5062
5090
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
5063
5091
|
*/
|
|
@@ -5474,6 +5502,7 @@ declare module "sap/landvisz/LandscapeEntity" {
|
|
|
5474
5502
|
sType?: LandscapeObject | keyof typeof LandscapeObject
|
|
5475
5503
|
): this;
|
|
5476
5504
|
}
|
|
5505
|
+
export default LandscapeEntity;
|
|
5477
5506
|
|
|
5478
5507
|
export interface $LandscapeEntitySettings extends $ControlSettings {
|
|
5479
5508
|
/**
|
|
@@ -5631,6 +5660,12 @@ declare module "sap/landvisz/LandscapeEntity" {
|
|
|
5631
5660
|
*/
|
|
5632
5661
|
trackInfoPress?: (oEvent: Event) => void;
|
|
5633
5662
|
}
|
|
5663
|
+
|
|
5664
|
+
export interface $LandscapeEntityMouseOverIdenIconEventParameters {}
|
|
5665
|
+
|
|
5666
|
+
export interface $LandscapeEntityStatusSelectEventParameters {}
|
|
5667
|
+
|
|
5668
|
+
export interface $LandscapeEntityTrackInfoPressEventParameters {}
|
|
5634
5669
|
}
|
|
5635
5670
|
|
|
5636
5671
|
declare module "sap/landvisz/LandscapeViewer" {
|
|
@@ -5668,7 +5703,7 @@ declare module "sap/landvisz/LandscapeViewer" {
|
|
|
5668
5703
|
*
|
|
5669
5704
|
* Visualize the landscape objects in a new user experience
|
|
5670
5705
|
*/
|
|
5671
|
-
|
|
5706
|
+
class LandscapeViewer extends Option {
|
|
5672
5707
|
/**
|
|
5673
5708
|
* Constructor for a new LandscapeViewer.
|
|
5674
5709
|
*
|
|
@@ -6244,8 +6279,8 @@ declare module "sap/landvisz/LandscapeViewer" {
|
|
|
6244
6279
|
*/
|
|
6245
6280
|
getWidth(): int;
|
|
6246
6281
|
/**
|
|
6247
|
-
* Checks for the provided `sap.landvisz.ConnectionEntity` in the aggregation {@link #getConnectionEntities
|
|
6248
|
-
*
|
|
6282
|
+
* Checks for the provided `sap.landvisz.ConnectionEntity` in the aggregation {@link #getConnectionEntities connectionEntities}.
|
|
6283
|
+
* and returns its index if found or -1 otherwise.
|
|
6249
6284
|
*
|
|
6250
6285
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
6251
6286
|
*/
|
|
@@ -6869,6 +6904,7 @@ declare module "sap/landvisz/LandscapeViewer" {
|
|
|
6869
6904
|
iWidth?: int
|
|
6870
6905
|
): this;
|
|
6871
6906
|
}
|
|
6907
|
+
export default LandscapeViewer;
|
|
6872
6908
|
|
|
6873
6909
|
export interface $LandscapeViewerSettings extends $OptionSettings {
|
|
6874
6910
|
/**
|
|
@@ -7073,6 +7109,10 @@ declare module "sap/landvisz/LandscapeViewer" {
|
|
|
7073
7109
|
*/
|
|
7074
7110
|
loadSolutionView?: (oEvent: Event) => void;
|
|
7075
7111
|
}
|
|
7112
|
+
|
|
7113
|
+
export interface $LandscapeViewerCloseEventParameters {}
|
|
7114
|
+
|
|
7115
|
+
export interface $LandscapeViewerLoadSolutionViewEventParameters {}
|
|
7076
7116
|
}
|
|
7077
7117
|
|
|
7078
7118
|
declare module "sap/landvisz/LongTextField" {
|
|
@@ -7089,7 +7129,7 @@ declare module "sap/landvisz/LongTextField" {
|
|
|
7089
7129
|
*
|
|
7090
7130
|
* Long text for a header
|
|
7091
7131
|
*/
|
|
7092
|
-
|
|
7132
|
+
class LongTextField extends Control {
|
|
7093
7133
|
/**
|
|
7094
7134
|
* Constructor for a new LongTextField.
|
|
7095
7135
|
*
|
|
@@ -7197,6 +7237,7 @@ declare module "sap/landvisz/LongTextField" {
|
|
|
7197
7237
|
sText?: string
|
|
7198
7238
|
): this;
|
|
7199
7239
|
}
|
|
7240
|
+
export default LongTextField;
|
|
7200
7241
|
|
|
7201
7242
|
export interface $LongTextFieldSettings extends $ControlSettings {
|
|
7202
7243
|
/**
|
|
@@ -7231,7 +7272,7 @@ declare module "sap/landvisz/Option" {
|
|
|
7231
7272
|
*
|
|
7232
7273
|
* Options for solution entities
|
|
7233
7274
|
*/
|
|
7234
|
-
|
|
7275
|
+
class Option extends Control {
|
|
7235
7276
|
/**
|
|
7236
7277
|
* Constructor for a new Option.
|
|
7237
7278
|
*
|
|
@@ -7410,6 +7451,7 @@ declare module "sap/landvisz/Option" {
|
|
|
7410
7451
|
sType?: string
|
|
7411
7452
|
): this;
|
|
7412
7453
|
}
|
|
7454
|
+
export default Option;
|
|
7413
7455
|
|
|
7414
7456
|
export interface $OptionSettings extends $ControlSettings {
|
|
7415
7457
|
/**
|
|
@@ -7453,7 +7495,7 @@ declare module "sap/landvisz/OptionEntity" {
|
|
|
7453
7495
|
*
|
|
7454
7496
|
* Options for solution entities
|
|
7455
7497
|
*/
|
|
7456
|
-
|
|
7498
|
+
class OptionEntity extends OptionSource {
|
|
7457
7499
|
/**
|
|
7458
7500
|
* Constructor for a new OptionEntity.
|
|
7459
7501
|
*
|
|
@@ -7761,6 +7803,7 @@ declare module "sap/landvisz/OptionEntity" {
|
|
|
7761
7803
|
bSelected?: boolean
|
|
7762
7804
|
): this;
|
|
7763
7805
|
}
|
|
7806
|
+
export default OptionEntity;
|
|
7764
7807
|
|
|
7765
7808
|
export interface $OptionEntitySettings extends $OptionSourceSettings {
|
|
7766
7809
|
/**
|
|
@@ -7797,6 +7840,8 @@ declare module "sap/landvisz/OptionEntity" {
|
|
|
7797
7840
|
*/
|
|
7798
7841
|
selectOption?: (oEvent: Event) => void;
|
|
7799
7842
|
}
|
|
7843
|
+
|
|
7844
|
+
export interface $OptionEntitySelectOptionEventParameters {}
|
|
7800
7845
|
}
|
|
7801
7846
|
|
|
7802
7847
|
declare module "sap/landvisz/OptionSource" {
|
|
@@ -7811,7 +7856,7 @@ declare module "sap/landvisz/OptionSource" {
|
|
|
7811
7856
|
*
|
|
7812
7857
|
* Options source for solution entities
|
|
7813
7858
|
*/
|
|
7814
|
-
|
|
7859
|
+
class OptionSource extends Control {
|
|
7815
7860
|
/**
|
|
7816
7861
|
* Constructor for a new OptionSource.
|
|
7817
7862
|
*
|
|
@@ -7896,6 +7941,7 @@ declare module "sap/landvisz/OptionSource" {
|
|
|
7896
7941
|
sSource?: string
|
|
7897
7942
|
): this;
|
|
7898
7943
|
}
|
|
7944
|
+
export default OptionSource;
|
|
7899
7945
|
|
|
7900
7946
|
export interface $OptionSourceSettings extends $ControlSettings {
|
|
7901
7947
|
/**
|