@openui5/ts-types 1.96.40 → 1.96.42
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 +23 -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 +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 +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.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.96.
|
|
1
|
+
// For Library Version: 1.96.42
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -19284,10 +19284,16 @@ declare namespace sap {
|
|
|
19284
19284
|
error?: (oEvent: sap.ui.base.Event) => void;
|
|
19285
19285
|
|
|
19286
19286
|
/**
|
|
19287
|
+
* @deprecated (since 1.96.44) - with no replacement.
|
|
19288
|
+
*
|
|
19287
19289
|
* This event is fired when the PDF viewer control cannot check the loaded content. For example, the default
|
|
19288
19290
|
* configuration of the Mozilla Firefox browser may not allow checking the loaded content. This may also
|
|
19289
19291
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
19290
19292
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
19293
|
+
*
|
|
19294
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
19295
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
19296
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
19291
19297
|
*/
|
|
19292
19298
|
sourceValidationFailed?: (oEvent: sap.ui.base.Event) => void;
|
|
19293
19299
|
}
|
|
@@ -75765,6 +75771,8 @@ declare namespace sap {
|
|
|
75765
75771
|
oListener?: object
|
|
75766
75772
|
): this;
|
|
75767
75773
|
/**
|
|
75774
|
+
* @deprecated (since 1.96.44) - with no replacement.
|
|
75775
|
+
*
|
|
75768
75776
|
* Attaches event handler `fnFunction` to the {@link #event:sourceValidationFailed sourceValidationFailed}
|
|
75769
75777
|
* event of this `sap.m.PDFViewer`.
|
|
75770
75778
|
*
|
|
@@ -75775,6 +75783,10 @@ declare namespace sap {
|
|
|
75775
75783
|
* configuration of the Mozilla Firefox browser may not allow checking the loaded content. This may also
|
|
75776
75784
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
75777
75785
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
75786
|
+
*
|
|
75787
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
75788
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
75789
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
75778
75790
|
*/
|
|
75779
75791
|
attachSourceValidationFailed(
|
|
75780
75792
|
/**
|
|
@@ -75792,6 +75804,8 @@ declare namespace sap {
|
|
|
75792
75804
|
oListener?: object
|
|
75793
75805
|
): this;
|
|
75794
75806
|
/**
|
|
75807
|
+
* @deprecated (since 1.96.44) - with no replacement.
|
|
75808
|
+
*
|
|
75795
75809
|
* Attaches event handler `fnFunction` to the {@link #event:sourceValidationFailed sourceValidationFailed}
|
|
75796
75810
|
* event of this `sap.m.PDFViewer`.
|
|
75797
75811
|
*
|
|
@@ -75802,6 +75816,10 @@ declare namespace sap {
|
|
|
75802
75816
|
* configuration of the Mozilla Firefox browser may not allow checking the loaded content. This may also
|
|
75803
75817
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
75804
75818
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
75819
|
+
*
|
|
75820
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
75821
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
75822
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
75805
75823
|
*/
|
|
75806
75824
|
attachSourceValidationFailed(
|
|
75807
75825
|
/**
|
|
@@ -75852,6 +75870,8 @@ declare namespace sap {
|
|
|
75852
75870
|
oListener?: object
|
|
75853
75871
|
): this;
|
|
75854
75872
|
/**
|
|
75873
|
+
* @deprecated (since 1.96.44) - with no replacement.
|
|
75874
|
+
*
|
|
75855
75875
|
* Detaches event handler `fnFunction` from the {@link #event:sourceValidationFailed sourceValidationFailed}
|
|
75856
75876
|
* event of this `sap.m.PDFViewer`.
|
|
75857
75877
|
*
|
|
@@ -75895,6 +75915,8 @@ declare namespace sap {
|
|
|
75895
75915
|
mParameters?: object
|
|
75896
75916
|
): this;
|
|
75897
75917
|
/**
|
|
75918
|
+
* @deprecated (since 1.96.44) - with no replacement.
|
|
75919
|
+
*
|
|
75898
75920
|
* Fires event {@link #event:sourceValidationFailed sourceValidationFailed} to attached listeners.
|
|
75899
75921
|
*/
|
|
75900
75922
|
fireSourceValidationFailed(
|
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
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.42
|
|
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.42
|
|
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.42
|
|
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.42
|
|
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.42
|
|
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.42
|
|
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.uxap.d.ts
CHANGED