@sapui5/ts-types 1.97.2 → 1.100.0
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 +0 -4
- package/types/sap.apf.d.ts +2 -2
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +2 -240
- package/types/sap.f.d.ts +263 -636
- package/types/sap.fe.common.d.ts +2 -6
- package/types/sap.fe.core.d.ts +399 -305
- package/types/sap.fe.macros.d.ts +567 -36
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +5 -1
- package/types/sap.fe.test.d.ts +19 -14
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +827 -12
- package/types/sap.landvisz.d.ts +49 -1
- package/types/sap.m.d.ts +4111 -397
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +38 -3
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +3 -1
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +29 -7
- package/types/sap.suite.ui.microchart.d.ts +5 -5
- package/types/sap.tnt.d.ts +31 -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 +313 -46
- package/types/sap.ui.core.d.ts +2094 -799
- 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 +17 -5
- package/types/sap.ui.generic.app.d.ts +4 -3
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +49 -13
- package/types/sap.ui.layout.d.ts +7 -4
- package/types/sap.ui.mdc.d.ts +24 -6
- package/types/sap.ui.richtexteditor.d.ts +7 -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 -12
- package/types/sap.ui.table.d.ts +24 -2
- 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 -3
- package/types/sap.ui.vk.d.ts +124 -31
- package/types/sap.ui.vtm.d.ts +4 -4
- package/types/sap.uiext.inbox.d.ts +2 -2
- package/types/sap.ushell.d.ts +4999 -5059
- package/types/sap.ushell_abap.d.ts +1 -495
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +105 -231
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +2 -6
- package/types/sap.fe.placeholder.d.ts +0 -3
- package/types/sap.fe.plugins.d.ts +0 -3
- package/types/sap.fe.semantics.d.ts +0 -3
- package/types/sap.fe.tools.d.ts +0 -3
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.
|
|
1
|
+
// For Library Version: 1.100.0
|
|
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
|
*/
|
|
@@ -105,7 +112,8 @@ declare namespace sap {
|
|
|
105
112
|
* function (mParams) {
|
|
106
113
|
* alert("Value entered: " + mParams.newValue);
|
|
107
114
|
* },
|
|
108
|
-
* "Enter Product Bar Code"
|
|
115
|
+
* "Enter Product Bar Code",
|
|
116
|
+
* true
|
|
109
117
|
* );
|
|
110
118
|
* });
|
|
111
119
|
* ```
|
|
@@ -126,7 +134,11 @@ declare namespace sap {
|
|
|
126
134
|
/**
|
|
127
135
|
* Defines the bar code input dialog title. If unset, a predefined title will be used.
|
|
128
136
|
*/
|
|
129
|
-
dialogTitle?: string
|
|
137
|
+
dialogTitle?: string,
|
|
138
|
+
/**
|
|
139
|
+
* Flag, which defines whether the front or back camera should be used.
|
|
140
|
+
*/
|
|
141
|
+
preferFrontCamera?: boolean
|
|
130
142
|
): void;
|
|
131
143
|
}
|
|
132
144
|
const BarcodeScanner: BarcodeScanner;
|
|
@@ -415,6 +427,14 @@ declare namespace sap {
|
|
|
415
427
|
* Defines the bar code input dialog title. If unset, a predefined title will be used.
|
|
416
428
|
*/
|
|
417
429
|
getDialogTitle(): string;
|
|
430
|
+
/**
|
|
431
|
+
* Gets current value of property {@link #getPreferFrontCamera preferFrontCamera}.
|
|
432
|
+
*
|
|
433
|
+
* If set to true, the front camera will be used to decode.
|
|
434
|
+
*
|
|
435
|
+
* Default value is `false`.
|
|
436
|
+
*/
|
|
437
|
+
getPreferFrontCamera(): boolean;
|
|
418
438
|
/**
|
|
419
439
|
* Gets current value of property {@link #getProvideFallback provideFallback}.
|
|
420
440
|
*
|
|
@@ -452,6 +472,21 @@ declare namespace sap {
|
|
|
452
472
|
*/
|
|
453
473
|
sDialogTitle?: string
|
|
454
474
|
): this;
|
|
475
|
+
/**
|
|
476
|
+
* Sets a new value for property {@link #getPreferFrontCamera preferFrontCamera}.
|
|
477
|
+
*
|
|
478
|
+
* If set to true, the front camera will be used to decode.
|
|
479
|
+
*
|
|
480
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
481
|
+
*
|
|
482
|
+
* Default value is `false`.
|
|
483
|
+
*/
|
|
484
|
+
setPreferFrontCamera(
|
|
485
|
+
/**
|
|
486
|
+
* New value for property `preferFrontCamera`
|
|
487
|
+
*/
|
|
488
|
+
bPreferFrontCamera?: boolean
|
|
489
|
+
): this;
|
|
455
490
|
/**
|
|
456
491
|
* Sets a new value for property {@link #getProvideFallback provideFallback}.
|
|
457
492
|
*
|
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.rules.ui.d.ts
CHANGED
package/types/sap.sac.grid.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.100.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace sac {
|
|
@@ -628,6 +628,8 @@ declare namespace sap {
|
|
|
628
628
|
|
|
629
629
|
"sap/sac/grid/Format": undefined;
|
|
630
630
|
|
|
631
|
+
"sap/sac/grid/Grid": undefined;
|
|
632
|
+
|
|
631
633
|
"sap/sac/grid/library": undefined;
|
|
632
634
|
|
|
633
635
|
"sap/sac/grid/SemanticStyle": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.100.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -315,9 +315,9 @@ declare namespace sap {
|
|
|
315
315
|
}
|
|
316
316
|
): void;
|
|
317
317
|
/**
|
|
318
|
-
* This method should be implemented whenever application uses
|
|
318
|
+
* This method should be implemented whenever application uses onListNavigationExtension for internal navigation.
|
|
319
319
|
* In this case the implementation of this method should provide an 'inverse' mapping to the transformation
|
|
320
|
-
* implemented within
|
|
320
|
+
* implemented within onListNavigationExtension. More precisely, the identification of a child page instance
|
|
321
321
|
* is passed to this function. The implementation of this function should provide information about the
|
|
322
322
|
* list item which has triggered the opening of the child page.
|
|
323
323
|
*/
|
|
@@ -1211,6 +1211,28 @@ declare namespace sap {
|
|
|
1211
1211
|
aContexts: any[];
|
|
1212
1212
|
}
|
|
1213
1213
|
): Promise<any>;
|
|
1214
|
+
/**
|
|
1215
|
+
* This method should be implemented whenever the application needs to have a custom save functionality
|
|
1216
|
+
* for multi edit scenario. The logic for save should be defined here and this method should return a promise
|
|
1217
|
+
* based on whose resolution or rejection the framework would perform cleanup tasks like closing the dialog
|
|
1218
|
+
* and refreshing the table data.There will be no chaining of multi edit save from the framework, if the
|
|
1219
|
+
* extension is implemented then the framework will only execute extension code for save.
|
|
1220
|
+
*/
|
|
1221
|
+
beforeMultiEditSaveExtension(
|
|
1222
|
+
/**
|
|
1223
|
+
* The array of objects containing the contexts to be updated and the updated value.
|
|
1224
|
+
*/
|
|
1225
|
+
aContextsToBeUpdated: Array<{
|
|
1226
|
+
/**
|
|
1227
|
+
* The context path for the child to be updated.
|
|
1228
|
+
*/
|
|
1229
|
+
sContextPath: string;
|
|
1230
|
+
/**
|
|
1231
|
+
* The Object with the updated values for the selected properties in the multi edit dialog.
|
|
1232
|
+
*/
|
|
1233
|
+
oUpdateData: Object;
|
|
1234
|
+
}>
|
|
1235
|
+
): Promise<any>;
|
|
1214
1236
|
/**
|
|
1215
1237
|
* This method is called by SAP Fiori elements before persisting the AppState. Application developers can
|
|
1216
1238
|
* override this method for persisting the state of custom controls. State of the custom control (controls)
|
|
@@ -1320,9 +1342,9 @@ declare namespace sap {
|
|
|
1320
1342
|
oEvent: sap.ui.base.Event
|
|
1321
1343
|
): void;
|
|
1322
1344
|
/**
|
|
1323
|
-
* This method should be implemented whenever application uses
|
|
1345
|
+
* This method should be implemented whenever application uses onListNavigationExtension for internal navigation.
|
|
1324
1346
|
* In this case the implementation of this method should provide an 'inverse' mapping to the transformation
|
|
1325
|
-
* implemented within
|
|
1347
|
+
* implemented within onListNavigationExtension. More precisely, the identification of a child page instance
|
|
1326
1348
|
* is passed to this function. The implementation of this function should provide information about the
|
|
1327
1349
|
* list item which has triggered the opening of the child page.
|
|
1328
1350
|
*/
|
|
@@ -2103,9 +2125,9 @@ declare namespace sap {
|
|
|
2103
2125
|
oEvent: sap.ui.base.Event
|
|
2104
2126
|
): void;
|
|
2105
2127
|
/**
|
|
2106
|
-
* This method should be implemented whenever application uses
|
|
2128
|
+
* This method should be implemented whenever application uses onListNavigationExtension for internal navigation.
|
|
2107
2129
|
* In this case the implementation of this method should provide an 'inverse' mapping to the transformation
|
|
2108
|
-
* implemented within
|
|
2130
|
+
* implemented within onListNavigationExtension. More precisely, the identification of a child page instance
|
|
2109
2131
|
* is passed to this function. The implementation of this function should provide information about the
|
|
2110
2132
|
* list item which has triggered the opening of the child page.
|
|
2111
2133
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.100.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -3313,7 +3313,7 @@ declare namespace sap {
|
|
|
3313
3313
|
* The size of the microchart. If not set, the default size is applied based on the size of the device tile.
|
|
3314
3314
|
* Responsive size takes width and height of the parent container where the bullet micro chart is included.
|
|
3315
3315
|
*
|
|
3316
|
-
* Default value is `
|
|
3316
|
+
* Default value is `Auto`.
|
|
3317
3317
|
*/
|
|
3318
3318
|
getSize(): sap.m.Size;
|
|
3319
3319
|
/**
|
|
@@ -3689,7 +3689,7 @@ declare namespace sap {
|
|
|
3689
3689
|
*
|
|
3690
3690
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3691
3691
|
*
|
|
3692
|
-
* Default value is `
|
|
3692
|
+
* Default value is `Auto`.
|
|
3693
3693
|
*/
|
|
3694
3694
|
setSize(
|
|
3695
3695
|
/**
|
|
@@ -4163,7 +4163,7 @@ declare namespace sap {
|
|
|
4163
4163
|
* The size of the microchart. If not set, the default size is applied based on the size of the device tile.
|
|
4164
4164
|
* Responsive size takes width and height of the parent container where the column micro chart is included.
|
|
4165
4165
|
*
|
|
4166
|
-
* Default value is `
|
|
4166
|
+
* Default value is `Auto`.
|
|
4167
4167
|
*/
|
|
4168
4168
|
getSize(): sap.m.Size;
|
|
4169
4169
|
/**
|
|
@@ -4366,7 +4366,7 @@ declare namespace sap {
|
|
|
4366
4366
|
*
|
|
4367
4367
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4368
4368
|
*
|
|
4369
|
-
* Default value is `
|
|
4369
|
+
* Default value is `Auto`.
|
|
4370
4370
|
*/
|
|
4371
4371
|
setSize(
|
|
4372
4372
|
/**
|
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.100.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -185,6 +185,13 @@ declare namespace sap {
|
|
|
185
185
|
*/
|
|
186
186
|
selectedKey?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
187
187
|
|
|
188
|
+
/**
|
|
189
|
+
* @SINCE 1.98
|
|
190
|
+
*
|
|
191
|
+
* Specifies an optional aria-label that can be used by the screen readers.
|
|
192
|
+
*/
|
|
193
|
+
ariaLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
194
|
+
|
|
188
195
|
/**
|
|
189
196
|
* Defines the content inside the flexible part.
|
|
190
197
|
*/
|
|
@@ -1349,6 +1356,14 @@ declare namespace sap {
|
|
|
1349
1356
|
item?: sap.ui.core.Item;
|
|
1350
1357
|
}
|
|
1351
1358
|
): this;
|
|
1359
|
+
/**
|
|
1360
|
+
* @SINCE 1.98
|
|
1361
|
+
*
|
|
1362
|
+
* Gets current value of property {@link #getAriaLabel ariaLabel}.
|
|
1363
|
+
*
|
|
1364
|
+
* Specifies an optional aria-label that can be used by the screen readers.
|
|
1365
|
+
*/
|
|
1366
|
+
getAriaLabel(): string;
|
|
1352
1367
|
/**
|
|
1353
1368
|
* Gets current value of property {@link #getExpanded expanded}.
|
|
1354
1369
|
*
|
|
@@ -1390,6 +1405,21 @@ declare namespace sap {
|
|
|
1390
1405
|
* Specifies the currently selected key.
|
|
1391
1406
|
*/
|
|
1392
1407
|
getSelectedKey(): string;
|
|
1408
|
+
/**
|
|
1409
|
+
* @SINCE 1.98
|
|
1410
|
+
*
|
|
1411
|
+
* Sets a new value for property {@link #getAriaLabel ariaLabel}.
|
|
1412
|
+
*
|
|
1413
|
+
* Specifies an optional aria-label that can be used by the screen readers.
|
|
1414
|
+
*
|
|
1415
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1416
|
+
*/
|
|
1417
|
+
setAriaLabel(
|
|
1418
|
+
/**
|
|
1419
|
+
* New value for property `ariaLabel`
|
|
1420
|
+
*/
|
|
1421
|
+
sAriaLabel?: string
|
|
1422
|
+
): this;
|
|
1393
1423
|
/**
|
|
1394
1424
|
* Sets if the control is in expanded or collapsed mode.
|
|
1395
1425
|
*/
|