@sapui5/types 1.120.10 → 1.120.12
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.chart.d.ts +58 -6
- package/types/sap.f.d.ts +367 -54
- package/types/sap.fe.core.d.ts +4 -2
- package/types/sap.fe.macros.d.ts +96 -12
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +1001 -139
- package/types/sap.insights.d.ts +4 -2
- package/types/sap.m.d.ts +3125 -282
- 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.suite.ui.commons.d.ts +1148 -118
- package/types/sap.suite.ui.generic.template.d.ts +10 -2
- package/types/sap.suite.ui.microchart.d.ts +184 -28
- package/types/sap.tnt.d.ts +40 -8
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +756 -90
- package/types/sap.ui.comp.d.ts +884 -50
- package/types/sap.ui.core.d.ts +1204 -145
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +19 -4
- package/types/sap.ui.fl.d.ts +44 -3
- package/types/sap.ui.integration.d.ts +144 -6
- package/types/sap.ui.layout.d.ts +166 -41
- package/types/sap.ui.mdc.d.ts +430 -38
- 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 +222 -19
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -35
- package/types/sap.ui.ux3.d.ts +524 -31
- package/types/sap.ui.vbm.d.ts +6427 -3308
- 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 +147 -12
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +118 -18
- package/types/sap.viz.d.ts +2619 -130
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.11
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/generic/template/library" {
|
|
4
4
|
/**
|
|
@@ -1626,7 +1626,9 @@ declare module "sap/suite/ui/generic/template/lib/AppComponent" {
|
|
|
1626
1626
|
bUseColumnLayoutForSmartForm?: boolean
|
|
1627
1627
|
): this;
|
|
1628
1628
|
}
|
|
1629
|
-
|
|
1629
|
+
/**
|
|
1630
|
+
* Describes the settings that can be provided to the AppComponent constructor.
|
|
1631
|
+
*/
|
|
1630
1632
|
export interface $AppComponentSettings extends $UIComponentSettings {
|
|
1631
1633
|
forceGlobalRefresh?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1632
1634
|
|
|
@@ -1668,8 +1670,14 @@ declare module "sap/suite/ui/generic/template/lib/AppComponent" {
|
|
|
1668
1670
|
pageDataLoaded?: (oEvent: Event) => void;
|
|
1669
1671
|
}
|
|
1670
1672
|
|
|
1673
|
+
/**
|
|
1674
|
+
* Parameters of the AppComponent#pageDataLoaded event.
|
|
1675
|
+
*/
|
|
1671
1676
|
export interface AppComponent$PageDataLoadedEventParameters {}
|
|
1672
1677
|
|
|
1678
|
+
/**
|
|
1679
|
+
* Event object of the AppComponent#pageDataLoaded event.
|
|
1680
|
+
*/
|
|
1673
1681
|
export type AppComponent$PageDataLoadedEvent = Event<
|
|
1674
1682
|
AppComponent$PageDataLoadedEventParameters,
|
|
1675
1683
|
AppComponent
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.12
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/microchart/library" {
|
|
4
4
|
/**
|
|
@@ -1160,7 +1160,9 @@ declare module "sap/suite/ui/microchart/AreaMicroChart" {
|
|
|
1160
1160
|
*/
|
|
1161
1161
|
unbindTarget(): this;
|
|
1162
1162
|
}
|
|
1163
|
-
|
|
1163
|
+
/**
|
|
1164
|
+
* Describes the settings that can be provided to the AreaMicroChart constructor.
|
|
1165
|
+
*/
|
|
1164
1166
|
export interface $AreaMicroChartSettings extends $ControlSettings {
|
|
1165
1167
|
/**
|
|
1166
1168
|
* The size of the microchart. If not set, the default size is applied based on the size of the device tile.
|
|
@@ -1325,8 +1327,14 @@ declare module "sap/suite/ui/microchart/AreaMicroChart" {
|
|
|
1325
1327
|
press?: (oEvent: Event) => void;
|
|
1326
1328
|
}
|
|
1327
1329
|
|
|
1330
|
+
/**
|
|
1331
|
+
* Parameters of the AreaMicroChart#press event.
|
|
1332
|
+
*/
|
|
1328
1333
|
export interface AreaMicroChart$PressEventParameters {}
|
|
1329
1334
|
|
|
1335
|
+
/**
|
|
1336
|
+
* Event object of the AreaMicroChart#press event.
|
|
1337
|
+
*/
|
|
1330
1338
|
export type AreaMicroChart$PressEvent = Event<
|
|
1331
1339
|
AreaMicroChart$PressEventParameters,
|
|
1332
1340
|
AreaMicroChart
|
|
@@ -1570,7 +1578,9 @@ declare module "sap/suite/ui/microchart/AreaMicroChartItem" {
|
|
|
1570
1578
|
*/
|
|
1571
1579
|
unbindPoints(): this;
|
|
1572
1580
|
}
|
|
1573
|
-
|
|
1581
|
+
/**
|
|
1582
|
+
* Describes the settings that can be provided to the AreaMicroChartItem constructor.
|
|
1583
|
+
*/
|
|
1574
1584
|
export interface $AreaMicroChartItemSettings extends $ElementSettings {
|
|
1575
1585
|
/**
|
|
1576
1586
|
* The graphic element color.
|
|
@@ -1729,7 +1739,9 @@ declare module "sap/suite/ui/microchart/AreaMicroChartLabel" {
|
|
|
1729
1739
|
sLabel?: string
|
|
1730
1740
|
): this;
|
|
1731
1741
|
}
|
|
1732
|
-
|
|
1742
|
+
/**
|
|
1743
|
+
* Describes the settings that can be provided to the AreaMicroChartLabel constructor.
|
|
1744
|
+
*/
|
|
1733
1745
|
export interface $AreaMicroChartLabelSettings extends $ElementSettings {
|
|
1734
1746
|
/**
|
|
1735
1747
|
* The graphic element color.
|
|
@@ -1883,7 +1895,9 @@ declare module "sap/suite/ui/microchart/AreaMicroChartPoint" {
|
|
|
1883
1895
|
fY?: float
|
|
1884
1896
|
): this;
|
|
1885
1897
|
}
|
|
1886
|
-
|
|
1898
|
+
/**
|
|
1899
|
+
* Describes the settings that can be provided to the AreaMicroChartPoint constructor.
|
|
1900
|
+
*/
|
|
1887
1901
|
export interface $AreaMicroChartPointSettings extends $ElementSettings {
|
|
1888
1902
|
/**
|
|
1889
1903
|
* X value for the given point.
|
|
@@ -2902,7 +2916,9 @@ declare module "sap/suite/ui/microchart/BulletMicroChart" {
|
|
|
2902
2916
|
*/
|
|
2903
2917
|
unbindThresholds(): this;
|
|
2904
2918
|
}
|
|
2905
|
-
|
|
2919
|
+
/**
|
|
2920
|
+
* Describes the settings that can be provided to the BulletMicroChart constructor.
|
|
2921
|
+
*/
|
|
2906
2922
|
export interface $BulletMicroChartSettings extends $ControlSettings {
|
|
2907
2923
|
/**
|
|
2908
2924
|
* The size of the microchart. If not set, the default size is applied based on the size of the device tile.
|
|
@@ -3063,8 +3079,14 @@ declare module "sap/suite/ui/microchart/BulletMicroChart" {
|
|
|
3063
3079
|
press?: (oEvent: Event) => void;
|
|
3064
3080
|
}
|
|
3065
3081
|
|
|
3082
|
+
/**
|
|
3083
|
+
* Parameters of the BulletMicroChart#press event.
|
|
3084
|
+
*/
|
|
3066
3085
|
export interface BulletMicroChart$PressEventParameters {}
|
|
3067
3086
|
|
|
3087
|
+
/**
|
|
3088
|
+
* Event object of the BulletMicroChart#press event.
|
|
3089
|
+
*/
|
|
3068
3090
|
export type BulletMicroChart$PressEvent = Event<
|
|
3069
3091
|
BulletMicroChart$PressEventParameters,
|
|
3070
3092
|
BulletMicroChart
|
|
@@ -3207,7 +3229,9 @@ declare module "sap/suite/ui/microchart/BulletMicroChartData" {
|
|
|
3207
3229
|
fValue?: float
|
|
3208
3230
|
): this;
|
|
3209
3231
|
}
|
|
3210
|
-
|
|
3232
|
+
/**
|
|
3233
|
+
* Describes the settings that can be provided to the BulletMicroChartData constructor.
|
|
3234
|
+
*/
|
|
3211
3235
|
export interface $BulletMicroChartDataSettings extends $ElementSettings {
|
|
3212
3236
|
/**
|
|
3213
3237
|
* The actual value.
|
|
@@ -3870,7 +3894,9 @@ declare module "sap/suite/ui/microchart/ColumnMicroChart" {
|
|
|
3870
3894
|
*/
|
|
3871
3895
|
unbindColumns(): this;
|
|
3872
3896
|
}
|
|
3873
|
-
|
|
3897
|
+
/**
|
|
3898
|
+
* Describes the settings that can be provided to the ColumnMicroChart constructor.
|
|
3899
|
+
*/
|
|
3874
3900
|
export interface $ColumnMicroChartSettings extends $ControlSettings {
|
|
3875
3901
|
/**
|
|
3876
3902
|
* The size of the microchart. If not set, the default size is applied based on the size of the device tile.
|
|
@@ -3964,8 +3990,14 @@ declare module "sap/suite/ui/microchart/ColumnMicroChart" {
|
|
|
3964
3990
|
press?: (oEvent: Event) => void;
|
|
3965
3991
|
}
|
|
3966
3992
|
|
|
3993
|
+
/**
|
|
3994
|
+
* Parameters of the ColumnMicroChart#press event.
|
|
3995
|
+
*/
|
|
3967
3996
|
export interface ColumnMicroChart$PressEventParameters {}
|
|
3968
3997
|
|
|
3998
|
+
/**
|
|
3999
|
+
* Event object of the ColumnMicroChart#press event.
|
|
4000
|
+
*/
|
|
3969
4001
|
export type ColumnMicroChart$PressEvent = Event<
|
|
3970
4002
|
ColumnMicroChart$PressEventParameters,
|
|
3971
4003
|
ColumnMicroChart
|
|
@@ -4242,7 +4274,9 @@ declare module "sap/suite/ui/microchart/ColumnMicroChartData" {
|
|
|
4242
4274
|
fValue: float
|
|
4243
4275
|
): this;
|
|
4244
4276
|
}
|
|
4245
|
-
|
|
4277
|
+
/**
|
|
4278
|
+
* Describes the settings that can be provided to the ColumnMicroChartData constructor.
|
|
4279
|
+
*/
|
|
4246
4280
|
export interface $ColumnMicroChartDataSettings extends $ElementSettings {
|
|
4247
4281
|
/**
|
|
4248
4282
|
* The graphic element color.
|
|
@@ -4271,8 +4305,14 @@ declare module "sap/suite/ui/microchart/ColumnMicroChartData" {
|
|
|
4271
4305
|
press?: (oEvent: Event) => void;
|
|
4272
4306
|
}
|
|
4273
4307
|
|
|
4308
|
+
/**
|
|
4309
|
+
* Parameters of the ColumnMicroChartData#press event.
|
|
4310
|
+
*/
|
|
4274
4311
|
export interface ColumnMicroChartData$PressEventParameters {}
|
|
4275
4312
|
|
|
4313
|
+
/**
|
|
4314
|
+
* Event object of the ColumnMicroChartData#press event.
|
|
4315
|
+
*/
|
|
4276
4316
|
export type ColumnMicroChartData$PressEvent = Event<
|
|
4277
4317
|
ColumnMicroChartData$PressEventParameters,
|
|
4278
4318
|
ColumnMicroChartData
|
|
@@ -4415,7 +4455,9 @@ declare module "sap/suite/ui/microchart/ColumnMicroChartLabel" {
|
|
|
4415
4455
|
sLabel?: string
|
|
4416
4456
|
): this;
|
|
4417
4457
|
}
|
|
4418
|
-
|
|
4458
|
+
/**
|
|
4459
|
+
* Describes the settings that can be provided to the ColumnMicroChartLabel constructor.
|
|
4460
|
+
*/
|
|
4419
4461
|
export interface $ColumnMicroChartLabelSettings extends $ElementSettings {
|
|
4420
4462
|
/**
|
|
4421
4463
|
* The graphic element color.
|
|
@@ -5072,7 +5114,9 @@ declare module "sap/suite/ui/microchart/ComparisonMicroChart" {
|
|
|
5072
5114
|
*/
|
|
5073
5115
|
unbindData(): this;
|
|
5074
5116
|
}
|
|
5075
|
-
|
|
5117
|
+
/**
|
|
5118
|
+
* Describes the settings that can be provided to the ComparisonMicroChart constructor.
|
|
5119
|
+
*/
|
|
5076
5120
|
export interface $ComparisonMicroChartSettings extends $ControlSettings {
|
|
5077
5121
|
/**
|
|
5078
5122
|
* The size of the microchart. If not set, the default size is applied based on the size of the device tile.
|
|
@@ -5172,8 +5216,14 @@ declare module "sap/suite/ui/microchart/ComparisonMicroChart" {
|
|
|
5172
5216
|
press?: (oEvent: Event) => void;
|
|
5173
5217
|
}
|
|
5174
5218
|
|
|
5219
|
+
/**
|
|
5220
|
+
* Parameters of the ComparisonMicroChart#press event.
|
|
5221
|
+
*/
|
|
5175
5222
|
export interface ComparisonMicroChart$PressEventParameters {}
|
|
5176
5223
|
|
|
5224
|
+
/**
|
|
5225
|
+
* Event object of the ComparisonMicroChart#press event.
|
|
5226
|
+
*/
|
|
5177
5227
|
export type ComparisonMicroChart$PressEvent = Event<
|
|
5178
5228
|
ComparisonMicroChart$PressEventParameters,
|
|
5179
5229
|
ComparisonMicroChart
|
|
@@ -5456,7 +5506,9 @@ declare module "sap/suite/ui/microchart/ComparisonMicroChartData" {
|
|
|
5456
5506
|
fValue?: float
|
|
5457
5507
|
): this;
|
|
5458
5508
|
}
|
|
5459
|
-
|
|
5509
|
+
/**
|
|
5510
|
+
* Describes the settings that can be provided to the ComparisonMicroChartData constructor.
|
|
5511
|
+
*/
|
|
5460
5512
|
export interface $ComparisonMicroChartDataSettings extends $ElementSettings {
|
|
5461
5513
|
/**
|
|
5462
5514
|
* The value for comparison.
|
|
@@ -5484,8 +5536,14 @@ declare module "sap/suite/ui/microchart/ComparisonMicroChartData" {
|
|
|
5484
5536
|
press?: (oEvent: Event) => void;
|
|
5485
5537
|
}
|
|
5486
5538
|
|
|
5539
|
+
/**
|
|
5540
|
+
* Parameters of the ComparisonMicroChartData#press event.
|
|
5541
|
+
*/
|
|
5487
5542
|
export interface ComparisonMicroChartData$PressEventParameters {}
|
|
5488
5543
|
|
|
5544
|
+
/**
|
|
5545
|
+
* Event object of the ComparisonMicroChartData#press event.
|
|
5546
|
+
*/
|
|
5489
5547
|
export type ComparisonMicroChartData$PressEvent = Event<
|
|
5490
5548
|
ComparisonMicroChartData$PressEventParameters,
|
|
5491
5549
|
ComparisonMicroChartData
|
|
@@ -6083,7 +6141,9 @@ declare module "sap/suite/ui/microchart/DeltaMicroChart" {
|
|
|
6083
6141
|
sWidth: CSSSize
|
|
6084
6142
|
): this;
|
|
6085
6143
|
}
|
|
6086
|
-
|
|
6144
|
+
/**
|
|
6145
|
+
* Describes the settings that can be provided to the DeltaMicroChart constructor.
|
|
6146
|
+
*/
|
|
6087
6147
|
export interface $DeltaMicroChartSettings extends $ControlSettings {
|
|
6088
6148
|
/**
|
|
6089
6149
|
* The first value for delta calculation.
|
|
@@ -6180,8 +6240,14 @@ declare module "sap/suite/ui/microchart/DeltaMicroChart" {
|
|
|
6180
6240
|
press?: (oEvent: Event) => void;
|
|
6181
6241
|
}
|
|
6182
6242
|
|
|
6243
|
+
/**
|
|
6244
|
+
* Parameters of the DeltaMicroChart#press event.
|
|
6245
|
+
*/
|
|
6183
6246
|
export interface DeltaMicroChart$PressEventParameters {}
|
|
6184
6247
|
|
|
6248
|
+
/**
|
|
6249
|
+
* Event object of the DeltaMicroChart#press event.
|
|
6250
|
+
*/
|
|
6185
6251
|
export type DeltaMicroChart$PressEvent = Event<
|
|
6186
6252
|
DeltaMicroChart$PressEventParameters,
|
|
6187
6253
|
DeltaMicroChart
|
|
@@ -6890,7 +6956,9 @@ declare module "sap/suite/ui/microchart/HarveyBallMicroChart" {
|
|
|
6890
6956
|
*/
|
|
6891
6957
|
unbindItems(): this;
|
|
6892
6958
|
}
|
|
6893
|
-
|
|
6959
|
+
/**
|
|
6960
|
+
* Describes the settings that can be provided to the HarveyBallMicroChart constructor.
|
|
6961
|
+
*/
|
|
6894
6962
|
export interface $HarveyBallMicroChartSettings extends $ControlSettings {
|
|
6895
6963
|
/**
|
|
6896
6964
|
* The total value. The total value is represented by a full circle, or 360 degrees value on the chart.
|
|
@@ -6998,8 +7066,14 @@ declare module "sap/suite/ui/microchart/HarveyBallMicroChart" {
|
|
|
6998
7066
|
press?: (oEvent: Event) => void;
|
|
6999
7067
|
}
|
|
7000
7068
|
|
|
7069
|
+
/**
|
|
7070
|
+
* Parameters of the HarveyBallMicroChart#press event.
|
|
7071
|
+
*/
|
|
7001
7072
|
export interface HarveyBallMicroChart$PressEventParameters {}
|
|
7002
7073
|
|
|
7074
|
+
/**
|
|
7075
|
+
* Event object of the HarveyBallMicroChart#press event.
|
|
7076
|
+
*/
|
|
7003
7077
|
export type HarveyBallMicroChart$PressEvent = Event<
|
|
7004
7078
|
HarveyBallMicroChart$PressEventParameters,
|
|
7005
7079
|
HarveyBallMicroChart
|
|
@@ -7235,7 +7309,9 @@ declare module "sap/suite/ui/microchart/HarveyBallMicroChartItem" {
|
|
|
7235
7309
|
sFractionScale: string
|
|
7236
7310
|
): this;
|
|
7237
7311
|
}
|
|
7238
|
-
|
|
7312
|
+
/**
|
|
7313
|
+
* Describes the settings that can be provided to the HarveyBallMicroChartItem constructor.
|
|
7314
|
+
*/
|
|
7239
7315
|
export interface $HarveyBallMicroChartItemSettings extends $ElementSettings {
|
|
7240
7316
|
/**
|
|
7241
7317
|
* The color of the sector representing the fraction value.
|
|
@@ -7895,7 +7971,9 @@ declare module "sap/suite/ui/microchart/InteractiveBarChart" {
|
|
|
7895
7971
|
*/
|
|
7896
7972
|
unbindBars(): this;
|
|
7897
7973
|
}
|
|
7898
|
-
|
|
7974
|
+
/**
|
|
7975
|
+
* Describes the settings that can be provided to the InteractiveBarChart constructor.
|
|
7976
|
+
*/
|
|
7899
7977
|
export interface $InteractiveBarChartSettings extends $ControlSettings {
|
|
7900
7978
|
/**
|
|
7901
7979
|
* The number of displayed bars.
|
|
@@ -7966,13 +8044,22 @@ declare module "sap/suite/ui/microchart/InteractiveBarChart" {
|
|
|
7966
8044
|
press?: (oEvent: Event) => void;
|
|
7967
8045
|
}
|
|
7968
8046
|
|
|
8047
|
+
/**
|
|
8048
|
+
* Parameters of the InteractiveBarChart#press event.
|
|
8049
|
+
*/
|
|
7969
8050
|
export interface InteractiveBarChart$PressEventParameters {}
|
|
7970
8051
|
|
|
8052
|
+
/**
|
|
8053
|
+
* Event object of the InteractiveBarChart#press event.
|
|
8054
|
+
*/
|
|
7971
8055
|
export type InteractiveBarChart$PressEvent = Event<
|
|
7972
8056
|
InteractiveBarChart$PressEventParameters,
|
|
7973
8057
|
InteractiveBarChart
|
|
7974
8058
|
>;
|
|
7975
8059
|
|
|
8060
|
+
/**
|
|
8061
|
+
* Parameters of the InteractiveBarChart#selectionChanged event.
|
|
8062
|
+
*/
|
|
7976
8063
|
export interface InteractiveBarChart$SelectionChangedEventParameters {
|
|
7977
8064
|
/**
|
|
7978
8065
|
* All bars which are in selected state.
|
|
@@ -7990,6 +8077,9 @@ declare module "sap/suite/ui/microchart/InteractiveBarChart" {
|
|
|
7990
8077
|
selected?: boolean;
|
|
7991
8078
|
}
|
|
7992
8079
|
|
|
8080
|
+
/**
|
|
8081
|
+
* Event object of the InteractiveBarChart#selectionChanged event.
|
|
8082
|
+
*/
|
|
7993
8083
|
export type InteractiveBarChart$SelectionChangedEvent = Event<
|
|
7994
8084
|
InteractiveBarChart$SelectionChangedEventParameters,
|
|
7995
8085
|
InteractiveBarChart
|
|
@@ -8209,7 +8299,9 @@ declare module "sap/suite/ui/microchart/InteractiveBarChartBar" {
|
|
|
8209
8299
|
fValue: float
|
|
8210
8300
|
): this;
|
|
8211
8301
|
}
|
|
8212
|
-
|
|
8302
|
+
/**
|
|
8303
|
+
* Describes the settings that can be provided to the InteractiveBarChartBar constructor.
|
|
8304
|
+
*/
|
|
8213
8305
|
export interface $InteractiveBarChartBarSettings extends $ElementSettings {
|
|
8214
8306
|
/**
|
|
8215
8307
|
* The label for the chart bar.
|
|
@@ -8788,7 +8880,9 @@ declare module "sap/suite/ui/microchart/InteractiveDonutChart" {
|
|
|
8788
8880
|
*/
|
|
8789
8881
|
unbindSegments(): this;
|
|
8790
8882
|
}
|
|
8791
|
-
|
|
8883
|
+
/**
|
|
8884
|
+
* Describes the settings that can be provided to the InteractiveDonutChart constructor.
|
|
8885
|
+
*/
|
|
8792
8886
|
export interface $InteractiveDonutChartSettings extends $ControlSettings {
|
|
8793
8887
|
/**
|
|
8794
8888
|
* Number of segments to be displayed.
|
|
@@ -8843,13 +8937,22 @@ declare module "sap/suite/ui/microchart/InteractiveDonutChart" {
|
|
|
8843
8937
|
press?: (oEvent: Event) => void;
|
|
8844
8938
|
}
|
|
8845
8939
|
|
|
8940
|
+
/**
|
|
8941
|
+
* Parameters of the InteractiveDonutChart#press event.
|
|
8942
|
+
*/
|
|
8846
8943
|
export interface InteractiveDonutChart$PressEventParameters {}
|
|
8847
8944
|
|
|
8945
|
+
/**
|
|
8946
|
+
* Event object of the InteractiveDonutChart#press event.
|
|
8947
|
+
*/
|
|
8848
8948
|
export type InteractiveDonutChart$PressEvent = Event<
|
|
8849
8949
|
InteractiveDonutChart$PressEventParameters,
|
|
8850
8950
|
InteractiveDonutChart
|
|
8851
8951
|
>;
|
|
8852
8952
|
|
|
8953
|
+
/**
|
|
8954
|
+
* Parameters of the InteractiveDonutChart#selectionChanged event.
|
|
8955
|
+
*/
|
|
8853
8956
|
export interface InteractiveDonutChart$SelectionChangedEventParameters {
|
|
8854
8957
|
/**
|
|
8855
8958
|
* Contains all selected segments.
|
|
@@ -8867,6 +8970,9 @@ declare module "sap/suite/ui/microchart/InteractiveDonutChart" {
|
|
|
8867
8970
|
selected?: boolean;
|
|
8868
8971
|
}
|
|
8869
8972
|
|
|
8973
|
+
/**
|
|
8974
|
+
* Event object of the InteractiveDonutChart#selectionChanged event.
|
|
8975
|
+
*/
|
|
8870
8976
|
export type InteractiveDonutChart$SelectionChangedEvent = Event<
|
|
8871
8977
|
InteractiveDonutChart$SelectionChangedEventParameters,
|
|
8872
8978
|
InteractiveDonutChart
|
|
@@ -9086,7 +9192,9 @@ declare module "sap/suite/ui/microchart/InteractiveDonutChartSegment" {
|
|
|
9086
9192
|
fValue?: float
|
|
9087
9193
|
): this;
|
|
9088
9194
|
}
|
|
9089
|
-
|
|
9195
|
+
/**
|
|
9196
|
+
* Describes the settings that can be provided to the InteractiveDonutChartSegment constructor.
|
|
9197
|
+
*/
|
|
9090
9198
|
export interface $InteractiveDonutChartSegmentSettings
|
|
9091
9199
|
extends $ElementSettings {
|
|
9092
9200
|
/**
|
|
@@ -9727,7 +9835,9 @@ declare module "sap/suite/ui/microchart/InteractiveLineChart" {
|
|
|
9727
9835
|
*/
|
|
9728
9836
|
unbindPoints(): this;
|
|
9729
9837
|
}
|
|
9730
|
-
|
|
9838
|
+
/**
|
|
9839
|
+
* Describes the settings that can be provided to the InteractiveLineChart constructor.
|
|
9840
|
+
*/
|
|
9731
9841
|
export interface $InteractiveLineChartSettings extends $ControlSettings {
|
|
9732
9842
|
/**
|
|
9733
9843
|
* The maximum number of points to be displayed on the chart.
|
|
@@ -9795,13 +9905,22 @@ declare module "sap/suite/ui/microchart/InteractiveLineChart" {
|
|
|
9795
9905
|
press?: (oEvent: Event) => void;
|
|
9796
9906
|
}
|
|
9797
9907
|
|
|
9908
|
+
/**
|
|
9909
|
+
* Parameters of the InteractiveLineChart#press event.
|
|
9910
|
+
*/
|
|
9798
9911
|
export interface InteractiveLineChart$PressEventParameters {}
|
|
9799
9912
|
|
|
9913
|
+
/**
|
|
9914
|
+
* Event object of the InteractiveLineChart#press event.
|
|
9915
|
+
*/
|
|
9800
9916
|
export type InteractiveLineChart$PressEvent = Event<
|
|
9801
9917
|
InteractiveLineChart$PressEventParameters,
|
|
9802
9918
|
InteractiveLineChart
|
|
9803
9919
|
>;
|
|
9804
9920
|
|
|
9921
|
+
/**
|
|
9922
|
+
* Parameters of the InteractiveLineChart#selectionChanged event.
|
|
9923
|
+
*/
|
|
9805
9924
|
export interface InteractiveLineChart$SelectionChangedEventParameters {
|
|
9806
9925
|
/**
|
|
9807
9926
|
* All points which are in selected state.
|
|
@@ -9819,6 +9938,9 @@ declare module "sap/suite/ui/microchart/InteractiveLineChart" {
|
|
|
9819
9938
|
selected?: boolean;
|
|
9820
9939
|
}
|
|
9821
9940
|
|
|
9941
|
+
/**
|
|
9942
|
+
* Event object of the InteractiveLineChart#selectionChanged event.
|
|
9943
|
+
*/
|
|
9822
9944
|
export type InteractiveLineChart$SelectionChangedEvent = Event<
|
|
9823
9945
|
InteractiveLineChart$SelectionChangedEventParameters,
|
|
9824
9946
|
InteractiveLineChart
|
|
@@ -10063,7 +10185,9 @@ declare module "sap/suite/ui/microchart/InteractiveLineChartPoint" {
|
|
|
10063
10185
|
fValue?: float
|
|
10064
10186
|
): this;
|
|
10065
10187
|
}
|
|
10066
|
-
|
|
10188
|
+
/**
|
|
10189
|
+
* Describes the settings that can be provided to the InteractiveLineChartPoint constructor.
|
|
10190
|
+
*/
|
|
10067
10191
|
export interface $InteractiveLineChartPointSettings extends $ElementSettings {
|
|
10068
10192
|
/**
|
|
10069
10193
|
* The bottom label for the chart point.
|
|
@@ -11105,7 +11229,9 @@ declare module "sap/suite/ui/microchart/LineMicroChart" {
|
|
|
11105
11229
|
*/
|
|
11106
11230
|
unbindPoints(): this;
|
|
11107
11231
|
}
|
|
11108
|
-
|
|
11232
|
+
/**
|
|
11233
|
+
* Describes the settings that can be provided to the LineMicroChart constructor.
|
|
11234
|
+
*/
|
|
11109
11235
|
export interface $LineMicroChartSettings extends $ControlSettings {
|
|
11110
11236
|
/**
|
|
11111
11237
|
* The size of the chart. If not set, the default size is applied based on the type of the device.
|
|
@@ -11269,8 +11395,14 @@ declare module "sap/suite/ui/microchart/LineMicroChart" {
|
|
|
11269
11395
|
press?: (oEvent: Event) => void;
|
|
11270
11396
|
}
|
|
11271
11397
|
|
|
11398
|
+
/**
|
|
11399
|
+
* Parameters of the LineMicroChart#press event.
|
|
11400
|
+
*/
|
|
11272
11401
|
export interface LineMicroChart$PressEventParameters {}
|
|
11273
11402
|
|
|
11403
|
+
/**
|
|
11404
|
+
* Event object of the LineMicroChart#press event.
|
|
11405
|
+
*/
|
|
11274
11406
|
export type LineMicroChart$PressEvent = Event<
|
|
11275
11407
|
LineMicroChart$PressEventParameters,
|
|
11276
11408
|
LineMicroChart
|
|
@@ -11420,7 +11552,9 @@ declare module "sap/suite/ui/microchart/LineMicroChartEmphasizedPoint" {
|
|
|
11420
11552
|
bShow?: boolean
|
|
11421
11553
|
): this;
|
|
11422
11554
|
}
|
|
11423
|
-
|
|
11555
|
+
/**
|
|
11556
|
+
* Describes the settings that can be provided to the LineMicroChartEmphasizedPoint constructor.
|
|
11557
|
+
*/
|
|
11424
11558
|
export interface $LineMicroChartEmphasizedPointSettings
|
|
11425
11559
|
extends $LineMicroChartPointSettings {
|
|
11426
11560
|
/**
|
|
@@ -11741,7 +11875,9 @@ declare module "sap/suite/ui/microchart/LineMicroChartLine" {
|
|
|
11741
11875
|
*/
|
|
11742
11876
|
unbindPoints(): this;
|
|
11743
11877
|
}
|
|
11744
|
-
|
|
11878
|
+
/**
|
|
11879
|
+
* Describes the settings that can be provided to the LineMicroChartLine constructor.
|
|
11880
|
+
*/
|
|
11745
11881
|
export interface $LineMicroChartLineSettings extends $ElementSettings {
|
|
11746
11882
|
/**
|
|
11747
11883
|
* Defines the color of the chart.
|
|
@@ -11932,7 +12068,9 @@ declare module "sap/suite/ui/microchart/LineMicroChartPoint" {
|
|
|
11932
12068
|
fY?: float
|
|
11933
12069
|
): this;
|
|
11934
12070
|
}
|
|
11935
|
-
|
|
12071
|
+
/**
|
|
12072
|
+
* Describes the settings that can be provided to the LineMicroChartPoint constructor.
|
|
12073
|
+
*/
|
|
11936
12074
|
export interface $LineMicroChartPointSettings extends $ElementSettings {
|
|
11937
12075
|
/**
|
|
11938
12076
|
* The point's horizontal position.
|
|
@@ -12388,7 +12526,9 @@ declare module "sap/suite/ui/microchart/RadialMicroChart" {
|
|
|
12388
12526
|
sWidth: CSSSize
|
|
12389
12527
|
): this;
|
|
12390
12528
|
}
|
|
12391
|
-
|
|
12529
|
+
/**
|
|
12530
|
+
* Describes the settings that can be provided to the RadialMicroChart constructor.
|
|
12531
|
+
*/
|
|
12392
12532
|
export interface $RadialMicroChartSettings extends $ControlSettings {
|
|
12393
12533
|
/**
|
|
12394
12534
|
* The total value. This is taken as 360 degrees value on the chart.
|
|
@@ -12461,8 +12601,14 @@ declare module "sap/suite/ui/microchart/RadialMicroChart" {
|
|
|
12461
12601
|
press?: (oEvent: Event) => void;
|
|
12462
12602
|
}
|
|
12463
12603
|
|
|
12604
|
+
/**
|
|
12605
|
+
* Parameters of the RadialMicroChart#press event.
|
|
12606
|
+
*/
|
|
12464
12607
|
export interface RadialMicroChart$PressEventParameters {}
|
|
12465
12608
|
|
|
12609
|
+
/**
|
|
12610
|
+
* Event object of the RadialMicroChart#press event.
|
|
12611
|
+
*/
|
|
12466
12612
|
export type RadialMicroChart$PressEvent = Event<
|
|
12467
12613
|
RadialMicroChart$PressEventParameters,
|
|
12468
12614
|
RadialMicroChart
|
|
@@ -13023,7 +13169,9 @@ declare module "sap/suite/ui/microchart/StackedBarMicroChart" {
|
|
|
13023
13169
|
*/
|
|
13024
13170
|
unbindBars(): this;
|
|
13025
13171
|
}
|
|
13026
|
-
|
|
13172
|
+
/**
|
|
13173
|
+
* Describes the settings that can be provided to the StackedBarMicroChart constructor.
|
|
13174
|
+
*/
|
|
13027
13175
|
export interface $StackedBarMicroChartSettings extends $ControlSettings {
|
|
13028
13176
|
/**
|
|
13029
13177
|
* The size of the chart. If not set, the default size is applied based on the size of the device tile.
|
|
@@ -13100,8 +13248,14 @@ declare module "sap/suite/ui/microchart/StackedBarMicroChart" {
|
|
|
13100
13248
|
press?: (oEvent: Event) => void;
|
|
13101
13249
|
}
|
|
13102
13250
|
|
|
13251
|
+
/**
|
|
13252
|
+
* Parameters of the StackedBarMicroChart#press event.
|
|
13253
|
+
*/
|
|
13103
13254
|
export interface StackedBarMicroChart$PressEventParameters {}
|
|
13104
13255
|
|
|
13256
|
+
/**
|
|
13257
|
+
* Event object of the StackedBarMicroChart#press event.
|
|
13258
|
+
*/
|
|
13105
13259
|
export type StackedBarMicroChart$PressEvent = Event<
|
|
13106
13260
|
StackedBarMicroChart$PressEventParameters,
|
|
13107
13261
|
StackedBarMicroChart
|
|
@@ -13265,7 +13419,9 @@ declare module "sap/suite/ui/microchart/StackedBarMicroChartBar" {
|
|
|
13265
13419
|
sValueColor?: ValueCSSColor
|
|
13266
13420
|
): this;
|
|
13267
13421
|
}
|
|
13268
|
-
|
|
13422
|
+
/**
|
|
13423
|
+
* Describes the settings that can be provided to the StackedBarMicroChartBar constructor.
|
|
13424
|
+
*/
|
|
13269
13425
|
export interface $StackedBarMicroChartBarSettings extends $ElementSettings {
|
|
13270
13426
|
/**
|
|
13271
13427
|
* The value for stacked bar chart. It is used in order to determine the width of the bar
|