@openui5/ts-types 1.96.5 → 1.99.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.
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -68,6 +68,10 @@ declare namespace sap {
68
68
 
69
69
  "sap/ui/fl/apply/_internal/flexState/UI2Personalization/UI2PersonalizationState": undefined;
70
70
 
71
+ "sap/ui/fl/apply/_internal/preprocessors/ControllerExtension": undefined;
72
+
73
+ "sap/ui/fl/apply/_internal/preprocessors/EventHistory": undefined;
74
+
71
75
  "sap/ui/fl/apply/api/ControlVariantApplyAPI": undefined;
72
76
 
73
77
  "sap/ui/fl/apply/api/DelegateMediatorAPI": undefined;
@@ -88,16 +92,12 @@ declare namespace sap {
88
92
 
89
93
  "sap/ui/fl/ChangePersistenceFactory": undefined;
90
94
 
91
- "sap/ui/fl/ControlPersonalizationAPI": undefined;
92
-
93
95
  "sap/ui/fl/descriptorRelated/api/DescriptorChangeFactory": undefined;
94
96
 
95
97
  "sap/ui/fl/descriptorRelated/api/DescriptorInlineChangeFactory": undefined;
96
98
 
97
99
  "sap/ui/fl/descriptorRelated/api/DescriptorVariantFactory": undefined;
98
100
 
99
- "sap/ui/fl/EventHistory": undefined;
100
-
101
101
  "sap/ui/fl/FlexControllerFactory": undefined;
102
102
 
103
103
  "sap/ui/fl/initial/_internal/changeHandlers/ChangeRegistryItem": undefined;
@@ -128,10 +128,14 @@ declare namespace sap {
128
128
 
129
129
  "sap/ui/fl/library": undefined;
130
130
 
131
- "sap/ui/fl/PreprocessorImpl": undefined;
132
-
133
131
  "sap/ui/fl/registry/Settings": undefined;
134
132
 
133
+ "sap/ui/fl/support/_internal/getChangeDependencies": undefined;
134
+
135
+ "sap/ui/fl/support/_internal/getFlexSettings": undefined;
136
+
137
+ "sap/ui/fl/support/api/SupportAPI": undefined;
138
+
135
139
  "sap/ui/fl/transport/TransportDialog": undefined;
136
140
 
137
141
  "sap/ui/fl/Utils": undefined;
@@ -216,6 +220,8 @@ declare namespace sap {
216
220
 
217
221
  "sap/ui/fl/write/api/SmartVariantManagementWriteAPI": undefined;
218
222
 
223
+ "sap/ui/fl/write/api/TranslationAPI": undefined;
224
+
219
225
  "sap/ui/fl/write/api/UI2PersonalizationWriteAPI": undefined;
220
226
 
221
227
  "sap/ui/fl/write/api/VersionsAPI": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -612,7 +612,7 @@ declare namespace sap {
612
612
  * "jsonp". Note: Complex Binding is not supported when a dataType is provided. Serialization of the response
613
613
  * to an object is up to the developer.
614
614
  */
615
- dataType?: Object;
615
+ dataType?: string;
616
616
  /**
617
617
  * The HTTP headers of the request.
618
618
  */
@@ -646,9 +646,9 @@ declare namespace sap {
646
646
  /**
647
647
  * @EXPERIMENTAL (since 1.81)
648
648
  *
649
- * Displays a message strip on top of the content with the given text.
650
- *
651
- * **Note** Currently only available for an Adaptive Card.
649
+ * Displays a message strip above the content with the given text. There can be only 1 message displayed.
650
+ * If there is a previous message, it is removed. Can be used only after the `manifestApplied` event is
651
+ * fired.
652
652
  */
653
653
  showMessage(
654
654
  /**
@@ -1519,7 +1519,7 @@ declare namespace sap {
1519
1519
  * "jsonp". Note: Complex Binding is not supported when a dataType is provided. Serialization of the response
1520
1520
  * to an object is up to the developer.
1521
1521
  */
1522
- dataType?: Object;
1522
+ dataType?: string;
1523
1523
  /**
1524
1524
  * The HTTP headers of the request.
1525
1525
  */
@@ -1638,9 +1638,9 @@ declare namespace sap {
1638
1638
  /**
1639
1639
  * @EXPERIMENTAL (since 1.81)
1640
1640
  *
1641
- * Displays a message strip on top of the content with the given text.
1642
- *
1643
- * **Note** Currently only available for an Adaptive Card.
1641
+ * Displays a message strip above the content with the given text. There can be only 1 message displayed.
1642
+ * If there is a previous message, it is removed. Can be used only after the `manifestApplied` event is
1643
+ * fired.
1644
1644
  */
1645
1645
  showMessage(
1646
1646
  /**
@@ -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
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.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
- * Current Limitations:
470
- * - No alignment and ordering
471
- * - No Named grid areas and lines
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
@@ -6921,6 +6921,9 @@ declare namespace sap {
6921
6921
  */
6922
6922
  ColumnLayout = "ColumnLayout",
6923
6923
  /**
6924
+ * @deprecated (since 1.67.0) - as the `sap.ui.commons` library is deprecated, and the `GridLayout` must
6925
+ * not be used in responsive applications. Please use `ResponsiveGridLayout` or `ColumnLayout` instead.
6926
+ *
6924
6927
  * Uses the `GridLayout` layout to render the `SimpleForm` control
6925
6928
  */
6926
6929
  GridLayout = "GridLayout",
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.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/DimensionItem": undefined;
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;
@@ -110,6 +110,10 @@ declare namespace sap {
110
110
 
111
111
  "sap/ui/mdc/field/OutParameter": undefined;
112
112
 
113
+ "sap/ui/mdc/field/TokenDisplay": undefined;
114
+
115
+ "sap/ui/mdc/field/TokenizerDisplay": undefined;
116
+
113
117
  "sap/ui/mdc/field/ValueHelpPanel": undefined;
114
118
 
115
119
  "sap/ui/mdc/FilterBar": undefined;
@@ -142,21 +146,15 @@ declare namespace sap {
142
146
 
143
147
  "sap/ui/mdc/odata/v4/FieldValueHelpDelegate": undefined;
144
148
 
145
- "sap/ui/mdc/p13n/AdaptationProvider": undefined;
149
+ "sap/ui/mdc/odata/v4/TableDelegate": undefined;
146
150
 
147
- "sap/ui/mdc/p13n/DefaultProviderRegistry": undefined;
151
+ "sap/ui/mdc/p13n/AdaptationProvider": undefined;
148
152
 
149
153
  "sap/ui/mdc/p13n/Engine": undefined;
150
154
 
151
155
  "sap/ui/mdc/p13n/modification/ModificationHandler": undefined;
152
156
 
153
- "sap/ui/mdc/p13n/panels/GroupPanel": undefined;
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;
157
+ "sap/ui/mdc/p13n/modules/DefaultProviderRegistry": undefined;
160
158
 
161
159
  "sap/ui/mdc/p13n/StateUtil": undefined;
162
160
 
@@ -164,12 +162,32 @@ declare namespace sap {
164
162
 
165
163
  "sap/ui/mdc/p13n/UIManager": undefined;
166
164
 
165
+ "sap/ui/mdc/Table": undefined;
166
+
167
+ "sap/ui/mdc/table/Column": undefined;
168
+
169
+ "sap/ui/mdc/table/CreationRow": undefined;
170
+
171
+ "sap/ui/mdc/table/GridTableType": undefined;
172
+
173
+ "sap/ui/mdc/table/PropertyHelper": undefined;
174
+
175
+ "sap/ui/mdc/table/ResponsiveTableType": undefined;
176
+
177
+ "sap/ui/mdc/table/RowSettings": undefined;
178
+
179
+ "sap/ui/mdc/table/TableTypeBase": undefined;
180
+
181
+ "sap/ui/mdc/TableDelegate": undefined;
182
+
167
183
  "sap/ui/mdc/util/DateUtil": undefined;
168
184
 
169
185
  "sap/ui/mdc/util/FilterUtil": undefined;
170
186
 
171
187
  "sap/ui/mdc/util/PromiseCache": undefined;
172
188
 
189
+ "sap/ui/mdc/util/PropertyHelper": undefined;
190
+
173
191
  "sap/ui/mdc/util/TypeUtil": undefined;
174
192
 
175
193
  "sap/ui/mdc/ValueHelp": undefined;
@@ -190,6 +208,8 @@ declare namespace sap {
190
208
 
191
209
  "sap/ui/mdc/valuehelp/content/FixedList": undefined;
192
210
 
211
+ "sap/ui/mdc/valuehelp/content/MDCTable": undefined;
212
+
193
213
  "sap/ui/mdc/valuehelp/content/MTable": undefined;
194
214
 
195
215
  "sap/ui/mdc/valuehelp/Dialog": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.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 from where UI adaptation should be started
18
+ * Control instance to get the AppComponent. This then is used to start UI adaptation.
19
19
  */
20
- rootControl: sap.ui.core.Element | sap.ui.core.UIComponent;
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 from where key user adaptation should be started
69
+ * Control instance to get the AppComponent. This then is used to start UI adaptation.
70
70
  */
71
- rootControl: sap.ui.core.Element | sap.ui.core.UIComponent;
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
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.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.96.5
241
+ * @SINCE 1.99.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.96.5
260
+ * @SINCE 1.99.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.96.5
315
+ * @SINCE 1.99.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.96.5
330
+ * @SINCE 1.99.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.96.5
349
+ * @SINCE 1.99.0
350
350
  *
351
351
  * Contains the available system presets.
352
352
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.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 "setSelctionInterval" or for a single entry use "setSelectedIndex".
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 "setSelctionInterval" or for a single entry use "setSelectedIndex".
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.96.5
1
+ // For Library Version: 1.99.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.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
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.5
1
+ // For Library Version: 1.99.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {