@openui5/ts-types 1.96.15 → 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/index.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +63 -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/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* Copyright 2009-
|
|
3
|
+
* Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
6
|
* you may not use this file except in compliance with the License.
|
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
|
/**
|
|
@@ -17966,6 +17966,15 @@ declare namespace sap {
|
|
|
17966
17966
|
| sap.m.EmptyIndicatorMode
|
|
17967
17967
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
17968
17968
|
|
|
17969
|
+
/**
|
|
17970
|
+
* @SINCE 1.110
|
|
17971
|
+
*
|
|
17972
|
+
* Еnables overriding of the default state announcement.
|
|
17973
|
+
*/
|
|
17974
|
+
stateAnnouncementText?:
|
|
17975
|
+
| string
|
|
17976
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
17977
|
+
|
|
17969
17978
|
/**
|
|
17970
17979
|
* Association to controls / IDs, which describe this control (see WAI-ARIA attribute aria-describedby).
|
|
17971
17980
|
*/
|
|
@@ -18595,6 +18604,13 @@ declare namespace sap {
|
|
|
18595
18604
|
*/
|
|
18596
18605
|
href?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18597
18606
|
|
|
18607
|
+
/**
|
|
18608
|
+
* @SINCE 1.96.18
|
|
18609
|
+
*
|
|
18610
|
+
* Defines href of a link.
|
|
18611
|
+
*/
|
|
18612
|
+
internalHref?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18613
|
+
|
|
18598
18614
|
/**
|
|
18599
18615
|
* Defines target of a link.
|
|
18600
18616
|
*/
|
|
@@ -67960,6 +67976,14 @@ declare namespace sap {
|
|
|
67960
67976
|
* Default value is `ValueState.None`.
|
|
67961
67977
|
*/
|
|
67962
67978
|
getState(): string;
|
|
67979
|
+
/**
|
|
67980
|
+
* @SINCE 1.110
|
|
67981
|
+
*
|
|
67982
|
+
* Gets current value of property {@link #getStateAnnouncementText stateAnnouncementText}.
|
|
67983
|
+
*
|
|
67984
|
+
* Еnables overriding of the default state announcement.
|
|
67985
|
+
*/
|
|
67986
|
+
getStateAnnouncementText(): string;
|
|
67963
67987
|
/**
|
|
67964
67988
|
* Gets current value of property {@link #getText text}.
|
|
67965
67989
|
*
|
|
@@ -68088,6 +68112,21 @@ declare namespace sap {
|
|
|
68088
68112
|
*/
|
|
68089
68113
|
sValue: string
|
|
68090
68114
|
): this;
|
|
68115
|
+
/**
|
|
68116
|
+
* @SINCE 1.110
|
|
68117
|
+
*
|
|
68118
|
+
* Sets a new value for property {@link #getStateAnnouncementText stateAnnouncementText}.
|
|
68119
|
+
*
|
|
68120
|
+
* Еnables overriding of the default state announcement.
|
|
68121
|
+
*
|
|
68122
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
68123
|
+
*/
|
|
68124
|
+
setStateAnnouncementText(
|
|
68125
|
+
/**
|
|
68126
|
+
* New value for property `stateAnnouncementText`
|
|
68127
|
+
*/
|
|
68128
|
+
sStateAnnouncementText: string
|
|
68129
|
+
): this;
|
|
68091
68130
|
/**
|
|
68092
68131
|
* Sets a new value for property {@link #getText text}.
|
|
68093
68132
|
*
|
|
@@ -72230,6 +72269,14 @@ declare namespace sap {
|
|
|
72230
72269
|
* Defines href of a link.
|
|
72231
72270
|
*/
|
|
72232
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;
|
|
72233
72280
|
/**
|
|
72234
72281
|
* Gets current value of property {@link #getIsDefault isDefault}.
|
|
72235
72282
|
*
|
|
@@ -72416,6 +72463,21 @@ declare namespace sap {
|
|
|
72416
72463
|
*/
|
|
72417
72464
|
sHref?: string
|
|
72418
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;
|
|
72419
72481
|
/**
|
|
72420
72482
|
* Sets a new value for property {@link #getIsDefault isDefault}.
|
|
72421
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