@sapui5/types 1.120.11 → 1.120.13

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.
Files changed (55) hide show
  1. package/LICENSE.txt +13 -10
  2. package/README.md +1 -1
  3. package/package.json +1 -1
  4. package/types/sap.chart.d.ts +58 -6
  5. package/types/sap.esh.search.ui.d.ts +16 -2
  6. package/types/sap.f.d.ts +372 -54
  7. package/types/sap.fe.core.d.ts +11 -3
  8. package/types/sap.fe.macros.d.ts +96 -12
  9. package/types/sap.fe.navigation.d.ts +1 -1
  10. package/types/sap.fe.placeholder.d.ts +1 -1
  11. package/types/sap.fe.templates.d.ts +1 -1
  12. package/types/sap.fe.test.d.ts +1 -1
  13. package/types/sap.fe.tools.d.ts +1 -1
  14. package/types/sap.gantt.d.ts +1001 -139
  15. package/types/sap.insights.d.ts +4 -2
  16. package/types/sap.m.d.ts +3123 -276
  17. package/types/sap.makit.d.ts +115 -14
  18. package/types/sap.me.d.ts +84 -7
  19. package/types/sap.ndc.d.ts +22 -2
  20. package/types/sap.ovp.d.ts +1 -1
  21. package/types/sap.sac.df.d.ts +294 -44
  22. package/types/sap.suite.ui.commons.d.ts +1148 -118
  23. package/types/sap.suite.ui.generic.template.d.ts +10 -2
  24. package/types/sap.suite.ui.microchart.d.ts +184 -28
  25. package/types/sap.tnt.d.ts +40 -8
  26. package/types/sap.ui.codeeditor.d.ts +16 -2
  27. package/types/sap.ui.commons.d.ts +756 -90
  28. package/types/sap.ui.comp.d.ts +884 -50
  29. package/types/sap.ui.core.d.ts +1112 -135
  30. package/types/sap.ui.dt.d.ts +1 -1
  31. package/types/sap.ui.export.d.ts +19 -4
  32. package/types/sap.ui.fl.d.ts +44 -3
  33. package/types/sap.ui.integration.d.ts +144 -6
  34. package/types/sap.ui.layout.d.ts +166 -41
  35. package/types/sap.ui.mdc.d.ts +430 -38
  36. package/types/sap.ui.richtexteditor.d.ts +28 -2
  37. package/types/sap.ui.rta.d.ts +1 -1
  38. package/types/sap.ui.suite.d.ts +27 -3
  39. package/types/sap.ui.support.d.ts +1 -1
  40. package/types/sap.ui.table.d.ts +222 -19
  41. package/types/sap.ui.testrecorder.d.ts +1 -1
  42. package/types/sap.ui.unified.d.ts +431 -35
  43. package/types/sap.ui.ux3.d.ts +524 -31
  44. package/types/sap.ui.vbm.d.ts +6427 -3308
  45. package/types/sap.ui.webc.common.d.ts +7 -1
  46. package/types/sap.ui.webc.fiori.d.ts +351 -29
  47. package/types/sap.ui.webc.main.d.ts +1035 -83
  48. package/types/sap.uiext.inbox.d.ts +124 -13
  49. package/types/sap.ushell.d.ts +147 -12
  50. package/types/sap.ushell_abap.d.ts +1 -1
  51. package/types/sap.uxap.d.ts +118 -18
  52. package/types/sap.viz.d.ts +2619 -130
  53. package/types/sap.zen.commons.d.ts +104 -23
  54. package/types/sap.zen.crosstab.d.ts +96 -16
  55. package/types/sap.zen.dsh.d.ts +255 -149
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.4
1
+ // For Library Version: 1.120.5
2
2
 
3
3
  declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
4
4
  /**
@@ -1710,7 +1710,9 @@ declare module "sap/suite/ui/commons/AriaProperties" {
1710
1710
  sRole?: string
1711
1711
  ): this;
1712
1712
  }
1713
-
1713
+ /**
1714
+ * Describes the settings that can be provided to the AriaProperties constructor.
1715
+ */
1714
1716
  export interface $AriaPropertiesSettings extends $ElementSettings {
1715
1717
  /**
1716
1718
  * Defines a string value that labels the current element. See the related `labelledBy` property.
@@ -1825,7 +1827,11 @@ declare module "sap/suite/ui/commons/BulletChart" {
1825
1827
  */
1826
1828
  static getMetadata(): ElementMetadata;
1827
1829
  }
1828
-
1830
+ /**
1831
+ * Describes the settings that can be provided to the BulletChart constructor.
1832
+ *
1833
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.BulletMicroChart.
1834
+ */
1829
1835
  export interface $BulletChartSettings extends $BulletMicroChartSettings {}
1830
1836
  }
1831
1837
 
@@ -1912,7 +1918,11 @@ declare module "sap/suite/ui/commons/BulletChartData" {
1912
1918
  */
1913
1919
  static getMetadata(): ElementMetadata;
1914
1920
  }
1915
-
1921
+ /**
1922
+ * Describes the settings that can be provided to the BulletChartData constructor.
1923
+ *
1924
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.BulletMicroChartData.
1925
+ */
1916
1926
  export interface $BulletChartDataSettings
1917
1927
  extends $BulletMicroChartDataSettings {}
1918
1928
  }
@@ -2172,7 +2182,11 @@ declare module "sap/suite/ui/commons/BusinessCard" {
2172
2182
  sWidth?: CSSSize
2173
2183
  ): this;
2174
2184
  }
2175
-
2185
+ /**
2186
+ * Describes the settings that can be provided to the BusinessCard constructor.
2187
+ *
2188
+ * @deprecated (since 1.32) - Deprecated. Standard Fiori technology should be used.
2189
+ */
2176
2190
  export interface $BusinessCardSettings extends $ControlSettings {
2177
2191
  /**
2178
2192
  * Title of the BusinessCard that describes its type.
@@ -3471,7 +3485,9 @@ declare module "sap/suite/ui/commons/CalculationBuilder" {
3471
3485
  */
3472
3486
  validateParts(): any[];
3473
3487
  }
3474
-
3488
+ /**
3489
+ * Describes the settings that can be provided to the CalculationBuilder constructor.
3490
+ */
3475
3491
  export interface $CalculationBuilderSettings extends $ControlSettings {
3476
3492
  /**
3477
3493
  * Holds the arithmetic expression.
@@ -3628,20 +3644,35 @@ declare module "sap/suite/ui/commons/CalculationBuilder" {
3628
3644
  afterValidation?: (oEvent: Event) => void;
3629
3645
  }
3630
3646
 
3647
+ /**
3648
+ * Parameters of the CalculationBuilder#afterValidation event.
3649
+ */
3631
3650
  export interface CalculationBuilder$AfterValidationEventParameters {}
3632
3651
 
3652
+ /**
3653
+ * Event object of the CalculationBuilder#afterValidation event.
3654
+ */
3633
3655
  export type CalculationBuilder$AfterValidationEvent = Event<
3634
3656
  CalculationBuilder$AfterValidationEventParameters,
3635
3657
  CalculationBuilder
3636
3658
  >;
3637
3659
 
3660
+ /**
3661
+ * Parameters of the CalculationBuilder#change event.
3662
+ */
3638
3663
  export interface CalculationBuilder$ChangeEventParameters {}
3639
3664
 
3665
+ /**
3666
+ * Event object of the CalculationBuilder#change event.
3667
+ */
3640
3668
  export type CalculationBuilder$ChangeEvent = Event<
3641
3669
  CalculationBuilder$ChangeEventParameters,
3642
3670
  CalculationBuilder
3643
3671
  >;
3644
3672
 
3673
+ /**
3674
+ * Parameters of the CalculationBuilder#validateFunction event.
3675
+ */
3645
3676
  export interface CalculationBuilder$ValidateFunctionEventParameters {
3646
3677
  definition?: object;
3647
3678
 
@@ -3650,6 +3681,9 @@ declare module "sap/suite/ui/commons/CalculationBuilder" {
3650
3681
  result?: CalculationBuilderValidationResult;
3651
3682
  }
3652
3683
 
3684
+ /**
3685
+ * Event object of the CalculationBuilder#validateFunction event.
3686
+ */
3653
3687
  export type CalculationBuilder$ValidateFunctionEvent = Event<
3654
3688
  CalculationBuilder$ValidateFunctionEventParameters,
3655
3689
  CalculationBuilder
@@ -3944,7 +3978,9 @@ declare module "sap/suite/ui/commons/CalculationBuilderFunction" {
3944
3978
  bUseDefaultValidation?: boolean
3945
3979
  ): this;
3946
3980
  }
3947
-
3981
+ /**
3982
+ * Describes the settings that can be provided to the CalculationBuilderFunction constructor.
3983
+ */
3948
3984
  export interface $CalculationBuilderFunctionSettings
3949
3985
  extends $ControlSettings {
3950
3986
  /**
@@ -4284,7 +4320,9 @@ declare module "sap/suite/ui/commons/CalculationBuilderGroup" {
4284
4320
  sTitle?: string
4285
4321
  ): this;
4286
4322
  }
4287
-
4323
+ /**
4324
+ * Describes the settings that can be provided to the CalculationBuilderGroup constructor.
4325
+ */
4288
4326
  export interface $CalculationBuilderGroupSettings extends $ControlSettings {
4289
4327
  /**
4290
4328
  * A key associated with the group. This property is mandatory.
@@ -4320,10 +4358,16 @@ declare module "sap/suite/ui/commons/CalculationBuilderGroup" {
4320
4358
  setSelection?: (oEvent: CalculationBuilderGroup$SetSelectionEvent) => void;
4321
4359
  }
4322
4360
 
4361
+ /**
4362
+ * Parameters of the CalculationBuilderGroup#setSelection event.
4363
+ */
4323
4364
  export interface CalculationBuilderGroup$SetSelectionEventParameters {
4324
4365
  key?: string;
4325
4366
  }
4326
4367
 
4368
+ /**
4369
+ * Event object of the CalculationBuilderGroup#setSelection event.
4370
+ */
4327
4371
  export type CalculationBuilderGroup$SetSelectionEvent = Event<
4328
4372
  CalculationBuilderGroup$SetSelectionEventParameters,
4329
4373
  CalculationBuilderGroup
@@ -4457,7 +4501,9 @@ declare module "sap/suite/ui/commons/CalculationBuilderItem" {
4457
4501
  sKey?: string
4458
4502
  ): this;
4459
4503
  }
4460
-
4504
+ /**
4505
+ * Describes the settings that can be provided to the CalculationBuilderItem constructor.
4506
+ */
4461
4507
  export interface $CalculationBuilderItemSettings extends $ControlSettings {
4462
4508
  /**
4463
4509
  * A key associated with the item. This property is mandatory.
@@ -4523,7 +4569,9 @@ declare module "sap/suite/ui/commons/CalculationBuilderValidationResult" {
4523
4569
  */
4524
4570
  static getMetadata(): ManagedObjectMetadata;
4525
4571
  }
4526
-
4572
+ /**
4573
+ * Describes the settings that can be provided to the CalculationBuilderValidationResult constructor.
4574
+ */
4527
4575
  export interface $CalculationBuilderValidationResultSettings
4528
4576
  extends $ManagedObjectSettings {}
4529
4577
  }
@@ -4769,7 +4817,9 @@ declare module "sap/suite/ui/commons/CalculationBuilderVariable" {
4769
4817
  sLabel?: string
4770
4818
  ): this;
4771
4819
  }
4772
-
4820
+ /**
4821
+ * Describes the settings that can be provided to the CalculationBuilderVariable constructor.
4822
+ */
4773
4823
  export interface $CalculationBuilderVariableSettings
4774
4824
  extends $ControlSettings {
4775
4825
  /**
@@ -5891,7 +5941,9 @@ declare module "sap/suite/ui/commons/ChartContainer" {
5891
5941
  */
5892
5942
  updateChartContainer(): ChartContainer;
5893
5943
  }
5894
-
5944
+ /**
5945
+ * Describes the settings that can be provided to the ChartContainer constructor.
5946
+ */
5895
5947
  export interface $ChartContainerSettings extends $ControlSettings {
5896
5948
  /**
5897
5949
  * Set to true to display the personalization icon. Set to false to hide it.
@@ -6030,6 +6082,9 @@ declare module "sap/suite/ui/commons/ChartContainer" {
6030
6082
  customZoomOutPress?: (oEvent: Event) => void;
6031
6083
  }
6032
6084
 
6085
+ /**
6086
+ * Parameters of the ChartContainer#contentChange event.
6087
+ */
6033
6088
  export interface ChartContainer$ContentChangeEventParameters {
6034
6089
  /**
6035
6090
  * Id of the selected item.
@@ -6037,27 +6092,48 @@ declare module "sap/suite/ui/commons/ChartContainer" {
6037
6092
  selectedItemId?: string;
6038
6093
  }
6039
6094
 
6095
+ /**
6096
+ * Event object of the ChartContainer#contentChange event.
6097
+ */
6040
6098
  export type ChartContainer$ContentChangeEvent = Event<
6041
6099
  ChartContainer$ContentChangeEventParameters,
6042
6100
  ChartContainer
6043
6101
  >;
6044
6102
 
6103
+ /**
6104
+ * Parameters of the ChartContainer#customZoomInPress event.
6105
+ */
6045
6106
  export interface ChartContainer$CustomZoomInPressEventParameters {}
6046
6107
 
6108
+ /**
6109
+ * Event object of the ChartContainer#customZoomInPress event.
6110
+ */
6047
6111
  export type ChartContainer$CustomZoomInPressEvent = Event<
6048
6112
  ChartContainer$CustomZoomInPressEventParameters,
6049
6113
  ChartContainer
6050
6114
  >;
6051
6115
 
6116
+ /**
6117
+ * Parameters of the ChartContainer#customZoomOutPress event.
6118
+ */
6052
6119
  export interface ChartContainer$CustomZoomOutPressEventParameters {}
6053
6120
 
6121
+ /**
6122
+ * Event object of the ChartContainer#customZoomOutPress event.
6123
+ */
6054
6124
  export type ChartContainer$CustomZoomOutPressEvent = Event<
6055
6125
  ChartContainer$CustomZoomOutPressEventParameters,
6056
6126
  ChartContainer
6057
6127
  >;
6058
6128
 
6129
+ /**
6130
+ * Parameters of the ChartContainer#personalizationPress event.
6131
+ */
6059
6132
  export interface ChartContainer$PersonalizationPressEventParameters {}
6060
6133
 
6134
+ /**
6135
+ * Event object of the ChartContainer#personalizationPress event.
6136
+ */
6061
6137
  export type ChartContainer$PersonalizationPressEvent = Event<
6062
6138
  ChartContainer$PersonalizationPressEventParameters,
6063
6139
  ChartContainer
@@ -6224,7 +6300,9 @@ declare module "sap/suite/ui/commons/ChartContainerContent" {
6224
6300
  sTitle?: string
6225
6301
  ): this;
6226
6302
  }
6227
-
6303
+ /**
6304
+ * Describes the settings that can be provided to the ChartContainerContent constructor.
6305
+ */
6228
6306
  export interface $ChartContainerContentSettings extends $ControlSettings {
6229
6307
  /**
6230
6308
  * Icon of the Chart.
@@ -6322,7 +6400,9 @@ declare module "sap/suite/ui/commons/ChartContainerToolbarPlaceholder" {
6322
6400
  */
6323
6401
  static getMetadata(): ElementMetadata;
6324
6402
  }
6325
-
6403
+ /**
6404
+ * Describes the settings that can be provided to the ChartContainerToolbarPlaceholder constructor.
6405
+ */
6326
6406
  export interface $ChartContainerToolbarPlaceholderSettings
6327
6407
  extends $ControlSettings {}
6328
6408
  }
@@ -6431,7 +6511,11 @@ declare module "sap/suite/ui/commons/ChartTile" {
6431
6511
  sUnit?: string
6432
6512
  ): this;
6433
6513
  }
6434
-
6514
+ /**
6515
+ * Describes the settings that can be provided to the ChartTile constructor.
6516
+ *
6517
+ * @deprecated (since 1.25) - This control has been deprecated in favor of new sap.suite.ui.commons.GenericTile.
6518
+ */
6435
6519
  export interface $ChartTileSettings extends $InfoTileSettings {
6436
6520
  /**
6437
6521
  * The percent sign, the currency symbol, or the unit of measure.
@@ -6995,7 +7079,11 @@ declare module "sap/suite/ui/commons/CloudFilePicker" {
6995
7079
  sTitle: string
6996
7080
  ): this;
6997
7081
  }
6998
-
7082
+ /**
7083
+ * Describes the settings that can be provided to the CloudFilePicker constructor.
7084
+ *
7085
+ * @experimental
7086
+ */
6999
7087
  export interface $CloudFilePickerSettings extends $DialogSettings {
7000
7088
  /**
7001
7089
  * Url of the FileShare OData V4 service.
@@ -7076,13 +7164,22 @@ declare module "sap/suite/ui/commons/CloudFilePicker" {
7076
7164
  cancel?: (oEvent: Event) => void;
7077
7165
  }
7078
7166
 
7167
+ /**
7168
+ * Parameters of the CloudFilePicker#cancel event.
7169
+ */
7079
7170
  export interface CloudFilePicker$CancelEventParameters {}
7080
7171
 
7172
+ /**
7173
+ * Event object of the CloudFilePicker#cancel event.
7174
+ */
7081
7175
  export type CloudFilePicker$CancelEvent = Event<
7082
7176
  CloudFilePicker$CancelEventParameters,
7083
7177
  CloudFilePicker
7084
7178
  >;
7085
7179
 
7180
+ /**
7181
+ * Parameters of the CloudFilePicker#select event.
7182
+ */
7086
7183
  export interface CloudFilePicker$SelectEventParameters {
7087
7184
  /**
7088
7185
  * Specifies whether an existing file is being overwritten in a file share.
@@ -7105,6 +7202,9 @@ declare module "sap/suite/ui/commons/CloudFilePicker" {
7105
7202
  selectedFolder?: /* was: sap.suite.ui.commons.CloudFileInfo */ any;
7106
7203
  }
7107
7204
 
7205
+ /**
7206
+ * Event object of the CloudFilePicker#select event.
7207
+ */
7108
7208
  export type CloudFilePicker$SelectEvent = Event<
7109
7209
  CloudFilePicker$SelectEventParameters,
7110
7210
  CloudFilePicker
@@ -7215,7 +7315,11 @@ declare module "sap/suite/ui/commons/ColumnData" {
7215
7315
  */
7216
7316
  static getMetadata(): ElementMetadata;
7217
7317
  }
7218
-
7318
+ /**
7319
+ * Describes the settings that can be provided to the ColumnData constructor.
7320
+ *
7321
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.ColumnMicroChartData.
7322
+ */
7219
7323
  export interface $ColumnDataSettings extends $ColumnMicroChartDataSettings {}
7220
7324
  }
7221
7325
 
@@ -7302,7 +7406,11 @@ declare module "sap/suite/ui/commons/ColumnMicroChart" {
7302
7406
  */
7303
7407
  static getMetadata(): ElementMetadata;
7304
7408
  }
7305
-
7409
+ /**
7410
+ * Describes the settings that can be provided to the ColumnMicroChart constructor.
7411
+ *
7412
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.ColumnMicroChart.
7413
+ */
7306
7414
  export interface $ColumnMicroChartSettings
7307
7415
  extends $ColumnMicroChartSettings1 {}
7308
7416
  }
@@ -7390,7 +7498,11 @@ declare module "sap/suite/ui/commons/ColumnMicroChartLabel" {
7390
7498
  */
7391
7499
  static getMetadata(): ElementMetadata;
7392
7500
  }
7393
-
7501
+ /**
7502
+ * Describes the settings that can be provided to the ColumnMicroChartLabel constructor.
7503
+ *
7504
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.ColumnMicroChartLabel.
7505
+ */
7394
7506
  export interface $ColumnMicroChartLabelSettings
7395
7507
  extends $ColumnMicroChartLabelSettings1 {}
7396
7508
  }
@@ -7478,7 +7590,11 @@ declare module "sap/suite/ui/commons/ComparisonChart" {
7478
7590
  */
7479
7591
  static getMetadata(): ElementMetadata;
7480
7592
  }
7481
-
7593
+ /**
7594
+ * Describes the settings that can be provided to the ComparisonChart constructor.
7595
+ *
7596
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.ComparisonMicroChart.
7597
+ */
7482
7598
  export interface $ComparisonChartSettings
7483
7599
  extends $ComparisonMicroChartSettings {}
7484
7600
  }
@@ -7566,7 +7682,11 @@ declare module "sap/suite/ui/commons/ComparisonData" {
7566
7682
  */
7567
7683
  static getMetadata(): ElementMetadata;
7568
7684
  }
7569
-
7685
+ /**
7686
+ * Describes the settings that can be provided to the ComparisonData constructor.
7687
+ *
7688
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.ComparisonMicroChartData.
7689
+ */
7570
7690
  export interface $ComparisonDataSettings
7571
7691
  extends $ComparisonMicroChartDataSettings {}
7572
7692
  }
@@ -7924,7 +8044,11 @@ declare module "sap/suite/ui/commons/DateRangeScroller" {
7924
8044
  dInitialDate: Date
7925
8045
  ): DateRangeScroller;
7926
8046
  }
7927
-
8047
+ /**
8048
+ * Describes the settings that can be provided to the DateRangeScroller constructor.
8049
+ *
8050
+ * @deprecated (since 1.34) - Deprecated. Not Fiori.
8051
+ */
7928
8052
  export interface $DateRangeScrollerSettings extends $ControlSettings {
7929
8053
  /**
7930
8054
  * Association to controls / ids which describe this control (see WAI-ARIA attribute aria-describedby).
@@ -7942,6 +8066,9 @@ declare module "sap/suite/ui/commons/DateRangeScroller" {
7942
8066
  change?: (oEvent: DateRangeScroller$ChangeEvent) => void;
7943
8067
  }
7944
8068
 
8069
+ /**
8070
+ * Parameters of the DateRangeScroller#change event.
8071
+ */
7945
8072
  export interface DateRangeScroller$ChangeEventParameters {
7946
8073
  /**
7947
8074
  * Object containing startDate and endDate Date properties signifying the start and ending dates of the
@@ -7950,6 +8077,9 @@ declare module "sap/suite/ui/commons/DateRangeScroller" {
7950
8077
  dateRange?: any;
7951
8078
  }
7952
8079
 
8080
+ /**
8081
+ * Event object of the DateRangeScroller#change event.
8082
+ */
7953
8083
  export type DateRangeScroller$ChangeEvent = Event<
7954
8084
  DateRangeScroller$ChangeEventParameters,
7955
8085
  DateRangeScroller
@@ -8620,7 +8750,11 @@ declare module "sap/suite/ui/commons/DateRangeSlider" {
8620
8750
  sWidth?: CSSSize
8621
8751
  ): this;
8622
8752
  }
8623
-
8753
+ /**
8754
+ * Describes the settings that can be provided to the DateRangeSlider constructor.
8755
+ *
8756
+ * @deprecated (since 1.34) - Deprecated. Not Fiori.
8757
+ */
8624
8758
  export interface $DateRangeSliderSettings extends $ControlSettings {
8625
8759
  /**
8626
8760
  * Width of the horizontal date range slider.
@@ -8714,15 +8848,27 @@ declare module "sap/suite/ui/commons/DateRangeSlider" {
8714
8848
  liveChange?: (oEvent: Event) => void;
8715
8849
  }
8716
8850
 
8851
+ /**
8852
+ * Parameters of the DateRangeSlider#change event.
8853
+ */
8717
8854
  export interface DateRangeSlider$ChangeEventParameters {}
8718
8855
 
8856
+ /**
8857
+ * Event object of the DateRangeSlider#change event.
8858
+ */
8719
8859
  export type DateRangeSlider$ChangeEvent = Event<
8720
8860
  DateRangeSlider$ChangeEventParameters,
8721
8861
  DateRangeSlider
8722
8862
  >;
8723
8863
 
8864
+ /**
8865
+ * Parameters of the DateRangeSlider#liveChange event.
8866
+ */
8724
8867
  export interface DateRangeSlider$LiveChangeEventParameters {}
8725
8868
 
8869
+ /**
8870
+ * Event object of the DateRangeSlider#liveChange event.
8871
+ */
8726
8872
  export type DateRangeSlider$LiveChangeEvent = Event<
8727
8873
  DateRangeSlider$LiveChangeEventParameters,
8728
8874
  DateRangeSlider
@@ -9066,7 +9212,11 @@ declare module "sap/suite/ui/commons/DateRangeSliderInternal" {
9066
9212
  bShowBubbles?: boolean
9067
9213
  ): this;
9068
9214
  }
9069
-
9215
+ /**
9216
+ * Describes the settings that can be provided to the DateRangeSliderInternal constructor.
9217
+ *
9218
+ * @deprecated (since 1.34) - Deprecated. Not Fiori.
9219
+ */
9070
9220
  export interface $DateRangeSliderInternalSettings
9071
9221
  extends $RangeSliderSettings {
9072
9222
  /**
@@ -9097,17 +9247,29 @@ declare module "sap/suite/ui/commons/DateRangeSliderInternal" {
9097
9247
  liveChange?: (oEvent: Event) => void;
9098
9248
  }
9099
9249
 
9250
+ /**
9251
+ * Parameters of the DateRangeSliderInternal#change event.
9252
+ */
9100
9253
  export interface DateRangeSliderInternal$ChangeEventParameters
9101
9254
  extends Slider$ChangeEventParameters {}
9102
9255
 
9256
+ /**
9257
+ * Event object of the DateRangeSliderInternal#change event.
9258
+ */
9103
9259
  export type DateRangeSliderInternal$ChangeEvent = Event<
9104
9260
  DateRangeSliderInternal$ChangeEventParameters,
9105
9261
  DateRangeSliderInternal
9106
9262
  >;
9107
9263
 
9264
+ /**
9265
+ * Parameters of the DateRangeSliderInternal#liveChange event.
9266
+ */
9108
9267
  export interface DateRangeSliderInternal$LiveChangeEventParameters
9109
9268
  extends Slider$LiveChangeEventParameters {}
9110
9269
 
9270
+ /**
9271
+ * Event object of the DateRangeSliderInternal#liveChange event.
9272
+ */
9111
9273
  export type DateRangeSliderInternal$LiveChangeEvent = Event<
9112
9274
  DateRangeSliderInternal$LiveChangeEventParameters,
9113
9275
  DateRangeSliderInternal
@@ -9197,7 +9359,11 @@ declare module "sap/suite/ui/commons/DeltaMicroChart" {
9197
9359
  */
9198
9360
  static getMetadata(): ElementMetadata;
9199
9361
  }
9200
-
9362
+ /**
9363
+ * Describes the settings that can be provided to the DeltaMicroChart constructor.
9364
+ *
9365
+ * @deprecated (since 1.34) - Deprecated. sap.suite.ui.microchart.DeltaMicroChart should be used.
9366
+ */
9201
9367
  export interface $DeltaMicroChartSettings extends $DeltaMicroChartSettings1 {}
9202
9368
  }
9203
9369
 
@@ -9281,7 +9447,11 @@ declare module "sap/suite/ui/commons/DynamicContainer" {
9281
9447
  */
9282
9448
  static getMetadata(): ElementMetadata;
9283
9449
  }
9284
-
9450
+ /**
9451
+ * Describes the settings that can be provided to the DynamicContainer constructor.
9452
+ *
9453
+ * @deprecated (since 1.34) - Deprecated. Moved to openui5.
9454
+ */
9285
9455
  export interface $DynamicContainerSettings extends $SlideTileSettings {}
9286
9456
  }
9287
9457
 
@@ -9734,7 +9904,11 @@ declare module "sap/suite/ui/commons/FacetOverview" {
9734
9904
  sWidth?: CSSSize
9735
9905
  ): this;
9736
9906
  }
9737
-
9907
+ /**
9908
+ * Describes the settings that can be provided to the FacetOverview constructor.
9909
+ *
9910
+ * @deprecated (since 1.32) - Deprecated. Object page should be used instead.
9911
+ */
9738
9912
  export interface $FacetOverviewSettings extends $ControlSettings {
9739
9913
  /**
9740
9914
  * This property is shown in the upper left part of control.
@@ -9793,13 +9967,22 @@ declare module "sap/suite/ui/commons/FacetOverview" {
9793
9967
  heightChange?: (oEvent: Event) => void;
9794
9968
  }
9795
9969
 
9970
+ /**
9971
+ * Parameters of the FacetOverview#heightChange event.
9972
+ */
9796
9973
  export interface FacetOverview$HeightChangeEventParameters {}
9797
9974
 
9975
+ /**
9976
+ * Event object of the FacetOverview#heightChange event.
9977
+ */
9798
9978
  export type FacetOverview$HeightChangeEvent = Event<
9799
9979
  FacetOverview$HeightChangeEventParameters,
9800
9980
  FacetOverview
9801
9981
  >;
9802
9982
 
9983
+ /**
9984
+ * Parameters of the FacetOverview#press event.
9985
+ */
9803
9986
  export interface FacetOverview$PressEventParameters {
9804
9987
  /**
9805
9988
  * The control ID.
@@ -9807,6 +9990,9 @@ declare module "sap/suite/ui/commons/FacetOverview" {
9807
9990
  id?: string;
9808
9991
  }
9809
9992
 
9993
+ /**
9994
+ * Event object of the FacetOverview#press event.
9995
+ */
9810
9996
  export type FacetOverview$PressEvent = Event<
9811
9997
  FacetOverview$PressEventParameters,
9812
9998
  FacetOverview
@@ -10016,7 +10202,11 @@ declare module "sap/suite/ui/commons/FeedItem" {
10016
10202
  sTitle?: string
10017
10203
  ): this;
10018
10204
  }
10019
-
10205
+ /**
10206
+ * Describes the settings that can be provided to the FeedItem constructor.
10207
+ *
10208
+ * @deprecated (since 1.32) - Deprecated. Generic Tile should be used instead.
10209
+ */
10020
10210
  export interface $FeedItemSettings extends $ElementSettings {
10021
10211
  /**
10022
10212
  * The title of the feed item.
@@ -10276,7 +10466,11 @@ declare module "sap/suite/ui/commons/FeedItemHeader" {
10276
10466
  sTitle?: string
10277
10467
  ): this;
10278
10468
  }
10279
-
10469
+ /**
10470
+ * Describes the settings that can be provided to the FeedItemHeader constructor.
10471
+ *
10472
+ * @deprecated (since 1.25) - This control has been deprecated in favor of new sap.suite.ui.commons.GenericTile.
10473
+ */
10280
10474
  export interface $FeedItemHeaderSettings extends $ListItemBaseSettings {
10281
10475
  /**
10282
10476
  * The title of the feed item.
@@ -10668,7 +10862,11 @@ declare module "sap/suite/ui/commons/FeedTile" {
10668
10862
  oModel: Model
10669
10863
  ): void;
10670
10864
  }
10671
-
10865
+ /**
10866
+ * Describes the settings that can be provided to the FeedTile constructor.
10867
+ *
10868
+ * @deprecated (since 1.25) - This control has been deprecated in favor of new sap.suite.ui.commons.GenericTile.
10869
+ */
10672
10870
  export interface $FeedTileSettings extends $ControlSettings {
10673
10871
  /**
10674
10872
  * The length of time in seconds the control displays each feed item. Default value is 5 seconds.
@@ -10704,8 +10902,14 @@ declare module "sap/suite/ui/commons/FeedTile" {
10704
10902
  press?: (oEvent: Event) => void;
10705
10903
  }
10706
10904
 
10905
+ /**
10906
+ * Parameters of the FeedTile#press event.
10907
+ */
10707
10908
  export interface FeedTile$PressEventParameters {}
10708
10909
 
10910
+ /**
10911
+ * Event object of the FeedTile#press event.
10912
+ */
10709
10913
  export type FeedTile$PressEvent = Event<
10710
10914
  FeedTile$PressEventParameters,
10711
10915
  FeedTile
@@ -10795,7 +10999,11 @@ declare module "sap/suite/ui/commons/GenericTile" {
10795
10999
  */
10796
11000
  static getMetadata(): ElementMetadata;
10797
11001
  }
10798
-
11002
+ /**
11003
+ * Describes the settings that can be provided to the GenericTile constructor.
11004
+ *
11005
+ * @deprecated (since 1.34) - Deprecated. Moved to openui5.
11006
+ */
10799
11007
  export interface $GenericTileSettings extends $GenericTileSettings1 {}
10800
11008
  }
10801
11009
 
@@ -11311,7 +11519,11 @@ declare module "sap/suite/ui/commons/GenericTile2X2" {
11311
11519
  sSubheader?: string
11312
11520
  ): this;
11313
11521
  }
11314
-
11522
+ /**
11523
+ * Describes the settings that can be provided to the GenericTile2X2 constructor.
11524
+ *
11525
+ * @deprecated (since 1.34) - Deprecated.
11526
+ */
11315
11527
  export interface $GenericTile2X2Settings extends $ControlSettings {
11316
11528
  /**
11317
11529
  * The header of the tile.
@@ -11388,8 +11600,14 @@ declare module "sap/suite/ui/commons/GenericTile2X2" {
11388
11600
  press?: (oEvent: Event) => void;
11389
11601
  }
11390
11602
 
11603
+ /**
11604
+ * Parameters of the GenericTile2X2#press event.
11605
+ */
11391
11606
  export interface GenericTile2X2$PressEventParameters {}
11392
11607
 
11608
+ /**
11609
+ * Event object of the GenericTile2X2#press event.
11610
+ */
11393
11611
  export type GenericTile2X2$PressEvent = Event<
11394
11612
  GenericTile2X2$PressEventParameters,
11395
11613
  GenericTile2X2
@@ -11479,7 +11697,11 @@ declare module "sap/suite/ui/commons/HarveyBallMicroChart" {
11479
11697
  */
11480
11698
  static getMetadata(): ElementMetadata;
11481
11699
  }
11482
-
11700
+ /**
11701
+ * Describes the settings that can be provided to the HarveyBallMicroChart constructor.
11702
+ *
11703
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.HarveyBallMicroChart.
11704
+ */
11483
11705
  export interface $HarveyBallMicroChartSettings
11484
11706
  extends $HarveyBallMicroChartSettings1 {}
11485
11707
  }
@@ -11567,7 +11789,11 @@ declare module "sap/suite/ui/commons/HarveyBallMicroChartItem" {
11567
11789
  */
11568
11790
  static getMetadata(): ElementMetadata;
11569
11791
  }
11570
-
11792
+ /**
11793
+ * Describes the settings that can be provided to the HarveyBallMicroChartItem constructor.
11794
+ *
11795
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.HarveyBallMicroChartItem.
11796
+ */
11571
11797
  export interface $HarveyBallMicroChartItemSettings
11572
11798
  extends $HarveyBallMicroChartItemSettings1 {}
11573
11799
  }
@@ -11814,7 +12040,12 @@ declare module "sap/suite/ui/commons/HeaderCell" {
11814
12040
  oWest: HeaderCellItem
11815
12041
  ): this;
11816
12042
  }
11817
-
12043
+ /**
12044
+ * Describes the settings that can be provided to the HeaderCell constructor.
12045
+ *
12046
+ * @deprecated (since 1.44.0) - HeaderCell control is no longer used. Please use other container controls
12047
+ * instead (like sap.m.VBox or sap.m.HBox).
12048
+ */
11818
12049
  export interface $HeaderCellSettings extends $ControlSettings {
11819
12050
  /**
11820
12051
  * Height of the HeaderCell control.
@@ -11981,7 +12212,12 @@ declare module "sap/suite/ui/commons/HeaderCellItem" {
11981
12212
  sHeight?: CSSSize
11982
12213
  ): this;
11983
12214
  }
11984
-
12215
+ /**
12216
+ * Describes the settings that can be provided to the HeaderCellItem constructor.
12217
+ *
12218
+ * @deprecated (since 1.44.0) - The HeaderCellItem was deprecated because of the deprecation of HeaderCell.
12219
+ * Please see HeaderCell for replacement advice.
12220
+ */
11985
12221
  export interface $HeaderCellItemSettings extends $ElementSettings {
11986
12222
  /**
11987
12223
  * Height of area to occupy by control.
@@ -12320,7 +12556,12 @@ declare module "sap/suite/ui/commons/HeaderContainer" {
12320
12556
  sView?: HeaderContainerView | keyof typeof HeaderContainerView
12321
12557
  ): this;
12322
12558
  }
12323
-
12559
+ /**
12560
+ * Describes the settings that can be provided to the HeaderContainer constructor.
12561
+ *
12562
+ * @deprecated (since 1.44) - This control is deprecated in this library since 1.44 and moved to sap.m library
12563
+ * that is also part of openUI5.
12564
+ */
12324
12565
  export interface $HeaderContainerSettings extends $ControlSettings {
12325
12566
  /**
12326
12567
  * Number of pixels to scroll when the user chooses Next or Previous buttons. Relevant only for desktop.
@@ -12860,7 +13101,9 @@ declare module "sap/suite/ui/commons/imageeditor/CustomSizeItem" {
12860
13101
  fWidth?: float
12861
13102
  ): this;
12862
13103
  }
12863
-
13104
+ /**
13105
+ * Describes the settings that can be provided to the CustomSizeItem constructor.
13106
+ */
12864
13107
  export interface $CustomSizeItemSettings extends $ElementSettings {
12865
13108
  /**
12866
13109
  * Defines the width of the `CustomSizeItem`.
@@ -14713,7 +14956,9 @@ declare module "sap/suite/ui/commons/imageeditor/ImageEditor" {
14713
14956
  */
14714
14957
  zoomToFit(): ImageEditor;
14715
14958
  }
14716
-
14959
+ /**
14960
+ * Describes the settings that can be provided to the ImageEditor constructor.
14961
+ */
14717
14962
  export interface $ImageEditorSettings extends $ControlSettings {
14718
14963
  /**
14719
14964
  * Image source.
@@ -14816,52 +15061,91 @@ declare module "sap/suite/ui/commons/imageeditor/ImageEditor" {
14816
15061
  historyChanged?: (oEvent: Event) => void;
14817
15062
  }
14818
15063
 
15064
+ /**
15065
+ * Parameters of the ImageEditor#cropAreaChanged event.
15066
+ */
14819
15067
  export interface ImageEditor$CropAreaChangedEventParameters {
14820
15068
  cropArea?: object;
14821
15069
 
14822
15070
  originalCropArea?: object;
14823
15071
  }
14824
15072
 
15073
+ /**
15074
+ * Event object of the ImageEditor#cropAreaChanged event.
15075
+ */
14825
15076
  export type ImageEditor$CropAreaChangedEvent = Event<
14826
15077
  ImageEditor$CropAreaChangedEventParameters,
14827
15078
  ImageEditor
14828
15079
  >;
14829
15080
 
15081
+ /**
15082
+ * Parameters of the ImageEditor#customShapeError event.
15083
+ */
14830
15084
  export interface ImageEditor$CustomShapeErrorEventParameters {}
14831
15085
 
15086
+ /**
15087
+ * Event object of the ImageEditor#customShapeError event.
15088
+ */
14832
15089
  export type ImageEditor$CustomShapeErrorEvent = Event<
14833
15090
  ImageEditor$CustomShapeErrorEventParameters,
14834
15091
  ImageEditor
14835
15092
  >;
14836
15093
 
15094
+ /**
15095
+ * Parameters of the ImageEditor#customShapeLoaded event.
15096
+ */
14837
15097
  export interface ImageEditor$CustomShapeLoadedEventParameters {}
14838
15098
 
15099
+ /**
15100
+ * Event object of the ImageEditor#customShapeLoaded event.
15101
+ */
14839
15102
  export type ImageEditor$CustomShapeLoadedEvent = Event<
14840
15103
  ImageEditor$CustomShapeLoadedEventParameters,
14841
15104
  ImageEditor
14842
15105
  >;
14843
15106
 
15107
+ /**
15108
+ * Parameters of the ImageEditor#error event.
15109
+ */
14844
15110
  export interface ImageEditor$ErrorEventParameters {}
14845
15111
 
15112
+ /**
15113
+ * Event object of the ImageEditor#error event.
15114
+ */
14846
15115
  export type ImageEditor$ErrorEvent = Event<
14847
15116
  ImageEditor$ErrorEventParameters,
14848
15117
  ImageEditor
14849
15118
  >;
14850
15119
 
15120
+ /**
15121
+ * Parameters of the ImageEditor#historyChanged event.
15122
+ */
14851
15123
  export interface ImageEditor$HistoryChangedEventParameters {}
14852
15124
 
15125
+ /**
15126
+ * Event object of the ImageEditor#historyChanged event.
15127
+ */
14853
15128
  export type ImageEditor$HistoryChangedEvent = Event<
14854
15129
  ImageEditor$HistoryChangedEventParameters,
14855
15130
  ImageEditor
14856
15131
  >;
14857
15132
 
15133
+ /**
15134
+ * Parameters of the ImageEditor#loaded event.
15135
+ */
14858
15136
  export interface ImageEditor$LoadedEventParameters {}
14859
15137
 
15138
+ /**
15139
+ * Event object of the ImageEditor#loaded event.
15140
+ */
14860
15141
  export type ImageEditor$LoadedEvent = Event<
14861
15142
  ImageEditor$LoadedEventParameters,
14862
15143
  ImageEditor
14863
15144
  >;
14864
15145
 
15146
+ /**
15147
+ * Parameters of the ImageEditor#sizeChanged event.
15148
+ */
14865
15149
  export interface ImageEditor$SizeChangedEventParameters {
14866
15150
  width?: int;
14867
15151
 
@@ -14872,15 +15156,24 @@ declare module "sap/suite/ui/commons/imageeditor/ImageEditor" {
14872
15156
  originalHeight?: int;
14873
15157
  }
14874
15158
 
15159
+ /**
15160
+ * Event object of the ImageEditor#sizeChanged event.
15161
+ */
14875
15162
  export type ImageEditor$SizeChangedEvent = Event<
14876
15163
  ImageEditor$SizeChangedEventParameters,
14877
15164
  ImageEditor
14878
15165
  >;
14879
15166
 
15167
+ /**
15168
+ * Parameters of the ImageEditor#zoomChanged event.
15169
+ */
14880
15170
  export interface ImageEditor$ZoomChangedEventParameters {
14881
15171
  zoom?: int;
14882
15172
  }
14883
15173
 
15174
+ /**
15175
+ * Event object of the ImageEditor#zoomChanged event.
15176
+ */
14884
15177
  export type ImageEditor$ZoomChangedEvent = Event<
14885
15178
  ImageEditor$ZoomChangedEventParameters,
14886
15179
  ImageEditor
@@ -15497,7 +15790,9 @@ declare module "sap/suite/ui/commons/imageeditor/ImageEditorContainer" {
15497
15790
  sMode?: ImageEditorContainerMode | keyof typeof ImageEditorContainerMode
15498
15791
  ): this;
15499
15792
  }
15500
-
15793
+ /**
15794
+ * Describes the settings that can be provided to the ImageEditorContainer constructor.
15795
+ */
15501
15796
  export interface $ImageEditorContainerSettings extends $ControlSettings {
15502
15797
  /**
15503
15798
  * Image editor container mode.
@@ -15637,7 +15932,9 @@ declare module "sap/suite/ui/commons/imageeditor/ImageEditorResponsiveContainer"
15637
15932
  */
15638
15933
  static getMetadata(): ElementMetadata;
15639
15934
  }
15640
-
15935
+ /**
15936
+ * Describes the settings that can be provided to the ImageEditorResponsiveContainer constructor.
15937
+ */
15641
15938
  export interface $ImageEditorResponsiveContainerSettings
15642
15939
  extends $ImageEditorContainerSettings {}
15643
15940
  }
@@ -16093,7 +16390,11 @@ declare module "sap/suite/ui/commons/InfoTile" {
16093
16390
  sTitle?: string
16094
16391
  ): this;
16095
16392
  }
16096
-
16393
+ /**
16394
+ * Describes the settings that can be provided to the InfoTile constructor.
16395
+ *
16396
+ * @deprecated (since 1.25) - This control has been deprecated in favor of new sap.suite.ui.commons.GenericTile.
16397
+ */
16097
16398
  export interface $InfoTileSettings extends $ControlSettings {
16098
16399
  /**
16099
16400
  * Shows the description of the selected tile.
@@ -16137,8 +16438,14 @@ declare module "sap/suite/ui/commons/InfoTile" {
16137
16438
  press?: (oEvent: Event) => void;
16138
16439
  }
16139
16440
 
16441
+ /**
16442
+ * Parameters of the InfoTile#press event.
16443
+ */
16140
16444
  export interface InfoTile$PressEventParameters {}
16141
16445
 
16446
+ /**
16447
+ * Event object of the InfoTile#press event.
16448
+ */
16142
16449
  export type InfoTile$PressEvent = Event<
16143
16450
  InfoTile$PressEventParameters,
16144
16451
  InfoTile
@@ -16228,7 +16535,11 @@ declare module "sap/suite/ui/commons/JamContent" {
16228
16535
  */
16229
16536
  static getMetadata(): ElementMetadata;
16230
16537
  }
16231
-
16538
+ /**
16539
+ * Describes the settings that can be provided to the JamContent constructor.
16540
+ *
16541
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.m.FeedContent.
16542
+ */
16232
16543
  export interface $JamContentSettings extends $FeedContentSettings {}
16233
16544
  }
16234
16545
 
@@ -16469,7 +16780,12 @@ declare module "sap/suite/ui/commons/KpiTile" {
16469
16780
  sValueUnit?: string
16470
16781
  ): this;
16471
16782
  }
16472
-
16783
+ /**
16784
+ * Describes the settings that can be provided to the KpiTile constructor.
16785
+ *
16786
+ * @deprecated (since 1.32) - Deprecated. Numeric content or any other standard Fiori control should be
16787
+ * used instead.
16788
+ */
16473
16789
  export interface $KpiTileSettings extends $ControlSettings {
16474
16790
  /**
16475
16791
  * The Value field.
@@ -16739,7 +17055,11 @@ declare module "sap/suite/ui/commons/LaunchTile" {
16739
17055
  sTitle?: string
16740
17056
  ): this;
16741
17057
  }
16742
-
17058
+ /**
17059
+ * Describes the settings that can be provided to the LaunchTile constructor.
17060
+ *
17061
+ * @deprecated (since 1.25) - Deprecated.
17062
+ */
16743
17063
  export interface $LaunchTileSettings extends $ControlSettings {
16744
17064
  /**
16745
17065
  * Descriptive title of the launch destination.
@@ -16762,8 +17082,14 @@ declare module "sap/suite/ui/commons/LaunchTile" {
16762
17082
  press?: (oEvent: Event) => void;
16763
17083
  }
16764
17084
 
17085
+ /**
17086
+ * Parameters of the LaunchTile#press event.
17087
+ */
16765
17088
  export interface LaunchTile$PressEventParameters {}
16766
17089
 
17090
+ /**
17091
+ * Event object of the LaunchTile#press event.
17092
+ */
16767
17093
  export type LaunchTile$PressEvent = Event<
16768
17094
  LaunchTile$PressEventParameters,
16769
17095
  LaunchTile
@@ -17016,7 +17342,11 @@ declare module "sap/suite/ui/commons/LinkActionSheet" {
17016
17342
  vItem: int | string | Control
17017
17343
  ): Control | null;
17018
17344
  }
17019
-
17345
+ /**
17346
+ * Describes the settings that can be provided to the LinkActionSheet constructor.
17347
+ *
17348
+ * @deprecated (since 1.32) - Deprecated. Object page should be used instead.
17349
+ */
17020
17350
  export interface $LinkActionSheetSettings extends $ActionSheetSettings {
17021
17351
  /**
17022
17352
  * These buttons or links are added to the content area in the LinkActionSheet control. If the user chooses
@@ -17030,6 +17360,9 @@ declare module "sap/suite/ui/commons/LinkActionSheet" {
17030
17360
  itemPress?: (oEvent: LinkActionSheet$ItemPressEvent) => void;
17031
17361
  }
17032
17362
 
17363
+ /**
17364
+ * Parameters of the LinkActionSheet#itemPress event.
17365
+ */
17033
17366
  export interface LinkActionSheet$ItemPressEventParameters {
17034
17367
  /**
17035
17368
  * The object that initiated the event.
@@ -17037,6 +17370,9 @@ declare module "sap/suite/ui/commons/LinkActionSheet" {
17037
17370
  item?: Control;
17038
17371
  }
17039
17372
 
17373
+ /**
17374
+ * Event object of the LinkActionSheet#itemPress event.
17375
+ */
17040
17376
  export type LinkActionSheet$ItemPressEvent = Event<
17041
17377
  LinkActionSheet$ItemPressEventParameters,
17042
17378
  LinkActionSheet
@@ -17126,7 +17462,11 @@ declare module "sap/suite/ui/commons/MicroAreaChart" {
17126
17462
  */
17127
17463
  static getMetadata(): ElementMetadata;
17128
17464
  }
17129
-
17465
+ /**
17466
+ * Describes the settings that can be provided to the MicroAreaChart constructor.
17467
+ *
17468
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.AreaMicroChart.
17469
+ */
17130
17470
  export interface $MicroAreaChartSettings extends $AreaMicroChartSettings {}
17131
17471
  }
17132
17472
 
@@ -17213,7 +17553,11 @@ declare module "sap/suite/ui/commons/MicroAreaChartItem" {
17213
17553
  */
17214
17554
  static getMetadata(): ElementMetadata;
17215
17555
  }
17216
-
17556
+ /**
17557
+ * Describes the settings that can be provided to the MicroAreaChartItem constructor.
17558
+ *
17559
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.AreaMicroChartItem.
17560
+ */
17217
17561
  export interface $MicroAreaChartItemSettings
17218
17562
  extends $AreaMicroChartItemSettings {}
17219
17563
  }
@@ -17301,7 +17645,11 @@ declare module "sap/suite/ui/commons/MicroAreaChartLabel" {
17301
17645
  */
17302
17646
  static getMetadata(): ElementMetadata;
17303
17647
  }
17304
-
17648
+ /**
17649
+ * Describes the settings that can be provided to the MicroAreaChartLabel constructor.
17650
+ *
17651
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.AreaMicroChartLabel.
17652
+ */
17305
17653
  export interface $MicroAreaChartLabelSettings
17306
17654
  extends $AreaMicroChartLabelSettings {}
17307
17655
  }
@@ -17389,7 +17737,11 @@ declare module "sap/suite/ui/commons/MicroAreaChartPoint" {
17389
17737
  */
17390
17738
  static getMetadata(): ElementMetadata;
17391
17739
  }
17392
-
17740
+ /**
17741
+ * Describes the settings that can be provided to the MicroAreaChartPoint constructor.
17742
+ *
17743
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.suite.ui.microchart.AreaMicroChartPoint.
17744
+ */
17393
17745
  export interface $MicroAreaChartPointSettings
17394
17746
  extends $AreaMicroChartPointSettings {}
17395
17747
  }
@@ -17630,7 +17982,9 @@ declare module "sap/suite/ui/commons/MicroProcessFlow" {
17630
17982
  sWidth?: CSSSize
17631
17983
  ): this;
17632
17984
  }
17633
-
17985
+ /**
17986
+ * Describes the settings that can be provided to the MicroProcessFlow constructor.
17987
+ */
17634
17988
  export interface $MicroProcessFlowSettings extends $ControlSettings {
17635
17989
  /**
17636
17990
  * ARIA label for this control to be used by screen reader software.
@@ -18077,7 +18431,9 @@ declare module "sap/suite/ui/commons/MicroProcessFlowItem" {
18077
18431
  sTitle?: string
18078
18432
  ): this;
18079
18433
  }
18080
-
18434
+ /**
18435
+ * Describes the settings that can be provided to the MicroProcessFlowItem constructor.
18436
+ */
18081
18437
  export interface $MicroProcessFlowItemSettings extends $ControlSettings {
18082
18438
  /**
18083
18439
  * Key of the node.
@@ -18141,10 +18497,16 @@ declare module "sap/suite/ui/commons/MicroProcessFlowItem" {
18141
18497
  press?: (oEvent: MicroProcessFlowItem$PressEvent) => void;
18142
18498
  }
18143
18499
 
18500
+ /**
18501
+ * Parameters of the MicroProcessFlowItem#press event.
18502
+ */
18144
18503
  export interface MicroProcessFlowItem$PressEventParameters {
18145
18504
  item?: object;
18146
18505
  }
18147
18506
 
18507
+ /**
18508
+ * Event object of the MicroProcessFlowItem#press event.
18509
+ */
18148
18510
  export type MicroProcessFlowItem$PressEvent = Event<
18149
18511
  MicroProcessFlowItem$PressEventParameters,
18150
18512
  MicroProcessFlowItem
@@ -18479,7 +18841,11 @@ declare module "sap/suite/ui/commons/MonitoringContent" {
18479
18841
  sValue?: string
18480
18842
  ): this;
18481
18843
  }
18482
-
18844
+ /**
18845
+ * Describes the settings that can be provided to the MonitoringContent constructor.
18846
+ *
18847
+ * @deprecated (since 1.25) - This control has been deprecated in favor of new sap.suite.ui.commons.NumericContent.
18848
+ */
18483
18849
  export interface $MonitoringContentSettings extends $ControlSettings {
18484
18850
  /**
18485
18851
  * The actual value.
@@ -18525,8 +18891,14 @@ declare module "sap/suite/ui/commons/MonitoringContent" {
18525
18891
  press?: (oEvent: Event) => void;
18526
18892
  }
18527
18893
 
18894
+ /**
18895
+ * Parameters of the MonitoringContent#press event.
18896
+ */
18528
18897
  export interface MonitoringContent$PressEventParameters {}
18529
18898
 
18899
+ /**
18900
+ * Event object of the MonitoringContent#press event.
18901
+ */
18530
18902
  export type MonitoringContent$PressEvent = Event<
18531
18903
  MonitoringContent$PressEventParameters,
18532
18904
  MonitoringContent
@@ -18697,7 +19069,11 @@ declare module "sap/suite/ui/commons/MonitoringTile" {
18697
19069
  sValue?: string
18698
19070
  ): this;
18699
19071
  }
18700
-
19072
+ /**
19073
+ * Describes the settings that can be provided to the MonitoringTile constructor.
19074
+ *
19075
+ * @deprecated (since 1.25) - This control has been deprecated in favor of new sap.suite.ui.commons.GenericTile.
19076
+ */
18701
19077
  export interface $MonitoringTileSettings extends $InfoTileSettings {
18702
19078
  /**
18703
19079
  * The actual value.
@@ -18971,7 +19347,9 @@ declare module "sap/suite/ui/commons/networkgraph/ActionButton" {
18971
19347
  sTitle?: string
18972
19348
  ): this;
18973
19349
  }
18974
-
19350
+ /**
19351
+ * Describes the settings that can be provided to the ActionButton constructor.
19352
+ */
18975
19353
  export interface $ActionButtonSettings extends $ElementSettings {
18976
19354
  /**
18977
19355
  * The icon to be used for the custom action button.
@@ -19005,10 +19383,16 @@ declare module "sap/suite/ui/commons/networkgraph/ActionButton" {
19005
19383
  press?: (oEvent: ActionButton$PressEvent) => void;
19006
19384
  }
19007
19385
 
19386
+ /**
19387
+ * Parameters of the ActionButton#press event.
19388
+ */
19008
19389
  export interface ActionButton$PressEventParameters {
19009
19390
  buttonElement?: object;
19010
19391
  }
19011
19392
 
19393
+ /**
19394
+ * Event object of the ActionButton#press event.
19395
+ */
19012
19396
  export type ActionButton$PressEvent = Event<
19013
19397
  ActionButton$PressEventParameters,
19014
19398
  ActionButton
@@ -19127,7 +19511,9 @@ declare module "sap/suite/ui/commons/networkgraph/Coordinate" {
19127
19511
  fY?: float
19128
19512
  ): this;
19129
19513
  }
19130
-
19514
+ /**
19515
+ * Describes the settings that can be provided to the Coordinate constructor.
19516
+ */
19131
19517
  export interface $CoordinateSettings extends $ElementSettings {
19132
19518
  /**
19133
19519
  * The value of the x coordinate.
@@ -19361,7 +19747,9 @@ declare module "sap/suite/ui/commons/networkgraph/ElementAttribute" {
19361
19747
  bVisible?: boolean
19362
19748
  ): this;
19363
19749
  }
19364
-
19750
+ /**
19751
+ * Describes the settings that can be provided to the ElementAttribute constructor.
19752
+ */
19365
19753
  export interface $ElementAttributeSettings extends $ElementSettings {
19366
19754
  /**
19367
19755
  * Label of the attribute. If set to null, the label is not displayed.
@@ -19625,7 +20013,9 @@ declare module "sap/suite/ui/commons/networkgraph/ElementBase" {
19625
20013
  sTitle?: string
19626
20014
  ): this;
19627
20015
  }
19628
-
20016
+ /**
20017
+ * Describes the settings that can be provided to the ElementBase constructor.
20018
+ */
19629
20019
  export interface $ElementBaseSettings extends $SvgBaseSettings {
19630
20020
  /**
19631
20021
  * A title associated with the element.
@@ -21281,7 +21671,9 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
21281
21671
  }
21282
21672
  ): void;
21283
21673
  }
21284
-
21674
+ /**
21675
+ * Describes the settings that can be provided to the Graph constructor.
21676
+ */
21285
21677
  export interface $GraphSettings extends $SvgBaseSettings {
21286
21678
  /**
21287
21679
  * The height of the graph. If this property is set to 'auto', the network graph will be resized to fit
@@ -21436,20 +21828,35 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
21436
21828
  search?: (oEvent: Graph$SearchEvent) => void;
21437
21829
  }
21438
21830
 
21831
+ /**
21832
+ * Parameters of the Graph#afterLayouting event.
21833
+ */
21439
21834
  export interface Graph$AfterLayoutingEventParameters {}
21440
21835
 
21836
+ /**
21837
+ * Event object of the Graph#afterLayouting event.
21838
+ */
21441
21839
  export type Graph$AfterLayoutingEvent = Event<
21442
21840
  Graph$AfterLayoutingEventParameters,
21443
21841
  Graph
21444
21842
  >;
21445
21843
 
21844
+ /**
21845
+ * Parameters of the Graph#beforeLayouting event.
21846
+ */
21446
21847
  export interface Graph$BeforeLayoutingEventParameters {}
21447
21848
 
21849
+ /**
21850
+ * Event object of the Graph#beforeLayouting event.
21851
+ */
21448
21852
  export type Graph$BeforeLayoutingEvent = Event<
21449
21853
  Graph$BeforeLayoutingEventParameters,
21450
21854
  Graph
21451
21855
  >;
21452
21856
 
21857
+ /**
21858
+ * Parameters of the Graph#failure event.
21859
+ */
21453
21860
  export interface Graph$FailureEventParameters {
21454
21861
  /**
21455
21862
  * Type of an error. This parameter can be used for decision making in the calling code.
@@ -21462,32 +21869,56 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
21462
21869
  message?: string;
21463
21870
  }
21464
21871
 
21872
+ /**
21873
+ * Event object of the Graph#failure event.
21874
+ */
21465
21875
  export type Graph$FailureEvent = Event<Graph$FailureEventParameters, Graph>;
21466
21876
 
21877
+ /**
21878
+ * Parameters of the Graph#graphReady event.
21879
+ */
21467
21880
  export interface Graph$GraphReadyEventParameters {}
21468
21881
 
21882
+ /**
21883
+ * Event object of the Graph#graphReady event.
21884
+ */
21469
21885
  export type Graph$GraphReadyEvent = Event<
21470
21886
  Graph$GraphReadyEventParameters,
21471
21887
  Graph
21472
21888
  >;
21473
21889
 
21890
+ /**
21891
+ * Parameters of the Graph#search event.
21892
+ */
21474
21893
  export interface Graph$SearchEventParameters {
21475
21894
  term?: string;
21476
21895
 
21477
21896
  key?: string;
21478
21897
  }
21479
21898
 
21899
+ /**
21900
+ * Event object of the Graph#search event.
21901
+ */
21480
21902
  export type Graph$SearchEvent = Event<Graph$SearchEventParameters, Graph>;
21481
21903
 
21904
+ /**
21905
+ * Parameters of the Graph#searchSuggest event.
21906
+ */
21482
21907
  export interface Graph$SearchSuggestEventParameters {
21483
21908
  term?: string;
21484
21909
  }
21485
21910
 
21911
+ /**
21912
+ * Event object of the Graph#searchSuggest event.
21913
+ */
21486
21914
  export type Graph$SearchSuggestEvent = Event<
21487
21915
  Graph$SearchSuggestEventParameters,
21488
21916
  Graph
21489
21917
  >;
21490
21918
 
21919
+ /**
21920
+ * Parameters of the Graph#selectionChange event.
21921
+ */
21491
21922
  export interface Graph$SelectionChangeEventParameters {
21492
21923
  /**
21493
21924
  * A list of elements that changed the state of the selection. To determine the new state, use the `getSelected()`
@@ -21496,13 +21927,22 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
21496
21927
  items?: ElementBase[];
21497
21928
  }
21498
21929
 
21930
+ /**
21931
+ * Event object of the Graph#selectionChange event.
21932
+ */
21499
21933
  export type Graph$SelectionChangeEvent = Event<
21500
21934
  Graph$SelectionChangeEventParameters,
21501
21935
  Graph
21502
21936
  >;
21503
21937
 
21938
+ /**
21939
+ * Parameters of the Graph#zoomChanged event.
21940
+ */
21504
21941
  export interface Graph$ZoomChangedEventParameters {}
21505
21942
 
21943
+ /**
21944
+ * Event object of the Graph#zoomChanged event.
21945
+ */
21506
21946
  export type Graph$ZoomChangedEvent = Event<
21507
21947
  Graph$ZoomChangedEventParameters,
21508
21948
  Graph
@@ -21789,7 +22229,9 @@ declare module "sap/suite/ui/commons/networkgraph/GraphMap" {
21789
22229
  sWidth?: CSSSize
21790
22230
  ): this;
21791
22231
  }
21792
-
22232
+ /**
22233
+ * Describes the settings that can be provided to the GraphMap constructor.
22234
+ */
21793
22235
  export interface $GraphMapSettings extends $ControlSettings {
21794
22236
  /**
21795
22237
  * The height of the graph map.
@@ -21825,8 +22267,14 @@ declare module "sap/suite/ui/commons/networkgraph/GraphMap" {
21825
22267
  mapReady?: (oEvent: Event) => void;
21826
22268
  }
21827
22269
 
22270
+ /**
22271
+ * Parameters of the GraphMap#mapReady event.
22272
+ */
21828
22273
  export interface GraphMap$MapReadyEventParameters {}
21829
22274
 
22275
+ /**
22276
+ * Event object of the GraphMap#mapReady event.
22277
+ */
21830
22278
  export type GraphMap$MapReadyEvent = Event<
21831
22279
  GraphMap$MapReadyEventParameters,
21832
22280
  GraphMap
@@ -22349,7 +22797,9 @@ declare module "sap/suite/ui/commons/networkgraph/Group" {
22349
22797
  sParentGroupKey?: string
22350
22798
  ): this;
22351
22799
  }
22352
-
22800
+ /**
22801
+ * Describes the settings that can be provided to the Group constructor.
22802
+ */
22353
22803
  export interface $GroupSettings extends $ElementBaseSettings {
22354
22804
  /**
22355
22805
  * Defines if the Header checkbox should be displayed and whether it should be selected or not. By default,
@@ -22408,13 +22858,22 @@ declare module "sap/suite/ui/commons/networkgraph/Group" {
22408
22858
  showDetail?: (oEvent: Event) => void;
22409
22859
  }
22410
22860
 
22861
+ /**
22862
+ * Parameters of the Group#collapseExpand event.
22863
+ */
22411
22864
  export interface Group$CollapseExpandEventParameters {}
22412
22865
 
22866
+ /**
22867
+ * Event object of the Group#collapseExpand event.
22868
+ */
22413
22869
  export type Group$CollapseExpandEvent = Event<
22414
22870
  Group$CollapseExpandEventParameters,
22415
22871
  Group
22416
22872
  >;
22417
22873
 
22874
+ /**
22875
+ * Parameters of the Group#headerCheckBoxPress event.
22876
+ */
22418
22877
  export interface Group$HeaderCheckBoxPressEventParameters {
22419
22878
  /**
22420
22879
  * Indicates whether checkbox is selected.
@@ -22422,13 +22881,22 @@ declare module "sap/suite/ui/commons/networkgraph/Group" {
22422
22881
  checked?: boolean;
22423
22882
  }
22424
22883
 
22884
+ /**
22885
+ * Event object of the Group#headerCheckBoxPress event.
22886
+ */
22425
22887
  export type Group$HeaderCheckBoxPressEvent = Event<
22426
22888
  Group$HeaderCheckBoxPressEventParameters,
22427
22889
  Group
22428
22890
  >;
22429
22891
 
22892
+ /**
22893
+ * Parameters of the Group#showDetail event.
22894
+ */
22430
22895
  export interface Group$ShowDetailEventParameters {}
22431
22896
 
22897
+ /**
22898
+ * Event object of the Group#showDetail event.
22899
+ */
22432
22900
  export type Group$ShowDetailEvent = Event<
22433
22901
  Group$ShowDetailEventParameters,
22434
22902
  Group
@@ -22634,7 +23102,9 @@ declare module "sap/suite/ui/commons/networkgraph/layout/ForceBasedLayout" {
22634
23102
  iMaximumDuration?: int
22635
23103
  ): this;
22636
23104
  }
22637
-
23105
+ /**
23106
+ * Describes the settings that can be provided to the ForceBasedLayout constructor.
23107
+ */
22638
23108
  export interface $ForceBasedLayoutSettings extends $LayoutAlgorithmSettings {
22639
23109
  /**
22640
23110
  * See: {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Force-Layout.md#alpha}
@@ -22920,7 +23390,9 @@ declare module "sap/suite/ui/commons/networkgraph/layout/ForceDirectedLayout" {
22920
23390
  sStaticNodes?: string[]
22921
23391
  ): this;
22922
23392
  }
22923
-
23393
+ /**
23394
+ * Describes the settings that can be provided to the ForceDirectedLayout constructor.
23395
+ */
22924
23396
  export interface $ForceDirectedLayoutSettings
22925
23397
  extends $LayoutAlgorithmSettings {
22926
23398
  /**
@@ -23154,7 +23626,9 @@ declare module "sap/suite/ui/commons/networkgraph/layout/LayeredLayout" {
23154
23626
  fNodeSpacing?: float
23155
23627
  ): this;
23156
23628
  }
23157
-
23629
+ /**
23630
+ * Describes the settings that can be provided to the LayeredLayout constructor.
23631
+ */
23158
23632
  export interface $LayeredLayoutSettings extends $LayoutAlgorithmSettings {
23159
23633
  /**
23160
23634
  * Define a minimal distance on nodes the algorithm will try to keep. The default value is 55. Note that
@@ -23261,7 +23735,9 @@ declare module "sap/suite/ui/commons/networkgraph/layout/LayoutAlgorithm" {
23261
23735
  */
23262
23736
  layout(): LayoutTask;
23263
23737
  }
23264
-
23738
+ /**
23739
+ * Describes the settings that can be provided to the LayoutAlgorithm constructor.
23740
+ */
23265
23741
  export interface $LayoutAlgorithmSettings extends $ElementSettings {}
23266
23742
  }
23267
23743
 
@@ -23357,7 +23833,9 @@ declare module "sap/suite/ui/commons/networkgraph/layout/NoopLayout" {
23357
23833
  */
23358
23834
  layout(): LayoutTask;
23359
23835
  }
23360
-
23836
+ /**
23837
+ * Describes the settings that can be provided to the NoopLayout constructor.
23838
+ */
23361
23839
  export interface $NoopLayoutSettings extends $LayoutAlgorithmSettings {}
23362
23840
  }
23363
23841
 
@@ -23410,7 +23888,9 @@ declare module "sap/suite/ui/commons/networkgraph/layout/SwimLaneChainLayout" {
23410
23888
  */
23411
23889
  layout(): LayoutTask;
23412
23890
  }
23413
-
23891
+ /**
23892
+ * Describes the settings that can be provided to the SwimLaneChainLayout constructor.
23893
+ */
23414
23894
  export interface $SwimLaneChainLayoutSettings
23415
23895
  extends $LayoutAlgorithmSettings {}
23416
23896
  }
@@ -23450,7 +23930,9 @@ declare module "sap/suite/ui/commons/networkgraph/layout/TwoColumnsLayout" {
23450
23930
  */
23451
23931
  layout(): LayoutTask;
23452
23932
  }
23453
-
23933
+ /**
23934
+ * Describes the settings that can be provided to the TwoColumnsLayout constructor.
23935
+ */
23454
23936
  export interface $TwoColumnsLayoutSettings extends $LayoutAlgorithmSettings {}
23455
23937
  }
23456
23938
 
@@ -24127,7 +24609,9 @@ declare module "sap/suite/ui/commons/networkgraph/Line" {
24127
24609
  sTo?: string
24128
24610
  ): this;
24129
24611
  }
24130
-
24612
+ /**
24613
+ * Describes the settings that can be provided to the Line constructor.
24614
+ */
24131
24615
  export interface $LineSettings extends $ElementBaseSettings {
24132
24616
  /**
24133
24617
  * Shows if the line is selected. Once the line is selected, its appearance changes slightly to distinguish
@@ -24213,10 +24697,19 @@ declare module "sap/suite/ui/commons/networkgraph/Line" {
24213
24697
  press?: (oEvent: Line$PressEvent) => void;
24214
24698
  }
24215
24699
 
24700
+ /**
24701
+ * Parameters of the Line#hover event.
24702
+ */
24216
24703
  export interface Line$HoverEventParameters {}
24217
24704
 
24705
+ /**
24706
+ * Event object of the Line#hover event.
24707
+ */
24218
24708
  export type Line$HoverEvent = Event<Line$HoverEventParameters, Line>;
24219
24709
 
24710
+ /**
24711
+ * Parameters of the Line#press event.
24712
+ */
24220
24713
  export interface Line$PressEventParameters {
24221
24714
  /**
24222
24715
  * Coordinates of the cursor when pressed.
@@ -24230,6 +24723,9 @@ declare module "sap/suite/ui/commons/networkgraph/Line" {
24230
24723
  opener?: Object;
24231
24724
  }
24232
24725
 
24726
+ /**
24727
+ * Event object of the Line#press event.
24728
+ */
24233
24729
  export type Line$PressEvent = Event<Line$PressEventParameters, Line>;
24234
24730
  }
24235
24731
 
@@ -25802,7 +26298,9 @@ declare module "sap/suite/ui/commons/networkgraph/Node" {
25802
26298
  bShow: boolean
25803
26299
  ): void;
25804
26300
  }
25805
-
26301
+ /**
26302
+ * Describes the settings that can be provided to the Node constructor.
26303
+ */
25806
26304
  export interface $NodeSettings extends $ElementBaseSettings {
25807
26305
  /**
25808
26306
  * Defines if the Header checkbox should be displayed and whether it should be selected or not. By default,
@@ -25992,13 +26490,22 @@ declare module "sap/suite/ui/commons/networkgraph/Node" {
25992
26490
  collapseExpand?: (oEvent: Event) => void;
25993
26491
  }
25994
26492
 
26493
+ /**
26494
+ * Parameters of the Node#collapseExpand event.
26495
+ */
25995
26496
  export interface Node$CollapseExpandEventParameters {}
25996
26497
 
26498
+ /**
26499
+ * Event object of the Node#collapseExpand event.
26500
+ */
25997
26501
  export type Node$CollapseExpandEvent = Event<
25998
26502
  Node$CollapseExpandEventParameters,
25999
26503
  Node
26000
26504
  >;
26001
26505
 
26506
+ /**
26507
+ * Parameters of the Node#headerCheckBoxPress event.
26508
+ */
26002
26509
  export interface Node$HeaderCheckBoxPressEventParameters {
26003
26510
  /**
26004
26511
  * Indicates whether checkbox is selected.
@@ -26006,17 +26513,32 @@ declare module "sap/suite/ui/commons/networkgraph/Node" {
26006
26513
  checked?: boolean;
26007
26514
  }
26008
26515
 
26516
+ /**
26517
+ * Event object of the Node#headerCheckBoxPress event.
26518
+ */
26009
26519
  export type Node$HeaderCheckBoxPressEvent = Event<
26010
26520
  Node$HeaderCheckBoxPressEventParameters,
26011
26521
  Node
26012
26522
  >;
26013
26523
 
26524
+ /**
26525
+ * Parameters of the Node#hover event.
26526
+ */
26014
26527
  export interface Node$HoverEventParameters {}
26015
26528
 
26529
+ /**
26530
+ * Event object of the Node#hover event.
26531
+ */
26016
26532
  export type Node$HoverEvent = Event<Node$HoverEventParameters, Node>;
26017
26533
 
26534
+ /**
26535
+ * Parameters of the Node#press event.
26536
+ */
26018
26537
  export interface Node$PressEventParameters {}
26019
26538
 
26539
+ /**
26540
+ * Event object of the Node#press event.
26541
+ */
26020
26542
  export type Node$PressEvent = Event<Node$PressEventParameters, Node>;
26021
26543
  }
26022
26544
 
@@ -26151,7 +26673,9 @@ declare module "sap/suite/ui/commons/networkgraph/NodeImage" {
26151
26673
  iWidth?: int
26152
26674
  ): this;
26153
26675
  }
26154
-
26676
+ /**
26677
+ * Describes the settings that can be provided to the NodeImage constructor.
26678
+ */
26155
26679
  export interface $NodeImageSettings extends $ElementSettings {
26156
26680
  /**
26157
26681
  * Relative or absolute path to the image file.
@@ -26663,7 +27187,9 @@ declare module "sap/suite/ui/commons/networkgraph/Status" {
26663
27187
  bUseFocusColorAsContentColor?: boolean
26664
27188
  ): this;
26665
27189
  }
26666
-
27190
+ /**
27191
+ * Describes the settings that can be provided to the Status constructor.
27192
+ */
26667
27193
  export interface $StatusSettings extends $ElementSettings {
26668
27194
  key?: string | PropertyBindingInfo;
26669
27195
 
@@ -26811,7 +27337,9 @@ declare module "sap/suite/ui/commons/networkgraph/SvgBase" {
26811
27337
  */
26812
27338
  static getMetadata(): ElementMetadata;
26813
27339
  }
26814
-
27340
+ /**
27341
+ * Describes the settings that can be provided to the SvgBase constructor.
27342
+ */
26815
27343
  export interface $SvgBaseSettings extends $ControlSettings {}
26816
27344
  }
26817
27345
 
@@ -26964,7 +27492,11 @@ declare module "sap/suite/ui/commons/NewsContent" {
26964
27492
  */
26965
27493
  static getMetadata(): ElementMetadata;
26966
27494
  }
26967
-
27495
+ /**
27496
+ * Describes the settings that can be provided to the NewsContent constructor.
27497
+ *
27498
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.m.NewsContent.
27499
+ */
26968
27500
  export interface $NewsContentSettings extends $NewsContentSettings1 {}
26969
27501
  }
26970
27502
 
@@ -27829,7 +28361,11 @@ declare module "sap/suite/ui/commons/NoteTaker" {
27829
28361
  iVisibleNotes?: int
27830
28362
  ): this;
27831
28363
  }
27832
-
28364
+ /**
28365
+ * Describes the settings that can be provided to the NoteTaker constructor.
28366
+ *
28367
+ * @deprecated (since 1.32) - Deprecated. Standard Fiori technology should be used.
28368
+ */
27833
28369
  export interface $NoteTakerSettings extends $ControlSettings {
27834
28370
  /**
27835
28371
  * Number of notes to display.
@@ -27906,6 +28442,9 @@ declare module "sap/suite/ui/commons/NoteTaker" {
27906
28442
  attachmentClick?: (oEvent: NoteTaker$AttachmentClickEvent) => void;
27907
28443
  }
27908
28444
 
28445
+ /**
28446
+ * Parameters of the NoteTaker#addCard event.
28447
+ */
27909
28448
  export interface NoteTaker$AddCardEventParameters {
27910
28449
  /**
27911
28450
  * The title of the note to be added.
@@ -27959,11 +28498,17 @@ declare module "sap/suite/ui/commons/NoteTaker" {
27959
28498
  card?: NoteTakerCard;
27960
28499
  }
27961
28500
 
28501
+ /**
28502
+ * Event object of the NoteTaker#addCard event.
28503
+ */
27962
28504
  export type NoteTaker$AddCardEvent = Event<
27963
28505
  NoteTaker$AddCardEventParameters,
27964
28506
  NoteTaker
27965
28507
  >;
27966
28508
 
28509
+ /**
28510
+ * Parameters of the NoteTaker#attachmentClick event.
28511
+ */
27967
28512
  export interface NoteTaker$AttachmentClickEventParameters {
27968
28513
  /**
27969
28514
  * The unique ID of the card.
@@ -27982,11 +28527,17 @@ declare module "sap/suite/ui/commons/NoteTaker" {
27982
28527
  filename?: string;
27983
28528
  }
27984
28529
 
28530
+ /**
28531
+ * Event object of the NoteTaker#attachmentClick event.
28532
+ */
27985
28533
  export type NoteTaker$AttachmentClickEvent = Event<
27986
28534
  NoteTaker$AttachmentClickEventParameters,
27987
28535
  NoteTaker
27988
28536
  >;
27989
28537
 
28538
+ /**
28539
+ * Parameters of the NoteTaker#attachmentDelete event.
28540
+ */
27990
28541
  export interface NoteTaker$AttachmentDeleteEventParameters {
27991
28542
  /**
27992
28543
  * A name of the attached file.
@@ -27999,11 +28550,17 @@ declare module "sap/suite/ui/commons/NoteTaker" {
27999
28550
  uid?: string;
28000
28551
  }
28001
28552
 
28553
+ /**
28554
+ * Event object of the NoteTaker#attachmentDelete event.
28555
+ */
28002
28556
  export type NoteTaker$AttachmentDeleteEvent = Event<
28003
28557
  NoteTaker$AttachmentDeleteEventParameters,
28004
28558
  NoteTaker
28005
28559
  >;
28006
28560
 
28561
+ /**
28562
+ * Parameters of the NoteTaker#attachmentSelect event.
28563
+ */
28007
28564
  export interface NoteTaker$AttachmentSelectEventParameters {
28008
28565
  /**
28009
28566
  * A name of the attached file.
@@ -28011,11 +28568,17 @@ declare module "sap/suite/ui/commons/NoteTaker" {
28011
28568
  filename?: string;
28012
28569
  }
28013
28570
 
28571
+ /**
28572
+ * Event object of the NoteTaker#attachmentSelect event.
28573
+ */
28014
28574
  export type NoteTaker$AttachmentSelectEvent = Event<
28015
28575
  NoteTaker$AttachmentSelectEventParameters,
28016
28576
  NoteTaker
28017
28577
  >;
28018
28578
 
28579
+ /**
28580
+ * Parameters of the NoteTaker#attachmentUploadComplete event.
28581
+ */
28019
28582
  export interface NoteTaker$AttachmentUploadCompleteEventParameters {
28020
28583
  /**
28021
28584
  * The response message of the String type that comes from the server. On the server side this response
@@ -28030,11 +28593,17 @@ declare module "sap/suite/ui/commons/NoteTaker" {
28030
28593
  uid?: string;
28031
28594
  }
28032
28595
 
28596
+ /**
28597
+ * Event object of the NoteTaker#attachmentUploadComplete event.
28598
+ */
28033
28599
  export type NoteTaker$AttachmentUploadCompleteEvent = Event<
28034
28600
  NoteTaker$AttachmentUploadCompleteEventParameters,
28035
28601
  NoteTaker
28036
28602
  >;
28037
28603
 
28604
+ /**
28605
+ * Parameters of the NoteTaker#deleteCard event.
28606
+ */
28038
28607
  export interface NoteTaker$DeleteCardEventParameters {
28039
28608
  /**
28040
28609
  * The title of the card to be deleted.
@@ -28067,11 +28636,17 @@ declare module "sap/suite/ui/commons/NoteTaker" {
28067
28636
  thumbDown?: boolean;
28068
28637
  }
28069
28638
 
28639
+ /**
28640
+ * Event object of the NoteTaker#deleteCard event.
28641
+ */
28070
28642
  export type NoteTaker$DeleteCardEvent = Event<
28071
28643
  NoteTaker$DeleteCardEventParameters,
28072
28644
  NoteTaker
28073
28645
  >;
28074
28646
 
28647
+ /**
28648
+ * Parameters of the NoteTaker#editCard event.
28649
+ */
28075
28650
  export interface NoteTaker$EditCardEventParameters {
28076
28651
  /**
28077
28652
  * The title of the edited card.
@@ -28109,6 +28684,9 @@ declare module "sap/suite/ui/commons/NoteTaker" {
28109
28684
  tags?: object;
28110
28685
  }
28111
28686
 
28687
+ /**
28688
+ * Event object of the NoteTaker#editCard event.
28689
+ */
28112
28690
  export type NoteTaker$EditCardEvent = Event<
28113
28691
  NoteTaker$EditCardEventParameters,
28114
28692
  NoteTaker
@@ -28756,7 +29334,11 @@ declare module "sap/suite/ui/commons/NoteTakerCard" {
28756
29334
  iViewAllTrigger?: int
28757
29335
  ): this;
28758
29336
  }
28759
-
29337
+ /**
29338
+ * Describes the settings that can be provided to the NoteTakerCard constructor.
29339
+ *
29340
+ * @deprecated (since 1.32) - Deprecated. Standard Fiori technology should be used.
29341
+ */
28760
29342
  export interface $NoteTakerCardSettings extends $ControlSettings {
28761
29343
  /**
28762
29344
  * Stores the Note Taker card header.
@@ -28834,6 +29416,9 @@ declare module "sap/suite/ui/commons/NoteTakerCard" {
28834
29416
  attachmentClick?: (oEvent: NoteTakerCard$AttachmentClickEvent) => void;
28835
29417
  }
28836
29418
 
29419
+ /**
29420
+ * Parameters of the NoteTakerCard#attachmentClick event.
29421
+ */
28837
29422
  export interface NoteTakerCard$AttachmentClickEventParameters {
28838
29423
  /**
28839
29424
  * A unique ID that was set by an application developer.
@@ -28851,11 +29436,17 @@ declare module "sap/suite/ui/commons/NoteTakerCard" {
28851
29436
  filename?: string;
28852
29437
  }
28853
29438
 
29439
+ /**
29440
+ * Event object of the NoteTakerCard#attachmentClick event.
29441
+ */
28854
29442
  export type NoteTakerCard$AttachmentClickEvent = Event<
28855
29443
  NoteTakerCard$AttachmentClickEventParameters,
28856
29444
  NoteTakerCard
28857
29445
  >;
28858
29446
 
29447
+ /**
29448
+ * Parameters of the NoteTakerCard#deleteNote event.
29449
+ */
28859
29450
  export interface NoteTakerCard$DeleteNoteEventParameters {
28860
29451
  /**
28861
29452
  * The HTML ID of a card that needs to be deleted.
@@ -28893,11 +29484,17 @@ declare module "sap/suite/ui/commons/NoteTakerCard" {
28893
29484
  thumbDown?: boolean;
28894
29485
  }
28895
29486
 
29487
+ /**
29488
+ * Event object of the NoteTakerCard#deleteNote event.
29489
+ */
28896
29490
  export type NoteTakerCard$DeleteNoteEvent = Event<
28897
29491
  NoteTakerCard$DeleteNoteEventParameters,
28898
29492
  NoteTakerCard
28899
29493
  >;
28900
29494
 
29495
+ /**
29496
+ * Parameters of the NoteTakerCard#editNote event.
29497
+ */
28901
29498
  export interface NoteTakerCard$EditNoteEventParameters {
28902
29499
  /**
28903
29500
  * The title of edited card.
@@ -28935,6 +29532,9 @@ declare module "sap/suite/ui/commons/NoteTakerCard" {
28935
29532
  tags?: object;
28936
29533
  }
28937
29534
 
29535
+ /**
29536
+ * Event object of the NoteTakerCard#editNote event.
29537
+ */
28938
29538
  export type NoteTakerCard$EditNoteEvent = Event<
28939
29539
  NoteTakerCard$EditNoteEventParameters,
28940
29540
  NoteTakerCard
@@ -29616,7 +30216,11 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
29616
30216
  sTitle?: string
29617
30217
  ): this;
29618
30218
  }
29619
-
30219
+ /**
30220
+ * Describes the settings that can be provided to the NoteTakerFeeder constructor.
30221
+ *
30222
+ * @deprecated (since 1.32) - Deprecated. Standard Fiori technology should be used.
30223
+ */
29620
30224
  export interface $NoteTakerFeederSettings extends $ControlSettings {
29621
30225
  /**
29622
30226
  * The text inside the note card.
@@ -29682,6 +30286,9 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
29682
30286
  attachmentClick?: (oEvent: NoteTakerFeeder$AttachmentClickEvent) => void;
29683
30287
  }
29684
30288
 
30289
+ /**
30290
+ * Parameters of the NoteTakerFeeder#addNote event.
30291
+ */
29685
30292
  export interface NoteTakerFeeder$AddNoteEventParameters {
29686
30293
  /**
29687
30294
  * The title of the note to be added.
@@ -29714,11 +30321,17 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
29714
30321
  attachmentFilename?: string;
29715
30322
  }
29716
30323
 
30324
+ /**
30325
+ * Event object of the NoteTakerFeeder#addNote event.
30326
+ */
29717
30327
  export type NoteTakerFeeder$AddNoteEvent = Event<
29718
30328
  NoteTakerFeeder$AddNoteEventParameters,
29719
30329
  NoteTakerFeeder
29720
30330
  >;
29721
30331
 
30332
+ /**
30333
+ * Parameters of the NoteTakerFeeder#attachmentClick event.
30334
+ */
29722
30335
  export interface NoteTakerFeeder$AttachmentClickEventParameters {
29723
30336
  /**
29724
30337
  * A name of the attached file.
@@ -29726,11 +30339,17 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
29726
30339
  filename?: string;
29727
30340
  }
29728
30341
 
30342
+ /**
30343
+ * Event object of the NoteTakerFeeder#attachmentClick event.
30344
+ */
29729
30345
  export type NoteTakerFeeder$AttachmentClickEvent = Event<
29730
30346
  NoteTakerFeeder$AttachmentClickEventParameters,
29731
30347
  NoteTakerFeeder
29732
30348
  >;
29733
30349
 
30350
+ /**
30351
+ * Parameters of the NoteTakerFeeder#attachmentDelete event.
30352
+ */
29734
30353
  export interface NoteTakerFeeder$AttachmentDeleteEventParameters {
29735
30354
  /**
29736
30355
  * A name of the attached file.
@@ -29738,11 +30357,17 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
29738
30357
  filename?: string;
29739
30358
  }
29740
30359
 
30360
+ /**
30361
+ * Event object of the NoteTakerFeeder#attachmentDelete event.
30362
+ */
29741
30363
  export type NoteTakerFeeder$AttachmentDeleteEvent = Event<
29742
30364
  NoteTakerFeeder$AttachmentDeleteEventParameters,
29743
30365
  NoteTakerFeeder
29744
30366
  >;
29745
30367
 
30368
+ /**
30369
+ * Parameters of the NoteTakerFeeder#attachmentSelect event.
30370
+ */
29746
30371
  export interface NoteTakerFeeder$AttachmentSelectEventParameters {
29747
30372
  /**
29748
30373
  * A name of the attached file.
@@ -29750,11 +30375,17 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
29750
30375
  filename?: string;
29751
30376
  }
29752
30377
 
30378
+ /**
30379
+ * Event object of the NoteTakerFeeder#attachmentSelect event.
30380
+ */
29753
30381
  export type NoteTakerFeeder$AttachmentSelectEvent = Event<
29754
30382
  NoteTakerFeeder$AttachmentSelectEventParameters,
29755
30383
  NoteTakerFeeder
29756
30384
  >;
29757
30385
 
30386
+ /**
30387
+ * Parameters of the NoteTakerFeeder#attachmentUploadComplete event.
30388
+ */
29758
30389
  export interface NoteTakerFeeder$AttachmentUploadCompleteEventParameters {
29759
30390
  /**
29760
30391
  * The response message that comes from the server. On the server side this response has to be put within
@@ -29764,6 +30395,9 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
29764
30395
  response?: string;
29765
30396
  }
29766
30397
 
30398
+ /**
30399
+ * Event object of the NoteTakerFeeder#attachmentUploadComplete event.
30400
+ */
29767
30401
  export type NoteTakerFeeder$AttachmentUploadCompleteEvent = Event<
29768
30402
  NoteTakerFeeder$AttachmentUploadCompleteEventParameters,
29769
30403
  NoteTakerFeeder
@@ -29985,7 +30619,11 @@ declare module "sap/suite/ui/commons/NumericTile" {
29985
30619
  sValueColor?: InfoTileValueColor | keyof typeof InfoTileValueColor
29986
30620
  ): this;
29987
30621
  }
29988
-
30622
+ /**
30623
+ * Describes the settings that can be provided to the NumericTile constructor.
30624
+ *
30625
+ * @deprecated (since 1.25) - This control has been deprecated in favor of new sap.suite.ui.commons.GenericTile.
30626
+ */
29989
30627
  export interface $NumericTileSettings extends $InfoTileSettings {
29990
30628
  /**
29991
30629
  * The actual value.
@@ -30174,7 +30812,11 @@ declare module "sap/suite/ui/commons/PictureZoomIn" {
30174
30812
  sImageSrc?: URI
30175
30813
  ): this;
30176
30814
  }
30177
-
30815
+ /**
30816
+ * Describes the settings that can be provided to the PictureZoomIn constructor.
30817
+ *
30818
+ * @deprecated (since 1.34) - Deprecated. Not Fiori.
30819
+ */
30178
30820
  export interface $PictureZoomInSettings extends $ControlSettings {
30179
30821
  /**
30180
30822
  * Description is shown under image.
@@ -31090,7 +31732,9 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
31090
31732
  */
31091
31733
  zoomOut(): string;
31092
31734
  }
31093
-
31735
+ /**
31736
+ * Describes the settings that can be provided to the ProcessFlow constructor.
31737
+ */
31094
31738
  export interface $ProcessFlowSettings extends $ControlSettings {
31095
31739
  /**
31096
31740
  * This property defines the folded corners for the single node control. The following values exist: - true:
@@ -31175,6 +31819,9 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
31175
31819
  onError?: (oEvent: ProcessFlow$OnErrorEvent) => void;
31176
31820
  }
31177
31821
 
31822
+ /**
31823
+ * Parameters of the ProcessFlow#headerPress event.
31824
+ */
31178
31825
  export interface ProcessFlow$HeaderPressEventParameters {
31179
31826
  /**
31180
31827
  * This object represents the wrapped process flow lane header object.
@@ -31182,11 +31829,17 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
31182
31829
  oEvent?: object;
31183
31830
  }
31184
31831
 
31832
+ /**
31833
+ * Event object of the ProcessFlow#headerPress event.
31834
+ */
31185
31835
  export type ProcessFlow$HeaderPressEvent = Event<
31186
31836
  ProcessFlow$HeaderPressEventParameters,
31187
31837
  ProcessFlow
31188
31838
  >;
31189
31839
 
31840
+ /**
31841
+ * Parameters of the ProcessFlow#labelPress event.
31842
+ */
31190
31843
  export interface ProcessFlow$LabelPressEventParameters {
31191
31844
  /**
31192
31845
  * This object represents the label information.
@@ -31194,11 +31847,17 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
31194
31847
  oEvent?: object;
31195
31848
  }
31196
31849
 
31850
+ /**
31851
+ * Event object of the ProcessFlow#labelPress event.
31852
+ */
31197
31853
  export type ProcessFlow$LabelPressEvent = Event<
31198
31854
  ProcessFlow$LabelPressEventParameters,
31199
31855
  ProcessFlow
31200
31856
  >;
31201
31857
 
31858
+ /**
31859
+ * Parameters of the ProcessFlow#nodePress event.
31860
+ */
31202
31861
  export interface ProcessFlow$NodePressEventParameters {
31203
31862
  /**
31204
31863
  * This object represents the wrapped process flow node object.
@@ -31206,11 +31865,20 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
31206
31865
  oEvent?: object;
31207
31866
  }
31208
31867
 
31868
+ /**
31869
+ * Event object of the ProcessFlow#nodePress event.
31870
+ */
31209
31871
  export type ProcessFlow$NodePressEvent = Event<
31210
31872
  ProcessFlow$NodePressEventParameters,
31211
31873
  ProcessFlow
31212
31874
  >;
31213
31875
 
31876
+ /**
31877
+ * Parameters of the ProcessFlow#nodeTitlePress event.
31878
+ *
31879
+ * @deprecated (since 1.26) - Should not be used any longer, use nodePress event instead ( click on the
31880
+ * node)
31881
+ */
31214
31882
  export interface ProcessFlow$NodeTitlePressEventParameters {
31215
31883
  /**
31216
31884
  * This object represents the wrapped process flow node object.
@@ -31218,11 +31886,20 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
31218
31886
  oEvent?: object;
31219
31887
  }
31220
31888
 
31889
+ /**
31890
+ * Event object of the ProcessFlow#nodeTitlePress event.
31891
+ *
31892
+ * @deprecated (since 1.26) - Should not be used any longer, use nodePress event instead ( click on the
31893
+ * node)
31894
+ */
31221
31895
  export type ProcessFlow$NodeTitlePressEvent = Event<
31222
31896
  ProcessFlow$NodeTitlePressEventParameters,
31223
31897
  ProcessFlow
31224
31898
  >;
31225
31899
 
31900
+ /**
31901
+ * Parameters of the ProcessFlow#onError event.
31902
+ */
31226
31903
  export interface ProcessFlow$OnErrorEventParameters {
31227
31904
  /**
31228
31905
  * This parameters contains the localized string with error message.
@@ -31230,6 +31907,9 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
31230
31907
  oEvent?: object;
31231
31908
  }
31232
31909
 
31910
+ /**
31911
+ * Event object of the ProcessFlow#onError event.
31912
+ */
31233
31913
  export type ProcessFlow$OnErrorEvent = Event<
31234
31914
  ProcessFlow$OnErrorEventParameters,
31235
31915
  ProcessFlow
@@ -31455,7 +32135,9 @@ declare module "sap/suite/ui/commons/ProcessFlowConnection" {
31455
32135
  sZoomLevel?: ProcessFlowZoomLevel | keyof typeof ProcessFlowZoomLevel
31456
32136
  ): this;
31457
32137
  }
31458
-
32138
+ /**
32139
+ * Describes the settings that can be provided to the ProcessFlowConnection constructor.
32140
+ */
31459
32141
  export interface $ProcessFlowConnectionSettings extends $ControlSettings {
31460
32142
  /**
31461
32143
  * This is an array of the following attributes for one element: 1. flowLine (string) - A connection definition
@@ -31646,7 +32328,9 @@ declare module "sap/suite/ui/commons/ProcessFlowConnectionLabel" {
31646
32328
  | keyof typeof ProcessFlowConnectionLabelState
31647
32329
  ): this;
31648
32330
  }
31649
-
32331
+ /**
32332
+ * Describes the settings that can be provided to the ProcessFlowConnectionLabel constructor.
32333
+ */
31650
32334
  export interface $ProcessFlowConnectionLabelSettings extends $ButtonSettings {
31651
32335
  /**
31652
32336
  * Priority is used to define which label is visible if the state of multiple labels is equal. Assuming
@@ -31987,7 +32671,9 @@ declare module "sap/suite/ui/commons/ProcessFlowLaneHeader" {
31987
32671
  sZoomLevel?: ProcessFlowZoomLevel | keyof typeof ProcessFlowZoomLevel
31988
32672
  ): this;
31989
32673
  }
31990
-
32674
+ /**
32675
+ * Describes the settings that can be provided to the ProcessFlowLaneHeader constructor.
32676
+ */
31991
32677
  export interface $ProcessFlowLaneHeaderSettings extends $ControlSettings {
31992
32678
  /**
31993
32679
  * Text information that is displayed in the control.
@@ -32031,6 +32717,9 @@ declare module "sap/suite/ui/commons/ProcessFlowLaneHeader" {
32031
32717
  press?: (oEvent: ProcessFlowLaneHeader$PressEvent) => void;
32032
32718
  }
32033
32719
 
32720
+ /**
32721
+ * Parameters of the ProcessFlowLaneHeader#press event.
32722
+ */
32034
32723
  export interface ProcessFlowLaneHeader$PressEventParameters {
32035
32724
  /**
32036
32725
  * tbd
@@ -32038,6 +32727,9 @@ declare module "sap/suite/ui/commons/ProcessFlowLaneHeader" {
32038
32727
  oEvent?: object;
32039
32728
  }
32040
32729
 
32730
+ /**
32731
+ * Event object of the ProcessFlowLaneHeader#press event.
32732
+ */
32041
32733
  export type ProcessFlowLaneHeader$PressEvent = Event<
32042
32734
  ProcessFlowLaneHeader$PressEventParameters,
32043
32735
  ProcessFlowLaneHeader
@@ -32872,7 +33564,9 @@ declare module "sap/suite/ui/commons/ProcessFlowNode" {
32872
33564
  oZoomLevelTwoContent: Control
32873
33565
  ): this;
32874
33566
  }
32875
-
33567
+ /**
33568
+ * Describes the settings that can be provided to the ProcessFlowNode constructor.
33569
+ */
32876
33570
  export interface $ProcessFlowNodeSettings extends $ControlSettings {
32877
33571
  /**
32878
33572
  * The node title.
@@ -33015,6 +33709,12 @@ declare module "sap/suite/ui/commons/ProcessFlowNode" {
33015
33709
  press?: (oEvent: ProcessFlowNode$PressEvent) => void;
33016
33710
  }
33017
33711
 
33712
+ /**
33713
+ * Parameters of the ProcessFlowNode#press event.
33714
+ *
33715
+ * @deprecated (since 1.50.0) - This event is deprecated, use nodePress event instead. See
33716
+ * {@link sap.suite.ui.commons.ProcessFlow.html#event:nodePress}.
33717
+ */
33018
33718
  export interface ProcessFlowNode$PressEventParameters {
33019
33719
  /**
33020
33720
  * The node identification.
@@ -33022,11 +33722,22 @@ declare module "sap/suite/ui/commons/ProcessFlowNode" {
33022
33722
  oEvent?: object;
33023
33723
  }
33024
33724
 
33725
+ /**
33726
+ * Event object of the ProcessFlowNode#press event.
33727
+ *
33728
+ * @deprecated (since 1.50.0) - This event is deprecated, use nodePress event instead. See
33729
+ * {@link sap.suite.ui.commons.ProcessFlow.html#event:nodePress}.
33730
+ */
33025
33731
  export type ProcessFlowNode$PressEvent = Event<
33026
33732
  ProcessFlowNode$PressEventParameters,
33027
33733
  ProcessFlowNode
33028
33734
  >;
33029
33735
 
33736
+ /**
33737
+ * Parameters of the ProcessFlowNode#titlePress event.
33738
+ *
33739
+ * @deprecated (since 1.26) - Should not be used any longer, use Press event instead ( click on the node)
33740
+ */
33030
33741
  export interface ProcessFlowNode$TitlePressEventParameters {
33031
33742
  /**
33032
33743
  * The node identification.
@@ -33034,6 +33745,11 @@ declare module "sap/suite/ui/commons/ProcessFlowNode" {
33034
33745
  oEvent?: object;
33035
33746
  }
33036
33747
 
33748
+ /**
33749
+ * Event object of the ProcessFlowNode#titlePress event.
33750
+ *
33751
+ * @deprecated (since 1.26) - Should not be used any longer, use Press event instead ( click on the node)
33752
+ */
33037
33753
  export type ProcessFlowNode$TitlePressEvent = Event<
33038
33754
  ProcessFlowNode$TitlePressEventParameters,
33039
33755
  ProcessFlowNode
@@ -33457,7 +34173,11 @@ declare module "sap/suite/ui/commons/RepeaterViewConfiguration" {
33457
34173
  sTitle?: string
33458
34174
  ): this;
33459
34175
  }
33460
-
34176
+ /**
34177
+ * Describes the settings that can be provided to the RepeaterViewConfiguration constructor.
34178
+ *
34179
+ * @deprecated (since 1.32) - Deprecated. Standard Fiori technology should be used.
34180
+ */
33461
34181
  export interface $RepeaterViewConfigurationSettings extends $ControlSettings {
33462
34182
  /**
33463
34183
  * The title of the view to be displayed in sap.suite.ui.commons.ViewRepeater view selector. If neither
@@ -33892,7 +34612,11 @@ declare module "sap/suite/ui/commons/SplitButton" {
33892
34612
  bVisible?: boolean
33893
34613
  ): this;
33894
34614
  }
33895
-
34615
+ /**
34616
+ * Describes the settings that can be provided to the SplitButton constructor.
34617
+ *
34618
+ * @deprecated (since 1.34) - Deprecated. Not Fiori.
34619
+ */
33896
34620
  export interface $SplitButtonSettings extends $ControlSettings {
33897
34621
  /**
33898
34622
  * Invisible split buttons are not rendered
@@ -34112,7 +34836,9 @@ declare module "sap/suite/ui/commons/statusindicator/Circle" {
34112
34836
  fR?: float
34113
34837
  ): this;
34114
34838
  }
34115
-
34839
+ /**
34840
+ * Describes the settings that can be provided to the Circle constructor.
34841
+ */
34116
34842
  export interface $CircleSettings extends $SimpleShapeSettings {
34117
34843
  /**
34118
34844
  * Defines the x coordinate of the center of the circle with respect to its parent status indicator.
@@ -34625,7 +35351,9 @@ declare module "sap/suite/ui/commons/statusindicator/CustomShape" {
34625
35351
  iY?: int
34626
35352
  ): this;
34627
35353
  }
34628
-
35354
+ /**
35355
+ * Describes the settings that can be provided to the CustomShape constructor.
35356
+ */
34629
35357
  export interface $CustomShapeSettings extends $ShapeSettings {
34630
35358
  /**
34631
35359
  * Defines the x coordinate of the upper-left corner of the bounding rectangle.
@@ -34840,7 +35568,9 @@ declare module "sap/suite/ui/commons/statusindicator/DiscreteThreshold" {
34840
35568
  iValue?: int
34841
35569
  ): this;
34842
35570
  }
34843
-
35571
+ /**
35572
+ * Describes the settings that can be provided to the DiscreteThreshold constructor.
35573
+ */
34844
35574
  export interface $DiscreteThresholdSettings extends $ControlSettings {
34845
35575
  /**
34846
35576
  * Defines the value threshold. This value is displayed when the status indicator's percentage value is
@@ -35048,7 +35778,9 @@ declare module "sap/suite/ui/commons/statusindicator/FillingOption" {
35048
35778
  iWeight?: int
35049
35779
  ): this;
35050
35780
  }
35051
-
35781
+ /**
35782
+ * Describes the settings that can be provided to the FillingOption constructor.
35783
+ */
35052
35784
  export interface $FillingOptionSettings extends $ControlSettings {
35053
35785
  /**
35054
35786
  * ID of the fillable SVG shape included in a custom shape.
@@ -35275,7 +36007,9 @@ declare module "sap/suite/ui/commons/statusindicator/LibraryShape" {
35275
36007
  sShapeId?: string
35276
36008
  ): this;
35277
36009
  }
35278
-
36010
+ /**
36011
+ * Describes the settings that can be provided to the LibraryShape constructor.
36012
+ */
35279
36013
  export interface $LibraryShapeSettings extends $CustomShapeSettings {
35280
36014
  /**
35281
36015
  * An ID associated with a specific shape from the shape library.
@@ -35288,8 +36022,14 @@ declare module "sap/suite/ui/commons/statusindicator/LibraryShape" {
35288
36022
  afterShapeLoaded?: (oEvent: Event) => void;
35289
36023
  }
35290
36024
 
36025
+ /**
36026
+ * Parameters of the LibraryShape#afterShapeLoaded event.
36027
+ */
35291
36028
  export interface LibraryShape$AfterShapeLoadedEventParameters {}
35292
36029
 
36030
+ /**
36031
+ * Event object of the LibraryShape#afterShapeLoaded event.
36032
+ */
35293
36033
  export type LibraryShape$AfterShapeLoadedEvent = Event<
35294
36034
  LibraryShape$AfterShapeLoadedEventParameters,
35295
36035
  LibraryShape
@@ -35402,7 +36142,9 @@ declare module "sap/suite/ui/commons/statusindicator/Path" {
35402
36142
  sD?: string
35403
36143
  ): this;
35404
36144
  }
35405
-
36145
+ /**
36146
+ * Describes the settings that can be provided to the Path constructor.
36147
+ */
35406
36148
  export interface $PathSettings extends $SimpleShapeSettings {
35407
36149
  /**
35408
36150
  * Specifies the path that outlines the shape. The format is identical to the `d` attribute of the `<path>`
@@ -35574,7 +36316,9 @@ declare module "sap/suite/ui/commons/statusindicator/PropertyThreshold" {
35574
36316
  iToValue?: int
35575
36317
  ): this;
35576
36318
  }
35577
-
36319
+ /**
36320
+ * Describes the settings that can be provided to the PropertyThreshold constructor.
36321
+ */
35578
36322
  export interface $PropertyThresholdSettings extends $ControlSettings {
35579
36323
  /**
35580
36324
  * Defines the color used to fill the shapes included in the status indicator.
@@ -35846,7 +36590,9 @@ declare module "sap/suite/ui/commons/statusindicator/Rectangle" {
35846
36590
  iY?: int
35847
36591
  ): this;
35848
36592
  }
35849
-
36593
+ /**
36594
+ * Describes the settings that can be provided to the Rectangle constructor.
36595
+ */
35850
36596
  export interface $RectangleSettings extends $SimpleShapeSettings {
35851
36597
  /**
35852
36598
  * Defines the x coordinate of the upper-left corner of the rectangle.
@@ -36301,7 +37047,9 @@ declare module "sap/suite/ui/commons/statusindicator/Shape" {
36301
37047
  | keyof typeof statusindicator.VerticalAlignmentType
36302
37048
  ): this;
36303
37049
  }
36304
-
37050
+ /**
37051
+ * Describes the settings that can be provided to the Shape constructor.
37052
+ */
36305
37053
  export interface $ShapeSettings extends $ControlSettings {
36306
37054
  /**
36307
37055
  * Specifies the duration, in milliseconds, of the animation that would fill an empty shape to the full.
@@ -36606,7 +37354,9 @@ declare module "sap/suite/ui/commons/statusindicator/ShapeGroup" {
36606
37354
  iWeight?: int
36607
37355
  ): this;
36608
37356
  }
36609
-
37357
+ /**
37358
+ * Describes the settings that can be provided to the ShapeGroup constructor.
37359
+ */
36610
37360
  export interface $ShapeGroupSettings extends $ControlSettings {
36611
37361
  /**
36612
37362
  * Weight of the group, relative to other groups in the status indicator. This property allows you to distribute
@@ -36778,7 +37528,9 @@ declare module "sap/suite/ui/commons/statusindicator/SimpleShape" {
36778
37528
  fStrokeWidth?: float
36779
37529
  ): this;
36780
37530
  }
36781
-
37531
+ /**
37532
+ * Describes the settings that can be provided to the SimpleShape constructor.
37533
+ */
36782
37534
  export interface $SimpleShapeSettings extends $ShapeSettings {
36783
37535
  /**
36784
37536
  * Specifies the width of the shape's outline.
@@ -37523,7 +38275,9 @@ declare module "sap/suite/ui/commons/statusindicator/StatusIndicator" {
37523
38275
  sWidth: CSSSize
37524
38276
  ): this;
37525
38277
  }
37526
-
38278
+ /**
38279
+ * Describes the settings that can be provided to the StatusIndicator constructor.
38280
+ */
37527
38281
  export interface $StatusIndicatorSettings extends $ControlSettings {
37528
38282
  /**
37529
38283
  * Width of the status indicator. Only sets the width of the image part of the status indicator, potential
@@ -37627,8 +38381,14 @@ declare module "sap/suite/ui/commons/statusindicator/StatusIndicator" {
37627
38381
  press?: (oEvent: Event) => void;
37628
38382
  }
37629
38383
 
38384
+ /**
38385
+ * Parameters of the StatusIndicator#press event.
38386
+ */
37630
38387
  export interface StatusIndicator$PressEventParameters {}
37631
38388
 
38389
+ /**
38390
+ * Event object of the StatusIndicator#press event.
38391
+ */
37632
38392
  export type StatusIndicator$PressEvent = Event<
37633
38393
  StatusIndicator$PressEventParameters,
37634
38394
  StatusIndicator
@@ -38113,7 +38873,9 @@ declare module "sap/suite/ui/commons/taccount/TAccount" {
38113
38873
  sTitle?: string
38114
38874
  ): this;
38115
38875
  }
38116
-
38876
+ /**
38877
+ * Describes the settings that can be provided to the TAccount constructor.
38878
+ */
38117
38879
  export interface $TAccountSettings extends $ControlSettings {
38118
38880
  /**
38119
38881
  * Unit of measurement. Can be set to a currency or any other applicable unit of measurement.
@@ -38398,7 +39160,9 @@ declare module "sap/suite/ui/commons/taccount/TAccountGroup" {
38398
39160
  sTitle?: string
38399
39161
  ): this;
38400
39162
  }
38401
-
39163
+ /**
39164
+ * Describes the settings that can be provided to the TAccountGroup constructor.
39165
+ */
38402
39166
  export interface $TAccountGroupSettings extends $ControlSettings {
38403
39167
  /**
38404
39168
  * Title of the group.
@@ -38775,7 +39539,9 @@ declare module "sap/suite/ui/commons/taccount/TAccountItem" {
38775
39539
  oValue?: any
38776
39540
  ): this;
38777
39541
  }
38778
-
39542
+ /**
39543
+ * Describes the settings that can be provided to the TAccountItem constructor.
39544
+ */
38779
39545
  export interface $TAccountItemSettings extends $ControlSettings {
38780
39546
  /**
38781
39547
  * Value of the credit or debit entry.
@@ -38814,8 +39580,14 @@ declare module "sap/suite/ui/commons/taccount/TAccountItem" {
38814
39580
  press?: (oEvent: Event) => void;
38815
39581
  }
38816
39582
 
39583
+ /**
39584
+ * Parameters of the TAccountItem#press event.
39585
+ */
38817
39586
  export interface TAccountItem$PressEventParameters {}
38818
39587
 
39588
+ /**
39589
+ * Event object of the TAccountItem#press event.
39590
+ */
38819
39591
  export type TAccountItem$PressEvent = Event<
38820
39592
  TAccountItem$PressEventParameters,
38821
39593
  TAccountItem
@@ -39035,7 +39807,9 @@ declare module "sap/suite/ui/commons/taccount/TAccountItemProperty" {
39035
39807
  bVisible?: boolean
39036
39808
  ): this;
39037
39809
  }
39038
-
39810
+ /**
39811
+ * Describes the settings that can be provided to the TAccountItemProperty constructor.
39812
+ */
39039
39813
  export interface $TAccountItemPropertySettings extends $ControlSettings {
39040
39814
  /**
39041
39815
  * Key of the property.
@@ -39588,7 +40362,9 @@ declare module "sap/suite/ui/commons/taccount/TAccountPanel" {
39588
40362
  showTable: boolean
39589
40363
  ): void;
39590
40364
  }
39591
-
40365
+ /**
40366
+ * Describes the settings that can be provided to the TAccountPanel constructor.
40367
+ */
39592
40368
  export interface $TAccountPanelSettings extends $ControlSettings {
39593
40369
  /**
39594
40370
  * Title of the panel.
@@ -39643,6 +40419,9 @@ declare module "sap/suite/ui/commons/taccount/TAccountPanel" {
39643
40419
  settingsApplied?: (oEvent: TAccountPanel$SettingsAppliedEvent) => void;
39644
40420
  }
39645
40421
 
40422
+ /**
40423
+ * Parameters of the TAccountPanel#settingsApplied event.
40424
+ */
39646
40425
  export interface TAccountPanel$SettingsAppliedEventParameters {
39647
40426
  /**
39648
40427
  * Hash map witch changed properties
@@ -39650,11 +40429,17 @@ declare module "sap/suite/ui/commons/taccount/TAccountPanel" {
39650
40429
  properties?: object;
39651
40430
  }
39652
40431
 
40432
+ /**
40433
+ * Event object of the TAccountPanel#settingsApplied event.
40434
+ */
39653
40435
  export type TAccountPanel$SettingsAppliedEvent = Event<
39654
40436
  TAccountPanel$SettingsAppliedEventParameters,
39655
40437
  TAccountPanel
39656
40438
  >;
39657
40439
 
40440
+ /**
40441
+ * Parameters of the TAccountPanel#stateChanged event.
40442
+ */
39658
40443
  export interface TAccountPanel$StateChangedEventParameters {
39659
40444
  /**
39660
40445
  * Type of current state
@@ -39664,6 +40449,9 @@ declare module "sap/suite/ui/commons/taccount/TAccountPanel" {
39664
40449
  | keyof typeof taccount.TAccountPanelState;
39665
40450
  }
39666
40451
 
40452
+ /**
40453
+ * Event object of the TAccountPanel#stateChanged event.
40454
+ */
39667
40455
  export type TAccountPanel$StateChangedEvent = Event<
39668
40456
  TAccountPanel$StateChangedEventParameters,
39669
40457
  TAccountPanel
@@ -40175,7 +40963,11 @@ declare module "sap/suite/ui/commons/TargetFilter" {
40175
40963
  oMeasureColumn: TargetFilterMeasureColumn
40176
40964
  ): this;
40177
40965
  }
40178
-
40966
+ /**
40967
+ * Describes the settings that can be provided to the TargetFilter constructor.
40968
+ *
40969
+ * @deprecated (since 1.34) - Deprecated.
40970
+ */
40179
40971
  export interface $TargetFilterSettings extends $ControlSettings {
40180
40972
  /**
40181
40973
  * The name of the entity set from OData service metadata. The filtering applies to this entity set.
@@ -40217,22 +41009,40 @@ declare module "sap/suite/ui/commons/TargetFilter" {
40217
41009
  cancel?: (oEvent: Event) => void;
40218
41010
  }
40219
41011
 
41012
+ /**
41013
+ * Parameters of the TargetFilter#cancel event.
41014
+ */
40220
41015
  export interface TargetFilter$CancelEventParameters {}
40221
41016
 
41017
+ /**
41018
+ * Event object of the TargetFilter#cancel event.
41019
+ */
40222
41020
  export type TargetFilter$CancelEvent = Event<
40223
41021
  TargetFilter$CancelEventParameters,
40224
41022
  TargetFilter
40225
41023
  >;
40226
41024
 
41025
+ /**
41026
+ * Parameters of the TargetFilter#filterChange event.
41027
+ */
40227
41028
  export interface TargetFilter$FilterChangeEventParameters {}
40228
41029
 
41030
+ /**
41031
+ * Event object of the TargetFilter#filterChange event.
41032
+ */
40229
41033
  export type TargetFilter$FilterChangeEvent = Event<
40230
41034
  TargetFilter$FilterChangeEventParameters,
40231
41035
  TargetFilter
40232
41036
  >;
40233
41037
 
41038
+ /**
41039
+ * Parameters of the TargetFilter#search event.
41040
+ */
40234
41041
  export interface TargetFilter$SearchEventParameters {}
40235
41042
 
41043
+ /**
41044
+ * Event object of the TargetFilter#search event.
41045
+ */
40236
41046
  export type TargetFilter$SearchEvent = Event<
40237
41047
  TargetFilter$SearchEventParameters,
40238
41048
  TargetFilter
@@ -40429,7 +41239,11 @@ declare module "sap/suite/ui/commons/TargetFilterColumn" {
40429
41239
  oType?: any
40430
41240
  ): this;
40431
41241
  }
40432
-
41242
+ /**
41243
+ * Describes the settings that can be provided to the TargetFilterColumn constructor.
41244
+ *
41245
+ * @deprecated (since 1.34) - Deprecated.
41246
+ */
40433
41247
  export interface $TargetFilterColumnSettings extends $ElementSettings {
40434
41248
  /**
40435
41249
  * The binding path.
@@ -40586,7 +41400,11 @@ declare module "sap/suite/ui/commons/TargetFilterMeasureColumn" {
40586
41400
  oType?: any
40587
41401
  ): this;
40588
41402
  }
40589
-
41403
+ /**
41404
+ * Describes the settings that can be provided to the TargetFilterMeasureColumn constructor.
41405
+ *
41406
+ * @deprecated (since 1.34) - Deprecated.
41407
+ */
40590
41408
  export interface $TargetFilterMeasureColumnSettings extends $ElementSettings {
40591
41409
  /**
40592
41410
  * The binding path.
@@ -40870,7 +41688,11 @@ declare module "sap/suite/ui/commons/ThingCollection" {
40870
41688
  sWidth?: CSSSize
40871
41689
  ): this;
40872
41690
  }
40873
-
41691
+ /**
41692
+ * Describes the settings that can be provided to the ThingCollection constructor.
41693
+ *
41694
+ * @deprecated (since 1.32) - Deprecated. Object page should be used instead.
41695
+ */
40874
41696
  export interface $ThingCollectionSettings extends $ControlSettings {
40875
41697
  /**
40876
41698
  * The width of the control.
@@ -41150,7 +41972,11 @@ declare module "sap/suite/ui/commons/ThreePanelThingInspector" {
41150
41972
  sSidebarWidth?: CSSSize
41151
41973
  ): this;
41152
41974
  }
41153
-
41975
+ /**
41976
+ * Describes the settings that can be provided to the ThreePanelThingInspector constructor.
41977
+ *
41978
+ * @deprecated (since 1.32) - Deprecated. Object page should be used instead.
41979
+ */
41154
41980
  export interface $ThreePanelThingInspectorSettings
41155
41981
  extends $ThingInspectorSettings {
41156
41982
  /**
@@ -41424,7 +42250,11 @@ declare module "sap/suite/ui/commons/ThreePanelThingViewer" {
41424
42250
  sSidebarWidth?: CSSSize
41425
42251
  ): this;
41426
42252
  }
41427
-
42253
+ /**
42254
+ * Describes the settings that can be provided to the ThreePanelThingViewer constructor.
42255
+ *
42256
+ * @deprecated (since 1.32) - Deprecated. Object page should be used instead.
42257
+ */
41428
42258
  export interface $ThreePanelThingViewerSettings extends $ThingViewerSettings {
41429
42259
  /**
41430
42260
  * A URL of the source of an image known as key visual. This can be a company logo or other essential graphics.
@@ -41533,7 +42363,11 @@ declare module "sap/suite/ui/commons/TileContent" {
41533
42363
  */
41534
42364
  static getMetadata(): ElementMetadata;
41535
42365
  }
41536
-
42366
+ /**
42367
+ * Describes the settings that can be provided to the TileContent constructor.
42368
+ *
42369
+ * @deprecated (since 1.34) - this control is a mere wrapper for sap.m.TileContent.
42370
+ */
41537
42371
  export interface $TileContentSettings extends $TileContentSettings1 {}
41538
42372
  }
41539
42373
 
@@ -41748,7 +42582,11 @@ declare module "sap/suite/ui/commons/TileContent2X2" {
41748
42582
  sUnit?: string
41749
42583
  ): this;
41750
42584
  }
41751
-
42585
+ /**
42586
+ * Describes the settings that can be provided to the TileContent2X2 constructor.
42587
+ *
42588
+ * @deprecated (since 1.34) - Deprecated.
42589
+ */
41752
42590
  export interface $TileContent2X2Settings extends $ControlSettings {
41753
42591
  /**
41754
42592
  * The footer text of the tile.
@@ -44179,7 +45017,9 @@ declare module "sap/suite/ui/commons/Timeline" {
44179
45017
  sWidth?: CSSSize
44180
45018
  ): this;
44181
45019
  }
44182
-
45020
+ /**
45021
+ * Describes the settings that can be provided to the Timeline constructor.
45022
+ */
44183
45023
  export interface $TimelineSettings extends $ControlSettings {
44184
45024
  /**
44185
45025
  * Defines the alignment of timeline posts relative to the timeline axis. This option can be used for single-sided
@@ -44534,6 +45374,11 @@ declare module "sap/suite/ui/commons/Timeline" {
44534
45374
  ) => void;
44535
45375
  }
44536
45376
 
45377
+ /**
45378
+ * Parameters of the Timeline#addPost event.
45379
+ *
45380
+ * @deprecated (since 1.46.0) - Use the Group Feed Component instead.
45381
+ */
44537
45382
  export interface Timeline$AddPostEventParameters {
44538
45383
  /**
44539
45384
  * Post message text.
@@ -44541,25 +45386,45 @@ declare module "sap/suite/ui/commons/Timeline" {
44541
45386
  value?: string;
44542
45387
  }
44543
45388
 
45389
+ /**
45390
+ * Event object of the Timeline#addPost event.
45391
+ *
45392
+ * @deprecated (since 1.46.0) - Use the Group Feed Component instead.
45393
+ */
44544
45394
  export type Timeline$AddPostEvent = Event<
44545
45395
  Timeline$AddPostEventParameters,
44546
45396
  Timeline
44547
45397
  >;
44548
45398
 
45399
+ /**
45400
+ * Parameters of the Timeline#customMessageClosed event.
45401
+ */
44549
45402
  export interface Timeline$CustomMessageClosedEventParameters {}
44550
45403
 
45404
+ /**
45405
+ * Event object of the Timeline#customMessageClosed event.
45406
+ */
44551
45407
  export type Timeline$CustomMessageClosedEvent = Event<
44552
45408
  Timeline$CustomMessageClosedEventParameters,
44553
45409
  Timeline
44554
45410
  >;
44555
45411
 
45412
+ /**
45413
+ * Parameters of the Timeline#filterOpen event.
45414
+ */
44556
45415
  export interface Timeline$FilterOpenEventParameters {}
44557
45416
 
45417
+ /**
45418
+ * Event object of the Timeline#filterOpen event.
45419
+ */
44558
45420
  export type Timeline$FilterOpenEvent = Event<
44559
45421
  Timeline$FilterOpenEventParameters,
44560
45422
  Timeline
44561
45423
  >;
44562
45424
 
45425
+ /**
45426
+ * Parameters of the Timeline#filterSelectionChange event.
45427
+ */
44563
45428
  export interface Timeline$FilterSelectionChangeEventParameters {
44564
45429
  /**
44565
45430
  * Type of filter that has changed, can be an item filter or a time range filter.
@@ -44592,18 +45457,30 @@ declare module "sap/suite/ui/commons/Timeline" {
44592
45457
  clear?: boolean;
44593
45458
  }
44594
45459
 
45460
+ /**
45461
+ * Event object of the Timeline#filterSelectionChange event.
45462
+ */
44595
45463
  export type Timeline$FilterSelectionChangeEvent = Event<
44596
45464
  Timeline$FilterSelectionChangeEventParameters,
44597
45465
  Timeline
44598
45466
  >;
44599
45467
 
45468
+ /**
45469
+ * Parameters of the Timeline#grow event.
45470
+ */
44600
45471
  export interface Timeline$GrowEventParameters {}
44601
45472
 
45473
+ /**
45474
+ * Event object of the Timeline#grow event.
45475
+ */
44602
45476
  export type Timeline$GrowEvent = Event<
44603
45477
  Timeline$GrowEventParameters,
44604
45478
  Timeline
44605
45479
  >;
44606
45480
 
45481
+ /**
45482
+ * Parameters of the Timeline#itemFiltering event.
45483
+ */
44607
45484
  export interface Timeline$ItemFilteringEventParameters {
44608
45485
  /**
44609
45486
  * Timeline post that is currently being filtered.
@@ -44633,11 +45510,17 @@ declare module "sap/suite/ui/commons/Timeline" {
44633
45510
  searchTerm?: string;
44634
45511
  }
44635
45512
 
45513
+ /**
45514
+ * Event object of the Timeline#itemFiltering event.
45515
+ */
44636
45516
  export type Timeline$ItemFilteringEvent = Event<
44637
45517
  Timeline$ItemFilteringEventParameters,
44638
45518
  Timeline
44639
45519
  >;
44640
45520
 
45521
+ /**
45522
+ * Parameters of the Timeline#select event.
45523
+ */
44641
45524
  export interface Timeline$SelectEventParameters {
44642
45525
  /**
44643
45526
  * The timeline post that is selected.
@@ -44655,11 +45538,19 @@ declare module "sap/suite/ui/commons/Timeline" {
44655
45538
  userAction?: boolean;
44656
45539
  }
44657
45540
 
45541
+ /**
45542
+ * Event object of the Timeline#select event.
45543
+ */
44658
45544
  export type Timeline$SelectEvent = Event<
44659
45545
  Timeline$SelectEventParameters,
44660
45546
  Timeline
44661
45547
  >;
44662
45548
 
45549
+ /**
45550
+ * Parameters of the Timeline#suggest event.
45551
+ *
45552
+ * @deprecated (since 1.46.0) - Replaced by {@link sap.collaboration.components.feed.Component}.
45553
+ */
44663
45554
  export interface Timeline$SuggestEventParameters {
44664
45555
  /**
44665
45556
  * The text string that has been typed into the search field.
@@ -44667,11 +45558,21 @@ declare module "sap/suite/ui/commons/Timeline" {
44667
45558
  suggestValue?: string;
44668
45559
  }
44669
45560
 
45561
+ /**
45562
+ * Event object of the Timeline#suggest event.
45563
+ *
45564
+ * @deprecated (since 1.46.0) - Replaced by {@link sap.collaboration.components.feed.Component}.
45565
+ */
44670
45566
  export type Timeline$SuggestEvent = Event<
44671
45567
  Timeline$SuggestEventParameters,
44672
45568
  Timeline
44673
45569
  >;
44674
45570
 
45571
+ /**
45572
+ * Parameters of the Timeline#suggestionItemSelected event.
45573
+ *
45574
+ * @deprecated (since 1.46.0) - Replaced by {@link sap.collaboration.components.feed.Component}.
45575
+ */
44675
45576
  export interface Timeline$SuggestionItemSelectedEventParameters {
44676
45577
  /**
44677
45578
  * The item selected in the suggestions popup.
@@ -44679,6 +45580,11 @@ declare module "sap/suite/ui/commons/Timeline" {
44679
45580
  selectedItem?: Item;
44680
45581
  }
44681
45582
 
45583
+ /**
45584
+ * Event object of the Timeline#suggestionItemSelected event.
45585
+ *
45586
+ * @deprecated (since 1.46.0) - Replaced by {@link sap.collaboration.components.feed.Component}.
45587
+ */
44682
45588
  export type Timeline$SuggestionItemSelectedEvent = Event<
44683
45589
  Timeline$SuggestionItemSelectedEventParameters,
44684
45590
  Timeline
@@ -44809,7 +45715,9 @@ declare module "sap/suite/ui/commons/TimelineFilterListItem" {
44809
45715
  sText?: string
44810
45716
  ): this;
44811
45717
  }
44812
-
45718
+ /**
45719
+ * Describes the settings that can be provided to the TimelineFilterListItem constructor.
45720
+ */
44813
45721
  export interface $TimelineFilterListItemSettings extends $ControlSettings {
44814
45722
  /**
44815
45723
  * A key for a filter criterion. Each filter criterion must have a unique key.
@@ -46327,7 +47235,9 @@ declare module "sap/suite/ui/commons/TimelineItem" {
46327
47235
  sUserPicture?: URI
46328
47236
  ): this;
46329
47237
  }
46330
-
47238
+ /**
47239
+ * Describes the settings that can be provided to the TimelineItem constructor.
47240
+ */
46331
47241
  export interface $TimelineItemSettings extends $ControlSettings {
46332
47242
  /**
46333
47243
  * Date and time value of the timeline post. This value must be in one of the following formats:
@@ -46545,6 +47455,9 @@ declare module "sap/suite/ui/commons/TimelineItem" {
46545
47455
  ) => void;
46546
47456
  }
46547
47457
 
47458
+ /**
47459
+ * Parameters of the TimelineItem#customActionClicked event.
47460
+ */
46548
47461
  export interface TimelineItem$CustomActionClickedEventParameters {
46549
47462
  /**
46550
47463
  * Value of the custom action.
@@ -46562,25 +47475,43 @@ declare module "sap/suite/ui/commons/TimelineItem" {
46562
47475
  linkObj?: Link;
46563
47476
  }
46564
47477
 
47478
+ /**
47479
+ * Event object of the TimelineItem#customActionClicked event.
47480
+ */
46565
47481
  export type TimelineItem$CustomActionClickedEvent = Event<
46566
47482
  TimelineItem$CustomActionClickedEventParameters,
46567
47483
  TimelineItem
46568
47484
  >;
46569
47485
 
47486
+ /**
47487
+ * Parameters of the TimelineItem#press event.
47488
+ */
46570
47489
  export interface TimelineItem$PressEventParameters {}
46571
47490
 
47491
+ /**
47492
+ * Event object of the TimelineItem#press event.
47493
+ */
46572
47494
  export type TimelineItem$PressEvent = Event<
46573
47495
  TimelineItem$PressEventParameters,
46574
47496
  TimelineItem
46575
47497
  >;
46576
47498
 
47499
+ /**
47500
+ * Parameters of the TimelineItem#replyListOpen event.
47501
+ */
46577
47502
  export interface TimelineItem$ReplyListOpenEventParameters {}
46578
47503
 
47504
+ /**
47505
+ * Event object of the TimelineItem#replyListOpen event.
47506
+ */
46579
47507
  export type TimelineItem$ReplyListOpenEvent = Event<
46580
47508
  TimelineItem$ReplyListOpenEventParameters,
46581
47509
  TimelineItem
46582
47510
  >;
46583
47511
 
47512
+ /**
47513
+ * Parameters of the TimelineItem#replyPost event.
47514
+ */
46584
47515
  export interface TimelineItem$ReplyPostEventParameters {
46585
47516
  /**
46586
47517
  * Content of the reply to the post.
@@ -46588,18 +47519,32 @@ declare module "sap/suite/ui/commons/TimelineItem" {
46588
47519
  value?: string;
46589
47520
  }
46590
47521
 
47522
+ /**
47523
+ * Event object of the TimelineItem#replyPost event.
47524
+ */
46591
47525
  export type TimelineItem$ReplyPostEvent = Event<
46592
47526
  TimelineItem$ReplyPostEventParameters,
46593
47527
  TimelineItem
46594
47528
  >;
46595
47529
 
47530
+ /**
47531
+ * Parameters of the TimelineItem#select event.
47532
+ */
46596
47533
  export interface TimelineItem$SelectEventParameters {}
46597
47534
 
47535
+ /**
47536
+ * Event object of the TimelineItem#select event.
47537
+ */
46598
47538
  export type TimelineItem$SelectEvent = Event<
46599
47539
  TimelineItem$SelectEventParameters,
46600
47540
  TimelineItem
46601
47541
  >;
46602
47542
 
47543
+ /**
47544
+ * Parameters of the TimelineItem#suggest event.
47545
+ *
47546
+ * @deprecated (since 1.46.0) - Use the Group Feed Component instead.
47547
+ */
46603
47548
  export interface TimelineItem$SuggestEventParameters {
46604
47549
  /**
46605
47550
  * The current value that has been typed into the search field.
@@ -46607,11 +47552,21 @@ declare module "sap/suite/ui/commons/TimelineItem" {
46607
47552
  suggestValue?: string;
46608
47553
  }
46609
47554
 
47555
+ /**
47556
+ * Event object of the TimelineItem#suggest event.
47557
+ *
47558
+ * @deprecated (since 1.46.0) - Use the Group Feed Component instead.
47559
+ */
46610
47560
  export type TimelineItem$SuggestEvent = Event<
46611
47561
  TimelineItem$SuggestEventParameters,
46612
47562
  TimelineItem
46613
47563
  >;
46614
47564
 
47565
+ /**
47566
+ * Parameters of the TimelineItem#suggestionItemSelected event.
47567
+ *
47568
+ * @deprecated (since 1.46.0) - Use the Group Feed Component instead.
47569
+ */
46615
47570
  export interface TimelineItem$SuggestionItemSelectedEventParameters {
46616
47571
  /**
46617
47572
  * The post selected in the suggestions popup.
@@ -46619,11 +47574,19 @@ declare module "sap/suite/ui/commons/TimelineItem" {
46619
47574
  selectedItem?: Item;
46620
47575
  }
46621
47576
 
47577
+ /**
47578
+ * Event object of the TimelineItem#suggestionItemSelected event.
47579
+ *
47580
+ * @deprecated (since 1.46.0) - Use the Group Feed Component instead.
47581
+ */
46622
47582
  export type TimelineItem$SuggestionItemSelectedEvent = Event<
46623
47583
  TimelineItem$SuggestionItemSelectedEventParameters,
46624
47584
  TimelineItem
46625
47585
  >;
46626
47586
 
47587
+ /**
47588
+ * Parameters of the TimelineItem#userNameClicked event.
47589
+ */
46627
47590
  export interface TimelineItem$UserNameClickedEventParameters {
46628
47591
  /**
46629
47592
  * A clickable UI element representing the user name.
@@ -46631,6 +47594,9 @@ declare module "sap/suite/ui/commons/TimelineItem" {
46631
47594
  uiElement?: Control;
46632
47595
  }
46633
47596
 
47597
+ /**
47598
+ * Event object of the TimelineItem#userNameClicked event.
47599
+ */
46634
47600
  export type TimelineItem$UserNameClickedEvent = Event<
46635
47601
  TimelineItem$UserNameClickedEventParameters,
46636
47602
  TimelineItem
@@ -46930,7 +47896,11 @@ declare module "sap/suite/ui/commons/UnifiedThingGroup" {
46930
47896
  sTitle?: string
46931
47897
  ): this;
46932
47898
  }
46933
-
47899
+ /**
47900
+ * Describes the settings that can be provided to the UnifiedThingGroup constructor.
47901
+ *
47902
+ * @deprecated (since 1.32) - Deprecated. Object page should be used instead.
47903
+ */
46934
47904
  export interface $UnifiedThingGroupSettings extends $ControlSettings {
46935
47905
  /**
46936
47906
  * The title of the group.
@@ -48308,7 +49278,11 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
48308
49278
  bTransactionsVisible?: boolean
48309
49279
  ): this;
48310
49280
  }
48311
-
49281
+ /**
49282
+ * Describes the settings that can be provided to the UnifiedThingInspector constructor.
49283
+ *
49284
+ * @deprecated (since 1.32) - Deprecated. Object page should be used instead.
49285
+ */
48312
49286
  export interface $UnifiedThingInspectorSettings extends $ControlSettings {
48313
49287
  /**
48314
49288
  * The height of the control.
@@ -48439,6 +49413,9 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
48439
49413
  afterNavigate?: (oEvent: UnifiedThingInspector$AfterNavigateEvent) => void;
48440
49414
  }
48441
49415
 
49416
+ /**
49417
+ * Parameters of the UnifiedThingInspector#actionsButtonPress event.
49418
+ */
48442
49419
  export interface UnifiedThingInspector$ActionsButtonPressEventParameters {
48443
49420
  /**
48444
49421
  * The object that initiated the event.
@@ -48446,11 +49423,17 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
48446
49423
  caller?: object;
48447
49424
  }
48448
49425
 
49426
+ /**
49427
+ * Event object of the UnifiedThingInspector#actionsButtonPress event.
49428
+ */
48449
49429
  export type UnifiedThingInspector$ActionsButtonPressEvent = Event<
48450
49430
  UnifiedThingInspector$ActionsButtonPressEventParameters,
48451
49431
  UnifiedThingInspector
48452
49432
  >;
48453
49433
 
49434
+ /**
49435
+ * Parameters of the UnifiedThingInspector#afterNavigate event.
49436
+ */
48454
49437
  export interface UnifiedThingInspector$AfterNavigateEventParameters {
48455
49438
  /**
48456
49439
  * The page that had been shown before navigation.
@@ -48504,18 +49487,30 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
48504
49487
  direction?: string;
48505
49488
  }
48506
49489
 
49490
+ /**
49491
+ * Event object of the UnifiedThingInspector#afterNavigate event.
49492
+ */
48507
49493
  export type UnifiedThingInspector$AfterNavigateEvent = Event<
48508
49494
  UnifiedThingInspector$AfterNavigateEventParameters,
48509
49495
  UnifiedThingInspector
48510
49496
  >;
48511
49497
 
49498
+ /**
49499
+ * Parameters of the UnifiedThingInspector#backAction event.
49500
+ */
48512
49501
  export interface UnifiedThingInspector$BackActionEventParameters {}
48513
49502
 
49503
+ /**
49504
+ * Event object of the UnifiedThingInspector#backAction event.
49505
+ */
48514
49506
  export type UnifiedThingInspector$BackActionEvent = Event<
48515
49507
  UnifiedThingInspector$BackActionEventParameters,
48516
49508
  UnifiedThingInspector
48517
49509
  >;
48518
49510
 
49511
+ /**
49512
+ * Parameters of the UnifiedThingInspector#configurationButtonPress event.
49513
+ */
48519
49514
  export interface UnifiedThingInspector$ConfigurationButtonPressEventParameters {
48520
49515
  /**
48521
49516
  * The object that initiated the event.
@@ -48523,11 +49518,17 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
48523
49518
  caller?: object;
48524
49519
  }
48525
49520
 
49521
+ /**
49522
+ * Event object of the UnifiedThingInspector#configurationButtonPress event.
49523
+ */
48526
49524
  export type UnifiedThingInspector$ConfigurationButtonPressEvent = Event<
48527
49525
  UnifiedThingInspector$ConfigurationButtonPressEventParameters,
48528
49526
  UnifiedThingInspector
48529
49527
  >;
48530
49528
 
49529
+ /**
49530
+ * Parameters of the UnifiedThingInspector#navigate event.
49531
+ */
48531
49532
  export interface UnifiedThingInspector$NavigateEventParameters {
48532
49533
  /**
48533
49534
  * The page that was shown before the current navigation.
@@ -48581,11 +49582,17 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
48581
49582
  direction?: string;
48582
49583
  }
48583
49584
 
49585
+ /**
49586
+ * Event object of the UnifiedThingInspector#navigate event.
49587
+ */
48584
49588
  export type UnifiedThingInspector$NavigateEvent = Event<
48585
49589
  UnifiedThingInspector$NavigateEventParameters,
48586
49590
  UnifiedThingInspector
48587
49591
  >;
48588
49592
 
49593
+ /**
49594
+ * Parameters of the UnifiedThingInspector#transactionsButtonPress event.
49595
+ */
48589
49596
  export interface UnifiedThingInspector$TransactionsButtonPressEventParameters {
48590
49597
  /**
48591
49598
  * The object that initiated the event.
@@ -48593,6 +49600,9 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
48593
49600
  caller?: object;
48594
49601
  }
48595
49602
 
49603
+ /**
49604
+ * Event object of the UnifiedThingInspector#transactionsButtonPress event.
49605
+ */
48596
49606
  export type UnifiedThingInspector$TransactionsButtonPressEvent = Event<
48597
49607
  UnifiedThingInspector$TransactionsButtonPressEventParameters,
48598
49608
  UnifiedThingInspector
@@ -49084,7 +50094,11 @@ declare module "sap/suite/ui/commons/VerticalNavigationBar" {
49084
50094
  */
49085
50095
  static getMetadata(): ElementMetadata;
49086
50096
  }
49087
-
50097
+ /**
50098
+ * Describes the settings that can be provided to the VerticalNavigationBar constructor.
50099
+ *
50100
+ * @deprecated (since 1.32) - Deprecated. sap.uxap.ObjectPageLayout should be used instead.
50101
+ */
49088
50102
  export interface $VerticalNavigationBarSettings
49089
50103
  extends $NavigationBarSettings {}
49090
50104
  }
@@ -49670,7 +50684,11 @@ declare module "sap/suite/ui/commons/ViewRepeater" {
49670
50684
  bShowViews?: boolean
49671
50685
  ): this;
49672
50686
  }
49673
-
50687
+ /**
50688
+ * Describes the settings that can be provided to the ViewRepeater constructor.
50689
+ *
50690
+ * @deprecated (since 1.32) - Deprecated. Standard Fiori technology should be used.
50691
+ */
49674
50692
  export interface $ViewRepeaterSettings extends $RowRepeaterSettings {
49675
50693
  /**
49676
50694
  * The minimal width of the tile for the current view. Only applicable if "responsive" property is set to
@@ -49744,6 +50762,9 @@ declare module "sap/suite/ui/commons/ViewRepeater" {
49744
50762
  changeView?: (oEvent: ViewRepeater$ChangeViewEvent) => void;
49745
50763
  }
49746
50764
 
50765
+ /**
50766
+ * Parameters of the ViewRepeater#changeView event.
50767
+ */
49747
50768
  export interface ViewRepeater$ChangeViewEventParameters {
49748
50769
  /**
49749
50770
  * Contains an index of the previous view in the Views aggregation.
@@ -49771,11 +50792,17 @@ declare module "sap/suite/ui/commons/ViewRepeater" {
49771
50792
  page?: int;
49772
50793
  }
49773
50794
 
50795
+ /**
50796
+ * Event object of the ViewRepeater#changeView event.
50797
+ */
49774
50798
  export type ViewRepeater$ChangeViewEvent = Event<
49775
50799
  ViewRepeater$ChangeViewEventParameters,
49776
50800
  ViewRepeater
49777
50801
  >;
49778
50802
 
50803
+ /**
50804
+ * Parameters of the ViewRepeater#search event.
50805
+ */
49779
50806
  export interface ViewRepeater$SearchEventParameters {
49780
50807
  /**
49781
50808
  * The search query.
@@ -49783,6 +50810,9 @@ declare module "sap/suite/ui/commons/ViewRepeater" {
49783
50810
  query?: string;
49784
50811
  }
49785
50812
 
50813
+ /**
50814
+ * Event object of the ViewRepeater#search event.
50815
+ */
49786
50816
  export type ViewRepeater$SearchEvent = Event<
49787
50817
  ViewRepeater$SearchEventParameters,
49788
50818
  ViewRepeater