@sapui5/types 1.115.0 → 1.116.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/README.md +5 -3
- package/package.json +1 -1
- package/types/index.d.ts +11 -3
- package/types/sap.apf.d.ts +47 -40
- package/types/sap.ca.ui.d.ts +171 -161
- package/types/sap.chart.d.ts +56 -47
- package/types/sap.collaboration.d.ts +31 -38
- package/types/sap.esh.search.ui.d.ts +112 -109
- package/types/sap.f.d.ts +718 -786
- package/types/sap.fe.core.d.ts +206 -92
- package/types/sap.fe.macros.d.ts +66 -40
- package/types/sap.fe.navigation.d.ts +9 -13
- package/types/sap.fe.placeholder.d.ts +3 -0
- package/types/sap.fe.templates.d.ts +11 -9
- package/types/sap.fe.test.d.ts +40 -69
- package/types/sap.fe.tools.d.ts +3 -0
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1223 -1502
- package/types/sap.insights.d.ts +3 -3
- package/types/sap.landvisz.d.ts +73 -67
- package/types/sap.m.d.ts +6504 -6706
- package/types/sap.makit.d.ts +55 -56
- package/types/sap.me.d.ts +71 -79
- package/types/sap.ndc.d.ts +44 -36
- package/types/sap.ovp.d.ts +25 -8
- package/types/sap.rules.ui.d.ts +38 -51
- package/types/sap.sac.df.d.ts +11 -12
- package/types/sap.suite.ui.commons.d.ts +1180 -1233
- package/types/sap.suite.ui.generic.template.d.ts +75 -82
- package/types/sap.suite.ui.microchart.d.ts +280 -291
- package/types/sap.tnt.d.ts +119 -86
- package/types/sap.ui.codeeditor.d.ts +28 -25
- package/types/sap.ui.commons.d.ts +691 -684
- package/types/sap.ui.comp.d.ts +2247 -2189
- package/types/sap.ui.core.d.ts +2434 -2444
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +38 -33
- package/types/sap.ui.fl.d.ts +55 -82
- package/types/sap.ui.generic.app.d.ts +39 -43
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +401 -292
- package/types/sap.ui.layout.d.ts +369 -420
- package/types/sap.ui.mdc.d.ts +1557 -1344
- package/types/sap.ui.richtexteditor.d.ts +40 -33
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +13 -11
- package/types/sap.ui.support.d.ts +12 -13
- package/types/sap.ui.table.d.ts +366 -368
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +961 -1007
- package/types/sap.ui.ux3.d.ts +663 -653
- package/types/sap.ui.vbm.d.ts +568 -541
- package/types/sap.ui.vk.d.ts +1511 -1834
- package/types/sap.ui.vtm.d.ts +335 -329
- package/types/sap.ui.webc.common.d.ts +7 -9
- package/types/sap.ui.webc.fiori.d.ts +1099 -509
- package/types/sap.ui.webc.main.d.ts +4937 -1323
- package/types/sap.uiext.inbox.d.ts +73 -63
- package/types/sap.ushell.d.ts +492 -1024
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +244 -277
- package/types/sap.viz.d.ts +993 -856
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +7 -12
- package/types/sap.zen.crosstab.d.ts +4 -7
- package/types/sap.zen.dsh.d.ts +133 -157
package/types/sap.chart.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/chart/library" {
|
|
4
4
|
import Dimension from "sap/chart/data/Dimension";
|
|
@@ -246,11 +246,11 @@ declare module "sap/chart/Chart" {
|
|
|
246
246
|
import UI5Element from "sap/ui/core/Element";
|
|
247
247
|
|
|
248
248
|
/**
|
|
249
|
-
* @
|
|
249
|
+
* @since 1.32.0
|
|
250
250
|
*
|
|
251
251
|
* UI5 Chart control
|
|
252
252
|
*/
|
|
253
|
-
class Chart extends BaseControl {
|
|
253
|
+
export default class Chart extends BaseControl {
|
|
254
254
|
/**
|
|
255
255
|
* Constructor for a new Chart.
|
|
256
256
|
*
|
|
@@ -486,7 +486,7 @@ declare module "sap/chart/Chart" {
|
|
|
486
486
|
/**
|
|
487
487
|
* The function to be called when the event occurs
|
|
488
488
|
*/
|
|
489
|
-
fnFunction: (p1:
|
|
489
|
+
fnFunction: (p1: Chart$DrilledDownEvent) => void,
|
|
490
490
|
/**
|
|
491
491
|
* Context object to call the event handler with. Defaults to this `sap.chart.Chart` itself
|
|
492
492
|
*/
|
|
@@ -506,7 +506,7 @@ declare module "sap/chart/Chart" {
|
|
|
506
506
|
/**
|
|
507
507
|
* The function to be called when the event occurs
|
|
508
508
|
*/
|
|
509
|
-
fnFunction: (p1:
|
|
509
|
+
fnFunction: (p1: Chart$DrilledDownEvent) => void,
|
|
510
510
|
/**
|
|
511
511
|
* Context object to call the event handler with. Defaults to this `sap.chart.Chart` itself
|
|
512
512
|
*/
|
|
@@ -531,7 +531,7 @@ declare module "sap/chart/Chart" {
|
|
|
531
531
|
/**
|
|
532
532
|
* The function to be called when the event occurs
|
|
533
533
|
*/
|
|
534
|
-
fnFunction: (p1:
|
|
534
|
+
fnFunction: (p1: Chart$DrilledUpEvent) => void,
|
|
535
535
|
/**
|
|
536
536
|
* Context object to call the event handler with. Defaults to this `sap.chart.Chart` itself
|
|
537
537
|
*/
|
|
@@ -551,7 +551,7 @@ declare module "sap/chart/Chart" {
|
|
|
551
551
|
/**
|
|
552
552
|
* The function to be called when the event occurs
|
|
553
553
|
*/
|
|
554
|
-
fnFunction: (p1:
|
|
554
|
+
fnFunction: (p1: Chart$DrilledUpEvent) => void,
|
|
555
555
|
/**
|
|
556
556
|
* Context object to call the event handler with. Defaults to this `sap.chart.Chart` itself
|
|
557
557
|
*/
|
|
@@ -810,7 +810,7 @@ declare module "sap/chart/Chart" {
|
|
|
810
810
|
/**
|
|
811
811
|
* The function to be called, when the event occurs
|
|
812
812
|
*/
|
|
813
|
-
fnFunction: (p1:
|
|
813
|
+
fnFunction: (p1: Chart$DrilledDownEvent) => void,
|
|
814
814
|
/**
|
|
815
815
|
* Context object on which the given function had to be called
|
|
816
816
|
*/
|
|
@@ -827,7 +827,7 @@ declare module "sap/chart/Chart" {
|
|
|
827
827
|
/**
|
|
828
828
|
* The function to be called, when the event occurs
|
|
829
829
|
*/
|
|
830
|
-
fnFunction: (p1:
|
|
830
|
+
fnFunction: (p1: Chart$DrilledUpEvent) => void,
|
|
831
831
|
/**
|
|
832
832
|
* Context object on which the given function had to be called
|
|
833
833
|
*/
|
|
@@ -953,7 +953,7 @@ declare module "sap/chart/Chart" {
|
|
|
953
953
|
option?: Object
|
|
954
954
|
): string;
|
|
955
955
|
/**
|
|
956
|
-
* @
|
|
956
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
957
957
|
*
|
|
958
958
|
* Fires event {@link #event:deselectData deselectData} to attached listeners.
|
|
959
959
|
*
|
|
@@ -966,7 +966,7 @@ declare module "sap/chart/Chart" {
|
|
|
966
966
|
mParameters?: object
|
|
967
967
|
): this;
|
|
968
968
|
/**
|
|
969
|
-
* @
|
|
969
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
970
970
|
*
|
|
971
971
|
* Fires event {@link #event:drilledDown drilledDown} to attached listeners.
|
|
972
972
|
*
|
|
@@ -976,10 +976,10 @@ declare module "sap/chart/Chart" {
|
|
|
976
976
|
/**
|
|
977
977
|
* Parameters to pass along with the event
|
|
978
978
|
*/
|
|
979
|
-
mParameters?: $
|
|
979
|
+
mParameters?: Chart$DrilledDownEventParameters
|
|
980
980
|
): this;
|
|
981
981
|
/**
|
|
982
|
-
* @
|
|
982
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
983
983
|
*
|
|
984
984
|
* Fires event {@link #event:drilledUp drilledUp} to attached listeners.
|
|
985
985
|
*
|
|
@@ -989,10 +989,10 @@ declare module "sap/chart/Chart" {
|
|
|
989
989
|
/**
|
|
990
990
|
* Parameters to pass along with the event
|
|
991
991
|
*/
|
|
992
|
-
mParameters?: $
|
|
992
|
+
mParameters?: Chart$DrilledUpEventParameters
|
|
993
993
|
): this;
|
|
994
994
|
/**
|
|
995
|
-
* @
|
|
995
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
996
996
|
*
|
|
997
997
|
* Fires event {@link #event:drillStackChanged drillStackChanged} to attached listeners.
|
|
998
998
|
*
|
|
@@ -1005,7 +1005,7 @@ declare module "sap/chart/Chart" {
|
|
|
1005
1005
|
mParameters?: object
|
|
1006
1006
|
): this;
|
|
1007
1007
|
/**
|
|
1008
|
-
* @
|
|
1008
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1009
1009
|
*
|
|
1010
1010
|
* Fires event {@link #event:renderComplete renderComplete} to attached listeners.
|
|
1011
1011
|
*
|
|
@@ -1018,7 +1018,7 @@ declare module "sap/chart/Chart" {
|
|
|
1018
1018
|
mParameters?: object
|
|
1019
1019
|
): this;
|
|
1020
1020
|
/**
|
|
1021
|
-
* @
|
|
1021
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1022
1022
|
*
|
|
1023
1023
|
* Fires event {@link #event:selectData selectData} to attached listeners.
|
|
1024
1024
|
*
|
|
@@ -1031,7 +1031,7 @@ declare module "sap/chart/Chart" {
|
|
|
1031
1031
|
mParameters?: object
|
|
1032
1032
|
): this;
|
|
1033
1033
|
/**
|
|
1034
|
-
* @
|
|
1034
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1035
1035
|
*
|
|
1036
1036
|
* Fires event {@link #event:valueAxisFixedScaleTurnedOff valueAxisFixedScaleTurnedOff} to attached listeners.
|
|
1037
1037
|
*
|
|
@@ -1526,7 +1526,7 @@ declare module "sap/chart/Chart" {
|
|
|
1526
1526
|
*/
|
|
1527
1527
|
getVizUid(): string;
|
|
1528
1528
|
/**
|
|
1529
|
-
* @
|
|
1529
|
+
* @since 1.54
|
|
1530
1530
|
*
|
|
1531
1531
|
* Get zoom information.
|
|
1532
1532
|
*
|
|
@@ -2296,7 +2296,6 @@ declare module "sap/chart/Chart" {
|
|
|
2296
2296
|
oConfig: object
|
|
2297
2297
|
): void;
|
|
2298
2298
|
}
|
|
2299
|
-
export default Chart;
|
|
2300
2299
|
|
|
2301
2300
|
export interface $ChartSettings extends $BaseControlSettings {
|
|
2302
2301
|
/**
|
|
@@ -2562,12 +2561,12 @@ declare module "sap/chart/Chart" {
|
|
|
2562
2561
|
/**
|
|
2563
2562
|
* fired after a drill-down operation
|
|
2564
2563
|
*/
|
|
2565
|
-
drilledDown?: (oEvent:
|
|
2564
|
+
drilledDown?: (oEvent: Chart$DrilledDownEvent) => void;
|
|
2566
2565
|
|
|
2567
2566
|
/**
|
|
2568
2567
|
* fired after a drill-up operation
|
|
2569
2568
|
*/
|
|
2570
|
-
drilledUp?: (oEvent:
|
|
2569
|
+
drilledUp?: (oEvent: Chart$DrilledUpEvent) => void;
|
|
2571
2570
|
|
|
2572
2571
|
/**
|
|
2573
2572
|
* Event fires when the rendering ends.
|
|
@@ -2598,29 +2597,43 @@ declare module "sap/chart/Chart" {
|
|
|
2598
2597
|
drillStackChanged?: (oEvent: Event) => void;
|
|
2599
2598
|
}
|
|
2600
2599
|
|
|
2601
|
-
export interface $
|
|
2600
|
+
export interface Chart$DeselectDataEventParameters {}
|
|
2602
2601
|
|
|
2603
|
-
export
|
|
2602
|
+
export type Chart$DeselectDataEvent = Event<Chart$DeselectDataEventParameters>;
|
|
2603
|
+
|
|
2604
|
+
export interface Chart$DrilledDownEventParameters {
|
|
2604
2605
|
/**
|
|
2605
2606
|
* array of strings holding the names of the added dimensions
|
|
2606
2607
|
*/
|
|
2607
2608
|
dimensions?: string[];
|
|
2608
2609
|
}
|
|
2609
2610
|
|
|
2610
|
-
export
|
|
2611
|
+
export type Chart$DrilledDownEvent = Event<Chart$DrilledDownEventParameters>;
|
|
2612
|
+
|
|
2613
|
+
export interface Chart$DrilledUpEventParameters {
|
|
2611
2614
|
/**
|
|
2612
2615
|
* array of strings holding the names of the removed dimensions
|
|
2613
2616
|
*/
|
|
2614
2617
|
dimensions?: string[];
|
|
2615
2618
|
}
|
|
2616
2619
|
|
|
2617
|
-
export
|
|
2620
|
+
export type Chart$DrilledUpEvent = Event<Chart$DrilledUpEventParameters>;
|
|
2621
|
+
|
|
2622
|
+
export interface Chart$DrillStackChangedEventParameters {}
|
|
2623
|
+
|
|
2624
|
+
export type Chart$DrillStackChangedEvent = Event<Chart$DrillStackChangedEventParameters>;
|
|
2625
|
+
|
|
2626
|
+
export interface Chart$RenderCompleteEventParameters {}
|
|
2627
|
+
|
|
2628
|
+
export type Chart$RenderCompleteEvent = Event<Chart$RenderCompleteEventParameters>;
|
|
2629
|
+
|
|
2630
|
+
export interface Chart$SelectDataEventParameters {}
|
|
2618
2631
|
|
|
2619
|
-
export
|
|
2632
|
+
export type Chart$SelectDataEvent = Event<Chart$SelectDataEventParameters>;
|
|
2620
2633
|
|
|
2621
|
-
export interface $
|
|
2634
|
+
export interface Chart$ValueAxisFixedScaleTurnedOffEventParameters {}
|
|
2622
2635
|
|
|
2623
|
-
export
|
|
2636
|
+
export type Chart$ValueAxisFixedScaleTurnedOffEvent = Event<Chart$ValueAxisFixedScaleTurnedOffEventParameters>;
|
|
2624
2637
|
}
|
|
2625
2638
|
|
|
2626
2639
|
declare module "sap/chart/ChartType" {
|
|
@@ -3558,7 +3571,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3558
3571
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3559
3572
|
|
|
3560
3573
|
/**
|
|
3561
|
-
* @
|
|
3574
|
+
* @since 1.32.0
|
|
3562
3575
|
*
|
|
3563
3576
|
* Definition of a single dimension in a chart
|
|
3564
3577
|
*
|
|
@@ -3568,7 +3581,7 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3568
3581
|
* with role “series” and “category2” are assigned to the feed uid “categoryAxis2”. treemap
|
|
3569
3582
|
* All dimensions are assigned to the feed uid “categoryAxis” in the default sequence.
|
|
3570
3583
|
*/
|
|
3571
|
-
class Dimension extends UI5Element {
|
|
3584
|
+
export default class Dimension extends UI5Element {
|
|
3572
3585
|
/**
|
|
3573
3586
|
* Constructor for a new ui5/data/Dimension.
|
|
3574
3587
|
*
|
|
@@ -3828,7 +3841,6 @@ declare module "sap/chart/data/Dimension" {
|
|
|
3828
3841
|
sTextProperty: string
|
|
3829
3842
|
): this;
|
|
3830
3843
|
}
|
|
3831
|
-
export default Dimension;
|
|
3832
3844
|
|
|
3833
3845
|
export interface $DimensionSettings extends $ElementSettings {
|
|
3834
3846
|
/**
|
|
@@ -3926,11 +3938,11 @@ declare module "sap/chart/data/HierarchyDimension" {
|
|
|
3926
3938
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3927
3939
|
|
|
3928
3940
|
/**
|
|
3929
|
-
* @
|
|
3941
|
+
* @since 1.54.0
|
|
3930
3942
|
*
|
|
3931
3943
|
* Definition of a single hierarchy dimension in a chart
|
|
3932
3944
|
*/
|
|
3933
|
-
class HierarchyDimension extends Dimension {
|
|
3945
|
+
export default class HierarchyDimension extends Dimension {
|
|
3934
3946
|
/**
|
|
3935
3947
|
* Constructor for a new ui5/data/HierarchyDimension.
|
|
3936
3948
|
*
|
|
@@ -4023,7 +4035,6 @@ declare module "sap/chart/data/HierarchyDimension" {
|
|
|
4023
4035
|
iLevel?: int
|
|
4024
4036
|
): this;
|
|
4025
4037
|
}
|
|
4026
|
-
export default HierarchyDimension;
|
|
4027
4038
|
|
|
4028
4039
|
export interface $HierarchyDimensionSettings extends $DimensionSettings {
|
|
4029
4040
|
/**
|
|
@@ -4045,7 +4056,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4045
4056
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
4046
4057
|
|
|
4047
4058
|
/**
|
|
4048
|
-
* @
|
|
4059
|
+
* @since 1.32.0
|
|
4049
4060
|
*
|
|
4050
4061
|
* Definition of a single measure in a chart
|
|
4051
4062
|
*
|
|
@@ -4064,7 +4075,7 @@ declare module "sap/chart/data/Measure" {
|
|
|
4064
4075
|
* ..dual.. At least one measure is assigned to each of the feed uids “valueAxis” and “valueAxis2”,
|
|
4065
4076
|
* according to the general rule.
|
|
4066
4077
|
*/
|
|
4067
|
-
class Measure extends UI5Element {
|
|
4078
|
+
export default class Measure extends UI5Element {
|
|
4068
4079
|
/**
|
|
4069
4080
|
* Constructor for a new ui5/data/Measure.
|
|
4070
4081
|
*
|
|
@@ -4126,8 +4137,8 @@ declare module "sap/chart/data/Measure" {
|
|
|
4126
4137
|
*/
|
|
4127
4138
|
static getMetadata(): ElementMetadata;
|
|
4128
4139
|
/**
|
|
4129
|
-
* @
|
|
4130
|
-
* @
|
|
4140
|
+
* @since 1.63
|
|
4141
|
+
* @experimental
|
|
4131
4142
|
*
|
|
4132
4143
|
* Gets current value of property {@link #getAnalyticalInfo analyticalInfo}.
|
|
4133
4144
|
*
|
|
@@ -4231,8 +4242,8 @@ declare module "sap/chart/data/Measure" {
|
|
|
4231
4242
|
*/
|
|
4232
4243
|
getValueFormat(): string;
|
|
4233
4244
|
/**
|
|
4234
|
-
* @
|
|
4235
|
-
* @
|
|
4245
|
+
* @since 1.63
|
|
4246
|
+
* @experimental
|
|
4236
4247
|
*
|
|
4237
4248
|
* Sets a new value for property {@link #getAnalyticalInfo analyticalInfo}.
|
|
4238
4249
|
*
|
|
@@ -4392,7 +4403,6 @@ declare module "sap/chart/data/Measure" {
|
|
|
4392
4403
|
sValueFormat?: string
|
|
4393
4404
|
): this;
|
|
4394
4405
|
}
|
|
4395
|
-
export default Measure;
|
|
4396
4406
|
|
|
4397
4407
|
export interface $MeasureSettings extends $ElementSettings {
|
|
4398
4408
|
/**
|
|
@@ -4465,8 +4475,8 @@ declare module "sap/chart/data/Measure" {
|
|
|
4465
4475
|
semanticallyRelatedMeasures?: object | PropertyBindingInfo | `{${string}}`;
|
|
4466
4476
|
|
|
4467
4477
|
/**
|
|
4468
|
-
* @
|
|
4469
|
-
* @
|
|
4478
|
+
* @since 1.63
|
|
4479
|
+
* @experimental
|
|
4470
4480
|
*
|
|
4471
4481
|
* The analytical extra information
|
|
4472
4482
|
*/
|
|
@@ -4549,7 +4559,7 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4549
4559
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
4550
4560
|
|
|
4551
4561
|
/**
|
|
4552
|
-
* @
|
|
4562
|
+
* @since 1.38.0
|
|
4553
4563
|
*
|
|
4554
4564
|
* Definition of a single time dimension in a chart
|
|
4555
4565
|
*
|
|
@@ -4558,7 +4568,7 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4558
4568
|
*
|
|
4559
4569
|
* TimeDmension is assigned to feed uid "timeAxis".
|
|
4560
4570
|
*/
|
|
4561
|
-
class TimeDimension extends Dimension {
|
|
4571
|
+
export default class TimeDimension extends Dimension {
|
|
4562
4572
|
/**
|
|
4563
4573
|
* Constructor for a new ui5/data/TimeDimension.
|
|
4564
4574
|
*
|
|
@@ -4711,7 +4721,6 @@ declare module "sap/chart/data/TimeDimension" {
|
|
|
4711
4721
|
sTimeUnit: TimeUnitType | keyof typeof TimeUnitType
|
|
4712
4722
|
): this;
|
|
4713
4723
|
}
|
|
4714
|
-
export default TimeDimension;
|
|
4715
4724
|
|
|
4716
4725
|
export interface $TimeDimensionSettings extends $DimensionSettings {
|
|
4717
4726
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/collaboration/library" {
|
|
4
4
|
/**
|
|
@@ -100,12 +100,12 @@ declare module "sap/collaboration/components/feed/Component" {
|
|
|
100
100
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
101
101
|
|
|
102
102
|
/**
|
|
103
|
-
* @
|
|
103
|
+
* @since 1.30
|
|
104
104
|
*
|
|
105
105
|
* The Feed Component is an SAPUI5 component that allows you to display SAP Jam feeds. It includes the option
|
|
106
106
|
* to add new posts and reply to entries and view other users' social profiles from SAP Jam.
|
|
107
107
|
*/
|
|
108
|
-
class Component extends UIComponent {
|
|
108
|
+
export default class Component extends UIComponent {
|
|
109
109
|
/**
|
|
110
110
|
* Constructor for the Feed Component.
|
|
111
111
|
*
|
|
@@ -146,13 +146,13 @@ declare module "sap/collaboration/components/feed/Component" {
|
|
|
146
146
|
);
|
|
147
147
|
|
|
148
148
|
/**
|
|
149
|
-
* @
|
|
149
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
150
150
|
*
|
|
151
151
|
* The method to create the Content (UI Control Tree) of the Component.
|
|
152
152
|
*/
|
|
153
153
|
static createContent(): void;
|
|
154
154
|
/**
|
|
155
|
-
* @
|
|
155
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
156
156
|
*
|
|
157
157
|
* Cleans up the component instance before destruction.
|
|
158
158
|
*/
|
|
@@ -193,19 +193,19 @@ declare module "sap/collaboration/components/feed/Component" {
|
|
|
193
193
|
*/
|
|
194
194
|
static getSelectedGroup(): Record<string, any>;
|
|
195
195
|
/**
|
|
196
|
-
* @
|
|
196
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
197
197
|
*
|
|
198
198
|
* Initializes the Component instance after creation.
|
|
199
199
|
*/
|
|
200
200
|
static init(): void;
|
|
201
201
|
/**
|
|
202
|
-
* @
|
|
202
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
203
203
|
*
|
|
204
204
|
* Function is called when the rendering of the Component Container is completed.
|
|
205
205
|
*/
|
|
206
206
|
static onAfterRendering(): void;
|
|
207
207
|
/**
|
|
208
|
-
* @
|
|
208
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
209
209
|
*
|
|
210
210
|
* Function is called when the rendering of the Component Container is started.
|
|
211
211
|
*/
|
|
@@ -306,7 +306,6 @@ declare module "sap/collaboration/components/feed/Component" {
|
|
|
306
306
|
oFeedSources: Record<string, any> | string[]
|
|
307
307
|
): this;
|
|
308
308
|
}
|
|
309
|
-
export default Component;
|
|
310
309
|
|
|
311
310
|
export interface $ComponentSettings extends $UIComponentSettings {
|
|
312
311
|
axisOrientation?:
|
|
@@ -344,7 +343,7 @@ declare module "sap/collaboration/components/fiori/feed/Component" {
|
|
|
344
343
|
* This class defines the Reusable UI5 Component structure, i.e properties, aggregations and events, if
|
|
345
344
|
* any, and creates the UI5 controls to be displayed.
|
|
346
345
|
*/
|
|
347
|
-
class Component extends UIComponent {
|
|
346
|
+
export default class Component extends UIComponent {
|
|
348
347
|
/**
|
|
349
348
|
* Constructor for the Feed Component.
|
|
350
349
|
*
|
|
@@ -594,7 +593,6 @@ declare module "sap/collaboration/components/fiori/feed/Component" {
|
|
|
594
593
|
sWidth?: CSSSize
|
|
595
594
|
): this;
|
|
596
595
|
}
|
|
597
|
-
export default Component;
|
|
598
596
|
|
|
599
597
|
export interface $ComponentSettings extends $UIComponentSettings {
|
|
600
598
|
/**
|
|
@@ -665,7 +663,7 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
|
|
|
665
663
|
* a dialog in order to discuss information in SAP JAM by adding and replying to feed posts related to a
|
|
666
664
|
* specific Business Object.
|
|
667
665
|
*/
|
|
668
|
-
class Component extends UIComponent {
|
|
666
|
+
export default class Component extends UIComponent {
|
|
669
667
|
/**
|
|
670
668
|
* Constructor for the Feed Dialog Component.
|
|
671
669
|
*
|
|
@@ -950,7 +948,6 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
|
|
|
950
948
|
sWidth?: CSSSize
|
|
951
949
|
): this;
|
|
952
950
|
}
|
|
953
|
-
export default Component;
|
|
954
951
|
|
|
955
952
|
export interface $ComponentSettings extends $UIComponentSettings {
|
|
956
953
|
/**
|
|
@@ -1035,7 +1032,7 @@ declare module "sap/collaboration/components/fiori/notification/Component" {
|
|
|
1035
1032
|
* This component refreshes itself when the number of seconds specified in the refreshInterval
|
|
1036
1033
|
* parameter elapses. When refreshing, the backend is called to obtain the latest notifications.
|
|
1037
1034
|
*/
|
|
1038
|
-
class Component extends UIComponent {
|
|
1035
|
+
export default class Component extends UIComponent {
|
|
1039
1036
|
/**
|
|
1040
1037
|
* Constructor for the notification component.
|
|
1041
1038
|
*
|
|
@@ -1228,7 +1225,6 @@ declare module "sap/collaboration/components/fiori/notification/Component" {
|
|
|
1228
1225
|
iTransitionInterval?: int
|
|
1229
1226
|
): this;
|
|
1230
1227
|
}
|
|
1231
|
-
export default Component;
|
|
1232
1228
|
|
|
1233
1229
|
export interface $ComponentSettings extends $UIComponentSettings {
|
|
1234
1230
|
/**
|
|
@@ -1268,7 +1264,7 @@ declare module "sap/collaboration/components/fiori/sharing/attachment/Attachment
|
|
|
1268
1264
|
*
|
|
1269
1265
|
* Attachment objects represent files.
|
|
1270
1266
|
*/
|
|
1271
|
-
class Attachment extends BaseObject {
|
|
1267
|
+
export default class Attachment extends BaseObject {
|
|
1272
1268
|
/**
|
|
1273
1269
|
* This constructor must be called in the following way: new Attachment("name", "mimeType", "url")
|
|
1274
1270
|
* name, mimeType, and url are only place holders and can be any string.
|
|
@@ -1318,7 +1314,6 @@ declare module "sap/collaboration/components/fiori/sharing/attachment/Attachment
|
|
|
1318
1314
|
*/
|
|
1319
1315
|
static getMetadata(): Metadata;
|
|
1320
1316
|
}
|
|
1321
|
-
export default Attachment;
|
|
1322
1317
|
}
|
|
1323
1318
|
|
|
1324
1319
|
declare module "sap/collaboration/components/fiori/sharing/Component" {
|
|
@@ -1340,7 +1335,7 @@ declare module "sap/collaboration/components/fiori/sharing/Component" {
|
|
|
1340
1335
|
*
|
|
1341
1336
|
* A Share Component is a ui5 component that applications can use to share information to SAP Jam
|
|
1342
1337
|
*/
|
|
1343
|
-
class Component extends UIComponent {
|
|
1338
|
+
export default class Component extends UIComponent {
|
|
1344
1339
|
/**
|
|
1345
1340
|
* Constructor for the share component
|
|
1346
1341
|
*
|
|
@@ -1638,7 +1633,6 @@ declare module "sap/collaboration/components/fiori/sharing/Component" {
|
|
|
1638
1633
|
*/
|
|
1639
1634
|
shareToJam(): void;
|
|
1640
1635
|
}
|
|
1641
|
-
export default Component;
|
|
1642
1636
|
|
|
1643
1637
|
export interface $ComponentSettings extends $UIComponentSettings {
|
|
1644
1638
|
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
@@ -1705,7 +1699,7 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
|
|
|
1705
1699
|
* The Share Dialog component is an SAPUI5 component that you can use to create a dialog in your application
|
|
1706
1700
|
* to enable you to enter or edit information shared to SAP Jam.
|
|
1707
1701
|
*/
|
|
1708
|
-
class Component extends UIComponent {
|
|
1702
|
+
export default class Component extends UIComponent {
|
|
1709
1703
|
/**
|
|
1710
1704
|
* Constructor for the share dialog component
|
|
1711
1705
|
*
|
|
@@ -1902,7 +1896,6 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
|
|
|
1902
1896
|
oSettings: object
|
|
1903
1897
|
): void;
|
|
1904
1898
|
}
|
|
1905
|
-
export default Component;
|
|
1906
1899
|
|
|
1907
1900
|
export interface $ComponentSettings extends $UIComponentSettings {
|
|
1908
1901
|
/**
|
|
@@ -1961,12 +1954,12 @@ declare module "sap/collaboration/components/socialprofile/Component" {
|
|
|
1961
1954
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1962
1955
|
|
|
1963
1956
|
/**
|
|
1964
|
-
* @
|
|
1957
|
+
* @experimental - The API is not stable and the UI is not finalized. The implementation for this feature
|
|
1965
1958
|
* is subject to change.
|
|
1966
1959
|
*
|
|
1967
1960
|
* Social Profile Component
|
|
1968
1961
|
*/
|
|
1969
|
-
class Component extends UIComponent {
|
|
1962
|
+
export default class Component extends UIComponent {
|
|
1970
1963
|
/**
|
|
1971
1964
|
* Constructor for the Social Profile Component.
|
|
1972
1965
|
*
|
|
@@ -2009,7 +2002,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
|
|
|
2009
2002
|
);
|
|
2010
2003
|
|
|
2011
2004
|
/**
|
|
2012
|
-
* @
|
|
2005
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2013
2006
|
*
|
|
2014
2007
|
* Cleans up the component instance before destruction. [borrowed from sap.ui.core.Component]
|
|
2015
2008
|
*/
|
|
@@ -2044,19 +2037,19 @@ declare module "sap/collaboration/components/socialprofile/Component" {
|
|
|
2044
2037
|
*/
|
|
2045
2038
|
static getMetadata(): ComponentMetadata;
|
|
2046
2039
|
/**
|
|
2047
|
-
* @
|
|
2040
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2048
2041
|
*
|
|
2049
2042
|
* Initializes the Component instance after creation. [borrowed from sap.ui.core.UIComponent]
|
|
2050
2043
|
*/
|
|
2051
2044
|
static init(): void;
|
|
2052
2045
|
/**
|
|
2053
|
-
* @
|
|
2046
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2054
2047
|
*
|
|
2055
2048
|
* Function is called when the rendering of the Component Container is completed. [borrowed from sap.ui.core.UIComponent]
|
|
2056
2049
|
*/
|
|
2057
2050
|
static onAfterRendering(): void;
|
|
2058
2051
|
/**
|
|
2059
|
-
* @
|
|
2052
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2060
2053
|
*
|
|
2061
2054
|
* Function is called when the rendering of the Component Container is started. [borrowed from sap.ui.core.UIComponent]
|
|
2062
2055
|
*/
|
|
@@ -2190,7 +2183,6 @@ declare module "sap/collaboration/components/socialprofile/Component" {
|
|
|
2190
2183
|
sWidth: string
|
|
2191
2184
|
): this;
|
|
2192
2185
|
}
|
|
2193
|
-
export default Component;
|
|
2194
2186
|
|
|
2195
2187
|
export interface $ComponentSettings extends $UIComponentSettings {
|
|
2196
2188
|
placement?:
|
|
@@ -2237,7 +2229,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2237
2229
|
*
|
|
2238
2230
|
* Social Timeline
|
|
2239
2231
|
*/
|
|
2240
|
-
class Component extends UIComponent {
|
|
2232
|
+
export default class Component extends UIComponent {
|
|
2241
2233
|
/**
|
|
2242
2234
|
* Constructor for the Social Timeline Component.
|
|
2243
2235
|
*
|
|
@@ -2276,7 +2268,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2276
2268
|
);
|
|
2277
2269
|
|
|
2278
2270
|
/**
|
|
2279
|
-
* @
|
|
2271
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2280
2272
|
*
|
|
2281
2273
|
* The method to create the Content (UI Control Tree) of the Component.
|
|
2282
2274
|
*/
|
|
@@ -2292,7 +2284,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2292
2284
|
sId: string
|
|
2293
2285
|
): void;
|
|
2294
2286
|
/**
|
|
2295
|
-
* @
|
|
2287
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2296
2288
|
*
|
|
2297
2289
|
* Cleans up the component instance before destruction.
|
|
2298
2290
|
*/
|
|
@@ -2327,19 +2319,19 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2327
2319
|
*/
|
|
2328
2320
|
static getMetadata(): ComponentMetadata;
|
|
2329
2321
|
/**
|
|
2330
|
-
* @
|
|
2322
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2331
2323
|
*
|
|
2332
2324
|
* Initializes the Component instance after creation.
|
|
2333
2325
|
*/
|
|
2334
2326
|
static init(): void;
|
|
2335
2327
|
/**
|
|
2336
|
-
* @
|
|
2328
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2337
2329
|
*
|
|
2338
2330
|
* Function is called when the rendering of the Component Container is completed.
|
|
2339
2331
|
*/
|
|
2340
2332
|
static onAfterRendering(): void;
|
|
2341
2333
|
/**
|
|
2342
|
-
* @
|
|
2334
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2343
2335
|
*
|
|
2344
2336
|
* Function is called when the rendering of the Component Container is started.
|
|
2345
2337
|
*/
|
|
@@ -2378,7 +2370,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2378
2370
|
businessObjectMap: object
|
|
2379
2371
|
): void;
|
|
2380
2372
|
/**
|
|
2381
|
-
* @
|
|
2373
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2382
2374
|
*
|
|
2383
2375
|
* Set property of component
|
|
2384
2376
|
*/
|
|
@@ -2471,7 +2463,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2471
2463
|
oListener?: object
|
|
2472
2464
|
): this;
|
|
2473
2465
|
/**
|
|
2474
|
-
* @
|
|
2466
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2475
2467
|
*
|
|
2476
2468
|
* Fires event {@link #event:customActionPress customActionPress} to attached listeners.
|
|
2477
2469
|
*
|
|
@@ -2659,7 +2651,6 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2659
2651
|
sWidth: CSSSize
|
|
2660
2652
|
): this;
|
|
2661
2653
|
}
|
|
2662
|
-
export default Component;
|
|
2663
2654
|
|
|
2664
2655
|
export interface $ComponentSettings extends $UIComponentSettings {
|
|
2665
2656
|
enableSocial?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -2687,7 +2678,9 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2687
2678
|
customActionPress?: (oEvent: Event) => void;
|
|
2688
2679
|
}
|
|
2689
2680
|
|
|
2690
|
-
export interface $
|
|
2681
|
+
export interface Component$CustomActionPressEventParameters {}
|
|
2682
|
+
|
|
2683
|
+
export type Component$CustomActionPressEvent = Event<Component$CustomActionPressEventParameters>;
|
|
2691
2684
|
}
|
|
2692
2685
|
|
|
2693
2686
|
declare namespace sap {
|