1- // For Library Version: 1.144 .0
1+ // For Library Version: 1.145 .0
22
33declare module "sap/f/library" {
44 export interface IShellBar {
@@ -3996,6 +3996,12 @@ declare module "sap/m/library" {
39963996 * @since 1.54
39973997 */
39983998 export enum TimePickerMaskMode {
3999+ /**
4000+ * The mask will always be enforced for any time patterns. **Note:** The mask functions correctly only with
4001+ * fixed-length time formats. Using the `Enforce` value with time formats that do not have a fixed length
4002+ * may lead to unpredictable behavior.
4003+ */
4004+ Enforce = "Enforce",
39994005 /**
40004006 * The mask is disabled for the `sap.m.TimePicker`.
40014007 */
@@ -4539,6 +4545,20 @@ declare module "sap/m/library" {
45394545 * @returns The enablement of the vertical scrolling enablement for the `sap.m.p13n.Popup`.
45404546 */
45414547 getVerticalScrolling?(): boolean;
4548+ /**
4549+ * Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that is called before
4550+ * the popup is closed
4551+ *
4552+ * @since 1.145
4553+ *
4554+ * @returns A Promise that is fullfilled if the panel is ready to be closed
4555+ */
4556+ onBeforeClose?(
4557+ /**
4558+ * reason for closing the container
4559+ */
4560+ sReason: string
4561+ ): Promise<any>;
45424562 /**
45434563 * Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that may trigger a
45444564 * reset on the panel
@@ -14767,7 +14787,6 @@ declare module "sap/m/ColorPalette" {
1476714787 * The last selected color in the ColorPalette.
1476814788 *
1476914789 * @since 1.122
14770- * @experimental As of version 1.122. this property is in a beta state.
1477114790 *
1477214791 * @returns Value of property `selectedColor`
1477314792 */
@@ -14811,7 +14830,6 @@ declare module "sap/m/ColorPalette" {
1481114830 * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1481214831 *
1481314832 * @since 1.122
14814- * @experimental As of version 1.122. this property is in a beta state.
1481514833 *
1481614834 * @returns Reference to `this` in order to allow method chaining
1481714835 */
@@ -14835,7 +14853,6 @@ declare module "sap/m/ColorPalette" {
1483514853 * The last selected color in the ColorPalette.
1483614854 *
1483714855 * @since 1.122
14838- * @experimental As of version 1.122. this property is in a beta state.
1483914856 */
1484014857 selectedColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
1484114858
@@ -15223,7 +15240,6 @@ declare module "sap/m/ColorPalettePopover" {
1522315240 * The last selected color in the ColorPalette.
1522415241 *
1522515242 * @since 1.122
15226- * @experimental As of version 1.122. this property is in a beta state.
1522715243 *
1522815244 * @returns Value of property `selectedColor`
1522915245 */
@@ -15356,7 +15372,6 @@ declare module "sap/m/ColorPalettePopover" {
1535615372 * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1535715373 *
1535815374 * @since 1.122
15359- * @experimental As of version 1.122. this property is in a beta state.
1536015375 *
1536115376 * @returns Reference to `this` in order to allow method chaining
1536215377 */
@@ -15442,7 +15457,6 @@ declare module "sap/m/ColorPalettePopover" {
1544215457 * The last selected color in the ColorPalette.
1544315458 *
1544415459 * @since 1.122
15445- * @experimental As of version 1.122. this property is in a beta state.
1544615460 */
1544715461 selectedColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
1544815462
@@ -86235,7 +86249,7 @@ declare module "sap/m/Page" {
8623586249 *
8623686250 * The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
8623786251 * where the default header consisting of title text + nav button is not sufficient. If this aggregation
86238- * is set, the simple properties "title", "showNavButton", "NavButtonText " and "icon" are not used.
86252+ * is set, the simple properties "title", "showNavButton", "navButtonText " and "icon" are not used.
8623986253 */
8624086254 getCustomHeader(): IBar;
8624186255 /**
@@ -87062,7 +87076,7 @@ declare module "sap/m/Page" {
8706287076 /**
8706387077 * The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
8706487078 * where the default header consisting of title text + nav button is not sufficient. If this aggregation
87065- * is set, the simple properties "title", "showNavButton", "NavButtonText " and "icon" are not used.
87079+ * is set, the simple properties "title", "showNavButton", "navButtonText " and "icon" are not used.
8706687080 */
8706787081 customHeader?: IBar;
8706887082
@@ -135965,7 +135979,8 @@ declare module "sap/m/StandardListItem" {
135965135979 /**
135966135980 * Gets current value of property {@link #getIcon icon}.
135967135981 *
135968- * Defines the list item icon.
135982+ * Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
135983+ * options, use the `avatar` aggregation.
135969135984 *
135970135985 *
135971135986 * @returns Value of property `icon`
@@ -136176,7 +136191,8 @@ declare module "sap/m/StandardListItem" {
136176136191 /**
136177136192 * Sets a new value for property {@link #getIcon icon}.
136178136193 *
136179- * Defines the list item icon.
136194+ * Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
136195+ * options, use the `avatar` aggregation.
136180136196 *
136181136197 * When called with a value of `null` or `undefined`, the default value of the property will be restored.
136182136198 *
@@ -136411,7 +136427,8 @@ declare module "sap/m/StandardListItem" {
136411136427 description?: string | PropertyBindingInfo;
136412136428
136413136429 /**
136414- * Defines the list item icon.
136430+ * Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
136431+ * options, use the `avatar` aggregation.
136415136432 */
136416136433 icon?: URI | PropertyBindingInfo | `{${string}}`;
136417136434
0 commit comments