@sapui5/ts-types 1.101.1 → 1.102.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 -0
- package/types/sap.apf.d.ts +89 -1
- package/types/sap.ca.ui.d.ts +1747 -124
- package/types/sap.chart.d.ts +375 -29
- package/types/sap.collaboration.d.ts +320 -40
- package/types/sap.esh.search.ui.d.ts +1 -669
- package/types/sap.f.d.ts +1785 -100
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +70 -2
- package/types/sap.fe.macros.d.ts +78 -34
- package/types/sap.fe.navigation.d.ts +144 -4
- package/types/sap.fe.templates.d.ts +26 -5
- package/types/sap.fe.test.d.ts +497 -2
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +7203 -502
- package/types/sap.insights.d.ts +80 -0
- package/types/sap.landvisz.d.ts +1015 -66
- package/types/sap.m.d.ts +16491 -1149
- package/types/sap.makit.d.ts +575 -54
- package/types/sap.me.d.ts +578 -51
- package/types/sap.ndc.d.ts +63 -5
- package/types/sap.ovp.d.ts +5 -6
- package/types/sap.rules.ui.d.ts +171 -15
- package/types/sap.sac.df.d.ts +1430 -215
- package/types/sap.sac.grid.d.ts +91 -8
- package/types/sap.suite.ui.commons.d.ts +5515 -396
- package/types/sap.suite.ui.generic.template.d.ts +157 -69
- package/types/sap.suite.ui.microchart.d.ts +1801 -160
- package/types/sap.tnt.d.ts +279 -19
- package/types/sap.ui.codeeditor.d.ts +89 -8
- package/types/sap.ui.commons.d.ts +3784 -313
- package/types/sap.ui.comp.d.ts +3853 -276
- package/types/sap.ui.core.d.ts +6248 -313
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +61 -6
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +238 -64
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +316 -23
- package/types/sap.ui.layout.d.ts +1851 -199
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +340 -49
- package/types/sap.ui.rta.d.ts +5 -1
- package/types/sap.ui.suite.d.ts +87 -6
- package/types/sap.ui.support.d.ts +30 -1
- package/types/sap.ui.table.d.ts +1050 -80
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +2704 -202
- package/types/sap.ui.ux3.d.ts +2379 -181
- package/types/sap.ui.vbm.d.ts +2002 -197
- package/types/sap.ui.vk.d.ts +5353 -310
- package/types/sap.ui.vtm.d.ts +1130 -41
- package/types/sap.uiext.inbox.d.ts +423 -22
- package/types/sap.ushell.d.ts +1488 -49
- package/types/sap.ushell_abap.d.ts +4 -1
- package/types/sap.uxap.d.ts +902 -87
- package/types/sap.viz.d.ts +5514 -380
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +165 -20
- package/types/sap.zen.crosstab.d.ts +217 -21
- package/types/sap.zen.dsh.d.ts +227 -14
package/types/sap.me.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.102.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -11,48 +11,75 @@ declare namespace sap {
|
|
|
11
11
|
/**
|
|
12
12
|
* visibility of the control
|
|
13
13
|
*/
|
|
14
|
-
visible?:
|
|
14
|
+
visible?:
|
|
15
|
+
| boolean
|
|
16
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
17
|
+
| `{${string}}`;
|
|
15
18
|
|
|
16
19
|
/**
|
|
17
20
|
* hides the area of navigation controls
|
|
18
21
|
*/
|
|
19
|
-
hideNavControls?:
|
|
22
|
+
hideNavControls?:
|
|
23
|
+
| boolean
|
|
24
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
25
|
+
| `{${string}}`;
|
|
20
26
|
|
|
21
27
|
/**
|
|
22
28
|
* hides the area of month titles
|
|
23
29
|
*/
|
|
24
|
-
hideMonthTitles?:
|
|
30
|
+
hideMonthTitles?:
|
|
31
|
+
| boolean
|
|
32
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
33
|
+
| `{${string}}`;
|
|
25
34
|
|
|
26
35
|
/**
|
|
27
36
|
* months to display in a row. This sets the width of the whole control in order to contain the desired
|
|
28
37
|
* number of months per row
|
|
29
38
|
*/
|
|
30
|
-
monthsPerRow?:
|
|
39
|
+
monthsPerRow?:
|
|
40
|
+
| int
|
|
41
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
42
|
+
| `{${string}}`;
|
|
31
43
|
|
|
32
44
|
/**
|
|
33
45
|
* the width of a day
|
|
34
46
|
*/
|
|
35
|
-
dayWidth?:
|
|
47
|
+
dayWidth?:
|
|
48
|
+
| int
|
|
49
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
50
|
+
| `{${string}}`;
|
|
36
51
|
|
|
37
52
|
/**
|
|
38
53
|
* the height of a day
|
|
39
54
|
*/
|
|
40
|
-
dayHeight?:
|
|
55
|
+
dayHeight?:
|
|
56
|
+
| int
|
|
57
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
58
|
+
| `{${string}}`;
|
|
41
59
|
|
|
42
60
|
/**
|
|
43
61
|
* weeks to display in a row
|
|
44
62
|
*/
|
|
45
|
-
weeksPerRow?:
|
|
63
|
+
weeksPerRow?:
|
|
64
|
+
| int
|
|
65
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
66
|
+
| `{${string}}`;
|
|
46
67
|
|
|
47
68
|
/**
|
|
48
69
|
* boolean that sets the view to week mode or month mode
|
|
49
70
|
*/
|
|
50
|
-
singleRow?:
|
|
71
|
+
singleRow?:
|
|
72
|
+
| boolean
|
|
73
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
74
|
+
| `{${string}}`;
|
|
51
75
|
|
|
52
76
|
/**
|
|
53
77
|
* number of months in a row.
|
|
54
78
|
*/
|
|
55
|
-
monthsToDisplay?:
|
|
79
|
+
monthsToDisplay?:
|
|
80
|
+
| int
|
|
81
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
82
|
+
| `{${string}}`;
|
|
56
83
|
|
|
57
84
|
/**
|
|
58
85
|
* the center date where the month/week will be built around
|
|
@@ -64,61 +91,83 @@ declare namespace sap {
|
|
|
64
91
|
*/
|
|
65
92
|
enableMultiselection?:
|
|
66
93
|
| boolean
|
|
67
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
94
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
95
|
+
| `{${string}}`;
|
|
68
96
|
|
|
69
97
|
/**
|
|
70
98
|
* to offset the first day of the week (0 = sunday)
|
|
71
99
|
*/
|
|
72
|
-
firstDayOffset?:
|
|
100
|
+
firstDayOffset?:
|
|
101
|
+
| int
|
|
102
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
103
|
+
| `{${string}}`;
|
|
73
104
|
|
|
74
105
|
/**
|
|
75
106
|
* Array of weekDays (as integers where 0=Sunday, 1=Monday etc) to be disabled. Interaction will be disabled
|
|
76
107
|
* for these week days.
|
|
77
108
|
*/
|
|
78
|
-
disabledWeekDays?:
|
|
109
|
+
disabledWeekDays?:
|
|
110
|
+
| any
|
|
111
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
112
|
+
| `{${string}}`;
|
|
79
113
|
|
|
80
114
|
/**
|
|
81
115
|
* Array of specific dates (strings or Date objects) that will be disabled/non interactive
|
|
82
116
|
*/
|
|
83
|
-
disabledDates?:
|
|
117
|
+
disabledDates?:
|
|
118
|
+
| any
|
|
119
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
120
|
+
| `{${string}}`;
|
|
84
121
|
|
|
85
122
|
/**
|
|
86
123
|
* When enabled, swipe gestures will navigate and not select
|
|
87
124
|
*/
|
|
88
|
-
swipeToNavigate?:
|
|
125
|
+
swipeToNavigate?:
|
|
126
|
+
| boolean
|
|
127
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
128
|
+
| `{${string}}`;
|
|
89
129
|
|
|
90
130
|
/**
|
|
91
131
|
* Indicates the design of the calendar (mainly colors)
|
|
92
132
|
*/
|
|
93
133
|
design?:
|
|
94
134
|
| sap.me.CalendarDesign
|
|
95
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
135
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
136
|
+
| `{${string}}`;
|
|
96
137
|
|
|
97
138
|
/**
|
|
98
139
|
* Indicates the design of the calendar (mainly colors)
|
|
99
140
|
*/
|
|
100
141
|
selectionMode?:
|
|
101
142
|
| sap.me.CalendarSelectionMode
|
|
102
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
143
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
144
|
+
| `{${string}}`;
|
|
103
145
|
|
|
104
146
|
/**
|
|
105
147
|
* The width of the calendar
|
|
106
148
|
*/
|
|
107
149
|
width?:
|
|
108
150
|
| sap.ui.core.CSSSize
|
|
109
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
151
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
152
|
+
| `{${string}}`;
|
|
110
153
|
|
|
111
154
|
/**
|
|
112
155
|
* Array of day names, default value is sap.m.getLocaleData().getDays("abbreviated") Check sap.ui.core.LocaleData
|
|
113
156
|
* documentation for more info.
|
|
114
157
|
*/
|
|
115
|
-
days?:
|
|
158
|
+
days?:
|
|
159
|
+
| any
|
|
160
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
161
|
+
| `{${string}}`;
|
|
116
162
|
|
|
117
163
|
/**
|
|
118
164
|
* Array of month names, default value is sap.m.getLocaleData().getMonths("abbreviated") Check sap.ui.core.LocaleData
|
|
119
165
|
* documentation for more info.
|
|
120
166
|
*/
|
|
121
|
-
months?:
|
|
167
|
+
months?:
|
|
168
|
+
| any
|
|
169
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
170
|
+
| `{${string}}`;
|
|
122
171
|
|
|
123
172
|
/**
|
|
124
173
|
* event fired when a date is tapped
|
|
@@ -189,38 +238,50 @@ declare namespace sap {
|
|
|
189
238
|
/**
|
|
190
239
|
* Indicates if the legend can be collapsed and expanded
|
|
191
240
|
*/
|
|
192
|
-
expandable?:
|
|
241
|
+
expandable?:
|
|
242
|
+
| boolean
|
|
243
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
244
|
+
| `{${string}}`;
|
|
193
245
|
|
|
194
246
|
/**
|
|
195
247
|
* Indicates if the legend is expanded or not
|
|
196
248
|
*/
|
|
197
|
-
expanded?:
|
|
249
|
+
expanded?:
|
|
250
|
+
| boolean
|
|
251
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
252
|
+
| `{${string}}`;
|
|
198
253
|
|
|
199
254
|
/**
|
|
200
255
|
* Indicates the whole component width
|
|
201
256
|
*/
|
|
202
257
|
width?:
|
|
203
258
|
| sap.ui.core.CSSSize
|
|
204
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
259
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
260
|
+
| `{${string}}`;
|
|
205
261
|
|
|
206
262
|
/**
|
|
207
263
|
* Indicates the legend items width
|
|
208
264
|
*/
|
|
209
265
|
legendWidth?:
|
|
210
266
|
| sap.ui.core.CSSSize
|
|
211
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
267
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
268
|
+
| `{${string}}`;
|
|
212
269
|
|
|
213
270
|
/**
|
|
214
271
|
* Indicates if the legend is visible
|
|
215
272
|
*/
|
|
216
|
-
visible?:
|
|
273
|
+
visible?:
|
|
274
|
+
| boolean
|
|
275
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
276
|
+
| `{${string}}`;
|
|
217
277
|
|
|
218
278
|
/**
|
|
219
279
|
* design name for the legend
|
|
220
280
|
*/
|
|
221
281
|
design?:
|
|
222
282
|
| sap.me.CalendarDesign
|
|
223
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
283
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
284
|
+
| `{${string}}`;
|
|
224
285
|
}
|
|
225
286
|
|
|
226
287
|
interface $OverlapCalendarSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -232,36 +293,50 @@ declare namespace sap {
|
|
|
232
293
|
/**
|
|
233
294
|
* Number of weeks
|
|
234
295
|
*/
|
|
235
|
-
weeksPerRow?:
|
|
296
|
+
weeksPerRow?:
|
|
297
|
+
| int
|
|
298
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
299
|
+
| `{${string}}`;
|
|
236
300
|
|
|
237
301
|
/**
|
|
238
302
|
* Indicate how to offset the first day in regards to a Sunday (by default)
|
|
239
303
|
*/
|
|
240
|
-
firstDayOffset?:
|
|
304
|
+
firstDayOffset?:
|
|
305
|
+
| int
|
|
306
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
307
|
+
| `{${string}}`;
|
|
241
308
|
|
|
242
309
|
/**
|
|
243
310
|
* Do we want to display the overlap indicator
|
|
244
311
|
*/
|
|
245
312
|
showOverlapIndicator?:
|
|
246
313
|
| boolean
|
|
247
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
314
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
315
|
+
| `{${string}}`;
|
|
248
316
|
|
|
249
317
|
/**
|
|
250
318
|
* Indicates if we should render this component
|
|
251
319
|
*/
|
|
252
|
-
visible?:
|
|
320
|
+
visible?:
|
|
321
|
+
| boolean
|
|
322
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
323
|
+
| `{${string}}`;
|
|
253
324
|
|
|
254
325
|
/**
|
|
255
326
|
* Use swipe gesture to navigate
|
|
256
327
|
*/
|
|
257
|
-
swipeToNavigate?:
|
|
328
|
+
swipeToNavigate?:
|
|
329
|
+
| boolean
|
|
330
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
331
|
+
| `{${string}}`;
|
|
258
332
|
|
|
259
333
|
/**
|
|
260
334
|
* The width of the calendar
|
|
261
335
|
*/
|
|
262
336
|
width?:
|
|
263
337
|
| sap.ui.core.CSSSize
|
|
264
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
338
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
339
|
+
| `{${string}}`;
|
|
265
340
|
|
|
266
341
|
/**
|
|
267
342
|
* The list of events to display in the calendar grid
|
|
@@ -269,7 +344,8 @@ declare namespace sap {
|
|
|
269
344
|
calendarEvents?:
|
|
270
345
|
| sap.me.OverlapCalendarEvent[]
|
|
271
346
|
| sap.me.OverlapCalendarEvent
|
|
272
|
-
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
347
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
348
|
+
| `{${string}}`;
|
|
273
349
|
|
|
274
350
|
/**
|
|
275
351
|
* Indicates that we have reach the last week with data
|
|
@@ -297,7 +373,10 @@ declare namespace sap {
|
|
|
297
373
|
/**
|
|
298
374
|
* Indicates if this elements is relevant to be consider in the overlap
|
|
299
375
|
*/
|
|
300
|
-
relevant?:
|
|
376
|
+
relevant?:
|
|
377
|
+
| boolean
|
|
378
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
379
|
+
| `{${string}}`;
|
|
301
380
|
|
|
302
381
|
/**
|
|
303
382
|
* Type of the event. Display in the second label (no overlap)
|
|
@@ -312,12 +391,15 @@ declare namespace sap {
|
|
|
312
391
|
/**
|
|
313
392
|
* Is this half a day
|
|
314
393
|
*/
|
|
315
|
-
halfDay?:
|
|
394
|
+
halfDay?:
|
|
395
|
+
| boolean
|
|
396
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
397
|
+
| `{${string}}`;
|
|
316
398
|
|
|
317
399
|
/**
|
|
318
400
|
* Id of the row on which to place this event
|
|
319
401
|
*/
|
|
320
|
-
row?: int | sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
402
|
+
row?: int | sap.ui.base.ManagedObject.PropertyBindingInfo | `{${string}}`;
|
|
321
403
|
|
|
322
404
|
/**
|
|
323
405
|
* Name of the row
|
|
@@ -329,12 +411,18 @@ declare namespace sap {
|
|
|
329
411
|
/**
|
|
330
412
|
* Invisible controls are not rendered
|
|
331
413
|
*/
|
|
332
|
-
visible?:
|
|
414
|
+
visible?:
|
|
415
|
+
| boolean
|
|
416
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
417
|
+
| `{${string}}`;
|
|
333
418
|
|
|
334
419
|
/**
|
|
335
420
|
* Switches enabled state of the control. Disabled fields have different colors, and cannot be focused.
|
|
336
421
|
*/
|
|
337
|
-
enabled?:
|
|
422
|
+
enabled?:
|
|
423
|
+
| boolean
|
|
424
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
425
|
+
| `{${string}}`;
|
|
338
426
|
|
|
339
427
|
/**
|
|
340
428
|
* The color of the bar. Enumeration sap.ui.core.BarColor provides CRITICAL (yellow), NEGATIVE (red), POSITIVE
|
|
@@ -342,7 +430,8 @@ declare namespace sap {
|
|
|
342
430
|
*/
|
|
343
431
|
barColor?:
|
|
344
432
|
| sap.ui.core.BarColor
|
|
345
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
433
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
434
|
+
| `{${string}}`;
|
|
346
435
|
|
|
347
436
|
/**
|
|
348
437
|
* The text value to be displayed in the bar.
|
|
@@ -352,61 +441,92 @@ declare namespace sap {
|
|
|
352
441
|
/**
|
|
353
442
|
* The numerical value for the displayed length of the progress bar.
|
|
354
443
|
*/
|
|
355
|
-
percentValue?:
|
|
444
|
+
percentValue?:
|
|
445
|
+
| int
|
|
446
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
447
|
+
| `{${string}}`;
|
|
356
448
|
|
|
357
449
|
/**
|
|
358
450
|
* Specifies whether the current value shall be rendered inside the bar.
|
|
359
451
|
*/
|
|
360
|
-
showValue?:
|
|
452
|
+
showValue?:
|
|
453
|
+
| boolean
|
|
454
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
455
|
+
| `{${string}}`;
|
|
361
456
|
|
|
362
457
|
/**
|
|
363
458
|
* The width of the control.
|
|
364
459
|
*/
|
|
365
460
|
width?:
|
|
366
461
|
| sap.ui.core.CSSSize
|
|
367
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
462
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
463
|
+
| `{${string}}`;
|
|
368
464
|
}
|
|
369
465
|
|
|
370
466
|
interface $TabContainerSettings extends sap.ui.core.$ControlSettings {
|
|
371
467
|
/**
|
|
372
468
|
* Return the index of the selected tab
|
|
373
469
|
*/
|
|
374
|
-
selectedTab?:
|
|
470
|
+
selectedTab?:
|
|
471
|
+
| int
|
|
472
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
473
|
+
| `{${string}}`;
|
|
375
474
|
|
|
376
475
|
/**
|
|
377
476
|
* The number to display in the badge for the info tab
|
|
378
477
|
*/
|
|
379
|
-
badgeInfo?:
|
|
478
|
+
badgeInfo?:
|
|
479
|
+
| int
|
|
480
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
481
|
+
| `{${string}}`;
|
|
380
482
|
|
|
381
483
|
/**
|
|
382
484
|
* The number to display in the badge for the notes tab
|
|
383
485
|
*/
|
|
384
|
-
badgeNotes?:
|
|
486
|
+
badgeNotes?:
|
|
487
|
+
| int
|
|
488
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
489
|
+
| `{${string}}`;
|
|
385
490
|
|
|
386
491
|
/**
|
|
387
492
|
* The number to display in the badge for the attachments tab
|
|
388
493
|
*/
|
|
389
|
-
badgeAttachments?:
|
|
494
|
+
badgeAttachments?:
|
|
495
|
+
| int
|
|
496
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
497
|
+
| `{${string}}`;
|
|
390
498
|
|
|
391
499
|
/**
|
|
392
500
|
* The number to display in the badge for the people tab
|
|
393
501
|
*/
|
|
394
|
-
badgePeople?:
|
|
502
|
+
badgePeople?:
|
|
503
|
+
| int
|
|
504
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
505
|
+
| `{${string}}`;
|
|
395
506
|
|
|
396
507
|
/**
|
|
397
508
|
* Indicates if the tab can be collapsed and expanded
|
|
398
509
|
*/
|
|
399
|
-
expandable?:
|
|
510
|
+
expandable?:
|
|
511
|
+
| boolean
|
|
512
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
513
|
+
| `{${string}}`;
|
|
400
514
|
|
|
401
515
|
/**
|
|
402
516
|
* Indicates if the actual tab is expanded or not
|
|
403
517
|
*/
|
|
404
|
-
expanded?:
|
|
518
|
+
expanded?:
|
|
519
|
+
| boolean
|
|
520
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
521
|
+
| `{${string}}`;
|
|
405
522
|
|
|
406
523
|
/**
|
|
407
524
|
* setter for visible property
|
|
408
525
|
*/
|
|
409
|
-
visible?:
|
|
526
|
+
visible?:
|
|
527
|
+
| boolean
|
|
528
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
529
|
+
| `{${string}}`;
|
|
410
530
|
|
|
411
531
|
/**
|
|
412
532
|
* The info tab
|
|
@@ -487,6 +607,8 @@ declare namespace sap {
|
|
|
487
607
|
* contained in `oClassInfo`.
|
|
488
608
|
*
|
|
489
609
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
610
|
+
*
|
|
611
|
+
* @returns Created class / constructor function
|
|
490
612
|
*/
|
|
491
613
|
static extend<T extends Record<string, unknown>>(
|
|
492
614
|
/**
|
|
@@ -505,12 +627,16 @@ declare namespace sap {
|
|
|
505
627
|
): Function;
|
|
506
628
|
/**
|
|
507
629
|
* Returns a metadata object for class sap.me.Calendar.
|
|
630
|
+
*
|
|
631
|
+
* @returns Metadata object describing this class
|
|
508
632
|
*/
|
|
509
633
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
510
634
|
/**
|
|
511
635
|
* Helper function to instantiate a Date from the string(s) provided by the getCurrentDate, getSelectedDates
|
|
512
636
|
* methods. IMPORTANT: The only valid values for the created Date are: year, month, day. Disregard
|
|
513
637
|
* any other value: hours, minutes, seconds, milliseconds...
|
|
638
|
+
*
|
|
639
|
+
* @returns The Date, parsed from the input string.
|
|
514
640
|
*/
|
|
515
641
|
static parseDate(
|
|
516
642
|
/**
|
|
@@ -526,6 +652,8 @@ declare namespace sap {
|
|
|
526
652
|
* otherwise it will be bound to this `sap.me.Calendar` itself.
|
|
527
653
|
*
|
|
528
654
|
* event fired when tap to next or previous button and currentDate is updated
|
|
655
|
+
*
|
|
656
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
529
657
|
*/
|
|
530
658
|
attachChangeCurrentDate(
|
|
531
659
|
/**
|
|
@@ -550,6 +678,8 @@ declare namespace sap {
|
|
|
550
678
|
* otherwise it will be bound to this `sap.me.Calendar` itself.
|
|
551
679
|
*
|
|
552
680
|
* event fired when tap to next or previous button and currentDate is updated
|
|
681
|
+
*
|
|
682
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
553
683
|
*/
|
|
554
684
|
attachChangeCurrentDate(
|
|
555
685
|
/**
|
|
@@ -568,6 +698,8 @@ declare namespace sap {
|
|
|
568
698
|
* otherwise it will be bound to this `sap.me.Calendar` itself.
|
|
569
699
|
*
|
|
570
700
|
* when the range of selected dates changes
|
|
701
|
+
*
|
|
702
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
571
703
|
*/
|
|
572
704
|
attachChangeRange(
|
|
573
705
|
/**
|
|
@@ -591,6 +723,8 @@ declare namespace sap {
|
|
|
591
723
|
* otherwise it will be bound to this `sap.me.Calendar` itself.
|
|
592
724
|
*
|
|
593
725
|
* when the range of selected dates changes
|
|
726
|
+
*
|
|
727
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
594
728
|
*/
|
|
595
729
|
attachChangeRange(
|
|
596
730
|
/**
|
|
@@ -609,6 +743,8 @@ declare namespace sap {
|
|
|
609
743
|
* otherwise it will be bound to this `sap.me.Calendar` itself.
|
|
610
744
|
*
|
|
611
745
|
* event fired when a date is tapped
|
|
746
|
+
*
|
|
747
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
612
748
|
*/
|
|
613
749
|
attachTapOnDate(
|
|
614
750
|
/**
|
|
@@ -632,6 +768,8 @@ declare namespace sap {
|
|
|
632
768
|
* otherwise it will be bound to this `sap.me.Calendar` itself.
|
|
633
769
|
*
|
|
634
770
|
* event fired when a date is tapped
|
|
771
|
+
*
|
|
772
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
635
773
|
*/
|
|
636
774
|
attachTapOnDate(
|
|
637
775
|
/**
|
|
@@ -648,6 +786,8 @@ declare namespace sap {
|
|
|
648
786
|
* of this `sap.me.Calendar`.
|
|
649
787
|
*
|
|
650
788
|
* The passed function and listener object must match the ones used for event registration.
|
|
789
|
+
*
|
|
790
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
651
791
|
*/
|
|
652
792
|
detachChangeCurrentDate(
|
|
653
793
|
/**
|
|
@@ -663,6 +803,8 @@ declare namespace sap {
|
|
|
663
803
|
* Detaches event handler `fnFunction` from the {@link #event:changeRange changeRange} event of this `sap.me.Calendar`.
|
|
664
804
|
*
|
|
665
805
|
* The passed function and listener object must match the ones used for event registration.
|
|
806
|
+
*
|
|
807
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
666
808
|
*/
|
|
667
809
|
detachChangeRange(
|
|
668
810
|
/**
|
|
@@ -678,6 +820,8 @@ declare namespace sap {
|
|
|
678
820
|
* Detaches event handler `fnFunction` from the {@link #event:tapOnDate tapOnDate} event of this `sap.me.Calendar`.
|
|
679
821
|
*
|
|
680
822
|
* The passed function and listener object must match the ones used for event registration.
|
|
823
|
+
*
|
|
824
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
681
825
|
*/
|
|
682
826
|
detachTapOnDate(
|
|
683
827
|
/**
|
|
@@ -691,6 +835,8 @@ declare namespace sap {
|
|
|
691
835
|
): this;
|
|
692
836
|
/**
|
|
693
837
|
* Fires event {@link #event:changeCurrentDate changeCurrentDate} to attached listeners.
|
|
838
|
+
*
|
|
839
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
694
840
|
*/
|
|
695
841
|
fireChangeCurrentDate(
|
|
696
842
|
/**
|
|
@@ -705,6 +851,8 @@ declare namespace sap {
|
|
|
705
851
|
): this;
|
|
706
852
|
/**
|
|
707
853
|
* Fires event {@link #event:changeRange changeRange} to attached listeners.
|
|
854
|
+
*
|
|
855
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
708
856
|
*/
|
|
709
857
|
fireChangeRange(
|
|
710
858
|
/**
|
|
@@ -723,6 +871,8 @@ declare namespace sap {
|
|
|
723
871
|
): this;
|
|
724
872
|
/**
|
|
725
873
|
* Fires event {@link #event:tapOnDate tapOnDate} to attached listeners.
|
|
874
|
+
*
|
|
875
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
726
876
|
*/
|
|
727
877
|
fireTapOnDate(
|
|
728
878
|
/**
|
|
@@ -743,6 +893,8 @@ declare namespace sap {
|
|
|
743
893
|
* Gets current value of property {@link #getCurrentDate currentDate}.
|
|
744
894
|
*
|
|
745
895
|
* the center date where the month/week will be built around
|
|
896
|
+
*
|
|
897
|
+
* @returns Value of property `currentDate`
|
|
746
898
|
*/
|
|
747
899
|
getCurrentDate(): string;
|
|
748
900
|
/**
|
|
@@ -751,6 +903,8 @@ declare namespace sap {
|
|
|
751
903
|
* the height of a day
|
|
752
904
|
*
|
|
753
905
|
* Default value is `50`.
|
|
906
|
+
*
|
|
907
|
+
* @returns Value of property `dayHeight`
|
|
754
908
|
*/
|
|
755
909
|
getDayHeight(): int;
|
|
756
910
|
/**
|
|
@@ -758,6 +912,8 @@ declare namespace sap {
|
|
|
758
912
|
*
|
|
759
913
|
* Array of day names, default value is sap.m.getLocaleData().getDays("abbreviated") Check sap.ui.core.LocaleData
|
|
760
914
|
* documentation for more info.
|
|
915
|
+
*
|
|
916
|
+
* @returns Value of property `days`
|
|
761
917
|
*/
|
|
762
918
|
getDays(): any;
|
|
763
919
|
/**
|
|
@@ -766,6 +922,8 @@ declare namespace sap {
|
|
|
766
922
|
* the width of a day
|
|
767
923
|
*
|
|
768
924
|
* Default value is `45`.
|
|
925
|
+
*
|
|
926
|
+
* @returns Value of property `dayWidth`
|
|
769
927
|
*/
|
|
770
928
|
getDayWidth(): int;
|
|
771
929
|
/**
|
|
@@ -774,12 +932,16 @@ declare namespace sap {
|
|
|
774
932
|
* Indicates the design of the calendar (mainly colors)
|
|
775
933
|
*
|
|
776
934
|
* Default value is `Approval`.
|
|
935
|
+
*
|
|
936
|
+
* @returns Value of property `design`
|
|
777
937
|
*/
|
|
778
938
|
getDesign(): sap.me.CalendarDesign;
|
|
779
939
|
/**
|
|
780
940
|
* Gets current value of property {@link #getDisabledDates disabledDates}.
|
|
781
941
|
*
|
|
782
942
|
* Array of specific dates (strings or Date objects) that will be disabled/non interactive
|
|
943
|
+
*
|
|
944
|
+
* @returns Value of property `disabledDates`
|
|
783
945
|
*/
|
|
784
946
|
getDisabledDates(): any;
|
|
785
947
|
/**
|
|
@@ -787,6 +949,8 @@ declare namespace sap {
|
|
|
787
949
|
*
|
|
788
950
|
* Array of weekDays (as integers where 0=Sunday, 1=Monday etc) to be disabled. Interaction will be disabled
|
|
789
951
|
* for these week days.
|
|
952
|
+
*
|
|
953
|
+
* @returns Value of property `disabledWeekDays`
|
|
790
954
|
*/
|
|
791
955
|
getDisabledWeekDays(): any;
|
|
792
956
|
/**
|
|
@@ -795,6 +959,8 @@ declare namespace sap {
|
|
|
795
959
|
* to enable multiselection feature
|
|
796
960
|
*
|
|
797
961
|
* Default value is `false`.
|
|
962
|
+
*
|
|
963
|
+
* @returns Value of property `enableMultiselection`
|
|
798
964
|
*/
|
|
799
965
|
getEnableMultiselection(): boolean;
|
|
800
966
|
/**
|
|
@@ -803,6 +969,8 @@ declare namespace sap {
|
|
|
803
969
|
* to offset the first day of the week (0 = sunday)
|
|
804
970
|
*
|
|
805
971
|
* Default value is `0`.
|
|
972
|
+
*
|
|
973
|
+
* @returns Value of property `firstDayOffset`
|
|
806
974
|
*/
|
|
807
975
|
getFirstDayOffset(): int;
|
|
808
976
|
/**
|
|
@@ -811,6 +979,8 @@ declare namespace sap {
|
|
|
811
979
|
* hides the area of month titles
|
|
812
980
|
*
|
|
813
981
|
* Default value is `false`.
|
|
982
|
+
*
|
|
983
|
+
* @returns Value of property `hideMonthTitles`
|
|
814
984
|
*/
|
|
815
985
|
getHideMonthTitles(): boolean;
|
|
816
986
|
/**
|
|
@@ -819,6 +989,8 @@ declare namespace sap {
|
|
|
819
989
|
* hides the area of navigation controls
|
|
820
990
|
*
|
|
821
991
|
* Default value is `false`.
|
|
992
|
+
*
|
|
993
|
+
* @returns Value of property `hideNavControls`
|
|
822
994
|
*/
|
|
823
995
|
getHideNavControls(): boolean;
|
|
824
996
|
/**
|
|
@@ -826,6 +998,8 @@ declare namespace sap {
|
|
|
826
998
|
*
|
|
827
999
|
* Array of month names, default value is sap.m.getLocaleData().getMonths("abbreviated") Check sap.ui.core.LocaleData
|
|
828
1000
|
* documentation for more info.
|
|
1001
|
+
*
|
|
1002
|
+
* @returns Value of property `months`
|
|
829
1003
|
*/
|
|
830
1004
|
getMonths(): any;
|
|
831
1005
|
/**
|
|
@@ -835,6 +1009,8 @@ declare namespace sap {
|
|
|
835
1009
|
* number of months per row
|
|
836
1010
|
*
|
|
837
1011
|
* Default value is `1`.
|
|
1012
|
+
*
|
|
1013
|
+
* @returns Value of property `monthsPerRow`
|
|
838
1014
|
*/
|
|
839
1015
|
getMonthsPerRow(): int;
|
|
840
1016
|
/**
|
|
@@ -843,6 +1019,8 @@ declare namespace sap {
|
|
|
843
1019
|
* number of months in a row.
|
|
844
1020
|
*
|
|
845
1021
|
* Default value is `1`.
|
|
1022
|
+
*
|
|
1023
|
+
* @returns Value of property `monthsToDisplay`
|
|
846
1024
|
*/
|
|
847
1025
|
getMonthsToDisplay(): int;
|
|
848
1026
|
/**
|
|
@@ -855,12 +1033,16 @@ declare namespace sap {
|
|
|
855
1033
|
* Indicates the design of the calendar (mainly colors)
|
|
856
1034
|
*
|
|
857
1035
|
* Default value is `SINGLE`.
|
|
1036
|
+
*
|
|
1037
|
+
* @returns Value of property `selectionMode`
|
|
858
1038
|
*/
|
|
859
1039
|
getSelectionMode(): sap.me.CalendarSelectionMode;
|
|
860
1040
|
/**
|
|
861
1041
|
* Gets current value of property {@link #getSingleRow singleRow}.
|
|
862
1042
|
*
|
|
863
1043
|
* boolean that sets the view to week mode or month mode
|
|
1044
|
+
*
|
|
1045
|
+
* @returns Value of property `singleRow`
|
|
864
1046
|
*/
|
|
865
1047
|
getSingleRow(): boolean;
|
|
866
1048
|
/**
|
|
@@ -869,6 +1051,8 @@ declare namespace sap {
|
|
|
869
1051
|
* When enabled, swipe gestures will navigate and not select
|
|
870
1052
|
*
|
|
871
1053
|
* Default value is `false`.
|
|
1054
|
+
*
|
|
1055
|
+
* @returns Value of property `swipeToNavigate`
|
|
872
1056
|
*/
|
|
873
1057
|
getSwipeToNavigate(): boolean;
|
|
874
1058
|
/**
|
|
@@ -877,6 +1061,8 @@ declare namespace sap {
|
|
|
877
1061
|
* visibility of the control
|
|
878
1062
|
*
|
|
879
1063
|
* Default value is `true`.
|
|
1064
|
+
*
|
|
1065
|
+
* @returns Value of property `visible`
|
|
880
1066
|
*/
|
|
881
1067
|
getVisible(): boolean;
|
|
882
1068
|
/**
|
|
@@ -885,6 +1071,8 @@ declare namespace sap {
|
|
|
885
1071
|
* weeks to display in a row
|
|
886
1072
|
*
|
|
887
1073
|
* Default value is `1`.
|
|
1074
|
+
*
|
|
1075
|
+
* @returns Value of property `weeksPerRow`
|
|
888
1076
|
*/
|
|
889
1077
|
getWeeksPerRow(): int;
|
|
890
1078
|
/**
|
|
@@ -893,10 +1081,14 @@ declare namespace sap {
|
|
|
893
1081
|
* The width of the calendar
|
|
894
1082
|
*
|
|
895
1083
|
* Default value is `'100%'`.
|
|
1084
|
+
*
|
|
1085
|
+
* @returns Value of property `width`
|
|
896
1086
|
*/
|
|
897
1087
|
getWidth(): sap.ui.core.CSSSize;
|
|
898
1088
|
/**
|
|
899
1089
|
* Sets the current date of the calendar.
|
|
1090
|
+
*
|
|
1091
|
+
* @returns `this` to allow method chaining.
|
|
900
1092
|
*/
|
|
901
1093
|
setCurrentDate(
|
|
902
1094
|
/**
|
|
@@ -912,6 +1104,8 @@ declare namespace sap {
|
|
|
912
1104
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
913
1105
|
*
|
|
914
1106
|
* Default value is `50`.
|
|
1107
|
+
*
|
|
1108
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
915
1109
|
*/
|
|
916
1110
|
setDayHeight(
|
|
917
1111
|
/**
|
|
@@ -926,6 +1120,8 @@ declare namespace sap {
|
|
|
926
1120
|
* documentation for more info.
|
|
927
1121
|
*
|
|
928
1122
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1123
|
+
*
|
|
1124
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
929
1125
|
*/
|
|
930
1126
|
setDays(
|
|
931
1127
|
/**
|
|
@@ -941,6 +1137,8 @@ declare namespace sap {
|
|
|
941
1137
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
942
1138
|
*
|
|
943
1139
|
* Default value is `45`.
|
|
1140
|
+
*
|
|
1141
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
944
1142
|
*/
|
|
945
1143
|
setDayWidth(
|
|
946
1144
|
/**
|
|
@@ -956,6 +1154,8 @@ declare namespace sap {
|
|
|
956
1154
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
957
1155
|
*
|
|
958
1156
|
* Default value is `Approval`.
|
|
1157
|
+
*
|
|
1158
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
959
1159
|
*/
|
|
960
1160
|
setDesign(
|
|
961
1161
|
/**
|
|
@@ -969,6 +1169,8 @@ declare namespace sap {
|
|
|
969
1169
|
* Array of specific dates (strings or Date objects) that will be disabled/non interactive
|
|
970
1170
|
*
|
|
971
1171
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1172
|
+
*
|
|
1173
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
972
1174
|
*/
|
|
973
1175
|
setDisabledDates(
|
|
974
1176
|
/**
|
|
@@ -983,6 +1185,8 @@ declare namespace sap {
|
|
|
983
1185
|
* for these week days.
|
|
984
1186
|
*
|
|
985
1187
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1188
|
+
*
|
|
1189
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
986
1190
|
*/
|
|
987
1191
|
setDisabledWeekDays(
|
|
988
1192
|
/**
|
|
@@ -998,6 +1202,8 @@ declare namespace sap {
|
|
|
998
1202
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
999
1203
|
*
|
|
1000
1204
|
* Default value is `false`.
|
|
1205
|
+
*
|
|
1206
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1001
1207
|
*/
|
|
1002
1208
|
setEnableMultiselection(
|
|
1003
1209
|
/**
|
|
@@ -1013,6 +1219,8 @@ declare namespace sap {
|
|
|
1013
1219
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1014
1220
|
*
|
|
1015
1221
|
* Default value is `0`.
|
|
1222
|
+
*
|
|
1223
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1016
1224
|
*/
|
|
1017
1225
|
setFirstDayOffset(
|
|
1018
1226
|
/**
|
|
@@ -1028,6 +1236,8 @@ declare namespace sap {
|
|
|
1028
1236
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1029
1237
|
*
|
|
1030
1238
|
* Default value is `false`.
|
|
1239
|
+
*
|
|
1240
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1031
1241
|
*/
|
|
1032
1242
|
setHideMonthTitles(
|
|
1033
1243
|
/**
|
|
@@ -1043,6 +1253,8 @@ declare namespace sap {
|
|
|
1043
1253
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1044
1254
|
*
|
|
1045
1255
|
* Default value is `false`.
|
|
1256
|
+
*
|
|
1257
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1046
1258
|
*/
|
|
1047
1259
|
setHideNavControls(
|
|
1048
1260
|
/**
|
|
@@ -1057,6 +1269,8 @@ declare namespace sap {
|
|
|
1057
1269
|
* documentation for more info.
|
|
1058
1270
|
*
|
|
1059
1271
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1272
|
+
*
|
|
1273
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1060
1274
|
*/
|
|
1061
1275
|
setMonths(
|
|
1062
1276
|
/**
|
|
@@ -1073,6 +1287,8 @@ declare namespace sap {
|
|
|
1073
1287
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1074
1288
|
*
|
|
1075
1289
|
* Default value is `1`.
|
|
1290
|
+
*
|
|
1291
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1076
1292
|
*/
|
|
1077
1293
|
setMonthsPerRow(
|
|
1078
1294
|
/**
|
|
@@ -1088,6 +1304,8 @@ declare namespace sap {
|
|
|
1088
1304
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1089
1305
|
*
|
|
1090
1306
|
* Default value is `1`.
|
|
1307
|
+
*
|
|
1308
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1091
1309
|
*/
|
|
1092
1310
|
setMonthsToDisplay(
|
|
1093
1311
|
/**
|
|
@@ -1103,6 +1321,8 @@ declare namespace sap {
|
|
|
1103
1321
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1104
1322
|
*
|
|
1105
1323
|
* Default value is `SINGLE`.
|
|
1324
|
+
*
|
|
1325
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1106
1326
|
*/
|
|
1107
1327
|
setSelectionMode(
|
|
1108
1328
|
/**
|
|
@@ -1116,6 +1336,8 @@ declare namespace sap {
|
|
|
1116
1336
|
* boolean that sets the view to week mode or month mode
|
|
1117
1337
|
*
|
|
1118
1338
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1339
|
+
*
|
|
1340
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1119
1341
|
*/
|
|
1120
1342
|
setSingleRow(
|
|
1121
1343
|
/**
|
|
@@ -1131,6 +1353,8 @@ declare namespace sap {
|
|
|
1131
1353
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1132
1354
|
*
|
|
1133
1355
|
* Default value is `false`.
|
|
1356
|
+
*
|
|
1357
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1134
1358
|
*/
|
|
1135
1359
|
setSwipeToNavigate(
|
|
1136
1360
|
/**
|
|
@@ -1146,6 +1370,8 @@ declare namespace sap {
|
|
|
1146
1370
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1147
1371
|
*
|
|
1148
1372
|
* Default value is `true`.
|
|
1373
|
+
*
|
|
1374
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1149
1375
|
*/
|
|
1150
1376
|
setVisible(
|
|
1151
1377
|
/**
|
|
@@ -1161,6 +1387,8 @@ declare namespace sap {
|
|
|
1161
1387
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1162
1388
|
*
|
|
1163
1389
|
* Default value is `1`.
|
|
1390
|
+
*
|
|
1391
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1164
1392
|
*/
|
|
1165
1393
|
setWeeksPerRow(
|
|
1166
1394
|
/**
|
|
@@ -1176,6 +1404,8 @@ declare namespace sap {
|
|
|
1176
1404
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1177
1405
|
*
|
|
1178
1406
|
* Default value is `'100%'`.
|
|
1407
|
+
*
|
|
1408
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1179
1409
|
*/
|
|
1180
1410
|
setWidth(
|
|
1181
1411
|
/**
|
|
@@ -1278,6 +1508,8 @@ declare namespace sap {
|
|
|
1278
1508
|
* information contained in `oClassInfo`.
|
|
1279
1509
|
*
|
|
1280
1510
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1511
|
+
*
|
|
1512
|
+
* @returns Created class / constructor function
|
|
1281
1513
|
*/
|
|
1282
1514
|
static extend<T extends Record<string, unknown>>(
|
|
1283
1515
|
/**
|
|
@@ -1296,6 +1528,8 @@ declare namespace sap {
|
|
|
1296
1528
|
): Function;
|
|
1297
1529
|
/**
|
|
1298
1530
|
* Returns a metadata object for class sap.me.CalendarLegend.
|
|
1531
|
+
*
|
|
1532
|
+
* @returns Metadata object describing this class
|
|
1299
1533
|
*/
|
|
1300
1534
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1301
1535
|
/**
|
|
@@ -1304,6 +1538,8 @@ declare namespace sap {
|
|
|
1304
1538
|
* design name for the legend
|
|
1305
1539
|
*
|
|
1306
1540
|
* Default value is `Approval`.
|
|
1541
|
+
*
|
|
1542
|
+
* @returns Value of property `design`
|
|
1307
1543
|
*/
|
|
1308
1544
|
getDesign(): sap.me.CalendarDesign;
|
|
1309
1545
|
/**
|
|
@@ -1312,6 +1548,8 @@ declare namespace sap {
|
|
|
1312
1548
|
* Indicates if the legend can be collapsed and expanded
|
|
1313
1549
|
*
|
|
1314
1550
|
* Default value is `true`.
|
|
1551
|
+
*
|
|
1552
|
+
* @returns Value of property `expandable`
|
|
1315
1553
|
*/
|
|
1316
1554
|
getExpandable(): boolean;
|
|
1317
1555
|
/**
|
|
@@ -1320,60 +1558,80 @@ declare namespace sap {
|
|
|
1320
1558
|
* Indicates if the legend is expanded or not
|
|
1321
1559
|
*
|
|
1322
1560
|
* Default value is `true`.
|
|
1561
|
+
*
|
|
1562
|
+
* @returns Value of property `expanded`
|
|
1323
1563
|
*/
|
|
1324
1564
|
getExpanded(): boolean;
|
|
1325
1565
|
/**
|
|
1326
1566
|
* Gets current value of property {@link #getLegendForNormal legendForNormal}.
|
|
1327
1567
|
*
|
|
1328
1568
|
* legend for normal
|
|
1569
|
+
*
|
|
1570
|
+
* @returns Value of property `legendForNormal`
|
|
1329
1571
|
*/
|
|
1330
1572
|
getLegendForNormal(): string;
|
|
1331
1573
|
/**
|
|
1332
1574
|
* Gets current value of property {@link #getLegendForSelected legendForSelected}.
|
|
1333
1575
|
*
|
|
1334
1576
|
* legend for selected
|
|
1577
|
+
*
|
|
1578
|
+
* @returns Value of property `legendForSelected`
|
|
1335
1579
|
*/
|
|
1336
1580
|
getLegendForSelected(): string;
|
|
1337
1581
|
/**
|
|
1338
1582
|
* Gets current value of property {@link #getLegendForSelected00 legendForSelected00}.
|
|
1339
1583
|
*
|
|
1340
1584
|
* legend for selected 00
|
|
1585
|
+
*
|
|
1586
|
+
* @returns Value of property `legendForSelected00`
|
|
1341
1587
|
*/
|
|
1342
1588
|
getLegendForSelected00(): string;
|
|
1343
1589
|
/**
|
|
1344
1590
|
* Gets current value of property {@link #getLegendForToday legendForToday}.
|
|
1345
1591
|
*
|
|
1346
1592
|
* legend for today
|
|
1593
|
+
*
|
|
1594
|
+
* @returns Value of property `legendForToday`
|
|
1347
1595
|
*/
|
|
1348
1596
|
getLegendForToday(): string;
|
|
1349
1597
|
/**
|
|
1350
1598
|
* Gets current value of property {@link #getLegendForType00 legendForType00}.
|
|
1351
1599
|
*
|
|
1352
1600
|
* legend for type 00
|
|
1601
|
+
*
|
|
1602
|
+
* @returns Value of property `legendForType00`
|
|
1353
1603
|
*/
|
|
1354
1604
|
getLegendForType00(): string;
|
|
1355
1605
|
/**
|
|
1356
1606
|
* Gets current value of property {@link #getLegendForType01 legendForType01}.
|
|
1357
1607
|
*
|
|
1358
1608
|
* legend for type 01
|
|
1609
|
+
*
|
|
1610
|
+
* @returns Value of property `legendForType01`
|
|
1359
1611
|
*/
|
|
1360
1612
|
getLegendForType01(): string;
|
|
1361
1613
|
/**
|
|
1362
1614
|
* Gets current value of property {@link #getLegendForType04 legendForType04}.
|
|
1363
1615
|
*
|
|
1364
1616
|
* legend for type 04
|
|
1617
|
+
*
|
|
1618
|
+
* @returns Value of property `legendForType04`
|
|
1365
1619
|
*/
|
|
1366
1620
|
getLegendForType04(): string;
|
|
1367
1621
|
/**
|
|
1368
1622
|
* Gets current value of property {@link #getLegendForType06 legendForType06}.
|
|
1369
1623
|
*
|
|
1370
1624
|
* legend for type 06
|
|
1625
|
+
*
|
|
1626
|
+
* @returns Value of property `legendForType06`
|
|
1371
1627
|
*/
|
|
1372
1628
|
getLegendForType06(): string;
|
|
1373
1629
|
/**
|
|
1374
1630
|
* Gets current value of property {@link #getLegendForType07 legendForType07}.
|
|
1375
1631
|
*
|
|
1376
1632
|
* legend for type 07
|
|
1633
|
+
*
|
|
1634
|
+
* @returns Value of property `legendForType07`
|
|
1377
1635
|
*/
|
|
1378
1636
|
getLegendForType07(): string;
|
|
1379
1637
|
/**
|
|
@@ -1382,6 +1640,8 @@ declare namespace sap {
|
|
|
1382
1640
|
* Indicates the legend items width
|
|
1383
1641
|
*
|
|
1384
1642
|
* Default value is `'12.5rem'`.
|
|
1643
|
+
*
|
|
1644
|
+
* @returns Value of property `legendWidth`
|
|
1385
1645
|
*/
|
|
1386
1646
|
getLegendWidth(): sap.ui.core.CSSSize;
|
|
1387
1647
|
/**
|
|
@@ -1390,6 +1650,8 @@ declare namespace sap {
|
|
|
1390
1650
|
* Indicates if the legend is visible
|
|
1391
1651
|
*
|
|
1392
1652
|
* Default value is `true`.
|
|
1653
|
+
*
|
|
1654
|
+
* @returns Value of property `visible`
|
|
1393
1655
|
*/
|
|
1394
1656
|
getVisible(): boolean;
|
|
1395
1657
|
/**
|
|
@@ -1398,6 +1660,8 @@ declare namespace sap {
|
|
|
1398
1660
|
* Indicates the whole component width
|
|
1399
1661
|
*
|
|
1400
1662
|
* Default value is `'auto'`.
|
|
1663
|
+
*
|
|
1664
|
+
* @returns Value of property `width`
|
|
1401
1665
|
*/
|
|
1402
1666
|
getWidth(): sap.ui.core.CSSSize;
|
|
1403
1667
|
/**
|
|
@@ -1408,6 +1672,8 @@ declare namespace sap {
|
|
|
1408
1672
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1409
1673
|
*
|
|
1410
1674
|
* Default value is `Approval`.
|
|
1675
|
+
*
|
|
1676
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1411
1677
|
*/
|
|
1412
1678
|
setDesign(
|
|
1413
1679
|
/**
|
|
@@ -1423,6 +1689,8 @@ declare namespace sap {
|
|
|
1423
1689
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1424
1690
|
*
|
|
1425
1691
|
* Default value is `true`.
|
|
1692
|
+
*
|
|
1693
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1426
1694
|
*/
|
|
1427
1695
|
setExpandable(
|
|
1428
1696
|
/**
|
|
@@ -1438,6 +1706,8 @@ declare namespace sap {
|
|
|
1438
1706
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1439
1707
|
*
|
|
1440
1708
|
* Default value is `true`.
|
|
1709
|
+
*
|
|
1710
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1441
1711
|
*/
|
|
1442
1712
|
setExpanded(
|
|
1443
1713
|
/**
|
|
@@ -1451,6 +1721,8 @@ declare namespace sap {
|
|
|
1451
1721
|
* legend for normal
|
|
1452
1722
|
*
|
|
1453
1723
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1724
|
+
*
|
|
1725
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1454
1726
|
*/
|
|
1455
1727
|
setLegendForNormal(
|
|
1456
1728
|
/**
|
|
@@ -1464,6 +1736,8 @@ declare namespace sap {
|
|
|
1464
1736
|
* legend for selected
|
|
1465
1737
|
*
|
|
1466
1738
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1739
|
+
*
|
|
1740
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1467
1741
|
*/
|
|
1468
1742
|
setLegendForSelected(
|
|
1469
1743
|
/**
|
|
@@ -1477,6 +1751,8 @@ declare namespace sap {
|
|
|
1477
1751
|
* legend for selected 00
|
|
1478
1752
|
*
|
|
1479
1753
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1754
|
+
*
|
|
1755
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1480
1756
|
*/
|
|
1481
1757
|
setLegendForSelected00(
|
|
1482
1758
|
/**
|
|
@@ -1490,6 +1766,8 @@ declare namespace sap {
|
|
|
1490
1766
|
* legend for today
|
|
1491
1767
|
*
|
|
1492
1768
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1769
|
+
*
|
|
1770
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1493
1771
|
*/
|
|
1494
1772
|
setLegendForToday(
|
|
1495
1773
|
/**
|
|
@@ -1503,6 +1781,8 @@ declare namespace sap {
|
|
|
1503
1781
|
* legend for type 00
|
|
1504
1782
|
*
|
|
1505
1783
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1784
|
+
*
|
|
1785
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1506
1786
|
*/
|
|
1507
1787
|
setLegendForType00(
|
|
1508
1788
|
/**
|
|
@@ -1516,6 +1796,8 @@ declare namespace sap {
|
|
|
1516
1796
|
* legend for type 01
|
|
1517
1797
|
*
|
|
1518
1798
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1799
|
+
*
|
|
1800
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1519
1801
|
*/
|
|
1520
1802
|
setLegendForType01(
|
|
1521
1803
|
/**
|
|
@@ -1529,6 +1811,8 @@ declare namespace sap {
|
|
|
1529
1811
|
* legend for type 04
|
|
1530
1812
|
*
|
|
1531
1813
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1814
|
+
*
|
|
1815
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1532
1816
|
*/
|
|
1533
1817
|
setLegendForType04(
|
|
1534
1818
|
/**
|
|
@@ -1542,6 +1826,8 @@ declare namespace sap {
|
|
|
1542
1826
|
* legend for type 06
|
|
1543
1827
|
*
|
|
1544
1828
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1829
|
+
*
|
|
1830
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1545
1831
|
*/
|
|
1546
1832
|
setLegendForType06(
|
|
1547
1833
|
/**
|
|
@@ -1555,6 +1841,8 @@ declare namespace sap {
|
|
|
1555
1841
|
* legend for type 07
|
|
1556
1842
|
*
|
|
1557
1843
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1844
|
+
*
|
|
1845
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1558
1846
|
*/
|
|
1559
1847
|
setLegendForType07(
|
|
1560
1848
|
/**
|
|
@@ -1570,6 +1858,8 @@ declare namespace sap {
|
|
|
1570
1858
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1571
1859
|
*
|
|
1572
1860
|
* Default value is `'12.5rem'`.
|
|
1861
|
+
*
|
|
1862
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1573
1863
|
*/
|
|
1574
1864
|
setLegendWidth(
|
|
1575
1865
|
/**
|
|
@@ -1585,6 +1875,8 @@ declare namespace sap {
|
|
|
1585
1875
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1586
1876
|
*
|
|
1587
1877
|
* Default value is `true`.
|
|
1878
|
+
*
|
|
1879
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1588
1880
|
*/
|
|
1589
1881
|
setVisible(
|
|
1590
1882
|
/**
|
|
@@ -1600,6 +1892,8 @@ declare namespace sap {
|
|
|
1600
1892
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1601
1893
|
*
|
|
1602
1894
|
* Default value is `'auto'`.
|
|
1895
|
+
*
|
|
1896
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1603
1897
|
*/
|
|
1604
1898
|
setWidth(
|
|
1605
1899
|
/**
|
|
@@ -1651,6 +1945,8 @@ declare namespace sap {
|
|
|
1651
1945
|
* information contained in `oClassInfo`.
|
|
1652
1946
|
*
|
|
1653
1947
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1948
|
+
*
|
|
1949
|
+
* @returns Created class / constructor function
|
|
1654
1950
|
*/
|
|
1655
1951
|
static extend<T extends Record<string, unknown>>(
|
|
1656
1952
|
/**
|
|
@@ -1669,10 +1965,14 @@ declare namespace sap {
|
|
|
1669
1965
|
): Function;
|
|
1670
1966
|
/**
|
|
1671
1967
|
* Returns a metadata object for class sap.me.OverlapCalendar.
|
|
1968
|
+
*
|
|
1969
|
+
* @returns Metadata object describing this class
|
|
1672
1970
|
*/
|
|
1673
1971
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1674
1972
|
/**
|
|
1675
1973
|
* Adds some calendarEvent to the aggregation {@link #getCalendarEvents calendarEvents}.
|
|
1974
|
+
*
|
|
1975
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1676
1976
|
*/
|
|
1677
1977
|
addCalendarEvent(
|
|
1678
1978
|
/**
|
|
@@ -1687,6 +1987,8 @@ declare namespace sap {
|
|
|
1687
1987
|
* otherwise it will be bound to this `sap.me.OverlapCalendar` itself.
|
|
1688
1988
|
*
|
|
1689
1989
|
* Triggered when the displayed dates change
|
|
1990
|
+
*
|
|
1991
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1690
1992
|
*/
|
|
1691
1993
|
attachChangeDate(
|
|
1692
1994
|
/**
|
|
@@ -1710,6 +2012,8 @@ declare namespace sap {
|
|
|
1710
2012
|
* otherwise it will be bound to this `sap.me.OverlapCalendar` itself.
|
|
1711
2013
|
*
|
|
1712
2014
|
* Triggered when the displayed dates change
|
|
2015
|
+
*
|
|
2016
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1713
2017
|
*/
|
|
1714
2018
|
attachChangeDate(
|
|
1715
2019
|
/**
|
|
@@ -1728,6 +2032,8 @@ declare namespace sap {
|
|
|
1728
2032
|
* otherwise it will be bound to this `sap.me.OverlapCalendar` itself.
|
|
1729
2033
|
*
|
|
1730
2034
|
* Indicates that we have reach the last week with data
|
|
2035
|
+
*
|
|
2036
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1731
2037
|
*/
|
|
1732
2038
|
attachEndOfData(
|
|
1733
2039
|
/**
|
|
@@ -1751,6 +2057,8 @@ declare namespace sap {
|
|
|
1751
2057
|
* otherwise it will be bound to this `sap.me.OverlapCalendar` itself.
|
|
1752
2058
|
*
|
|
1753
2059
|
* Indicates that we have reach the last week with data
|
|
2060
|
+
*
|
|
2061
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1754
2062
|
*/
|
|
1755
2063
|
attachEndOfData(
|
|
1756
2064
|
/**
|
|
@@ -1764,12 +2072,16 @@ declare namespace sap {
|
|
|
1764
2072
|
): this;
|
|
1765
2073
|
/**
|
|
1766
2074
|
* Destroys all the calendarEvents in the aggregation {@link #getCalendarEvents calendarEvents}.
|
|
2075
|
+
*
|
|
2076
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1767
2077
|
*/
|
|
1768
2078
|
destroyCalendarEvents(): this;
|
|
1769
2079
|
/**
|
|
1770
2080
|
* Detaches event handler `fnFunction` from the {@link #event:changeDate changeDate} event of this `sap.me.OverlapCalendar`.
|
|
1771
2081
|
*
|
|
1772
2082
|
* The passed function and listener object must match the ones used for event registration.
|
|
2083
|
+
*
|
|
2084
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1773
2085
|
*/
|
|
1774
2086
|
detachChangeDate(
|
|
1775
2087
|
/**
|
|
@@ -1785,6 +2097,8 @@ declare namespace sap {
|
|
|
1785
2097
|
* Detaches event handler `fnFunction` from the {@link #event:endOfData endOfData} event of this `sap.me.OverlapCalendar`.
|
|
1786
2098
|
*
|
|
1787
2099
|
* The passed function and listener object must match the ones used for event registration.
|
|
2100
|
+
*
|
|
2101
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1788
2102
|
*/
|
|
1789
2103
|
detachEndOfData(
|
|
1790
2104
|
/**
|
|
@@ -1798,6 +2112,8 @@ declare namespace sap {
|
|
|
1798
2112
|
): this;
|
|
1799
2113
|
/**
|
|
1800
2114
|
* Fires event {@link #event:changeDate changeDate} to attached listeners.
|
|
2115
|
+
*
|
|
2116
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1801
2117
|
*/
|
|
1802
2118
|
fireChangeDate(
|
|
1803
2119
|
/**
|
|
@@ -1816,6 +2132,8 @@ declare namespace sap {
|
|
|
1816
2132
|
): this;
|
|
1817
2133
|
/**
|
|
1818
2134
|
* Fires event {@link #event:endOfData endOfData} to attached listeners.
|
|
2135
|
+
*
|
|
2136
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1819
2137
|
*/
|
|
1820
2138
|
fireEndOfData(
|
|
1821
2139
|
/**
|
|
@@ -1828,7 +2146,10 @@ declare namespace sap {
|
|
|
1828
2146
|
before?: boolean;
|
|
1829
2147
|
}
|
|
1830
2148
|
): this;
|
|
1831
|
-
|
|
2149
|
+
/**
|
|
2150
|
+
*
|
|
2151
|
+
* @returns The calendar object
|
|
2152
|
+
*/
|
|
1832
2153
|
getCalendar(): sap.me.Calendar;
|
|
1833
2154
|
/**
|
|
1834
2155
|
* Gets content of aggregation {@link #getCalendarEvents calendarEvents}.
|
|
@@ -1842,6 +2163,8 @@ declare namespace sap {
|
|
|
1842
2163
|
* Indicate how to offset the first day in regards to a Sunday (by default)
|
|
1843
2164
|
*
|
|
1844
2165
|
* Default value is `0`.
|
|
2166
|
+
*
|
|
2167
|
+
* @returns Value of property `firstDayOffset`
|
|
1845
2168
|
*/
|
|
1846
2169
|
getFirstDayOffset(): int;
|
|
1847
2170
|
/**
|
|
@@ -1850,12 +2173,16 @@ declare namespace sap {
|
|
|
1850
2173
|
* Do we want to display the overlap indicator
|
|
1851
2174
|
*
|
|
1852
2175
|
* Default value is `false`.
|
|
2176
|
+
*
|
|
2177
|
+
* @returns Value of property `showOverlapIndicator`
|
|
1853
2178
|
*/
|
|
1854
2179
|
getShowOverlapIndicator(): boolean;
|
|
1855
2180
|
/**
|
|
1856
2181
|
* Gets current value of property {@link #getStartDate startDate}.
|
|
1857
2182
|
*
|
|
1858
2183
|
* The first date to display for the calendar
|
|
2184
|
+
*
|
|
2185
|
+
* @returns Value of property `startDate`
|
|
1859
2186
|
*/
|
|
1860
2187
|
getStartDate(): string;
|
|
1861
2188
|
/**
|
|
@@ -1864,6 +2191,8 @@ declare namespace sap {
|
|
|
1864
2191
|
* Use swipe gesture to navigate
|
|
1865
2192
|
*
|
|
1866
2193
|
* Default value is `true`.
|
|
2194
|
+
*
|
|
2195
|
+
* @returns Value of property `swipeToNavigate`
|
|
1867
2196
|
*/
|
|
1868
2197
|
getSwipeToNavigate(): boolean;
|
|
1869
2198
|
/**
|
|
@@ -1872,6 +2201,8 @@ declare namespace sap {
|
|
|
1872
2201
|
* Indicates if we should render this component
|
|
1873
2202
|
*
|
|
1874
2203
|
* Default value is `true`.
|
|
2204
|
+
*
|
|
2205
|
+
* @returns Value of property `visible`
|
|
1875
2206
|
*/
|
|
1876
2207
|
getVisible(): boolean;
|
|
1877
2208
|
/**
|
|
@@ -1880,6 +2211,8 @@ declare namespace sap {
|
|
|
1880
2211
|
* Number of weeks
|
|
1881
2212
|
*
|
|
1882
2213
|
* Default value is `2`.
|
|
2214
|
+
*
|
|
2215
|
+
* @returns Value of property `weeksPerRow`
|
|
1883
2216
|
*/
|
|
1884
2217
|
getWeeksPerRow(): int;
|
|
1885
2218
|
/**
|
|
@@ -1888,11 +2221,15 @@ declare namespace sap {
|
|
|
1888
2221
|
* The width of the calendar
|
|
1889
2222
|
*
|
|
1890
2223
|
* Default value is `'100%'`.
|
|
2224
|
+
*
|
|
2225
|
+
* @returns Value of property `width`
|
|
1891
2226
|
*/
|
|
1892
2227
|
getWidth(): sap.ui.core.CSSSize;
|
|
1893
2228
|
/**
|
|
1894
2229
|
* Checks for the provided `sap.me.OverlapCalendarEvent` in the aggregation {@link #getCalendarEvents calendarEvents}.
|
|
1895
2230
|
* and returns its index if found or -1 otherwise.
|
|
2231
|
+
*
|
|
2232
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
1896
2233
|
*/
|
|
1897
2234
|
indexOfCalendarEvent(
|
|
1898
2235
|
/**
|
|
@@ -1902,6 +2239,8 @@ declare namespace sap {
|
|
|
1902
2239
|
): int;
|
|
1903
2240
|
/**
|
|
1904
2241
|
* Inserts a calendarEvent into the aggregation {@link #getCalendarEvents calendarEvents}.
|
|
2242
|
+
*
|
|
2243
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1905
2244
|
*/
|
|
1906
2245
|
insertCalendarEvent(
|
|
1907
2246
|
/**
|
|
@@ -1927,10 +2266,14 @@ declare namespace sap {
|
|
|
1927
2266
|
* Removes all the controls from the aggregation {@link #getCalendarEvents calendarEvents}.
|
|
1928
2267
|
*
|
|
1929
2268
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
2269
|
+
*
|
|
2270
|
+
* @returns An array of the removed elements (might be empty)
|
|
1930
2271
|
*/
|
|
1931
2272
|
removeAllCalendarEvents(): sap.me.OverlapCalendarEvent[];
|
|
1932
2273
|
/**
|
|
1933
2274
|
* Removes a calendarEvent from the aggregation {@link #getCalendarEvents calendarEvents}.
|
|
2275
|
+
*
|
|
2276
|
+
* @returns The removed calendarEvent or `null`
|
|
1934
2277
|
*/
|
|
1935
2278
|
removeCalendarEvent(
|
|
1936
2279
|
/**
|
|
@@ -1946,6 +2289,8 @@ declare namespace sap {
|
|
|
1946
2289
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1947
2290
|
*
|
|
1948
2291
|
* Default value is `0`.
|
|
2292
|
+
*
|
|
2293
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1949
2294
|
*/
|
|
1950
2295
|
setFirstDayOffset(
|
|
1951
2296
|
/**
|
|
@@ -1961,6 +2306,8 @@ declare namespace sap {
|
|
|
1961
2306
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1962
2307
|
*
|
|
1963
2308
|
* Default value is `false`.
|
|
2309
|
+
*
|
|
2310
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1964
2311
|
*/
|
|
1965
2312
|
setShowOverlapIndicator(
|
|
1966
2313
|
/**
|
|
@@ -1985,6 +2332,8 @@ declare namespace sap {
|
|
|
1985
2332
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1986
2333
|
*
|
|
1987
2334
|
* Default value is `true`.
|
|
2335
|
+
*
|
|
2336
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1988
2337
|
*/
|
|
1989
2338
|
setVisible(
|
|
1990
2339
|
/**
|
|
@@ -2007,6 +2356,8 @@ declare namespace sap {
|
|
|
2007
2356
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2008
2357
|
*
|
|
2009
2358
|
* Default value is `'100%'`.
|
|
2359
|
+
*
|
|
2360
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2010
2361
|
*/
|
|
2011
2362
|
setWidth(
|
|
2012
2363
|
/**
|
|
@@ -2058,6 +2409,8 @@ declare namespace sap {
|
|
|
2058
2409
|
* the information contained in `oClassInfo`.
|
|
2059
2410
|
*
|
|
2060
2411
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
2412
|
+
*
|
|
2413
|
+
* @returns Created class / constructor function
|
|
2061
2414
|
*/
|
|
2062
2415
|
static extend<T extends Record<string, unknown>>(
|
|
2063
2416
|
/**
|
|
@@ -2076,6 +2429,8 @@ declare namespace sap {
|
|
|
2076
2429
|
): Function;
|
|
2077
2430
|
/**
|
|
2078
2431
|
* Returns a metadata object for class sap.me.OverlapCalendarEvent.
|
|
2432
|
+
*
|
|
2433
|
+
* @returns Metadata object describing this class
|
|
2079
2434
|
*/
|
|
2080
2435
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2081
2436
|
/**
|
|
@@ -2083,6 +2438,8 @@ declare namespace sap {
|
|
|
2083
2438
|
*
|
|
2084
2439
|
* See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
|
|
2085
2440
|
* of the possible properties of `oBindingInfo`
|
|
2441
|
+
*
|
|
2442
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2086
2443
|
*/
|
|
2087
2444
|
bindEndDay(
|
|
2088
2445
|
/**
|
|
@@ -2095,6 +2452,8 @@ declare namespace sap {
|
|
|
2095
2452
|
*
|
|
2096
2453
|
* See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
|
|
2097
2454
|
* of the possible properties of `oBindingInfo`
|
|
2455
|
+
*
|
|
2456
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2098
2457
|
*/
|
|
2099
2458
|
bindHalfDay(
|
|
2100
2459
|
/**
|
|
@@ -2107,6 +2466,8 @@ declare namespace sap {
|
|
|
2107
2466
|
*
|
|
2108
2467
|
* See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
|
|
2109
2468
|
* of the possible properties of `oBindingInfo`
|
|
2469
|
+
*
|
|
2470
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2110
2471
|
*/
|
|
2111
2472
|
bindName(
|
|
2112
2473
|
/**
|
|
@@ -2119,6 +2480,8 @@ declare namespace sap {
|
|
|
2119
2480
|
*
|
|
2120
2481
|
* See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
|
|
2121
2482
|
* of the possible properties of `oBindingInfo`
|
|
2483
|
+
*
|
|
2484
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2122
2485
|
*/
|
|
2123
2486
|
bindRelevant(
|
|
2124
2487
|
/**
|
|
@@ -2131,6 +2494,8 @@ declare namespace sap {
|
|
|
2131
2494
|
*
|
|
2132
2495
|
* See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
|
|
2133
2496
|
* of the possible properties of `oBindingInfo`
|
|
2497
|
+
*
|
|
2498
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2134
2499
|
*/
|
|
2135
2500
|
bindRow(
|
|
2136
2501
|
/**
|
|
@@ -2143,6 +2508,8 @@ declare namespace sap {
|
|
|
2143
2508
|
*
|
|
2144
2509
|
* See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
|
|
2145
2510
|
* of the possible properties of `oBindingInfo`
|
|
2511
|
+
*
|
|
2512
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2146
2513
|
*/
|
|
2147
2514
|
bindStartDay(
|
|
2148
2515
|
/**
|
|
@@ -2155,6 +2522,8 @@ declare namespace sap {
|
|
|
2155
2522
|
*
|
|
2156
2523
|
* See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
|
|
2157
2524
|
* of the possible properties of `oBindingInfo`
|
|
2525
|
+
*
|
|
2526
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2158
2527
|
*/
|
|
2159
2528
|
bindType(
|
|
2160
2529
|
/**
|
|
@@ -2167,6 +2536,8 @@ declare namespace sap {
|
|
|
2167
2536
|
*
|
|
2168
2537
|
* See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
|
|
2169
2538
|
* of the possible properties of `oBindingInfo`
|
|
2539
|
+
*
|
|
2540
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2170
2541
|
*/
|
|
2171
2542
|
bindTypeName(
|
|
2172
2543
|
/**
|
|
@@ -2178,6 +2549,8 @@ declare namespace sap {
|
|
|
2178
2549
|
* Gets current value of property {@link #getEndDay endDay}.
|
|
2179
2550
|
*
|
|
2180
2551
|
* Last day of the event
|
|
2552
|
+
*
|
|
2553
|
+
* @returns Value of property `endDay`
|
|
2181
2554
|
*/
|
|
2182
2555
|
getEndDay(): string;
|
|
2183
2556
|
/**
|
|
@@ -2186,18 +2559,24 @@ declare namespace sap {
|
|
|
2186
2559
|
* Is this half a day
|
|
2187
2560
|
*
|
|
2188
2561
|
* Default value is `false`.
|
|
2562
|
+
*
|
|
2563
|
+
* @returns Value of property `halfDay`
|
|
2189
2564
|
*/
|
|
2190
2565
|
getHalfDay(): boolean;
|
|
2191
2566
|
/**
|
|
2192
2567
|
* Gets current value of property {@link #getName name}.
|
|
2193
2568
|
*
|
|
2194
2569
|
* Name of the row
|
|
2570
|
+
*
|
|
2571
|
+
* @returns Value of property `name`
|
|
2195
2572
|
*/
|
|
2196
2573
|
getName(): string;
|
|
2197
2574
|
/**
|
|
2198
2575
|
* Gets current value of property {@link #getRelevant relevant}.
|
|
2199
2576
|
*
|
|
2200
2577
|
* Indicates if this elements is relevant to be consider in the overlap
|
|
2578
|
+
*
|
|
2579
|
+
* @returns Value of property `relevant`
|
|
2201
2580
|
*/
|
|
2202
2581
|
getRelevant(): boolean;
|
|
2203
2582
|
/**
|
|
@@ -2206,24 +2585,32 @@ declare namespace sap {
|
|
|
2206
2585
|
* Id of the row on which to place this event
|
|
2207
2586
|
*
|
|
2208
2587
|
* Default value is `-1`.
|
|
2588
|
+
*
|
|
2589
|
+
* @returns Value of property `row`
|
|
2209
2590
|
*/
|
|
2210
2591
|
getRow(): int;
|
|
2211
2592
|
/**
|
|
2212
2593
|
* Gets current value of property {@link #getStartDay startDay}.
|
|
2213
2594
|
*
|
|
2214
2595
|
* The first day of the event
|
|
2596
|
+
*
|
|
2597
|
+
* @returns Value of property `startDay`
|
|
2215
2598
|
*/
|
|
2216
2599
|
getStartDay(): string;
|
|
2217
2600
|
/**
|
|
2218
2601
|
* Gets current value of property {@link #getType type}.
|
|
2219
2602
|
*
|
|
2220
2603
|
* Type of the event. Display in the second label (no overlap)
|
|
2604
|
+
*
|
|
2605
|
+
* @returns Value of property `type`
|
|
2221
2606
|
*/
|
|
2222
2607
|
getType(): string;
|
|
2223
2608
|
/**
|
|
2224
2609
|
* Gets current value of property {@link #getTypeName typeName}.
|
|
2225
2610
|
*
|
|
2226
2611
|
* The CSS class to use
|
|
2612
|
+
*
|
|
2613
|
+
* @returns Value of property `typeName`
|
|
2227
2614
|
*/
|
|
2228
2615
|
getTypeName(): string;
|
|
2229
2616
|
/**
|
|
@@ -2232,6 +2619,8 @@ declare namespace sap {
|
|
|
2232
2619
|
* Last day of the event
|
|
2233
2620
|
*
|
|
2234
2621
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2622
|
+
*
|
|
2623
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2235
2624
|
*/
|
|
2236
2625
|
setEndDay(
|
|
2237
2626
|
/**
|
|
@@ -2247,6 +2636,8 @@ declare namespace sap {
|
|
|
2247
2636
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2248
2637
|
*
|
|
2249
2638
|
* Default value is `false`.
|
|
2639
|
+
*
|
|
2640
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2250
2641
|
*/
|
|
2251
2642
|
setHalfDay(
|
|
2252
2643
|
/**
|
|
@@ -2260,6 +2651,8 @@ declare namespace sap {
|
|
|
2260
2651
|
* Name of the row
|
|
2261
2652
|
*
|
|
2262
2653
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2654
|
+
*
|
|
2655
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2263
2656
|
*/
|
|
2264
2657
|
setName(
|
|
2265
2658
|
/**
|
|
@@ -2273,6 +2666,8 @@ declare namespace sap {
|
|
|
2273
2666
|
* Indicates if this elements is relevant to be consider in the overlap
|
|
2274
2667
|
*
|
|
2275
2668
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2669
|
+
*
|
|
2670
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2276
2671
|
*/
|
|
2277
2672
|
setRelevant(
|
|
2278
2673
|
/**
|
|
@@ -2288,6 +2683,8 @@ declare namespace sap {
|
|
|
2288
2683
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2289
2684
|
*
|
|
2290
2685
|
* Default value is `-1`.
|
|
2686
|
+
*
|
|
2687
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2291
2688
|
*/
|
|
2292
2689
|
setRow(
|
|
2293
2690
|
/**
|
|
@@ -2301,6 +2698,8 @@ declare namespace sap {
|
|
|
2301
2698
|
* The first day of the event
|
|
2302
2699
|
*
|
|
2303
2700
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2701
|
+
*
|
|
2702
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2304
2703
|
*/
|
|
2305
2704
|
setStartDay(
|
|
2306
2705
|
/**
|
|
@@ -2314,6 +2713,8 @@ declare namespace sap {
|
|
|
2314
2713
|
* Type of the event. Display in the second label (no overlap)
|
|
2315
2714
|
*
|
|
2316
2715
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2716
|
+
*
|
|
2717
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2317
2718
|
*/
|
|
2318
2719
|
setType(
|
|
2319
2720
|
/**
|
|
@@ -2327,6 +2728,8 @@ declare namespace sap {
|
|
|
2327
2728
|
* The CSS class to use
|
|
2328
2729
|
*
|
|
2329
2730
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2731
|
+
*
|
|
2732
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2330
2733
|
*/
|
|
2331
2734
|
setTypeName(
|
|
2332
2735
|
/**
|
|
@@ -2336,34 +2739,50 @@ declare namespace sap {
|
|
|
2336
2739
|
): this;
|
|
2337
2740
|
/**
|
|
2338
2741
|
* Unbinds property {@link #getEndDay endDay} from model data.
|
|
2742
|
+
*
|
|
2743
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2339
2744
|
*/
|
|
2340
2745
|
unbindEndDay(): this;
|
|
2341
2746
|
/**
|
|
2342
2747
|
* Unbinds property {@link #getHalfDay halfDay} from model data.
|
|
2748
|
+
*
|
|
2749
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2343
2750
|
*/
|
|
2344
2751
|
unbindHalfDay(): this;
|
|
2345
2752
|
/**
|
|
2346
2753
|
* Unbinds property {@link #getName name} from model data.
|
|
2754
|
+
*
|
|
2755
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2347
2756
|
*/
|
|
2348
2757
|
unbindName(): this;
|
|
2349
2758
|
/**
|
|
2350
2759
|
* Unbinds property {@link #getRelevant relevant} from model data.
|
|
2760
|
+
*
|
|
2761
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2351
2762
|
*/
|
|
2352
2763
|
unbindRelevant(): this;
|
|
2353
2764
|
/**
|
|
2354
2765
|
* Unbinds property {@link #getRow row} from model data.
|
|
2766
|
+
*
|
|
2767
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2355
2768
|
*/
|
|
2356
2769
|
unbindRow(): this;
|
|
2357
2770
|
/**
|
|
2358
2771
|
* Unbinds property {@link #getStartDay startDay} from model data.
|
|
2772
|
+
*
|
|
2773
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2359
2774
|
*/
|
|
2360
2775
|
unbindStartDay(): this;
|
|
2361
2776
|
/**
|
|
2362
2777
|
* Unbinds property {@link #getType type} from model data.
|
|
2778
|
+
*
|
|
2779
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2363
2780
|
*/
|
|
2364
2781
|
unbindType(): this;
|
|
2365
2782
|
/**
|
|
2366
2783
|
* Unbinds property {@link #getTypeName typeName} from model data.
|
|
2784
|
+
*
|
|
2785
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2367
2786
|
*/
|
|
2368
2787
|
unbindTypeName(): this;
|
|
2369
2788
|
}
|
|
@@ -2411,6 +2830,8 @@ declare namespace sap {
|
|
|
2411
2830
|
* the information contained in `oClassInfo`.
|
|
2412
2831
|
*
|
|
2413
2832
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2833
|
+
*
|
|
2834
|
+
* @returns Created class / constructor function
|
|
2414
2835
|
*/
|
|
2415
2836
|
static extend<T extends Record<string, unknown>>(
|
|
2416
2837
|
/**
|
|
@@ -2429,6 +2850,8 @@ declare namespace sap {
|
|
|
2429
2850
|
): Function;
|
|
2430
2851
|
/**
|
|
2431
2852
|
* Returns a metadata object for class sap.me.ProgressIndicator.
|
|
2853
|
+
*
|
|
2854
|
+
* @returns Metadata object describing this class
|
|
2432
2855
|
*/
|
|
2433
2856
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2434
2857
|
/**
|
|
@@ -2438,6 +2861,8 @@ declare namespace sap {
|
|
|
2438
2861
|
* (green), NEUTRAL (blue) (default value).
|
|
2439
2862
|
*
|
|
2440
2863
|
* Default value is `NEUTRAL`.
|
|
2864
|
+
*
|
|
2865
|
+
* @returns Value of property `barColor`
|
|
2441
2866
|
*/
|
|
2442
2867
|
getBarColor(): sap.ui.core.BarColor;
|
|
2443
2868
|
/**
|
|
@@ -2446,6 +2871,8 @@ declare namespace sap {
|
|
|
2446
2871
|
* The text value to be displayed in the bar.
|
|
2447
2872
|
*
|
|
2448
2873
|
* Default value is `'0%'`.
|
|
2874
|
+
*
|
|
2875
|
+
* @returns Value of property `displayValue`
|
|
2449
2876
|
*/
|
|
2450
2877
|
getDisplayValue(): string;
|
|
2451
2878
|
/**
|
|
@@ -2454,6 +2881,8 @@ declare namespace sap {
|
|
|
2454
2881
|
* Switches enabled state of the control. Disabled fields have different colors, and cannot be focused.
|
|
2455
2882
|
*
|
|
2456
2883
|
* Default value is `true`.
|
|
2884
|
+
*
|
|
2885
|
+
* @returns Value of property `enabled`
|
|
2457
2886
|
*/
|
|
2458
2887
|
getEnabled(): boolean;
|
|
2459
2888
|
/**
|
|
@@ -2462,6 +2891,8 @@ declare namespace sap {
|
|
|
2462
2891
|
* The numerical value for the displayed length of the progress bar.
|
|
2463
2892
|
*
|
|
2464
2893
|
* Default value is `0`.
|
|
2894
|
+
*
|
|
2895
|
+
* @returns Value of property `percentValue`
|
|
2465
2896
|
*/
|
|
2466
2897
|
getPercentValue(): int;
|
|
2467
2898
|
/**
|
|
@@ -2470,6 +2901,8 @@ declare namespace sap {
|
|
|
2470
2901
|
* Specifies whether the current value shall be rendered inside the bar.
|
|
2471
2902
|
*
|
|
2472
2903
|
* Default value is `true`.
|
|
2904
|
+
*
|
|
2905
|
+
* @returns Value of property `showValue`
|
|
2473
2906
|
*/
|
|
2474
2907
|
getShowValue(): boolean;
|
|
2475
2908
|
/**
|
|
@@ -2478,6 +2911,8 @@ declare namespace sap {
|
|
|
2478
2911
|
* Invisible controls are not rendered
|
|
2479
2912
|
*
|
|
2480
2913
|
* Default value is `true`.
|
|
2914
|
+
*
|
|
2915
|
+
* @returns Value of property `visible`
|
|
2481
2916
|
*/
|
|
2482
2917
|
getVisible(): boolean;
|
|
2483
2918
|
/**
|
|
@@ -2486,6 +2921,8 @@ declare namespace sap {
|
|
|
2486
2921
|
* The width of the control.
|
|
2487
2922
|
*
|
|
2488
2923
|
* Default value is `'100%'`.
|
|
2924
|
+
*
|
|
2925
|
+
* @returns Value of property `width`
|
|
2489
2926
|
*/
|
|
2490
2927
|
getWidth(): sap.ui.core.CSSSize;
|
|
2491
2928
|
/**
|
|
@@ -2497,6 +2934,8 @@ declare namespace sap {
|
|
|
2497
2934
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2498
2935
|
*
|
|
2499
2936
|
* Default value is `NEUTRAL`.
|
|
2937
|
+
*
|
|
2938
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2500
2939
|
*/
|
|
2501
2940
|
setBarColor(
|
|
2502
2941
|
/**
|
|
@@ -2512,6 +2951,8 @@ declare namespace sap {
|
|
|
2512
2951
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2513
2952
|
*
|
|
2514
2953
|
* Default value is `'0%'`.
|
|
2954
|
+
*
|
|
2955
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2515
2956
|
*/
|
|
2516
2957
|
setDisplayValue(
|
|
2517
2958
|
/**
|
|
@@ -2527,6 +2968,8 @@ declare namespace sap {
|
|
|
2527
2968
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2528
2969
|
*
|
|
2529
2970
|
* Default value is `true`.
|
|
2971
|
+
*
|
|
2972
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2530
2973
|
*/
|
|
2531
2974
|
setEnabled(
|
|
2532
2975
|
/**
|
|
@@ -2536,6 +2979,8 @@ declare namespace sap {
|
|
|
2536
2979
|
): this;
|
|
2537
2980
|
/**
|
|
2538
2981
|
* Property setter for the PercentValue A new rendering is not necessary, only the bar has to be moved.
|
|
2982
|
+
*
|
|
2983
|
+
* @returns `this` to allow method chaining
|
|
2539
2984
|
*/
|
|
2540
2985
|
setPercentValue(iPercentValue: undefined): this;
|
|
2541
2986
|
/**
|
|
@@ -2546,6 +2991,8 @@ declare namespace sap {
|
|
|
2546
2991
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2547
2992
|
*
|
|
2548
2993
|
* Default value is `true`.
|
|
2994
|
+
*
|
|
2995
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2549
2996
|
*/
|
|
2550
2997
|
setShowValue(
|
|
2551
2998
|
/**
|
|
@@ -2561,6 +3008,8 @@ declare namespace sap {
|
|
|
2561
3008
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2562
3009
|
*
|
|
2563
3010
|
* Default value is `true`.
|
|
3011
|
+
*
|
|
3012
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2564
3013
|
*/
|
|
2565
3014
|
setVisible(
|
|
2566
3015
|
/**
|
|
@@ -2576,6 +3025,8 @@ declare namespace sap {
|
|
|
2576
3025
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2577
3026
|
*
|
|
2578
3027
|
* Default value is `'100%'`.
|
|
3028
|
+
*
|
|
3029
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2579
3030
|
*/
|
|
2580
3031
|
setWidth(
|
|
2581
3032
|
/**
|
|
@@ -2627,6 +3078,8 @@ declare namespace sap {
|
|
|
2627
3078
|
* contained in `oClassInfo`.
|
|
2628
3079
|
*
|
|
2629
3080
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
3081
|
+
*
|
|
3082
|
+
* @returns Created class / constructor function
|
|
2630
3083
|
*/
|
|
2631
3084
|
static extend<T extends Record<string, unknown>>(
|
|
2632
3085
|
/**
|
|
@@ -2645,6 +3098,8 @@ declare namespace sap {
|
|
|
2645
3098
|
): Function;
|
|
2646
3099
|
/**
|
|
2647
3100
|
* Returns a metadata object for class sap.me.TabContainer.
|
|
3101
|
+
*
|
|
3102
|
+
* @returns Metadata object describing this class
|
|
2648
3103
|
*/
|
|
2649
3104
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2650
3105
|
/**
|
|
@@ -2654,6 +3109,8 @@ declare namespace sap {
|
|
|
2654
3109
|
* otherwise it will be bound to this `sap.me.TabContainer` itself.
|
|
2655
3110
|
*
|
|
2656
3111
|
* Indicates that the tab will collapse
|
|
3112
|
+
*
|
|
3113
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2657
3114
|
*/
|
|
2658
3115
|
attachCollapse(
|
|
2659
3116
|
/**
|
|
@@ -2677,6 +3134,8 @@ declare namespace sap {
|
|
|
2677
3134
|
* otherwise it will be bound to this `sap.me.TabContainer` itself.
|
|
2678
3135
|
*
|
|
2679
3136
|
* Indicates that the tab will collapse
|
|
3137
|
+
*
|
|
3138
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2680
3139
|
*/
|
|
2681
3140
|
attachCollapse(
|
|
2682
3141
|
/**
|
|
@@ -2695,6 +3154,8 @@ declare namespace sap {
|
|
|
2695
3154
|
* otherwise it will be bound to this `sap.me.TabContainer` itself.
|
|
2696
3155
|
*
|
|
2697
3156
|
* Indicates that the tab will expand
|
|
3157
|
+
*
|
|
3158
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2698
3159
|
*/
|
|
2699
3160
|
attachExpand(
|
|
2700
3161
|
/**
|
|
@@ -2718,6 +3179,8 @@ declare namespace sap {
|
|
|
2718
3179
|
* otherwise it will be bound to this `sap.me.TabContainer` itself.
|
|
2719
3180
|
*
|
|
2720
3181
|
* Indicates that the tab will expand
|
|
3182
|
+
*
|
|
3183
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2721
3184
|
*/
|
|
2722
3185
|
attachExpand(
|
|
2723
3186
|
/**
|
|
@@ -2736,6 +3199,8 @@ declare namespace sap {
|
|
|
2736
3199
|
* otherwise it will be bound to this `sap.me.TabContainer` itself.
|
|
2737
3200
|
*
|
|
2738
3201
|
* Indicates that the selected tab has changed
|
|
3202
|
+
*
|
|
3203
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2739
3204
|
*/
|
|
2740
3205
|
attachSelect(
|
|
2741
3206
|
/**
|
|
@@ -2759,6 +3224,8 @@ declare namespace sap {
|
|
|
2759
3224
|
* otherwise it will be bound to this `sap.me.TabContainer` itself.
|
|
2760
3225
|
*
|
|
2761
3226
|
* Indicates that the selected tab has changed
|
|
3227
|
+
*
|
|
3228
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2762
3229
|
*/
|
|
2763
3230
|
attachSelect(
|
|
2764
3231
|
/**
|
|
@@ -2772,24 +3239,34 @@ declare namespace sap {
|
|
|
2772
3239
|
): this;
|
|
2773
3240
|
/**
|
|
2774
3241
|
* Destroys the contentAttachments in the aggregation {@link #getContentAttachments contentAttachments}.
|
|
3242
|
+
*
|
|
3243
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2775
3244
|
*/
|
|
2776
3245
|
destroyContentAttachments(): this;
|
|
2777
3246
|
/**
|
|
2778
3247
|
* Destroys the contentInfo in the aggregation {@link #getContentInfo contentInfo}.
|
|
3248
|
+
*
|
|
3249
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2779
3250
|
*/
|
|
2780
3251
|
destroyContentInfo(): this;
|
|
2781
3252
|
/**
|
|
2782
3253
|
* Destroys the contentNotes in the aggregation {@link #getContentNotes contentNotes}.
|
|
3254
|
+
*
|
|
3255
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2783
3256
|
*/
|
|
2784
3257
|
destroyContentNotes(): this;
|
|
2785
3258
|
/**
|
|
2786
3259
|
* Destroys the contentPeople in the aggregation {@link #getContentPeople contentPeople}.
|
|
3260
|
+
*
|
|
3261
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2787
3262
|
*/
|
|
2788
3263
|
destroyContentPeople(): this;
|
|
2789
3264
|
/**
|
|
2790
3265
|
* Detaches event handler `fnFunction` from the {@link #event:collapse collapse} event of this `sap.me.TabContainer`.
|
|
2791
3266
|
*
|
|
2792
3267
|
* The passed function and listener object must match the ones used for event registration.
|
|
3268
|
+
*
|
|
3269
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2793
3270
|
*/
|
|
2794
3271
|
detachCollapse(
|
|
2795
3272
|
/**
|
|
@@ -2805,6 +3282,8 @@ declare namespace sap {
|
|
|
2805
3282
|
* Detaches event handler `fnFunction` from the {@link #event:expand expand} event of this `sap.me.TabContainer`.
|
|
2806
3283
|
*
|
|
2807
3284
|
* The passed function and listener object must match the ones used for event registration.
|
|
3285
|
+
*
|
|
3286
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2808
3287
|
*/
|
|
2809
3288
|
detachExpand(
|
|
2810
3289
|
/**
|
|
@@ -2820,6 +3299,8 @@ declare namespace sap {
|
|
|
2820
3299
|
* Detaches event handler `fnFunction` from the {@link #event:select select} event of this `sap.me.TabContainer`.
|
|
2821
3300
|
*
|
|
2822
3301
|
* The passed function and listener object must match the ones used for event registration.
|
|
3302
|
+
*
|
|
3303
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2823
3304
|
*/
|
|
2824
3305
|
detachSelect(
|
|
2825
3306
|
/**
|
|
@@ -2833,6 +3314,8 @@ declare namespace sap {
|
|
|
2833
3314
|
): this;
|
|
2834
3315
|
/**
|
|
2835
3316
|
* Fires event {@link #event:collapse collapse} to attached listeners.
|
|
3317
|
+
*
|
|
3318
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2836
3319
|
*/
|
|
2837
3320
|
fireCollapse(
|
|
2838
3321
|
/**
|
|
@@ -2842,6 +3325,8 @@ declare namespace sap {
|
|
|
2842
3325
|
): this;
|
|
2843
3326
|
/**
|
|
2844
3327
|
* Fires event {@link #event:expand expand} to attached listeners.
|
|
3328
|
+
*
|
|
3329
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2845
3330
|
*/
|
|
2846
3331
|
fireExpand(
|
|
2847
3332
|
/**
|
|
@@ -2854,6 +3339,8 @@ declare namespace sap {
|
|
|
2854
3339
|
*
|
|
2855
3340
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
2856
3341
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
3342
|
+
*
|
|
3343
|
+
* @returns Whether or not to prevent the default action
|
|
2857
3344
|
*/
|
|
2858
3345
|
fireSelect(
|
|
2859
3346
|
/**
|
|
@@ -2865,24 +3352,32 @@ declare namespace sap {
|
|
|
2865
3352
|
* Gets current value of property {@link #getBadgeAttachments badgeAttachments}.
|
|
2866
3353
|
*
|
|
2867
3354
|
* The number to display in the badge for the attachments tab
|
|
3355
|
+
*
|
|
3356
|
+
* @returns Value of property `badgeAttachments`
|
|
2868
3357
|
*/
|
|
2869
3358
|
getBadgeAttachments(): int;
|
|
2870
3359
|
/**
|
|
2871
3360
|
* Gets current value of property {@link #getBadgeInfo badgeInfo}.
|
|
2872
3361
|
*
|
|
2873
3362
|
* The number to display in the badge for the info tab
|
|
3363
|
+
*
|
|
3364
|
+
* @returns Value of property `badgeInfo`
|
|
2874
3365
|
*/
|
|
2875
3366
|
getBadgeInfo(): int;
|
|
2876
3367
|
/**
|
|
2877
3368
|
* Gets current value of property {@link #getBadgeNotes badgeNotes}.
|
|
2878
3369
|
*
|
|
2879
3370
|
* The number to display in the badge for the notes tab
|
|
3371
|
+
*
|
|
3372
|
+
* @returns Value of property `badgeNotes`
|
|
2880
3373
|
*/
|
|
2881
3374
|
getBadgeNotes(): int;
|
|
2882
3375
|
/**
|
|
2883
3376
|
* Gets current value of property {@link #getBadgePeople badgePeople}.
|
|
2884
3377
|
*
|
|
2885
3378
|
* The number to display in the badge for the people tab
|
|
3379
|
+
*
|
|
3380
|
+
* @returns Value of property `badgePeople`
|
|
2886
3381
|
*/
|
|
2887
3382
|
getBadgePeople(): int;
|
|
2888
3383
|
/**
|
|
@@ -2915,6 +3410,8 @@ declare namespace sap {
|
|
|
2915
3410
|
* Indicates if the tab can be collapsed and expanded
|
|
2916
3411
|
*
|
|
2917
3412
|
* Default value is `true`.
|
|
3413
|
+
*
|
|
3414
|
+
* @returns Value of property `expandable`
|
|
2918
3415
|
*/
|
|
2919
3416
|
getExpandable(): boolean;
|
|
2920
3417
|
/**
|
|
@@ -2923,12 +3420,16 @@ declare namespace sap {
|
|
|
2923
3420
|
* Indicates if the actual tab is expanded or not
|
|
2924
3421
|
*
|
|
2925
3422
|
* Default value is `true`.
|
|
3423
|
+
*
|
|
3424
|
+
* @returns Value of property `expanded`
|
|
2926
3425
|
*/
|
|
2927
3426
|
getExpanded(): boolean;
|
|
2928
3427
|
/**
|
|
2929
3428
|
* Gets current value of property {@link #getSelectedTab selectedTab}.
|
|
2930
3429
|
*
|
|
2931
3430
|
* Return the index of the selected tab
|
|
3431
|
+
*
|
|
3432
|
+
* @returns Value of property `selectedTab`
|
|
2932
3433
|
*/
|
|
2933
3434
|
getSelectedTab(): int;
|
|
2934
3435
|
/**
|
|
@@ -2937,6 +3438,8 @@ declare namespace sap {
|
|
|
2937
3438
|
* setter for visible property
|
|
2938
3439
|
*
|
|
2939
3440
|
* Default value is `true`.
|
|
3441
|
+
*
|
|
3442
|
+
* @returns Value of property `visible`
|
|
2940
3443
|
*/
|
|
2941
3444
|
getVisible(): boolean;
|
|
2942
3445
|
/**
|
|
@@ -2945,6 +3448,8 @@ declare namespace sap {
|
|
|
2945
3448
|
* The number to display in the badge for the attachments tab
|
|
2946
3449
|
*
|
|
2947
3450
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3451
|
+
*
|
|
3452
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2948
3453
|
*/
|
|
2949
3454
|
setBadgeAttachments(
|
|
2950
3455
|
/**
|
|
@@ -2958,6 +3463,8 @@ declare namespace sap {
|
|
|
2958
3463
|
* The number to display in the badge for the info tab
|
|
2959
3464
|
*
|
|
2960
3465
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3466
|
+
*
|
|
3467
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2961
3468
|
*/
|
|
2962
3469
|
setBadgeInfo(
|
|
2963
3470
|
/**
|
|
@@ -2971,6 +3478,8 @@ declare namespace sap {
|
|
|
2971
3478
|
* The number to display in the badge for the notes tab
|
|
2972
3479
|
*
|
|
2973
3480
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3481
|
+
*
|
|
3482
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2974
3483
|
*/
|
|
2975
3484
|
setBadgeNotes(
|
|
2976
3485
|
/**
|
|
@@ -2984,6 +3493,8 @@ declare namespace sap {
|
|
|
2984
3493
|
* The number to display in the badge for the people tab
|
|
2985
3494
|
*
|
|
2986
3495
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3496
|
+
*
|
|
3497
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2987
3498
|
*/
|
|
2988
3499
|
setBadgePeople(
|
|
2989
3500
|
/**
|
|
@@ -2993,6 +3504,8 @@ declare namespace sap {
|
|
|
2993
3504
|
): this;
|
|
2994
3505
|
/**
|
|
2995
3506
|
* Sets the aggregated {@link #getContentAttachments contentAttachments}.
|
|
3507
|
+
*
|
|
3508
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2996
3509
|
*/
|
|
2997
3510
|
setContentAttachments(
|
|
2998
3511
|
/**
|
|
@@ -3002,6 +3515,8 @@ declare namespace sap {
|
|
|
3002
3515
|
): this;
|
|
3003
3516
|
/**
|
|
3004
3517
|
* Sets the aggregated {@link #getContentInfo contentInfo}.
|
|
3518
|
+
*
|
|
3519
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3005
3520
|
*/
|
|
3006
3521
|
setContentInfo(
|
|
3007
3522
|
/**
|
|
@@ -3011,6 +3526,8 @@ declare namespace sap {
|
|
|
3011
3526
|
): this;
|
|
3012
3527
|
/**
|
|
3013
3528
|
* Sets the aggregated {@link #getContentNotes contentNotes}.
|
|
3529
|
+
*
|
|
3530
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3014
3531
|
*/
|
|
3015
3532
|
setContentNotes(
|
|
3016
3533
|
/**
|
|
@@ -3020,6 +3537,8 @@ declare namespace sap {
|
|
|
3020
3537
|
): this;
|
|
3021
3538
|
/**
|
|
3022
3539
|
* Sets the aggregated {@link #getContentPeople contentPeople}.
|
|
3540
|
+
*
|
|
3541
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3023
3542
|
*/
|
|
3024
3543
|
setContentPeople(
|
|
3025
3544
|
/**
|
|
@@ -3035,6 +3554,8 @@ declare namespace sap {
|
|
|
3035
3554
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3036
3555
|
*
|
|
3037
3556
|
* Default value is `true`.
|
|
3557
|
+
*
|
|
3558
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3038
3559
|
*/
|
|
3039
3560
|
setExpandable(
|
|
3040
3561
|
/**
|
|
@@ -3050,6 +3571,8 @@ declare namespace sap {
|
|
|
3050
3571
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3051
3572
|
*
|
|
3052
3573
|
* Default value is `true`.
|
|
3574
|
+
*
|
|
3575
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3053
3576
|
*/
|
|
3054
3577
|
setExpanded(
|
|
3055
3578
|
/**
|
|
@@ -3063,6 +3586,8 @@ declare namespace sap {
|
|
|
3063
3586
|
* Return the index of the selected tab
|
|
3064
3587
|
*
|
|
3065
3588
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3589
|
+
*
|
|
3590
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3066
3591
|
*/
|
|
3067
3592
|
setSelectedTab(
|
|
3068
3593
|
/**
|
|
@@ -3078,6 +3603,8 @@ declare namespace sap {
|
|
|
3078
3603
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3079
3604
|
*
|
|
3080
3605
|
* Default value is `true`.
|
|
3606
|
+
*
|
|
3607
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3081
3608
|
*/
|
|
3082
3609
|
setVisible(
|
|
3083
3610
|
/**
|