@sapui5/ts-types 1.96.4 → 1.96.5
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.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.d.ts +1 -1
- package/types/sap.fe.semantics.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.m.d.ts +53 -9
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +31 -1
- package/types/sap.ovp.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 +2 -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.ui.vbm.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/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.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.4
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -13771,6 +13771,14 @@ declare namespace sap {
|
|
|
13771
13771
|
*/
|
|
13772
13772
|
value?: sap.m.ObjectNumber;
|
|
13773
13773
|
|
|
13774
|
+
/**
|
|
13775
|
+
* @SINCE 1.96.4
|
|
13776
|
+
*
|
|
13777
|
+
* Association to controls / ids which label this control (see WAI-ARIA attribute aria-labelledBy). Note:
|
|
13778
|
+
* This is a downported feature introduced in version 1.97.0.
|
|
13779
|
+
*/
|
|
13780
|
+
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
13781
|
+
|
|
13774
13782
|
/**
|
|
13775
13783
|
* Fired when the user clicks/taps on the control.
|
|
13776
13784
|
*/
|
|
@@ -17162,6 +17170,9 @@ declare namespace sap {
|
|
|
17162
17170
|
/**
|
|
17163
17171
|
* Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
|
|
17164
17172
|
* icon is not available, or cannot be displayed.
|
|
17173
|
+
*
|
|
17174
|
+
* **Note:** Provide an empty string value for the `iconAlt` property in case you want to use the icon for
|
|
17175
|
+
* decoration only.
|
|
17165
17176
|
*/
|
|
17166
17177
|
iconAlt?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
17167
17178
|
|
|
@@ -44056,6 +44067,17 @@ declare namespace sap {
|
|
|
44056
44067
|
* Returns a metadata object for class sap.m.GenericTag.
|
|
44057
44068
|
*/
|
|
44058
44069
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
44070
|
+
/**
|
|
44071
|
+
* @SINCE 1.96.4
|
|
44072
|
+
*
|
|
44073
|
+
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
44074
|
+
*/
|
|
44075
|
+
addAriaLabelledBy(
|
|
44076
|
+
/**
|
|
44077
|
+
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
44078
|
+
*/
|
|
44079
|
+
vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
|
|
44080
|
+
): this;
|
|
44059
44081
|
/**
|
|
44060
44082
|
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.GenericTag`.
|
|
44061
44083
|
*
|
|
@@ -44125,6 +44147,13 @@ declare namespace sap {
|
|
|
44125
44147
|
*/
|
|
44126
44148
|
mParameters?: object
|
|
44127
44149
|
): this;
|
|
44150
|
+
/**
|
|
44151
|
+
* @SINCE 1.96.4
|
|
44152
|
+
*
|
|
44153
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
44154
|
+
* ariaLabelledBy}.
|
|
44155
|
+
*/
|
|
44156
|
+
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
44128
44157
|
/**
|
|
44129
44158
|
* Gets current value of property {@link #getDesign design}.
|
|
44130
44159
|
*
|
|
@@ -44171,6 +44200,23 @@ declare namespace sap {
|
|
|
44171
44200
|
* Default value is `None`.
|
|
44172
44201
|
*/
|
|
44173
44202
|
getValueState(): sap.m.GenericTagValueState;
|
|
44203
|
+
/**
|
|
44204
|
+
* @SINCE 1.96.4
|
|
44205
|
+
*
|
|
44206
|
+
* Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
44207
|
+
*/
|
|
44208
|
+
removeAllAriaLabelledBy(): sap.ui.core.ID[];
|
|
44209
|
+
/**
|
|
44210
|
+
* @SINCE 1.96.4
|
|
44211
|
+
*
|
|
44212
|
+
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
44213
|
+
*/
|
|
44214
|
+
removeAriaLabelledBy(
|
|
44215
|
+
/**
|
|
44216
|
+
* The ariaLabelledBy to be removed or its index or ID
|
|
44217
|
+
*/
|
|
44218
|
+
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
44219
|
+
): sap.ui.core.ID;
|
|
44174
44220
|
/**
|
|
44175
44221
|
* Sets a new value for property {@link #getDesign design}.
|
|
44176
44222
|
*
|
|
@@ -64927,6 +64973,9 @@ declare namespace sap {
|
|
|
64927
64973
|
*
|
|
64928
64974
|
* Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
|
|
64929
64975
|
* icon is not available, or cannot be displayed.
|
|
64976
|
+
*
|
|
64977
|
+
* **Note:** Provide an empty string value for the `iconAlt` property in case you want to use the icon for
|
|
64978
|
+
* decoration only.
|
|
64930
64979
|
*/
|
|
64931
64980
|
getIconAlt(): string;
|
|
64932
64981
|
/**
|
|
@@ -65515,18 +65564,13 @@ declare namespace sap {
|
|
|
65515
65564
|
bIconActive?: boolean
|
|
65516
65565
|
): this;
|
|
65517
65566
|
/**
|
|
65518
|
-
* Sets
|
|
65519
|
-
*
|
|
65520
|
-
* Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
|
|
65521
|
-
* icon is not available, or cannot be displayed.
|
|
65522
|
-
*
|
|
65523
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
65567
|
+
* Sets the alternative text of the `ObjectHeader` icon.
|
|
65524
65568
|
*/
|
|
65525
65569
|
setIconAlt(
|
|
65526
65570
|
/**
|
|
65527
|
-
*
|
|
65571
|
+
* the alternative icon text
|
|
65528
65572
|
*/
|
|
65529
|
-
sIconAlt
|
|
65573
|
+
sIconAlt: boolean
|
|
65530
65574
|
): this;
|
|
65531
65575
|
/**
|
|
65532
65576
|
* Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.4
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -31,6 +31,13 @@ declare namespace sap {
|
|
|
31
31
|
*/
|
|
32
32
|
dialogTitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
33
33
|
|
|
34
|
+
/**
|
|
35
|
+
* If set to true, the front camera will be used to decode.
|
|
36
|
+
*/
|
|
37
|
+
preferFrontCamera?:
|
|
38
|
+
| boolean
|
|
39
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
40
|
+
|
|
34
41
|
/**
|
|
35
42
|
* Event is fired when the scanning is finished or cancelled
|
|
36
43
|
*/
|
|
@@ -415,6 +422,14 @@ declare namespace sap {
|
|
|
415
422
|
* Defines the bar code input dialog title. If unset, a predefined title will be used.
|
|
416
423
|
*/
|
|
417
424
|
getDialogTitle(): string;
|
|
425
|
+
/**
|
|
426
|
+
* Gets current value of property {@link #getPreferFrontCamera preferFrontCamera}.
|
|
427
|
+
*
|
|
428
|
+
* If set to true, the front camera will be used to decode.
|
|
429
|
+
*
|
|
430
|
+
* Default value is `false`.
|
|
431
|
+
*/
|
|
432
|
+
getPreferFrontCamera(): boolean;
|
|
418
433
|
/**
|
|
419
434
|
* Gets current value of property {@link #getProvideFallback provideFallback}.
|
|
420
435
|
*
|
|
@@ -452,6 +467,21 @@ declare namespace sap {
|
|
|
452
467
|
*/
|
|
453
468
|
sDialogTitle?: string
|
|
454
469
|
): this;
|
|
470
|
+
/**
|
|
471
|
+
* Sets a new value for property {@link #getPreferFrontCamera preferFrontCamera}.
|
|
472
|
+
*
|
|
473
|
+
* If set to true, the front camera will be used to decode.
|
|
474
|
+
*
|
|
475
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
476
|
+
*
|
|
477
|
+
* Default value is `false`.
|
|
478
|
+
*/
|
|
479
|
+
setPreferFrontCamera(
|
|
480
|
+
/**
|
|
481
|
+
* New value for property `preferFrontCamera`
|
|
482
|
+
*/
|
|
483
|
+
bPreferFrontCamera?: boolean
|
|
484
|
+
): this;
|
|
455
485
|
/**
|
|
456
486
|
* Sets a new value for property {@link #getProvideFallback provideFallback}.
|
|
457
487
|
*
|
package/types/sap.ovp.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
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.96.
|
|
267
|
+
// For Library Version: 1.96.4
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -47686,6 +47686,7 @@ declare namespace sap {
|
|
|
47686
47686
|
isInitial(): boolean;
|
|
47687
47687
|
/**
|
|
47688
47688
|
* @SINCE 1.95.0
|
|
47689
|
+
* @deprecated (since 1.96.5)
|
|
47689
47690
|
* @EXPERIMENTAL
|
|
47690
47691
|
*
|
|
47691
47692
|
* Moves the bound entity into the given list binding. This binding loses its data. The method may only
|
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.4
|
|
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.4")
|
|
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.4',
|
|
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.4
|
|
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.4
|
|
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.4
|
|
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.4
|
|
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.4
|
|
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.4
|
|
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.ui.vbm.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED