@sapui5/ts-types 1.120.0 → 1.120.2
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 +44 -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 +440 -135
- 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 +19 -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 -4
- 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 namespace sap {
|
|
4
4
|
/**
|
|
@@ -140,6 +140,11 @@ declare namespace sap {
|
|
|
140
140
|
* the parent context of the created document
|
|
141
141
|
*/
|
|
142
142
|
selectedContexts?: sap.ui.model.odata.v4.Context[];
|
|
143
|
+
/**
|
|
144
|
+
* When enabled, an extra request checks if any drafts exist that were never saved. If unsaved drafts are
|
|
145
|
+
* found, the newest one is opened. If no unsaved drafts are found, a new entity is created
|
|
146
|
+
*/
|
|
147
|
+
singleDraftForCreate?: boolean;
|
|
143
148
|
/**
|
|
144
149
|
* ID of the table
|
|
145
150
|
*/
|
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 namespace sap {
|
|
4
4
|
/**
|
|
@@ -2149,7 +2149,7 @@ declare namespace sap {
|
|
|
2149
2149
|
* For the `sap.m.Table` control, if the `items` aggregation of the table is not bound then the callback
|
|
2150
2150
|
* function gets called with the row instance instead of the binding context.
|
|
2151
2151
|
* The callback function must return the cell data that is then stringified and copied to the clipboard.
|
|
2152
|
-
* If an array is returned from the callback function, then each array
|
|
2152
|
+
* If an array is returned from the callback function, then each array value will be copied as a separate
|
|
2153
2153
|
* cell into the clipboard.
|
|
2154
2154
|
* If a column should not be copied to the clipboard, then the callback function must return `undefined`
|
|
2155
2155
|
* or `null` for each cell of the same column.
|
|
@@ -2852,6 +2852,9 @@ declare namespace sap {
|
|
|
2852
2852
|
* Creates and returns a Copy button that can be used to trigger a copy action, for example, from the table
|
|
2853
2853
|
* toolbar.
|
|
2854
2854
|
*
|
|
2855
|
+
* **Note:** The `visible` and `enabled` properties of the Copy button must be managed through this plugin's
|
|
2856
|
+
* own `visible` and `enabled` properties.
|
|
2857
|
+
*
|
|
2855
2858
|
* @returns The button instance
|
|
2856
2859
|
*/
|
|
2857
2860
|
getCopyButton(
|
|
@@ -2916,7 +2919,7 @@ declare namespace sap {
|
|
|
2916
2919
|
* For the `sap.m.Table` control, if the `items` aggregation of the table is not bound then the callback
|
|
2917
2920
|
* function gets called with the row instance instead of the binding context.
|
|
2918
2921
|
* The callback function must return the cell data that is then stringified and copied to the clipboard.
|
|
2919
|
-
* If an array is returned from the callback function, then each array
|
|
2922
|
+
* If an array is returned from the callback function, then each array value will be copied as a separate
|
|
2920
2923
|
* cell into the clipboard.
|
|
2921
2924
|
* If a column should not be copied to the clipboard, then the callback function must return `undefined`
|
|
2922
2925
|
* or `null` for each cell of the same column.
|
|
@@ -3024,7 +3027,7 @@ declare namespace sap {
|
|
|
3024
3027
|
* For the `sap.m.Table` control, if the `items` aggregation of the table is not bound then the callback
|
|
3025
3028
|
* function gets called with the row instance instead of the binding context.
|
|
3026
3029
|
* The callback function must return the cell data that is then stringified and copied to the clipboard.
|
|
3027
|
-
* If an array is returned from the callback function, then each array
|
|
3030
|
+
* If an array is returned from the callback function, then each array value will be copied as a separate
|
|
3028
3031
|
* cell into the clipboard.
|
|
3029
3032
|
* If a column should not be copied to the clipboard, then the callback function must return `undefined`
|
|
3030
3033
|
* or `null` for each cell of the same column.
|
|
@@ -27810,7 +27813,8 @@ declare namespace sap {
|
|
|
27810
27813
|
* @since 1.46
|
|
27811
27814
|
*
|
|
27812
27815
|
* Specifies whether the suggestions highlighting is enabled. **Note:** Due to performance constraints,
|
|
27813
|
-
* the functionality will be disabled above 200 items.
|
|
27816
|
+
* the functionality will be disabled above 200 items. **Note:** Highlighting in table suggestions will
|
|
27817
|
+
* work only for cells containing sap.m.Label or sap.m.Text controls.
|
|
27814
27818
|
*/
|
|
27815
27819
|
enableSuggestionsHighlighting?:
|
|
27816
27820
|
| boolean
|
|
@@ -44013,6 +44017,8 @@ declare namespace sap {
|
|
|
44013
44017
|
|
|
44014
44018
|
/**
|
|
44015
44019
|
* @since 1.21.2
|
|
44020
|
+
* @deprecated (since 1.120) - In case of SAPUI5, see demokit sample 'Smart Field with ValueList Annotation'.
|
|
44021
|
+
* In case of OpenUI5, see demokit sample 'Input - Suggestions - Dynamic'.
|
|
44016
44022
|
*
|
|
44017
44023
|
* Suggestion helper for `sap.m.Input` fields when used with an OData model.
|
|
44018
44024
|
*
|
|
@@ -53795,7 +53801,12 @@ declare namespace sap {
|
|
|
53795
53801
|
*
|
|
53796
53802
|
* @returns jQuery object
|
|
53797
53803
|
*/
|
|
53798
|
-
getTabbables(
|
|
53804
|
+
getTabbables(
|
|
53805
|
+
/**
|
|
53806
|
+
* Whether only tabbables of data cells
|
|
53807
|
+
*/
|
|
53808
|
+
bContentOnly?: undefined
|
|
53809
|
+
): jQuery;
|
|
53799
53810
|
/**
|
|
53800
53811
|
* @since 1.20
|
|
53801
53812
|
*
|
|
@@ -73886,7 +73897,8 @@ declare namespace sap {
|
|
|
73886
73897
|
* Gets current value of property {@link #getEnableSuggestionsHighlighting enableSuggestionsHighlighting}.
|
|
73887
73898
|
*
|
|
73888
73899
|
* Specifies whether the suggestions highlighting is enabled. **Note:** Due to performance constraints,
|
|
73889
|
-
* the functionality will be disabled above 200 items.
|
|
73900
|
+
* the functionality will be disabled above 200 items. **Note:** Highlighting in table suggestions will
|
|
73901
|
+
* work only for cells containing sap.m.Label or sap.m.Text controls.
|
|
73890
73902
|
*
|
|
73891
73903
|
* Default value is `true`.
|
|
73892
73904
|
*
|
|
@@ -74587,7 +74599,8 @@ declare namespace sap {
|
|
|
74587
74599
|
* Sets a new value for property {@link #getEnableSuggestionsHighlighting enableSuggestionsHighlighting}.
|
|
74588
74600
|
*
|
|
74589
74601
|
* Specifies whether the suggestions highlighting is enabled. **Note:** Due to performance constraints,
|
|
74590
|
-
* the functionality will be disabled above 200 items.
|
|
74602
|
+
* the functionality will be disabled above 200 items. **Note:** Highlighting in table suggestions will
|
|
74603
|
+
* work only for cells containing sap.m.Label or sap.m.Text controls.
|
|
74591
74604
|
*
|
|
74592
74605
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
74593
74606
|
*
|
|
@@ -80824,7 +80837,12 @@ declare namespace sap {
|
|
|
80824
80837
|
*
|
|
80825
80838
|
* @returns jQuery object
|
|
80826
80839
|
*/
|
|
80827
|
-
getTabbables(
|
|
80840
|
+
getTabbables(
|
|
80841
|
+
/**
|
|
80842
|
+
* Whether only tabbables of the content area
|
|
80843
|
+
*/
|
|
80844
|
+
bContentOnly?: undefined
|
|
80845
|
+
): jQuery;
|
|
80828
80846
|
/**
|
|
80829
80847
|
* Gets current value of property {@link #getType type}.
|
|
80830
80848
|
*
|
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 namespace sap {
|
|
4
4
|
/**
|
|
@@ -61,6 +61,14 @@ declare namespace sap {
|
|
|
61
61
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
62
62
|
| `{${string}}`;
|
|
63
63
|
|
|
64
|
+
/**
|
|
65
|
+
* If the value is true, the Barcode input dialog should be hidden.
|
|
66
|
+
*/
|
|
67
|
+
disableBarcodeInputDialog?:
|
|
68
|
+
| boolean
|
|
69
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
70
|
+
| `{${string}}`;
|
|
71
|
+
|
|
64
72
|
/**
|
|
65
73
|
* Event is fired when the scanning is finished or cancelled
|
|
66
74
|
*/
|
|
@@ -134,6 +142,8 @@ declare namespace sap {
|
|
|
134
142
|
* for detailed information (recommended).
|
|
135
143
|
* - Developers can load these files directly into an HTML file. Refer to Enabling the API for detailed
|
|
136
144
|
* information.
|
|
145
|
+
* - Developers can refer to the KBA
|
|
146
|
+
* 3390217 for guidance on configuring Zebra Enterprise Browser.
|
|
137
147
|
*/
|
|
138
148
|
interface BarcodeScanner {
|
|
139
149
|
/**
|
|
@@ -263,6 +273,7 @@ declare namespace sap {
|
|
|
263
273
|
* true,
|
|
264
274
|
* 30,
|
|
265
275
|
* 1,
|
|
276
|
+
* false,
|
|
266
277
|
* false
|
|
267
278
|
* );
|
|
268
279
|
* });
|
|
@@ -300,7 +311,11 @@ declare namespace sap {
|
|
|
300
311
|
/**
|
|
301
312
|
* Flag, which defines whether the camera should be used for scanning in Zebra Enterprise Browser.
|
|
302
313
|
*/
|
|
303
|
-
keepCameraScan?: boolean
|
|
314
|
+
keepCameraScan?: boolean,
|
|
315
|
+
/**
|
|
316
|
+
* Flag, which defines whether the Barcode input dialog should be shown.
|
|
317
|
+
*/
|
|
318
|
+
disableBarcodeInputDialog?: boolean
|
|
304
319
|
): void;
|
|
305
320
|
/**
|
|
306
321
|
* Set the configs of the control Barcode Scanner.
|
|
@@ -658,6 +673,16 @@ declare namespace sap {
|
|
|
658
673
|
* @returns Value of property `dialogTitle`
|
|
659
674
|
*/
|
|
660
675
|
getDialogTitle(): string;
|
|
676
|
+
/**
|
|
677
|
+
* Gets current value of property {@link #getDisableBarcodeInputDialog disableBarcodeInputDialog}.
|
|
678
|
+
*
|
|
679
|
+
* If the value is true, the Barcode input dialog should be hidden.
|
|
680
|
+
*
|
|
681
|
+
* Default value is `false`.
|
|
682
|
+
*
|
|
683
|
+
* @returns Value of property `disableBarcodeInputDialog`
|
|
684
|
+
*/
|
|
685
|
+
getDisableBarcodeInputDialog(): boolean;
|
|
661
686
|
/**
|
|
662
687
|
* Gets current value of property {@link #getFrameRate frameRate}.
|
|
663
688
|
*
|
|
@@ -728,6 +753,23 @@ declare namespace sap {
|
|
|
728
753
|
*/
|
|
729
754
|
sDialogTitle?: string
|
|
730
755
|
): this;
|
|
756
|
+
/**
|
|
757
|
+
* Sets a new value for property {@link #getDisableBarcodeInputDialog disableBarcodeInputDialog}.
|
|
758
|
+
*
|
|
759
|
+
* If the value is true, the Barcode input dialog should be hidden.
|
|
760
|
+
*
|
|
761
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
762
|
+
*
|
|
763
|
+
* Default value is `false`.
|
|
764
|
+
*
|
|
765
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
766
|
+
*/
|
|
767
|
+
setDisableBarcodeInputDialog(
|
|
768
|
+
/**
|
|
769
|
+
* New value for property `disableBarcodeInputDialog`
|
|
770
|
+
*/
|
|
771
|
+
bDisableBarcodeInputDialog?: boolean
|
|
772
|
+
): this;
|
|
731
773
|
/**
|
|
732
774
|
* Sets a new value for property {@link #getFrameRate frameRate}.
|
|
733
775
|
*
|
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 namespace sap {
|
|
4
4
|
namespace rules {
|
|
@@ -190,6 +190,8 @@ declare namespace sap {
|
|
|
190
190
|
): this;
|
|
191
191
|
}
|
|
192
192
|
/**
|
|
193
|
+
* @deprecated (since 1.120.2) - use the attribute astExpressionLanguage instead.
|
|
194
|
+
*
|
|
193
195
|
* Provides the ExpressionLanguage service functionality, such as expression validations, expression parsing,
|
|
194
196
|
* auto-complete suggestions, retrieving expression metadata and tokens, and performing runtime services
|
|
195
197
|
* (fetching data objects, outputs, etc).
|
|
@@ -384,6 +386,9 @@ declare namespace sap {
|
|
|
384
386
|
| `{${string}}`;
|
|
385
387
|
|
|
386
388
|
/**
|
|
389
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
390
|
+
* Authoring APIs.
|
|
391
|
+
*
|
|
387
392
|
* The value determines how the results of the decision table are evaluated when more than one rule is matched
|
|
388
393
|
* for a given set of inputs.
|
|
389
394
|
*/
|
|
@@ -393,6 +398,9 @@ declare namespace sap {
|
|
|
393
398
|
| `{${string}}`;
|
|
394
399
|
|
|
395
400
|
/**
|
|
401
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
402
|
+
* Authoring APIs.
|
|
403
|
+
*
|
|
396
404
|
* The value determines whether the Settings button is displayed in a decision table when the control is
|
|
397
405
|
* used with S/4 HANA 17.05 (Cloud) or 17.09 (On Premise) and higher (On Premise).
|
|
398
406
|
*/
|
|
@@ -401,6 +409,10 @@ declare namespace sap {
|
|
|
401
409
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
402
410
|
| `{${string}}`;
|
|
403
411
|
|
|
412
|
+
/**
|
|
413
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
414
|
+
* Authoring APIs.
|
|
415
|
+
*/
|
|
404
416
|
enableSettingResult?:
|
|
405
417
|
| boolean
|
|
406
418
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
@@ -473,6 +485,8 @@ declare namespace sap {
|
|
|
473
485
|
textRuleConfiguration?: sap.rules.ui.TextRuleConfiguration;
|
|
474
486
|
|
|
475
487
|
/**
|
|
488
|
+
* @deprecated (since 1.120.2) - use the attribute astExpressionLanguage instead.
|
|
489
|
+
*
|
|
476
490
|
* Expression language to model English like expressions. Should not be used when sap.rules.ui.services.AstExpressionLanguage
|
|
477
491
|
* is used.
|
|
478
492
|
*/
|
|
@@ -490,6 +504,9 @@ declare namespace sap {
|
|
|
490
504
|
interface $TextRuleConfigurationSettings
|
|
491
505
|
extends sap.ui.core.$ElementSettings {
|
|
492
506
|
/**
|
|
507
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
508
|
+
* Authoring APIs.
|
|
509
|
+
*
|
|
493
510
|
* The value determines whether the Settings button is displayed in a Text Rule when the control is used
|
|
494
511
|
* with S/4 HANA 17.05 (Cloud) or 17.09 (On Premise) and higher (On Premise).
|
|
495
512
|
*/
|
|
@@ -498,6 +515,10 @@ declare namespace sap {
|
|
|
498
515
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
499
516
|
| `{${string}}`;
|
|
500
517
|
|
|
518
|
+
/**
|
|
519
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
520
|
+
* Authoring APIs.
|
|
521
|
+
*/
|
|
501
522
|
enableSettingResult?:
|
|
502
523
|
| boolean
|
|
503
524
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
@@ -704,6 +725,9 @@ declare namespace sap {
|
|
|
704
725
|
*/
|
|
705
726
|
getDecisionTableFormat(): sap.rules.ui.DecisionTableFormat;
|
|
706
727
|
/**
|
|
728
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
729
|
+
* Authoring APIs.
|
|
730
|
+
*
|
|
707
731
|
* Gets current value of property {@link #getEnableSettingResult enableSettingResult}.
|
|
708
732
|
*
|
|
709
733
|
* Default value is `true`.
|
|
@@ -712,6 +736,9 @@ declare namespace sap {
|
|
|
712
736
|
*/
|
|
713
737
|
getEnableSettingResult(): boolean;
|
|
714
738
|
/**
|
|
739
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
740
|
+
* Authoring APIs.
|
|
741
|
+
*
|
|
715
742
|
* Gets current value of property {@link #getEnableSettings enableSettings}.
|
|
716
743
|
*
|
|
717
744
|
* The value determines whether the Settings button is displayed in a decision table when the control is
|
|
@@ -723,6 +750,9 @@ declare namespace sap {
|
|
|
723
750
|
*/
|
|
724
751
|
getEnableSettings(): boolean;
|
|
725
752
|
/**
|
|
753
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
754
|
+
* Authoring APIs.
|
|
755
|
+
*
|
|
726
756
|
* Gets current value of property {@link #getHitPolicies hitPolicies}.
|
|
727
757
|
*
|
|
728
758
|
* The value determines how the results of the decision table are evaluated when more than one rule is matched
|
|
@@ -794,6 +824,9 @@ declare namespace sap {
|
|
|
794
824
|
sDecisionTableFormat?: sap.rules.ui.DecisionTableFormat
|
|
795
825
|
): this;
|
|
796
826
|
/**
|
|
827
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
828
|
+
* Authoring APIs.
|
|
829
|
+
*
|
|
797
830
|
* Sets a new value for property {@link #getEnableSettingResult enableSettingResult}.
|
|
798
831
|
*
|
|
799
832
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -809,6 +842,9 @@ declare namespace sap {
|
|
|
809
842
|
bEnableSettingResult?: boolean
|
|
810
843
|
): this;
|
|
811
844
|
/**
|
|
845
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
846
|
+
* Authoring APIs.
|
|
847
|
+
*
|
|
812
848
|
* Sets a new value for property {@link #getEnableSettings enableSettings}.
|
|
813
849
|
*
|
|
814
850
|
* The value determines whether the Settings button is displayed in a decision table when the control is
|
|
@@ -827,6 +863,9 @@ declare namespace sap {
|
|
|
827
863
|
bEnableSettings?: boolean
|
|
828
864
|
): this;
|
|
829
865
|
/**
|
|
866
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
867
|
+
* Authoring APIs.
|
|
868
|
+
*
|
|
830
869
|
* Sets a new value for property {@link #getHitPolicies hitPolicies}.
|
|
831
870
|
*
|
|
832
871
|
* The value determines how the results of the decision table are evaluated when more than one rule is matched
|
|
@@ -988,6 +1027,8 @@ declare namespace sap {
|
|
|
988
1027
|
*/
|
|
989
1028
|
getEditable(): boolean;
|
|
990
1029
|
/**
|
|
1030
|
+
* @deprecated (since 1.120.2) - use the attribute astExpressionLanguage instead.
|
|
1031
|
+
*
|
|
991
1032
|
* ID of the element which is the current target of the association {@link #getExpressionLanguage expressionLanguage},
|
|
992
1033
|
* or `null`.
|
|
993
1034
|
*/
|
|
@@ -1068,6 +1109,8 @@ declare namespace sap {
|
|
|
1068
1109
|
bEditable?: boolean
|
|
1069
1110
|
): this;
|
|
1070
1111
|
/**
|
|
1112
|
+
* @deprecated (since 1.120.2) - use the attribute astExpressionLanguage instead.
|
|
1113
|
+
*
|
|
1071
1114
|
* Sets the associated {@link #getExpressionLanguage expressionLanguage}.
|
|
1072
1115
|
*
|
|
1073
1116
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1274,6 +1317,9 @@ declare namespace sap {
|
|
|
1274
1317
|
*/
|
|
1275
1318
|
getEnableElseIf(): boolean;
|
|
1276
1319
|
/**
|
|
1320
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
1321
|
+
* Authoring APIs.
|
|
1322
|
+
*
|
|
1277
1323
|
* Gets current value of property {@link #getEnableSettingResult enableSettingResult}.
|
|
1278
1324
|
*
|
|
1279
1325
|
* Default value is `true`.
|
|
@@ -1282,6 +1328,9 @@ declare namespace sap {
|
|
|
1282
1328
|
*/
|
|
1283
1329
|
getEnableSettingResult(): boolean;
|
|
1284
1330
|
/**
|
|
1331
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
1332
|
+
* Authoring APIs.
|
|
1333
|
+
*
|
|
1285
1334
|
* Gets current value of property {@link #getEnableSettings enableSettings}.
|
|
1286
1335
|
*
|
|
1287
1336
|
* The value determines whether the Settings button is displayed in a Text Rule when the control is used
|
|
@@ -1329,6 +1378,9 @@ declare namespace sap {
|
|
|
1329
1378
|
bEnableElseIf?: boolean
|
|
1330
1379
|
): this;
|
|
1331
1380
|
/**
|
|
1381
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
1382
|
+
* Authoring APIs.
|
|
1383
|
+
*
|
|
1332
1384
|
* Sets a new value for property {@link #getEnableSettingResult enableSettingResult}.
|
|
1333
1385
|
*
|
|
1334
1386
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -1344,6 +1396,9 @@ declare namespace sap {
|
|
|
1344
1396
|
bEnableSettingResult?: boolean
|
|
1345
1397
|
): this;
|
|
1346
1398
|
/**
|
|
1399
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
1400
|
+
* Authoring APIs.
|
|
1401
|
+
*
|
|
1347
1402
|
* Sets a new value for property {@link #getEnableSettings enableSettings}.
|
|
1348
1403
|
*
|
|
1349
1404
|
* The value determines whether the Settings button is displayed in a Text Rule when the control is used
|
|
@@ -1439,6 +1494,9 @@ declare namespace sap {
|
|
|
1439
1494
|
Timestamp = "Timestamp",
|
|
1440
1495
|
}
|
|
1441
1496
|
/**
|
|
1497
|
+
* @deprecated (since 1.120.2) - to configure the settings, use the Manage Rules Project app or the Rule
|
|
1498
|
+
* Authoring APIs.
|
|
1499
|
+
*
|
|
1442
1500
|
* An enumeration that defines the output when more than one rule in the decision table is matched for a
|
|
1443
1501
|
* given set of inputs.
|
|
1444
1502
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -2610,6 +2610,25 @@ declare namespace sap {
|
|
|
2610
2610
|
* @returns the view id
|
|
2611
2611
|
*/
|
|
2612
2612
|
getViewId(): string;
|
|
2613
|
+
/**
|
|
2614
|
+
* @experimental
|
|
2615
|
+
*
|
|
2616
|
+
* Hides Section and/or SubSection's title for embedded components and custom section(s), if the Section
|
|
2617
|
+
* and/or SubSection's title matches with the inner Control's title. In case the control's resolved title
|
|
2618
|
+
* is provided and is same as section's title, then the section's title is also automatically hidden. It's
|
|
2619
|
+
* meant to be invoked from the onSubSectionEnteredExtension ExtensionAPI.
|
|
2620
|
+
*/
|
|
2621
|
+
hideDuplicateSectionOrSubSectionTitle(
|
|
2622
|
+
/**
|
|
2623
|
+
* the ID identifying the Sub-Section to which you want to hide the title
|
|
2624
|
+
*/
|
|
2625
|
+
sSubSectionId: string,
|
|
2626
|
+
/**
|
|
2627
|
+
* Optional parameter which represents the resolved title of the inner conrol defined in the Resue Component
|
|
2628
|
+
* or Custom Section/SubSection
|
|
2629
|
+
*/
|
|
2630
|
+
sTitle?: string
|
|
2631
|
+
): void;
|
|
2613
2632
|
/**
|
|
2614
2633
|
* Invokes multiple time the action with the given name and submits changes to the back-end.
|
|
2615
2634
|
*
|
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 namespace sap {
|
|
4
4
|
/**
|
|
@@ -265,6 +265,8 @@ declare namespace sap {
|
|
|
265
265
|
fixedItem?: sap.tnt.NavigationList;
|
|
266
266
|
|
|
267
267
|
/**
|
|
268
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
269
|
+
*
|
|
268
270
|
* Defines the content inside the footer.
|
|
269
271
|
*/
|
|
270
272
|
footer?: sap.tnt.NavigationList;
|
|
@@ -1597,6 +1599,8 @@ declare namespace sap {
|
|
|
1597
1599
|
*/
|
|
1598
1600
|
destroyFixedItem(): this;
|
|
1599
1601
|
/**
|
|
1602
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1603
|
+
*
|
|
1600
1604
|
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
1601
1605
|
*
|
|
1602
1606
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1665,6 +1669,8 @@ declare namespace sap {
|
|
|
1665
1669
|
*/
|
|
1666
1670
|
getFixedItem(): sap.tnt.NavigationList;
|
|
1667
1671
|
/**
|
|
1672
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1673
|
+
*
|
|
1668
1674
|
* Gets content of aggregation {@link #getFooter footer}.
|
|
1669
1675
|
*
|
|
1670
1676
|
* Defines the content inside the footer.
|
|
@@ -1746,6 +1752,8 @@ declare namespace sap {
|
|
|
1746
1752
|
oFixedItem: sap.tnt.NavigationList
|
|
1747
1753
|
): this;
|
|
1748
1754
|
/**
|
|
1755
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1756
|
+
*
|
|
1749
1757
|
* Sets the aggregated {@link #getFooter footer}.
|
|
1750
1758
|
*
|
|
1751
1759
|
* @returns Reference to `this` in order to allow method chaining
|
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 namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -32007,7 +32007,7 @@ declare namespace sap {
|
|
|
32007
32007
|
*/
|
|
32008
32008
|
enum ExportType {
|
|
32009
32009
|
/**
|
|
32010
|
-
* @deprecated
|
|
32010
|
+
* @deprecated (since 1.120)
|
|
32011
32011
|
*
|
|
32012
32012
|
* Gateway backend spreadsheet export service is used
|
|
32013
32013
|
*/
|