@sapui5/ts-types 1.111.1 → 1.112.1
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 +41 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +76 -9
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +3 -3
- package/types/sap.fe.test.d.ts +12 -20
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +93 -3
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +80 -7
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -39
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +6 -6
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +9 -1
- package/types/sap.suite.ui.commons.d.ts +35 -1
- package/types/sap.suite.ui.generic.template.d.ts +79 -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 +212 -38
- package/types/sap.ui.core.d.ts +75 -33
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +116 -1
- package/types/sap.ui.fl.d.ts +5 -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.integration.d.ts +119 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +3 -5
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +28 -22
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +7 -2
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +14 -17
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +14 -1
- package/types/sap.ushell_abap.d.ts +3 -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.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.112.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -91,11 +91,81 @@ declare namespace sap {
|
|
|
91
91
|
* @returns Metadata object describing this class
|
|
92
92
|
*/
|
|
93
93
|
static getMetadata(): sap.ui.base.Metadata;
|
|
94
|
+
/**
|
|
95
|
+
* @SINCE 1.110
|
|
96
|
+
*
|
|
97
|
+
* Returns the filter label if available. Otherwise the name of the filter property will be returned.
|
|
98
|
+
*
|
|
99
|
+
* @returns Filter label
|
|
100
|
+
*/
|
|
101
|
+
getLabel(): string;
|
|
102
|
+
/**
|
|
103
|
+
* @SINCE 1.110
|
|
104
|
+
*
|
|
105
|
+
* Returns the technical name of the property on which the filter is applied.
|
|
106
|
+
*
|
|
107
|
+
* @returns Name of the property
|
|
108
|
+
*/
|
|
109
|
+
getProperty(): string;
|
|
110
|
+
/**
|
|
111
|
+
* @SINCE 1.110
|
|
112
|
+
*
|
|
113
|
+
* Returns the formatted filter value(s) as string. If there are multiple filters for the same property,
|
|
114
|
+
* which are combined via `OR`, it will return a semicolon-separated list of the filter values including
|
|
115
|
+
* their operators.
|
|
116
|
+
*
|
|
117
|
+
* @returns Formatted and semicolon-separated filter settings
|
|
118
|
+
*/
|
|
119
|
+
getValue(): string;
|
|
120
|
+
/**
|
|
121
|
+
* @SINCE 1.110
|
|
122
|
+
*
|
|
123
|
+
* Uses the given format function to format all filter values. The function has to accept a single parameter
|
|
124
|
+
* of type `string` and needs to return a string value. The function will be called for every single raw
|
|
125
|
+
* value without the corresponding filter operator.
|
|
126
|
+
*
|
|
127
|
+
* If there is a "between" filter, the function will be called twice. In case of an error, the function
|
|
128
|
+
* call will be skipped, and the raw value will be taken instead.
|
|
129
|
+
*
|
|
130
|
+
* The format function has priority over the type-dependent format. To reset the format function and return
|
|
131
|
+
* to type-dependent formatting, the format function needs to be set to `null`.
|
|
132
|
+
*/
|
|
133
|
+
setFormat(
|
|
134
|
+
/**
|
|
135
|
+
* Format function that will be applied to the raw values
|
|
136
|
+
*/
|
|
137
|
+
fnFormat: Function
|
|
138
|
+
): void;
|
|
139
|
+
/**
|
|
140
|
+
* @SINCE 1.110
|
|
141
|
+
*
|
|
142
|
+
* Takes the given string as label of the filter.
|
|
143
|
+
*/
|
|
144
|
+
setLabel(
|
|
145
|
+
/**
|
|
146
|
+
* Filter label
|
|
147
|
+
*/
|
|
148
|
+
sLabel: string
|
|
149
|
+
): void;
|
|
150
|
+
/**
|
|
151
|
+
* @SINCE 1.110
|
|
152
|
+
*
|
|
153
|
+
* Uses the given `sap.ui.model.SimpleType` instance to format the filter values accordingly.
|
|
154
|
+
*/
|
|
155
|
+
setType(
|
|
156
|
+
/**
|
|
157
|
+
* Type instance that is used for formatting
|
|
158
|
+
*/
|
|
159
|
+
oType: sap.ui.model.SimpleType
|
|
160
|
+
): void;
|
|
94
161
|
}
|
|
95
162
|
}
|
|
96
163
|
|
|
97
164
|
/**
|
|
98
165
|
* @SINCE 1.96
|
|
166
|
+
*
|
|
167
|
+
* The `sap.ui.export.ExportBase` class allows you to export table data from a UI5 application to certain
|
|
168
|
+
* formats. This class is an abstract class that requires specific implementations for each file format.
|
|
99
169
|
*/
|
|
100
170
|
class ExportBase extends sap.ui.base.EventProvider {
|
|
101
171
|
/**
|
|
@@ -217,6 +287,14 @@ declare namespace sap {
|
|
|
217
287
|
* Cancels the current export process.
|
|
218
288
|
*/
|
|
219
289
|
cancel(): void;
|
|
290
|
+
/**
|
|
291
|
+
* Cleans up the internal structures and removes all event handlers.
|
|
292
|
+
*
|
|
293
|
+
* The object must not be used anymore after destroy was called.
|
|
294
|
+
* See:
|
|
295
|
+
* sap.ui.base.Object#destroy
|
|
296
|
+
*/
|
|
297
|
+
destroy(): void;
|
|
220
298
|
/**
|
|
221
299
|
* @SINCE 1.96
|
|
222
300
|
*
|
|
@@ -236,6 +314,12 @@ declare namespace sap {
|
|
|
236
314
|
*/
|
|
237
315
|
oListener?: object
|
|
238
316
|
): this;
|
|
317
|
+
/**
|
|
318
|
+
* @SINCE 1.112
|
|
319
|
+
*
|
|
320
|
+
* Returns the specific MIME type
|
|
321
|
+
*/
|
|
322
|
+
getMimeType(): void;
|
|
239
323
|
/**
|
|
240
324
|
* Sets the data source configuration that will be used for exporting the data. If the passed parameter
|
|
241
325
|
* is null, the call will be ignored.
|
|
@@ -254,6 +338,9 @@ declare namespace sap {
|
|
|
254
338
|
}
|
|
255
339
|
/**
|
|
256
340
|
* @SINCE 1.50
|
|
341
|
+
*
|
|
342
|
+
* The `sap.ui.export.Spreadsheet` class allows you to export table data from a UI5 application to a spreadsheet
|
|
343
|
+
* file.
|
|
257
344
|
*/
|
|
258
345
|
class Spreadsheet extends sap.ui.export.ExportBase {
|
|
259
346
|
/**
|
|
@@ -630,6 +717,34 @@ declare namespace sap {
|
|
|
630
717
|
*/
|
|
631
718
|
oListener?: object
|
|
632
719
|
): this;
|
|
720
|
+
/**
|
|
721
|
+
* @SINCE 1.112
|
|
722
|
+
*
|
|
723
|
+
* Returns the specific MIME type
|
|
724
|
+
*
|
|
725
|
+
* @returns MIME type for Office Open XML Spreadsheet
|
|
726
|
+
*/
|
|
727
|
+
getMimeType(): string;
|
|
728
|
+
/**
|
|
729
|
+
* @SINCE 1.73
|
|
730
|
+
*
|
|
731
|
+
* Sets the data source configuration that will be used for exporting the data. If the passed parameter
|
|
732
|
+
* is null, the call will be ignored.
|
|
733
|
+
*
|
|
734
|
+
* @returns - Valid dataSource object or null in case the dataSource configuration is not supported
|
|
735
|
+
*/
|
|
736
|
+
processDataSource(
|
|
737
|
+
/**
|
|
738
|
+
* Possible types are a plain string that contains an URL of an OData service, an array of JSON objects,
|
|
739
|
+
* a data source configuration, a `sap.ui.model.ListBinding` or `sap.ui.model.TreeBinding`
|
|
740
|
+
*/
|
|
741
|
+
oDataSource:
|
|
742
|
+
| string
|
|
743
|
+
| any[]
|
|
744
|
+
| Object
|
|
745
|
+
| sap.ui.model.ListBinding
|
|
746
|
+
| sap.ui.model.TreeBinding
|
|
747
|
+
): object | null;
|
|
633
748
|
}
|
|
634
749
|
/**
|
|
635
750
|
* @SINCE 1.50.0
|
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.112.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -1205,10 +1205,14 @@ declare namespace sap {
|
|
|
1205
1205
|
interface IUI5DefineDependencyNames {
|
|
1206
1206
|
"sap/ui/fl/apply/_internal/changes/descriptor/app/AddAnnotationsToOData": undefined;
|
|
1207
1207
|
|
|
1208
|
+
"sap/ui/fl/apply/_internal/changes/descriptor/app/AddNewInbound": undefined;
|
|
1209
|
+
|
|
1208
1210
|
"sap/ui/fl/apply/_internal/changes/descriptor/app/ChangeDataSource": undefined;
|
|
1209
1211
|
|
|
1210
1212
|
"sap/ui/fl/apply/_internal/changes/descriptor/app/ChangeInbound": undefined;
|
|
1211
1213
|
|
|
1214
|
+
"sap/ui/fl/apply/_internal/changes/descriptor/app/RemoveAllInboundsExceptOne": undefined;
|
|
1215
|
+
|
|
1212
1216
|
"sap/ui/fl/apply/_internal/changes/descriptor/app/SetTitle": undefined;
|
|
1213
1217
|
|
|
1214
1218
|
"sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetAbstract": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.112.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -820,6 +820,22 @@ declare namespace sap {
|
|
|
820
820
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
821
821
|
| `{${string}}`;
|
|
822
822
|
|
|
823
|
+
/**
|
|
824
|
+
* @SINCE 1.112
|
|
825
|
+
* @EXPERIMENTAL (since 1.112)
|
|
826
|
+
*
|
|
827
|
+
* Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
|
|
828
|
+
*
|
|
829
|
+
* - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
|
|
830
|
+
* in the manifest. If such configuration is missing, then the real data is loaded.
|
|
831
|
+
* - When set to "Abstract", the card shows abstract placeholder without loading data.
|
|
832
|
+
* - When set to "Off", the card displays real data.
|
|
833
|
+
*/
|
|
834
|
+
previewMode?:
|
|
835
|
+
| sap.ui.integration.CardPreviewMode
|
|
836
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
837
|
+
| `{${string}}`;
|
|
838
|
+
|
|
823
839
|
/**
|
|
824
840
|
* @SINCE 1.85
|
|
825
841
|
* @EXPERIMENTAL (since 1.85) - Disclaimer: this aggregation is in a beta state - incompatible API changes
|
|
@@ -844,6 +860,10 @@ declare namespace sap {
|
|
|
844
860
|
* be done before its official public release. Use at your own discretion.
|
|
845
861
|
*
|
|
846
862
|
* Fired when an action is triggered on the card.
|
|
863
|
+
*
|
|
864
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
865
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
866
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
847
867
|
*/
|
|
848
868
|
action?: (oEvent: sap.ui.base.Event) => void;
|
|
849
869
|
|
|
@@ -1012,6 +1032,10 @@ declare namespace sap {
|
|
|
1012
1032
|
*
|
|
1013
1033
|
* Fired when an action is triggered on the card.
|
|
1014
1034
|
*
|
|
1035
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
1036
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
1037
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
1038
|
+
*
|
|
1015
1039
|
* @returns Reference to `this` in order to allow method chaining
|
|
1016
1040
|
*/
|
|
1017
1041
|
attachAction(
|
|
@@ -1040,6 +1064,10 @@ declare namespace sap {
|
|
|
1040
1064
|
*
|
|
1041
1065
|
* Fired when an action is triggered on the card.
|
|
1042
1066
|
*
|
|
1067
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
1068
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
1069
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
1070
|
+
*
|
|
1043
1071
|
* @returns Reference to `this` in order to allow method chaining
|
|
1044
1072
|
*/
|
|
1045
1073
|
attachAction(
|
|
@@ -1612,6 +1640,24 @@ declare namespace sap {
|
|
|
1612
1640
|
*/
|
|
1613
1641
|
sPath: string
|
|
1614
1642
|
): any;
|
|
1643
|
+
/**
|
|
1644
|
+
* @SINCE 1.112
|
|
1645
|
+
* @EXPERIMENTAL (since 1.112)
|
|
1646
|
+
*
|
|
1647
|
+
* Gets current value of property {@link #getPreviewMode previewMode}.
|
|
1648
|
+
*
|
|
1649
|
+
* Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
|
|
1650
|
+
*
|
|
1651
|
+
* - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
|
|
1652
|
+
* in the manifest. If such configuration is missing, then the real data is loaded.
|
|
1653
|
+
* - When set to "Abstract", the card shows abstract placeholder without loading data.
|
|
1654
|
+
* - When set to "Off", the card displays real data.
|
|
1655
|
+
*
|
|
1656
|
+
* Default value is `Off`.
|
|
1657
|
+
*
|
|
1658
|
+
* @returns Value of property `previewMode`
|
|
1659
|
+
*/
|
|
1660
|
+
getPreviewMode(): sap.ui.integration.CardPreviewMode;
|
|
1615
1661
|
/**
|
|
1616
1662
|
* Gets current value of property {@link #getReferenceId referenceId}.
|
|
1617
1663
|
*
|
|
@@ -1952,6 +1998,31 @@ declare namespace sap {
|
|
|
1952
1998
|
*/
|
|
1953
1999
|
sManifestChanges: object[]
|
|
1954
2000
|
): this;
|
|
2001
|
+
/**
|
|
2002
|
+
* @SINCE 1.112
|
|
2003
|
+
* @EXPERIMENTAL (since 1.112)
|
|
2004
|
+
*
|
|
2005
|
+
* Sets a new value for property {@link #getPreviewMode previewMode}.
|
|
2006
|
+
*
|
|
2007
|
+
* Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
|
|
2008
|
+
*
|
|
2009
|
+
* - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
|
|
2010
|
+
* in the manifest. If such configuration is missing, then the real data is loaded.
|
|
2011
|
+
* - When set to "Abstract", the card shows abstract placeholder without loading data.
|
|
2012
|
+
* - When set to "Off", the card displays real data.
|
|
2013
|
+
*
|
|
2014
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2015
|
+
*
|
|
2016
|
+
* Default value is `Off`.
|
|
2017
|
+
*
|
|
2018
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2019
|
+
*/
|
|
2020
|
+
setPreviewMode(
|
|
2021
|
+
/**
|
|
2022
|
+
* New value for property `previewMode`
|
|
2023
|
+
*/
|
|
2024
|
+
sPreviewMode?: sap.ui.integration.CardPreviewMode
|
|
2025
|
+
): this;
|
|
1955
2026
|
/**
|
|
1956
2027
|
* Sets a new value for property {@link #getReferenceId referenceId}.
|
|
1957
2028
|
*
|
|
@@ -2138,6 +2209,10 @@ declare namespace sap {
|
|
|
2138
2209
|
* be done before its official public release. Use at your own discretion.
|
|
2139
2210
|
*
|
|
2140
2211
|
* Fired when an action is triggered in the card.
|
|
2212
|
+
*
|
|
2213
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
2214
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
2215
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
2141
2216
|
*/
|
|
2142
2217
|
action?: (oEvent: sap.ui.base.Event) => void;
|
|
2143
2218
|
}
|
|
@@ -2175,6 +2250,10 @@ declare namespace sap {
|
|
|
2175
2250
|
* be done before its official public release. Use at your own discretion.
|
|
2176
2251
|
*
|
|
2177
2252
|
* Fired when an action is triggered.
|
|
2253
|
+
*
|
|
2254
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
2255
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
2256
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
2178
2257
|
*/
|
|
2179
2258
|
action?: (oEvent: sap.ui.base.Event) => void;
|
|
2180
2259
|
|
|
@@ -2685,6 +2764,10 @@ declare namespace sap {
|
|
|
2685
2764
|
*
|
|
2686
2765
|
* Fired when an action is triggered in the card.
|
|
2687
2766
|
*
|
|
2767
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
2768
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
2769
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
2770
|
+
*
|
|
2688
2771
|
* @returns Reference to `this` in order to allow method chaining
|
|
2689
2772
|
*/
|
|
2690
2773
|
attachAction(
|
|
@@ -2713,6 +2796,10 @@ declare namespace sap {
|
|
|
2713
2796
|
*
|
|
2714
2797
|
* Fired when an action is triggered in the card.
|
|
2715
2798
|
*
|
|
2799
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
2800
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
2801
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
2802
|
+
*
|
|
2716
2803
|
* @returns Reference to `this` in order to allow method chaining
|
|
2717
2804
|
*/
|
|
2718
2805
|
attachAction(
|
|
@@ -2917,6 +3004,10 @@ declare namespace sap {
|
|
|
2917
3004
|
*
|
|
2918
3005
|
* Fired when an action is triggered.
|
|
2919
3006
|
*
|
|
3007
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
3008
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3009
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3010
|
+
*
|
|
2920
3011
|
* @returns Reference to `this` in order to allow method chaining
|
|
2921
3012
|
*/
|
|
2922
3013
|
attachAction(
|
|
@@ -2945,6 +3036,10 @@ declare namespace sap {
|
|
|
2945
3036
|
*
|
|
2946
3037
|
* Fired when an action is triggered.
|
|
2947
3038
|
*
|
|
3039
|
+
* When an action is triggered in the card it can be handled on several places by "action" event handlers.
|
|
3040
|
+
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3041
|
+
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3042
|
+
*
|
|
2948
3043
|
* @returns Reference to `this` in order to allow method chaining
|
|
2949
3044
|
*/
|
|
2950
3045
|
attachAction(
|
|
@@ -3589,6 +3684,27 @@ declare namespace sap {
|
|
|
3589
3684
|
*/
|
|
3590
3685
|
Transparent = "Transparent",
|
|
3591
3686
|
}
|
|
3687
|
+
/**
|
|
3688
|
+
* @SINCE 1.112
|
|
3689
|
+
* @EXPERIMENTAL (since 1.112)
|
|
3690
|
+
*
|
|
3691
|
+
* Preview modes for `{@link sap.ui.integration.widgets.Card}`. Helpful in scenarios when the end user is
|
|
3692
|
+
* choosing or configuring a card.
|
|
3693
|
+
*/
|
|
3694
|
+
enum CardPreviewMode {
|
|
3695
|
+
/**
|
|
3696
|
+
* Card displays abstract preview. No data requests are made.
|
|
3697
|
+
*/
|
|
3698
|
+
Abstract = "Abstract",
|
|
3699
|
+
/**
|
|
3700
|
+
* Card displays mocked data, loaded using a data request as configured in the manifest.
|
|
3701
|
+
*/
|
|
3702
|
+
MockData = "MockData",
|
|
3703
|
+
/**
|
|
3704
|
+
* Card displays real data.
|
|
3705
|
+
*/
|
|
3706
|
+
Off = "Off",
|
|
3707
|
+
}
|
|
3592
3708
|
/**
|
|
3593
3709
|
* @EXPERIMENTAL (since 1.79)
|
|
3594
3710
|
*
|
|
@@ -3730,6 +3846,8 @@ declare namespace sap {
|
|
|
3730
3846
|
|
|
3731
3847
|
"sap/ui/integration/editor/Editor": undefined;
|
|
3732
3848
|
|
|
3849
|
+
"sap/ui/integration/editor/EditorResourceBundles": undefined;
|
|
3850
|
+
|
|
3733
3851
|
"sap/ui/integration/editor/Extension": undefined;
|
|
3734
3852
|
|
|
3735
3853
|
"sap/ui/integration/editor/fields/BaseField": undefined;
|
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.112.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -106,6 +106,8 @@ declare namespace sap {
|
|
|
106
106
|
|
|
107
107
|
"sap/ui/mdc/filterbar/FilterBarBase": undefined;
|
|
108
108
|
|
|
109
|
+
"sap/ui/mdc/filterbar/p13n/AdaptationFilterBar": undefined;
|
|
110
|
+
|
|
109
111
|
"sap/ui/mdc/filterbar/vh/CollectiveSearchSelect": undefined;
|
|
110
112
|
|
|
111
113
|
"sap/ui/mdc/filterbar/vh/FilterBar": undefined;
|
|
@@ -146,14 +148,10 @@ declare namespace sap {
|
|
|
146
148
|
|
|
147
149
|
"sap/ui/mdc/odata/v4/ValueHelpDelegate": undefined;
|
|
148
150
|
|
|
149
|
-
"sap/ui/mdc/p13n/Engine": undefined;
|
|
150
|
-
|
|
151
151
|
"sap/ui/mdc/p13n/panels/FilterPanel": undefined;
|
|
152
152
|
|
|
153
153
|
"sap/ui/mdc/p13n/StateUtil": undefined;
|
|
154
154
|
|
|
155
|
-
"sap/ui/mdc/p13n/subcontroller/BaseController": undefined;
|
|
156
|
-
|
|
157
155
|
"sap/ui/mdc/p13n/UIManager": undefined;
|
|
158
156
|
|
|
159
157
|
"sap/ui/mdc/Table": undefined;
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.112.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -13,14 +13,16 @@ declare namespace sap {
|
|
|
13
13
|
extends sap.ui.table.plugins.$SelectionPluginSettings {
|
|
14
14
|
/**
|
|
15
15
|
* Number of indices which can be selected in a range. Accepts positive integer values. If set to 0, the
|
|
16
|
-
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
17
|
-
*
|
|
16
|
+
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
17
|
+
*
|
|
18
|
+
* **Note:** To avoid severe performance problems, the limit should only be set to 0 in the following cases:
|
|
18
19
|
*
|
|
19
20
|
* - With client-side models
|
|
20
21
|
* - With server-side models if they are used in client mode
|
|
21
|
-
* - If the entity set is small
|
|
22
|
-
*
|
|
23
|
-
*
|
|
22
|
+
* - If the entity set is small
|
|
23
|
+
*
|
|
24
|
+
* In other cases, we recommend to set the limit to at least double the value of the {@link sap.ui.table.Table#getThreshold
|
|
25
|
+
* threshold} property of the related `sap.ui.table.Table` control.
|
|
24
26
|
*/
|
|
25
27
|
limit?:
|
|
26
28
|
| int
|
|
@@ -75,16 +77,16 @@ declare namespace sap {
|
|
|
75
77
|
* Implements a plugin to enable a special multi-selection behavior:
|
|
76
78
|
* - No Select All checkbox, select all can only be done via range selection
|
|
77
79
|
* - Dedicated Deselect All button to clear the selection
|
|
78
|
-
* - The number of indices which can be selected in a range is defined by the `limit` property
|
|
79
|
-
*
|
|
80
|
-
*
|
|
80
|
+
* - The number of indices which can be selected in a range is defined by the `limit` property. If the
|
|
81
|
+
* user tries to select more indices, the selection is automatically limited, and the table scrolls to the
|
|
82
|
+
* last selected index.
|
|
81
83
|
* - The plugin makes sure that the corresponding binding contexts up to the given limit are available,
|
|
82
84
|
* by requesting them from the binding.
|
|
83
85
|
* - Multiple consecutive selections are possible
|
|
84
86
|
*
|
|
85
|
-
* This plugin is intended for
|
|
86
|
-
*
|
|
87
|
-
* and
|
|
87
|
+
* This plugin is intended for server-side models and multi-selection mode. Range selections, including
|
|
88
|
+
* Select All, only work properly if the count is known. Make sure the model/binding is configured to request
|
|
89
|
+
* the count from the service. For ease of use, client-side models and single selection are also supported.
|
|
88
90
|
*/
|
|
89
91
|
class MultiSelectionPlugin extends sap.ui.table.plugins
|
|
90
92
|
.SelectionPlugin {
|
|
@@ -270,14 +272,16 @@ declare namespace sap {
|
|
|
270
272
|
* Gets current value of property {@link #getLimit limit}.
|
|
271
273
|
*
|
|
272
274
|
* Number of indices which can be selected in a range. Accepts positive integer values. If set to 0, the
|
|
273
|
-
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
274
|
-
*
|
|
275
|
+
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
276
|
+
*
|
|
277
|
+
* **Note:** To avoid severe performance problems, the limit should only be set to 0 in the following cases:
|
|
275
278
|
*
|
|
276
279
|
* - With client-side models
|
|
277
280
|
* - With server-side models if they are used in client mode
|
|
278
|
-
* - If the entity set is small
|
|
279
|
-
*
|
|
280
|
-
*
|
|
281
|
+
* - If the entity set is small
|
|
282
|
+
*
|
|
283
|
+
* In other cases, we recommend to set the limit to at least double the value of the {@link sap.ui.table.Table#getThreshold
|
|
284
|
+
* threshold} property of the related `sap.ui.table.Table` control.
|
|
281
285
|
*
|
|
282
286
|
* Default value is `200`.
|
|
283
287
|
*
|
|
@@ -378,14 +382,16 @@ declare namespace sap {
|
|
|
378
382
|
* Sets a new value for property {@link #getLimit limit}.
|
|
379
383
|
*
|
|
380
384
|
* Number of indices which can be selected in a range. Accepts positive integer values. If set to 0, the
|
|
381
|
-
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
382
|
-
*
|
|
385
|
+
* limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
|
|
386
|
+
*
|
|
387
|
+
* **Note:** To avoid severe performance problems, the limit should only be set to 0 in the following cases:
|
|
383
388
|
*
|
|
384
389
|
* - With client-side models
|
|
385
390
|
* - With server-side models if they are used in client mode
|
|
386
|
-
* - If the entity set is small
|
|
387
|
-
*
|
|
388
|
-
*
|
|
391
|
+
* - If the entity set is small
|
|
392
|
+
*
|
|
393
|
+
* In other cases, we recommend to set the limit to at least double the value of the {@link sap.ui.table.Table#getThreshold
|
|
394
|
+
* threshold} property of the related `sap.ui.table.Table` control.
|
|
389
395
|
*
|
|
390
396
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
391
397
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.112.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -5714,7 +5714,12 @@ declare namespace sap {
|
|
|
5714
5714
|
*
|
|
5715
5715
|
* @returns `this` to allow method chaining.
|
|
5716
5716
|
*/
|
|
5717
|
-
setShouldRenderFrame(
|
|
5717
|
+
setShouldRenderFrame(
|
|
5718
|
+
/**
|
|
5719
|
+
* If set to 'true', then hierarchy and matrix recomputation is not required, only redraw.
|
|
5720
|
+
*/
|
|
5721
|
+
skipHierarchyProcessing: boolean
|
|
5722
|
+
): this;
|
|
5718
5723
|
/**
|
|
5719
5724
|
* Sets the current scene to use the camera view information acquired from the {@link sap.ui.vk.Viewport#getViewInfo
|
|
5720
5725
|
* getViewInfo} method.
|
package/types/sap.ui.vtm.d.ts
CHANGED