@sapui5/ts-types 1.120.8 → 1.121.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +50 -18
  4. package/types/sap.ca.ui.d.ts +1114 -546
  5. package/types/sap.chart.d.ts +17 -1
  6. package/types/sap.collaboration.d.ts +185 -64
  7. package/types/sap.esh.search.ui.d.ts +2 -1960
  8. package/types/sap.f.d.ts +124 -45
  9. package/types/sap.fe.core.d.ts +212 -191
  10. package/types/sap.fe.macros.d.ts +371 -531
  11. package/types/sap.fe.navigation.d.ts +59 -26
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.managecache.d.ts +7 -0
  14. package/types/sap.fe.templates.d.ts +16 -11
  15. package/types/sap.fe.test.d.ts +333 -33
  16. package/types/sap.fe.tools.d.ts +1 -1
  17. package/types/sap.feedback.ui.d.ts +1 -1
  18. package/types/sap.gantt.d.ts +3947 -1754
  19. package/types/sap.insights.d.ts +162 -43
  20. package/types/sap.m.d.ts +2023 -289
  21. package/types/sap.makit.d.ts +11 -1
  22. package/types/sap.me.d.ts +7 -1
  23. package/types/sap.ndc.d.ts +1 -1
  24. package/types/sap.ovp.d.ts +9 -7
  25. package/types/sap.rules.ui.d.ts +134 -75
  26. package/types/sap.sac.df.d.ts +272 -49
  27. package/types/sap.suite.ui.commons.d.ts +4231 -1008
  28. package/types/sap.suite.ui.generic.template.d.ts +38 -48
  29. package/types/sap.suite.ui.microchart.d.ts +66 -1
  30. package/types/sap.tnt.d.ts +601 -116
  31. package/types/sap.ui.codeeditor.d.ts +10 -6
  32. package/types/sap.ui.commons.d.ts +86 -8
  33. package/types/sap.ui.comp.d.ts +259 -110
  34. package/types/sap.ui.core.d.ts +471 -186
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +16 -3
  37. package/types/sap.ui.fl.d.ts +91 -68
  38. package/types/sap.ui.generic.app.d.ts +250 -193
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +51 -4
  41. package/types/sap.ui.layout.d.ts +221 -26
  42. package/types/sap.ui.mdc.d.ts +1516 -787
  43. package/types/sap.ui.richtexteditor.d.ts +4 -1
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +3 -1
  46. package/types/sap.ui.support.d.ts +28 -4
  47. package/types/sap.ui.table.d.ts +65 -11
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +157 -54
  50. package/types/sap.ui.ux3.d.ts +30 -12
  51. package/types/sap.ui.vbm.d.ts +5300 -2517
  52. package/types/sap.ui.vk.d.ts +2742 -836
  53. package/types/sap.ui.vtm.d.ts +685 -215
  54. package/types/sap.ui.webc.common.d.ts +1 -1
  55. package/types/sap.ui.webc.fiori.d.ts +49 -1
  56. package/types/sap.ui.webc.main.d.ts +144 -9
  57. package/types/sap.uiext.inbox.d.ts +1 -1
  58. package/types/sap.ushell.d.ts +977 -535
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +55 -5
  61. package/types/sap.viz.d.ts +86 -1
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +79 -18
  64. package/types/sap.zen.crosstab.d.ts +83 -15
  65. package/types/sap.zen.dsh.d.ts +194 -143
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.7
1
+ // For Library Version: 1.121.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -659,7 +659,7 @@ declare namespace sap {
659
659
  /**
660
660
  * Can be used to add the standard footer bar for detail pages to this canvas page. It also allows to pass
661
661
  * an array of buttons to be added to the footer. Note that the usage of the standard footer bar must have
662
- * been switched on in the settings of the page
662
+ * been switched on in the settings of the page.
663
663
  */
664
664
  addFooterBarToPage(
665
665
  /**
@@ -704,10 +704,13 @@ declare namespace sap {
704
704
  fnFunction: Function
705
705
  ): void;
706
706
  /**
707
- * Get the Flexible Column Layout Action Buttons(Fullscreen, Exit Fullscreen and Close).
707
+ * Get the Flexible Column Layout Action Buttons (Fullscreen, Exit Fullscreen and Close). Note that the
708
+ * usage of the Flexible Column Layout Action Buttons must have been switched on in the settings of the
709
+ * page.
708
710
  *
709
711
  *
710
- * @returns Flexible Column Layout Action Buttons
712
+ * @returns Flexible Column Layout Action Buttons (resp. `undefined` when no FCL Action Buttons should be
713
+ * shown on this page)
711
714
  */
712
715
  getFlexibleColumnLayoutActionButtons(): object;
713
716
  /**
@@ -2679,25 +2682,6 @@ declare namespace sap {
2679
2682
  * @returns the view id
2680
2683
  */
2681
2684
  getViewId(): string;
2682
- /**
2683
- * Hides Section and/or SubSection's title for embedded components and custom section(s), if the Section
2684
- * and/or SubSection's title matches with the inner Control's title. In case the control's resolved title
2685
- * is provided and is same as section's title, then the section's title is also automatically hidden. It's
2686
- * meant to be invoked from the onSubSectionEnteredExtension ExtensionAPI.
2687
- *
2688
- * @experimental
2689
- */
2690
- hideDuplicateSectionOrSubSectionTitle(
2691
- /**
2692
- * the ID identifying the Sub-Section to which you want to hide the title
2693
- */
2694
- sSubSectionId: string,
2695
- /**
2696
- * Optional parameter which represents the resolved title of the inner conrol defined in the Resue Component
2697
- * or Custom Section/SubSection
2698
- */
2699
- sTitle?: string
2700
- ): void;
2701
2685
  /**
2702
2686
  * Invokes multiple time the action with the given name and submits changes to the back-end.
2703
2687
  *
@@ -2844,14 +2828,38 @@ declare namespace sap {
2844
2828
  }
2845
2829
  ): Promise<any>;
2846
2830
  /**
2847
- * Provide an option for showing an own message in the message bar above an OP table
2831
+ * Defines a control to be the **title owner** for its subsection. As the title owners of standard subsections
2832
+ * are determined automatically it is recommended to use this function for custom subsections and embedded
2833
+ * components only. The title owner should be a control possessing properties header and headerLevel
2834
+ * and headerStyle (like {@link sap.ui.comp.smarttable.SmartTable} and {@link sap.ui.comp.smartchart.SmartChart})
2835
+ * or text and level and titleStyle (like {@link sap.m.Title}). The framework will
2836
+ * adapt the values of these properties to be aligned with the title which is shown in the anchor bar (or
2837
+ * icon tab bar) for the subsection. Moreover, the title of the subsection (and if applicable also of the
2838
+ * section) will be hidden in order to prevent redundant titles if the subsection possesses a title owner.
2839
+ * Note that this method should only be used in case that there exists one single suitable control which
2840
+ * represents the complete content of the subsection or embedded component.
2841
+ */
2842
+ setAsTitleOwner(
2843
+ /**
2844
+ * title owner of the subsection containing this control. The control must possess properties header
2845
+ * and headerLevel and headerStyle or text and level and titleStyle.
2846
+ * As a special case you can also pass a subsection itself which would remove a potential title owner from
2847
+ * this subsection.
2848
+ */
2849
+ the: sap.ui.core.Control
2850
+ ): void;
2851
+ /**
2852
+ * Provide an option for showing an own message in the message bar above an OP table or page header.
2853
+ *
2854
+ * If you want to display message on page header then you should pass `oMessage` only keeping all other
2855
+ * parameter as empty Note - Message bar on Page header will be shown only in display mode for dynamic header
2848
2856
  */
2849
2857
  setCustomMessage(
2850
2858
  /**
2851
2859
  * custom message along with type to set on table. If this parameter is faulty an existing message will
2852
2860
  * be removed.
2853
2861
  */
2854
- oMessage: {
2862
+ oMessage?: {
2855
2863
  /**
2856
2864
  * message string to display
2857
2865
  */
@@ -2863,30 +2871,9 @@ declare namespace sap {
2863
2871
  type: string;
2864
2872
  },
2865
2873
  /**
2866
- * Id of the table for which message should be set
2867
- */
2868
- sSmartTableId: string,
2869
- /**
2870
- * If switching between different table views is enabled, this parameter can be used to identify the views
2871
- * which are affected by this call. Faulty values indicate that all views should be affected. Otherwise
2872
- * the value should either be one string or an array of strings identifying the affected variant items.
2873
- */
2874
- vTabKey?: any[] | string,
2875
- /**
2876
- * A function that is called when the user closes the message bar. Note that the messages for all tabs specified
2877
- * via `vTabKey` will be considered to be obsolete when the user closes the message bar while one of them
2878
- * is active.
2879
- */
2880
- onClose?: Function
2881
- ): void;
2882
- /**
2883
- * Provide an option for showing an own message in the message bar above an OP table
2884
- */
2885
- setCustomMessage(
2886
- /**
2887
- * Id of the table for which message should be set
2874
+ * Id of the table for which message should be set.
2888
2875
  */
2889
- sSmartTableId: string,
2876
+ sSmartTableId?: string,
2890
2877
  /**
2891
2878
  * If switching between different table views is enabled, this parameter can be used to identify the views
2892
2879
  * which are affected by this call. Faulty values indicate that all views should be affected. Otherwise
@@ -3376,6 +3363,9 @@ declare namespace sap {
3376
3363
 
3377
3364
  /**
3378
3365
  * A static enumeration type which indicates the mode of targeted page while using navigateInternal extensionAPI
3366
+ *
3367
+ * This enum is part of the 'sap/suite/ui/generic/template/library' module export and must be accessed by
3368
+ * the property 'displayMode'.
3379
3369
  */
3380
3370
  enum displayMode {
3381
3371
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.8
1
+ // For Library Version: 1.121.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1912,6 +1912,17 @@ declare namespace sap {
1912
1912
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1913
1913
  | `{${string}}`;
1914
1914
 
1915
+ /**
1916
+ * If set to true, the percentage symbol(%) is displayed. If set to false, the percentage symbol(%) is not
1917
+ * displayed.
1918
+ *
1919
+ * @since 1.121.0
1920
+ */
1921
+ showPercentageSymbol?:
1922
+ | boolean
1923
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1924
+ | `{${string}}`;
1925
+
1915
1926
  /**
1916
1927
  * Controls or IDs that label this control. Can be used by screen reader software.
1917
1928
  *
@@ -12278,6 +12289,19 @@ declare namespace sap {
12278
12289
  * @returns Value of property `percentage`
12279
12290
  */
12280
12291
  getPercentage(): float;
12292
+ /**
12293
+ * Gets current value of property {@link #getShowPercentageSymbol showPercentageSymbol}.
12294
+ *
12295
+ * If set to true, the percentage symbol(%) is displayed. If set to false, the percentage symbol(%) is not
12296
+ * displayed.
12297
+ *
12298
+ * Default value is `true`.
12299
+ *
12300
+ * @since 1.121.0
12301
+ *
12302
+ * @returns Value of property `showPercentageSymbol`
12303
+ */
12304
+ getShowPercentageSymbol(): boolean;
12281
12305
  /**
12282
12306
  * Gets current value of property {@link #getSize size}.
12283
12307
  *
@@ -12428,6 +12452,26 @@ declare namespace sap {
12428
12452
  */
12429
12453
  fPercentage?: float
12430
12454
  ): this;
12455
+ /**
12456
+ * Sets a new value for property {@link #getShowPercentageSymbol showPercentageSymbol}.
12457
+ *
12458
+ * If set to true, the percentage symbol(%) is displayed. If set to false, the percentage symbol(%) is not
12459
+ * displayed.
12460
+ *
12461
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12462
+ *
12463
+ * Default value is `true`.
12464
+ *
12465
+ * @since 1.121.0
12466
+ *
12467
+ * @returns Reference to `this` in order to allow method chaining
12468
+ */
12469
+ setShowPercentageSymbol(
12470
+ /**
12471
+ * New value for property `showPercentageSymbol`
12472
+ */
12473
+ bShowPercentageSymbol?: boolean
12474
+ ): this;
12431
12475
  /**
12432
12476
  * Sets a new value for property {@link #getSize size}.
12433
12477
  *
@@ -13192,6 +13236,9 @@ declare namespace sap {
13192
13236
  /**
13193
13237
  * Enum of available views for the area micro chart concerning the position of the labels.
13194
13238
  *
13239
+ * This enum is part of the 'sap/suite/ui/microchart/library' module export and must be accessed by the
13240
+ * property 'AreaMicroChartViewType'.
13241
+ *
13195
13242
  * @since 1.34
13196
13243
  */
13197
13244
  enum AreaMicroChartViewType {
@@ -13208,6 +13255,9 @@ declare namespace sap {
13208
13255
  * Defines if the horizontal bar represents a current value only or if it represents the delta between a
13209
13256
  * current value and a threshold value.
13210
13257
  *
13258
+ * This enum is part of the 'sap/suite/ui/microchart/library' module export and must be accessed by the
13259
+ * property 'BulletMicroChartModeType'.
13260
+ *
13211
13261
  * @since 1.34
13212
13262
  */
13213
13263
  enum BulletMicroChartModeType {
@@ -13223,6 +13273,9 @@ declare namespace sap {
13223
13273
  /**
13224
13274
  * Lists the available theme-specific background colors.
13225
13275
  *
13276
+ * This enum is part of the 'sap/suite/ui/microchart/library' module export and must be accessed by the
13277
+ * property 'CommonBackgroundType'.
13278
+ *
13226
13279
  * @since 1.34
13227
13280
  */
13228
13281
  enum CommonBackgroundType {
@@ -13266,6 +13319,9 @@ declare namespace sap {
13266
13319
  /**
13267
13320
  * Lists the views of the comparison micro chart concerning the position of titles and labels.
13268
13321
  *
13322
+ * This enum is part of the 'sap/suite/ui/microchart/library' module export and must be accessed by the
13323
+ * property 'ComparisonMicroChartViewType'.
13324
+ *
13269
13325
  * @since 1.34
13270
13326
  */
13271
13327
  enum ComparisonMicroChartViewType {
@@ -13286,6 +13342,9 @@ declare namespace sap {
13286
13342
  /**
13287
13343
  * Lists the views of the delta micro chart concerning the position of titles.
13288
13344
  *
13345
+ * This enum is part of the 'sap/suite/ui/microchart/library' module export and must be accessed by the
13346
+ * property 'DeltaMicroChartViewType'.
13347
+ *
13289
13348
  * @since 1.61
13290
13349
  */
13291
13350
  enum DeltaMicroChartViewType {
@@ -13306,6 +13365,9 @@ declare namespace sap {
13306
13365
  /**
13307
13366
  * Alignment type for the microchart content.
13308
13367
  *
13368
+ * This enum is part of the 'sap/suite/ui/microchart/library' module export and must be accessed by the
13369
+ * property 'HorizontalAlignmentType'.
13370
+ *
13309
13371
  * @since 1.62
13310
13372
  */
13311
13373
  enum HorizontalAlignmentType {
@@ -13325,6 +13387,9 @@ declare namespace sap {
13325
13387
  /**
13326
13388
  * Type of the microchart line.
13327
13389
  *
13390
+ * This enum is part of the 'sap/suite/ui/microchart/library' module export and must be accessed by the
13391
+ * property 'LineType'.
13392
+ *
13328
13393
  * @since 1.60
13329
13394
  */
13330
13395
  enum LineType {