@sapui5/ts-types 1.130.2 → 1.131.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 +3 -3
- package/types/sap.apf.d.ts +1 -1
- 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 +50 -9
- package/types/sap.f.d.ts +237 -10
- package/types/sap.fe.base.d.ts +29 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +6 -6
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +218 -130
- package/types/sap.fe.navigation.d.ts +3 -3
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.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 +102 -9
- package/types/sap.insights.d.ts +1 -1
- package/types/{mobile-1.130.0-d.ts → sap.m.d.ts} +357 -25
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.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 +138 -53
- package/types/{core-1.130.0-d.ts → sap.ui.core.d.ts} +293 -298
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +6 -6
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +2 -2
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +141 -1
- package/types/sap.ui.layout.d.ts +18 -21
- package/types/{mdc-1.130.0-d.ts → sap.ui.mdc.d.ts} +217 -100
- 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 +7 -4
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +262 -7
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +31 -1
- package/types/sap.ui.vtm.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 +7 -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/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 +1 -1
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.131.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -59,7 +59,7 @@ declare namespace sap {
|
|
|
59
59
|
* Describes the settings that can be provided to the ActionGroup constructor.
|
|
60
60
|
*/
|
|
61
61
|
interface $ActionGroupSettings
|
|
62
|
-
extends sap.fe.macros.
|
|
62
|
+
extends sap.fe.macros.chart.$ActionSettings {
|
|
63
63
|
/**
|
|
64
64
|
* Reference to the key of another action or action group already displayed in the toolbar to properly place
|
|
65
65
|
* this one
|
|
@@ -199,8 +199,7 @@ declare namespace sap {
|
|
|
199
199
|
/**
|
|
200
200
|
* Definition of a custom action group to be used inside the chart toolbar
|
|
201
201
|
*/
|
|
202
|
-
class ActionGroup extends sap.fe.macros.
|
|
203
|
-
.BuildingBlockObjectProperty {}
|
|
202
|
+
class ActionGroup extends sap.fe.macros.chart.Action {}
|
|
204
203
|
/**
|
|
205
204
|
* Building block used to create a chart based on the metadata provided by OData V4.
|
|
206
205
|
*
|
|
@@ -297,10 +296,11 @@ declare namespace sap {
|
|
|
297
296
|
*/
|
|
298
297
|
getSelectionMode(): string;
|
|
299
298
|
/**
|
|
300
|
-
* Get the selection variant from the chart.
|
|
299
|
+
* Get the selection variant from the chart. This function considers only the selection variant applied
|
|
300
|
+
* at the control level.
|
|
301
301
|
*
|
|
302
302
|
*
|
|
303
|
-
* @returns A promise that resolves with
|
|
303
|
+
* @returns A promise that resolves with {@link sap.fe.navigation.SelectionVariant }.
|
|
304
304
|
*/
|
|
305
305
|
getSelectionVariant(): Promise<sap.fe.navigation.SelectionVariant>;
|
|
306
306
|
/**
|
|
@@ -532,7 +532,7 @@ declare namespace sap {
|
|
|
532
532
|
* @experimental
|
|
533
533
|
*/
|
|
534
534
|
interface $BuildingBlockWithTemplatingSettings
|
|
535
|
-
extends sap.fe.core.buildingBlocks.$
|
|
535
|
+
extends sap.fe.core.buildingBlocks.$BuildingBlockSettings {}
|
|
536
536
|
|
|
537
537
|
/**
|
|
538
538
|
* Base class for building block complex object properties that can be serialized to XML.
|
|
@@ -546,7 +546,7 @@ declare namespace sap {
|
|
|
546
546
|
* @experimental
|
|
547
547
|
*/
|
|
548
548
|
class BuildingBlockWithTemplating extends sap.fe.core.buildingBlocks
|
|
549
|
-
.
|
|
549
|
+
.BuildingBlock {}
|
|
550
550
|
}
|
|
551
551
|
|
|
552
552
|
namespace field {
|
|
@@ -570,14 +570,6 @@ declare namespace sap {
|
|
|
570
570
|
*/
|
|
571
571
|
description?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
572
572
|
|
|
573
|
-
/**
|
|
574
|
-
* A set of options that can be configured.
|
|
575
|
-
*/
|
|
576
|
-
formatOptions?:
|
|
577
|
-
| sap.fe.macros.FieldFormatOptions
|
|
578
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
579
|
-
| `{${string}}`;
|
|
580
|
-
|
|
581
573
|
/**
|
|
582
574
|
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
583
575
|
*/
|
|
@@ -611,6 +603,145 @@ declare namespace sap {
|
|
|
611
603
|
* / unit).
|
|
612
604
|
*/
|
|
613
605
|
value?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* A set of options that can be configured.
|
|
609
|
+
*/
|
|
610
|
+
formatOptions?: sap.fe.macros.field.FieldFormatOptions;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
/**
|
|
614
|
+
* Describes the settings that can be provided to the FieldFormatOptions constructor.
|
|
615
|
+
*/
|
|
616
|
+
interface $FieldFormatOptionsSettings
|
|
617
|
+
extends sap.fe.macros.controls.$BuildingBlockObjectPropertySettings {
|
|
618
|
+
/**
|
|
619
|
+
* Property for defining a custom pattern for the date, time, or dateTime format.
|
|
620
|
+
*
|
|
621
|
+
* If there is a dateTimePattern defined dateTimeStyle is ignored.
|
|
622
|
+
*/
|
|
623
|
+
dateTimePattern?:
|
|
624
|
+
| string
|
|
625
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
626
|
+
|
|
627
|
+
/**
|
|
628
|
+
* Property for defining the display style for the date, time, or dateTime format.
|
|
629
|
+
*
|
|
630
|
+
* If there is a dateTimePattern defined dateTimeStyle is ignored.
|
|
631
|
+
*/
|
|
632
|
+
dateTimeStyle?:
|
|
633
|
+
| string
|
|
634
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
635
|
+
|
|
636
|
+
/**
|
|
637
|
+
* Defines how the field value and associated text will be displayed together.
|
|
638
|
+
*
|
|
639
|
+
* Allowed values are "Value", "Description", "DescriptionValue" and "ValueDescription"
|
|
640
|
+
*/
|
|
641
|
+
displayMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
642
|
+
|
|
643
|
+
/**
|
|
644
|
+
* Determines how the field should be rendered, e.g. as radio buttons.
|
|
645
|
+
*
|
|
646
|
+
* If not all prerequisites are met, the field will default back to the standard rendering.
|
|
647
|
+
*/
|
|
648
|
+
fieldEditStyle?:
|
|
649
|
+
| string
|
|
650
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
651
|
+
|
|
652
|
+
/**
|
|
653
|
+
* Defines if and how the field measure will be displayed.
|
|
654
|
+
*
|
|
655
|
+
* Allowed values are "Hidden" and "ReadOnly"
|
|
656
|
+
*/
|
|
657
|
+
measureDisplayMode?:
|
|
658
|
+
| string
|
|
659
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
660
|
+
|
|
661
|
+
/**
|
|
662
|
+
* Specifies if radio buttons should be rendered in a horizontal layout.
|
|
663
|
+
*/
|
|
664
|
+
radioButtonsHorizontalLayout?:
|
|
665
|
+
| boolean
|
|
666
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
667
|
+
| `{${string}}`;
|
|
668
|
+
|
|
669
|
+
/**
|
|
670
|
+
* Defines if the date part of a date time with timezone field should be shown.
|
|
671
|
+
*
|
|
672
|
+
* The dateTimeOffset field must have a timezone annotation.
|
|
673
|
+
* The default value is true.
|
|
674
|
+
*/
|
|
675
|
+
showDate?:
|
|
676
|
+
| boolean
|
|
677
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
678
|
+
| `{${string}}`;
|
|
679
|
+
|
|
680
|
+
/**
|
|
681
|
+
* Defines if the time part of a date time with timezone field should be shown.
|
|
682
|
+
*
|
|
683
|
+
* The dateTimeOffset field must have a timezone annotation.
|
|
684
|
+
* The default value is true.
|
|
685
|
+
*/
|
|
686
|
+
showTime?:
|
|
687
|
+
| boolean
|
|
688
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
689
|
+
| `{${string}}`;
|
|
690
|
+
|
|
691
|
+
/**
|
|
692
|
+
* Defines if the timezone part of a date time with timezone field should be shown.
|
|
693
|
+
*
|
|
694
|
+
* The dateTimeOffset field must have a timezone annotation.
|
|
695
|
+
* The default value is true.
|
|
696
|
+
*/
|
|
697
|
+
showTimezone?:
|
|
698
|
+
| boolean
|
|
699
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
700
|
+
| `{${string}}`;
|
|
701
|
+
|
|
702
|
+
/**
|
|
703
|
+
* Defines how the full text will be displayed.
|
|
704
|
+
*
|
|
705
|
+
* Allowed values are "InPlace" and "Popover"
|
|
706
|
+
*/
|
|
707
|
+
textExpandBehaviorDisplay?:
|
|
708
|
+
| string
|
|
709
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
710
|
+
|
|
711
|
+
/**
|
|
712
|
+
* Maximum number of lines for multiline texts in edit mode.
|
|
713
|
+
*/
|
|
714
|
+
textLinesEdit?:
|
|
715
|
+
| number
|
|
716
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
717
|
+
| `{${string}}`;
|
|
718
|
+
|
|
719
|
+
/**
|
|
720
|
+
* Maximum number of characters from the beginning of the text field that are shown initially.
|
|
721
|
+
*/
|
|
722
|
+
textMaxCharactersDisplay?:
|
|
723
|
+
| number
|
|
724
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
725
|
+
| `{${string}}`;
|
|
726
|
+
|
|
727
|
+
/**
|
|
728
|
+
* Defines the maximum number of characters for the multiline text value.
|
|
729
|
+
*
|
|
730
|
+
* If a multiline text exceeds the maximum number of allowed characters, the counter below the input field
|
|
731
|
+
* displays the exact number.
|
|
732
|
+
*/
|
|
733
|
+
textMaxLength?:
|
|
734
|
+
| number
|
|
735
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
736
|
+
| `{${string}}`;
|
|
737
|
+
|
|
738
|
+
/**
|
|
739
|
+
* Maximum number of lines that multiline texts in edit mode can grow to.
|
|
740
|
+
*/
|
|
741
|
+
textMaxLines?:
|
|
742
|
+
| number
|
|
743
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
744
|
+
| `{${string}}`;
|
|
614
745
|
}
|
|
615
746
|
|
|
616
747
|
/**
|
|
@@ -721,6 +852,11 @@ declare namespace sap {
|
|
|
721
852
|
*/
|
|
722
853
|
setValue(): sap.ui.core.Control;
|
|
723
854
|
}
|
|
855
|
+
/**
|
|
856
|
+
* Additional format options for the field.
|
|
857
|
+
*/
|
|
858
|
+
class FieldFormatOptions extends sap.fe.macros.controls
|
|
859
|
+
.BuildingBlockObjectProperty {}
|
|
724
860
|
|
|
725
861
|
/**
|
|
726
862
|
* Event object of the Field#change event.
|
|
@@ -1530,6 +1666,15 @@ declare namespace sap {
|
|
|
1530
1666
|
*/
|
|
1531
1667
|
rowCountMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1532
1668
|
|
|
1669
|
+
/**
|
|
1670
|
+
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
1671
|
+
* vertically in the table.
|
|
1672
|
+
*/
|
|
1673
|
+
scrollThreshold?:
|
|
1674
|
+
| number
|
|
1675
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1676
|
+
| `{${string}}`;
|
|
1677
|
+
|
|
1533
1678
|
/**
|
|
1534
1679
|
* Defines the selection mode to be used by the table.
|
|
1535
1680
|
* Allowed values are `None`, `Single`, `ForceSingle`, `Multi`, `ForceMulti` or `Auto`.
|
|
@@ -1879,6 +2024,15 @@ declare namespace sap {
|
|
|
1879
2024
|
*/
|
|
1880
2025
|
rowCountMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1881
2026
|
|
|
2027
|
+
/**
|
|
2028
|
+
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
2029
|
+
* vertically in the table.
|
|
2030
|
+
*/
|
|
2031
|
+
scrollThreshold?:
|
|
2032
|
+
| number
|
|
2033
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2034
|
+
| `{${string}}`;
|
|
2035
|
+
|
|
1882
2036
|
/**
|
|
1883
2037
|
* Defines the selection mode to be used by the table.
|
|
1884
2038
|
* Allowed values are `None`, `Single`, `ForceSingle`, `Multi`, `ForceMulti` or `Auto`.
|
|
@@ -2196,10 +2350,11 @@ declare namespace sap {
|
|
|
2196
2350
|
*/
|
|
2197
2351
|
getSelectedContexts(): sap.ui.model.odata.v4.Context[];
|
|
2198
2352
|
/**
|
|
2199
|
-
* Get the selection variant from the
|
|
2353
|
+
* Get the selection variant from the table. This function considers only the selection variant applied
|
|
2354
|
+
* at the control level.
|
|
2200
2355
|
*
|
|
2201
2356
|
*
|
|
2202
|
-
* @returns A promise which resolves with
|
|
2357
|
+
* @returns A promise which resolves with {@link sap.fe.navigation.SelectionVariant }
|
|
2203
2358
|
*/
|
|
2204
2359
|
getSelectionVariant(): Promise<sap.fe.navigation.SelectionVariant>;
|
|
2205
2360
|
/**
|
|
@@ -2475,10 +2630,11 @@ declare namespace sap {
|
|
|
2475
2630
|
*/
|
|
2476
2631
|
getSelectedContexts(): sap.ui.model.odata.v4.Context[];
|
|
2477
2632
|
/**
|
|
2478
|
-
* Get the selection variant from the
|
|
2633
|
+
* Get the selection variant from the table. This function considers only the selection variant applied
|
|
2634
|
+
* at the control level.
|
|
2479
2635
|
*
|
|
2480
2636
|
*
|
|
2481
|
-
* @returns A promise which resolves with
|
|
2637
|
+
* @returns A promise which resolves with {@link sap.fe.navigation.SelectionVariant }
|
|
2482
2638
|
*/
|
|
2483
2639
|
getSelectionVariant(): Promise<sap.fe.navigation.SelectionVariant>;
|
|
2484
2640
|
/**
|
|
@@ -2761,7 +2917,7 @@ declare namespace sap {
|
|
|
2761
2917
|
* Describes the settings that can be provided to the KPITag constructor.
|
|
2762
2918
|
*/
|
|
2763
2919
|
interface $KPITagSettings
|
|
2764
|
-
extends sap.fe.core.buildingBlocks.$
|
|
2920
|
+
extends sap.fe.core.buildingBlocks.$BuildingBlockSettings {
|
|
2765
2921
|
/**
|
|
2766
2922
|
* The Number to be displayed.
|
|
2767
2923
|
*/
|
|
@@ -2815,7 +2971,7 @@ declare namespace sap {
|
|
|
2815
2971
|
* Describes the settings that can be provided to the MacroAPI constructor.
|
|
2816
2972
|
*/
|
|
2817
2973
|
interface $MacroAPISettings
|
|
2818
|
-
extends sap.fe.core.buildingBlocks.$
|
|
2974
|
+
extends sap.fe.core.buildingBlocks.$BuildingBlockSettings {
|
|
2819
2975
|
/**
|
|
2820
2976
|
* Defines the path of the context used in the current page or block.
|
|
2821
2977
|
* This setting is defined by the framework.
|
|
@@ -2834,7 +2990,7 @@ declare namespace sap {
|
|
|
2834
2990
|
* @experimental (since 1.118.0)
|
|
2835
2991
|
*/
|
|
2836
2992
|
interface $MultiValueFieldSettings
|
|
2837
|
-
extends sap.fe.core.buildingBlocks.$
|
|
2993
|
+
extends sap.fe.core.buildingBlocks.$BuildingBlockSettings {
|
|
2838
2994
|
/**
|
|
2839
2995
|
* The context path provided for the MultiValueField
|
|
2840
2996
|
*/
|
|
@@ -2867,7 +3023,7 @@ declare namespace sap {
|
|
|
2867
3023
|
* Describes the settings that can be provided to the RichTextEditor constructor.
|
|
2868
3024
|
*/
|
|
2869
3025
|
interface $RichTextEditorSettings
|
|
2870
|
-
extends sap.fe.core.buildingBlocks.$
|
|
3026
|
+
extends sap.fe.core.buildingBlocks.$BuildingBlockSettings {
|
|
2871
3027
|
/**
|
|
2872
3028
|
* With the 'excludeDefaultPlugins' you can ask to remove the plugins that will be added by default
|
|
2873
3029
|
* The default plugins are "emoticons" "directionality" "image" "table" "link" "powerpaste".
|
|
@@ -2945,14 +3101,6 @@ declare namespace sap {
|
|
|
2945
3101
|
*/
|
|
2946
3102
|
description?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2947
3103
|
|
|
2948
|
-
/**
|
|
2949
|
-
* A set of options that can be configured.
|
|
2950
|
-
*/
|
|
2951
|
-
formatOptions?:
|
|
2952
|
-
| sap.fe.macros.FieldFormatOptions
|
|
2953
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2954
|
-
| `{${string}}`;
|
|
2955
|
-
|
|
2956
3104
|
/**
|
|
2957
3105
|
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
2958
3106
|
*/
|
|
@@ -2984,6 +3132,11 @@ declare namespace sap {
|
|
|
2984
3132
|
* / unit).
|
|
2985
3133
|
*/
|
|
2986
3134
|
value?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3135
|
+
|
|
3136
|
+
/**
|
|
3137
|
+
* A set of options that can be configured.
|
|
3138
|
+
*/
|
|
3139
|
+
formatOptions?: sap.fe.macros.field.FieldFormatOptions;
|
|
2987
3140
|
}
|
|
2988
3141
|
|
|
2989
3142
|
/**
|
|
@@ -3416,6 +3569,15 @@ declare namespace sap {
|
|
|
3416
3569
|
*/
|
|
3417
3570
|
rowCountMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3418
3571
|
|
|
3572
|
+
/**
|
|
3573
|
+
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
3574
|
+
* vertically in the table.
|
|
3575
|
+
*/
|
|
3576
|
+
scrollThreshold?:
|
|
3577
|
+
| number
|
|
3578
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3579
|
+
| `{${string}}`;
|
|
3580
|
+
|
|
3419
3581
|
/**
|
|
3420
3582
|
* Defines the selection mode to be used by the table.
|
|
3421
3583
|
* Allowed values are `None`, `Single`, `ForceSingle`, `Multi`, `ForceMulti` or `Auto`.
|
|
@@ -3688,6 +3850,15 @@ declare namespace sap {
|
|
|
3688
3850
|
*/
|
|
3689
3851
|
rowCountMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3690
3852
|
|
|
3853
|
+
/**
|
|
3854
|
+
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
3855
|
+
* vertically in the table.
|
|
3856
|
+
*/
|
|
3857
|
+
scrollThreshold?:
|
|
3858
|
+
| number
|
|
3859
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3860
|
+
| `{${string}}`;
|
|
3861
|
+
|
|
3691
3862
|
/**
|
|
3692
3863
|
* Defines the selection mode to be used by the table.
|
|
3693
3864
|
* Allowed values are `None`, `Single`, `ForceSingle`, `Multi`, `ForceMulti` or `Auto`.
|
|
@@ -3911,10 +4082,11 @@ declare namespace sap {
|
|
|
3911
4082
|
*/
|
|
3912
4083
|
getSelectionMode(): string;
|
|
3913
4084
|
/**
|
|
3914
|
-
* Get the selection variant from the chart.
|
|
4085
|
+
* Get the selection variant from the chart. This function considers only the selection variant applied
|
|
4086
|
+
* at the control level.
|
|
3915
4087
|
*
|
|
3916
4088
|
*
|
|
3917
|
-
* @returns A promise that resolves with
|
|
4089
|
+
* @returns A promise that resolves with {@link sap.fe.navigation.SelectionVariant }.
|
|
3918
4090
|
*/
|
|
3919
4091
|
getSelectionVariant(): Promise<sap.fe.navigation.SelectionVariant>;
|
|
3920
4092
|
/**
|
|
@@ -4078,12 +4250,12 @@ declare namespace sap {
|
|
|
4078
4250
|
/**
|
|
4079
4251
|
* Building block used to create a KPI tag.
|
|
4080
4252
|
*/
|
|
4081
|
-
class KPITag extends sap.fe.core.buildingBlocks.
|
|
4253
|
+
class KPITag extends sap.fe.core.buildingBlocks.BuildingBlock {}
|
|
4082
4254
|
/**
|
|
4083
4255
|
* Base API control for building blocks.
|
|
4084
4256
|
*/
|
|
4085
4257
|
class MacroAPI
|
|
4086
|
-
extends sap.fe.core.buildingBlocks.
|
|
4258
|
+
extends sap.fe.core.buildingBlocks.BuildingBlock
|
|
4087
4259
|
implements sap.ui.core.IFormContent
|
|
4088
4260
|
{
|
|
4089
4261
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
@@ -4111,8 +4283,7 @@ declare namespace sap {
|
|
|
4111
4283
|
* @since 1.118.0
|
|
4112
4284
|
* @experimental (since 1.118.0)
|
|
4113
4285
|
*/
|
|
4114
|
-
class MultiValueField extends sap.fe.core.buildingBlocks
|
|
4115
|
-
.BuildingBlockBase {}
|
|
4286
|
+
class MultiValueField extends sap.fe.core.buildingBlocks.BuildingBlock {}
|
|
4116
4287
|
/**
|
|
4117
4288
|
* Building block that exposes the RichTextEditor UI5 control.
|
|
4118
4289
|
* It's used to enter formatted text, and uses the third-party component called TinyMCE.
|
|
@@ -4120,8 +4291,7 @@ declare namespace sap {
|
|
|
4120
4291
|
*
|
|
4121
4292
|
* @since 1.117.0
|
|
4122
4293
|
*/
|
|
4123
|
-
class RichTextEditor extends sap.fe.core.buildingBlocks
|
|
4124
|
-
.BuildingBlockBase {}
|
|
4294
|
+
class RichTextEditor extends sap.fe.core.buildingBlocks.BuildingBlock {}
|
|
4125
4295
|
/**
|
|
4126
4296
|
* Building block for adding overflow toolbar buttons to integrate into the flexible column layout support
|
|
4127
4297
|
* from Fiori elements.
|
|
@@ -4546,10 +4716,11 @@ declare namespace sap {
|
|
|
4546
4716
|
*/
|
|
4547
4717
|
getSelectedContexts(): sap.ui.model.odata.v4.Context[];
|
|
4548
4718
|
/**
|
|
4549
|
-
* Get the selection variant from the
|
|
4719
|
+
* Get the selection variant from the table. This function considers only the selection variant applied
|
|
4720
|
+
* at the control level.
|
|
4550
4721
|
*
|
|
4551
4722
|
*
|
|
4552
|
-
* @returns A promise which resolves with
|
|
4723
|
+
* @returns A promise which resolves with {@link sap.fe.navigation.SelectionVariant }
|
|
4553
4724
|
*/
|
|
4554
4725
|
getSelectionVariant(): Promise<sap.fe.navigation.SelectionVariant>;
|
|
4555
4726
|
/**
|
|
@@ -4711,10 +4882,11 @@ declare namespace sap {
|
|
|
4711
4882
|
*/
|
|
4712
4883
|
getSelectedContexts(): sap.ui.model.odata.v4.Context[];
|
|
4713
4884
|
/**
|
|
4714
|
-
* Get the selection variant from the
|
|
4885
|
+
* Get the selection variant from the table. This function considers only the selection variant applied
|
|
4886
|
+
* at the control level.
|
|
4715
4887
|
*
|
|
4716
4888
|
*
|
|
4717
|
-
* @returns A promise which resolves with
|
|
4889
|
+
* @returns A promise which resolves with {@link sap.fe.navigation.SelectionVariant }
|
|
4718
4890
|
*/
|
|
4719
4891
|
getSelectionVariant(): Promise<sap.fe.navigation.SelectionVariant>;
|
|
4720
4892
|
/**
|
|
@@ -4811,92 +4983,6 @@ declare namespace sap {
|
|
|
4811
4983
|
): Promise<void>;
|
|
4812
4984
|
}
|
|
4813
4985
|
|
|
4814
|
-
/**
|
|
4815
|
-
* Additional format options for the field.
|
|
4816
|
-
*/
|
|
4817
|
-
type FieldFormatOptions = {
|
|
4818
|
-
/**
|
|
4819
|
-
* Property for defining a custom pattern for the date, time, or dateTime format.
|
|
4820
|
-
*
|
|
4821
|
-
* If there is a dateTimePattern defined dateTimeStyle is ignored.
|
|
4822
|
-
*/
|
|
4823
|
-
dateTimePattern: string;
|
|
4824
|
-
/**
|
|
4825
|
-
* Property for defining the display style for the date, time, or dateTime format.
|
|
4826
|
-
*
|
|
4827
|
-
* If there is a dateTimePattern defined dateTimeStyle is ignored.
|
|
4828
|
-
*/
|
|
4829
|
-
dateTimeStyle: /* was: sap.fe.core.templating.UIFormatters.DateTimeStyle */ any;
|
|
4830
|
-
/**
|
|
4831
|
-
* Defines how the field value and associated text will be displayed together.
|
|
4832
|
-
*
|
|
4833
|
-
* Allowed values are "Value", "Description", "DescriptionValue" and "ValueDescription"
|
|
4834
|
-
*/
|
|
4835
|
-
displayMode: string;
|
|
4836
|
-
/**
|
|
4837
|
-
* Determines how the field should be rendered, e.g. as radio buttons.
|
|
4838
|
-
*
|
|
4839
|
-
* If not all prerequisites are met, the field will default back to the standard rendering.
|
|
4840
|
-
*/
|
|
4841
|
-
fieldEditStyle: /* was: sap.fe.macros.field.FieldAPI.FieldEditStyle */ any;
|
|
4842
|
-
/**
|
|
4843
|
-
* Defines if and how the field measure will be displayed.
|
|
4844
|
-
*
|
|
4845
|
-
* Allowed values are "Hidden" and "ReadOnly"
|
|
4846
|
-
*/
|
|
4847
|
-
measureDisplayMode: string;
|
|
4848
|
-
/**
|
|
4849
|
-
* Specifies if radio buttons should be rendered in a horizontal layout.
|
|
4850
|
-
*/
|
|
4851
|
-
radioButtonsHorizontalLayout: boolean;
|
|
4852
|
-
/**
|
|
4853
|
-
* Defines if the date part of a date time with timezone field should be shown.
|
|
4854
|
-
*
|
|
4855
|
-
* The dateTimeOffset field must have a timezone annotation.
|
|
4856
|
-
* The default value is true.
|
|
4857
|
-
*/
|
|
4858
|
-
showDate: boolean;
|
|
4859
|
-
/**
|
|
4860
|
-
* Defines if the time part of a date time with timezone field should be shown.
|
|
4861
|
-
*
|
|
4862
|
-
* The dateTimeOffset field must have a timezone annotation.
|
|
4863
|
-
* The default value is true.
|
|
4864
|
-
*/
|
|
4865
|
-
showTime: boolean;
|
|
4866
|
-
/**
|
|
4867
|
-
* Defines if the timezone part of a date time with timezone field should be shown.
|
|
4868
|
-
*
|
|
4869
|
-
* The dateTimeOffset field must have a timezone annotation.
|
|
4870
|
-
* The default value is true.
|
|
4871
|
-
*/
|
|
4872
|
-
showTimezone: boolean;
|
|
4873
|
-
/**
|
|
4874
|
-
* Defines how the full text will be displayed.
|
|
4875
|
-
*
|
|
4876
|
-
* Allowed values are "InPlace" and "Popover"
|
|
4877
|
-
*/
|
|
4878
|
-
textExpandBehaviorDisplay: string;
|
|
4879
|
-
/**
|
|
4880
|
-
* Maximum number of lines for multiline texts in edit mode.
|
|
4881
|
-
*/
|
|
4882
|
-
textLinesEdit: number;
|
|
4883
|
-
/**
|
|
4884
|
-
* Maximum number of characters from the beginning of the text field that are shown initially.
|
|
4885
|
-
*/
|
|
4886
|
-
textMaxCharactersDisplay: number;
|
|
4887
|
-
/**
|
|
4888
|
-
* Defines the maximum number of characters for the multiline text value.
|
|
4889
|
-
*
|
|
4890
|
-
* If a multiline text exceeds the maximum number of allowed characters, the counter below the input field
|
|
4891
|
-
* displays the exact number.
|
|
4892
|
-
*/
|
|
4893
|
-
textMaxLength: number;
|
|
4894
|
-
/**
|
|
4895
|
-
* Maximum number of lines that multiline texts in edit mode can grow to.
|
|
4896
|
-
*/
|
|
4897
|
-
textMaxLines: number;
|
|
4898
|
-
};
|
|
4899
|
-
|
|
4900
4986
|
/**
|
|
4901
4987
|
* Event object of the Chart#selectionChange event.
|
|
4902
4988
|
*/
|
|
@@ -5026,6 +5112,8 @@ declare namespace sap {
|
|
|
5026
5112
|
|
|
5027
5113
|
"sap/fe/macros/field/FieldAPI": undefined;
|
|
5028
5114
|
|
|
5115
|
+
"sap/fe/macros/field/FieldFormatOptions": undefined;
|
|
5116
|
+
|
|
5029
5117
|
"sap/fe/macros/filterBar/FilterBar": undefined;
|
|
5030
5118
|
|
|
5031
5119
|
"sap/fe/macros/filterBar/FilterBarAPI": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.131.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -380,7 +380,7 @@ declare namespace sap {
|
|
|
380
380
|
* If an error occurs, an error object of type {@link sap.fe.navigation.NavError }, URL parameters (if available)
|
|
381
381
|
* and the type of navigation are returned.
|
|
382
382
|
*/
|
|
383
|
-
parseNavigation():
|
|
383
|
+
parseNavigation(): JQuery.Promise<any>;
|
|
384
384
|
/**
|
|
385
385
|
* Processes navigation-related tasks related to beforePopoverOpens event handling for the SmartLink control
|
|
386
386
|
* and returns a Promise object. In
|
|
@@ -448,7 +448,7 @@ declare namespace sap {
|
|
|
448
448
|
*/
|
|
449
449
|
valueTexts?: object;
|
|
450
450
|
}
|
|
451
|
-
): JQuery.Promise<
|
|
451
|
+
): JQuery.Promise<string[], any, any>;
|
|
452
452
|
/**
|
|
453
453
|
* Changes the URL according to the current sAppStateKey. As an reaction route change event will be triggered.
|
|
454
454
|
*/
|
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED