@openui5/ts-types 1.96.16 → 1.96.17
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 +31 -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.17
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -18604,6 +18604,13 @@ declare namespace sap {
|
|
|
18604
18604
|
*/
|
|
18605
18605
|
href?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18606
18606
|
|
|
18607
|
+
/**
|
|
18608
|
+
* @SINCE 1.96.18
|
|
18609
|
+
*
|
|
18610
|
+
* Defines href of a link.
|
|
18611
|
+
*/
|
|
18612
|
+
internalHref?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18613
|
+
|
|
18607
18614
|
/**
|
|
18608
18615
|
* Defines target of a link.
|
|
18609
18616
|
*/
|
|
@@ -72262,6 +72269,14 @@ declare namespace sap {
|
|
|
72262
72269
|
* Defines href of a link.
|
|
72263
72270
|
*/
|
|
72264
72271
|
getHref(): string;
|
|
72272
|
+
/**
|
|
72273
|
+
* @SINCE 1.96.18
|
|
72274
|
+
*
|
|
72275
|
+
* Gets current value of property {@link #getInternalHref internalHref}.
|
|
72276
|
+
*
|
|
72277
|
+
* Defines href of a link.
|
|
72278
|
+
*/
|
|
72279
|
+
getInternalHref(): string;
|
|
72265
72280
|
/**
|
|
72266
72281
|
* Gets current value of property {@link #getIsDefault isDefault}.
|
|
72267
72282
|
*
|
|
@@ -72448,6 +72463,21 @@ declare namespace sap {
|
|
|
72448
72463
|
*/
|
|
72449
72464
|
sHref?: string
|
|
72450
72465
|
): this;
|
|
72466
|
+
/**
|
|
72467
|
+
* @SINCE 1.96.18
|
|
72468
|
+
*
|
|
72469
|
+
* Sets a new value for property {@link #getInternalHref internalHref}.
|
|
72470
|
+
*
|
|
72471
|
+
* Defines href of a link.
|
|
72472
|
+
*
|
|
72473
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
72474
|
+
*/
|
|
72475
|
+
setInternalHref(
|
|
72476
|
+
/**
|
|
72477
|
+
* New value for property `internalHref`
|
|
72478
|
+
*/
|
|
72479
|
+
sInternalHref?: string
|
|
72480
|
+
): this;
|
|
72451
72481
|
/**
|
|
72452
72482
|
* Sets a new value for property {@link #getIsDefault isDefault}.
|
|
72453
72483
|
*
|
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.17
|
|
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.17
|
|
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.17
|
|
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.17
|
|
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.17
|
|
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.17
|
|
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