@openui5/ts-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/ts-types",
3
- "version": "1.142.0",
3
+ "version": "1.142.2",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
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 namespace sap {
4
4
  /**
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/m/p13n/Engine" {
4
4
  /**
@@ -38155,6 +38155,11 @@ declare namespace sap {
38155
38155
  * Specifies the path to the PDF file to display. Can be set to a relative or an absolute path.
38156
38156
  * Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
38157
38157
  * 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}.
38158
+ *
38159
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
38160
+ * GET request to ensure it exists and is accessible. This validation:
38161
+ * - Prevents loading invalid or non-existent PDF files
38162
+ * - If validation fails, error content is displayed instead of attempting PDF load
38158
38163
  */
38159
38164
  source?:
38160
38165
  | sap.ui.core.URI
@@ -40775,7 +40780,7 @@ declare namespace sap {
40775
40780
  * - **ContentFit**: Each button is sized according to its content.
40776
40781
  * - **EqualSized**: All buttons have equal width, regardless of their content.
40777
40782
  *
40778
- * @since 1.42.0
40783
+ * @since 1.142.0
40779
40784
  */
40780
40785
  contentMode?:
40781
40786
  | sap.m.SegmentedButtonContentMode
@@ -49165,6 +49170,11 @@ declare namespace sap {
49165
49170
  * The end date as a UI5Date or JavaScript Date object of the focused grid cell.
49166
49171
  */
49167
49172
  endDate?: object;
49173
+
49174
+ /**
49175
+ * The original browser event.
49176
+ */
49177
+ originalEvent?: object;
49168
49178
  }
49169
49179
 
49170
49180
  /**
@@ -116693,6 +116703,11 @@ declare namespace sap {
116693
116703
  * Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
116694
116704
  * 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}.
116695
116705
  *
116706
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
116707
+ * GET request to ensure it exists and is accessible. This validation:
116708
+ * - Prevents loading invalid or non-existent PDF files
116709
+ * - If validation fails, error content is displayed instead of attempting PDF load
116710
+ *
116696
116711
  *
116697
116712
  * @returns Value of property `source`
116698
116713
  */
@@ -116942,6 +116957,11 @@ declare namespace sap {
116942
116957
  * Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
116943
116958
  * 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}.
116944
116959
  *
116960
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
116961
+ * GET request to ensure it exists and is accessible. This validation:
116962
+ * - Prevents loading invalid or non-existent PDF files
116963
+ * - If validation fails, error content is displayed instead of attempting PDF load
116964
+ *
116945
116965
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
116946
116966
  *
116947
116967
  *
@@ -128846,11 +128866,13 @@ declare namespace sap {
128846
128866
  implements
128847
128867
  sap.ui.core.IFormContent,
128848
128868
  sap.f.IShellBar,
128849
- sap.m.IToolbarInteractiveControl
128869
+ sap.m.IToolbarInteractiveControl,
128870
+ sap.m.IOverflowToolbarContent
128850
128871
  {
128851
128872
  __implements__sap_ui_core_IFormContent: boolean;
128852
128873
  __implements__sap_f_IShellBar: boolean;
128853
128874
  __implements__sap_m_IToolbarInteractiveControl: boolean;
128875
+ __implements__sap_m_IOverflowToolbarContent: boolean;
128854
128876
  /**
128855
128877
  * Constructor for a new SearchField.
128856
128878
  *
@@ -129353,6 +129375,14 @@ declare namespace sap {
129353
129375
  * @returns Value of property `maxLength`
129354
129376
  */
129355
129377
  getMaxLength(): int;
129378
+ /**
129379
+ * Enables the `sap.m.SearchField` to be used inside sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
129380
+ * interface.
129381
+ *
129382
+ *
129383
+ * @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
129384
+ */
129385
+ getOverflowToolbarConfig(): sap.m.OverflowToolbarConfig;
129356
129386
  /**
129357
129387
  * Gets current value of property {@link #getPlaceholder placeholder}.
129358
129388
  *
@@ -130244,7 +130274,7 @@ declare namespace sap {
130244
130274
  *
130245
130275
  * Default value is `EqualSized`.
130246
130276
  *
130247
- * @since 1.42.0
130277
+ * @since 1.142.0
130248
130278
  *
130249
130279
  * @returns Value of property `contentMode`
130250
130280
  */
@@ -130468,7 +130498,7 @@ declare namespace sap {
130468
130498
  *
130469
130499
  * Default value is `EqualSized`.
130470
130500
  *
130471
- * @since 1.42.0
130501
+ * @since 1.142.0
130472
130502
  *
130473
130503
  * @returns Reference to `this` in order to allow method chaining
130474
130504
  */
@@ -168201,13 +168231,13 @@ declare namespace sap {
168201
168231
  /**
168202
168232
  * Each item fits its content and extra space is placed after the last item.
168203
168233
  *
168204
- * @since 1.42
168234
+ * @since 1.142.0
168205
168235
  */
168206
168236
  ContentFit = "ContentFit",
168207
168237
  /**
168208
168238
  * All items are sized equally to fill the available space.
168209
168239
  *
168210
- * @since 1.42
168240
+ * @since 1.142.0
168211
168241
  */
168212
168242
  EqualSized = "EqualSized",
168213
168243
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
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 namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -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 namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -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";
@@ -10080,6 +10080,19 @@ declare namespace sap {
10080
10080
  */
10081
10081
  mParameters?: sap.ui.mdc.filterbar.FilterBarBase$SearchEventParameters
10082
10082
  ): this;
10083
+ /**
10084
+ * Updates the Adapt Filters button text based on the number of assigned filters.
10085
+ *
10086
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10087
+ *
10088
+ * @returns text for the Adapt Filters button
10089
+ */
10090
+ getAdaptFiltersButtonText(
10091
+ /**
10092
+ * number of assigned filters
10093
+ */
10094
+ iFilterCount: int
10095
+ ): string;
10083
10096
  /**
10084
10097
  * Gets the labels of all filters with a value assignment.
10085
10098
  *
@@ -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
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -6867,6 +6867,40 @@ declare namespace sap {
6867
6867
  * @returns Value of property `visible`
6868
6868
  */
6869
6869
  getVisible(): boolean;
6870
+ /**
6871
+ * Sets a new value for property {@link #getIcon icon}.
6872
+ *
6873
+ * The icon of the item.
6874
+ *
6875
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6876
+ *
6877
+ *
6878
+ * @returns Reference to `this` in order to allow method chaining
6879
+ */
6880
+ setIcon(
6881
+ /**
6882
+ * New value for property `icon`
6883
+ */
6884
+ sIcon?: sap.ui.core.URI
6885
+ ): this;
6886
+ /**
6887
+ * Sets a new value for property {@link #getText text}.
6888
+ *
6889
+ * The text of the item. It is used as tooltip and for accessibility purposes.
6890
+ *
6891
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6892
+ *
6893
+ * Default value is `empty string`.
6894
+ *
6895
+ *
6896
+ * @returns Reference to `this` in order to allow method chaining
6897
+ */
6898
+ setText(
6899
+ /**
6900
+ * New value for property `text`
6901
+ */
6902
+ sText?: string
6903
+ ): this;
6870
6904
  /**
6871
6905
  * Sets a new value for property {@link #getType type}.
6872
6906
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.142.2
2
2
 
3
3
  declare namespace sap {
4
4
  /**