@openui5/ts-types 1.114.10 → 1.114.12
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 +48 -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 +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.114.
|
|
1
|
+
// For Library Version: 1.114.12
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -18165,6 +18165,18 @@ declare namespace sap {
|
|
|
18165
18165
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18166
18166
|
| `{${string}}`;
|
|
18167
18167
|
|
|
18168
|
+
/**
|
|
18169
|
+
* @SINCE 1.120.0
|
|
18170
|
+
*
|
|
18171
|
+
* Determines whether the `Avatar` is active/toggled (default is set to `false`). Active state is meant
|
|
18172
|
+
* to be toggled when user clicks on the `Avatar`. The Active state is only applied, when the `Avatar` has
|
|
18173
|
+
* `press` listeners.
|
|
18174
|
+
*/
|
|
18175
|
+
active?:
|
|
18176
|
+
| boolean
|
|
18177
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18178
|
+
| `{${string}}`;
|
|
18179
|
+
|
|
18168
18180
|
/**
|
|
18169
18181
|
* A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
|
|
18170
18182
|
* control.
|
|
@@ -39223,6 +39235,20 @@ declare namespace sap {
|
|
|
39223
39235
|
*/
|
|
39224
39236
|
mParameters?: object
|
|
39225
39237
|
): this;
|
|
39238
|
+
/**
|
|
39239
|
+
* @SINCE 1.120.0
|
|
39240
|
+
*
|
|
39241
|
+
* Gets current value of property {@link #getActive active}.
|
|
39242
|
+
*
|
|
39243
|
+
* Determines whether the `Avatar` is active/toggled (default is set to `false`). Active state is meant
|
|
39244
|
+
* to be toggled when user clicks on the `Avatar`. The Active state is only applied, when the `Avatar` has
|
|
39245
|
+
* `press` listeners.
|
|
39246
|
+
*
|
|
39247
|
+
* Default value is `false`.
|
|
39248
|
+
*
|
|
39249
|
+
* @returns Value of property `active`
|
|
39250
|
+
*/
|
|
39251
|
+
getActive(): boolean;
|
|
39226
39252
|
/**
|
|
39227
39253
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
39228
39254
|
* ariaDescribedBy}.
|
|
@@ -39465,6 +39491,27 @@ declare namespace sap {
|
|
|
39465
39491
|
*/
|
|
39466
39492
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
39467
39493
|
): sap.ui.core.ID | null;
|
|
39494
|
+
/**
|
|
39495
|
+
* @SINCE 1.120.0
|
|
39496
|
+
*
|
|
39497
|
+
* Sets a new value for property {@link #getActive active}.
|
|
39498
|
+
*
|
|
39499
|
+
* Determines whether the `Avatar` is active/toggled (default is set to `false`). Active state is meant
|
|
39500
|
+
* to be toggled when user clicks on the `Avatar`. The Active state is only applied, when the `Avatar` has
|
|
39501
|
+
* `press` listeners.
|
|
39502
|
+
*
|
|
39503
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39504
|
+
*
|
|
39505
|
+
* Default value is `false`.
|
|
39506
|
+
*
|
|
39507
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
39508
|
+
*/
|
|
39509
|
+
setActive(
|
|
39510
|
+
/**
|
|
39511
|
+
* New value for property `active`
|
|
39512
|
+
*/
|
|
39513
|
+
bActive?: boolean
|
|
39514
|
+
): this;
|
|
39468
39515
|
/**
|
|
39469
39516
|
* @SINCE 1.99.0
|
|
39470
39517
|
*
|
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
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED