@sapui5/ts-types 1.151.0 → 1.152.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/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 +18 -1
- package/types/sap.f.d.ts +1189 -292
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +61 -9
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +40 -34
- package/types/sap.fe.navigation.d.ts +1 -1
- 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 +12 -2
- 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 +14 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +114 -3
- 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 +915 -3
- 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 +4 -2
- package/types/sap.ui.core.d.ts +175 -12
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +7 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +101 -325
- package/types/sap.ui.joule.frontend.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +33 -7
- package/types/sap.ui.mdc.d.ts +26 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +3 -3
- 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 +60 -1
- 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 +1 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +63 -46
- 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.ariba.d.ts
CHANGED
package/types/sap.fe.base.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -14,6 +14,20 @@ declare namespace sap {
|
|
|
14
14
|
* can override to allow more flexibility.
|
|
15
15
|
*/
|
|
16
16
|
namespace controllerextensions {
|
|
17
|
+
namespace IntentBasedNavigation {
|
|
18
|
+
/**
|
|
19
|
+
* A navigation target that appears in a popover for semantic object links.
|
|
20
|
+
* Use this type to add or remove entries in {@link sap.fe.core.controllerextensions.IntentBasedNavigation#adaptNavigationTargets }.
|
|
21
|
+
* To remove an existing target, find it by `semanticObject` and `action` and remove it from the array.
|
|
22
|
+
* To add a new target, push a new object with the desired `semanticObject` and `action`.
|
|
23
|
+
* SAP Fiori elements resolves the navigation URL and applies the current row parameters automatically.
|
|
24
|
+
*
|
|
25
|
+
*
|
|
26
|
+
* @since 1.152.0
|
|
27
|
+
*/
|
|
28
|
+
type NavigationTarget = {};
|
|
29
|
+
}
|
|
30
|
+
|
|
17
31
|
namespace MessageHandler {
|
|
18
32
|
/**
|
|
19
33
|
* Defines the message details relevant for the MessageButton building block to display a popover.
|
|
@@ -759,6 +773,43 @@ declare namespace sap {
|
|
|
759
773
|
sourceControl: /* was: sap.fe.macros.Field */ any | undefined;
|
|
760
774
|
}
|
|
761
775
|
): void;
|
|
776
|
+
/**
|
|
777
|
+
* Use this method to modify the navigation targets that appear in the popover for semantic object links.
|
|
778
|
+
* The array is provided before the popover opens and can be modified in place to add, remove, or reorder
|
|
779
|
+
* targets.
|
|
780
|
+
* The system resolves URL parameters for newly added targets in the same way as for native targets. When
|
|
781
|
+
* you navigate, the system calls
|
|
782
|
+
* {@link sap.fe.core.controllerextensions.IntentBasedNavigation#adaptNavigationContext } for these targets.
|
|
783
|
+
* Each entry is a {@link sap.fe.core.controllerextensions.IntentBasedNavigation.NavigationTarget } identified
|
|
784
|
+
* by its `semanticObject` and `action`.
|
|
785
|
+
*
|
|
786
|
+
*
|
|
787
|
+
* @since 1.152.0
|
|
788
|
+
*/
|
|
789
|
+
adaptNavigationTargets(
|
|
790
|
+
/**
|
|
791
|
+
* Array of navigation targets to be shown in the popover. Modify in place to add, remove, or reorder entries.
|
|
792
|
+
*/
|
|
793
|
+
_navigationTargets: sap.fe.core.controllerextensions.IntentBasedNavigation.NavigationTarget[],
|
|
794
|
+
/**
|
|
795
|
+
* Object containing navigation-related context
|
|
796
|
+
*/
|
|
797
|
+
_oNavigationInfo: {
|
|
798
|
+
/**
|
|
799
|
+
* The binding context of the source row or field, providing access to the current record's data
|
|
800
|
+
*/
|
|
801
|
+
bindingContext: sap.ui.model.Context;
|
|
802
|
+
/**
|
|
803
|
+
* All semantic objects registered for the link field
|
|
804
|
+
*/
|
|
805
|
+
semanticObjects: string[];
|
|
806
|
+
/**
|
|
807
|
+
* The {@link sap.fe.macros.Field} building block instance that triggered the navigation, or undefined if
|
|
808
|
+
* not triggered from a field.
|
|
809
|
+
*/
|
|
810
|
+
sourceControl: /* was: sap.fe.macros.Field */ any | undefined;
|
|
811
|
+
}
|
|
812
|
+
): void;
|
|
762
813
|
/**
|
|
763
814
|
* Navigates to an intent defined by an outbound definition in the manifest.
|
|
764
815
|
*
|
|
@@ -997,8 +1048,8 @@ declare namespace sap {
|
|
|
997
1048
|
extends sap.fe.core.controllerextensions.BaseControllerExtension
|
|
998
1049
|
{
|
|
999
1050
|
/**
|
|
1000
|
-
* Adapts the metadata used while sharing the page URL using 'Send Email', 'Share
|
|
1001
|
-
* as Tile'.
|
|
1051
|
+
* Adapts the metadata used while sharing the page URL using 'Send Email', 'Share on SAP Build Work Zone',
|
|
1052
|
+
* and 'Save as Tile'.
|
|
1002
1053
|
*
|
|
1003
1054
|
* @since 1.93.0
|
|
1004
1055
|
*
|
|
@@ -1023,15 +1074,16 @@ declare namespace sap {
|
|
|
1023
1074
|
url: string;
|
|
1024
1075
|
};
|
|
1025
1076
|
/**
|
|
1026
|
-
* SAP
|
|
1077
|
+
* SAP Build Work Zone-specific metadata.
|
|
1027
1078
|
*/
|
|
1028
1079
|
jam: {
|
|
1029
1080
|
/**
|
|
1030
|
-
* Title that will be used as 'share text' in 'Share
|
|
1081
|
+
* Title that will be used as 'share text' in 'Share on SAP Build Work Zone'. This takes precedence over
|
|
1082
|
+
* oShareMetadata.title.
|
|
1031
1083
|
*/
|
|
1032
1084
|
title: string;
|
|
1033
1085
|
/**
|
|
1034
|
-
* URL that will be used specifically for 'Share
|
|
1086
|
+
* URL that will be used specifically for 'Share on SAP Build Work Zone'. This takes precedence over oShareMetadata.url.
|
|
1035
1087
|
*/
|
|
1036
1088
|
url?: string;
|
|
1037
1089
|
};
|
|
@@ -1061,12 +1113,12 @@ declare namespace sap {
|
|
|
1061
1113
|
url?: string;
|
|
1062
1114
|
};
|
|
1063
1115
|
/**
|
|
1064
|
-
* Default title that will be used as the 'email subject' in 'Send Email', 'share text' in 'Share
|
|
1065
|
-
*
|
|
1116
|
+
* Default title that will be used as the 'email subject' in 'Send Email', 'share text' in 'Share on SAP
|
|
1117
|
+
* Build Work Zone' and 'title' in 'Save as Tile'
|
|
1066
1118
|
*/
|
|
1067
1119
|
title: string;
|
|
1068
1120
|
/**
|
|
1069
|
-
* Default URL that will be used with 'Send Email', 'Share
|
|
1121
|
+
* Default URL that will be used with 'Send Email', 'Share on SAP Build Work Zone', and 'Save as Tile'
|
|
1070
1122
|
*/
|
|
1071
1123
|
url: string;
|
|
1072
1124
|
}
|
package/types/sap.fe.ina.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -1446,8 +1446,14 @@ declare namespace sap {
|
|
|
1446
1446
|
contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1447
1447
|
|
|
1448
1448
|
/**
|
|
1449
|
-
*
|
|
1450
|
-
*
|
|
1449
|
+
* Only use this mode when the building block is used in a temporary context, such as in a dialog,
|
|
1450
|
+
* and you don't want end-user personalization to persist across multiple invocations.
|
|
1451
|
+
* When set to `true`, end-user personalization changes are retained only for the current invocation instance
|
|
1452
|
+
* and are discarded on the next invocation, such as when the dialog is reopened.
|
|
1453
|
+
* Additionally, if the building block is associated with a variant,
|
|
1454
|
+
* changing the selected variant will not save or restore that variant in the next invocation.
|
|
1455
|
+
* Note: Don't use `ignorePersonalizationChanges` on a filter bar with an existing ID. Create a new ID
|
|
1456
|
+
* for the control to use this feature.
|
|
1451
1457
|
*/
|
|
1452
1458
|
ignorePersonalizationChanges?:
|
|
1453
1459
|
| boolean
|
|
@@ -2628,9 +2634,7 @@ declare namespace sap {
|
|
|
2628
2634
|
interface $ShareOptionsSettings
|
|
2629
2635
|
extends sap.fe.macros.controls.$BuildingBlockObjectPropertySettings {
|
|
2630
2636
|
/**
|
|
2631
|
-
* Controls visibility of the "Share
|
|
2632
|
-
* This option appears as either "Share in SAP Jam" or "Share in SAP Build Work Zone"
|
|
2633
|
-
* depending on the customer's deployment. Both labels refer to the same functionality.
|
|
2637
|
+
* Controls visibility of the "Share on SAP Build Work Zone" option.
|
|
2634
2638
|
*/
|
|
2635
2639
|
showShareInWorkzone?:
|
|
2636
2640
|
| boolean
|
|
@@ -3477,12 +3481,11 @@ declare namespace sap {
|
|
|
3477
3481
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3478
3482
|
|
|
3479
3483
|
/**
|
|
3480
|
-
*
|
|
3481
|
-
*
|
|
3482
|
-
*
|
|
3483
|
-
* and are discarded on the next
|
|
3484
|
-
*
|
|
3485
|
-
* changing the selected variant will not save or restore that variant in the next invocation.
|
|
3484
|
+
* Use this mode when the table must not persist its personalization state between sessions.
|
|
3485
|
+
* When set to `true`, a transient `PersistenceProvider` is added to the table so that
|
|
3486
|
+
* personalization changes such as column visibility, sorting, and filtering are kept only for the current
|
|
3487
|
+
* session and are discarded on the next page load. In addition, variants and application states stored
|
|
3488
|
+
* with iAppState are not applied to the table.
|
|
3486
3489
|
* Note: Don't use `ignorePersonalizationChanges` on a table with an existing ID. Create a new ID
|
|
3487
3490
|
* for the control to use this feature.
|
|
3488
3491
|
*/
|
|
@@ -3988,12 +3991,11 @@ declare namespace sap {
|
|
|
3988
3991
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3989
3992
|
|
|
3990
3993
|
/**
|
|
3991
|
-
*
|
|
3992
|
-
*
|
|
3993
|
-
*
|
|
3994
|
-
* and are discarded on the next
|
|
3995
|
-
*
|
|
3996
|
-
* changing the selected variant will not save or restore that variant in the next invocation.
|
|
3994
|
+
* Use this mode when the table must not persist its personalization state between sessions.
|
|
3995
|
+
* When set to `true`, a transient `PersistenceProvider` is added to the table so that
|
|
3996
|
+
* personalization changes such as column visibility, sorting, and filtering are kept only for the current
|
|
3997
|
+
* session and are discarded on the next page load. In addition, variants and application states stored
|
|
3998
|
+
* with iAppState are not applied to the table.
|
|
3997
3999
|
* Note: Don't use `ignorePersonalizationChanges` on a table with an existing ID. Create a new ID
|
|
3998
4000
|
* for the control to use this feature.
|
|
3999
4001
|
*/
|
|
@@ -5946,8 +5948,14 @@ declare namespace sap {
|
|
|
5946
5948
|
contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
5947
5949
|
|
|
5948
5950
|
/**
|
|
5949
|
-
*
|
|
5950
|
-
*
|
|
5951
|
+
* Only use this mode when the building block is used in a temporary context, such as in a dialog,
|
|
5952
|
+
* and you don't want end-user personalization to persist across multiple invocations.
|
|
5953
|
+
* When set to `true`, end-user personalization changes are retained only for the current invocation instance
|
|
5954
|
+
* and are discarded on the next invocation, such as when the dialog is reopened.
|
|
5955
|
+
* Additionally, if the building block is associated with a variant,
|
|
5956
|
+
* changing the selected variant will not save or restore that variant in the next invocation.
|
|
5957
|
+
* Note: Don't use `ignorePersonalizationChanges` on a filter bar with an existing ID. Create a new ID
|
|
5958
|
+
* for the control to use this feature.
|
|
5951
5959
|
*/
|
|
5952
5960
|
ignorePersonalizationChanges?:
|
|
5953
5961
|
| boolean
|
|
@@ -6709,12 +6717,11 @@ declare namespace sap {
|
|
|
6709
6717
|
ignoredFields?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
6710
6718
|
|
|
6711
6719
|
/**
|
|
6712
|
-
*
|
|
6713
|
-
*
|
|
6714
|
-
*
|
|
6715
|
-
* and are discarded on the next
|
|
6716
|
-
*
|
|
6717
|
-
* changing the selected variant will not save or restore that variant in the next invocation.
|
|
6720
|
+
* Use this mode when the table must not persist its personalization state between sessions.
|
|
6721
|
+
* When set to `true`, a transient `PersistenceProvider` is added to the table so that
|
|
6722
|
+
* personalization changes such as column visibility, sorting, and filtering are kept only for the current
|
|
6723
|
+
* session and are discarded on the next page load. In addition, variants and application states stored
|
|
6724
|
+
* with iAppState are not applied to the table.
|
|
6718
6725
|
* Note: Don't use `ignorePersonalizationChanges` on a table with an existing ID. Create a new ID
|
|
6719
6726
|
* for the control to use this feature.
|
|
6720
6727
|
*/
|
|
@@ -7146,12 +7153,11 @@ declare namespace sap {
|
|
|
7146
7153
|
ignoredFields?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7147
7154
|
|
|
7148
7155
|
/**
|
|
7149
|
-
*
|
|
7150
|
-
*
|
|
7151
|
-
*
|
|
7152
|
-
* and are discarded on the next
|
|
7153
|
-
*
|
|
7154
|
-
* changing the selected variant will not save or restore that variant in the next invocation.
|
|
7156
|
+
* Use this mode when the table must not persist its personalization state between sessions.
|
|
7157
|
+
* When set to `true`, a transient `PersistenceProvider` is added to the table so that
|
|
7158
|
+
* personalization changes such as column visibility, sorting, and filtering are kept only for the current
|
|
7159
|
+
* session and are discarded on the next page load. In addition, variants and application states stored
|
|
7160
|
+
* with iAppState are not applied to the table.
|
|
7155
7161
|
* Note: Don't use `ignorePersonalizationChanges` on a table with an existing ID. Create a new ID
|
|
7156
7162
|
* for the control to use this feature.
|
|
7157
7163
|
*/
|
|
@@ -9555,8 +9561,8 @@ declare namespace sap {
|
|
|
9555
9561
|
* Building block used to create the ‘Share’ functionality.
|
|
9556
9562
|
*
|
|
9557
9563
|
*
|
|
9558
|
-
* Please note that the 'Share
|
|
9559
|
-
* SAP
|
|
9564
|
+
* Please note that the 'Share on SAP Build Work Zone' option is only available on platforms that are integrated
|
|
9565
|
+
* with SAP Build Work Zone.
|
|
9560
9566
|
*
|
|
9561
9567
|
*
|
|
9562
9568
|
* If you are consuming this macro in an environment where the SAP Fiori launchpad is not available, then
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -259,7 +259,17 @@ declare namespace sap {
|
|
|
259
259
|
* The ID of the target section or subsection (without a view prefix, for example, "fe::FacetSection::TravelData"
|
|
260
260
|
* or "fe::SubSection::Details")
|
|
261
261
|
*/
|
|
262
|
-
sectionOrSubSectionId: string
|
|
262
|
+
sectionOrSubSectionId: string,
|
|
263
|
+
/**
|
|
264
|
+
* Navigation options
|
|
265
|
+
*/
|
|
266
|
+
options?: {
|
|
267
|
+
/**
|
|
268
|
+
* When true, suppresses the error dialog if the target section is not visible. Use this for programmatic
|
|
269
|
+
* navigation (for example, ViewState restoration) where a silent fallback is preferred.
|
|
270
|
+
*/
|
|
271
|
+
silent?: boolean;
|
|
272
|
+
}
|
|
263
273
|
): void;
|
|
264
274
|
/**
|
|
265
275
|
* Refreshes either the whole object page or only parts of it.
|
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -41828,6 +41828,19 @@ declare namespace sap {
|
|
|
41828
41828
|
*/
|
|
41829
41829
|
vSimpleAdhocLine: int | string | sap.gantt.simple.AdhocLine
|
|
41830
41830
|
): sap.gantt.simple.AdhocLine | null;
|
|
41831
|
+
/**
|
|
41832
|
+
* This method scrolls the gantt chart vertically to display the specified row ID. There are no changes
|
|
41833
|
+
* if the specified row ID is already visible. Use this together with {@link #jumpToPosition} to implement
|
|
41834
|
+
* custom find-and-select logic for both horizontal and vertical scrolling.
|
|
41835
|
+
*
|
|
41836
|
+
* @since 1.152
|
|
41837
|
+
*/
|
|
41838
|
+
scrollToRow(
|
|
41839
|
+
/**
|
|
41840
|
+
* The row ID value is bound using the `rowId` property of the row settings template.
|
|
41841
|
+
*/
|
|
41842
|
+
sRowId: string
|
|
41843
|
+
): void;
|
|
41831
41844
|
/**
|
|
41832
41845
|
* Selects a group of shapes specified by the `aShapeUids` array. Alternatively, this method deselects all
|
|
41833
41846
|
* selected shapes when no shape UIDs are provided and the `bExclusive` parameter is `true`.
|
package/types/sap.insights.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/m/p13n/Engine" {
|
|
4
4
|
/**
|
|
@@ -18940,6 +18940,9 @@ declare namespace sap {
|
|
|
18940
18940
|
/**
|
|
18941
18941
|
* Custom buttons, to be displayed in the preview dialog footer.
|
|
18942
18942
|
* Control by default adds two buttons (download and close).
|
|
18943
|
+
* **Note:** Buttons added using this aggregation cannot use `sap.m.ButtonType.Emphasized` since the Download
|
|
18944
|
+
* button is already rendered as emphasized to comply with the SAP Fiori action placement guidelines. Adding
|
|
18945
|
+
* another emphasized button violates the single-primary-action pattern.
|
|
18943
18946
|
*/
|
|
18944
18947
|
additionalFooterButtons?:
|
|
18945
18948
|
| sap.m.Button[]
|
|
@@ -20580,6 +20583,9 @@ declare namespace sap {
|
|
|
20580
20583
|
*
|
|
20581
20584
|
* Custom buttons, to be displayed in the preview dialog footer.
|
|
20582
20585
|
* Control by default adds two buttons (download and close).
|
|
20586
|
+
* **Note:** Buttons added using this aggregation cannot use `sap.m.ButtonType.Emphasized` since the Download
|
|
20587
|
+
* button is already rendered as emphasized to comply with the SAP Fiori action placement guidelines. Adding
|
|
20588
|
+
* another emphasized button violates the single-primary-action pattern.
|
|
20583
20589
|
*/
|
|
20584
20590
|
getAdditionalFooterButtons(): sap.m.Button[];
|
|
20585
20591
|
/**
|
|
@@ -45057,7 +45063,15 @@ declare namespace sap {
|
|
|
45057
45063
|
/**
|
|
45058
45064
|
* Describes the settings that can be provided to the TimePickerInputs constructor.
|
|
45059
45065
|
*/
|
|
45060
|
-
interface $TimePickerInputsSettings extends sap.ui.core.$ControlSettings {
|
|
45066
|
+
interface $TimePickerInputsSettings extends sap.ui.core.$ControlSettings {
|
|
45067
|
+
/**
|
|
45068
|
+
* Fired when the user commits a time edit — via digit / arrow / backspace / delete keys or by selecting
|
|
45069
|
+
* a different AM/PM. Consumers can use this to react to user interaction with the time inputs, since the
|
|
45070
|
+
* inner Input controls do not fire their own change event (onkeydown is intercepted and values are written
|
|
45071
|
+
* directly through setValue).
|
|
45072
|
+
*/
|
|
45073
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
45074
|
+
}
|
|
45061
45075
|
|
|
45062
45076
|
/**
|
|
45063
45077
|
* Describes the settings that can be provided to the TimePickerSliders constructor.
|
|
@@ -50428,6 +50442,11 @@ declare namespace sap {
|
|
|
50428
50442
|
interface TimePicker$LiveChangeEventParameters
|
|
50429
50443
|
extends sap.m.DateTimeField$LiveChangeEventParameters {}
|
|
50430
50444
|
|
|
50445
|
+
/**
|
|
50446
|
+
* Parameters of the TimePickerInputs#change event.
|
|
50447
|
+
*/
|
|
50448
|
+
interface TimePickerInputs$ChangeEventParameters {}
|
|
50449
|
+
|
|
50431
50450
|
/**
|
|
50432
50451
|
* Parameters of the TimePickerSliders#change event.
|
|
50433
50452
|
*/
|
|
@@ -74087,7 +74106,7 @@ declare namespace sap {
|
|
|
74087
74106
|
* 1.23 the new feature expand / collapse was introduced, which uses the property maxCharacters. Beginning
|
|
74088
74107
|
* with release 1.44, sap.m.FormattedText was introduced which allows html formatted text to be displayed.
|
|
74089
74108
|
* The `actions` aggregation must contain instances of {@link sap.m.FeedListItemAction} in order to display
|
|
74090
|
-
* them in
|
|
74109
|
+
* them in a menu.
|
|
74091
74110
|
*
|
|
74092
74111
|
* @since 1.12
|
|
74093
74112
|
*/
|
|
@@ -153876,6 +153895,90 @@ declare namespace sap {
|
|
|
153876
153895
|
* @returns Metadata object describing this class
|
|
153877
153896
|
*/
|
|
153878
153897
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
153898
|
+
/**
|
|
153899
|
+
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.m.TimePickerInputs`.
|
|
153900
|
+
*
|
|
153901
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
153902
|
+
* otherwise it will be bound to this `sap.m.TimePickerInputs` itself.
|
|
153903
|
+
*
|
|
153904
|
+
* Fired when the user commits a time edit — via digit / arrow / backspace / delete keys or by selecting
|
|
153905
|
+
* a different AM/PM. Consumers can use this to react to user interaction with the time inputs, since the
|
|
153906
|
+
* inner Input controls do not fire their own change event (onkeydown is intercepted and values are written
|
|
153907
|
+
* directly through setValue).
|
|
153908
|
+
*
|
|
153909
|
+
*
|
|
153910
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
153911
|
+
*/
|
|
153912
|
+
attachChange(
|
|
153913
|
+
/**
|
|
153914
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
153915
|
+
* object when firing the event
|
|
153916
|
+
*/
|
|
153917
|
+
oData: object,
|
|
153918
|
+
/**
|
|
153919
|
+
* The function to be called when the event occurs
|
|
153920
|
+
*/
|
|
153921
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
153922
|
+
/**
|
|
153923
|
+
* Context object to call the event handler with. Defaults to this `sap.m.TimePickerInputs` itself
|
|
153924
|
+
*/
|
|
153925
|
+
oListener?: object
|
|
153926
|
+
): this;
|
|
153927
|
+
/**
|
|
153928
|
+
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.m.TimePickerInputs`.
|
|
153929
|
+
*
|
|
153930
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
153931
|
+
* otherwise it will be bound to this `sap.m.TimePickerInputs` itself.
|
|
153932
|
+
*
|
|
153933
|
+
* Fired when the user commits a time edit — via digit / arrow / backspace / delete keys or by selecting
|
|
153934
|
+
* a different AM/PM. Consumers can use this to react to user interaction with the time inputs, since the
|
|
153935
|
+
* inner Input controls do not fire their own change event (onkeydown is intercepted and values are written
|
|
153936
|
+
* directly through setValue).
|
|
153937
|
+
*
|
|
153938
|
+
*
|
|
153939
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
153940
|
+
*/
|
|
153941
|
+
attachChange(
|
|
153942
|
+
/**
|
|
153943
|
+
* The function to be called when the event occurs
|
|
153944
|
+
*/
|
|
153945
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
153946
|
+
/**
|
|
153947
|
+
* Context object to call the event handler with. Defaults to this `sap.m.TimePickerInputs` itself
|
|
153948
|
+
*/
|
|
153949
|
+
oListener?: object
|
|
153950
|
+
): this;
|
|
153951
|
+
/**
|
|
153952
|
+
* Detaches event handler `fnFunction` from the {@link #event:change change} event of this `sap.m.TimePickerInputs`.
|
|
153953
|
+
*
|
|
153954
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
153955
|
+
*
|
|
153956
|
+
*
|
|
153957
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
153958
|
+
*/
|
|
153959
|
+
detachChange(
|
|
153960
|
+
/**
|
|
153961
|
+
* The function to be called, when the event occurs
|
|
153962
|
+
*/
|
|
153963
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
153964
|
+
/**
|
|
153965
|
+
* Context object on which the given function had to be called
|
|
153966
|
+
*/
|
|
153967
|
+
oListener?: object
|
|
153968
|
+
): this;
|
|
153969
|
+
/**
|
|
153970
|
+
* Fires event {@link #event:change change} to attached listeners.
|
|
153971
|
+
*
|
|
153972
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
153973
|
+
*
|
|
153974
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
153975
|
+
*/
|
|
153976
|
+
fireChange(
|
|
153977
|
+
/**
|
|
153978
|
+
* Parameters to pass along with the event
|
|
153979
|
+
*/
|
|
153980
|
+
mParameters?: object
|
|
153981
|
+
): this;
|
|
153879
153982
|
/**
|
|
153880
153983
|
* Gets the time values from the clocks, as a date object.
|
|
153881
153984
|
*
|
|
@@ -173120,6 +173223,14 @@ declare namespace sap {
|
|
|
173120
173223
|
TimePicker
|
|
173121
173224
|
>;
|
|
173122
173225
|
|
|
173226
|
+
/**
|
|
173227
|
+
* Event object of the TimePickerInputs#change event.
|
|
173228
|
+
*/
|
|
173229
|
+
type TimePickerInputs$ChangeEvent = sap.ui.base.Event<
|
|
173230
|
+
TimePickerInputs$ChangeEventParameters,
|
|
173231
|
+
TimePickerInputs
|
|
173232
|
+
>;
|
|
173233
|
+
|
|
173123
173234
|
/**
|
|
173124
173235
|
* Event object of the TimePickerSliders#change event.
|
|
173125
173236
|
*/
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.rules.ui.d.ts
CHANGED
package/types/sap.sac.df.d.ts
CHANGED