@sapui5/types 1.120.1 → 1.120.3
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.f.d.ts +1 -1
- package/types/sap.fe.core.d.ts +6 -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.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.m.d.ts +27 -9
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +41 -2
- package/types/sap.rules.ui.d.ts +59 -1
- package/types/sap.suite.ui.generic.template.d.ts +20 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +9 -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 +2 -2
- package/types/sap.ui.core.d.ts +352 -64
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +5 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +7 -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 +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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +25 -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.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/core/AppComponent" {
|
|
4
4
|
import {
|
|
@@ -427,6 +427,11 @@ declare module "sap/fe/core/controllerextensions/EditFlow" {
|
|
|
427
427
|
* the parent context of the created document
|
|
428
428
|
*/
|
|
429
429
|
selectedContexts?: Context[];
|
|
430
|
+
/**
|
|
431
|
+
* When enabled, an extra request checks if any drafts exist that were never saved. If unsaved drafts are
|
|
432
|
+
* found, the newest one is opened. If no unsaved drafts are found, a new entity is created
|
|
433
|
+
*/
|
|
434
|
+
singleDraftForCreate?: boolean;
|
|
430
435
|
/**
|
|
431
436
|
* ID of the table
|
|
432
437
|
*/
|
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.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -1207,6 +1207,8 @@ declare module "sap/m/library" {
|
|
|
1207
1207
|
|
|
1208
1208
|
/**
|
|
1209
1209
|
* @since 1.21.2
|
|
1210
|
+
* @deprecated (since 1.120) - In case of SAPUI5, see demokit sample 'Smart Field with ValueList Annotation'.
|
|
1211
|
+
* In case of OpenUI5, see demokit sample 'Input - Suggestions - Dynamic'.
|
|
1210
1212
|
*
|
|
1211
1213
|
* Suggestion helper for `sap.m.Input` fields when used with an OData model.
|
|
1212
1214
|
*
|
|
@@ -13901,7 +13903,12 @@ declare module "sap/m/ColumnListItem" {
|
|
|
13901
13903
|
*
|
|
13902
13904
|
* @returns jQuery object
|
|
13903
13905
|
*/
|
|
13904
|
-
getTabbables(
|
|
13906
|
+
getTabbables(
|
|
13907
|
+
/**
|
|
13908
|
+
* Whether only tabbables of data cells
|
|
13909
|
+
*/
|
|
13910
|
+
bContentOnly?: undefined
|
|
13911
|
+
): jQuery;
|
|
13905
13912
|
/**
|
|
13906
13913
|
* @since 1.20
|
|
13907
13914
|
*
|
|
@@ -38933,7 +38940,8 @@ declare module "sap/m/Input" {
|
|
|
38933
38940
|
* Gets current value of property {@link #getEnableSuggestionsHighlighting enableSuggestionsHighlighting}.
|
|
38934
38941
|
*
|
|
38935
38942
|
* Specifies whether the suggestions highlighting is enabled. **Note:** Due to performance constraints,
|
|
38936
|
-
* the functionality will be disabled above 200 items.
|
|
38943
|
+
* the functionality will be disabled above 200 items. **Note:** Highlighting in table suggestions will
|
|
38944
|
+
* work only for cells containing sap.m.Label or sap.m.Text controls.
|
|
38937
38945
|
*
|
|
38938
38946
|
* Default value is `true`.
|
|
38939
38947
|
*
|
|
@@ -39634,7 +39642,8 @@ declare module "sap/m/Input" {
|
|
|
39634
39642
|
* Sets a new value for property {@link #getEnableSuggestionsHighlighting enableSuggestionsHighlighting}.
|
|
39635
39643
|
*
|
|
39636
39644
|
* Specifies whether the suggestions highlighting is enabled. **Note:** Due to performance constraints,
|
|
39637
|
-
* the functionality will be disabled above 200 items.
|
|
39645
|
+
* the functionality will be disabled above 200 items. **Note:** Highlighting in table suggestions will
|
|
39646
|
+
* work only for cells containing sap.m.Label or sap.m.Text controls.
|
|
39638
39647
|
*
|
|
39639
39648
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39640
39649
|
*
|
|
@@ -40352,7 +40361,8 @@ declare module "sap/m/Input" {
|
|
|
40352
40361
|
* @since 1.46
|
|
40353
40362
|
*
|
|
40354
40363
|
* Specifies whether the suggestions highlighting is enabled. **Note:** Due to performance constraints,
|
|
40355
|
-
* the functionality will be disabled above 200 items.
|
|
40364
|
+
* the functionality will be disabled above 200 items. **Note:** Highlighting in table suggestions will
|
|
40365
|
+
* work only for cells containing sap.m.Label or sap.m.Text controls.
|
|
40356
40366
|
*/
|
|
40357
40367
|
enableSuggestionsHighlighting?:
|
|
40358
40368
|
| boolean
|
|
@@ -48433,7 +48443,12 @@ declare module "sap/m/ListItemBase" {
|
|
|
48433
48443
|
*
|
|
48434
48444
|
* @returns jQuery object
|
|
48435
48445
|
*/
|
|
48436
|
-
getTabbables(
|
|
48446
|
+
getTabbables(
|
|
48447
|
+
/**
|
|
48448
|
+
* Whether only tabbables of the content area
|
|
48449
|
+
*/
|
|
48450
|
+
bContentOnly?: undefined
|
|
48451
|
+
): jQuery;
|
|
48437
48452
|
/**
|
|
48438
48453
|
* Gets current value of property {@link #getType type}.
|
|
48439
48454
|
*
|
|
@@ -85077,6 +85092,9 @@ declare module "sap/m/plugins/CopyProvider" {
|
|
|
85077
85092
|
* Creates and returns a Copy button that can be used to trigger a copy action, for example, from the table
|
|
85078
85093
|
* toolbar.
|
|
85079
85094
|
*
|
|
85095
|
+
* **Note:** The `visible` and `enabled` properties of the Copy button must be managed through this plugin's
|
|
85096
|
+
* own `visible` and `enabled` properties.
|
|
85097
|
+
*
|
|
85080
85098
|
* @returns The button instance
|
|
85081
85099
|
*/
|
|
85082
85100
|
getCopyButton(
|
|
@@ -85143,7 +85161,7 @@ declare module "sap/m/plugins/CopyProvider" {
|
|
|
85143
85161
|
* For the `sap.m.Table` control, if the `items` aggregation of the table is not bound then the callback
|
|
85144
85162
|
* function gets called with the row instance instead of the binding context.
|
|
85145
85163
|
* The callback function must return the cell data that is then stringified and copied to the clipboard.
|
|
85146
|
-
* If an array is returned from the callback function, then each array
|
|
85164
|
+
* If an array is returned from the callback function, then each array value will be copied as a separate
|
|
85147
85165
|
* cell into the clipboard.
|
|
85148
85166
|
* If a column should not be copied to the clipboard, then the callback function must return `undefined`
|
|
85149
85167
|
* or `null` for each cell of the same column.
|
|
@@ -85253,7 +85271,7 @@ declare module "sap/m/plugins/CopyProvider" {
|
|
|
85253
85271
|
* For the `sap.m.Table` control, if the `items` aggregation of the table is not bound then the callback
|
|
85254
85272
|
* function gets called with the row instance instead of the binding context.
|
|
85255
85273
|
* The callback function must return the cell data that is then stringified and copied to the clipboard.
|
|
85256
|
-
* If an array is returned from the callback function, then each array
|
|
85274
|
+
* If an array is returned from the callback function, then each array value will be copied as a separate
|
|
85257
85275
|
* cell into the clipboard.
|
|
85258
85276
|
* If a column should not be copied to the clipboard, then the callback function must return `undefined`
|
|
85259
85277
|
* or `null` for each cell of the same column.
|
|
@@ -85321,7 +85339,7 @@ declare module "sap/m/plugins/CopyProvider" {
|
|
|
85321
85339
|
* For the `sap.m.Table` control, if the `items` aggregation of the table is not bound then the callback
|
|
85322
85340
|
* function gets called with the row instance instead of the binding context.
|
|
85323
85341
|
* The callback function must return the cell data that is then stringified and copied to the clipboard.
|
|
85324
|
-
* If an array is returned from the callback function, then each array
|
|
85342
|
+
* If an array is returned from the callback function, then each array value will be copied as a separate
|
|
85325
85343
|
* cell into the clipboard.
|
|
85326
85344
|
* If a column should not be copied to the clipboard, then the callback function must return `undefined`
|
|
85327
85345
|
* or `null` for each cell of the same column.
|
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.120.
|
|
1
|
+
// For Library Version: 1.120.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ndc/library" {}
|
|
4
4
|
|
|
@@ -34,6 +34,8 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
34
34
|
* for detailed information (recommended).
|
|
35
35
|
* - Developers can load these files directly into an HTML file. Refer to Enabling the API for detailed
|
|
36
36
|
* information.
|
|
37
|
+
* - Developers can refer to the KBA
|
|
38
|
+
* 3390217 for guidance on configuring Zebra Enterprise Browser.
|
|
37
39
|
*/
|
|
38
40
|
interface BarcodeScanner {
|
|
39
41
|
/**
|
|
@@ -163,6 +165,7 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
163
165
|
* true,
|
|
164
166
|
* 30,
|
|
165
167
|
* 1,
|
|
168
|
+
* false,
|
|
166
169
|
* false
|
|
167
170
|
* );
|
|
168
171
|
* });
|
|
@@ -200,7 +203,11 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
200
203
|
/**
|
|
201
204
|
* Flag, which defines whether the camera should be used for scanning in Zebra Enterprise Browser.
|
|
202
205
|
*/
|
|
203
|
-
keepCameraScan?: boolean
|
|
206
|
+
keepCameraScan?: boolean,
|
|
207
|
+
/**
|
|
208
|
+
* Flag, which defines whether the Barcode input dialog should be shown.
|
|
209
|
+
*/
|
|
210
|
+
disableBarcodeInputDialog?: boolean
|
|
204
211
|
): void;
|
|
205
212
|
/**
|
|
206
213
|
* Set the configs of the control Barcode Scanner.
|
|
@@ -572,6 +579,16 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
572
579
|
* @returns Value of property `dialogTitle`
|
|
573
580
|
*/
|
|
574
581
|
getDialogTitle(): string;
|
|
582
|
+
/**
|
|
583
|
+
* Gets current value of property {@link #getDisableBarcodeInputDialog disableBarcodeInputDialog}.
|
|
584
|
+
*
|
|
585
|
+
* If the value is true, the Barcode input dialog should be hidden.
|
|
586
|
+
*
|
|
587
|
+
* Default value is `false`.
|
|
588
|
+
*
|
|
589
|
+
* @returns Value of property `disableBarcodeInputDialog`
|
|
590
|
+
*/
|
|
591
|
+
getDisableBarcodeInputDialog(): boolean;
|
|
575
592
|
/**
|
|
576
593
|
* Gets current value of property {@link #getFrameRate frameRate}.
|
|
577
594
|
*
|
|
@@ -642,6 +659,23 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
642
659
|
*/
|
|
643
660
|
sDialogTitle?: string
|
|
644
661
|
): this;
|
|
662
|
+
/**
|
|
663
|
+
* Sets a new value for property {@link #getDisableBarcodeInputDialog disableBarcodeInputDialog}.
|
|
664
|
+
*
|
|
665
|
+
* If the value is true, the Barcode input dialog should be hidden.
|
|
666
|
+
*
|
|
667
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
668
|
+
*
|
|
669
|
+
* Default value is `false`.
|
|
670
|
+
*
|
|
671
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
672
|
+
*/
|
|
673
|
+
setDisableBarcodeInputDialog(
|
|
674
|
+
/**
|
|
675
|
+
* New value for property `disableBarcodeInputDialog`
|
|
676
|
+
*/
|
|
677
|
+
bDisableBarcodeInputDialog?: boolean
|
|
678
|
+
): this;
|
|
645
679
|
/**
|
|
646
680
|
* Sets a new value for property {@link #getFrameRate frameRate}.
|
|
647
681
|
*
|
|
@@ -778,6 +812,11 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
778
812
|
*/
|
|
779
813
|
keepCameraScan?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
780
814
|
|
|
815
|
+
/**
|
|
816
|
+
* If the value is true, the Barcode input dialog should be hidden.
|
|
817
|
+
*/
|
|
818
|
+
disableBarcodeInputDialog?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
819
|
+
|
|
781
820
|
/**
|
|
782
821
|
* Event is fired when the scanning is finished or cancelled
|
|
783
822
|
*/
|
package/types/sap.rules.ui.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/rules/ui/library" {
|
|
4
4
|
/**
|
|
@@ -78,6 +78,9 @@ declare module "sap/rules/ui/library" {
|
|
|
78
78
|
Timestamp = "Timestamp",
|
|
79
79
|
}
|
|
80
80
|
/**
|
|
81
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
82
|
+
* Authoring APIs.
|
|
83
|
+
*
|
|
81
84
|
* An enumeration that defines the output when more than one rule in the decision table is matched for a
|
|
82
85
|
* given set of inputs.
|
|
83
86
|
*/
|
|
@@ -291,6 +294,9 @@ declare module "sap/rules/ui/DecisionTableConfiguration" {
|
|
|
291
294
|
*/
|
|
292
295
|
getDecisionTableFormat(): DecisionTableFormat;
|
|
293
296
|
/**
|
|
297
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
298
|
+
* Authoring APIs.
|
|
299
|
+
*
|
|
294
300
|
* Gets current value of property {@link #getEnableSettingResult enableSettingResult}.
|
|
295
301
|
*
|
|
296
302
|
* Default value is `true`.
|
|
@@ -299,6 +305,9 @@ declare module "sap/rules/ui/DecisionTableConfiguration" {
|
|
|
299
305
|
*/
|
|
300
306
|
getEnableSettingResult(): boolean;
|
|
301
307
|
/**
|
|
308
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
309
|
+
* Authoring APIs.
|
|
310
|
+
*
|
|
302
311
|
* Gets current value of property {@link #getEnableSettings enableSettings}.
|
|
303
312
|
*
|
|
304
313
|
* The value determines whether the Settings button is displayed in a decision table when the control is
|
|
@@ -310,6 +319,9 @@ declare module "sap/rules/ui/DecisionTableConfiguration" {
|
|
|
310
319
|
*/
|
|
311
320
|
getEnableSettings(): boolean;
|
|
312
321
|
/**
|
|
322
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
323
|
+
* Authoring APIs.
|
|
324
|
+
*
|
|
313
325
|
* Gets current value of property {@link #getHitPolicies hitPolicies}.
|
|
314
326
|
*
|
|
315
327
|
* The value determines how the results of the decision table are evaluated when more than one rule is matched
|
|
@@ -381,6 +393,9 @@ declare module "sap/rules/ui/DecisionTableConfiguration" {
|
|
|
381
393
|
sDecisionTableFormat?: DecisionTableFormat
|
|
382
394
|
): this;
|
|
383
395
|
/**
|
|
396
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
397
|
+
* Authoring APIs.
|
|
398
|
+
*
|
|
384
399
|
* Sets a new value for property {@link #getEnableSettingResult enableSettingResult}.
|
|
385
400
|
*
|
|
386
401
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -396,6 +411,9 @@ declare module "sap/rules/ui/DecisionTableConfiguration" {
|
|
|
396
411
|
bEnableSettingResult?: boolean
|
|
397
412
|
): this;
|
|
398
413
|
/**
|
|
414
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
415
|
+
* Authoring APIs.
|
|
416
|
+
*
|
|
399
417
|
* Sets a new value for property {@link #getEnableSettings enableSettings}.
|
|
400
418
|
*
|
|
401
419
|
* The value determines whether the Settings button is displayed in a decision table when the control is
|
|
@@ -414,6 +432,9 @@ declare module "sap/rules/ui/DecisionTableConfiguration" {
|
|
|
414
432
|
bEnableSettings?: boolean
|
|
415
433
|
): this;
|
|
416
434
|
/**
|
|
435
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
436
|
+
* Authoring APIs.
|
|
437
|
+
*
|
|
417
438
|
* Sets a new value for property {@link #getHitPolicies hitPolicies}.
|
|
418
439
|
*
|
|
419
440
|
* The value determines how the results of the decision table are evaluated when more than one rule is matched
|
|
@@ -480,17 +501,27 @@ declare module "sap/rules/ui/DecisionTableConfiguration" {
|
|
|
480
501
|
cellFormat?: DecisionTableCellFormat | PropertyBindingInfo | `{${string}}`;
|
|
481
502
|
|
|
482
503
|
/**
|
|
504
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
505
|
+
* Authoring APIs.
|
|
506
|
+
*
|
|
483
507
|
* The value determines how the results of the decision table are evaluated when more than one rule is matched
|
|
484
508
|
* for a given set of inputs.
|
|
485
509
|
*/
|
|
486
510
|
hitPolicies?: RuleHitPolicy[] | PropertyBindingInfo | `{${string}}`;
|
|
487
511
|
|
|
488
512
|
/**
|
|
513
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
514
|
+
* Authoring APIs.
|
|
515
|
+
*
|
|
489
516
|
* The value determines whether the Settings button is displayed in a decision table when the control is
|
|
490
517
|
* used with S/4 HANA 17.05 (Cloud) or 17.09 (On Premise) and higher (On Premise).
|
|
491
518
|
*/
|
|
492
519
|
enableSettings?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
493
520
|
|
|
521
|
+
/**
|
|
522
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
523
|
+
* Authoring APIs.
|
|
524
|
+
*/
|
|
494
525
|
enableSettingResult?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
495
526
|
|
|
496
527
|
/**
|
|
@@ -655,6 +686,8 @@ declare module "sap/rules/ui/RuleBuilder" {
|
|
|
655
686
|
*/
|
|
656
687
|
getEditable(): boolean;
|
|
657
688
|
/**
|
|
689
|
+
* @deprecated (since 1.120.2) - use the attribute astExpressionLanguage instead.
|
|
690
|
+
*
|
|
658
691
|
* ID of the element which is the current target of the association {@link #getExpressionLanguage expressionLanguage},
|
|
659
692
|
* or `null`.
|
|
660
693
|
*/
|
|
@@ -733,6 +766,8 @@ declare module "sap/rules/ui/RuleBuilder" {
|
|
|
733
766
|
bEditable?: boolean
|
|
734
767
|
): this;
|
|
735
768
|
/**
|
|
769
|
+
* @deprecated (since 1.120.2) - use the attribute astExpressionLanguage instead.
|
|
770
|
+
*
|
|
736
771
|
* Sets the associated {@link #getExpressionLanguage expressionLanguage}.
|
|
737
772
|
*
|
|
738
773
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -804,6 +839,8 @@ declare module "sap/rules/ui/RuleBuilder" {
|
|
|
804
839
|
textRuleConfiguration?: TextRuleConfiguration;
|
|
805
840
|
|
|
806
841
|
/**
|
|
842
|
+
* @deprecated (since 1.120.2) - use the attribute astExpressionLanguage instead.
|
|
843
|
+
*
|
|
807
844
|
* Expression language to model English like expressions. Should not be used when sap.rules.ui.services.AstExpressionLanguage
|
|
808
845
|
* is used.
|
|
809
846
|
*/
|
|
@@ -994,6 +1031,8 @@ declare module "sap/rules/ui/services/ExpressionLanguage" {
|
|
|
994
1031
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
995
1032
|
|
|
996
1033
|
/**
|
|
1034
|
+
* @deprecated (since 1.120.2) - use the attribute astExpressionLanguage instead.
|
|
1035
|
+
*
|
|
997
1036
|
* Provides the ExpressionLanguage service functionality, such as expression validations, expression parsing,
|
|
998
1037
|
* auto-complete suggestions, retrieving expression metadata and tokens, and performing runtime services
|
|
999
1038
|
* (fetching data objects, outputs, etc).
|
|
@@ -1357,6 +1396,9 @@ declare module "sap/rules/ui/TextRuleConfiguration" {
|
|
|
1357
1396
|
*/
|
|
1358
1397
|
getEnableElseIf(): boolean;
|
|
1359
1398
|
/**
|
|
1399
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
1400
|
+
* Authoring APIs.
|
|
1401
|
+
*
|
|
1360
1402
|
* Gets current value of property {@link #getEnableSettingResult enableSettingResult}.
|
|
1361
1403
|
*
|
|
1362
1404
|
* Default value is `true`.
|
|
@@ -1365,6 +1407,9 @@ declare module "sap/rules/ui/TextRuleConfiguration" {
|
|
|
1365
1407
|
*/
|
|
1366
1408
|
getEnableSettingResult(): boolean;
|
|
1367
1409
|
/**
|
|
1410
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
1411
|
+
* Authoring APIs.
|
|
1412
|
+
*
|
|
1368
1413
|
* Gets current value of property {@link #getEnableSettings enableSettings}.
|
|
1369
1414
|
*
|
|
1370
1415
|
* The value determines whether the Settings button is displayed in a Text Rule when the control is used
|
|
@@ -1412,6 +1457,9 @@ declare module "sap/rules/ui/TextRuleConfiguration" {
|
|
|
1412
1457
|
bEnableElseIf?: boolean
|
|
1413
1458
|
): this;
|
|
1414
1459
|
/**
|
|
1460
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
1461
|
+
* Authoring APIs.
|
|
1462
|
+
*
|
|
1415
1463
|
* Sets a new value for property {@link #getEnableSettingResult enableSettingResult}.
|
|
1416
1464
|
*
|
|
1417
1465
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -1427,6 +1475,9 @@ declare module "sap/rules/ui/TextRuleConfiguration" {
|
|
|
1427
1475
|
bEnableSettingResult?: boolean
|
|
1428
1476
|
): this;
|
|
1429
1477
|
/**
|
|
1478
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
1479
|
+
* Authoring APIs.
|
|
1480
|
+
*
|
|
1430
1481
|
* Sets a new value for property {@link #getEnableSettings enableSettings}.
|
|
1431
1482
|
*
|
|
1432
1483
|
* The value determines whether the Settings button is displayed in a Text Rule when the control is used
|
|
@@ -1448,11 +1499,18 @@ declare module "sap/rules/ui/TextRuleConfiguration" {
|
|
|
1448
1499
|
|
|
1449
1500
|
export interface $TextRuleConfigurationSettings extends $ElementSettings {
|
|
1450
1501
|
/**
|
|
1502
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
1503
|
+
* Authoring APIs.
|
|
1504
|
+
*
|
|
1451
1505
|
* The value determines whether the Settings button is displayed in a Text Rule when the control is used
|
|
1452
1506
|
* with S/4 HANA 17.05 (Cloud) or 17.09 (On Premise) and higher (On Premise).
|
|
1453
1507
|
*/
|
|
1454
1508
|
enableSettings?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1455
1509
|
|
|
1510
|
+
/**
|
|
1511
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
1512
|
+
* Authoring APIs.
|
|
1513
|
+
*/
|
|
1456
1514
|
enableSettingResult?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1457
1515
|
|
|
1458
1516
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/generic/template/library" {
|
|
4
4
|
/**
|
|
@@ -3024,6 +3024,25 @@ declare module "sap/suite/ui/generic/template/ObjectPage/extensionAPI/ExtensionA
|
|
|
3024
3024
|
* @returns the view id
|
|
3025
3025
|
*/
|
|
3026
3026
|
getViewId(): string;
|
|
3027
|
+
/**
|
|
3028
|
+
* @experimental
|
|
3029
|
+
*
|
|
3030
|
+
* Hides Section and/or SubSection's title for embedded components and custom section(s), if the Section
|
|
3031
|
+
* and/or SubSection's title matches with the inner Control's title. In case the control's resolved title
|
|
3032
|
+
* is provided and is same as section's title, then the section's title is also automatically hidden. It's
|
|
3033
|
+
* meant to be invoked from the onSubSectionEnteredExtension ExtensionAPI.
|
|
3034
|
+
*/
|
|
3035
|
+
hideDuplicateSectionOrSubSectionTitle(
|
|
3036
|
+
/**
|
|
3037
|
+
* the ID identifying the Sub-Section to which you want to hide the title
|
|
3038
|
+
*/
|
|
3039
|
+
sSubSectionId: string,
|
|
3040
|
+
/**
|
|
3041
|
+
* Optional parameter which represents the resolved title of the inner conrol defined in the Resue Component
|
|
3042
|
+
* or Custom Section/SubSection
|
|
3043
|
+
*/
|
|
3044
|
+
sTitle?: string
|
|
3045
|
+
): void;
|
|
3027
3046
|
/**
|
|
3028
3047
|
* Invokes multiple time the action with the given name and submits changes to the back-end.
|
|
3029
3048
|
*
|
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -1530,6 +1530,8 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1530
1530
|
*/
|
|
1531
1531
|
destroyFixedItem(): this;
|
|
1532
1532
|
/**
|
|
1533
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1534
|
+
*
|
|
1533
1535
|
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
1534
1536
|
*
|
|
1535
1537
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1598,6 +1600,8 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1598
1600
|
*/
|
|
1599
1601
|
getFixedItem(): NavigationList;
|
|
1600
1602
|
/**
|
|
1603
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1604
|
+
*
|
|
1601
1605
|
* Gets content of aggregation {@link #getFooter footer}.
|
|
1602
1606
|
*
|
|
1603
1607
|
* Defines the content inside the footer.
|
|
@@ -1679,6 +1683,8 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1679
1683
|
oFixedItem: NavigationList
|
|
1680
1684
|
): this;
|
|
1681
1685
|
/**
|
|
1686
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1687
|
+
*
|
|
1682
1688
|
* Sets the aggregated {@link #getFooter footer}.
|
|
1683
1689
|
*
|
|
1684
1690
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1791,6 +1797,8 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1791
1797
|
fixedItem?: NavigationList;
|
|
1792
1798
|
|
|
1793
1799
|
/**
|
|
1800
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1801
|
+
*
|
|
1794
1802
|
* Defines the content inside the footer.
|
|
1795
1803
|
*/
|
|
1796
1804
|
footer?: NavigationList;
|
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/comp/library" {
|
|
4
4
|
/**
|
|
@@ -583,7 +583,7 @@ declare module "sap/ui/comp/library" {
|
|
|
583
583
|
*/
|
|
584
584
|
enum ExportType {
|
|
585
585
|
/**
|
|
586
|
-
* @deprecated
|
|
586
|
+
* @deprecated (since 1.120)
|
|
587
587
|
*
|
|
588
588
|
* Gateway backend spreadsheet export service is used
|
|
589
589
|
*/
|