@openui5/types 1.142.0 → 1.142.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/types",
3
- "version": "1.142.0",
3
+ "version": "1.142.2",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://ui5.github.io/typescript",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * Copyright 2025 SAP SE or an SAP affiliate company.
3
+ * Copyright 2026 SAP SE or an SAP affiliate company.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
6
  * you may not use this file except in compliance with the License.
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -3148,13 +3148,13 @@ declare module "sap/m/library" {
3148
3148
  /**
3149
3149
  * Each item fits its content and extra space is placed after the last item.
3150
3150
  *
3151
- * @since 1.42
3151
+ * @since 1.142.0
3152
3152
  */
3153
3153
  ContentFit = "ContentFit",
3154
3154
  /**
3155
3155
  * All items are sized equally to fill the available space.
3156
3156
  *
3157
- * @since 1.42
3157
+ * @since 1.142.0
3158
3158
  */
3159
3159
  EqualSized = "EqualSized",
3160
3160
  }
@@ -88975,6 +88975,11 @@ declare module "sap/m/PDFViewer" {
88975
88975
  * Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
88976
88976
  * URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
88977
88977
  *
88978
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
88979
+ * GET request to ensure it exists and is accessible. This validation:
88980
+ * - Prevents loading invalid or non-existent PDF files
88981
+ * - If validation fails, error content is displayed instead of attempting PDF load
88982
+ *
88978
88983
  *
88979
88984
  * @returns Value of property `source`
88980
88985
  */
@@ -89224,6 +89229,11 @@ declare module "sap/m/PDFViewer" {
89224
89229
  * Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
89225
89230
  * URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
89226
89231
  *
89232
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
89233
+ * GET request to ensure it exists and is accessible. This validation:
89234
+ * - Prevents loading invalid or non-existent PDF files
89235
+ * - If validation fails, error content is displayed instead of attempting PDF load
89236
+ *
89227
89237
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
89228
89238
  *
89229
89239
  *
@@ -89291,6 +89301,11 @@ declare module "sap/m/PDFViewer" {
89291
89301
  * Specifies the path to the PDF file to display. Can be set to a relative or an absolute path.
89292
89302
  * Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
89293
89303
  * URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
89304
+ *
89305
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
89306
+ * GET request to ensure it exists and is accessible. This validation:
89307
+ * - Prevents loading invalid or non-existent PDF files
89308
+ * - If validation fails, error content is displayed instead of attempting PDF load
89294
89309
  */
89295
89310
  source?: URI | PropertyBindingInfo | `{${string}}`;
89296
89311
 
@@ -110116,7 +110131,11 @@ declare module "sap/m/SearchField" {
110116
110131
 
110117
110132
  import { IShellBar } from "sap/f/library";
110118
110133
 
110119
- import { IToolbarInteractiveControl } from "sap/m/library";
110134
+ import {
110135
+ IToolbarInteractiveControl,
110136
+ IOverflowToolbarContent,
110137
+ OverflowToolbarConfig,
110138
+ } from "sap/m/library";
110120
110139
 
110121
110140
  import SuggestionItem from "sap/m/SuggestionItem";
110122
110141
 
@@ -110147,11 +110166,16 @@ declare module "sap/m/SearchField" {
110147
110166
  */
110148
110167
  export default class SearchField
110149
110168
  extends Control
110150
- implements IFormContent, IShellBar, IToolbarInteractiveControl
110169
+ implements
110170
+ IFormContent,
110171
+ IShellBar,
110172
+ IToolbarInteractiveControl,
110173
+ IOverflowToolbarContent
110151
110174
  {
110152
110175
  __implements__sap_ui_core_IFormContent: boolean;
110153
110176
  __implements__sap_f_IShellBar: boolean;
110154
110177
  __implements__sap_m_IToolbarInteractiveControl: boolean;
110178
+ __implements__sap_m_IOverflowToolbarContent: boolean;
110155
110179
  /**
110156
110180
  * Constructor for a new SearchField.
110157
110181
  *
@@ -110654,6 +110678,14 @@ declare module "sap/m/SearchField" {
110654
110678
  * @returns Value of property `maxLength`
110655
110679
  */
110656
110680
  getMaxLength(): int;
110681
+ /**
110682
+ * Enables the `sap.m.SearchField` to be used inside sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
110683
+ * interface.
110684
+ *
110685
+ *
110686
+ * @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
110687
+ */
110688
+ getOverflowToolbarConfig(): OverflowToolbarConfig;
110657
110689
  /**
110658
110690
  * Gets current value of property {@link #getPlaceholder placeholder}.
110659
110691
  *
@@ -111819,7 +111851,7 @@ declare module "sap/m/SegmentedButton" {
111819
111851
  *
111820
111852
  * Default value is `EqualSized`.
111821
111853
  *
111822
- * @since 1.42.0
111854
+ * @since 1.142.0
111823
111855
  *
111824
111856
  * @returns Value of property `contentMode`
111825
111857
  */
@@ -112043,7 +112075,7 @@ declare module "sap/m/SegmentedButton" {
112043
112075
  *
112044
112076
  * Default value is `EqualSized`.
112045
112077
  *
112046
- * @since 1.42.0
112078
+ * @since 1.142.0
112047
112079
  *
112048
112080
  * @returns Reference to `this` in order to allow method chaining
112049
112081
  */
@@ -112181,7 +112213,7 @@ declare module "sap/m/SegmentedButton" {
112181
112213
  * - **ContentFit**: Each button is sized according to its content.
112182
112214
  * - **EqualSized**: All buttons have equal width, regardless of their content.
112183
112215
  *
112184
- * @since 1.42.0
112216
+ * @since 1.142.0
112185
112217
  */
112186
112218
  contentMode?:
112187
112219
  | (SegmentedButtonContentMode | keyof typeof SegmentedButtonContentMode)
@@ -130370,6 +130402,11 @@ declare module "sap/m/SinglePlanningCalendar" {
130370
130402
  * The end date as a UI5Date or JavaScript Date object of the focused grid cell.
130371
130403
  */
130372
130404
  endDate?: object;
130405
+
130406
+ /**
130407
+ * The original browser event.
130408
+ */
130409
+ originalEvent?: object;
130373
130410
  }
130374
130411
 
130375
130412
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -279,7 +279,7 @@ declare namespace sap {
279
279
  "sap/ui/thirdparty/qunit-2": undefined;
280
280
  }
281
281
  }
282
- // For Library Version: 1.142.0
282
+ // For Library Version: 1.142.2
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/dt/library" {
4
4
  export namespace designtime {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -13377,6 +13377,19 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
13377
13377
  */
13378
13378
  mParameters?: FilterBarBase$SearchEventParameters
13379
13379
  ): this;
13380
+ /**
13381
+ * Updates the Adapt Filters button text based on the number of assigned filters.
13382
+ *
13383
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13384
+ *
13385
+ * @returns text for the Adapt Filters button
13386
+ */
13387
+ getAdaptFiltersButtonText(
13388
+ /**
13389
+ * number of assigned filters
13390
+ */
13391
+ iFilterCount: int
13392
+ ): string;
13380
13393
  /**
13381
13394
  * Gets the labels of all filters with a value assignment.
13382
13395
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -4941,6 +4941,40 @@ declare module "sap/ui/table/RowActionItem" {
4941
4941
  * @returns Value of property `visible`
4942
4942
  */
4943
4943
  getVisible(): boolean;
4944
+ /**
4945
+ * Sets a new value for property {@link #getIcon icon}.
4946
+ *
4947
+ * The icon of the item.
4948
+ *
4949
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4950
+ *
4951
+ *
4952
+ * @returns Reference to `this` in order to allow method chaining
4953
+ */
4954
+ setIcon(
4955
+ /**
4956
+ * New value for property `icon`
4957
+ */
4958
+ sIcon?: URI
4959
+ ): this;
4960
+ /**
4961
+ * Sets a new value for property {@link #getText text}.
4962
+ *
4963
+ * The text of the item. It is used as tooltip and for accessibility purposes.
4964
+ *
4965
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4966
+ *
4967
+ * Default value is `empty string`.
4968
+ *
4969
+ *
4970
+ * @returns Reference to `this` in order to allow method chaining
4971
+ */
4972
+ setText(
4973
+ /**
4974
+ * New value for property `text`
4975
+ */
4976
+ sText?: string
4977
+ ): this;
4944
4978
  /**
4945
4979
  * Sets a new value for property {@link #getType type}.
4946
4980
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**