@openui5/ts-types-esm 1.108.45 → 1.108.47
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 +16 -1
- 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 +2 -2
- 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 +1 -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 +1 -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.108.
|
|
1
|
+
// For Library Version: 1.108.47
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -76358,6 +76358,11 @@ declare module "sap/m/PDFViewer" {
|
|
|
76358
76358
|
* For more information about URL filtering, see {@link topic:91f3768f6f4d1014b6dd926db0e91070 URLList Validator
|
|
76359
76359
|
* Filtering}.
|
|
76360
76360
|
*
|
|
76361
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
76362
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
76363
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
76364
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
76365
|
+
*
|
|
76361
76366
|
* @returns Value of property `source`
|
|
76362
76367
|
*/
|
|
76363
76368
|
getSource(): URI;
|
|
@@ -76596,6 +76601,11 @@ declare module "sap/m/PDFViewer" {
|
|
|
76596
76601
|
* For more information about URL filtering, see {@link topic:91f3768f6f4d1014b6dd926db0e91070 URLList Validator
|
|
76597
76602
|
* Filtering}.
|
|
76598
76603
|
*
|
|
76604
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
76605
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
76606
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
76607
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
76608
|
+
*
|
|
76599
76609
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
76600
76610
|
*
|
|
76601
76611
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -76660,6 +76670,11 @@ declare module "sap/m/PDFViewer" {
|
|
|
76660
76670
|
* except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
|
|
76661
76671
|
* For more information about URL filtering, see {@link topic:91f3768f6f4d1014b6dd926db0e91070 URLList Validator
|
|
76662
76672
|
* Filtering}.
|
|
76673
|
+
*
|
|
76674
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
76675
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
76676
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
76677
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
76663
76678
|
*/
|
|
76664
76679
|
source?: URI | PropertyBindingInfo | `{${string}}`;
|
|
76665
76680
|
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.108.
|
|
267
|
+
// For Library Version: 1.108.47
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -62410,7 +62410,7 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
62410
62410
|
* in one binding. Must be set to 'None' which means bindings are not synchronized at all; all other values
|
|
62411
62411
|
* are not supported and lead to an error.
|
|
62412
62412
|
*/
|
|
62413
|
-
synchronizationMode
|
|
62413
|
+
synchronizationMode?: string;
|
|
62414
62414
|
/**
|
|
62415
62415
|
* The group ID that is used for update requests. If no update group ID is specified, `mParameters.groupId`
|
|
62416
62416
|
* is used. Valid update group IDs are `undefined`, '$auto', '$direct' or an application group ID.
|
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
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED