@openui5/types 1.142.0 → 1.142.1
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 +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +40 -3
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +14 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +35 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.142.
|
|
1
|
+
// For Library Version: 1.142.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -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 {
|
|
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
|
|
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
|
*
|
|
@@ -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
|
/**
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.142.
|
|
1
|
+
// For Library Version: 1.142.1
|
|
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
|
*
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.142.
|
|
1
|
+
// For Library Version: 1.142.1
|
|
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
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED