@sapui5/ts-types 1.112.1 → 1.113.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 +59 -2
- package/types/sap.chart.d.ts +15 -1
- package/types/sap.collaboration.d.ts +33 -1
- package/types/sap.esh.search.ui.d.ts +405 -1
- package/types/sap.f.d.ts +75 -38
- package/types/sap.fe.core.d.ts +28 -2
- package/types/sap.fe.macros.d.ts +52 -69
- package/types/sap.fe.navigation.d.ts +2 -0
- package/types/sap.fe.templates.d.ts +6 -0
- package/types/sap.fe.test.d.ts +7 -1
- package/types/sap.feedback.ui.d.ts +2 -6
- package/types/sap.gantt.d.ts +238 -16
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +27 -1
- package/types/sap.m.d.ts +1854 -85
- package/types/sap.makit.d.ts +13 -1
- package/types/sap.me.d.ts +17 -1
- package/types/sap.ndc.d.ts +10 -2
- package/types/sap.ovp.d.ts +7 -1
- package/types/sap.rules.ui.d.ts +9 -1
- package/types/sap.sac.df.d.ts +62 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +272 -2
- package/types/sap.suite.ui.generic.template.d.ts +180 -1
- package/types/sap.suite.ui.microchart.d.ts +37 -1
- package/types/sap.tnt.d.ts +7 -1
- package/types/sap.ui.codeeditor.d.ts +5 -1
- package/types/sap.ui.commons.d.ts +197 -1
- package/types/sap.ui.comp.d.ts +314 -7
- package/types/sap.ui.core.d.ts +1508 -518
- 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 +13 -1
- package/types/sap.ui.generic.app.d.ts +20 -7
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +52 -19
- package/types/sap.ui.layout.d.ts +43 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +11 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +5 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +63 -7
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +308 -4
- package/types/sap.ui.ux3.d.ts +147 -1
- package/types/sap.ui.vbm.d.ts +122 -1
- package/types/sap.ui.vk.d.ts +375 -2
- package/types/sap.ui.vtm.d.ts +73 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +63 -1
- package/types/sap.ui.webc.main.d.ts +189 -5
- package/types/sap.uiext.inbox.d.ts +27 -1
- package/types/sap.ushell.d.ts +375 -79
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +26 -1
- package/types/sap.viz.d.ts +229 -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 +10 -1
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.113.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -586,6 +586,8 @@ declare namespace sap {
|
|
|
586
586
|
*/
|
|
587
587
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
588
588
|
/**
|
|
589
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
590
|
+
*
|
|
589
591
|
* Adds a `FilterGroupItem` element to the aggregation `_parameters`.
|
|
590
592
|
*
|
|
591
593
|
* @returns Reference to this in order to allow method chaining
|
|
@@ -597,18 +599,24 @@ declare namespace sap {
|
|
|
597
599
|
oParameter: sap.ui.comp.filterbar.FilterGroupItem
|
|
598
600
|
): this;
|
|
599
601
|
/**
|
|
602
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
603
|
+
*
|
|
600
604
|
* Checks if running on phone.
|
|
601
605
|
*
|
|
602
606
|
* @returns `True` if phone, `false` otherwise
|
|
603
607
|
*/
|
|
604
608
|
_isPhone(): boolean;
|
|
605
609
|
/**
|
|
610
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
611
|
+
*
|
|
606
612
|
* Checks if running on tablet.
|
|
607
613
|
*
|
|
608
614
|
* @returns `True` if tablet, `false` otherwise
|
|
609
615
|
*/
|
|
610
616
|
_isTablet(): boolean;
|
|
611
617
|
/**
|
|
618
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
619
|
+
*
|
|
612
620
|
* Retrieves the controls for all visible filters.
|
|
613
621
|
*
|
|
614
622
|
* @returns all visible controls/filter name & controls
|
|
@@ -624,6 +632,8 @@ declare namespace sap {
|
|
|
624
632
|
bConsiderParameters: boolean
|
|
625
633
|
): any[];
|
|
626
634
|
/**
|
|
635
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
636
|
+
*
|
|
627
637
|
* Updates the 'Filters'-button text with the count of filters with values
|
|
628
638
|
*/
|
|
629
639
|
_updateToolbarText(): void;
|
|
@@ -1985,6 +1995,8 @@ declare namespace sap {
|
|
|
1985
1995
|
*/
|
|
1986
1996
|
fetchVariant(): Object;
|
|
1987
1997
|
/**
|
|
1998
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1999
|
+
*
|
|
1988
2000
|
* Fires event {@link #event:afterVariantSave afterVariantSave} to attached listeners.
|
|
1989
2001
|
*
|
|
1990
2002
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1997,6 +2009,7 @@ declare namespace sap {
|
|
|
1997
2009
|
): this;
|
|
1998
2010
|
/**
|
|
1999
2011
|
* @SINCE 1.38.0
|
|
2012
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2000
2013
|
*
|
|
2001
2014
|
* Fires event {@link #event:assignedFiltersChanged assignedFiltersChanged} to attached listeners.
|
|
2002
2015
|
*
|
|
@@ -2010,6 +2023,7 @@ declare namespace sap {
|
|
|
2010
2023
|
): this;
|
|
2011
2024
|
/**
|
|
2012
2025
|
* @SINCE 1.28.13
|
|
2026
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2013
2027
|
*
|
|
2014
2028
|
* Fires event {@link #event:beforeVariantFetch beforeVariantFetch} to attached listeners.
|
|
2015
2029
|
*
|
|
@@ -2022,6 +2036,8 @@ declare namespace sap {
|
|
|
2022
2036
|
mParameters?: object
|
|
2023
2037
|
): this;
|
|
2024
2038
|
/**
|
|
2039
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2040
|
+
*
|
|
2025
2041
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
2026
2042
|
*
|
|
2027
2043
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2033,6 +2049,8 @@ declare namespace sap {
|
|
|
2033
2049
|
mParameters?: object
|
|
2034
2050
|
): this;
|
|
2035
2051
|
/**
|
|
2052
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2053
|
+
*
|
|
2036
2054
|
* Fires event {@link #event:clear clear} to attached listeners.
|
|
2037
2055
|
*
|
|
2038
2056
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2050,6 +2068,7 @@ declare namespace sap {
|
|
|
2050
2068
|
): this;
|
|
2051
2069
|
/**
|
|
2052
2070
|
* @SINCE 1.48.0
|
|
2071
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2053
2072
|
*
|
|
2054
2073
|
* Fires event {@link #event:filtersDialogBeforeOpen filtersDialogBeforeOpen} to attached listeners.
|
|
2055
2074
|
*
|
|
@@ -2063,6 +2082,7 @@ declare namespace sap {
|
|
|
2063
2082
|
): this;
|
|
2064
2083
|
/**
|
|
2065
2084
|
* @SINCE 1.48.0
|
|
2085
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2066
2086
|
*
|
|
2067
2087
|
* Fires event {@link #event:filtersDialogCancel filtersDialogCancel} to attached listeners.
|
|
2068
2088
|
*
|
|
@@ -2076,6 +2096,7 @@ declare namespace sap {
|
|
|
2076
2096
|
): this;
|
|
2077
2097
|
/**
|
|
2078
2098
|
* @SINCE 1.34.0
|
|
2099
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2079
2100
|
*
|
|
2080
2101
|
* Fires event {@link #event:filtersDialogClosed filtersDialogClosed} to attached listeners.
|
|
2081
2102
|
*
|
|
@@ -2095,6 +2116,7 @@ declare namespace sap {
|
|
|
2095
2116
|
/**
|
|
2096
2117
|
* @SINCE 1.48.0
|
|
2097
2118
|
* @deprecated (since 1.84)
|
|
2119
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2098
2120
|
*
|
|
2099
2121
|
* Fires event {@link #event:filtersDialogSearch filtersDialogSearch} to attached listeners.
|
|
2100
2122
|
*
|
|
@@ -2109,6 +2131,7 @@ declare namespace sap {
|
|
|
2109
2131
|
/**
|
|
2110
2132
|
* @SINCE 1.48.0
|
|
2111
2133
|
* @deprecated (since 1.84)
|
|
2134
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2112
2135
|
*
|
|
2113
2136
|
* Fires event {@link #event:filtersDialogSearchForFilters filtersDialogSearchForFilters} to attached listeners.
|
|
2114
2137
|
*
|
|
@@ -2126,6 +2149,8 @@ declare namespace sap {
|
|
|
2126
2149
|
}
|
|
2127
2150
|
): this;
|
|
2128
2151
|
/**
|
|
2152
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2153
|
+
*
|
|
2129
2154
|
* Fires event {@link #event:initialise initialise} to attached listeners.
|
|
2130
2155
|
*
|
|
2131
2156
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2138,6 +2163,7 @@ declare namespace sap {
|
|
|
2138
2163
|
): this;
|
|
2139
2164
|
/**
|
|
2140
2165
|
* @SINCE 1.38.0
|
|
2166
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2141
2167
|
*
|
|
2142
2168
|
* Fires event {@link #event:initialized initialized} to attached listeners.
|
|
2143
2169
|
*
|
|
@@ -2150,6 +2176,8 @@ declare namespace sap {
|
|
|
2150
2176
|
mParameters?: object
|
|
2151
2177
|
): this;
|
|
2152
2178
|
/**
|
|
2179
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2180
|
+
*
|
|
2153
2181
|
* Fires event {@link #event:reset reset} to attached listeners.
|
|
2154
2182
|
*
|
|
2155
2183
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2166,6 +2194,8 @@ declare namespace sap {
|
|
|
2166
2194
|
}
|
|
2167
2195
|
): this;
|
|
2168
2196
|
/**
|
|
2197
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2198
|
+
*
|
|
2169
2199
|
* Fires event {@link #event:search search} to attached listeners.
|
|
2170
2200
|
*
|
|
2171
2201
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2215,12 +2245,16 @@ declare namespace sap {
|
|
|
2215
2245
|
*/
|
|
2216
2246
|
getBasicSearch(): sap.ui.core.ID;
|
|
2217
2247
|
/**
|
|
2248
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2249
|
+
*
|
|
2218
2250
|
* Determine the internal basic search field name.
|
|
2219
2251
|
*
|
|
2220
2252
|
* @returns name of the basic search field.
|
|
2221
2253
|
*/
|
|
2222
2254
|
getBasicSearchName(): string;
|
|
2223
2255
|
/**
|
|
2256
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2257
|
+
*
|
|
2224
2258
|
* Determine the value of the basic search.
|
|
2225
2259
|
*
|
|
2226
2260
|
* @returns current value of the basic search field.
|
|
@@ -2274,6 +2308,7 @@ declare namespace sap {
|
|
|
2274
2308
|
getDeltaVariantMode(): boolean;
|
|
2275
2309
|
/**
|
|
2276
2310
|
* @SINCE 1.75
|
|
2311
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2277
2312
|
*
|
|
2278
2313
|
* Reads the descriptions for given filters and value keys.
|
|
2279
2314
|
*/
|
|
@@ -2560,6 +2595,7 @@ declare namespace sap {
|
|
|
2560
2595
|
getVariantManagement(): sap.ui.comp.variants.VariantManagement;
|
|
2561
2596
|
/**
|
|
2562
2597
|
* @SINCE 1.40.4
|
|
2598
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2563
2599
|
*
|
|
2564
2600
|
* Hides the Go button on FilterBar. Allows to hide the Go-button for dedicated scenarios, like liveMode.
|
|
2565
2601
|
*/
|
|
@@ -2606,6 +2642,8 @@ declare namespace sap {
|
|
|
2606
2642
|
*/
|
|
2607
2643
|
isCurrentVariantStandard(): boolean | undefined;
|
|
2608
2644
|
/**
|
|
2645
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2646
|
+
*
|
|
2609
2647
|
* Determines if the filters dialog is opened.
|
|
2610
2648
|
*
|
|
2611
2649
|
* @returns State of filters dialog
|
|
@@ -2696,11 +2734,14 @@ declare namespace sap {
|
|
|
2696
2734
|
vFilterItem: int | string | sap.ui.comp.filterbar.FilterItem
|
|
2697
2735
|
): sap.ui.comp.filterbar.FilterItem | null;
|
|
2698
2736
|
/**
|
|
2737
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2738
|
+
*
|
|
2699
2739
|
* Adapts the visibility for all filter containers.
|
|
2700
2740
|
*/
|
|
2701
2741
|
rerenderFilters(): void;
|
|
2702
2742
|
/**
|
|
2703
2743
|
* @SINCE 1.40.4
|
|
2744
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2704
2745
|
*
|
|
2705
2746
|
* Restores the visibility of the Go button on FilterBar. The visibility of the Go button will be set, according
|
|
2706
2747
|
* to the showGoOnFB property.
|
|
@@ -3096,6 +3137,7 @@ declare namespace sap {
|
|
|
3096
3137
|
): this;
|
|
3097
3138
|
/**
|
|
3098
3139
|
* @deprecated (since 1.84)
|
|
3140
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
3099
3141
|
*
|
|
3100
3142
|
* Once set, the activation of the 'Adapt Filters' button will open the 'old' filters dialog. This method
|
|
3101
3143
|
* offers an intermediate solution for the visual filters scenario, which relies on the old filters dialog.
|
|
@@ -3236,6 +3278,8 @@ declare namespace sap {
|
|
|
3236
3278
|
*/
|
|
3237
3279
|
showFilterDialog(): void;
|
|
3238
3280
|
/**
|
|
3281
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
3282
|
+
*
|
|
3239
3283
|
* This method will be called by the SmartVariantMangement and indicates, that the standard variant was
|
|
3240
3284
|
* obtained. It indicates, that the variant management is fully initialized.
|
|
3241
3285
|
*/
|
|
@@ -3498,6 +3542,8 @@ declare namespace sap {
|
|
|
3498
3542
|
oListener?: object
|
|
3499
3543
|
): this;
|
|
3500
3544
|
/**
|
|
3545
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
3546
|
+
*
|
|
3501
3547
|
* Fires event {@link #event:change change} to attached listeners.
|
|
3502
3548
|
*
|
|
3503
3549
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -5161,6 +5207,7 @@ declare namespace sap {
|
|
|
5161
5207
|
): this;
|
|
5162
5208
|
/**
|
|
5163
5209
|
* @SINCE 1.44.0
|
|
5210
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
5164
5211
|
*
|
|
5165
5212
|
* Fires event {@link #event:availableActionsPersonalizationPress availableActionsPersonalizationPress}
|
|
5166
5213
|
* to attached listeners.
|
|
@@ -5175,6 +5222,7 @@ declare namespace sap {
|
|
|
5175
5222
|
): this;
|
|
5176
5223
|
/**
|
|
5177
5224
|
* @SINCE 1.28.0
|
|
5225
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
5178
5226
|
*
|
|
5179
5227
|
* Fires event {@link #event:navigate navigate} to attached listeners.
|
|
5180
5228
|
*
|
|
@@ -5201,6 +5249,7 @@ declare namespace sap {
|
|
|
5201
5249
|
* is no longer done by NavigationPopover. Instead the NavigationPopoverHandler is responsible for target
|
|
5202
5250
|
* determination. The event `navigationTargetsObtained` is fired from NavigationPopoverHandler after navigation
|
|
5203
5251
|
* targets are determined.
|
|
5252
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
5204
5253
|
*
|
|
5205
5254
|
* Fires event {@link #event:targetsObtained targetsObtained} to attached listeners.
|
|
5206
5255
|
*
|
|
@@ -5858,6 +5907,7 @@ declare namespace sap {
|
|
|
5858
5907
|
): this;
|
|
5859
5908
|
/**
|
|
5860
5909
|
* @SINCE 1.36.0
|
|
5910
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
5861
5911
|
*
|
|
5862
5912
|
* Fires event {@link #event:beforePopoverOpens beforePopoverOpens} to attached listeners.
|
|
5863
5913
|
*
|
|
@@ -5910,6 +5960,7 @@ declare namespace sap {
|
|
|
5910
5960
|
): this;
|
|
5911
5961
|
/**
|
|
5912
5962
|
* @SINCE 1.36.0
|
|
5963
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
5913
5964
|
*
|
|
5914
5965
|
* Fires event {@link #event:innerNavigate innerNavigate} to attached listeners.
|
|
5915
5966
|
*
|
|
@@ -5944,6 +5995,7 @@ declare namespace sap {
|
|
|
5944
5995
|
): this;
|
|
5945
5996
|
/**
|
|
5946
5997
|
* @SINCE 1.36.0
|
|
5998
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
5947
5999
|
*
|
|
5948
6000
|
* Fires event {@link #event:navigationTargetsObtained navigationTargetsObtained} to attached listeners.
|
|
5949
6001
|
*
|
|
@@ -6717,6 +6769,7 @@ declare namespace sap {
|
|
|
6717
6769
|
): this;
|
|
6718
6770
|
/**
|
|
6719
6771
|
* @SINCE 1.28.0
|
|
6772
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6720
6773
|
*
|
|
6721
6774
|
* Fires event {@link #event:beforePopoverOpens beforePopoverOpens} to attached listeners.
|
|
6722
6775
|
*
|
|
@@ -6772,6 +6825,7 @@ declare namespace sap {
|
|
|
6772
6825
|
): this;
|
|
6773
6826
|
/**
|
|
6774
6827
|
* @SINCE 1.28.0
|
|
6828
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6775
6829
|
*
|
|
6776
6830
|
* Fires event {@link #event:navigate navigate} to attached listeners.
|
|
6777
6831
|
*
|
|
@@ -6809,6 +6863,7 @@ declare namespace sap {
|
|
|
6809
6863
|
): this;
|
|
6810
6864
|
/**
|
|
6811
6865
|
* @SINCE 1.28.0
|
|
6866
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6812
6867
|
*
|
|
6813
6868
|
* Fires event {@link #event:navigationTargetsObtained navigationTargetsObtained} to attached listeners.
|
|
6814
6869
|
*
|
|
@@ -6885,6 +6940,7 @@ declare namespace sap {
|
|
|
6885
6940
|
* @SINCE 1.28.0
|
|
6886
6941
|
* @deprecated (since 1.42.0) - The event `prefetchDone` is obsolete because it depends on the property
|
|
6887
6942
|
* `prefetchNavigationTargets` which has been deprecated.
|
|
6943
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6888
6944
|
*
|
|
6889
6945
|
* Fires event {@link #event:prefetchDone prefetchDone} to attached listeners.
|
|
6890
6946
|
*
|
|
@@ -7609,6 +7665,7 @@ declare namespace sap {
|
|
|
7609
7665
|
): this;
|
|
7610
7666
|
/**
|
|
7611
7667
|
* @SINCE 1.28.0
|
|
7668
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7612
7669
|
*
|
|
7613
7670
|
* Fires event {@link #event:beforePopoverOpens beforePopoverOpens} to attached listeners.
|
|
7614
7671
|
*
|
|
@@ -7661,6 +7718,7 @@ declare namespace sap {
|
|
|
7661
7718
|
): this;
|
|
7662
7719
|
/**
|
|
7663
7720
|
* @SINCE 1.28.0
|
|
7721
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7664
7722
|
*
|
|
7665
7723
|
* Fires event {@link #event:innerNavigate innerNavigate} to attached listeners.
|
|
7666
7724
|
*
|
|
@@ -7695,6 +7753,7 @@ declare namespace sap {
|
|
|
7695
7753
|
): this;
|
|
7696
7754
|
/**
|
|
7697
7755
|
* @SINCE 1.28.0
|
|
7756
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7698
7757
|
*
|
|
7699
7758
|
* Fires event {@link #event:navigationTargetsObtained navigationTargetsObtained} to attached listeners.
|
|
7700
7759
|
*
|
|
@@ -8229,6 +8288,8 @@ declare namespace sap {
|
|
|
8229
8288
|
}
|
|
8230
8289
|
|
|
8231
8290
|
/**
|
|
8291
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
8292
|
+
*
|
|
8232
8293
|
* Extends the functionalities in sap.m.ComboBox
|
|
8233
8294
|
*/
|
|
8234
8295
|
class ComboBox
|
|
@@ -8236,6 +8297,8 @@ declare namespace sap {
|
|
|
8236
8297
|
implements /* was: sap.ui.comp.IDropDownTextArrangement */ Object {
|
|
8237
8298
|
__implements__sap_ui_comp_IDropDownTextArrangement: boolean;
|
|
8238
8299
|
/**
|
|
8300
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
8301
|
+
*
|
|
8239
8302
|
* Constructor for a new `odata/ComboBox`.
|
|
8240
8303
|
*
|
|
8241
8304
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -8249,6 +8312,8 @@ declare namespace sap {
|
|
|
8249
8312
|
mSettings?: sap.ui.comp.odata.$ComboBoxSettings
|
|
8250
8313
|
);
|
|
8251
8314
|
/**
|
|
8315
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
8316
|
+
*
|
|
8252
8317
|
* Constructor for a new `odata/ComboBox`.
|
|
8253
8318
|
*
|
|
8254
8319
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -8267,6 +8332,8 @@ declare namespace sap {
|
|
|
8267
8332
|
);
|
|
8268
8333
|
|
|
8269
8334
|
/**
|
|
8335
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
8336
|
+
*
|
|
8270
8337
|
* Creates a new subclass of class sap.ui.comp.odata.ComboBox with name `sClassName` and enriches it with
|
|
8271
8338
|
* the information contained in `oClassInfo`.
|
|
8272
8339
|
*
|
|
@@ -8290,12 +8357,16 @@ declare namespace sap {
|
|
|
8290
8357
|
FNMetaImpl?: Function
|
|
8291
8358
|
): Function;
|
|
8292
8359
|
/**
|
|
8360
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
8361
|
+
*
|
|
8293
8362
|
* Returns a metadata object for class sap.ui.comp.odata.ComboBox.
|
|
8294
8363
|
*
|
|
8295
8364
|
* @returns Metadata object describing this class
|
|
8296
8365
|
*/
|
|
8297
8366
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8298
8367
|
/**
|
|
8368
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
8369
|
+
*
|
|
8299
8370
|
* Gets current value of property {@link #getTextArrangement textArrangement}.
|
|
8300
8371
|
*
|
|
8301
8372
|
* Sets the `value` property formatting according to the `com.sap.vocabularies.UI.v1.TextArrangementType`
|
|
@@ -8307,6 +8378,8 @@ declare namespace sap {
|
|
|
8307
8378
|
*/
|
|
8308
8379
|
getTextArrangement(): string;
|
|
8309
8380
|
/**
|
|
8381
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
8382
|
+
*
|
|
8310
8383
|
* Sets a new value for property {@link #getTextArrangement textArrangement}.
|
|
8311
8384
|
*
|
|
8312
8385
|
* Sets the `value` property formatting according to the `com.sap.vocabularies.UI.v1.TextArrangementType`
|
|
@@ -9856,10 +9929,14 @@ declare namespace sap {
|
|
|
9856
9929
|
oListener?: object
|
|
9857
9930
|
): this;
|
|
9858
9931
|
/**
|
|
9932
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9933
|
+
*
|
|
9859
9934
|
* Cleans up the control.
|
|
9860
9935
|
*/
|
|
9861
9936
|
exit(): void;
|
|
9862
9937
|
/**
|
|
9938
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9939
|
+
*
|
|
9863
9940
|
* Function for the {@link sap.ui.comp.smartvariants.SmartVariantManagement} control that returns the currently
|
|
9864
9941
|
* used variant data in an internal format. **Note:** This function must not be used by applications.
|
|
9865
9942
|
*
|
|
@@ -9867,6 +9944,8 @@ declare namespace sap {
|
|
|
9867
9944
|
*/
|
|
9868
9945
|
fetchVariant(): sap.ui.comp.SmartChart.Variant;
|
|
9869
9946
|
/**
|
|
9947
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9948
|
+
*
|
|
9870
9949
|
* Fires event {@link #event:afterVariantApply afterVariantApply} to attached listeners.
|
|
9871
9950
|
*
|
|
9872
9951
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9883,6 +9962,8 @@ declare namespace sap {
|
|
|
9883
9962
|
}
|
|
9884
9963
|
): this;
|
|
9885
9964
|
/**
|
|
9965
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9966
|
+
*
|
|
9886
9967
|
* Fires event {@link #event:afterVariantInitialise afterVariantInitialise} to attached listeners.
|
|
9887
9968
|
*
|
|
9888
9969
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9894,6 +9975,8 @@ declare namespace sap {
|
|
|
9894
9975
|
mParameters?: object
|
|
9895
9976
|
): this;
|
|
9896
9977
|
/**
|
|
9978
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9979
|
+
*
|
|
9897
9980
|
* Fires event {@link #event:afterVariantSave afterVariantSave} to attached listeners.
|
|
9898
9981
|
*
|
|
9899
9982
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9910,6 +9993,8 @@ declare namespace sap {
|
|
|
9910
9993
|
}
|
|
9911
9994
|
): this;
|
|
9912
9995
|
/**
|
|
9996
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9997
|
+
*
|
|
9913
9998
|
* Fires event {@link #event:beforeRebindChart beforeRebindChart} to attached listeners.
|
|
9914
9999
|
*
|
|
9915
10000
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9921,6 +10006,8 @@ declare namespace sap {
|
|
|
9921
10006
|
mParameters?: object
|
|
9922
10007
|
): this;
|
|
9923
10008
|
/**
|
|
10009
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
10010
|
+
*
|
|
9924
10011
|
* Fires event {@link #event:chartDataChanged chartDataChanged} to attached listeners.
|
|
9925
10012
|
*
|
|
9926
10013
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9938,6 +10025,7 @@ declare namespace sap {
|
|
|
9938
10025
|
): this;
|
|
9939
10026
|
/**
|
|
9940
10027
|
* @deprecated (since 1.56) - Use `beforeRebindChart` event to attach/listen to the binding "events" directly
|
|
10028
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9941
10029
|
*
|
|
9942
10030
|
* Fires event {@link #event:dataReceived dataReceived} to attached listeners.
|
|
9943
10031
|
*
|
|
@@ -9951,6 +10039,7 @@ declare namespace sap {
|
|
|
9951
10039
|
): this;
|
|
9952
10040
|
/**
|
|
9953
10041
|
* @SINCE 1.46
|
|
10042
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9954
10043
|
*
|
|
9955
10044
|
* Fires event {@link #event:fullScreenToggled fullScreenToggled} to attached listeners.
|
|
9956
10045
|
*
|
|
@@ -9969,6 +10058,7 @@ declare namespace sap {
|
|
|
9969
10058
|
): this;
|
|
9970
10059
|
/**
|
|
9971
10060
|
* @deprecated (since 1.65)
|
|
10061
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9972
10062
|
*
|
|
9973
10063
|
* Fires event {@link #event:initialise initialise} to attached listeners.
|
|
9974
10064
|
*
|
|
@@ -9981,6 +10071,8 @@ declare namespace sap {
|
|
|
9981
10071
|
mParameters?: object
|
|
9982
10072
|
): this;
|
|
9983
10073
|
/**
|
|
10074
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
10075
|
+
*
|
|
9984
10076
|
* Fires event {@link #event:initialized initialized} to attached listeners.
|
|
9985
10077
|
*
|
|
9986
10078
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9994,6 +10086,7 @@ declare namespace sap {
|
|
|
9994
10086
|
/**
|
|
9995
10087
|
* @SINCE 1.48
|
|
9996
10088
|
* @EXPERIMENTAL (since 1.48)
|
|
10089
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9997
10090
|
*
|
|
9998
10091
|
* Fires event {@link #event:selectionDetailsActionPress selectionDetailsActionPress} to attached listeners.
|
|
9999
10092
|
*
|
|
@@ -10022,6 +10115,8 @@ declare namespace sap {
|
|
|
10022
10115
|
}
|
|
10023
10116
|
): this;
|
|
10024
10117
|
/**
|
|
10118
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
10119
|
+
*
|
|
10025
10120
|
* Fires event {@link #event:showOverlay showOverlay} to attached listeners.
|
|
10026
10121
|
*
|
|
10027
10122
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -10034,6 +10129,7 @@ declare namespace sap {
|
|
|
10034
10129
|
): this;
|
|
10035
10130
|
/**
|
|
10036
10131
|
* @SINCE 1.96.15
|
|
10132
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
10037
10133
|
*
|
|
10038
10134
|
* Fires event {@link #event:uiStateChange uiStateChange} to attached listeners.
|
|
10039
10135
|
*
|
|
@@ -10631,12 +10727,16 @@ declare namespace sap {
|
|
|
10631
10727
|
iIndex: int
|
|
10632
10728
|
): this;
|
|
10633
10729
|
/**
|
|
10730
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
10731
|
+
*
|
|
10634
10732
|
* Checks whether the control is initialized.
|
|
10635
10733
|
*
|
|
10636
10734
|
* @returns returns whether the control is already initialized
|
|
10637
10735
|
*/
|
|
10638
10736
|
isInitialised(): boolean;
|
|
10639
10737
|
/**
|
|
10738
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
10739
|
+
*
|
|
10640
10740
|
* This can be used to trigger binding on the chart used in the SmartChart
|
|
10641
10741
|
*/
|
|
10642
10742
|
rebindChart(): void;
|
|
@@ -11918,8 +12018,6 @@ declare namespace sap {
|
|
|
11918
12018
|
*
|
|
11919
12019
|
* If the value of the text input field is subject to data type constraints, the constraints must be fulfilled,
|
|
11920
12020
|
* which implies the value is stored in the binding/model before the event is fired.
|
|
11921
|
-
*
|
|
11922
|
-
* **Note:** The changeModelValue event is currently experimental and might be redefined.
|
|
11923
12021
|
*/
|
|
11924
12022
|
changeModelValue?: (oEvent: sap.ui.base.Event) => void;
|
|
11925
12023
|
|
|
@@ -11970,10 +12068,14 @@ declare namespace sap {
|
|
|
11970
12068
|
}
|
|
11971
12069
|
|
|
11972
12070
|
/**
|
|
12071
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12072
|
+
*
|
|
11973
12073
|
* Extends the functionalities in sap.m.ComboBox
|
|
11974
12074
|
*/
|
|
11975
12075
|
class ComboBox extends sap.m.ComboBox {
|
|
11976
12076
|
/**
|
|
12077
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12078
|
+
*
|
|
11977
12079
|
* Constructor for a new `SmartField/ComboBox`.
|
|
11978
12080
|
*
|
|
11979
12081
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -11987,6 +12089,8 @@ declare namespace sap {
|
|
|
11987
12089
|
mSettings?: sap.ui.comp.smartfield.$ComboBoxSettings
|
|
11988
12090
|
);
|
|
11989
12091
|
/**
|
|
12092
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12093
|
+
*
|
|
11990
12094
|
* Constructor for a new `SmartField/ComboBox`.
|
|
11991
12095
|
*
|
|
11992
12096
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -12005,6 +12109,8 @@ declare namespace sap {
|
|
|
12005
12109
|
);
|
|
12006
12110
|
|
|
12007
12111
|
/**
|
|
12112
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12113
|
+
*
|
|
12008
12114
|
* Creates a new subclass of class sap.ui.comp.smartfield.ComboBox with name `sClassName` and enriches it
|
|
12009
12115
|
* with the information contained in `oClassInfo`.
|
|
12010
12116
|
*
|
|
@@ -12028,12 +12134,16 @@ declare namespace sap {
|
|
|
12028
12134
|
FNMetaImpl?: Function
|
|
12029
12135
|
): Function;
|
|
12030
12136
|
/**
|
|
12137
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12138
|
+
*
|
|
12031
12139
|
* Returns a metadata object for class sap.ui.comp.smartfield.ComboBox.
|
|
12032
12140
|
*
|
|
12033
12141
|
* @returns Metadata object describing this class
|
|
12034
12142
|
*/
|
|
12035
12143
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12036
12144
|
/**
|
|
12145
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12146
|
+
*
|
|
12037
12147
|
* Gets current value of property {@link #getEnteredValue enteredValue}.
|
|
12038
12148
|
*
|
|
12039
12149
|
* Default value is `empty string`.
|
|
@@ -12042,6 +12152,8 @@ declare namespace sap {
|
|
|
12042
12152
|
*/
|
|
12043
12153
|
getEnteredValue(): string;
|
|
12044
12154
|
/**
|
|
12155
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12156
|
+
*
|
|
12045
12157
|
* Gets current value of property {@link #getRealValue realValue}.
|
|
12046
12158
|
*
|
|
12047
12159
|
* Property works the same as sap.m.Input control `value`
|
|
@@ -12052,6 +12164,8 @@ declare namespace sap {
|
|
|
12052
12164
|
*/
|
|
12053
12165
|
getRealValue(): string;
|
|
12054
12166
|
/**
|
|
12167
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12168
|
+
*
|
|
12055
12169
|
* Sets a new value for property {@link #getEnteredValue enteredValue}.
|
|
12056
12170
|
*
|
|
12057
12171
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -12067,6 +12181,8 @@ declare namespace sap {
|
|
|
12067
12181
|
sEnteredValue?: string
|
|
12068
12182
|
): this;
|
|
12069
12183
|
/**
|
|
12184
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12185
|
+
*
|
|
12070
12186
|
* Sets a new value for property {@link #getRealValue realValue}.
|
|
12071
12187
|
*
|
|
12072
12188
|
* Property works the same as sap.m.Input control `value`
|
|
@@ -12716,8 +12832,6 @@ declare namespace sap {
|
|
|
12716
12832
|
* If the value of the text input field is subject to data type constraints, the constraints must be fulfilled,
|
|
12717
12833
|
* which implies the value is stored in the binding/model before the event is fired.
|
|
12718
12834
|
*
|
|
12719
|
-
* **Note:** The changeModelValue event is currently experimental and might be redefined.
|
|
12720
|
-
*
|
|
12721
12835
|
* @returns Reference to `this` in order to allow method chaining
|
|
12722
12836
|
*/
|
|
12723
12837
|
attachChangeModelValue(
|
|
@@ -12754,8 +12868,6 @@ declare namespace sap {
|
|
|
12754
12868
|
* If the value of the text input field is subject to data type constraints, the constraints must be fulfilled,
|
|
12755
12869
|
* which implies the value is stored in the binding/model before the event is fired.
|
|
12756
12870
|
*
|
|
12757
|
-
* **Note:** The changeModelValue event is currently experimental and might be redefined.
|
|
12758
|
-
*
|
|
12759
12871
|
* @returns Reference to `this` in order to allow method chaining
|
|
12760
12872
|
*/
|
|
12761
12873
|
attachChangeModelValue(
|
|
@@ -13205,6 +13317,7 @@ declare namespace sap {
|
|
|
13205
13317
|
): boolean;
|
|
13206
13318
|
/**
|
|
13207
13319
|
* @SINCE 1.90
|
|
13320
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13208
13321
|
*
|
|
13209
13322
|
* Checks the validity of the values for the given control.
|
|
13210
13323
|
*
|
|
@@ -13480,6 +13593,8 @@ declare namespace sap {
|
|
|
13480
13593
|
oListener?: object
|
|
13481
13594
|
): this;
|
|
13482
13595
|
/**
|
|
13596
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13597
|
+
*
|
|
13483
13598
|
* Fires event {@link #event:change change} to attached listeners.
|
|
13484
13599
|
*
|
|
13485
13600
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -13504,6 +13619,8 @@ declare namespace sap {
|
|
|
13504
13619
|
}
|
|
13505
13620
|
): this;
|
|
13506
13621
|
/**
|
|
13622
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13623
|
+
*
|
|
13507
13624
|
* Fires event {@link #event:changeModelValue changeModelValue} to attached listeners.
|
|
13508
13625
|
*
|
|
13509
13626
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -13533,6 +13650,7 @@ declare namespace sap {
|
|
|
13533
13650
|
): this;
|
|
13534
13651
|
/**
|
|
13535
13652
|
* @SINCE 1.32.0
|
|
13653
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13536
13654
|
*
|
|
13537
13655
|
* Fires event {@link #event:contextEditableChanged contextEditableChanged} to attached listeners.
|
|
13538
13656
|
*
|
|
@@ -13551,6 +13669,7 @@ declare namespace sap {
|
|
|
13551
13669
|
): this;
|
|
13552
13670
|
/**
|
|
13553
13671
|
* @SINCE 1.30.0
|
|
13672
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13554
13673
|
*
|
|
13555
13674
|
* Fires event {@link #event:editableChanged editableChanged} to attached listeners.
|
|
13556
13675
|
*
|
|
@@ -13568,6 +13687,8 @@ declare namespace sap {
|
|
|
13568
13687
|
}
|
|
13569
13688
|
): this;
|
|
13570
13689
|
/**
|
|
13690
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13691
|
+
*
|
|
13571
13692
|
* Fires event {@link #event:entitySetFound entitySetFound} to attached listeners.
|
|
13572
13693
|
*
|
|
13573
13694
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -13584,6 +13705,8 @@ declare namespace sap {
|
|
|
13584
13705
|
}
|
|
13585
13706
|
): this;
|
|
13586
13707
|
/**
|
|
13708
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13709
|
+
*
|
|
13587
13710
|
* Fires event {@link #event:initialise initialise} to attached listeners.
|
|
13588
13711
|
*
|
|
13589
13712
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -13595,6 +13718,8 @@ declare namespace sap {
|
|
|
13595
13718
|
mParameters?: object
|
|
13596
13719
|
): this;
|
|
13597
13720
|
/**
|
|
13721
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13722
|
+
*
|
|
13598
13723
|
* Fires event {@link #event:innerControlsCreated innerControlsCreated} to attached listeners.
|
|
13599
13724
|
*
|
|
13600
13725
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -13607,6 +13732,7 @@ declare namespace sap {
|
|
|
13607
13732
|
): this;
|
|
13608
13733
|
/**
|
|
13609
13734
|
* @SINCE 1.36.0
|
|
13735
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13610
13736
|
*
|
|
13611
13737
|
* Fires event {@link #event:press press} to attached listeners.
|
|
13612
13738
|
*
|
|
@@ -13620,6 +13746,7 @@ declare namespace sap {
|
|
|
13620
13746
|
): this;
|
|
13621
13747
|
/**
|
|
13622
13748
|
* @SINCE 1.31.0
|
|
13749
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13623
13750
|
*
|
|
13624
13751
|
* Fires event {@link #event:valueListChanged valueListChanged} to attached listeners.
|
|
13625
13752
|
*
|
|
@@ -13637,6 +13764,8 @@ declare namespace sap {
|
|
|
13637
13764
|
}
|
|
13638
13765
|
): this;
|
|
13639
13766
|
/**
|
|
13767
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
13768
|
+
*
|
|
13640
13769
|
* Fires event {@link #event:visibleChanged visibleChanged} to attached listeners.
|
|
13641
13770
|
*
|
|
13642
13771
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -13926,6 +14055,8 @@ declare namespace sap {
|
|
|
13926
14055
|
*/
|
|
13927
14056
|
getImportance(): sap.ui.comp.smartfield.Importance;
|
|
13928
14057
|
/**
|
|
14058
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
14059
|
+
*
|
|
13929
14060
|
* Resolves the controls hosted currently by this `SmartField` control.
|
|
13930
14061
|
*
|
|
13931
14062
|
* @returns The controls hosted currently by this `SmartField`
|
|
@@ -13990,6 +14121,8 @@ declare namespace sap {
|
|
|
13990
14121
|
*/
|
|
13991
14122
|
getMaxLength(): int;
|
|
13992
14123
|
/**
|
|
14124
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
14125
|
+
*
|
|
13993
14126
|
* Returns the current SmartField's edit mode
|
|
13994
14127
|
*
|
|
13995
14128
|
* @returns Returns "edit" or "display"
|
|
@@ -14030,6 +14163,7 @@ declare namespace sap {
|
|
|
14030
14163
|
getProposedControl(): sap.ui.comp.smartfield.ControlProposalType;
|
|
14031
14164
|
/**
|
|
14032
14165
|
* @SINCE 1.48.0
|
|
14166
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
14033
14167
|
*
|
|
14034
14168
|
* Gets the value of the `mandatory` property.
|
|
14035
14169
|
*
|
|
@@ -16145,6 +16279,8 @@ declare namespace sap {
|
|
|
16145
16279
|
oListener?: object
|
|
16146
16280
|
): this;
|
|
16147
16281
|
/**
|
|
16282
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16283
|
+
*
|
|
16148
16284
|
* Fires event {@link #event:change change} to attached listeners.
|
|
16149
16285
|
*
|
|
16150
16286
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -16937,6 +17073,8 @@ declare namespace sap {
|
|
|
16937
17073
|
oListener?: object
|
|
16938
17074
|
): this;
|
|
16939
17075
|
/**
|
|
17076
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17077
|
+
*
|
|
16940
17078
|
* Fires event {@link #event:change change} to attached listeners.
|
|
16941
17079
|
*
|
|
16942
17080
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -17203,6 +17341,8 @@ declare namespace sap {
|
|
|
17203
17341
|
): this;
|
|
17204
17342
|
}
|
|
17205
17343
|
/**
|
|
17344
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17345
|
+
*
|
|
17206
17346
|
* Extends the functionalities in sap.m.MultiComboBox
|
|
17207
17347
|
*/
|
|
17208
17348
|
class SFBMultiComboBox
|
|
@@ -17210,6 +17350,8 @@ declare namespace sap {
|
|
|
17210
17350
|
implements /* was: sap.ui.comp.IDropDownTextArrangement */ Object {
|
|
17211
17351
|
__implements__sap_ui_comp_IDropDownTextArrangement: boolean;
|
|
17212
17352
|
/**
|
|
17353
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17354
|
+
*
|
|
17213
17355
|
* Constructor for a new `SmartFilterBar/SFBMultiComboBox`.
|
|
17214
17356
|
*
|
|
17215
17357
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -17219,6 +17361,8 @@ declare namespace sap {
|
|
|
17219
17361
|
constructor();
|
|
17220
17362
|
|
|
17221
17363
|
/**
|
|
17364
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17365
|
+
*
|
|
17222
17366
|
* Creates a new subclass of class sap.ui.comp.smartfilterbar.SFBMultiComboBox with name `sClassName` and
|
|
17223
17367
|
* enriches it with the information contained in `oClassInfo`.
|
|
17224
17368
|
*
|
|
@@ -17245,12 +17389,16 @@ declare namespace sap {
|
|
|
17245
17389
|
FNMetaImpl?: Function
|
|
17246
17390
|
): Function;
|
|
17247
17391
|
/**
|
|
17392
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17393
|
+
*
|
|
17248
17394
|
* Returns a metadata object for class sap.ui.comp.smartfilterbar.SFBMultiComboBox.
|
|
17249
17395
|
*
|
|
17250
17396
|
* @returns Metadata object describing this class
|
|
17251
17397
|
*/
|
|
17252
17398
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
17253
17399
|
/**
|
|
17400
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17401
|
+
*
|
|
17254
17402
|
* Gets current value of property {@link #getTextArrangement textArrangement}.
|
|
17255
17403
|
*
|
|
17256
17404
|
* Sets the `value` property formatting according to the `com.sap.vocabularies.UI.v1.TextArrangementType`
|
|
@@ -17262,6 +17410,8 @@ declare namespace sap {
|
|
|
17262
17410
|
*/
|
|
17263
17411
|
getTextArrangement(): string;
|
|
17264
17412
|
/**
|
|
17413
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17414
|
+
*
|
|
17265
17415
|
* Sets a new value for property {@link #getTextArrangement textArrangement}.
|
|
17266
17416
|
*
|
|
17267
17417
|
* Sets the `value` property formatting according to the `com.sap.vocabularies.UI.v1.TextArrangementType`
|
|
@@ -17544,6 +17694,7 @@ declare namespace sap {
|
|
|
17544
17694
|
fetchVariant(): object;
|
|
17545
17695
|
/**
|
|
17546
17696
|
* @SINCE 1.36
|
|
17697
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17547
17698
|
*
|
|
17548
17699
|
* Fires event {@link #event:pendingChange pendingChange} to attached listeners.
|
|
17549
17700
|
*
|
|
@@ -17634,6 +17785,8 @@ declare namespace sap {
|
|
|
17634
17785
|
*/
|
|
17635
17786
|
getControlConfiguration(): sap.ui.comp.smartfilterbar.ControlConfiguration[];
|
|
17636
17787
|
/**
|
|
17788
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17789
|
+
*
|
|
17637
17790
|
* Returns the condition type object (if any) with the specified key (Property name in OData entity). Use
|
|
17638
17791
|
* just the property name as the key when getting a control from the basic area.
|
|
17639
17792
|
*
|
|
@@ -17662,6 +17815,7 @@ declare namespace sap {
|
|
|
17662
17815
|
getDefaultSelectionVariantName(): string;
|
|
17663
17816
|
/**
|
|
17664
17817
|
* @SINCE 1.75
|
|
17818
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17665
17819
|
*
|
|
17666
17820
|
* Reads the descriptions for given filters and value keys.
|
|
17667
17821
|
*/
|
|
@@ -17705,6 +17859,8 @@ declare namespace sap {
|
|
|
17705
17859
|
*/
|
|
17706
17860
|
getEntityType(): string;
|
|
17707
17861
|
/**
|
|
17862
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17863
|
+
*
|
|
17708
17864
|
* Get the filter context url.
|
|
17709
17865
|
*
|
|
17710
17866
|
* @returns Filter context url.
|
|
@@ -17784,6 +17940,8 @@ declare namespace sap {
|
|
|
17784
17940
|
*/
|
|
17785
17941
|
getLiveMode(): boolean;
|
|
17786
17942
|
/**
|
|
17943
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17944
|
+
*
|
|
17787
17945
|
* Get the model data.
|
|
17788
17946
|
*
|
|
17789
17947
|
* @returns of the model data.
|
|
@@ -17814,6 +17972,8 @@ declare namespace sap {
|
|
|
17814
17972
|
*/
|
|
17815
17973
|
getParameterBindingPath(): string;
|
|
17816
17974
|
/**
|
|
17975
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17976
|
+
*
|
|
17817
17977
|
* Get the parameter context url.
|
|
17818
17978
|
*
|
|
17819
17979
|
* @returns Parameter context url.
|
|
@@ -17975,12 +18135,16 @@ declare namespace sap {
|
|
|
17975
18135
|
iIndex: int
|
|
17976
18136
|
): this;
|
|
17977
18137
|
/**
|
|
18138
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18139
|
+
*
|
|
17978
18140
|
* Checks whether the control is initialised
|
|
17979
18141
|
*
|
|
17980
18142
|
* @returns returns whether control is already initialised
|
|
17981
18143
|
*/
|
|
17982
18144
|
isInitialised(): boolean;
|
|
17983
18145
|
/**
|
|
18146
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18147
|
+
*
|
|
17984
18148
|
* Determines if the custom data 'dateFormatSettings' is set with UTC mode `true`
|
|
17985
18149
|
*
|
|
17986
18150
|
* @returns returns whether the filter bar is running in UTC mode
|
|
@@ -18114,6 +18278,8 @@ declare namespace sap {
|
|
|
18114
18278
|
bConsiderSelectionVariants?: boolean
|
|
18115
18279
|
): this;
|
|
18116
18280
|
/**
|
|
18281
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18282
|
+
*
|
|
18117
18283
|
* Sets the the Dynamic Date Option of condition type (if any) data in the filter data model.
|
|
18118
18284
|
*
|
|
18119
18285
|
* @returns returns Promise
|
|
@@ -19932,6 +20098,8 @@ declare namespace sap {
|
|
|
19932
20098
|
oListener?: object
|
|
19933
20099
|
): this;
|
|
19934
20100
|
/**
|
|
20101
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
20102
|
+
*
|
|
19935
20103
|
* Fires event {@link #event:visibleChanged visibleChanged} to attached listeners.
|
|
19936
20104
|
*
|
|
19937
20105
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -20822,6 +20990,8 @@ declare namespace sap {
|
|
|
20822
20990
|
oListener?: object
|
|
20823
20991
|
): this;
|
|
20824
20992
|
/**
|
|
20993
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
20994
|
+
*
|
|
20825
20995
|
* Fires event {@link #event:visibleChanged visibleChanged} to attached listeners.
|
|
20826
20996
|
*
|
|
20827
20997
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -21262,6 +21432,8 @@ declare namespace sap {
|
|
|
21262
21432
|
oListener?: object
|
|
21263
21433
|
): this;
|
|
21264
21434
|
/**
|
|
21435
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
21436
|
+
*
|
|
21265
21437
|
* Fires event {@link #event:checked checked} to attached listeners.
|
|
21266
21438
|
*
|
|
21267
21439
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -21278,6 +21450,8 @@ declare namespace sap {
|
|
|
21278
21450
|
}
|
|
21279
21451
|
): this;
|
|
21280
21452
|
/**
|
|
21453
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
21454
|
+
*
|
|
21281
21455
|
* Fires event {@link #event:editToggled editToggled} to attached listeners.
|
|
21282
21456
|
*
|
|
21283
21457
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -22421,11 +22595,14 @@ declare namespace sap {
|
|
|
22421
22595
|
oListener?: object
|
|
22422
22596
|
): this;
|
|
22423
22597
|
/**
|
|
22598
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
22599
|
+
*
|
|
22424
22600
|
* Cleans up the control
|
|
22425
22601
|
*/
|
|
22426
22602
|
exit(): void;
|
|
22427
22603
|
/**
|
|
22428
22604
|
* @SINCE 1.48.0
|
|
22605
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
22429
22606
|
*
|
|
22430
22607
|
* Fires event {@link #event:beforeRebindList beforeRebindList} to attached listeners.
|
|
22431
22608
|
*
|
|
@@ -22439,6 +22616,7 @@ declare namespace sap {
|
|
|
22439
22616
|
): this;
|
|
22440
22617
|
/**
|
|
22441
22618
|
* @SINCE 1.48.0
|
|
22619
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
22442
22620
|
*
|
|
22443
22621
|
* Fires event {@link #event:dataReceived dataReceived} to attached listeners.
|
|
22444
22622
|
*
|
|
@@ -22452,6 +22630,7 @@ declare namespace sap {
|
|
|
22452
22630
|
): this;
|
|
22453
22631
|
/**
|
|
22454
22632
|
* @SINCE 1.48.0
|
|
22633
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
22455
22634
|
*
|
|
22456
22635
|
* Fires event {@link #event:initialise initialise} to attached listeners.
|
|
22457
22636
|
*
|
|
@@ -22603,12 +22782,16 @@ declare namespace sap {
|
|
|
22603
22782
|
*/
|
|
22604
22783
|
getSmartFilter(): sap.ui.core.ID;
|
|
22605
22784
|
/**
|
|
22785
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
22786
|
+
*
|
|
22606
22787
|
* Checks whether the control is initialized.
|
|
22607
22788
|
*
|
|
22608
22789
|
* @returns returns whether control has already been initialized
|
|
22609
22790
|
*/
|
|
22610
22791
|
isInitialised(): boolean;
|
|
22611
22792
|
/**
|
|
22793
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
22794
|
+
*
|
|
22612
22795
|
* This can be used to trigger binding on the list used in the SmartList
|
|
22613
22796
|
*/
|
|
22614
22797
|
rebindList(
|
|
@@ -23974,6 +24157,8 @@ declare namespace sap {
|
|
|
23974
24157
|
oListener?: object
|
|
23975
24158
|
): this;
|
|
23976
24159
|
/**
|
|
24160
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
24161
|
+
*
|
|
23977
24162
|
* Fires event {@link #event:initialize initialize} to attached listeners.
|
|
23978
24163
|
*
|
|
23979
24164
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -24459,6 +24644,8 @@ declare namespace sap {
|
|
|
24459
24644
|
oListener?: object
|
|
24460
24645
|
): this;
|
|
24461
24646
|
/**
|
|
24647
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
24648
|
+
*
|
|
24462
24649
|
* Fires event {@link #event:initialize initialize} to attached listeners.
|
|
24463
24650
|
*
|
|
24464
24651
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -25370,6 +25557,8 @@ declare namespace sap {
|
|
|
25370
25557
|
oListener?: object
|
|
25371
25558
|
): this;
|
|
25372
25559
|
/**
|
|
25560
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
25561
|
+
*
|
|
25373
25562
|
* Fires event {@link #event:change change} to attached listeners.
|
|
25374
25563
|
*
|
|
25375
25564
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -26242,6 +26431,8 @@ declare namespace sap {
|
|
|
26242
26431
|
oListener?: object
|
|
26243
26432
|
): this;
|
|
26244
26433
|
/**
|
|
26434
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
26435
|
+
*
|
|
26245
26436
|
* Fires event {@link #event:beforeCreate beforeCreate} to attached listeners.
|
|
26246
26437
|
*
|
|
26247
26438
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
@@ -26267,6 +26458,8 @@ declare namespace sap {
|
|
|
26267
26458
|
}
|
|
26268
26459
|
): boolean;
|
|
26269
26460
|
/**
|
|
26461
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
26462
|
+
*
|
|
26270
26463
|
* Fires event {@link #event:beforeRemove beforeRemove} to attached listeners.
|
|
26271
26464
|
*
|
|
26272
26465
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
@@ -26288,6 +26481,8 @@ declare namespace sap {
|
|
|
26288
26481
|
}
|
|
26289
26482
|
): boolean;
|
|
26290
26483
|
/**
|
|
26484
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
26485
|
+
*
|
|
26291
26486
|
* Fires event {@link #event:selectionChange selectionChange} to attached listeners.
|
|
26292
26487
|
*
|
|
26293
26488
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -26308,6 +26503,8 @@ declare namespace sap {
|
|
|
26308
26503
|
}
|
|
26309
26504
|
): this;
|
|
26310
26505
|
/**
|
|
26506
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
26507
|
+
*
|
|
26311
26508
|
* Fires event {@link #event:selectionFinish selectionFinish} to attached listeners.
|
|
26312
26509
|
*
|
|
26313
26510
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -26324,6 +26521,8 @@ declare namespace sap {
|
|
|
26324
26521
|
}
|
|
26325
26522
|
): this;
|
|
26326
26523
|
/**
|
|
26524
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
26525
|
+
*
|
|
26327
26526
|
* Fires event {@link #event:tokenUpdate tokenUpdate} to attached listeners.
|
|
26328
26527
|
*
|
|
26329
26528
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -28522,6 +28721,8 @@ declare namespace sap {
|
|
|
28522
28721
|
oListener?: object
|
|
28523
28722
|
): this;
|
|
28524
28723
|
/**
|
|
28724
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28725
|
+
*
|
|
28525
28726
|
* Cleans up the control
|
|
28526
28727
|
*/
|
|
28527
28728
|
exit(): void;
|
|
@@ -28533,6 +28734,7 @@ declare namespace sap {
|
|
|
28533
28734
|
fetchVariant(): object;
|
|
28534
28735
|
/**
|
|
28535
28736
|
* @SINCE 1.28.0
|
|
28737
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28536
28738
|
*
|
|
28537
28739
|
* Fires event {@link #event:afterVariantApply afterVariantApply} to attached listeners.
|
|
28538
28740
|
*
|
|
@@ -28551,6 +28753,7 @@ declare namespace sap {
|
|
|
28551
28753
|
): this;
|
|
28552
28754
|
/**
|
|
28553
28755
|
* @SINCE 1.28.0
|
|
28756
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28554
28757
|
*
|
|
28555
28758
|
* Fires event {@link #event:afterVariantInitialise afterVariantInitialise} to attached listeners.
|
|
28556
28759
|
*
|
|
@@ -28564,6 +28767,7 @@ declare namespace sap {
|
|
|
28564
28767
|
): this;
|
|
28565
28768
|
/**
|
|
28566
28769
|
* @SINCE 1.28.0
|
|
28770
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28567
28771
|
*
|
|
28568
28772
|
* Fires event {@link #event:afterVariantSave afterVariantSave} to attached listeners.
|
|
28569
28773
|
*
|
|
@@ -28582,6 +28786,7 @@ declare namespace sap {
|
|
|
28582
28786
|
): this;
|
|
28583
28787
|
/**
|
|
28584
28788
|
* @SINCE 1.50
|
|
28789
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28585
28790
|
*
|
|
28586
28791
|
* Fires event {@link #event:beforeExport beforeExport} to attached listeners.
|
|
28587
28792
|
*
|
|
@@ -28608,6 +28813,7 @@ declare namespace sap {
|
|
|
28608
28813
|
): this;
|
|
28609
28814
|
/**
|
|
28610
28815
|
* @EXPERIMENTAL (since 1.64) - This API is experimental and subject to change
|
|
28816
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28611
28817
|
*
|
|
28612
28818
|
* Fires event {@link #event:beforePaste beforePaste} to attached listeners.
|
|
28613
28819
|
*
|
|
@@ -28629,6 +28835,7 @@ declare namespace sap {
|
|
|
28629
28835
|
): boolean;
|
|
28630
28836
|
/**
|
|
28631
28837
|
* @SINCE 1.26.0
|
|
28838
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28632
28839
|
*
|
|
28633
28840
|
* Fires event {@link #event:beforeRebindTable beforeRebindTable} to attached listeners.
|
|
28634
28841
|
*
|
|
@@ -28643,6 +28850,7 @@ declare namespace sap {
|
|
|
28643
28850
|
/**
|
|
28644
28851
|
* @SINCE 1.28.0
|
|
28645
28852
|
* @deprecated (since 1.56) - Use `beforeRebindTable` event to attach/listen to the binding "events" directly
|
|
28853
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28646
28854
|
*
|
|
28647
28855
|
* Fires event {@link #event:dataReceived dataReceived} to attached listeners.
|
|
28648
28856
|
*
|
|
@@ -28657,6 +28865,7 @@ declare namespace sap {
|
|
|
28657
28865
|
/**
|
|
28658
28866
|
* @SINCE 1.52.0
|
|
28659
28867
|
* @deprecated (since 1.56) - Use `beforeRebindTable` event to attach/listen to the binding "events" directly
|
|
28868
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28660
28869
|
*
|
|
28661
28870
|
* Fires event {@link #event:dataRequested dataRequested} to attached listeners.
|
|
28662
28871
|
*
|
|
@@ -28670,6 +28879,7 @@ declare namespace sap {
|
|
|
28670
28879
|
): this;
|
|
28671
28880
|
/**
|
|
28672
28881
|
* @SINCE 1.28.0
|
|
28882
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28673
28883
|
*
|
|
28674
28884
|
* Fires event {@link #event:editToggled editToggled} to attached listeners.
|
|
28675
28885
|
*
|
|
@@ -28683,6 +28893,7 @@ declare namespace sap {
|
|
|
28683
28893
|
): this;
|
|
28684
28894
|
/**
|
|
28685
28895
|
* @SINCE 1.34.0
|
|
28896
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28686
28897
|
*
|
|
28687
28898
|
* Fires event {@link #event:fieldChange fieldChange} to attached listeners.
|
|
28688
28899
|
*
|
|
@@ -28696,6 +28907,7 @@ declare namespace sap {
|
|
|
28696
28907
|
): this;
|
|
28697
28908
|
/**
|
|
28698
28909
|
* @SINCE 1.46
|
|
28910
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28699
28911
|
*
|
|
28700
28912
|
* Fires event {@link #event:fullScreenToggled fullScreenToggled} to attached listeners.
|
|
28701
28913
|
*
|
|
@@ -28714,6 +28926,7 @@ declare namespace sap {
|
|
|
28714
28926
|
): this;
|
|
28715
28927
|
/**
|
|
28716
28928
|
* @SINCE 1.26.0
|
|
28929
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28717
28930
|
*
|
|
28718
28931
|
* Fires event {@link #event:initialise initialise} to attached listeners.
|
|
28719
28932
|
*
|
|
@@ -28727,6 +28940,7 @@ declare namespace sap {
|
|
|
28727
28940
|
): this;
|
|
28728
28941
|
/**
|
|
28729
28942
|
* @EXPERIMENTAL (since 1.64) - This API is experimental and subject to change
|
|
28943
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28730
28944
|
*
|
|
28731
28945
|
* Fires event {@link #event:paste paste} to attached listeners.
|
|
28732
28946
|
*
|
|
@@ -28745,6 +28959,7 @@ declare namespace sap {
|
|
|
28745
28959
|
): this;
|
|
28746
28960
|
/**
|
|
28747
28961
|
* @SINCE 1.32.0
|
|
28962
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28748
28963
|
*
|
|
28749
28964
|
* Fires event {@link #event:showOverlay showOverlay} to attached listeners.
|
|
28750
28965
|
*
|
|
@@ -28758,6 +28973,7 @@ declare namespace sap {
|
|
|
28758
28973
|
): this;
|
|
28759
28974
|
/**
|
|
28760
28975
|
* @SINCE 1.96.15
|
|
28976
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28761
28977
|
*
|
|
28762
28978
|
* Fires event {@link #event:uiStateChange uiStateChange} to attached listeners.
|
|
28763
28979
|
*
|
|
@@ -31321,6 +31537,8 @@ declare namespace sap {
|
|
|
31321
31537
|
oListener?: object
|
|
31322
31538
|
): this;
|
|
31323
31539
|
/**
|
|
31540
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
31541
|
+
*
|
|
31324
31542
|
* Fires event {@link #event:afterSave afterSave} to attached listeners.
|
|
31325
31543
|
*
|
|
31326
31544
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -31334,6 +31552,7 @@ declare namespace sap {
|
|
|
31334
31552
|
/**
|
|
31335
31553
|
* @deprecated (since 1.38.0) - Replaced by providing the personalizable control and the callback via the
|
|
31336
31554
|
* `initialise`-method.
|
|
31555
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
31337
31556
|
*
|
|
31338
31557
|
* Fires event {@link #event:initialise initialise} to attached listeners.
|
|
31339
31558
|
*
|
|
@@ -31920,6 +32139,8 @@ declare namespace sap {
|
|
|
31920
32139
|
oListener?: object
|
|
31921
32140
|
): this;
|
|
31922
32141
|
/**
|
|
32142
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32143
|
+
*
|
|
31923
32144
|
* Fires event {@link #event:manage manage} to attached listeners.
|
|
31924
32145
|
*
|
|
31925
32146
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -31949,6 +32170,8 @@ declare namespace sap {
|
|
|
31949
32170
|
}
|
|
31950
32171
|
): this;
|
|
31951
32172
|
/**
|
|
32173
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32174
|
+
*
|
|
31952
32175
|
* Fires event {@link #event:save save} to attached listeners.
|
|
31953
32176
|
*
|
|
31954
32177
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -31985,6 +32208,8 @@ declare namespace sap {
|
|
|
31985
32208
|
}
|
|
31986
32209
|
): this;
|
|
31987
32210
|
/**
|
|
32211
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32212
|
+
*
|
|
31988
32213
|
* Fires event {@link #event:select select} to attached listeners.
|
|
31989
32214
|
*
|
|
31990
32215
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32098,6 +32323,8 @@ declare namespace sap {
|
|
|
32098
32323
|
*/
|
|
32099
32324
|
getMaxWidth(): sap.ui.core.CSSSize;
|
|
32100
32325
|
/**
|
|
32326
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32327
|
+
*
|
|
32101
32328
|
* Required by the {@link sap.m.IOverflowToolbarContent} interface. Registers invalidations event which
|
|
32102
32329
|
* is fired when width of the control is changed.
|
|
32103
32330
|
*
|
|
@@ -32829,6 +33056,8 @@ declare namespace sap {
|
|
|
32829
33056
|
oListener?: object
|
|
32830
33057
|
): this;
|
|
32831
33058
|
/**
|
|
33059
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33060
|
+
*
|
|
32832
33061
|
* Fires event {@link #event:afterSave afterSave} to attached listeners.
|
|
32833
33062
|
*
|
|
32834
33063
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32840,6 +33069,8 @@ declare namespace sap {
|
|
|
32840
33069
|
mParameters?: object
|
|
32841
33070
|
): this;
|
|
32842
33071
|
/**
|
|
33072
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33073
|
+
*
|
|
32843
33074
|
* Fires event {@link #event:initialise initialise} to attached listeners.
|
|
32844
33075
|
*
|
|
32845
33076
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -33083,6 +33314,8 @@ declare namespace sap {
|
|
|
33083
33314
|
);
|
|
33084
33315
|
|
|
33085
33316
|
/**
|
|
33317
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33318
|
+
*
|
|
33086
33319
|
* Constructs the value state out of a given selection variant and the current model data
|
|
33087
33320
|
*
|
|
33088
33321
|
* @returns the values texts format
|
|
@@ -33098,6 +33331,8 @@ declare namespace sap {
|
|
|
33098
33331
|
mData: Record<string, any>
|
|
33099
33332
|
): object;
|
|
33100
33333
|
/**
|
|
33334
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33335
|
+
*
|
|
33101
33336
|
* Constructs the value state out of a given selection variant and the current model data
|
|
33102
33337
|
*
|
|
33103
33338
|
* @returns the values texts format
|
|
@@ -33113,6 +33348,8 @@ declare namespace sap {
|
|
|
33113
33348
|
mData: Record<string, any>
|
|
33114
33349
|
): object;
|
|
33115
33350
|
/**
|
|
33351
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33352
|
+
*
|
|
33116
33353
|
* Converts PresentationVariant annotation to UIState object.
|
|
33117
33354
|
*
|
|
33118
33355
|
* @returns UIState object containing converted parts of SelectionVariant and PresentationVariant annotations
|
|
@@ -33133,6 +33370,7 @@ declare namespace sap {
|
|
|
33133
33370
|
): sap.ui.comp.state.UIState;
|
|
33134
33371
|
/**
|
|
33135
33372
|
* @SINCE 1.75
|
|
33373
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33136
33374
|
*
|
|
33137
33375
|
* Determines the filter names with value keys where the description is not available.
|
|
33138
33376
|
*
|
|
@@ -33153,6 +33391,8 @@ declare namespace sap {
|
|
|
33153
33391
|
aIgnoreSelOptionNames: any[]
|
|
33154
33392
|
): object;
|
|
33155
33393
|
/**
|
|
33394
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33395
|
+
*
|
|
33156
33396
|
* Enriches the internal filter bar value format with the semantic date information.
|
|
33157
33397
|
*
|
|
33158
33398
|
* @returns enriched the filter bar inner data format
|
|
@@ -33168,6 +33408,8 @@ declare namespace sap {
|
|
|
33168
33408
|
oSemanticDates: object
|
|
33169
33409
|
): string;
|
|
33170
33410
|
/**
|
|
33411
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33412
|
+
*
|
|
33171
33413
|
* Enriches the internal filter bar value format with the information from the value state.
|
|
33172
33414
|
*
|
|
33173
33415
|
* @returns enriched the filter bar inner data format
|
|
@@ -33629,6 +33871,20 @@ declare namespace sap {
|
|
|
33629
33871
|
| string
|
|
33630
33872
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
33631
33873
|
|
|
33874
|
+
/**
|
|
33875
|
+
* @SINCE 1.113
|
|
33876
|
+
*
|
|
33877
|
+
* Sets usage of `MultiSelectionPlugin`. If enabled the default behaviour is changed and the `ValueHelpDialog`
|
|
33878
|
+
* table uses the plugin which provides only "Deselect all" option and the ability for range selection.
|
|
33879
|
+
* Also a limit of 1000 items that are able to be selected as a restriction.
|
|
33880
|
+
*
|
|
33881
|
+
* Note: Using `MultiSelectionPlugin` mode the method `update` will return a promise.
|
|
33882
|
+
*/
|
|
33883
|
+
enabledMultiSelectionPlugin?:
|
|
33884
|
+
| boolean
|
|
33885
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
33886
|
+
| `{${string}}`;
|
|
33887
|
+
|
|
33632
33888
|
/**
|
|
33633
33889
|
* Allows you to add a {@link sap.ui.comp.filterbar.FilterBar FilterBar} or {@link sap.ui.comp.smartfilterbar.SmartFilterBar
|
|
33634
33890
|
* SmartFilterBar} control to the value help dialog.
|
|
@@ -34132,6 +34388,7 @@ declare namespace sap {
|
|
|
34132
34388
|
): this;
|
|
34133
34389
|
/**
|
|
34134
34390
|
* @SINCE 1.24
|
|
34391
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
34135
34392
|
*
|
|
34136
34393
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
34137
34394
|
*
|
|
@@ -34145,6 +34402,7 @@ declare namespace sap {
|
|
|
34145
34402
|
): this;
|
|
34146
34403
|
/**
|
|
34147
34404
|
* @SINCE 1.24
|
|
34405
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
34148
34406
|
*
|
|
34149
34407
|
* Fires event {@link #event:ok ok} to attached listeners.
|
|
34150
34408
|
*
|
|
@@ -34163,6 +34421,7 @@ declare namespace sap {
|
|
|
34163
34421
|
): this;
|
|
34164
34422
|
/**
|
|
34165
34423
|
* @SINCE 1.32
|
|
34424
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
34166
34425
|
*
|
|
34167
34426
|
* Fires event {@link #event:selectionChange selectionChange} to attached listeners.
|
|
34168
34427
|
*
|
|
@@ -34195,6 +34454,7 @@ declare namespace sap {
|
|
|
34195
34454
|
): this;
|
|
34196
34455
|
/**
|
|
34197
34456
|
* @SINCE 1.32
|
|
34457
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
34198
34458
|
*
|
|
34199
34459
|
* Fires event {@link #event:tokenRemove tokenRemove} to attached listeners.
|
|
34200
34460
|
*
|
|
@@ -34217,6 +34477,7 @@ declare namespace sap {
|
|
|
34217
34477
|
): this;
|
|
34218
34478
|
/**
|
|
34219
34479
|
* @SINCE 1.32
|
|
34480
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
34220
34481
|
*
|
|
34221
34482
|
* Fires event {@link #event:updateSelection updateSelection} to attached listeners.
|
|
34222
34483
|
*
|
|
@@ -34286,6 +34547,22 @@ declare namespace sap {
|
|
|
34286
34547
|
* @returns Value of property `displayFormat`
|
|
34287
34548
|
*/
|
|
34288
34549
|
getDisplayFormat(): string;
|
|
34550
|
+
/**
|
|
34551
|
+
* @SINCE 1.113
|
|
34552
|
+
*
|
|
34553
|
+
* Gets current value of property {@link #getEnabledMultiSelectionPlugin enabledMultiSelectionPlugin}.
|
|
34554
|
+
*
|
|
34555
|
+
* Sets usage of `MultiSelectionPlugin`. If enabled the default behaviour is changed and the `ValueHelpDialog`
|
|
34556
|
+
* table uses the plugin which provides only "Deselect all" option and the ability for range selection.
|
|
34557
|
+
* Also a limit of 1000 items that are able to be selected as a restriction.
|
|
34558
|
+
*
|
|
34559
|
+
* Note: Using `MultiSelectionPlugin` mode the method `update` will return a promise.
|
|
34560
|
+
*
|
|
34561
|
+
* Default value is `false`.
|
|
34562
|
+
*
|
|
34563
|
+
* @returns Value of property `enabledMultiSelectionPlugin`
|
|
34564
|
+
*/
|
|
34565
|
+
getEnabledMultiSelectionPlugin(): boolean;
|
|
34289
34566
|
/**
|
|
34290
34567
|
* Gets content of aggregation {@link #getFilterBar filterBar}.
|
|
34291
34568
|
*
|
|
@@ -34508,6 +34785,29 @@ declare namespace sap {
|
|
|
34508
34785
|
*/
|
|
34509
34786
|
sDisplayFormat?: string
|
|
34510
34787
|
): this;
|
|
34788
|
+
/**
|
|
34789
|
+
* @SINCE 1.113
|
|
34790
|
+
*
|
|
34791
|
+
* Sets a new value for property {@link #getEnabledMultiSelectionPlugin enabledMultiSelectionPlugin}.
|
|
34792
|
+
*
|
|
34793
|
+
* Sets usage of `MultiSelectionPlugin`. If enabled the default behaviour is changed and the `ValueHelpDialog`
|
|
34794
|
+
* table uses the plugin which provides only "Deselect all" option and the ability for range selection.
|
|
34795
|
+
* Also a limit of 1000 items that are able to be selected as a restriction.
|
|
34796
|
+
*
|
|
34797
|
+
* Note: Using `MultiSelectionPlugin` mode the method `update` will return a promise.
|
|
34798
|
+
*
|
|
34799
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
34800
|
+
*
|
|
34801
|
+
* Default value is `false`.
|
|
34802
|
+
*
|
|
34803
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
34804
|
+
*/
|
|
34805
|
+
setEnabledMultiSelectionPlugin(
|
|
34806
|
+
/**
|
|
34807
|
+
* New value for property `enabledMultiSelectionPlugin`
|
|
34808
|
+
*/
|
|
34809
|
+
bEnabledMultiSelectionPlugin?: boolean
|
|
34810
|
+
): this;
|
|
34511
34811
|
/**
|
|
34512
34812
|
* @SINCE 1.24
|
|
34513
34813
|
*
|
|
@@ -35671,6 +35971,8 @@ declare namespace sap {
|
|
|
35671
35971
|
oListener?: object
|
|
35672
35972
|
): this;
|
|
35673
35973
|
/**
|
|
35974
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
35975
|
+
*
|
|
35674
35976
|
* Fires event {@link #event:change change} to attached listeners.
|
|
35675
35977
|
*
|
|
35676
35978
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -36275,6 +36577,7 @@ declare namespace sap {
|
|
|
36275
36577
|
): this;
|
|
36276
36578
|
/**
|
|
36277
36579
|
* @SINCE 1.22.0
|
|
36580
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
36278
36581
|
*
|
|
36279
36582
|
* Fires event {@link #event:manage manage} to attached listeners.
|
|
36280
36583
|
*
|
|
@@ -36306,6 +36609,7 @@ declare namespace sap {
|
|
|
36306
36609
|
): this;
|
|
36307
36610
|
/**
|
|
36308
36611
|
* @SINCE 1.22.0
|
|
36612
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
36309
36613
|
*
|
|
36310
36614
|
* Fires event {@link #event:save save} to attached listeners.
|
|
36311
36615
|
*
|
|
@@ -36352,6 +36656,7 @@ declare namespace sap {
|
|
|
36352
36656
|
): this;
|
|
36353
36657
|
/**
|
|
36354
36658
|
* @SINCE 1.22.0
|
|
36659
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
36355
36660
|
*
|
|
36356
36661
|
* Fires event {@link #event:select select} to attached listeners.
|
|
36357
36662
|
*
|
|
@@ -36437,6 +36742,8 @@ declare namespace sap {
|
|
|
36437
36742
|
*/
|
|
36438
36743
|
getLifecycleSupport(): boolean;
|
|
36439
36744
|
/**
|
|
36745
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
36746
|
+
*
|
|
36440
36747
|
* Required by the {@link sap.m.IOverflowToolbarContent} interface. Registers invalidations event which
|
|
36441
36748
|
* is fired when width of the control is changed.
|
|
36442
36749
|
*
|