@sapui5/types 1.122.2 → 1.123.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 +408 -32
- package/types/sap.chart.d.ts +58 -6
- package/types/sap.collaboration.d.ts +52 -9
- package/types/sap.esh.search.ui.d.ts +2066 -2
- package/types/sap.f.d.ts +435 -98
- package/types/sap.fe.core.d.ts +9 -3
- package/types/sap.fe.macros.d.ts +1075 -70
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +8 -6
- package/types/sap.fe.test.d.ts +309 -7
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1066 -146
- package/types/sap.insights.d.ts +4 -2
- package/types/sap.m.d.ts +3961 -399
- package/types/sap.makit.d.ts +115 -14
- package/types/sap.me.d.ts +84 -7
- package/types/sap.ndc.d.ts +22 -2
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +44 -11
- package/types/sap.sac.df.d.ts +119 -67
- package/types/sap.suite.ui.commons.d.ts +1146 -2474
- package/types/sap.suite.ui.generic.template.d.ts +10 -2
- package/types/sap.suite.ui.microchart.d.ts +190 -28
- package/types/sap.tnt.d.ts +46 -10
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +797 -121
- package/types/sap.ui.comp.d.ts +964 -124
- package/types/sap.ui.core.d.ts +13204 -12618
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +22 -5
- package/types/sap.ui.fl.d.ts +40 -3
- package/types/sap.ui.generic.app.d.ts +217 -201
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +147 -9
- package/types/sap.ui.layout.d.ts +171 -47
- package/types/sap.ui.mdc.d.ts +554 -71
- package/types/sap.ui.richtexteditor.d.ts +28 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +278 -74
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -42
- package/types/sap.ui.ux3.d.ts +527 -34
- package/types/sap.ui.vbm.d.ts +544 -48
- package/types/sap.ui.vk.d.ts +1588 -133
- package/types/sap.ui.vtm.d.ts +373 -27
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uiext.inbox.d.ts +124 -13
- package/types/sap.ushell.d.ts +1081 -383
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +123 -23
- package/types/sap.viz.d.ts +2619 -130
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +35 -15
- package/types/sap.zen.crosstab.d.ts +22 -10
- package/types/sap.zen.dsh.d.ts +64 -9
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/generic/template/library" {
|
|
4
4
|
/**
|
|
@@ -1632,7 +1632,9 @@ declare module "sap/suite/ui/generic/template/lib/AppComponent" {
|
|
|
1632
1632
|
bUseColumnLayoutForSmartForm?: boolean
|
|
1633
1633
|
): this;
|
|
1634
1634
|
}
|
|
1635
|
-
|
|
1635
|
+
/**
|
|
1636
|
+
* Describes the settings that can be provided to the AppComponent constructor.
|
|
1637
|
+
*/
|
|
1636
1638
|
export interface $AppComponentSettings extends $UIComponentSettings {
|
|
1637
1639
|
forceGlobalRefresh?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1638
1640
|
|
|
@@ -1674,8 +1676,14 @@ declare module "sap/suite/ui/generic/template/lib/AppComponent" {
|
|
|
1674
1676
|
pageDataLoaded?: (oEvent: Event) => void;
|
|
1675
1677
|
}
|
|
1676
1678
|
|
|
1679
|
+
/**
|
|
1680
|
+
* Parameters of the AppComponent#pageDataLoaded event.
|
|
1681
|
+
*/
|
|
1677
1682
|
export interface AppComponent$PageDataLoadedEventParameters {}
|
|
1678
1683
|
|
|
1684
|
+
/**
|
|
1685
|
+
* Event object of the AppComponent#pageDataLoaded event.
|
|
1686
|
+
*/
|
|
1679
1687
|
export type AppComponent$PageDataLoadedEvent = Event<
|
|
1680
1688
|
AppComponent$PageDataLoadedEventParameters,
|
|
1681
1689
|
AppComponent
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/microchart/library" {
|
|
4
4
|
/**
|
|
@@ -1181,7 +1181,9 @@ declare module "sap/suite/ui/microchart/AreaMicroChart" {
|
|
|
1181
1181
|
*/
|
|
1182
1182
|
unbindTarget(): this;
|
|
1183
1183
|
}
|
|
1184
|
-
|
|
1184
|
+
/**
|
|
1185
|
+
* Describes the settings that can be provided to the AreaMicroChart constructor.
|
|
1186
|
+
*/
|
|
1185
1187
|
export interface $AreaMicroChartSettings extends $ControlSettings {
|
|
1186
1188
|
/**
|
|
1187
1189
|
* The size of the microchart. If not set, the default size is applied based on the size of the device tile.
|
|
@@ -1346,8 +1348,14 @@ declare module "sap/suite/ui/microchart/AreaMicroChart" {
|
|
|
1346
1348
|
press?: (oEvent: Event) => void;
|
|
1347
1349
|
}
|
|
1348
1350
|
|
|
1351
|
+
/**
|
|
1352
|
+
* Parameters of the AreaMicroChart#press event.
|
|
1353
|
+
*/
|
|
1349
1354
|
export interface AreaMicroChart$PressEventParameters {}
|
|
1350
1355
|
|
|
1356
|
+
/**
|
|
1357
|
+
* Event object of the AreaMicroChart#press event.
|
|
1358
|
+
*/
|
|
1351
1359
|
export type AreaMicroChart$PressEvent = Event<
|
|
1352
1360
|
AreaMicroChart$PressEventParameters,
|
|
1353
1361
|
AreaMicroChart
|
|
@@ -1591,7 +1599,9 @@ declare module "sap/suite/ui/microchart/AreaMicroChartItem" {
|
|
|
1591
1599
|
*/
|
|
1592
1600
|
unbindPoints(): this;
|
|
1593
1601
|
}
|
|
1594
|
-
|
|
1602
|
+
/**
|
|
1603
|
+
* Describes the settings that can be provided to the AreaMicroChartItem constructor.
|
|
1604
|
+
*/
|
|
1595
1605
|
export interface $AreaMicroChartItemSettings extends $ElementSettings {
|
|
1596
1606
|
/**
|
|
1597
1607
|
* The graphic element color.
|
|
@@ -1750,7 +1760,9 @@ declare module "sap/suite/ui/microchart/AreaMicroChartLabel" {
|
|
|
1750
1760
|
sLabel?: string
|
|
1751
1761
|
): this;
|
|
1752
1762
|
}
|
|
1753
|
-
|
|
1763
|
+
/**
|
|
1764
|
+
* Describes the settings that can be provided to the AreaMicroChartLabel constructor.
|
|
1765
|
+
*/
|
|
1754
1766
|
export interface $AreaMicroChartLabelSettings extends $ElementSettings {
|
|
1755
1767
|
/**
|
|
1756
1768
|
* The graphic element color.
|
|
@@ -1904,7 +1916,9 @@ declare module "sap/suite/ui/microchart/AreaMicroChartPoint" {
|
|
|
1904
1916
|
fY?: float
|
|
1905
1917
|
): this;
|
|
1906
1918
|
}
|
|
1907
|
-
|
|
1919
|
+
/**
|
|
1920
|
+
* Describes the settings that can be provided to the AreaMicroChartPoint constructor.
|
|
1921
|
+
*/
|
|
1908
1922
|
export interface $AreaMicroChartPointSettings extends $ElementSettings {
|
|
1909
1923
|
/**
|
|
1910
1924
|
* X value for the given point.
|
|
@@ -2923,7 +2937,9 @@ declare module "sap/suite/ui/microchart/BulletMicroChart" {
|
|
|
2923
2937
|
*/
|
|
2924
2938
|
unbindThresholds(): this;
|
|
2925
2939
|
}
|
|
2926
|
-
|
|
2940
|
+
/**
|
|
2941
|
+
* Describes the settings that can be provided to the BulletMicroChart constructor.
|
|
2942
|
+
*/
|
|
2927
2943
|
export interface $BulletMicroChartSettings extends $ControlSettings {
|
|
2928
2944
|
/**
|
|
2929
2945
|
* The size of the microchart. If not set, the default size is applied based on the size of the device tile.
|
|
@@ -3084,8 +3100,14 @@ declare module "sap/suite/ui/microchart/BulletMicroChart" {
|
|
|
3084
3100
|
press?: (oEvent: Event) => void;
|
|
3085
3101
|
}
|
|
3086
3102
|
|
|
3103
|
+
/**
|
|
3104
|
+
* Parameters of the BulletMicroChart#press event.
|
|
3105
|
+
*/
|
|
3087
3106
|
export interface BulletMicroChart$PressEventParameters {}
|
|
3088
3107
|
|
|
3108
|
+
/**
|
|
3109
|
+
* Event object of the BulletMicroChart#press event.
|
|
3110
|
+
*/
|
|
3089
3111
|
export type BulletMicroChart$PressEvent = Event<
|
|
3090
3112
|
BulletMicroChart$PressEventParameters,
|
|
3091
3113
|
BulletMicroChart
|
|
@@ -3228,7 +3250,9 @@ declare module "sap/suite/ui/microchart/BulletMicroChartData" {
|
|
|
3228
3250
|
fValue?: float
|
|
3229
3251
|
): this;
|
|
3230
3252
|
}
|
|
3231
|
-
|
|
3253
|
+
/**
|
|
3254
|
+
* Describes the settings that can be provided to the BulletMicroChartData constructor.
|
|
3255
|
+
*/
|
|
3232
3256
|
export interface $BulletMicroChartDataSettings extends $ElementSettings {
|
|
3233
3257
|
/**
|
|
3234
3258
|
* The actual value.
|
|
@@ -3891,7 +3915,9 @@ declare module "sap/suite/ui/microchart/ColumnMicroChart" {
|
|
|
3891
3915
|
*/
|
|
3892
3916
|
unbindColumns(): this;
|
|
3893
3917
|
}
|
|
3894
|
-
|
|
3918
|
+
/**
|
|
3919
|
+
* Describes the settings that can be provided to the ColumnMicroChart constructor.
|
|
3920
|
+
*/
|
|
3895
3921
|
export interface $ColumnMicroChartSettings extends $ControlSettings {
|
|
3896
3922
|
/**
|
|
3897
3923
|
* The size of the microchart. If not set, the default size is applied based on the size of the device tile.
|
|
@@ -3985,8 +4011,14 @@ declare module "sap/suite/ui/microchart/ColumnMicroChart" {
|
|
|
3985
4011
|
press?: (oEvent: Event) => void;
|
|
3986
4012
|
}
|
|
3987
4013
|
|
|
4014
|
+
/**
|
|
4015
|
+
* Parameters of the ColumnMicroChart#press event.
|
|
4016
|
+
*/
|
|
3988
4017
|
export interface ColumnMicroChart$PressEventParameters {}
|
|
3989
4018
|
|
|
4019
|
+
/**
|
|
4020
|
+
* Event object of the ColumnMicroChart#press event.
|
|
4021
|
+
*/
|
|
3990
4022
|
export type ColumnMicroChart$PressEvent = Event<
|
|
3991
4023
|
ColumnMicroChart$PressEventParameters,
|
|
3992
4024
|
ColumnMicroChart
|
|
@@ -4263,7 +4295,9 @@ declare module "sap/suite/ui/microchart/ColumnMicroChartData" {
|
|
|
4263
4295
|
fValue: float
|
|
4264
4296
|
): this;
|
|
4265
4297
|
}
|
|
4266
|
-
|
|
4298
|
+
/**
|
|
4299
|
+
* Describes the settings that can be provided to the ColumnMicroChartData constructor.
|
|
4300
|
+
*/
|
|
4267
4301
|
export interface $ColumnMicroChartDataSettings extends $ElementSettings {
|
|
4268
4302
|
/**
|
|
4269
4303
|
* The graphic element color.
|
|
@@ -4292,8 +4326,14 @@ declare module "sap/suite/ui/microchart/ColumnMicroChartData" {
|
|
|
4292
4326
|
press?: (oEvent: Event) => void;
|
|
4293
4327
|
}
|
|
4294
4328
|
|
|
4329
|
+
/**
|
|
4330
|
+
* Parameters of the ColumnMicroChartData#press event.
|
|
4331
|
+
*/
|
|
4295
4332
|
export interface ColumnMicroChartData$PressEventParameters {}
|
|
4296
4333
|
|
|
4334
|
+
/**
|
|
4335
|
+
* Event object of the ColumnMicroChartData#press event.
|
|
4336
|
+
*/
|
|
4297
4337
|
export type ColumnMicroChartData$PressEvent = Event<
|
|
4298
4338
|
ColumnMicroChartData$PressEventParameters,
|
|
4299
4339
|
ColumnMicroChartData
|
|
@@ -4436,7 +4476,9 @@ declare module "sap/suite/ui/microchart/ColumnMicroChartLabel" {
|
|
|
4436
4476
|
sLabel?: string
|
|
4437
4477
|
): this;
|
|
4438
4478
|
}
|
|
4439
|
-
|
|
4479
|
+
/**
|
|
4480
|
+
* Describes the settings that can be provided to the ColumnMicroChartLabel constructor.
|
|
4481
|
+
*/
|
|
4440
4482
|
export interface $ColumnMicroChartLabelSettings extends $ElementSettings {
|
|
4441
4483
|
/**
|
|
4442
4484
|
* The graphic element color.
|
|
@@ -5093,7 +5135,9 @@ declare module "sap/suite/ui/microchart/ComparisonMicroChart" {
|
|
|
5093
5135
|
*/
|
|
5094
5136
|
unbindData(): this;
|
|
5095
5137
|
}
|
|
5096
|
-
|
|
5138
|
+
/**
|
|
5139
|
+
* Describes the settings that can be provided to the ComparisonMicroChart constructor.
|
|
5140
|
+
*/
|
|
5097
5141
|
export interface $ComparisonMicroChartSettings extends $ControlSettings {
|
|
5098
5142
|
/**
|
|
5099
5143
|
* The size of the microchart. If not set, the default size is applied based on the size of the device tile.
|
|
@@ -5193,8 +5237,14 @@ declare module "sap/suite/ui/microchart/ComparisonMicroChart" {
|
|
|
5193
5237
|
press?: (oEvent: Event) => void;
|
|
5194
5238
|
}
|
|
5195
5239
|
|
|
5240
|
+
/**
|
|
5241
|
+
* Parameters of the ComparisonMicroChart#press event.
|
|
5242
|
+
*/
|
|
5196
5243
|
export interface ComparisonMicroChart$PressEventParameters {}
|
|
5197
5244
|
|
|
5245
|
+
/**
|
|
5246
|
+
* Event object of the ComparisonMicroChart#press event.
|
|
5247
|
+
*/
|
|
5198
5248
|
export type ComparisonMicroChart$PressEvent = Event<
|
|
5199
5249
|
ComparisonMicroChart$PressEventParameters,
|
|
5200
5250
|
ComparisonMicroChart
|
|
@@ -5477,7 +5527,9 @@ declare module "sap/suite/ui/microchart/ComparisonMicroChartData" {
|
|
|
5477
5527
|
fValue?: float
|
|
5478
5528
|
): this;
|
|
5479
5529
|
}
|
|
5480
|
-
|
|
5530
|
+
/**
|
|
5531
|
+
* Describes the settings that can be provided to the ComparisonMicroChartData constructor.
|
|
5532
|
+
*/
|
|
5481
5533
|
export interface $ComparisonMicroChartDataSettings extends $ElementSettings {
|
|
5482
5534
|
/**
|
|
5483
5535
|
* The value for comparison.
|
|
@@ -5505,8 +5557,14 @@ declare module "sap/suite/ui/microchart/ComparisonMicroChartData" {
|
|
|
5505
5557
|
press?: (oEvent: Event) => void;
|
|
5506
5558
|
}
|
|
5507
5559
|
|
|
5560
|
+
/**
|
|
5561
|
+
* Parameters of the ComparisonMicroChartData#press event.
|
|
5562
|
+
*/
|
|
5508
5563
|
export interface ComparisonMicroChartData$PressEventParameters {}
|
|
5509
5564
|
|
|
5565
|
+
/**
|
|
5566
|
+
* Event object of the ComparisonMicroChartData#press event.
|
|
5567
|
+
*/
|
|
5510
5568
|
export type ComparisonMicroChartData$PressEvent = Event<
|
|
5511
5569
|
ComparisonMicroChartData$PressEventParameters,
|
|
5512
5570
|
ComparisonMicroChartData
|
|
@@ -6104,7 +6162,9 @@ declare module "sap/suite/ui/microchart/DeltaMicroChart" {
|
|
|
6104
6162
|
sWidth: CSSSize
|
|
6105
6163
|
): this;
|
|
6106
6164
|
}
|
|
6107
|
-
|
|
6165
|
+
/**
|
|
6166
|
+
* Describes the settings that can be provided to the DeltaMicroChart constructor.
|
|
6167
|
+
*/
|
|
6108
6168
|
export interface $DeltaMicroChartSettings extends $ControlSettings {
|
|
6109
6169
|
/**
|
|
6110
6170
|
* The first value for delta calculation.
|
|
@@ -6201,8 +6261,14 @@ declare module "sap/suite/ui/microchart/DeltaMicroChart" {
|
|
|
6201
6261
|
press?: (oEvent: Event) => void;
|
|
6202
6262
|
}
|
|
6203
6263
|
|
|
6264
|
+
/**
|
|
6265
|
+
* Parameters of the DeltaMicroChart#press event.
|
|
6266
|
+
*/
|
|
6204
6267
|
export interface DeltaMicroChart$PressEventParameters {}
|
|
6205
6268
|
|
|
6269
|
+
/**
|
|
6270
|
+
* Event object of the DeltaMicroChart#press event.
|
|
6271
|
+
*/
|
|
6206
6272
|
export type DeltaMicroChart$PressEvent = Event<
|
|
6207
6273
|
DeltaMicroChart$PressEventParameters,
|
|
6208
6274
|
DeltaMicroChart
|
|
@@ -6911,7 +6977,9 @@ declare module "sap/suite/ui/microchart/HarveyBallMicroChart" {
|
|
|
6911
6977
|
*/
|
|
6912
6978
|
unbindItems(): this;
|
|
6913
6979
|
}
|
|
6914
|
-
|
|
6980
|
+
/**
|
|
6981
|
+
* Describes the settings that can be provided to the HarveyBallMicroChart constructor.
|
|
6982
|
+
*/
|
|
6915
6983
|
export interface $HarveyBallMicroChartSettings extends $ControlSettings {
|
|
6916
6984
|
/**
|
|
6917
6985
|
* The total value. The total value is represented by a full circle, or 360 degrees value on the chart.
|
|
@@ -7019,8 +7087,14 @@ declare module "sap/suite/ui/microchart/HarveyBallMicroChart" {
|
|
|
7019
7087
|
press?: (oEvent: Event) => void;
|
|
7020
7088
|
}
|
|
7021
7089
|
|
|
7090
|
+
/**
|
|
7091
|
+
* Parameters of the HarveyBallMicroChart#press event.
|
|
7092
|
+
*/
|
|
7022
7093
|
export interface HarveyBallMicroChart$PressEventParameters {}
|
|
7023
7094
|
|
|
7095
|
+
/**
|
|
7096
|
+
* Event object of the HarveyBallMicroChart#press event.
|
|
7097
|
+
*/
|
|
7024
7098
|
export type HarveyBallMicroChart$PressEvent = Event<
|
|
7025
7099
|
HarveyBallMicroChart$PressEventParameters,
|
|
7026
7100
|
HarveyBallMicroChart
|
|
@@ -7256,7 +7330,9 @@ declare module "sap/suite/ui/microchart/HarveyBallMicroChartItem" {
|
|
|
7256
7330
|
sFractionScale: string
|
|
7257
7331
|
): this;
|
|
7258
7332
|
}
|
|
7259
|
-
|
|
7333
|
+
/**
|
|
7334
|
+
* Describes the settings that can be provided to the HarveyBallMicroChartItem constructor.
|
|
7335
|
+
*/
|
|
7260
7336
|
export interface $HarveyBallMicroChartItemSettings extends $ElementSettings {
|
|
7261
7337
|
/**
|
|
7262
7338
|
* The color of the sector representing the fraction value.
|
|
@@ -7916,7 +7992,9 @@ declare module "sap/suite/ui/microchart/InteractiveBarChart" {
|
|
|
7916
7992
|
*/
|
|
7917
7993
|
unbindBars(): this;
|
|
7918
7994
|
}
|
|
7919
|
-
|
|
7995
|
+
/**
|
|
7996
|
+
* Describes the settings that can be provided to the InteractiveBarChart constructor.
|
|
7997
|
+
*/
|
|
7920
7998
|
export interface $InteractiveBarChartSettings extends $ControlSettings {
|
|
7921
7999
|
/**
|
|
7922
8000
|
* The number of displayed bars.
|
|
@@ -7987,13 +8065,22 @@ declare module "sap/suite/ui/microchart/InteractiveBarChart" {
|
|
|
7987
8065
|
press?: (oEvent: Event) => void;
|
|
7988
8066
|
}
|
|
7989
8067
|
|
|
8068
|
+
/**
|
|
8069
|
+
* Parameters of the InteractiveBarChart#press event.
|
|
8070
|
+
*/
|
|
7990
8071
|
export interface InteractiveBarChart$PressEventParameters {}
|
|
7991
8072
|
|
|
8073
|
+
/**
|
|
8074
|
+
* Event object of the InteractiveBarChart#press event.
|
|
8075
|
+
*/
|
|
7992
8076
|
export type InteractiveBarChart$PressEvent = Event<
|
|
7993
8077
|
InteractiveBarChart$PressEventParameters,
|
|
7994
8078
|
InteractiveBarChart
|
|
7995
8079
|
>;
|
|
7996
8080
|
|
|
8081
|
+
/**
|
|
8082
|
+
* Parameters of the InteractiveBarChart#selectionChanged event.
|
|
8083
|
+
*/
|
|
7997
8084
|
export interface InteractiveBarChart$SelectionChangedEventParameters {
|
|
7998
8085
|
/**
|
|
7999
8086
|
* All bars which are in selected state.
|
|
@@ -8011,6 +8098,9 @@ declare module "sap/suite/ui/microchart/InteractiveBarChart" {
|
|
|
8011
8098
|
selected?: boolean;
|
|
8012
8099
|
}
|
|
8013
8100
|
|
|
8101
|
+
/**
|
|
8102
|
+
* Event object of the InteractiveBarChart#selectionChanged event.
|
|
8103
|
+
*/
|
|
8014
8104
|
export type InteractiveBarChart$SelectionChangedEvent = Event<
|
|
8015
8105
|
InteractiveBarChart$SelectionChangedEventParameters,
|
|
8016
8106
|
InteractiveBarChart
|
|
@@ -8230,7 +8320,9 @@ declare module "sap/suite/ui/microchart/InteractiveBarChartBar" {
|
|
|
8230
8320
|
fValue: float
|
|
8231
8321
|
): this;
|
|
8232
8322
|
}
|
|
8233
|
-
|
|
8323
|
+
/**
|
|
8324
|
+
* Describes the settings that can be provided to the InteractiveBarChartBar constructor.
|
|
8325
|
+
*/
|
|
8234
8326
|
export interface $InteractiveBarChartBarSettings extends $ElementSettings {
|
|
8235
8327
|
/**
|
|
8236
8328
|
* The label for the chart bar.
|
|
@@ -8809,7 +8901,9 @@ declare module "sap/suite/ui/microchart/InteractiveDonutChart" {
|
|
|
8809
8901
|
*/
|
|
8810
8902
|
unbindSegments(): this;
|
|
8811
8903
|
}
|
|
8812
|
-
|
|
8904
|
+
/**
|
|
8905
|
+
* Describes the settings that can be provided to the InteractiveDonutChart constructor.
|
|
8906
|
+
*/
|
|
8813
8907
|
export interface $InteractiveDonutChartSettings extends $ControlSettings {
|
|
8814
8908
|
/**
|
|
8815
8909
|
* Number of segments to be displayed.
|
|
@@ -8864,13 +8958,22 @@ declare module "sap/suite/ui/microchart/InteractiveDonutChart" {
|
|
|
8864
8958
|
press?: (oEvent: Event) => void;
|
|
8865
8959
|
}
|
|
8866
8960
|
|
|
8961
|
+
/**
|
|
8962
|
+
* Parameters of the InteractiveDonutChart#press event.
|
|
8963
|
+
*/
|
|
8867
8964
|
export interface InteractiveDonutChart$PressEventParameters {}
|
|
8868
8965
|
|
|
8966
|
+
/**
|
|
8967
|
+
* Event object of the InteractiveDonutChart#press event.
|
|
8968
|
+
*/
|
|
8869
8969
|
export type InteractiveDonutChart$PressEvent = Event<
|
|
8870
8970
|
InteractiveDonutChart$PressEventParameters,
|
|
8871
8971
|
InteractiveDonutChart
|
|
8872
8972
|
>;
|
|
8873
8973
|
|
|
8974
|
+
/**
|
|
8975
|
+
* Parameters of the InteractiveDonutChart#selectionChanged event.
|
|
8976
|
+
*/
|
|
8874
8977
|
export interface InteractiveDonutChart$SelectionChangedEventParameters {
|
|
8875
8978
|
/**
|
|
8876
8979
|
* Contains all selected segments.
|
|
@@ -8888,6 +8991,9 @@ declare module "sap/suite/ui/microchart/InteractiveDonutChart" {
|
|
|
8888
8991
|
selected?: boolean;
|
|
8889
8992
|
}
|
|
8890
8993
|
|
|
8994
|
+
/**
|
|
8995
|
+
* Event object of the InteractiveDonutChart#selectionChanged event.
|
|
8996
|
+
*/
|
|
8891
8997
|
export type InteractiveDonutChart$SelectionChangedEvent = Event<
|
|
8892
8998
|
InteractiveDonutChart$SelectionChangedEventParameters,
|
|
8893
8999
|
InteractiveDonutChart
|
|
@@ -9107,7 +9213,9 @@ declare module "sap/suite/ui/microchart/InteractiveDonutChartSegment" {
|
|
|
9107
9213
|
fValue?: float
|
|
9108
9214
|
): this;
|
|
9109
9215
|
}
|
|
9110
|
-
|
|
9216
|
+
/**
|
|
9217
|
+
* Describes the settings that can be provided to the InteractiveDonutChartSegment constructor.
|
|
9218
|
+
*/
|
|
9111
9219
|
export interface $InteractiveDonutChartSegmentSettings
|
|
9112
9220
|
extends $ElementSettings {
|
|
9113
9221
|
/**
|
|
@@ -9748,7 +9856,9 @@ declare module "sap/suite/ui/microchart/InteractiveLineChart" {
|
|
|
9748
9856
|
*/
|
|
9749
9857
|
unbindPoints(): this;
|
|
9750
9858
|
}
|
|
9751
|
-
|
|
9859
|
+
/**
|
|
9860
|
+
* Describes the settings that can be provided to the InteractiveLineChart constructor.
|
|
9861
|
+
*/
|
|
9752
9862
|
export interface $InteractiveLineChartSettings extends $ControlSettings {
|
|
9753
9863
|
/**
|
|
9754
9864
|
* The maximum number of points to be displayed on the chart.
|
|
@@ -9816,13 +9926,22 @@ declare module "sap/suite/ui/microchart/InteractiveLineChart" {
|
|
|
9816
9926
|
press?: (oEvent: Event) => void;
|
|
9817
9927
|
}
|
|
9818
9928
|
|
|
9929
|
+
/**
|
|
9930
|
+
* Parameters of the InteractiveLineChart#press event.
|
|
9931
|
+
*/
|
|
9819
9932
|
export interface InteractiveLineChart$PressEventParameters {}
|
|
9820
9933
|
|
|
9934
|
+
/**
|
|
9935
|
+
* Event object of the InteractiveLineChart#press event.
|
|
9936
|
+
*/
|
|
9821
9937
|
export type InteractiveLineChart$PressEvent = Event<
|
|
9822
9938
|
InteractiveLineChart$PressEventParameters,
|
|
9823
9939
|
InteractiveLineChart
|
|
9824
9940
|
>;
|
|
9825
9941
|
|
|
9942
|
+
/**
|
|
9943
|
+
* Parameters of the InteractiveLineChart#selectionChanged event.
|
|
9944
|
+
*/
|
|
9826
9945
|
export interface InteractiveLineChart$SelectionChangedEventParameters {
|
|
9827
9946
|
/**
|
|
9828
9947
|
* All points which are in selected state.
|
|
@@ -9840,6 +9959,9 @@ declare module "sap/suite/ui/microchart/InteractiveLineChart" {
|
|
|
9840
9959
|
selected?: boolean;
|
|
9841
9960
|
}
|
|
9842
9961
|
|
|
9962
|
+
/**
|
|
9963
|
+
* Event object of the InteractiveLineChart#selectionChanged event.
|
|
9964
|
+
*/
|
|
9843
9965
|
export type InteractiveLineChart$SelectionChangedEvent = Event<
|
|
9844
9966
|
InteractiveLineChart$SelectionChangedEventParameters,
|
|
9845
9967
|
InteractiveLineChart
|
|
@@ -10084,7 +10206,9 @@ declare module "sap/suite/ui/microchart/InteractiveLineChartPoint" {
|
|
|
10084
10206
|
fValue?: float
|
|
10085
10207
|
): this;
|
|
10086
10208
|
}
|
|
10087
|
-
|
|
10209
|
+
/**
|
|
10210
|
+
* Describes the settings that can be provided to the InteractiveLineChartPoint constructor.
|
|
10211
|
+
*/
|
|
10088
10212
|
export interface $InteractiveLineChartPointSettings extends $ElementSettings {
|
|
10089
10213
|
/**
|
|
10090
10214
|
* The bottom label for the chart point.
|
|
@@ -11126,7 +11250,9 @@ declare module "sap/suite/ui/microchart/LineMicroChart" {
|
|
|
11126
11250
|
*/
|
|
11127
11251
|
unbindPoints(): this;
|
|
11128
11252
|
}
|
|
11129
|
-
|
|
11253
|
+
/**
|
|
11254
|
+
* Describes the settings that can be provided to the LineMicroChart constructor.
|
|
11255
|
+
*/
|
|
11130
11256
|
export interface $LineMicroChartSettings extends $ControlSettings {
|
|
11131
11257
|
/**
|
|
11132
11258
|
* The size of the chart. If not set, the default size is applied based on the type of the device.
|
|
@@ -11290,8 +11416,14 @@ declare module "sap/suite/ui/microchart/LineMicroChart" {
|
|
|
11290
11416
|
press?: (oEvent: Event) => void;
|
|
11291
11417
|
}
|
|
11292
11418
|
|
|
11419
|
+
/**
|
|
11420
|
+
* Parameters of the LineMicroChart#press event.
|
|
11421
|
+
*/
|
|
11293
11422
|
export interface LineMicroChart$PressEventParameters {}
|
|
11294
11423
|
|
|
11424
|
+
/**
|
|
11425
|
+
* Event object of the LineMicroChart#press event.
|
|
11426
|
+
*/
|
|
11295
11427
|
export type LineMicroChart$PressEvent = Event<
|
|
11296
11428
|
LineMicroChart$PressEventParameters,
|
|
11297
11429
|
LineMicroChart
|
|
@@ -11441,7 +11573,9 @@ declare module "sap/suite/ui/microchart/LineMicroChartEmphasizedPoint" {
|
|
|
11441
11573
|
bShow?: boolean
|
|
11442
11574
|
): this;
|
|
11443
11575
|
}
|
|
11444
|
-
|
|
11576
|
+
/**
|
|
11577
|
+
* Describes the settings that can be provided to the LineMicroChartEmphasizedPoint constructor.
|
|
11578
|
+
*/
|
|
11445
11579
|
export interface $LineMicroChartEmphasizedPointSettings
|
|
11446
11580
|
extends $LineMicroChartPointSettings {
|
|
11447
11581
|
/**
|
|
@@ -11762,7 +11896,9 @@ declare module "sap/suite/ui/microchart/LineMicroChartLine" {
|
|
|
11762
11896
|
*/
|
|
11763
11897
|
unbindPoints(): this;
|
|
11764
11898
|
}
|
|
11765
|
-
|
|
11899
|
+
/**
|
|
11900
|
+
* Describes the settings that can be provided to the LineMicroChartLine constructor.
|
|
11901
|
+
*/
|
|
11766
11902
|
export interface $LineMicroChartLineSettings extends $ElementSettings {
|
|
11767
11903
|
/**
|
|
11768
11904
|
* Defines the color of the chart.
|
|
@@ -11953,7 +12089,9 @@ declare module "sap/suite/ui/microchart/LineMicroChartPoint" {
|
|
|
11953
12089
|
fY?: float
|
|
11954
12090
|
): this;
|
|
11955
12091
|
}
|
|
11956
|
-
|
|
12092
|
+
/**
|
|
12093
|
+
* Describes the settings that can be provided to the LineMicroChartPoint constructor.
|
|
12094
|
+
*/
|
|
11957
12095
|
export interface $LineMicroChartPointSettings extends $ElementSettings {
|
|
11958
12096
|
/**
|
|
11959
12097
|
* The point's horizontal position.
|
|
@@ -12195,6 +12333,8 @@ declare module "sap/suite/ui/microchart/RadialMicroChart" {
|
|
|
12195
12333
|
* Default value is `true`.
|
|
12196
12334
|
*
|
|
12197
12335
|
* @since 1.121.0
|
|
12336
|
+
* @deprecated (since 1.123.0) - Setting this property does not have any impact on the display of the percentage
|
|
12337
|
+
* symbol(%)
|
|
12198
12338
|
*
|
|
12199
12339
|
* @returns Value of property `showPercentageSymbol`
|
|
12200
12340
|
*/
|
|
@@ -12362,6 +12502,8 @@ declare module "sap/suite/ui/microchart/RadialMicroChart" {
|
|
|
12362
12502
|
* Default value is `true`.
|
|
12363
12503
|
*
|
|
12364
12504
|
* @since 1.121.0
|
|
12505
|
+
* @deprecated (since 1.123.0) - Setting this property does not have any impact on the display of the percentage
|
|
12506
|
+
* symbol(%)
|
|
12365
12507
|
*
|
|
12366
12508
|
* @returns Reference to `this` in order to allow method chaining
|
|
12367
12509
|
*/
|
|
@@ -12442,7 +12584,9 @@ declare module "sap/suite/ui/microchart/RadialMicroChart" {
|
|
|
12442
12584
|
sWidth: CSSSize
|
|
12443
12585
|
): this;
|
|
12444
12586
|
}
|
|
12445
|
-
|
|
12587
|
+
/**
|
|
12588
|
+
* Describes the settings that can be provided to the RadialMicroChart constructor.
|
|
12589
|
+
*/
|
|
12446
12590
|
export interface $RadialMicroChartSettings extends $ControlSettings {
|
|
12447
12591
|
/**
|
|
12448
12592
|
* The total value. This is taken as 360 degrees value on the chart.
|
|
@@ -12507,6 +12651,8 @@ declare module "sap/suite/ui/microchart/RadialMicroChart" {
|
|
|
12507
12651
|
* displayed.
|
|
12508
12652
|
*
|
|
12509
12653
|
* @since 1.121.0
|
|
12654
|
+
* @deprecated (since 1.123.0) - Setting this property does not have any impact on the display of the percentage
|
|
12655
|
+
* symbol(%)
|
|
12510
12656
|
*/
|
|
12511
12657
|
showPercentageSymbol?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
12512
12658
|
|
|
@@ -12523,8 +12669,14 @@ declare module "sap/suite/ui/microchart/RadialMicroChart" {
|
|
|
12523
12669
|
press?: (oEvent: Event) => void;
|
|
12524
12670
|
}
|
|
12525
12671
|
|
|
12672
|
+
/**
|
|
12673
|
+
* Parameters of the RadialMicroChart#press event.
|
|
12674
|
+
*/
|
|
12526
12675
|
export interface RadialMicroChart$PressEventParameters {}
|
|
12527
12676
|
|
|
12677
|
+
/**
|
|
12678
|
+
* Event object of the RadialMicroChart#press event.
|
|
12679
|
+
*/
|
|
12528
12680
|
export type RadialMicroChart$PressEvent = Event<
|
|
12529
12681
|
RadialMicroChart$PressEventParameters,
|
|
12530
12682
|
RadialMicroChart
|
|
@@ -13085,7 +13237,9 @@ declare module "sap/suite/ui/microchart/StackedBarMicroChart" {
|
|
|
13085
13237
|
*/
|
|
13086
13238
|
unbindBars(): this;
|
|
13087
13239
|
}
|
|
13088
|
-
|
|
13240
|
+
/**
|
|
13241
|
+
* Describes the settings that can be provided to the StackedBarMicroChart constructor.
|
|
13242
|
+
*/
|
|
13089
13243
|
export interface $StackedBarMicroChartSettings extends $ControlSettings {
|
|
13090
13244
|
/**
|
|
13091
13245
|
* The size of the chart. If not set, the default size is applied based on the size of the device tile.
|
|
@@ -13162,8 +13316,14 @@ declare module "sap/suite/ui/microchart/StackedBarMicroChart" {
|
|
|
13162
13316
|
press?: (oEvent: Event) => void;
|
|
13163
13317
|
}
|
|
13164
13318
|
|
|
13319
|
+
/**
|
|
13320
|
+
* Parameters of the StackedBarMicroChart#press event.
|
|
13321
|
+
*/
|
|
13165
13322
|
export interface StackedBarMicroChart$PressEventParameters {}
|
|
13166
13323
|
|
|
13324
|
+
/**
|
|
13325
|
+
* Event object of the StackedBarMicroChart#press event.
|
|
13326
|
+
*/
|
|
13167
13327
|
export type StackedBarMicroChart$PressEvent = Event<
|
|
13168
13328
|
StackedBarMicroChart$PressEventParameters,
|
|
13169
13329
|
StackedBarMicroChart
|
|
@@ -13327,7 +13487,9 @@ declare module "sap/suite/ui/microchart/StackedBarMicroChartBar" {
|
|
|
13327
13487
|
sValueColor?: ValueCSSColor
|
|
13328
13488
|
): this;
|
|
13329
13489
|
}
|
|
13330
|
-
|
|
13490
|
+
/**
|
|
13491
|
+
* Describes the settings that can be provided to the StackedBarMicroChartBar constructor.
|
|
13492
|
+
*/
|
|
13331
13493
|
export interface $StackedBarMicroChartBarSettings extends $ElementSettings {
|
|
13332
13494
|
/**
|
|
13333
13495
|
* The value for stacked bar chart. It is used in order to determine the width of the bar
|