@openui5/ts-types 1.96.2 → 1.98.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +1 -1
- package/types/sap.f.d.ts +108 -573
- package/types/sap.m.d.ts +3169 -344
- package/types/sap.tnt.d.ts +31 -1
- package/types/sap.ui.codeeditor.d.ts +7 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1202 -358
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +7 -3
- package/types/sap.ui.integration.d.ts +60 -1
- package/types/sap.ui.layout.d.ts +4 -4
- package/types/sap.ui.mdc.d.ts +31 -15
- package/types/sap.ui.rta.d.ts +5 -11
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +32 -3
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +43 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +794 -244
- package/types/sap.ui.webc.main.d.ts +1059 -552
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.98.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -88,8 +88,6 @@ declare namespace sap {
|
|
|
88
88
|
|
|
89
89
|
"sap/ui/fl/ChangePersistenceFactory": undefined;
|
|
90
90
|
|
|
91
|
-
"sap/ui/fl/ControlPersonalizationAPI": undefined;
|
|
92
|
-
|
|
93
91
|
"sap/ui/fl/descriptorRelated/api/DescriptorChangeFactory": undefined;
|
|
94
92
|
|
|
95
93
|
"sap/ui/fl/descriptorRelated/api/DescriptorInlineChangeFactory": undefined;
|
|
@@ -132,6 +130,10 @@ declare namespace sap {
|
|
|
132
130
|
|
|
133
131
|
"sap/ui/fl/registry/Settings": undefined;
|
|
134
132
|
|
|
133
|
+
"sap/ui/fl/support/_internal/getChangeDependencies": undefined;
|
|
134
|
+
|
|
135
|
+
"sap/ui/fl/support/api/SupportAPI": undefined;
|
|
136
|
+
|
|
135
137
|
"sap/ui/fl/transport/TransportDialog": undefined;
|
|
136
138
|
|
|
137
139
|
"sap/ui/fl/Utils": undefined;
|
|
@@ -216,6 +218,8 @@ declare namespace sap {
|
|
|
216
218
|
|
|
217
219
|
"sap/ui/fl/write/api/SmartVariantManagementWriteAPI": undefined;
|
|
218
220
|
|
|
221
|
+
"sap/ui/fl/write/api/TranslationAPI": undefined;
|
|
222
|
+
|
|
219
223
|
"sap/ui/fl/write/api/UI2PersonalizationWriteAPI": undefined;
|
|
220
224
|
|
|
221
225
|
"sap/ui/fl/write/api/VersionsAPI": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.98.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -2564,6 +2564,32 @@ declare namespace sap {
|
|
|
2564
2564
|
*/
|
|
2565
2565
|
oListener?: object
|
|
2566
2566
|
): this;
|
|
2567
|
+
/**
|
|
2568
|
+
* @EXPERIMENTAL (since 1.97)
|
|
2569
|
+
*
|
|
2570
|
+
* This functions is called when a CSRF token has expired.
|
|
2571
|
+
*/
|
|
2572
|
+
csrfTokenExpired(
|
|
2573
|
+
/**
|
|
2574
|
+
* The CSRF token configuration.
|
|
2575
|
+
*/
|
|
2576
|
+
mCSRFTokenConfig: object
|
|
2577
|
+
): void;
|
|
2578
|
+
/**
|
|
2579
|
+
* @EXPERIMENTAL (since 1.97)
|
|
2580
|
+
*
|
|
2581
|
+
* This functions is called when a CSRF token is fetched.
|
|
2582
|
+
*/
|
|
2583
|
+
csrfTokenFetched(
|
|
2584
|
+
/**
|
|
2585
|
+
* The CSRF token configuration.
|
|
2586
|
+
*/
|
|
2587
|
+
mCSRFTokenConfig: object,
|
|
2588
|
+
/**
|
|
2589
|
+
* A promise which resolves the CSRF token to its value.
|
|
2590
|
+
*/
|
|
2591
|
+
pCSRFTokenValuePromise: Promise<any>
|
|
2592
|
+
): void;
|
|
2567
2593
|
/**
|
|
2568
2594
|
* @EXPERIMENTAL (since 1.75)
|
|
2569
2595
|
*
|
|
@@ -2735,6 +2761,17 @@ declare namespace sap {
|
|
|
2735
2761
|
*/
|
|
2736
2762
|
sPath: string
|
|
2737
2763
|
): Promise<any>;
|
|
2764
|
+
/**
|
|
2765
|
+
* @EXPERIMENTAL (since 1.97)
|
|
2766
|
+
*
|
|
2767
|
+
* Resolves the CSRF token and returns a Promise with its value.
|
|
2768
|
+
*/
|
|
2769
|
+
getCsrfToken(
|
|
2770
|
+
/**
|
|
2771
|
+
* The CSRF token configuration.
|
|
2772
|
+
*/
|
|
2773
|
+
mCSRFTokenConfig: object
|
|
2774
|
+
): Promise<any>;
|
|
2738
2775
|
/**
|
|
2739
2776
|
* Resolves the destination and returns its URL.
|
|
2740
2777
|
*/
|
|
@@ -2829,6 +2866,18 @@ declare namespace sap {
|
|
|
2829
2866
|
* Used for custom actions
|
|
2830
2867
|
*/
|
|
2831
2868
|
Custom = "Custom",
|
|
2869
|
+
/**
|
|
2870
|
+
* @EXPERIMENTAL (since 1.87)
|
|
2871
|
+
*
|
|
2872
|
+
* Date selection. Available only for Calendar cards.
|
|
2873
|
+
*/
|
|
2874
|
+
DateChange = "DateChange",
|
|
2875
|
+
/**
|
|
2876
|
+
* @EXPERIMENTAL (since 1.87)
|
|
2877
|
+
*
|
|
2878
|
+
* Month selection. Available only for Calendar cards.
|
|
2879
|
+
*/
|
|
2880
|
+
MonthChange = "MonthChange",
|
|
2832
2881
|
/**
|
|
2833
2882
|
* Used for navigation actions
|
|
2834
2883
|
*/
|
|
@@ -2960,6 +3009,8 @@ declare namespace sap {
|
|
|
2960
3009
|
|
|
2961
3010
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor": undefined;
|
|
2962
3011
|
|
|
3012
|
+
"sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor": undefined;
|
|
3013
|
+
|
|
2963
3014
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor": undefined;
|
|
2964
3015
|
|
|
2965
3016
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory": undefined;
|
|
@@ -3004,6 +3055,8 @@ declare namespace sap {
|
|
|
3004
3055
|
|
|
3005
3056
|
"sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor": undefined;
|
|
3006
3057
|
|
|
3058
|
+
"sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor": undefined;
|
|
3059
|
+
|
|
3007
3060
|
"sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor": undefined;
|
|
3008
3061
|
|
|
3009
3062
|
"sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor": undefined;
|
|
@@ -3050,12 +3103,18 @@ declare namespace sap {
|
|
|
3050
3103
|
|
|
3051
3104
|
"sap/ui/integration/services/Service": undefined;
|
|
3052
3105
|
|
|
3106
|
+
"sap/ui/integration/util/CsrfTokenHandler": undefined;
|
|
3107
|
+
|
|
3053
3108
|
"sap/ui/integration/util/DataProvider": undefined;
|
|
3054
3109
|
|
|
3055
3110
|
"sap/ui/integration/util/DataProviderFactory": undefined;
|
|
3056
3111
|
|
|
3112
|
+
"sap/ui/integration/util/ManifestResolver": undefined;
|
|
3113
|
+
|
|
3057
3114
|
"sap/ui/integration/util/RequestDataProvider": undefined;
|
|
3058
3115
|
|
|
3116
|
+
"sap/ui/integration/util/SkeletonCard": undefined;
|
|
3117
|
+
|
|
3059
3118
|
"sap/ui/integration/widgets/Card": undefined;
|
|
3060
3119
|
}
|
|
3061
3120
|
}
|
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.98.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -466,9 +466,9 @@ declare namespace sap {
|
|
|
466
466
|
* to the `customLayout` aggregation of the `CSSGrid` and configure how it will look in different breakpoints
|
|
467
467
|
* (S, M, L, XL).
|
|
468
468
|
*
|
|
469
|
-
*
|
|
470
|
-
* -
|
|
471
|
-
* -
|
|
469
|
+
* Out of current scope::
|
|
470
|
+
* - Alignment and ordering
|
|
471
|
+
* - Named grid areas and lines
|
|
472
472
|
*/
|
|
473
473
|
class CSSGrid
|
|
474
474
|
extends sap.ui.core.Control
|
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.98.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -8,16 +8,12 @@ declare namespace sap {
|
|
|
8
8
|
|
|
9
9
|
"sap/ui/mdc/Chart": undefined;
|
|
10
10
|
|
|
11
|
-
"sap/ui/mdc/chart/
|
|
11
|
+
"sap/ui/mdc/chart/ChartSelectionDetails": undefined;
|
|
12
12
|
|
|
13
13
|
"sap/ui/mdc/chart/Item": undefined;
|
|
14
14
|
|
|
15
|
-
"sap/ui/mdc/chart/MeasureItem": undefined;
|
|
16
|
-
|
|
17
15
|
"sap/ui/mdc/chart/SelectionDetailsActions": undefined;
|
|
18
16
|
|
|
19
|
-
"sap/ui/mdc/chartNew/ChartSelectionDetailsNew": undefined;
|
|
20
|
-
|
|
21
17
|
"sap/ui/mdc/condition/Condition": undefined;
|
|
22
18
|
|
|
23
19
|
"sap/ui/mdc/condition/ConditionConverter": undefined;
|
|
@@ -32,6 +28,8 @@ declare namespace sap {
|
|
|
32
28
|
|
|
33
29
|
"sap/ui/mdc/condition/Operator": undefined;
|
|
34
30
|
|
|
31
|
+
"sap/ui/mdc/condition/OperatorDynamicDateOption": undefined;
|
|
32
|
+
|
|
35
33
|
"sap/ui/mdc/condition/RangeOperator": undefined;
|
|
36
34
|
|
|
37
35
|
"sap/ui/mdc/Control": undefined;
|
|
@@ -72,6 +70,8 @@ declare namespace sap {
|
|
|
72
70
|
|
|
73
71
|
"sap/ui/mdc/field/DefineConditionPanel": undefined;
|
|
74
72
|
|
|
73
|
+
"sap/ui/mdc/field/DynamicDateRangeConditionsType": undefined;
|
|
74
|
+
|
|
75
75
|
"sap/ui/mdc/field/FieldBase": undefined;
|
|
76
76
|
|
|
77
77
|
"sap/ui/mdc/field/FieldBaseDelegate": undefined;
|
|
@@ -142,21 +142,15 @@ declare namespace sap {
|
|
|
142
142
|
|
|
143
143
|
"sap/ui/mdc/odata/v4/FieldValueHelpDelegate": undefined;
|
|
144
144
|
|
|
145
|
-
"sap/ui/mdc/
|
|
145
|
+
"sap/ui/mdc/odata/v4/TableDelegate": undefined;
|
|
146
146
|
|
|
147
|
-
"sap/ui/mdc/p13n/
|
|
147
|
+
"sap/ui/mdc/p13n/AdaptationProvider": undefined;
|
|
148
148
|
|
|
149
149
|
"sap/ui/mdc/p13n/Engine": undefined;
|
|
150
150
|
|
|
151
151
|
"sap/ui/mdc/p13n/modification/ModificationHandler": undefined;
|
|
152
152
|
|
|
153
|
-
"sap/ui/mdc/p13n/
|
|
154
|
-
|
|
155
|
-
"sap/ui/mdc/p13n/panels/QueryPanel": undefined;
|
|
156
|
-
|
|
157
|
-
"sap/ui/mdc/p13n/panels/SortQueryPanel": undefined;
|
|
158
|
-
|
|
159
|
-
"sap/ui/mdc/p13n/panels/Wrapper": undefined;
|
|
153
|
+
"sap/ui/mdc/p13n/modules/DefaultProviderRegistry": undefined;
|
|
160
154
|
|
|
161
155
|
"sap/ui/mdc/p13n/StateUtil": undefined;
|
|
162
156
|
|
|
@@ -164,12 +158,32 @@ declare namespace sap {
|
|
|
164
158
|
|
|
165
159
|
"sap/ui/mdc/p13n/UIManager": undefined;
|
|
166
160
|
|
|
161
|
+
"sap/ui/mdc/Table": undefined;
|
|
162
|
+
|
|
163
|
+
"sap/ui/mdc/table/Column": undefined;
|
|
164
|
+
|
|
165
|
+
"sap/ui/mdc/table/CreationRow": undefined;
|
|
166
|
+
|
|
167
|
+
"sap/ui/mdc/table/GridTableType": undefined;
|
|
168
|
+
|
|
169
|
+
"sap/ui/mdc/table/PropertyHelper": undefined;
|
|
170
|
+
|
|
171
|
+
"sap/ui/mdc/table/ResponsiveTableType": undefined;
|
|
172
|
+
|
|
173
|
+
"sap/ui/mdc/table/RowSettings": undefined;
|
|
174
|
+
|
|
175
|
+
"sap/ui/mdc/table/TableTypeBase": undefined;
|
|
176
|
+
|
|
177
|
+
"sap/ui/mdc/TableDelegate": undefined;
|
|
178
|
+
|
|
167
179
|
"sap/ui/mdc/util/DateUtil": undefined;
|
|
168
180
|
|
|
169
181
|
"sap/ui/mdc/util/FilterUtil": undefined;
|
|
170
182
|
|
|
171
183
|
"sap/ui/mdc/util/PromiseCache": undefined;
|
|
172
184
|
|
|
185
|
+
"sap/ui/mdc/util/PropertyHelper": undefined;
|
|
186
|
+
|
|
173
187
|
"sap/ui/mdc/util/TypeUtil": undefined;
|
|
174
188
|
|
|
175
189
|
"sap/ui/mdc/ValueHelp": undefined;
|
|
@@ -190,6 +204,8 @@ declare namespace sap {
|
|
|
190
204
|
|
|
191
205
|
"sap/ui/mdc/valuehelp/content/FixedList": undefined;
|
|
192
206
|
|
|
207
|
+
"sap/ui/mdc/valuehelp/content/MDCTable": undefined;
|
|
208
|
+
|
|
193
209
|
"sap/ui/mdc/valuehelp/content/MTable": undefined;
|
|
194
210
|
|
|
195
211
|
"sap/ui/mdc/valuehelp/Dialog": undefined;
|
package/types/sap.ui.rta.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.98.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/rta/api/startAdaptation" {
|
|
4
4
|
/**
|
|
@@ -15,9 +15,9 @@ declare module "sap/ui/rta/api/startAdaptation" {
|
|
|
15
15
|
*/
|
|
16
16
|
mOptions: {
|
|
17
17
|
/**
|
|
18
|
-
* Control instance
|
|
18
|
+
* Control instance to get the AppComponent. This then is used to start UI adaptation.
|
|
19
19
|
*/
|
|
20
|
-
rootControl: sap.ui.core.
|
|
20
|
+
rootControl: sap.ui.core.Control | sap.ui.core.UIComponent;
|
|
21
21
|
/**
|
|
22
22
|
* Map with flex-related settings
|
|
23
23
|
*/
|
|
@@ -66,9 +66,9 @@ declare module "sap/ui/rta/api/startKeyUserAdaptation" {
|
|
|
66
66
|
*/
|
|
67
67
|
mPropertyBag: {
|
|
68
68
|
/**
|
|
69
|
-
* Control instance
|
|
69
|
+
* Control instance to get the AppComponent. This then is used to start UI adaptation.
|
|
70
70
|
*/
|
|
71
|
-
rootControl: sap.ui.core.
|
|
71
|
+
rootControl: sap.ui.core.Control | sap.ui.core.UIComponent;
|
|
72
72
|
}
|
|
73
73
|
): Promise<any>;
|
|
74
74
|
}
|
|
@@ -107,11 +107,5 @@ declare namespace sap {
|
|
|
107
107
|
"sap/ui/rta/service/Property": undefined;
|
|
108
108
|
|
|
109
109
|
"sap/ui/rta/service/Selection": undefined;
|
|
110
|
-
|
|
111
|
-
"sap/ui/rta/util/changeVisualization/ChangeIndicator": undefined;
|
|
112
|
-
|
|
113
|
-
"sap/ui/rta/util/changeVisualization/ChangeIndicatorRegistry": undefined;
|
|
114
|
-
|
|
115
|
-
"sap/ui/rta/util/changeVisualization/ChangeVisualization": undefined;
|
|
116
110
|
}
|
|
117
111
|
}
|
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.98.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -238,7 +238,7 @@ declare namespace sap {
|
|
|
238
238
|
static getType(): string;
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
|
-
* @SINCE 1.
|
|
241
|
+
* @SINCE 1.98.0
|
|
242
242
|
*
|
|
243
243
|
* Defines the Audiences.
|
|
244
244
|
*/
|
|
@@ -257,7 +257,7 @@ declare namespace sap {
|
|
|
257
257
|
Internal = "Internal",
|
|
258
258
|
}
|
|
259
259
|
/**
|
|
260
|
-
* @SINCE 1.
|
|
260
|
+
* @SINCE 1.98.0
|
|
261
261
|
*
|
|
262
262
|
* Issue Categories.
|
|
263
263
|
*/
|
|
@@ -312,7 +312,7 @@ declare namespace sap {
|
|
|
312
312
|
Usage = "Usage",
|
|
313
313
|
}
|
|
314
314
|
/**
|
|
315
|
-
* @SINCE 1.
|
|
315
|
+
* @SINCE 1.98.0
|
|
316
316
|
*
|
|
317
317
|
* Analysis history formats.
|
|
318
318
|
*/
|
|
@@ -327,7 +327,7 @@ declare namespace sap {
|
|
|
327
327
|
String = "String",
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
|
-
* @SINCE 1.
|
|
330
|
+
* @SINCE 1.98.0
|
|
331
331
|
*
|
|
332
332
|
* Defines severity types.
|
|
333
333
|
*/
|
|
@@ -346,7 +346,7 @@ declare namespace sap {
|
|
|
346
346
|
Medium = "Medium",
|
|
347
347
|
}
|
|
348
348
|
/**
|
|
349
|
-
* @SINCE 1.
|
|
349
|
+
* @SINCE 1.98.0
|
|
350
350
|
*
|
|
351
351
|
* Contains the available system presets.
|
|
352
352
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.98.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -2050,7 +2050,7 @@ declare namespace sap {
|
|
|
2050
2050
|
* into account.
|
|
2051
2051
|
*
|
|
2052
2052
|
* Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
|
|
2053
|
-
* To override the current selection, please use "
|
|
2053
|
+
* To override the current selection, please use "setSelectionInterval" or for a single entry use "setSelectedIndex".
|
|
2054
2054
|
*/
|
|
2055
2055
|
addSelectionInterval(
|
|
2056
2056
|
/**
|
|
@@ -2705,6 +2705,13 @@ declare namespace sap {
|
|
|
2705
2705
|
* Default value is `false`.
|
|
2706
2706
|
*/
|
|
2707
2707
|
getAutoResizable(): boolean;
|
|
2708
|
+
/**
|
|
2709
|
+
* @SINCE 1.98.0
|
|
2710
|
+
*
|
|
2711
|
+
* Returns the `sap.ui.core.IColumnHeaderMenu<\code>, which is the current target of the association columnHeaderMenu`,
|
|
2712
|
+
* or null.
|
|
2713
|
+
*/
|
|
2714
|
+
getColumnHeaderMenu(): sap.ui.core.IColumnHeaderMenu;
|
|
2708
2715
|
/**
|
|
2709
2716
|
* Gets current value of property {@link #getDefaultFilterOperator defaultFilterOperator}.
|
|
2710
2717
|
*
|
|
@@ -5849,6 +5856,28 @@ declare namespace sap {
|
|
|
5849
5856
|
columnAdded?: boolean;
|
|
5850
5857
|
}
|
|
5851
5858
|
): boolean;
|
|
5859
|
+
/**
|
|
5860
|
+
* Sets the focus to the stored focus DOM reference.
|
|
5861
|
+
*
|
|
5862
|
+
* If {@param oFocusInfo.targetInfo} is of type {@type sap.ui.core.message.Message}, the focus will be set
|
|
5863
|
+
* as accurately as possible according to the information provided by {@type sap.ui.core.message.Message}.
|
|
5864
|
+
*/
|
|
5865
|
+
focus(
|
|
5866
|
+
/**
|
|
5867
|
+
* Options for setting the focus
|
|
5868
|
+
*/
|
|
5869
|
+
oFocusInfo?: {
|
|
5870
|
+
/**
|
|
5871
|
+
* @since 1.60 If set to `true`, the focused element won't be moved into the viewport if it's not completely
|
|
5872
|
+
* visible before the focus is set
|
|
5873
|
+
*/
|
|
5874
|
+
preventScroll?: boolean;
|
|
5875
|
+
/**
|
|
5876
|
+
* @since 1.98 Further control-specific setting of the focus target within the control
|
|
5877
|
+
*/
|
|
5878
|
+
targetInfo?: any;
|
|
5879
|
+
}
|
|
5880
|
+
): void;
|
|
5852
5881
|
/**
|
|
5853
5882
|
* @SINCE 1.52
|
|
5854
5883
|
*
|
|
@@ -7532,7 +7561,7 @@ declare namespace sap {
|
|
|
7532
7561
|
* to the selection. Invisible nodes (collapsed child nodes) will not be regarded.
|
|
7533
7562
|
*
|
|
7534
7563
|
* Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
|
|
7535
|
-
* To override the current selection, please use "
|
|
7564
|
+
* To override the current selection, please use "setSelectionInterval" or for a single entry use "setSelectedIndex".
|
|
7536
7565
|
*/
|
|
7537
7566
|
addSelectionInterval(
|
|
7538
7567
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.98.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -5148,6 +5148,17 @@ declare namespace sap {
|
|
|
5148
5148
|
| sap.ui.unified.CalendarAppointmentRoundWidth
|
|
5149
5149
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
5150
5150
|
|
|
5151
|
+
/**
|
|
5152
|
+
* @SINCE 1.97
|
|
5153
|
+
*
|
|
5154
|
+
* Determines whether the selection of multiple appointments is enabled.
|
|
5155
|
+
*
|
|
5156
|
+
* Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
|
|
5157
|
+
*/
|
|
5158
|
+
multipleAppointmentsSelection?:
|
|
5159
|
+
| boolean
|
|
5160
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
5161
|
+
|
|
5151
5162
|
/**
|
|
5152
5163
|
* Appointments to be displayed in the row. Appointments outside the visible time frame are not rendered.
|
|
5153
5164
|
*
|
|
@@ -9402,6 +9413,18 @@ declare namespace sap {
|
|
|
9402
9413
|
* ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
|
|
9403
9414
|
*/
|
|
9404
9415
|
getLegend(): sap.ui.core.ID;
|
|
9416
|
+
/**
|
|
9417
|
+
* @SINCE 1.97
|
|
9418
|
+
*
|
|
9419
|
+
* Gets current value of property {@link #getMultipleAppointmentsSelection multipleAppointmentsSelection}.
|
|
9420
|
+
*
|
|
9421
|
+
* Determines whether the selection of multiple appointments is enabled.
|
|
9422
|
+
*
|
|
9423
|
+
* Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
|
|
9424
|
+
*
|
|
9425
|
+
* Default value is `false`.
|
|
9426
|
+
*/
|
|
9427
|
+
getMultipleAppointmentsSelection(): boolean;
|
|
9405
9428
|
/**
|
|
9406
9429
|
* Gets current value of property {@link #getNonWorkingDays nonWorkingDays}.
|
|
9407
9430
|
*
|
|
@@ -9775,6 +9798,25 @@ declare namespace sap {
|
|
|
9775
9798
|
*/
|
|
9776
9799
|
oLegend: sap.ui.core.ID | sap.ui.unified.CalendarLegend
|
|
9777
9800
|
): this;
|
|
9801
|
+
/**
|
|
9802
|
+
* @SINCE 1.97
|
|
9803
|
+
*
|
|
9804
|
+
* Sets a new value for property {@link #getMultipleAppointmentsSelection multipleAppointmentsSelection}.
|
|
9805
|
+
*
|
|
9806
|
+
* Determines whether the selection of multiple appointments is enabled.
|
|
9807
|
+
*
|
|
9808
|
+
* Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
|
|
9809
|
+
*
|
|
9810
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9811
|
+
*
|
|
9812
|
+
* Default value is `false`.
|
|
9813
|
+
*/
|
|
9814
|
+
setMultipleAppointmentsSelection(
|
|
9815
|
+
/**
|
|
9816
|
+
* New value for property `multipleAppointmentsSelection`
|
|
9817
|
+
*/
|
|
9818
|
+
bMultipleAppointmentsSelection?: boolean
|
|
9819
|
+
): this;
|
|
9778
9820
|
/**
|
|
9779
9821
|
* Sets a new value for property {@link #getNonWorkingDays nonWorkingDays}.
|
|
9780
9822
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED