@sapui5/ts-types 1.96.28 → 1.96.29
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.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +47 -1
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -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.comp.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.export.d.ts +3 -3
- 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.richtexteditor.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 +6 -6
- 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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.ca.ui.d.ts
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.27
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -19231,6 +19231,17 @@ declare namespace sap {
|
|
|
19231
19231
|
| sap.m.PDFViewerDisplayType
|
|
19232
19232
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
19233
19233
|
|
|
19234
|
+
/**
|
|
19235
|
+
* Parameter to determine if the given PDF is from a trusted source. If the source is valid this property
|
|
19236
|
+
* can be set to true. If isTrustedSource is set to true, the PDFViewer opens with the displayType set to
|
|
19237
|
+
* "Embedded" on desktop devices, which means that the PDF content is directly shown within the PDFViewer.
|
|
19238
|
+
* Set this property to true only when the PDF is generated by the application or the PDF is scanned for
|
|
19239
|
+
* viruses. If isTrustedSource is set to false, the PDFViewer opens with the displayType set to "Link" on
|
|
19240
|
+
* desktop devices, which overrides any configuration that has been provided by the application for the
|
|
19241
|
+
* property displayType. This means that the PDFViewer appears as a toolbar with a download button.
|
|
19242
|
+
*/
|
|
19243
|
+
isTrustedSource?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
19244
|
+
|
|
19234
19245
|
/**
|
|
19235
19246
|
* A custom control that can be used instead of the error message specified by the errorPlaceholderMessage
|
|
19236
19247
|
* property.
|
|
@@ -75874,6 +75885,20 @@ declare namespace sap {
|
|
|
75874
75885
|
* Default value is `"100%"`.
|
|
75875
75886
|
*/
|
|
75876
75887
|
getHeight(): sap.ui.core.CSSSize;
|
|
75888
|
+
/**
|
|
75889
|
+
* Gets current value of property {@link #getIsTrustedSource isTrustedSource}.
|
|
75890
|
+
*
|
|
75891
|
+
* Parameter to determine if the given PDF is from a trusted source. If the source is valid this property
|
|
75892
|
+
* can be set to true. If isTrustedSource is set to true, the PDFViewer opens with the displayType set to
|
|
75893
|
+
* "Embedded" on desktop devices, which means that the PDF content is directly shown within the PDFViewer.
|
|
75894
|
+
* Set this property to true only when the PDF is generated by the application or the PDF is scanned for
|
|
75895
|
+
* viruses. If isTrustedSource is set to false, the PDFViewer opens with the displayType set to "Link" on
|
|
75896
|
+
* desktop devices, which overrides any configuration that has been provided by the application for the
|
|
75897
|
+
* property displayType. This means that the PDFViewer appears as a toolbar with a download button.
|
|
75898
|
+
*
|
|
75899
|
+
* Default value is `true`.
|
|
75900
|
+
*/
|
|
75901
|
+
getIsTrustedSource(): boolean;
|
|
75877
75902
|
/**
|
|
75878
75903
|
* Gets content of aggregation {@link #getPopupButtons popupButtons}.
|
|
75879
75904
|
*
|
|
@@ -76053,6 +76078,27 @@ declare namespace sap {
|
|
|
76053
76078
|
*/
|
|
76054
76079
|
sHeight?: sap.ui.core.CSSSize
|
|
76055
76080
|
): this;
|
|
76081
|
+
/**
|
|
76082
|
+
* Sets a new value for property {@link #getIsTrustedSource isTrustedSource}.
|
|
76083
|
+
*
|
|
76084
|
+
* Parameter to determine if the given PDF is from a trusted source. If the source is valid this property
|
|
76085
|
+
* can be set to true. If isTrustedSource is set to true, the PDFViewer opens with the displayType set to
|
|
76086
|
+
* "Embedded" on desktop devices, which means that the PDF content is directly shown within the PDFViewer.
|
|
76087
|
+
* Set this property to true only when the PDF is generated by the application or the PDF is scanned for
|
|
76088
|
+
* viruses. If isTrustedSource is set to false, the PDFViewer opens with the displayType set to "Link" on
|
|
76089
|
+
* desktop devices, which overrides any configuration that has been provided by the application for the
|
|
76090
|
+
* property displayType. This means that the PDFViewer appears as a toolbar with a download button.
|
|
76091
|
+
*
|
|
76092
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
76093
|
+
*
|
|
76094
|
+
* Default value is `true`.
|
|
76095
|
+
*/
|
|
76096
|
+
setIsTrustedSource(
|
|
76097
|
+
/**
|
|
76098
|
+
* New value for property `isTrustedSource`
|
|
76099
|
+
*/
|
|
76100
|
+
bIsTrustedSource?: boolean
|
|
76101
|
+
): this;
|
|
76056
76102
|
/**
|
|
76057
76103
|
* @deprecated (since 1.50.0) - replaced by {@link sap.m.PDFViewer#getTitle}.
|
|
76058
76104
|
*
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.sac.grid.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.27
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -180,7 +180,7 @@ declare namespace sap {
|
|
|
180
180
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
181
181
|
* following fields:
|
|
182
182
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
183
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.96.
|
|
183
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.96.27")
|
|
184
184
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
185
185
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
186
186
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -266,7 +266,7 @@ declare namespace sap {
|
|
|
266
266
|
* columns: aColumns,
|
|
267
267
|
* context: {
|
|
268
268
|
* application: 'Debug Test Application',
|
|
269
|
-
* version: '1.96.
|
|
269
|
+
* version: '1.96.27',
|
|
270
270
|
* title: 'Some random title',
|
|
271
271
|
* modifiedBy: 'John Doe',
|
|
272
272
|
* metaSheetName: 'Custom metadata',
|
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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.27
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -238,7 +238,7 @@ declare namespace sap {
|
|
|
238
238
|
static getType(): string;
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
|
-
* @SINCE 1.96.
|
|
241
|
+
* @SINCE 1.96.27
|
|
242
242
|
*
|
|
243
243
|
* Defines the Audiences.
|
|
244
244
|
*/
|
|
@@ -257,7 +257,7 @@ declare namespace sap {
|
|
|
257
257
|
Internal = "Internal",
|
|
258
258
|
}
|
|
259
259
|
/**
|
|
260
|
-
* @SINCE 1.96.
|
|
260
|
+
* @SINCE 1.96.27
|
|
261
261
|
*
|
|
262
262
|
* Issue Categories.
|
|
263
263
|
*/
|
|
@@ -312,7 +312,7 @@ declare namespace sap {
|
|
|
312
312
|
Usage = "Usage",
|
|
313
313
|
}
|
|
314
314
|
/**
|
|
315
|
-
* @SINCE 1.96.
|
|
315
|
+
* @SINCE 1.96.27
|
|
316
316
|
*
|
|
317
317
|
* Analysis history formats.
|
|
318
318
|
*/
|
|
@@ -327,7 +327,7 @@ declare namespace sap {
|
|
|
327
327
|
String = "String",
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
|
-
* @SINCE 1.96.
|
|
330
|
+
* @SINCE 1.96.27
|
|
331
331
|
*
|
|
332
332
|
* Defines severity types.
|
|
333
333
|
*/
|
|
@@ -346,7 +346,7 @@ declare namespace sap {
|
|
|
346
346
|
Medium = "Medium",
|
|
347
347
|
}
|
|
348
348
|
/**
|
|
349
|
-
* @SINCE 1.96.
|
|
349
|
+
* @SINCE 1.96.27
|
|
350
350
|
*
|
|
351
351
|
* Contains the available system presets.
|
|
352
352
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED