@sapui5/types 1.116.0 → 1.117.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 (64) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +114 -30
  5. package/types/sap.chart.d.ts +29 -8
  6. package/types/sap.collaboration.d.ts +5 -2
  7. package/types/sap.esh.search.ui.d.ts +9 -3
  8. package/types/sap.f.d.ts +130 -36
  9. package/types/sap.fe.core.d.ts +21 -11
  10. package/types/sap.fe.macros.d.ts +160 -9
  11. package/types/sap.fe.placeholder.d.ts +1 -1
  12. package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
  13. package/types/sap.fe.test.d.ts +1 -1
  14. package/types/sap.fe.tools.d.ts +1 -1
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +282 -1118
  17. package/types/sap.insights.d.ts +248 -2
  18. package/types/sap.landvisz.d.ts +53 -14
  19. package/types/sap.m.d.ts +1793 -403
  20. package/types/sap.makit.d.ts +22 -7
  21. package/types/sap.me.d.ts +33 -9
  22. package/types/sap.ndc.d.ts +20 -15
  23. package/types/sap.ovp.d.ts +7 -97
  24. package/types/sap.rules.ui.d.ts +17 -5
  25. package/types/sap.sac.df.d.ts +90 -1
  26. package/types/sap.suite.ui.commons.d.ts +439 -108
  27. package/types/sap.suite.ui.generic.template.d.ts +5 -2
  28. package/types/sap.suite.ui.microchart.d.ts +69 -18
  29. package/types/sap.tnt.d.ts +13 -4
  30. package/types/sap.ui.codeeditor.d.ts +9 -3
  31. package/types/sap.ui.commons.d.ts +236 -68
  32. package/types/sap.ui.comp.d.ts +544 -169
  33. package/types/sap.ui.core.d.ts +934 -264
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +204 -3
  36. package/types/sap.ui.fl.d.ts +21 -6
  37. package/types/sap.ui.generic.app.d.ts +1 -1
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +71 -13
  40. package/types/sap.ui.layout.d.ts +95 -30
  41. package/types/sap.ui.mdc.d.ts +296 -98
  42. package/types/sap.ui.richtexteditor.d.ts +17 -5
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +9 -3
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +118 -24
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +209 -53
  49. package/types/sap.ui.ux3.d.ts +220 -61
  50. package/types/sap.ui.vbm.d.ts +184 -61
  51. package/types/sap.ui.vk.d.ts +544 -139
  52. package/types/sap.ui.vtm.d.ts +130 -37
  53. package/types/sap.ui.webc.common.d.ts +1 -1
  54. package/types/sap.ui.webc.fiori.d.ts +137 -35
  55. package/types/sap.ui.webc.main.d.ts +331 -100
  56. package/types/sap.uiext.inbox.d.ts +50 -14
  57. package/types/sap.ushell.d.ts +625 -46
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +42 -12
  60. package/types/sap.viz.d.ts +521 -137
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +1 -1
  63. package/types/sap.zen.crosstab.d.ts +1 -1
  64. package/types/sap.zen.dsh.d.ts +29 -8
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.116.0
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare module "sap/ushell/components/factsheet/controls/PictureTile" {
4
4
  import { default as CustomTile, $CustomTileSettings } from "sap/m/CustomTile";
@@ -235,7 +235,10 @@ declare module "sap/ushell/components/factsheet/controls/PictureTile" {
235
235
 
236
236
  export interface PictureTile$PictureDeleteEventParameters {}
237
237
 
238
- export type PictureTile$PictureDeleteEvent = Event<PictureTile$PictureDeleteEventParameters>;
238
+ export type PictureTile$PictureDeleteEvent = Event<
239
+ PictureTile$PictureDeleteEventParameters,
240
+ PictureTile
241
+ >;
239
242
  }
240
243
 
241
244
  declare module "sap/ushell/components/factsheet/controls/PictureViewer" {
@@ -579,7 +582,10 @@ declare module "sap/ushell/components/factsheet/controls/PictureViewer" {
579
582
 
580
583
  export interface PictureViewer$PictureDeletedEventParameters {}
581
584
 
582
- export type PictureViewer$PictureDeletedEvent = Event<PictureViewer$PictureDeletedEventParameters>;
585
+ export type PictureViewer$PictureDeletedEvent = Event<
586
+ PictureViewer$PictureDeletedEventParameters,
587
+ PictureViewer
588
+ >;
583
589
  }
584
590
 
585
591
  declare module "sap/ushell/components/factsheet/controls/PictureViewerItem" {
@@ -2730,7 +2736,7 @@ declare module "sap/ushell/services/Bookmark" {
2730
2736
  /**
2731
2737
  * @since 1.15.0
2732
2738
  *
2733
- * Adds a bookmark tile to one of the user's classic homepage groups or to multiple provided content nodes.
2739
+ * Adds a bookmark tile to one of the user's classic home page groups or to multiple provided content nodes.
2734
2740
  * See:
2735
2741
  * sap.ushell.services.URLParsing#getShellHash
2736
2742
  *
@@ -2739,8 +2745,8 @@ declare module "sap/ushell/services/Bookmark" {
2739
2745
  */
2740
2746
  addBookmark(
2741
2747
  /**
2742
- * Bookmark parameters. In addition to title and URL, a bookmark might allow additional settings, such as
2743
- * an icon or a subtitle. Which settings are supported depends on the environment in which the application
2748
+ * Bookmark parameters. In addition to title and URL, a bookmark might allow further settings, such as an
2749
+ * icon or a subtitle. Which settings are supported depends on the environment in which the application
2744
2750
  * is running. Unsupported parameters will be ignored.
2745
2751
  */
2746
2752
  oParameters: {
@@ -2749,8 +2755,8 @@ declare module "sap/ushell/services/Bookmark" {
2749
2755
  */
2750
2756
  title: string;
2751
2757
  /**
2752
- * The target URL or intent of the bookmark. If the target application shall run in the current shell, the
2753
- * URL has to be a valid intent, i.e. in the format like `"#SO-Action?P1=a&P2=x&/route?RPV=1"`.
2758
+ * The target intent or URL of the bookmark. If the target app runs in the current shell, the URL has to
2759
+ * be a valid intent, i.e. in the format `"#SO-Action?P1=a&P2=x&/route?RPV=1"`.
2754
2760
  */
2755
2761
  url: string;
2756
2762
  /**
@@ -2767,27 +2773,56 @@ declare module "sap/ushell/services/Bookmark" {
2767
2773
  subtitle?: string;
2768
2774
  /**
2769
2775
  * The URL to a REST or OData service that provides some dynamic information for the bookmark.
2776
+ *
2777
+ * **Semantic Date Ranges:**
2778
+ *
2779
+ * You can use placeholders for dynamic dates in the query parameters of the service URL. This can be used
2780
+ * to create KPI tiles based on user entries in control {@link sap.m.DynamicDateRange}, where it is possible
2781
+ * to specify dynamic dates like YESTERDAY or THISYEAR.
2782
+ *
2783
+ * The placeholder format looks like this: {Edm.<type>%%DynamicDate.<operator>.<value1>.<value2>.<position>%%}
2784
+ *
2785
+ *
2786
+ * - <type>: The Edm Type of the parameter. Supported types are String, DateTime and DateTimeOffset
2787
+ * for OData V2 and Date and DateTimeOffset for OData V4.
2788
+ * - <operator>, <value1>, <value2>: Possible values are the ones that can be used in
2789
+ * {@link sap.m.DynamicDateRange#toDates} to create a date range.
2790
+ * - <position>: Possible values are 'start' and 'end' which mark the start or end of the interval
2791
+ * specified by the operator.
2792
+ *
2793
+ * Examples:
2794
+ * - /a/url/$count?$filter=(testDate ge {Edm.DateTimeOffset%DynamicDate.YESTERDAY.start%} and testDate
2795
+ * le {Edm.DateTimeOffset%DynamicDate.YESTERDAY.end%})
2796
+ * - /a/url/$count?$filter=(testDate ge {Edm.DateTime%DynamicDate.THISYEAR.start%} and testDate le {Edm.DateTime%DynamicDate.THISYEAR.end%})
2797
+ *
2798
+ * - /a/url/$count?$filter=(testDate ge {Edm.Date%DynamicDate.TODAYFROMTO.1.5.start%} and testDate le
2799
+ * {Edm.Date%DynamicDate.TODAYFROMTO.1.5.end%})
2800
+ *
2801
+ * Hint: Check the debug log when displaying the resulting KPI tiles to get more information about the resolution
2802
+ * of the placeholders.
2770
2803
  */
2771
2804
  serviceUrl?: string;
2772
2805
  /**
2773
2806
  * Metadata for parameter serviceUrl. Mandatory to specify if parameter serviceURL contains semantic date
2774
2807
  * ranges. This does not influence the data source of the app itself.
2808
+ *
2809
+ * Specify the data source as follows:
2810
+ * ```javascript
2811
+ *
2812
+ * {
2813
+ * type: "OData",
2814
+ * settings: {
2815
+ * odataVersion: "4.0"
2816
+ * }
2817
+ * }
2818
+ * ```
2819
+ *
2820
+ *
2821
+ *
2822
+ * type: The type of the serviceURL's service. Only "OData" is supported. odataVersion: The OData version
2823
+ * of parameter serviceURL. Valid values are "2.0" and "4.0".
2775
2824
  */
2776
- dataSource?: {
2777
- /**
2778
- * The type of the serviceURL's service. Only "OData" is supported.
2779
- */
2780
- type?: string;
2781
- /**
2782
- * Additional settings for the data source.
2783
- */
2784
- settings?: {
2785
- /**
2786
- * The OData version of parameter serviceURL. Valid values are "2.0" and "4.0".
2787
- */
2788
- odataVersion?: object;
2789
- };
2790
- };
2825
+ dataSource?: object;
2791
2826
  /**
2792
2827
  * The refresh interval for the `serviceUrl` in seconds.
2793
2828
  */
@@ -2798,7 +2833,7 @@ declare module "sap/ushell/services/Bookmark" {
2798
2833
  numberUnit?: string;
2799
2834
  },
2800
2835
  /**
2801
- * Either a legacy launchpad home page group, one content node or an array of content nodes. (See {@link #getContentNodes})
2836
+ * Either a legacy launchpad home page group, one content node or an array of content nodes (see {@link #getContentNodes}).
2802
2837
  * If not provided, the bookmark will be added to the default group if spaces mode is not active or to the
2803
2838
  * default page if spaces mode is active.
2804
2839
  */
@@ -2890,10 +2925,10 @@ declare module "sap/ushell/services/Bookmark" {
2890
2925
  /**
2891
2926
  * @since 1.81
2892
2927
  *
2893
- * Returns available content nodes based on the current launchpad context. (Classic homepage, spaces mode)
2928
+ * Returns available content nodes based on the current launchpad context. (Classic home page, spaces mode)
2894
2929
  *
2895
2930
  * A content node may be:
2896
- * - a classic homepage group
2931
+ * - a classic home page group
2897
2932
  * - an unselectable node (space) or a selectable node (page) in spaces mode
2898
2933
  * - or any other containers in the future
2899
2934
  *
@@ -2994,7 +3029,7 @@ declare module "sap/ushell/services/Bookmark" {
2994
3029
  ): jQuery.Promise;
2995
3030
  }
2996
3031
  /**
2997
- * A content node may be: - a classic homepage group - an unselectable node (space) or a selectable node
3032
+ * A content node may be: - a classic home page group - an unselectable node (space) or a selectable node
2998
3033
  * (page) in spaces mode - or any other containers in the future
2999
3034
  */
3000
3035
  export type ContentNode = {
@@ -6082,7 +6117,7 @@ declare module "sap/ushell/services/URLParsing" {
6082
6117
  * `http://xx.b.c#Object-name~AFE2==?PV1=PV2&PV4=V5&/display/detail/7?UU=HH`
6083
6118
  */
6084
6119
  sShellHashString: string
6085
- ): Object;
6120
+ ): object;
6086
6121
  /**
6087
6122
  * @since 1.30.0
6088
6123
  * @deprecated (since 1.96) - Please use {@link #isIntentUrlAsync} instead.
@@ -6814,11 +6849,531 @@ declare module "sap/ushell/ui/appfinder/AppBox" {
6814
6849
 
6815
6850
  export interface AppBox$AfterRenderingEventParameters {}
6816
6851
 
6817
- export type AppBox$AfterRenderingEvent = Event<AppBox$AfterRenderingEventParameters>;
6852
+ export type AppBox$AfterRenderingEvent = Event<
6853
+ AppBox$AfterRenderingEventParameters,
6854
+ AppBox
6855
+ >;
6818
6856
 
6819
6857
  export interface AppBox$PressEventParameters {}
6820
6858
 
6821
- export type AppBox$PressEvent = Event<AppBox$PressEventParameters>;
6859
+ export type AppBox$PressEvent = Event<AppBox$PressEventParameters, AppBox>;
6860
+ }
6861
+
6862
+ declare module "sap/ushell/ui/footerbar/AddBookmarkButton" {
6863
+ import { default as Button, $ButtonSettings } from "sap/m/Button";
6864
+
6865
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
6866
+
6867
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
6868
+
6869
+ /**
6870
+ * Enables the user to save a bookmark tile in the Fiori launchpad. Clicking the button opens a dialog box
6871
+ * allowing the user to save the app state, so that the app can be launched in this state directly from
6872
+ * the launchpad.
6873
+ */
6874
+ export default class AddBookmarkButton extends Button {
6875
+ /**
6876
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
6877
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6878
+ * of the syntax of the settings object.
6879
+ */
6880
+ constructor(
6881
+ /**
6882
+ * Initial settings for the new control
6883
+ */
6884
+ mSettings?: $AddBookmarkButtonSettings
6885
+ );
6886
+ /**
6887
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
6888
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6889
+ * of the syntax of the settings object.
6890
+ */
6891
+ constructor(
6892
+ /**
6893
+ * ID for the new control, generated automatically if no id is given
6894
+ */
6895
+ sId?: string,
6896
+ /**
6897
+ * Initial settings for the new control
6898
+ */
6899
+ mSettings?: $AddBookmarkButtonSettings
6900
+ );
6901
+
6902
+ /**
6903
+ * Creates a new subclass of class sap.ushell.ui.footerbar.AddBookmarkButton with name `sClassName` and
6904
+ * enriches it with the information contained in `oClassInfo`.
6905
+ *
6906
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.Button.extend}.
6907
+ *
6908
+ * @returns Created class / constructor function
6909
+ */
6910
+ static extend<T extends Record<string, unknown>>(
6911
+ /**
6912
+ * Name of the class being created
6913
+ */
6914
+ sClassName: string,
6915
+ /**
6916
+ * Object literal with information about the class
6917
+ */
6918
+ oClassInfo?: sap.ClassInfo<T, AddBookmarkButton>,
6919
+ /**
6920
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6921
+ * used by this class
6922
+ */
6923
+ FNMetaImpl?: Function
6924
+ ): Function;
6925
+ /**
6926
+ * Returns a metadata object for class sap.ushell.ui.footerbar.AddBookmarkButton.
6927
+ *
6928
+ * @returns Metadata object describing this class
6929
+ */
6930
+ static getMetadata(): ElementMetadata;
6931
+ /**
6932
+ * Gets current value of property {@link #getAfterPressHandler afterPressHandler}.
6933
+ *
6934
+ * A callback function that is called after the save-as-tile dialog is closed.
6935
+ *
6936
+ * @returns Value of property `afterPressHandler`
6937
+ */
6938
+ getAfterPressHandler(): Function;
6939
+ /**
6940
+ * @deprecated (since 1.31) - Use dedicated properties like afterPressHandler, beforePresshandler, customUrl,
6941
+ * ... of the AddBookmarkButton instead.
6942
+ *
6943
+ * Gets current value of property {@link #getAppData appData}.
6944
+ *
6945
+ * An object containing properties with information about the app, e.g. serviceUrl, numberUnit, ... .
6946
+ *
6947
+ * @returns Value of property `appData`
6948
+ */
6949
+ getAppData(): object;
6950
+ /**
6951
+ * Gets current value of property {@link #getBeforePressHandler beforePressHandler}.
6952
+ *
6953
+ * A callback function that is called before the save-as-tile dialog is opened.
6954
+ *
6955
+ * @returns Value of property `beforePressHandler`
6956
+ */
6957
+ getBeforePressHandler(): Function;
6958
+ /**
6959
+ * Gets current value of property {@link #getCustomUrl customUrl}.
6960
+ *
6961
+ * The target intent or URL of the bookmark. If the target app runs in the current shell, the URL has to
6962
+ * be a valid intent, i.e. in the format `"#SO-Action?P1=a&P2=x&/route?RPV=1"`. See also {@link sap.ushell.services.URLParsing#getHash}.
6963
+ *
6964
+ * @returns Value of property `customUrl`
6965
+ */
6966
+ getCustomUrl(): any;
6967
+ /**
6968
+ * Gets current value of property {@link #getDataSource dataSource}.
6969
+ *
6970
+ * Data source of the OData service. See same parameter of {@link sap.ushell.services.Bookmark#addBookmark }
6971
+ * for details
6972
+ *
6973
+ * @returns Value of property `dataSource`
6974
+ */
6975
+ getDataSource(): any;
6976
+ /**
6977
+ * Gets current value of property {@link #getInfo info}.
6978
+ *
6979
+ * Text to be displayed at the bottom of the tile.
6980
+ *
6981
+ * @returns Value of property `info`
6982
+ */
6983
+ getInfo(): string;
6984
+ /**
6985
+ * Gets current value of property {@link #getKeywords keywords}.
6986
+ *
6987
+ * The keywords based on which the future tile should be indexed and filtered.
6988
+ *
6989
+ * @returns Value of property `keywords`
6990
+ */
6991
+ getKeywords(): string;
6992
+ /**
6993
+ * Gets current value of property {@link #getNumberUnit numberUnit}.
6994
+ *
6995
+ * For dynamic tile, the unit to be displayed below the number, for example, USD.
6996
+ *
6997
+ * @returns Value of property `numberUnit`
6998
+ */
6999
+ getNumberUnit(): string;
7000
+ /**
7001
+ * Gets current value of property {@link #getServiceRefreshInterval serviceRefreshInterval}.
7002
+ *
7003
+ * Number of seconds after which dynamic content is read from the data source and the display is refreshed.
7004
+ *
7005
+ * @returns Value of property `serviceRefreshInterval`
7006
+ */
7007
+ getServiceRefreshInterval(): string;
7008
+ /**
7009
+ * Gets current value of property {@link #getServiceUrl serviceUrl}.
7010
+ *
7011
+ * URL of an OData service from which data for a dynamic tile should be read.
7012
+ *
7013
+ * @returns Value of property `serviceUrl`
7014
+ */
7015
+ getServiceUrl(): any;
7016
+ /**
7017
+ * Gets current value of property {@link #getShowGroupSelection showGroupSelection}.
7018
+ *
7019
+ * Whether to display the control for group selection in the save-as-tile dialog in launchpad homepage mode.
7020
+ *
7021
+ * Default value is `true`.
7022
+ *
7023
+ * @returns Value of property `showGroupSelection`
7024
+ */
7025
+ getShowGroupSelection(): boolean;
7026
+ /**
7027
+ * Gets current value of property {@link #getShowPageSelection showPageSelection}.
7028
+ *
7029
+ * Whether to display the control for page selection in the save-bookmark dialog in launchpad spaces mode.
7030
+ *
7031
+ * Default value is `true`.
7032
+ *
7033
+ * @returns Value of property `showPageSelection`
7034
+ */
7035
+ getShowPageSelection(): boolean;
7036
+ /**
7037
+ * Gets current value of property {@link #getSubtitle subtitle}.
7038
+ *
7039
+ * Subtitle to be displayed below the tile title.
7040
+ *
7041
+ * @returns Value of property `subtitle`
7042
+ */
7043
+ getSubtitle(): string;
7044
+ /**
7045
+ * Gets current value of property {@link #getTileIcon tileIcon}.
7046
+ *
7047
+ * Icon to be displayed in the Tile.
7048
+ *
7049
+ * @returns Value of property `tileIcon`
7050
+ */
7051
+ getTileIcon(): string;
7052
+ /**
7053
+ * Gets current value of property {@link #getTitle title}.
7054
+ *
7055
+ * Title to be displayed on the tile.
7056
+ *
7057
+ * @returns Value of property `title`
7058
+ */
7059
+ getTitle(): string;
7060
+ /**
7061
+ * Sets a new value for property {@link #getAfterPressHandler afterPressHandler}.
7062
+ *
7063
+ * A callback function that is called after the save-as-tile dialog is closed.
7064
+ *
7065
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7066
+ *
7067
+ * @returns Reference to `this` in order to allow method chaining
7068
+ */
7069
+ setAfterPressHandler(
7070
+ /**
7071
+ * New value for property `afterPressHandler`
7072
+ */
7073
+ fnAfterPressHandler?: Function
7074
+ ): this;
7075
+ /**
7076
+ * @deprecated (since 1.31) - Use dedicated properties like afterPressHandler, beforePresshandler, customUrl,
7077
+ * ... of the AddBookmarkButton instead.
7078
+ *
7079
+ * Sets a new value for property {@link #getAppData appData}.
7080
+ *
7081
+ * An object containing properties with information about the app, e.g. serviceUrl, numberUnit, ... .
7082
+ *
7083
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7084
+ *
7085
+ * @returns Reference to `this` in order to allow method chaining
7086
+ */
7087
+ setAppData(
7088
+ /**
7089
+ * New value for property `appData`
7090
+ */
7091
+ oAppData?: object
7092
+ ): this;
7093
+ /**
7094
+ * Sets a new value for property {@link #getBeforePressHandler beforePressHandler}.
7095
+ *
7096
+ * A callback function that is called before the save-as-tile dialog is opened.
7097
+ *
7098
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7099
+ *
7100
+ * @returns Reference to `this` in order to allow method chaining
7101
+ */
7102
+ setBeforePressHandler(
7103
+ /**
7104
+ * New value for property `beforePressHandler`
7105
+ */
7106
+ fnBeforePressHandler?: Function
7107
+ ): this;
7108
+ /**
7109
+ * Sets a new value for property {@link #getCustomUrl customUrl}.
7110
+ *
7111
+ * The target intent or URL of the bookmark. If the target app runs in the current shell, the URL has to
7112
+ * be a valid intent, i.e. in the format `"#SO-Action?P1=a&P2=x&/route?RPV=1"`. See also {@link sap.ushell.services.URLParsing#getHash}.
7113
+ *
7114
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7115
+ *
7116
+ * @returns Reference to `this` in order to allow method chaining
7117
+ */
7118
+ setCustomUrl(
7119
+ /**
7120
+ * New value for property `customUrl`
7121
+ */
7122
+ oCustomUrl?: any
7123
+ ): this;
7124
+ /**
7125
+ * Sets a new value for property {@link #getDataSource dataSource}.
7126
+ *
7127
+ * Data source of the OData service. See same parameter of {@link sap.ushell.services.Bookmark#addBookmark }
7128
+ * for details
7129
+ *
7130
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7131
+ *
7132
+ * @returns Reference to `this` in order to allow method chaining
7133
+ */
7134
+ setDataSource(
7135
+ /**
7136
+ * New value for property `dataSource`
7137
+ */
7138
+ oDataSource?: any
7139
+ ): this;
7140
+ /**
7141
+ * Sets a new value for property {@link #getInfo info}.
7142
+ *
7143
+ * Text to be displayed at the bottom of the tile.
7144
+ *
7145
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7146
+ *
7147
+ * @returns Reference to `this` in order to allow method chaining
7148
+ */
7149
+ setInfo(
7150
+ /**
7151
+ * New value for property `info`
7152
+ */
7153
+ sInfo?: string
7154
+ ): this;
7155
+ /**
7156
+ * Sets a new value for property {@link #getKeywords keywords}.
7157
+ *
7158
+ * The keywords based on which the future tile should be indexed and filtered.
7159
+ *
7160
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7161
+ *
7162
+ * @returns Reference to `this` in order to allow method chaining
7163
+ */
7164
+ setKeywords(
7165
+ /**
7166
+ * New value for property `keywords`
7167
+ */
7168
+ sKeywords?: string
7169
+ ): this;
7170
+ /**
7171
+ * Sets a new value for property {@link #getNumberUnit numberUnit}.
7172
+ *
7173
+ * For dynamic tile, the unit to be displayed below the number, for example, USD.
7174
+ *
7175
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7176
+ *
7177
+ * @returns Reference to `this` in order to allow method chaining
7178
+ */
7179
+ setNumberUnit(
7180
+ /**
7181
+ * New value for property `numberUnit`
7182
+ */
7183
+ sNumberUnit?: string
7184
+ ): this;
7185
+ /**
7186
+ * Sets a new value for property {@link #getServiceRefreshInterval serviceRefreshInterval}.
7187
+ *
7188
+ * Number of seconds after which dynamic content is read from the data source and the display is refreshed.
7189
+ *
7190
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7191
+ *
7192
+ * @returns Reference to `this` in order to allow method chaining
7193
+ */
7194
+ setServiceRefreshInterval(
7195
+ /**
7196
+ * New value for property `serviceRefreshInterval`
7197
+ */
7198
+ sServiceRefreshInterval?: string
7199
+ ): this;
7200
+ /**
7201
+ * Sets a new value for property {@link #getServiceUrl serviceUrl}.
7202
+ *
7203
+ * URL of an OData service from which data for a dynamic tile should be read.
7204
+ *
7205
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7206
+ *
7207
+ * @returns Reference to `this` in order to allow method chaining
7208
+ */
7209
+ setServiceUrl(
7210
+ /**
7211
+ * New value for property `serviceUrl`
7212
+ */
7213
+ oServiceUrl?: any
7214
+ ): this;
7215
+ /**
7216
+ * Sets a new value for property {@link #getShowGroupSelection showGroupSelection}.
7217
+ *
7218
+ * Whether to display the control for group selection in the save-as-tile dialog in launchpad homepage mode.
7219
+ *
7220
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7221
+ *
7222
+ * Default value is `true`.
7223
+ *
7224
+ * @returns Reference to `this` in order to allow method chaining
7225
+ */
7226
+ setShowGroupSelection(
7227
+ /**
7228
+ * New value for property `showGroupSelection`
7229
+ */
7230
+ bShowGroupSelection?: boolean
7231
+ ): this;
7232
+ /**
7233
+ * Sets a new value for property {@link #getShowPageSelection showPageSelection}.
7234
+ *
7235
+ * Whether to display the control for page selection in the save-bookmark dialog in launchpad spaces mode.
7236
+ *
7237
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7238
+ *
7239
+ * Default value is `true`.
7240
+ *
7241
+ * @returns Reference to `this` in order to allow method chaining
7242
+ */
7243
+ setShowPageSelection(
7244
+ /**
7245
+ * New value for property `showPageSelection`
7246
+ */
7247
+ bShowPageSelection?: boolean
7248
+ ): this;
7249
+ /**
7250
+ * Sets a new value for property {@link #getSubtitle subtitle}.
7251
+ *
7252
+ * Subtitle to be displayed below the tile title.
7253
+ *
7254
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7255
+ *
7256
+ * @returns Reference to `this` in order to allow method chaining
7257
+ */
7258
+ setSubtitle(
7259
+ /**
7260
+ * New value for property `subtitle`
7261
+ */
7262
+ sSubtitle?: string
7263
+ ): this;
7264
+ /**
7265
+ * Sets a new value for property {@link #getTileIcon tileIcon}.
7266
+ *
7267
+ * Icon to be displayed in the Tile.
7268
+ *
7269
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7270
+ *
7271
+ * @returns Reference to `this` in order to allow method chaining
7272
+ */
7273
+ setTileIcon(
7274
+ /**
7275
+ * New value for property `tileIcon`
7276
+ */
7277
+ sTileIcon?: string
7278
+ ): this;
7279
+ /**
7280
+ * Sets a new value for property {@link #getTitle title}.
7281
+ *
7282
+ * Title to be displayed on the tile.
7283
+ *
7284
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7285
+ *
7286
+ * @returns Reference to `this` in order to allow method chaining
7287
+ */
7288
+ setTitle(
7289
+ /**
7290
+ * New value for property `title`
7291
+ */
7292
+ sTitle?: string
7293
+ ): this;
7294
+ }
7295
+
7296
+ export interface $AddBookmarkButtonSettings extends $ButtonSettings {
7297
+ /**
7298
+ * A callback function that is called before the save-as-tile dialog is opened.
7299
+ */
7300
+ beforePressHandler?: Function | PropertyBindingInfo | `{${string}}`;
7301
+
7302
+ /**
7303
+ * A callback function that is called after the save-as-tile dialog is closed.
7304
+ */
7305
+ afterPressHandler?: Function | PropertyBindingInfo | `{${string}}`;
7306
+
7307
+ /**
7308
+ * Title to be displayed on the tile.
7309
+ */
7310
+ title?: string | PropertyBindingInfo;
7311
+
7312
+ /**
7313
+ * Subtitle to be displayed below the tile title.
7314
+ */
7315
+ subtitle?: string | PropertyBindingInfo;
7316
+
7317
+ /**
7318
+ * Text to be displayed at the bottom of the tile.
7319
+ */
7320
+ info?: string | PropertyBindingInfo;
7321
+
7322
+ /**
7323
+ * Icon to be displayed in the Tile.
7324
+ */
7325
+ tileIcon?: string | PropertyBindingInfo;
7326
+
7327
+ /**
7328
+ * For dynamic tile, the unit to be displayed below the number, for example, USD.
7329
+ */
7330
+ numberUnit?: string | PropertyBindingInfo;
7331
+
7332
+ /**
7333
+ * The keywords based on which the future tile should be indexed and filtered.
7334
+ */
7335
+ keywords?: string | PropertyBindingInfo;
7336
+
7337
+ /**
7338
+ * The target intent or URL of the bookmark. If the target app runs in the current shell, the URL has to
7339
+ * be a valid intent, i.e. in the format `"#SO-Action?P1=a&P2=x&/route?RPV=1"`. See also {@link sap.ushell.services.URLParsing#getHash}.
7340
+ */
7341
+ customUrl?: any | PropertyBindingInfo | `{${string}}`;
7342
+
7343
+ /**
7344
+ * URL of an OData service from which data for a dynamic tile should be read.
7345
+ */
7346
+ serviceUrl?: any | PropertyBindingInfo | `{${string}}`;
7347
+
7348
+ /**
7349
+ * Data source of the OData service. See same parameter of {@link sap.ushell.services.Bookmark#addBookmark }
7350
+ * for details
7351
+ */
7352
+ dataSource?: any | PropertyBindingInfo | `{${string}}`;
7353
+
7354
+ /**
7355
+ * Number of seconds after which dynamic content is read from the data source and the display is refreshed.
7356
+ */
7357
+ serviceRefreshInterval?: string | PropertyBindingInfo;
7358
+
7359
+ /**
7360
+ * Whether to display the control for group selection in the save-as-tile dialog in launchpad homepage mode.
7361
+ */
7362
+ showGroupSelection?: boolean | PropertyBindingInfo | `{${string}}`;
7363
+
7364
+ /**
7365
+ * Whether to display the control for page selection in the save-bookmark dialog in launchpad spaces mode.
7366
+ */
7367
+ showPageSelection?: boolean | PropertyBindingInfo | `{${string}}`;
7368
+
7369
+ /**
7370
+ * @deprecated (since 1.31) - Use dedicated properties like afterPressHandler, beforePresshandler, customUrl,
7371
+ * ... of the AddBookmarkButton instead.
7372
+ *
7373
+ * An object containing properties with information about the app, e.g. serviceUrl, numberUnit, ... .
7374
+ */
7375
+ appData?: object | PropertyBindingInfo | `{${string}}`;
7376
+ }
6822
7377
  }
6823
7378
 
6824
7379
  declare module "sap/ushell/ui/launchpad/ActionItem" {
@@ -7079,12 +7634,18 @@ declare module "sap/ushell/ui/launchpad/ActionItem" {
7079
7634
 
7080
7635
  export interface ActionItem$AfterRenderingEventParameters {}
7081
7636
 
7082
- export type ActionItem$AfterRenderingEvent = Event<ActionItem$AfterRenderingEventParameters>;
7637
+ export type ActionItem$AfterRenderingEvent = Event<
7638
+ ActionItem$AfterRenderingEventParameters,
7639
+ ActionItem
7640
+ >;
7083
7641
 
7084
7642
  export interface ActionItem$PressEventParameters
7085
7643
  extends Button$PressEventParameters {}
7086
7644
 
7087
- export type ActionItem$PressEvent = Event<ActionItem$PressEventParameters>;
7645
+ export type ActionItem$PressEvent = Event<
7646
+ ActionItem$PressEventParameters,
7647
+ ActionItem
7648
+ >;
7088
7649
  }
7089
7650
 
7090
7651
  declare module "sap/ushell/ui/launchpad/DashboardGroupsContainer" {
@@ -7364,7 +7925,10 @@ declare module "sap/ushell/ui/launchpad/DashboardGroupsContainer" {
7364
7925
 
7365
7926
  export interface DashboardGroupsContainer$AfterRenderingEventParameters {}
7366
7927
 
7367
- export type DashboardGroupsContainer$AfterRenderingEvent = Event<DashboardGroupsContainer$AfterRenderingEventParameters>;
7928
+ export type DashboardGroupsContainer$AfterRenderingEvent = Event<
7929
+ DashboardGroupsContainer$AfterRenderingEventParameters,
7930
+ DashboardGroupsContainer
7931
+ >;
7368
7932
  }
7369
7933
 
7370
7934
  declare module "sap/ushell/ui/launchpad/LinkTileWrapper" {
@@ -8124,19 +8688,31 @@ declare module "sap/ushell/ui/launchpad/LinkTileWrapper" {
8124
8688
 
8125
8689
  export interface LinkTileWrapper$AfterRenderingEventParameters {}
8126
8690
 
8127
- export type LinkTileWrapper$AfterRenderingEvent = Event<LinkTileWrapper$AfterRenderingEventParameters>;
8691
+ export type LinkTileWrapper$AfterRenderingEvent = Event<
8692
+ LinkTileWrapper$AfterRenderingEventParameters,
8693
+ LinkTileWrapper
8694
+ >;
8128
8695
 
8129
8696
  export interface LinkTileWrapper$CoverDivPressEventParameters {}
8130
8697
 
8131
- export type LinkTileWrapper$CoverDivPressEvent = Event<LinkTileWrapper$CoverDivPressEventParameters>;
8698
+ export type LinkTileWrapper$CoverDivPressEvent = Event<
8699
+ LinkTileWrapper$CoverDivPressEventParameters,
8700
+ LinkTileWrapper
8701
+ >;
8132
8702
 
8133
8703
  export interface LinkTileWrapper$PressEventParameters {}
8134
8704
 
8135
- export type LinkTileWrapper$PressEvent = Event<LinkTileWrapper$PressEventParameters>;
8705
+ export type LinkTileWrapper$PressEvent = Event<
8706
+ LinkTileWrapper$PressEventParameters,
8707
+ LinkTileWrapper
8708
+ >;
8136
8709
 
8137
8710
  export interface LinkTileWrapper$ShowActionsEventParameters {}
8138
8711
 
8139
- export type LinkTileWrapper$ShowActionsEvent = Event<LinkTileWrapper$ShowActionsEventParameters>;
8712
+ export type LinkTileWrapper$ShowActionsEvent = Event<
8713
+ LinkTileWrapper$ShowActionsEventParameters,
8714
+ LinkTileWrapper
8715
+ >;
8140
8716
  }
8141
8717
 
8142
8718
  declare module "sap/ushell/ui/launchpad/TileState" {
@@ -8315,7 +8891,10 @@ declare module "sap/ushell/ui/launchpad/TileState" {
8315
8891
 
8316
8892
  export interface TileState$PressEventParameters {}
8317
8893
 
8318
- export type TileState$PressEvent = Event<TileState$PressEventParameters>;
8894
+ export type TileState$PressEvent = Event<
8895
+ TileState$PressEventParameters,
8896
+ TileState
8897
+ >;
8319
8898
  }
8320
8899
 
8321
8900
  declare module "sap/ushell/ui/shell/ToolAreaItem" {
@@ -8746,11 +9325,17 @@ declare module "sap/ushell/ui/shell/ToolAreaItem" {
8746
9325
 
8747
9326
  export interface ToolAreaItem$ExpandEventParameters {}
8748
9327
 
8749
- export type ToolAreaItem$ExpandEvent = Event<ToolAreaItem$ExpandEventParameters>;
9328
+ export type ToolAreaItem$ExpandEvent = Event<
9329
+ ToolAreaItem$ExpandEventParameters,
9330
+ ToolAreaItem
9331
+ >;
8750
9332
 
8751
9333
  export interface ToolAreaItem$PressEventParameters {}
8752
9334
 
8753
- export type ToolAreaItem$PressEvent = Event<ToolAreaItem$PressEventParameters>;
9335
+ export type ToolAreaItem$PressEvent = Event<
9336
+ ToolAreaItem$PressEventParameters,
9337
+ ToolAreaItem
9338
+ >;
8754
9339
  }
8755
9340
 
8756
9341
  declare module "sap/ushell/ui/tile/StaticTile" {
@@ -8857,12 +9442,6 @@ declare module "sap/ushell/ui5service/UserStatus" {
8857
9442
  export default UserStatus;
8858
9443
  }
8859
9444
 
8860
- declare module "sap/ushell/ui/footerbar/AddBookmarkButton" {
8861
- import { $ButtonSettings } from "sap/m/Button";
8862
-
8863
- export interface $Settings extends $ButtonSettings {}
8864
- }
8865
-
8866
9445
  declare namespace sap {
8867
9446
  namespace ushell {
8868
9447
  /**