@openui5/types 1.120.10 → 1.121.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +124 -45
- package/types/sap.m.d.ts +2103 -312
- package/types/sap.tnt.d.ts +628 -113
- package/types/sap.ui.codeeditor.d.ts +10 -6
- package/types/sap.ui.commons.d.ts +92 -8
- package/types/sap.ui.core.d.ts +500 -186
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +91 -68
- package/types/sap.ui.integration.d.ts +51 -4
- package/types/sap.ui.layout.d.ts +214 -27
- package/types/sap.ui.mdc.d.ts +1544 -811
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +3 -1
- package/types/sap.ui.support.d.ts +28 -4
- package/types/sap.ui.table.d.ts +57 -7
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +157 -54
- package/types/sap.ui.ux3.d.ts +30 -12
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +49 -1
- package/types/sap.ui.webc.main.d.ts +144 -9
- package/types/sap.uxap.d.ts +52 -5
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
5
5
|
* Types of a calendar appointment display mode
|
|
6
6
|
*
|
|
7
|
+
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
8
|
+
* 'CalendarAppointmentHeight'.
|
|
9
|
+
*
|
|
7
10
|
* @since 1.80.0
|
|
8
11
|
*/
|
|
9
12
|
export enum CalendarAppointmentHeight {
|
|
@@ -27,6 +30,9 @@ declare module "sap/ui/unified/library" {
|
|
|
27
30
|
/**
|
|
28
31
|
* Types of a calendar appointment display mode
|
|
29
32
|
*
|
|
33
|
+
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
34
|
+
* 'CalendarAppointmentRoundWidth'.
|
|
35
|
+
*
|
|
30
36
|
* @since 1.81.0
|
|
31
37
|
* @experimental (since 1.81.0)
|
|
32
38
|
*/
|
|
@@ -43,6 +49,9 @@ declare module "sap/ui/unified/library" {
|
|
|
43
49
|
/**
|
|
44
50
|
* Visualization types for {@link sap.ui.unified.CalendarAppointment}.
|
|
45
51
|
*
|
|
52
|
+
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
53
|
+
* 'CalendarAppointmentVisualization'.
|
|
54
|
+
*
|
|
46
55
|
* @since 1.40.0
|
|
47
56
|
*/
|
|
48
57
|
export enum CalendarAppointmentVisualization {
|
|
@@ -58,6 +67,9 @@ declare module "sap/ui/unified/library" {
|
|
|
58
67
|
/**
|
|
59
68
|
* Types of a calendar day used for visualization.
|
|
60
69
|
*
|
|
70
|
+
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
71
|
+
* 'CalendarDayType'.
|
|
72
|
+
*
|
|
61
73
|
* @since 1.13
|
|
62
74
|
*/
|
|
63
75
|
export enum CalendarDayType {
|
|
@@ -66,7 +78,9 @@ declare module "sap/ui/unified/library" {
|
|
|
66
78
|
*/
|
|
67
79
|
None = "None",
|
|
68
80
|
/**
|
|
69
|
-
* Non-working
|
|
81
|
+
* Non-working days.
|
|
82
|
+
*
|
|
83
|
+
* @since 1.121
|
|
70
84
|
*/
|
|
71
85
|
NonWorking = "NonWorking",
|
|
72
86
|
/**
|
|
@@ -169,10 +183,17 @@ declare module "sap/ui/unified/library" {
|
|
|
169
183
|
* @since 1.50
|
|
170
184
|
*/
|
|
171
185
|
Type20 = "Type20",
|
|
186
|
+
/**
|
|
187
|
+
* Working days.
|
|
188
|
+
*/
|
|
189
|
+
Working = "Working",
|
|
172
190
|
}
|
|
173
191
|
/**
|
|
174
192
|
* Interval types in a `CalendarRow`.
|
|
175
193
|
*
|
|
194
|
+
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
195
|
+
* 'CalendarIntervalType'.
|
|
196
|
+
*
|
|
176
197
|
* @since 1.34.0
|
|
177
198
|
*/
|
|
178
199
|
export enum CalendarIntervalType {
|
|
@@ -191,6 +212,9 @@ declare module "sap/ui/unified/library" {
|
|
|
191
212
|
}
|
|
192
213
|
/**
|
|
193
214
|
* different styles for a ColorPicker.
|
|
215
|
+
*
|
|
216
|
+
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
217
|
+
* 'ColorPickerMode'.
|
|
194
218
|
*/
|
|
195
219
|
export enum ColorPickerMode {
|
|
196
220
|
/**
|
|
@@ -205,6 +229,9 @@ declare module "sap/ui/unified/library" {
|
|
|
205
229
|
/**
|
|
206
230
|
* Predefined animations for the ContentSwitcher
|
|
207
231
|
*
|
|
232
|
+
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
233
|
+
* 'ContentSwitcherAnimation'.
|
|
234
|
+
*
|
|
208
235
|
* @since 1.16.0
|
|
209
236
|
* @experimental (since 1.16.0) - API is not yet finished and might change completely
|
|
210
237
|
*/
|
|
@@ -241,6 +268,9 @@ declare module "sap/ui/unified/library" {
|
|
|
241
268
|
/**
|
|
242
269
|
* Types of display mode for overlapping appointments.
|
|
243
270
|
*
|
|
271
|
+
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
272
|
+
* 'GroupAppointmentsMode'.
|
|
273
|
+
*
|
|
244
274
|
* @since 1.48.0
|
|
245
275
|
*/
|
|
246
276
|
export enum GroupAppointmentsMode {
|
|
@@ -283,6 +313,9 @@ declare module "sap/ui/unified/library" {
|
|
|
283
313
|
* Standard day types visualized in a {@link sap.m.PlanningCalendarLegend}, which correspond to days in
|
|
284
314
|
* a {@link sap.ui.unified.Calendar}.
|
|
285
315
|
*
|
|
316
|
+
* This enum is part of the 'sap/ui/unified/library' module export and must be accessed by the property
|
|
317
|
+
* 'StandardCalendarLegendItem'.
|
|
318
|
+
*
|
|
286
319
|
* @since 1.50
|
|
287
320
|
*/
|
|
288
321
|
export enum StandardCalendarLegendItem {
|
|
@@ -910,7 +943,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
910
943
|
*
|
|
911
944
|
* @since 1.38.5
|
|
912
945
|
*/
|
|
913
|
-
getLegend(): ID;
|
|
946
|
+
getLegend(): ID | null;
|
|
914
947
|
/**
|
|
915
948
|
* Gets current value of property {@link #getMaxDate maxDate}.
|
|
916
949
|
*
|
|
@@ -1666,16 +1699,48 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1666
1699
|
| `{${string}}`;
|
|
1667
1700
|
|
|
1668
1701
|
/**
|
|
1669
|
-
* Dates or date ranges with type, to visualize special days
|
|
1670
|
-
* more than one Type, only the first one will be used.
|
|
1702
|
+
* Dates or date ranges with type, to visualize special days.
|
|
1671
1703
|
*
|
|
1672
|
-
* To set a single date (instead of a range), set only the `startDate` property of the {@link sap.ui.unified.
|
|
1704
|
+
* To set a single date (instead of a range), set only the `startDate` property of the {@link sap.ui.unified.DateTypeRange }
|
|
1673
1705
|
* class.
|
|
1674
1706
|
*
|
|
1675
|
-
* **Note:**
|
|
1676
|
-
* where if you need a weekly-reccuring non-working days (weekend), you should use the `nonWorkingDays`
|
|
1707
|
+
* **Note:** If you need a weekly-reccuring non-working days (weekend), you should use the `nonWorkingDays`
|
|
1677
1708
|
* property. Both the non-working days (from property) and dates (from aggregation) are visualized the same.
|
|
1678
1709
|
*
|
|
1710
|
+
* **Note:** In case there are multiple `sap.ui.unified.DateTypeRange` instances given for a single date,
|
|
1711
|
+
* only the first `sap.ui.unified.DateTypeRange` instance will be used. For example, using the following
|
|
1712
|
+
* sample, the 1st of November will be displayed as a working day of type "Type10":
|
|
1713
|
+
*
|
|
1714
|
+
*
|
|
1715
|
+
* ```javascript
|
|
1716
|
+
*
|
|
1717
|
+
* new DateTypeRange({
|
|
1718
|
+
* startDate: UI5Date.getInstance(2023, 10, 1),
|
|
1719
|
+
* type: CalendarDayType.Type10,
|
|
1720
|
+
* }),
|
|
1721
|
+
* new DateTypeRange({
|
|
1722
|
+
* startDate: UI5Date.getInstance(2023, 10, 1),
|
|
1723
|
+
* type: CalendarDayType.NonWorking
|
|
1724
|
+
* })
|
|
1725
|
+
* ```
|
|
1726
|
+
*
|
|
1727
|
+
*
|
|
1728
|
+
* If you want the first of November to be displayed as a non-working day and also as "Type10," the following
|
|
1729
|
+
* should be done:
|
|
1730
|
+
* ```javascript
|
|
1731
|
+
*
|
|
1732
|
+
* new DateTypeRange({
|
|
1733
|
+
* startDate: UI5Date.getInstance(2023, 10, 1),
|
|
1734
|
+
* type: CalendarDayType.Type10,
|
|
1735
|
+
* secondaryType: CalendarDayType.NonWorking
|
|
1736
|
+
* })
|
|
1737
|
+
* ```
|
|
1738
|
+
*
|
|
1739
|
+
*
|
|
1740
|
+
* You can use only one of the following types for a given date: `sap.ui.unified.CalendarDayType.NonWorking`,
|
|
1741
|
+
* `sap.ui.unified.CalendarDayType.Working` or `sap.ui.unified.CalendarDayType.None`. Assigning more than
|
|
1742
|
+
* one of these values in combination for the same date will lead to unpredictable results.
|
|
1743
|
+
*
|
|
1679
1744
|
* @since 1.24.0
|
|
1680
1745
|
*/
|
|
1681
1746
|
specialDates?:
|
|
@@ -3715,7 +3780,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3715
3780
|
*
|
|
3716
3781
|
* @since 1.38.5
|
|
3717
3782
|
*/
|
|
3718
|
-
getLegend(): ID;
|
|
3783
|
+
getLegend(): ID | null;
|
|
3719
3784
|
/**
|
|
3720
3785
|
* Gets current value of property {@link #getNonWorkingDays nonWorkingDays}.
|
|
3721
3786
|
*
|
|
@@ -3795,11 +3860,41 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3795
3860
|
/**
|
|
3796
3861
|
* Gets content of aggregation {@link #getSpecialDates specialDates}.
|
|
3797
3862
|
*
|
|
3798
|
-
*
|
|
3863
|
+
* Dates or date ranges with type, to visualize special days.
|
|
3864
|
+
*
|
|
3865
|
+
* **Note:** In case there are multiple `sap.ui.unified.DateTypeRange` instances given for a single date,
|
|
3866
|
+
* only the first `sap.ui.unified.DateTypeRange` instance will be used. For example, using the following
|
|
3867
|
+
* sample, the 1st of November will be displayed as a working day of type "Type10":
|
|
3868
|
+
*
|
|
3869
|
+
*
|
|
3870
|
+
* ```javascript
|
|
3871
|
+
*
|
|
3872
|
+
* new DateTypeRange({
|
|
3873
|
+
* startDate: UI5Date.getInstance(2023, 10, 1),
|
|
3874
|
+
* type: CalendarDayType.Type10,
|
|
3875
|
+
* }),
|
|
3876
|
+
* new DateTypeRange({
|
|
3877
|
+
* startDate: UI5Date.getInstance(2023, 10, 1),
|
|
3878
|
+
* type: CalendarDayType.NonWorking
|
|
3879
|
+
* })
|
|
3880
|
+
* ```
|
|
3881
|
+
*
|
|
3882
|
+
*
|
|
3883
|
+
* If you want the first of November to be displayed as a non-working day and also as "Type10," the following
|
|
3884
|
+
* should be done:
|
|
3885
|
+
* ```javascript
|
|
3886
|
+
*
|
|
3887
|
+
* new DateTypeRange({
|
|
3888
|
+
* startDate: UI5Date.getInstance(2023, 10, 1),
|
|
3889
|
+
* type: CalendarDayType.Type10,
|
|
3890
|
+
* secondaryType: CalendarDayType.NonWorking
|
|
3891
|
+
* })
|
|
3892
|
+
* ```
|
|
3799
3893
|
*
|
|
3800
|
-
*
|
|
3801
|
-
*
|
|
3802
|
-
*
|
|
3894
|
+
*
|
|
3895
|
+
* You can use only one of the following types for a given date: `sap.ui.unified.CalendarDayType.NonWorking`,
|
|
3896
|
+
* `sap.ui.unified.CalendarDayType.Working` or `sap.ui.unified.CalendarDayType.None`. Assigning more than
|
|
3897
|
+
* one of these values in combination for the same date will lead to unpredictable results.
|
|
3803
3898
|
*/
|
|
3804
3899
|
getSpecialDates(): DateTypeRange[];
|
|
3805
3900
|
/**
|
|
@@ -4298,11 +4393,41 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4298
4393
|
| `{${string}}`;
|
|
4299
4394
|
|
|
4300
4395
|
/**
|
|
4301
|
-
*
|
|
4396
|
+
* Dates or date ranges with type, to visualize special days.
|
|
4397
|
+
*
|
|
4398
|
+
* **Note:** In case there are multiple `sap.ui.unified.DateTypeRange` instances given for a single date,
|
|
4399
|
+
* only the first `sap.ui.unified.DateTypeRange` instance will be used. For example, using the following
|
|
4400
|
+
* sample, the 1st of November will be displayed as a working day of type "Type10":
|
|
4401
|
+
*
|
|
4402
|
+
*
|
|
4403
|
+
* ```javascript
|
|
4404
|
+
*
|
|
4405
|
+
* new DateTypeRange({
|
|
4406
|
+
* startDate: UI5Date.getInstance(2023, 10, 1),
|
|
4407
|
+
* type: CalendarDayType.Type10,
|
|
4408
|
+
* }),
|
|
4409
|
+
* new DateTypeRange({
|
|
4410
|
+
* startDate: UI5Date.getInstance(2023, 10, 1),
|
|
4411
|
+
* type: CalendarDayType.NonWorking
|
|
4412
|
+
* })
|
|
4413
|
+
* ```
|
|
4414
|
+
*
|
|
4415
|
+
*
|
|
4416
|
+
* If you want the first of November to be displayed as a non-working day and also as "Type10," the following
|
|
4417
|
+
* should be done:
|
|
4418
|
+
* ```javascript
|
|
4419
|
+
*
|
|
4420
|
+
* new DateTypeRange({
|
|
4421
|
+
* startDate: UI5Date.getInstance(2023, 10, 1),
|
|
4422
|
+
* type: CalendarDayType.Type10,
|
|
4423
|
+
* secondaryType: CalendarDayType.NonWorking
|
|
4424
|
+
* })
|
|
4425
|
+
* ```
|
|
4426
|
+
*
|
|
4302
4427
|
*
|
|
4303
|
-
*
|
|
4304
|
-
*
|
|
4305
|
-
*
|
|
4428
|
+
* You can use only one of the following types for a given date: `sap.ui.unified.CalendarDayType.NonWorking`,
|
|
4429
|
+
* `sap.ui.unified.CalendarDayType.Working` or `sap.ui.unified.CalendarDayType.None`. Assigning more than
|
|
4430
|
+
* one of these values in combination for the same date will lead to unpredictable results.
|
|
4306
4431
|
*/
|
|
4307
4432
|
specialDates?:
|
|
4308
4433
|
| DateTypeRange[]
|
|
@@ -5449,7 +5574,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5449
5574
|
*
|
|
5450
5575
|
* @since 1.38.5
|
|
5451
5576
|
*/
|
|
5452
|
-
getLegend(): ID;
|
|
5577
|
+
getLegend(): ID | null;
|
|
5453
5578
|
/**
|
|
5454
5579
|
* Gets current value of property {@link #getMonths months}.
|
|
5455
5580
|
*
|
|
@@ -6327,7 +6452,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6327
6452
|
*
|
|
6328
6453
|
* @since 1.38.5
|
|
6329
6454
|
*/
|
|
6330
|
-
getLegend(): ID;
|
|
6455
|
+
getLegend(): ID | null;
|
|
6331
6456
|
/**
|
|
6332
6457
|
* Gets current value of property {@link #getPrimaryCalendarType primaryCalendarType}.
|
|
6333
6458
|
*
|
|
@@ -7557,8 +7682,6 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7557
7682
|
* Adds some customContent to the aggregation {@link #getCustomContent customContent}.
|
|
7558
7683
|
*
|
|
7559
7684
|
* @since 1.93.0
|
|
7560
|
-
* @experimental (since 1.93) - providing only limited functionality. Also, the API might be changed in
|
|
7561
|
-
* the future.
|
|
7562
7685
|
*
|
|
7563
7686
|
* @returns Reference to `this` in order to allow method chaining
|
|
7564
7687
|
*/
|
|
@@ -7572,8 +7695,6 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7572
7695
|
* Destroys all the customContent in the aggregation {@link #getCustomContent customContent}.
|
|
7573
7696
|
*
|
|
7574
7697
|
* @since 1.93.0
|
|
7575
|
-
* @experimental (since 1.93) - providing only limited functionality. Also, the API might be changed in
|
|
7576
|
-
* the future.
|
|
7577
7698
|
*
|
|
7578
7699
|
* @returns Reference to `this` in order to allow method chaining
|
|
7579
7700
|
*/
|
|
@@ -7604,8 +7725,6 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7604
7725
|
* and may lead to unpredictable results.
|
|
7605
7726
|
*
|
|
7606
7727
|
* @since 1.93.0
|
|
7607
|
-
* @experimental (since 1.93) - providing only limited functionality. Also, the API might be changed in
|
|
7608
|
-
* the future.
|
|
7609
7728
|
*/
|
|
7610
7729
|
getCustomContent(): Control[];
|
|
7611
7730
|
/**
|
|
@@ -7683,8 +7802,6 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7683
7802
|
* and returns its index if found or -1 otherwise.
|
|
7684
7803
|
*
|
|
7685
7804
|
* @since 1.93.0
|
|
7686
|
-
* @experimental (since 1.93) - providing only limited functionality. Also, the API might be changed in
|
|
7687
|
-
* the future.
|
|
7688
7805
|
*
|
|
7689
7806
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
7690
7807
|
*/
|
|
@@ -7698,8 +7815,6 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7698
7815
|
* Inserts a customContent into the aggregation {@link #getCustomContent customContent}.
|
|
7699
7816
|
*
|
|
7700
7817
|
* @since 1.93.0
|
|
7701
|
-
* @experimental (since 1.93) - providing only limited functionality. Also, the API might be changed in
|
|
7702
|
-
* the future.
|
|
7703
7818
|
*
|
|
7704
7819
|
* @returns Reference to `this` in order to allow method chaining
|
|
7705
7820
|
*/
|
|
@@ -7721,8 +7836,6 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7721
7836
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
7722
7837
|
*
|
|
7723
7838
|
* @since 1.93.0
|
|
7724
|
-
* @experimental (since 1.93) - providing only limited functionality. Also, the API might be changed in
|
|
7725
|
-
* the future.
|
|
7726
7839
|
*
|
|
7727
7840
|
* @returns An array of the removed elements (might be empty)
|
|
7728
7841
|
*/
|
|
@@ -7731,8 +7844,6 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7731
7844
|
* Removes a customContent from the aggregation {@link #getCustomContent customContent}.
|
|
7732
7845
|
*
|
|
7733
7846
|
* @since 1.93.0
|
|
7734
|
-
* @experimental (since 1.93) - providing only limited functionality. Also, the API might be changed in
|
|
7735
|
-
* the future.
|
|
7736
7847
|
*
|
|
7737
7848
|
* @returns The removed customContent or `null`
|
|
7738
7849
|
*/
|
|
@@ -7942,8 +8053,6 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7942
8053
|
* and may lead to unpredictable results.
|
|
7943
8054
|
*
|
|
7944
8055
|
* @since 1.93.0
|
|
7945
|
-
* @experimental (since 1.93) - providing only limited functionality. Also, the API might be changed in
|
|
7946
|
-
* the future.
|
|
7947
8056
|
*/
|
|
7948
8057
|
customContent?:
|
|
7949
8058
|
| Control[]
|
|
@@ -9113,7 +9222,7 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
|
|
|
9113
9222
|
*
|
|
9114
9223
|
* @since 1.38.5
|
|
9115
9224
|
*/
|
|
9116
|
-
getLegend(): ID;
|
|
9225
|
+
getLegend(): ID | null;
|
|
9117
9226
|
/**
|
|
9118
9227
|
* Gets current value of property {@link #getMaxDate maxDate}.
|
|
9119
9228
|
*
|
|
@@ -10139,12 +10248,11 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
10139
10248
|
* Gets current value of property {@link #getAppointmentRoundWidth appointmentRoundWidth}.
|
|
10140
10249
|
*
|
|
10141
10250
|
* Defines rounding of the width of CalendarAppoinment **Note:** This property is applied, when
|
|
10142
|
-
* the calendar interval type is
|
|
10251
|
+
* the calendar interval type is Day and the view shows more than 20 days
|
|
10143
10252
|
*
|
|
10144
10253
|
* Default value is `None`.
|
|
10145
10254
|
*
|
|
10146
10255
|
* @since 1.81.0
|
|
10147
|
-
* @experimental (since 1.81.0)
|
|
10148
10256
|
*
|
|
10149
10257
|
* @returns Value of property `appointmentRoundWidth`
|
|
10150
10258
|
*/
|
|
@@ -10299,7 +10407,7 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
10299
10407
|
*
|
|
10300
10408
|
* @since 1.40.0
|
|
10301
10409
|
*/
|
|
10302
|
-
getLegend(): ID;
|
|
10410
|
+
getLegend(): ID | null;
|
|
10303
10411
|
/**
|
|
10304
10412
|
* Gets current value of property {@link #getMultipleAppointmentsSelection multipleAppointmentsSelection}.
|
|
10305
10413
|
*
|
|
@@ -10583,14 +10691,13 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
10583
10691
|
* Sets a new value for property {@link #getAppointmentRoundWidth appointmentRoundWidth}.
|
|
10584
10692
|
*
|
|
10585
10693
|
* Defines rounding of the width of CalendarAppoinment **Note:** This property is applied, when
|
|
10586
|
-
* the calendar interval type is
|
|
10694
|
+
* the calendar interval type is Day and the view shows more than 20 days
|
|
10587
10695
|
*
|
|
10588
10696
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10589
10697
|
*
|
|
10590
10698
|
* Default value is `None`.
|
|
10591
10699
|
*
|
|
10592
10700
|
* @since 1.81.0
|
|
10593
|
-
* @experimental (since 1.81.0)
|
|
10594
10701
|
*
|
|
10595
10702
|
* @returns Reference to `this` in order to allow method chaining
|
|
10596
10703
|
*/
|
|
@@ -11118,10 +11225,9 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
11118
11225
|
|
|
11119
11226
|
/**
|
|
11120
11227
|
* Defines rounding of the width of CalendarAppoinment **Note:** This property is applied, when
|
|
11121
|
-
* the calendar interval type is
|
|
11228
|
+
* the calendar interval type is Day and the view shows more than 20 days
|
|
11122
11229
|
*
|
|
11123
11230
|
* @since 1.81.0
|
|
11124
|
-
* @experimental (since 1.81.0)
|
|
11125
11231
|
*/
|
|
11126
11232
|
appointmentRoundWidth?:
|
|
11127
11233
|
| (
|
|
@@ -11742,7 +11848,7 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
|
|
|
11742
11848
|
*
|
|
11743
11849
|
* @since 1.38.5
|
|
11744
11850
|
*/
|
|
11745
|
-
getLegend(): ID;
|
|
11851
|
+
getLegend(): ID | null;
|
|
11746
11852
|
/**
|
|
11747
11853
|
* Gets current value of property {@link #getMaxDate maxDate}.
|
|
11748
11854
|
*
|
|
@@ -14212,9 +14318,8 @@ declare module "sap/ui/unified/DateTypeRange" {
|
|
|
14212
14318
|
/**
|
|
14213
14319
|
* Gets current value of property {@link #getSecondaryType secondaryType}.
|
|
14214
14320
|
*
|
|
14215
|
-
* Applies
|
|
14216
|
-
*
|
|
14217
|
-
* day types. In other cases it will not be visible.
|
|
14321
|
+
* Applies additional `sap.ui.unified.CalendarDayType`, with which `sap.ui.unified.CalendarDayType.NonWorking`
|
|
14322
|
+
* or `sap.ui.unified.CalendarDayType.Working` types could be represented as well.
|
|
14218
14323
|
*
|
|
14219
14324
|
* Default value is `None`.
|
|
14220
14325
|
*
|
|
@@ -14255,9 +14360,8 @@ declare module "sap/ui/unified/DateTypeRange" {
|
|
|
14255
14360
|
/**
|
|
14256
14361
|
* Sets a new value for property {@link #getSecondaryType secondaryType}.
|
|
14257
14362
|
*
|
|
14258
|
-
* Applies
|
|
14259
|
-
*
|
|
14260
|
-
* day types. In other cases it will not be visible.
|
|
14363
|
+
* Applies additional `sap.ui.unified.CalendarDayType`, with which `sap.ui.unified.CalendarDayType.NonWorking`
|
|
14364
|
+
* or `sap.ui.unified.CalendarDayType.Working` types could be represented as well.
|
|
14261
14365
|
*
|
|
14262
14366
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14263
14367
|
*
|
|
@@ -14303,9 +14407,8 @@ declare module "sap/ui/unified/DateTypeRange" {
|
|
|
14303
14407
|
| `{${string}}`;
|
|
14304
14408
|
|
|
14305
14409
|
/**
|
|
14306
|
-
* Applies
|
|
14307
|
-
*
|
|
14308
|
-
* day types. In other cases it will not be visible.
|
|
14410
|
+
* Applies additional `sap.ui.unified.CalendarDayType`, with which `sap.ui.unified.CalendarDayType.NonWorking`
|
|
14411
|
+
* or `sap.ui.unified.CalendarDayType.Working` types could be represented as well.
|
|
14309
14412
|
*
|
|
14310
14413
|
* @since 1.81.0
|
|
14311
14414
|
*/
|
|
@@ -21032,7 +21135,7 @@ declare module "sap/ui/unified/ShellOverlay" {
|
|
|
21032
21135
|
/**
|
|
21033
21136
|
* ID of the element which is the current target of the association {@link #getShell shell}, or `null`.
|
|
21034
21137
|
*/
|
|
21035
|
-
getShell(): ID;
|
|
21138
|
+
getShell(): ID | null;
|
|
21036
21139
|
/**
|
|
21037
21140
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
|
|
21038
21141
|
* its index if found or -1 otherwise.
|
package/types/sap.ui.ux3.d.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/ux3/library" {
|
|
4
4
|
/**
|
|
5
5
|
* Enumeration of available standard actions for 'sap.ui.ux3.ActionBar'. To be used as parameters for function
|
|
6
6
|
* 'sap.ui.ux3.ActionBar.getSocialAction'.
|
|
7
7
|
*
|
|
8
|
+
* This enum is part of the 'sap/ui/ux3/library' module export and must be accessed by the property 'ActionBarSocialActions'.
|
|
9
|
+
*
|
|
8
10
|
* @deprecated (since 1.38)
|
|
9
11
|
* @experimental (since 1.2) - API is not yet finished and might change completely
|
|
10
12
|
*/
|
|
@@ -42,6 +44,8 @@ declare module "sap/ui/ux3/library" {
|
|
|
42
44
|
/**
|
|
43
45
|
* Defines the order of the sub lists of a list in the ExactBrowser.
|
|
44
46
|
*
|
|
47
|
+
* This enum is part of the 'sap/ui/ux3/library' module export and must be accessed by the property 'ExactOrder'.
|
|
48
|
+
*
|
|
45
49
|
* @since 1.7.1
|
|
46
50
|
* @deprecated (since 1.38)
|
|
47
51
|
*/
|
|
@@ -58,6 +62,8 @@ declare module "sap/ui/ux3/library" {
|
|
|
58
62
|
/**
|
|
59
63
|
* Type of a Feeder.
|
|
60
64
|
*
|
|
65
|
+
* This enum is part of the 'sap/ui/ux3/library' module export and must be accessed by the property 'FeederType'.
|
|
66
|
+
*
|
|
61
67
|
* @deprecated (since 1.38)
|
|
62
68
|
* @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
|
|
63
69
|
* are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
|
|
@@ -80,6 +86,8 @@ declare module "sap/ui/ux3/library" {
|
|
|
80
86
|
/**
|
|
81
87
|
* Defines the states of the follow action
|
|
82
88
|
*
|
|
89
|
+
* This enum is part of the 'sap/ui/ux3/library' module export and must be accessed by the property 'FollowActionState'.
|
|
90
|
+
*
|
|
83
91
|
* @deprecated (since 1.38)
|
|
84
92
|
*/
|
|
85
93
|
export enum FollowActionState {
|
|
@@ -99,6 +107,8 @@ declare module "sap/ui/ux3/library" {
|
|
|
99
107
|
/**
|
|
100
108
|
* This entries are used to set the visibility status of a NotificationBar
|
|
101
109
|
*
|
|
110
|
+
* This enum is part of the 'sap/ui/ux3/library' module export and must be accessed by the property 'NotificationBarStatus'.
|
|
111
|
+
*
|
|
102
112
|
* @deprecated (since 1.38)
|
|
103
113
|
*/
|
|
104
114
|
export enum NotificationBarStatus {
|
|
@@ -122,6 +132,8 @@ declare module "sap/ui/ux3/library" {
|
|
|
122
132
|
/**
|
|
123
133
|
* Available shell design types.
|
|
124
134
|
*
|
|
135
|
+
* This enum is part of the 'sap/ui/ux3/library' module export and must be accessed by the property 'ShellDesignType'.
|
|
136
|
+
*
|
|
125
137
|
* @since 1.12.0
|
|
126
138
|
* @deprecated (since 1.38)
|
|
127
139
|
*/
|
|
@@ -143,6 +155,8 @@ declare module "sap/ui/ux3/library" {
|
|
|
143
155
|
/**
|
|
144
156
|
* Available shell header display types.
|
|
145
157
|
*
|
|
158
|
+
* This enum is part of the 'sap/ui/ux3/library' module export and must be accessed by the property 'ShellHeaderType'.
|
|
159
|
+
*
|
|
146
160
|
* @deprecated (since 1.38)
|
|
147
161
|
*/
|
|
148
162
|
export enum ShellHeaderType {
|
|
@@ -166,6 +180,8 @@ declare module "sap/ui/ux3/library" {
|
|
|
166
180
|
/**
|
|
167
181
|
* Available ThingViewer header display types.
|
|
168
182
|
*
|
|
183
|
+
* This enum is part of the 'sap/ui/ux3/library' module export and must be accessed by the property 'ThingViewerHeaderType'.
|
|
184
|
+
*
|
|
169
185
|
* @since 1.16.3
|
|
170
186
|
* @deprecated (since 1.38)
|
|
171
187
|
*/
|
|
@@ -183,6 +199,8 @@ declare module "sap/ui/ux3/library" {
|
|
|
183
199
|
* VisibleItemCountMode of the FacetFilter defines if the FacetFilter takes the whole available height (Auto)
|
|
184
200
|
* in the surrounding container, or is so high as needed to show 5 Items ("Fixed " - default).
|
|
185
201
|
*
|
|
202
|
+
* This enum is part of the 'sap/ui/ux3/library' module export and must be accessed by the property 'VisibleItemCountMode'.
|
|
203
|
+
*
|
|
186
204
|
* @deprecated (since 1.38)
|
|
187
205
|
*/
|
|
188
206
|
export enum VisibleItemCountMode {
|
|
@@ -1871,7 +1889,7 @@ declare module "sap/ui/ux3/CollectionInspector" {
|
|
|
1871
1889
|
* ID of the element which is the current target of the association {@link #getSelectedCollection selectedCollection},
|
|
1872
1890
|
* or `null`.
|
|
1873
1891
|
*/
|
|
1874
|
-
getSelectedCollection(): ID;
|
|
1892
|
+
getSelectedCollection(): ID | null;
|
|
1875
1893
|
/**
|
|
1876
1894
|
* Gets current value of property {@link #getSidebarVisible sidebarVisible}.
|
|
1877
1895
|
*
|
|
@@ -2525,7 +2543,7 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
2525
2543
|
* ID of the element which is the current target of the association {@link #getSelectedView selectedView},
|
|
2526
2544
|
* or `null`.
|
|
2527
2545
|
*/
|
|
2528
|
-
getSelectedView(): ID;
|
|
2546
|
+
getSelectedView(): ID | null;
|
|
2529
2547
|
/**
|
|
2530
2548
|
* Gets current value of property {@link #getShowFilter showFilter}.
|
|
2531
2549
|
*
|
|
@@ -5461,7 +5479,7 @@ declare module "sap/ui/ux3/ExactBrowser" {
|
|
|
5461
5479
|
* ID of the element which is the current target of the association {@link #getFollowUpControl followUpControl},
|
|
5462
5480
|
* or `null`.
|
|
5463
5481
|
*/
|
|
5464
|
-
getFollowUpControl(): ID;
|
|
5482
|
+
getFollowUpControl(): ID | null;
|
|
5465
5483
|
/**
|
|
5466
5484
|
* Gets current value of property {@link #getHeaderTitle headerTitle}.
|
|
5467
5485
|
*
|
|
@@ -6119,7 +6137,7 @@ declare module "sap/ui/ux3/ExactList" {
|
|
|
6119
6137
|
/**
|
|
6120
6138
|
* ID of the element which is the current target of the association {@link #getData data}, or `null`.
|
|
6121
6139
|
*/
|
|
6122
|
-
getData(): ID;
|
|
6140
|
+
getData(): ID | null;
|
|
6123
6141
|
/**
|
|
6124
6142
|
* Gets current value of property {@link #getShowClose showClose}.
|
|
6125
6143
|
*
|
|
@@ -10269,7 +10287,7 @@ declare module "sap/ui/ux3/NavigationBar" {
|
|
|
10269
10287
|
* ID of the element which is the current target of the association {@link #getSelectedItem selectedItem},
|
|
10270
10288
|
* or `null`.
|
|
10271
10289
|
*/
|
|
10272
|
-
getSelectedItem(): ID;
|
|
10290
|
+
getSelectedItem(): ID | null;
|
|
10273
10291
|
/**
|
|
10274
10292
|
* Gets current value of property {@link #getToplevelVariant toplevelVariant}.
|
|
10275
10293
|
*
|
|
@@ -14512,7 +14530,7 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
14512
14530
|
* ID of the element which is the current target of the association {@link #getSelectedWorksetItem selectedWorksetItem},
|
|
14513
14531
|
* or `null`.
|
|
14514
14532
|
*/
|
|
14515
|
-
getSelectedWorksetItem(): ID;
|
|
14533
|
+
getSelectedWorksetItem(): ID | null;
|
|
14516
14534
|
/**
|
|
14517
14535
|
* Gets current value of property {@link #getShowFeederTool showFeederTool}.
|
|
14518
14536
|
*
|
|
@@ -16723,7 +16741,7 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
16723
16741
|
* ID of the element which is the current target of the association {@link #getSelectedFacet selectedFacet},
|
|
16724
16742
|
* or `null`.
|
|
16725
16743
|
*/
|
|
16726
|
-
getSelectedFacet(): ID;
|
|
16744
|
+
getSelectedFacet(): ID | null;
|
|
16727
16745
|
/**
|
|
16728
16746
|
* Gets current value of property {@link #getType type}.
|
|
16729
16747
|
*
|
|
@@ -17677,7 +17695,7 @@ declare module "sap/ui/ux3/ThingViewer" {
|
|
|
17677
17695
|
* ID of the element which is the current target of the association {@link #getSelectedFacet selectedFacet},
|
|
17678
17696
|
* or `null`.
|
|
17679
17697
|
*/
|
|
17680
|
-
getSelectedFacet(): ID;
|
|
17698
|
+
getSelectedFacet(): ID | null;
|
|
17681
17699
|
/**
|
|
17682
17700
|
* Gets current value of property {@link #getSubtitle subtitle}.
|
|
17683
17701
|
*
|
|
@@ -18801,7 +18819,7 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
18801
18819
|
*
|
|
18802
18820
|
* @since 1.20.1
|
|
18803
18821
|
*/
|
|
18804
|
-
getDefaultButton(): ID;
|
|
18822
|
+
getDefaultButton(): ID | null;
|
|
18805
18823
|
/**
|
|
18806
18824
|
* Indicates whether the ToolPopup is currently enabled or not.
|
|
18807
18825
|
*
|
|
@@ -18849,7 +18867,7 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
18849
18867
|
* ID of the element which is the current target of the association {@link #getInitialFocus initialFocus},
|
|
18850
18868
|
* or `null`.
|
|
18851
18869
|
*/
|
|
18852
|
-
getInitialFocus(): ID;
|
|
18870
|
+
getInitialFocus(): ID | null;
|
|
18853
18871
|
/**
|
|
18854
18872
|
* Gets current value of property {@link #getInverted inverted}.
|
|
18855
18873
|
*
|
|
@@ -18913,7 +18931,7 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
18913
18931
|
/**
|
|
18914
18932
|
* ID of the element which is the current target of the association {@link #getOpener opener}, or `null`.
|
|
18915
18933
|
*/
|
|
18916
|
-
getOpener(): ID;
|
|
18934
|
+
getOpener(): ID | null;
|
|
18917
18935
|
/**
|
|
18918
18936
|
* Gets current value of property {@link #getTitle title}.
|
|
18919
18937
|
*
|